blob: b39da8d36aa9ed85c7f38189af3c72bde6b6b664 [file] [log] [blame]
Jukka Rissanen18722c22013-12-11 17:05:37 +02001/*
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03002 Copyright (c) 2013-2014 Intel Corp.
Jukka Rissanen18722c22013-12-11 17:05:37 +02003
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 and
6 only version 2 as published by the Free Software Foundation.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12*/
13
Jukka Rissanen18722c22013-12-11 17:05:37 +020014#include <linux/if_arp.h>
15#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
Jukka Rissanen5547e482014-06-18 16:37:09 +030017#include <linux/module.h>
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030018#include <linux/debugfs.h>
Jukka Rissanen18722c22013-12-11 17:05:37 +020019
20#include <net/ipv6.h>
21#include <net/ip6_route.h>
22#include <net/addrconf.h>
23
Jukka Rissanen18722c22013-12-11 17:05:37 +020024#include <net/bluetooth/bluetooth.h>
25#include <net/bluetooth/hci_core.h>
26#include <net/bluetooth/l2cap.h>
27
Alexander Aringcefc8c82014-03-05 14:29:05 +010028#include <net/6lowpan.h> /* for the compression support */
Jukka Rissanen18722c22013-12-11 17:05:37 +020029
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030030#define VERSION "0.1"
31
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020032static struct dentry *lowpan_enable_debugfs;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030033static struct dentry *lowpan_control_debugfs;
34
Jukka Rissanen18722c22013-12-11 17:05:37 +020035#define IFACE_NAME_TEMPLATE "bt%d"
Jukka Rissanen18722c22013-12-11 17:05:37 +020036
37struct skb_cb {
38 struct in6_addr addr;
Jukka Rissanen39e90c72014-09-08 12:11:45 +030039 struct in6_addr gw;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030040 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020041};
42#define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
43
44/* The devices list contains those devices that we are acting
45 * as a proxy. The BT 6LoWPAN device is a virtual device that
46 * connects to the Bluetooth LE device. The real connection to
47 * BT device is done via l2cap layer. There exists one
48 * virtual device / one BT 6LoWPAN network (=hciX device).
49 * The list contains struct lowpan_dev elements.
50 */
51static LIST_HEAD(bt_6lowpan_devices);
Jukka Rissanen90305822014-10-28 17:16:47 +020052static DEFINE_SPINLOCK(devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +020053
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020054static bool enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030055
56/* We are listening incoming connections via this channel
57 */
58static struct l2cap_chan *listen_chan;
59
Jukka Rissanen18722c22013-12-11 17:05:37 +020060struct lowpan_peer {
61 struct list_head list;
Jukka Rissanen90305822014-10-28 17:16:47 +020062 struct rcu_head rcu;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030063 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020064
65 /* peer addresses in various formats */
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +020066 unsigned char lladdr[ETH_ALEN];
Jukka Rissanen18722c22013-12-11 17:05:37 +020067 struct in6_addr peer_addr;
68};
69
Alexander Aring2e4d60c2016-04-11 11:04:18 +020070struct lowpan_btle_dev {
Jukka Rissanen18722c22013-12-11 17:05:37 +020071 struct list_head list;
72
73 struct hci_dev *hdev;
74 struct net_device *netdev;
75 struct list_head peers;
76 atomic_t peer_count; /* number of items in peers list */
77
78 struct work_struct delete_netdev;
79 struct delayed_work notify_peers;
80};
81
Alexander Aring2e4d60c2016-04-11 11:04:18 +020082static inline struct lowpan_btle_dev *
83lowpan_btle_dev(const struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +020084{
Alexander Aring2e4d60c2016-04-11 11:04:18 +020085 return (struct lowpan_btle_dev *)lowpan_dev(netdev)->priv;
Jukka Rissanen18722c22013-12-11 17:05:37 +020086}
87
Alexander Aring2e4d60c2016-04-11 11:04:18 +020088static inline void peer_add(struct lowpan_btle_dev *dev,
89 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020090{
Jukka Rissanen90305822014-10-28 17:16:47 +020091 list_add_rcu(&peer->list, &dev->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +020092 atomic_inc(&dev->peer_count);
93}
94
Alexander Aring2e4d60c2016-04-11 11:04:18 +020095static inline bool peer_del(struct lowpan_btle_dev *dev,
96 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020097{
Jukka Rissanen90305822014-10-28 17:16:47 +020098 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +020099 kfree_rcu(peer, rcu);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200100
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300101 module_put(THIS_MODULE);
102
Jukka Rissanen18722c22013-12-11 17:05:37 +0200103 if (atomic_dec_and_test(&dev->peer_count)) {
104 BT_DBG("last peer");
105 return true;
106 }
107
108 return false;
109}
110
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200111static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_btle_dev *dev,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200112 bdaddr_t *ba, __u8 type)
113{
Jukka Rissanen90305822014-10-28 17:16:47 +0200114 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200115
116 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
117 ba, type);
118
Jukka Rissanen90305822014-10-28 17:16:47 +0200119 rcu_read_lock();
120
121 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300122 BT_DBG("dst addr %pMR dst type %d",
123 &peer->chan->dst, peer->chan->dst_type);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200124
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300125 if (bacmp(&peer->chan->dst, ba))
Jukka Rissanen18722c22013-12-11 17:05:37 +0200126 continue;
127
Jukka Rissanen90305822014-10-28 17:16:47 +0200128 if (type == peer->chan->dst_type) {
129 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300130 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200131 }
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300132 }
133
Jukka Rissanen90305822014-10-28 17:16:47 +0200134 rcu_read_unlock();
135
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300136 return NULL;
137}
138
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200139static inline struct lowpan_peer *
140__peer_lookup_chan(struct lowpan_btle_dev *dev, struct l2cap_chan *chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300141{
Jukka Rissanen90305822014-10-28 17:16:47 +0200142 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300143
Jukka Rissanen90305822014-10-28 17:16:47 +0200144 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300145 if (peer->chan == chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200146 return peer;
147 }
148
149 return NULL;
150}
151
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200152static inline struct lowpan_peer *
153__peer_lookup_conn(struct lowpan_btle_dev *dev, struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200154{
Jukka Rissanen90305822014-10-28 17:16:47 +0200155 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200156
Jukka Rissanen90305822014-10-28 17:16:47 +0200157 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300158 if (peer->chan->conn == conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200159 return peer;
160 }
161
162 return NULL;
163}
164
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200165static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev,
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300166 struct in6_addr *daddr,
167 struct sk_buff *skb)
168{
Jukka Rissanen90305822014-10-28 17:16:47 +0200169 struct lowpan_peer *peer;
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300170 struct in6_addr *nexthop;
171 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
172 int count = atomic_read(&dev->peer_count);
173
174 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
175
176 /* If we have multiple 6lowpan peers, then check where we should
177 * send the packet. If only one peer exists, then we can send the
178 * packet right away.
179 */
Jukka Rissanen90305822014-10-28 17:16:47 +0200180 if (count == 1) {
181 rcu_read_lock();
182 peer = list_first_or_null_rcu(&dev->peers, struct lowpan_peer,
183 list);
184 rcu_read_unlock();
185 return peer;
186 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300187
188 if (!rt) {
189 nexthop = &lowpan_cb(skb)->gw;
190
191 if (ipv6_addr_any(nexthop))
192 return NULL;
193 } else {
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700194 nexthop = rt6_nexthop(rt, daddr);
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300195
196 /* We need to remember the address because it is needed
197 * by bt_xmit() when sending the packet. In bt_xmit(), the
198 * destination routing info is not set.
199 */
200 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
201 }
202
203 BT_DBG("gw %pI6c", nexthop);
204
Jukka Rissanen90305822014-10-28 17:16:47 +0200205 rcu_read_lock();
206
207 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300208 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
209 &peer->chan->dst, peer->chan->dst_type,
210 &peer->peer_addr);
211
Jukka Rissanen90305822014-10-28 17:16:47 +0200212 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
213 rcu_read_unlock();
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300214 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200215 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300216 }
217
Jukka Rissanen90305822014-10-28 17:16:47 +0200218 rcu_read_unlock();
219
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300220 return NULL;
221}
222
Jukka Rissanen18722c22013-12-11 17:05:37 +0200223static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
224{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200225 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200226 struct lowpan_peer *peer = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200227
Jukka Rissanen90305822014-10-28 17:16:47 +0200228 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200229
Jukka Rissanen90305822014-10-28 17:16:47 +0200230 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
231 peer = __peer_lookup_conn(entry, conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200232 if (peer)
233 break;
234 }
235
Jukka Rissanen90305822014-10-28 17:16:47 +0200236 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200237
238 return peer;
239}
240
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200241static struct lowpan_btle_dev *lookup_dev(struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200242{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200243 struct lowpan_btle_dev *entry;
244 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200245
Jukka Rissanen90305822014-10-28 17:16:47 +0200246 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200247
Jukka Rissanen90305822014-10-28 17:16:47 +0200248 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +0200249 if (conn->hcon->hdev == entry->hdev) {
250 dev = entry;
251 break;
252 }
253 }
254
Jukka Rissanen90305822014-10-28 17:16:47 +0200255 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200256
257 return dev;
258}
259
Jukka Rissanen18722c22013-12-11 17:05:37 +0200260static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
261{
262 struct sk_buff *skb_cp;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200263
264 skb_cp = skb_copy(skb, GFP_ATOMIC);
265 if (!skb_cp)
Martin Townsendf8b36172014-10-23 15:40:53 +0100266 return NET_RX_DROP;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200267
Alexander Aring324e7862015-10-27 08:35:24 +0100268 return netif_rx_ni(skb_cp);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200269}
270
Martin Townsend01141232014-10-23 15:40:56 +0100271static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
272 struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200273{
Patrik Flyktc259d142017-03-12 10:19:33 +0200274 const u8 *saddr;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200275 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200276 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200277
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200278 dev = lowpan_btle_dev(netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200279
Jukka Rissanen90305822014-10-28 17:16:47 +0200280 rcu_read_lock();
281 peer = __peer_lookup_chan(dev, chan);
282 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200283 if (!peer)
Martin Townsend56b2c3e2014-11-06 19:15:13 +0000284 return -EINVAL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200285
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200286 saddr = peer->lladdr;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200287
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200288 return lowpan_header_decompress(skb, netdev, netdev->dev_addr, saddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200289}
290
291static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300292 struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200293{
294 struct sk_buff *local_skb;
295 int ret;
296
297 if (!netif_running(dev))
298 goto drop;
299
Alexander Aringcefdb802015-10-13 13:42:55 +0200300 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200301 goto drop;
302
Alexander Aringcefdb802015-10-13 13:42:55 +0200303 skb_reset_network_header(skb);
304
Martin Townsend11e3ff702014-10-13 11:00:56 +0100305 skb = skb_share_check(skb, GFP_ATOMIC);
306 if (!skb)
307 goto drop;
308
Jukka Rissanen18722c22013-12-11 17:05:37 +0200309 /* check that it's our buffer */
Alexander Aringcefdb802015-10-13 13:42:55 +0200310 if (lowpan_is_ipv6(*skb_network_header(skb))) {
Lukasz Duda87f5fed2016-01-13 16:57:48 +0100311 /* Pull off the 1-byte of 6lowpan header. */
312 skb_pull(skb, 1);
313
Jukka Rissanen18722c22013-12-11 17:05:37 +0200314 /* Copy the packet so that the IPv6 header is
315 * properly aligned.
316 */
317 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
318 skb_tailroom(skb), GFP_ATOMIC);
319 if (!local_skb)
320 goto drop;
321
322 local_skb->protocol = htons(ETH_P_IPV6);
323 local_skb->pkt_type = PACKET_HOST;
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100324 local_skb->dev = dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200325
Jukka Rissanen18722c22013-12-11 17:05:37 +0200326 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
327
328 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
329 kfree_skb(local_skb);
330 goto drop;
331 }
332
333 dev->stats.rx_bytes += skb->len;
334 dev->stats.rx_packets++;
335
Martin Townsend3c400b82014-10-23 15:40:55 +0100336 consume_skb(local_skb);
337 consume_skb(skb);
Alexander Aringcefdb802015-10-13 13:42:55 +0200338 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
339 local_skb = skb_clone(skb, GFP_ATOMIC);
340 if (!local_skb)
341 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200342
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100343 local_skb->dev = dev;
344
Alexander Aringcefdb802015-10-13 13:42:55 +0200345 ret = iphc_decompress(local_skb, dev, chan);
346 if (ret < 0) {
347 kfree_skb(local_skb);
348 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200349 }
Alexander Aringcefdb802015-10-13 13:42:55 +0200350
351 local_skb->protocol = htons(ETH_P_IPV6);
352 local_skb->pkt_type = PACKET_HOST;
Alexander Aringcefdb802015-10-13 13:42:55 +0200353
354 if (give_skb_to_upper(local_skb, dev)
355 != NET_RX_SUCCESS) {
356 kfree_skb(local_skb);
357 goto drop;
358 }
359
360 dev->stats.rx_bytes += skb->len;
361 dev->stats.rx_packets++;
362
363 consume_skb(local_skb);
364 consume_skb(skb);
365 } else {
366 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200367 }
368
369 return NET_RX_SUCCESS;
370
371drop:
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300372 dev->stats.rx_dropped++;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200373 return NET_RX_DROP;
374}
375
376/* Packet from BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300377static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200378{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200379 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200380 struct lowpan_peer *peer;
381 int err;
382
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300383 peer = lookup_peer(chan->conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200384 if (!peer)
385 return -ENOENT;
386
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300387 dev = lookup_dev(chan->conn);
Johan Hedberg30d3db42013-12-12 09:53:21 +0200388 if (!dev || !dev->netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200389 return -ENOENT;
390
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300391 err = recv_pkt(skb, dev->netdev, chan);
392 if (err) {
393 BT_DBG("recv pkt %d", err);
394 err = -EAGAIN;
395 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200396
397 return err;
398}
399
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300400static int setup_header(struct sk_buff *skb, struct net_device *netdev,
401 bdaddr_t *peer_addr, u8 *peer_addr_type)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200402{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300403 struct in6_addr ipv6_daddr;
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200404 struct ipv6hdr *hdr;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200405 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200406 struct lowpan_peer *peer;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200407 u8 *daddr;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300408 int err, status = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200409
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200410 hdr = ipv6_hdr(skb);
411
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200412 dev = lowpan_btle_dev(netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200413
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200414 memcpy(&ipv6_daddr, &hdr->daddr, sizeof(ipv6_daddr));
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300415
416 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300417 lowpan_cb(skb)->chan = NULL;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200418 daddr = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200419 } else {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200420 BT_DBG("dest IP %pI6c", &ipv6_daddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200421
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200422 /* The packet might be sent to 6lowpan interface
423 * because of routing (either via default route
424 * or user set route) so get peer according to
425 * the destination address.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200426 */
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200427 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200428 if (!peer) {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200429 BT_DBG("no such peer");
430 return -ENOENT;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200431 }
432
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200433 daddr = peer->lladdr;
Colin Ian Kingfa0eaf82017-03-28 13:11:29 +0100434 *peer_addr = peer->chan->dst;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200435 *peer_addr_type = peer->chan->dst_type;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300436 lowpan_cb(skb)->chan = peer->chan;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300437
438 status = 1;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200439 }
440
Alexander Aringa6f77382015-10-13 13:42:57 +0200441 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200442
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300443 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
444 if (err < 0)
445 return err;
446
447 return status;
448}
449
450static int header_create(struct sk_buff *skb, struct net_device *netdev,
451 unsigned short type, const void *_daddr,
452 const void *_saddr, unsigned int len)
453{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300454 if (type != ETH_P_IPV6)
455 return -EINVAL;
456
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300457 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200458}
459
460/* Packet to BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300461static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300462 struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200463{
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300464 struct msghdr msg;
465 struct kvec iv;
466 int err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200467
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300468 /* Remember the skb so that we can send EAGAIN to the caller if
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300469 * we run out of credits.
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300470 */
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300471 chan->data = skb;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300472
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300473 iv.iov_base = skb->data;
474 iv.iov_len = skb->len;
475
Al Viroc0371da2014-11-24 10:42:55 -0500476 memset(&msg, 0, sizeof(msg));
Al Viro17836392014-11-24 17:07:38 -0500477 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &iv, 1, skb->len);
Al Viroc0371da2014-11-24 10:42:55 -0500478
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300479 err = l2cap_chan_send(chan, &msg, skb->len);
480 if (err > 0) {
481 netdev->stats.tx_bytes += err;
482 netdev->stats.tx_packets++;
483 return 0;
484 }
485
486 if (!err)
Michael Scott6dea44f2017-03-28 23:10:18 -0700487 err = (!chan->tx_credits ? -EAGAIN : 0);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300488
489 if (err < 0) {
490 if (err == -EAGAIN)
491 netdev->stats.tx_dropped++;
492 else
493 netdev->stats.tx_errors++;
494 }
495
496 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200497}
498
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300499static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200500{
501 struct sk_buff *local_skb;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200502 struct lowpan_btle_dev *entry;
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300503 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200504
Jukka Rissanen90305822014-10-28 17:16:47 +0200505 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200506
Jukka Rissanen90305822014-10-28 17:16:47 +0200507 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
508 struct lowpan_peer *pentry;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200509 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200510
511 if (entry->netdev != netdev)
512 continue;
513
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200514 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200515
Jukka Rissanen90305822014-10-28 17:16:47 +0200516 list_for_each_entry_rcu(pentry, &dev->peers, list) {
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300517 int ret;
518
Jukka Rissanen18722c22013-12-11 17:05:37 +0200519 local_skb = skb_clone(skb, GFP_ATOMIC);
520
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300521 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
522 netdev->name,
523 &pentry->chan->dst, pentry->chan->dst_type,
524 &pentry->peer_addr, pentry->chan);
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300525 ret = send_pkt(pentry->chan, local_skb, netdev);
526 if (ret < 0)
527 err = ret;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200528
529 kfree_skb(local_skb);
530 }
531 }
532
Jukka Rissanen90305822014-10-28 17:16:47 +0200533 rcu_read_unlock();
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300534
535 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200536}
537
538static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
539{
540 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200541 bdaddr_t addr;
542 u8 addr_type;
543
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300544 /* We must take a copy of the skb before we modify/replace the ipv6
545 * header as the header could be used elsewhere
546 */
Alexander Aringb0c42cd2014-10-08 10:24:53 +0200547 skb = skb_unshare(skb, GFP_ATOMIC);
548 if (!skb)
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300549 return NET_XMIT_DROP;
550
551 /* Return values from setup_header()
552 * <0 - error, packet is dropped
553 * 0 - this is a multicast packet
554 * 1 - this is unicast packet
555 */
556 err = setup_header(skb, netdev, &addr, &addr_type);
557 if (err < 0) {
558 kfree_skb(skb);
559 return NET_XMIT_DROP;
560 }
561
562 if (err) {
563 if (lowpan_cb(skb)->chan) {
564 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
565 netdev->name, &addr, addr_type,
566 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300567 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300568 } else {
569 err = -ENOENT;
570 }
571 } else {
572 /* We need to send the packet to every device behind this
573 * interface.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200574 */
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300575 err = send_mcast_pkt(skb, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200576 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200577
Jukka Rissanenfc125182014-10-01 11:30:26 +0300578 dev_kfree_skb(skb);
579
Jukka Rissanen18722c22013-12-11 17:05:37 +0200580 if (err)
581 BT_DBG("ERROR: xmit failed (%d)", err);
582
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300583 return err < 0 ? NET_XMIT_DROP : err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200584}
585
Jukka Rissanendf092302014-10-28 17:16:48 +0200586static int bt_dev_init(struct net_device *dev)
587{
Eric Dumazetd3fff6c2016-06-09 07:45:12 -0700588 netdev_lockdep_set_classes(dev);
Jukka Rissanendf092302014-10-28 17:16:48 +0200589
590 return 0;
591}
592
Jukka Rissanen18722c22013-12-11 17:05:37 +0200593static const struct net_device_ops netdev_ops = {
Jukka Rissanendf092302014-10-28 17:16:48 +0200594 .ndo_init = bt_dev_init,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200595 .ndo_start_xmit = bt_xmit,
596};
597
598static struct header_ops header_ops = {
599 .create = header_create,
600};
601
602static void netdev_setup(struct net_device *dev)
603{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200604 dev->hard_header_len = 0;
605 dev->needed_tailroom = 0;
Jukka Rissanen156395c2014-09-29 16:37:26 +0300606 dev->flags = IFF_RUNNING | IFF_POINTOPOINT |
607 IFF_MULTICAST;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200608 dev->watchdog_timeo = 0;
609
610 dev->netdev_ops = &netdev_ops;
611 dev->header_ops = &header_ops;
612 dev->destructor = free_netdev;
613}
614
615static struct device_type bt_type = {
616 .name = "bluetooth",
617};
618
Jukka Rissanen18722c22013-12-11 17:05:37 +0200619static void ifup(struct net_device *netdev)
620{
621 int err;
622
623 rtnl_lock();
624 err = dev_open(netdev);
625 if (err < 0)
626 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
627 rtnl_unlock();
628}
629
Jukka Rissanen7f118252014-06-18 16:37:11 +0300630static void ifdown(struct net_device *netdev)
631{
632 int err;
633
634 rtnl_lock();
635 err = dev_close(netdev);
636 if (err < 0)
637 BT_INFO("iface %s cannot be closed (%d)", netdev->name, err);
638 rtnl_unlock();
639}
640
Jukka Rissanen18722c22013-12-11 17:05:37 +0200641static void do_notify_peers(struct work_struct *work)
642{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200643 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
644 notify_peers.work);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200645
646 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
647}
648
649static bool is_bt_6lowpan(struct hci_conn *hcon)
650{
651 if (hcon->type != LE_LINK)
652 return false;
653
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200654 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300655 return false;
656
657 return true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200658}
659
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300660static struct l2cap_chan *chan_create(void)
661{
662 struct l2cap_chan *chan;
663
664 chan = l2cap_chan_create();
665 if (!chan)
666 return NULL;
667
668 l2cap_chan_set_defaults(chan);
669
670 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
671 chan->mode = L2CAP_MODE_LE_FLOWCTL;
Johan Hedberg301de2c2015-10-06 13:03:19 +0300672 chan->imtu = 1280;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300673
674 return chan;
675}
676
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300677static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
Michael Scottd2891c42017-03-28 23:10:54 -0700678 struct lowpan_btle_dev *dev,
679 bool new_netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200680{
681 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200682
683 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
684 if (!peer)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300685 return NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200686
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300687 peer->chan = chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200688 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
689
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200690 baswap((void *)peer->lladdr, &chan->dst);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200691
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200692 lowpan_iphc_uncompress_eui48_lladdr(&peer->peer_addr, peer->lladdr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200693
Jukka Rissanen90305822014-10-28 17:16:47 +0200694 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200695 INIT_LIST_HEAD(&peer->list);
696 peer_add(dev, peer);
Jukka Rissanen90305822014-10-28 17:16:47 +0200697 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200698
699 /* Notifying peers about us needs to be done without locks held */
Michael Scottd2891c42017-03-28 23:10:54 -0700700 if (new_netdev)
701 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200702 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
703
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300704 return peer->chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200705}
706
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200707static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200708{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200709 struct net_device *netdev;
710 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200711
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200712 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
Alexander Aringb72f6f52015-08-11 21:44:08 +0200713 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
714 netdev_setup);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200715 if (!netdev)
716 return -ENOMEM;
717
Patrik Flyktc259d142017-03-12 10:19:33 +0200718 netdev->addr_assign_type = NET_ADDR_PERM;
719 baswap((void *)netdev->dev_addr, &chan->src);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200720
721 netdev->netdev_ops = &netdev_ops;
Glenn Ruben Bakkefc842422015-06-17 07:32:25 -0700722 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200723 SET_NETDEV_DEVTYPE(netdev, &bt_type);
724
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200725 *dev = lowpan_btle_dev(netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300726 (*dev)->netdev = netdev;
727 (*dev)->hdev = chan->conn->hcon->hdev;
728 INIT_LIST_HEAD(&(*dev)->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200729
Jukka Rissanen90305822014-10-28 17:16:47 +0200730 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300731 INIT_LIST_HEAD(&(*dev)->list);
Jukka Rissanen90305822014-10-28 17:16:47 +0200732 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
733 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200734
Alexander Aring00f59312015-12-09 22:46:29 +0100735 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
Alexander Aring5857d1d2015-07-30 09:40:53 +0200736 if (err < 0) {
737 BT_INFO("register_netdev failed %d", err);
738 spin_lock(&devices_lock);
739 list_del_rcu(&(*dev)->list);
740 spin_unlock(&devices_lock);
741 free_netdev(netdev);
742 goto out;
743 }
744
745 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
746 netdev->ifindex, &chan->dst, chan->dst_type,
747 &chan->src, chan->src_type);
748 set_bit(__LINK_STATE_PRESENT, &netdev->state);
749
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300750 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200751
752out:
753 return err;
754}
755
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300756static inline void chan_ready_cb(struct l2cap_chan *chan)
757{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200758 struct lowpan_btle_dev *dev;
Michael Scottd2891c42017-03-28 23:10:54 -0700759 bool new_netdev = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300760
761 dev = lookup_dev(chan->conn);
762
763 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
764
765 if (!dev) {
766 if (setup_netdev(chan, &dev) < 0) {
767 l2cap_chan_del(chan, -ENOENT);
768 return;
769 }
Michael Scottd2891c42017-03-28 23:10:54 -0700770 new_netdev = true;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300771 }
772
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300773 if (!try_module_get(THIS_MODULE))
774 return;
775
Michael Scottd2891c42017-03-28 23:10:54 -0700776 add_peer_chan(chan, dev, new_netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300777 ifup(dev->netdev);
778}
779
Johan Hedberg2b293492014-08-07 10:03:32 +0300780static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300781{
Johan Hedberg2b293492014-08-07 10:03:32 +0300782 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300783
Johan Hedberg630ef792015-10-06 13:03:22 +0300784 chan = chan_create();
785 if (!chan)
786 return NULL;
787
Johan Hedberg2b293492014-08-07 10:03:32 +0300788 chan->ops = pchan->ops;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300789
790 BT_DBG("chan %p pchan %p", chan, pchan);
791
Johan Hedberg2b293492014-08-07 10:03:32 +0300792 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300793}
794
Jukka Rissanen18722c22013-12-11 17:05:37 +0200795static void delete_netdev(struct work_struct *work)
796{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200797 struct lowpan_btle_dev *entry = container_of(work,
798 struct lowpan_btle_dev,
799 delete_netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200800
Alexander Aring00f59312015-12-09 22:46:29 +0100801 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200802
Glenn Ruben Bakke2ad88fb2015-06-17 07:32:26 -0700803 /* The entry pointer is deleted by the netdev destructor. */
Jukka Rissanen18722c22013-12-11 17:05:37 +0200804}
805
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300806static void chan_close_cb(struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200807{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200808 struct lowpan_btle_dev *entry;
809 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200810 struct lowpan_peer *peer;
811 int err = -ENOENT;
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700812 bool last = false, remove = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200813
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300814 BT_DBG("chan %p conn %p", chan, chan->conn);
815
816 if (chan->conn && chan->conn->hcon) {
817 if (!is_bt_6lowpan(chan->conn->hcon))
818 return;
819
820 /* If conn is set, then the netdev is also there and we should
821 * not remove it.
822 */
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700823 remove = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300824 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200825
Jukka Rissanen90305822014-10-28 17:16:47 +0200826 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200827
Jukka Rissanen90305822014-10-28 17:16:47 +0200828 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200829 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen90305822014-10-28 17:16:47 +0200830 peer = __peer_lookup_chan(dev, chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200831 if (peer) {
832 last = peer_del(dev, peer);
833 err = 0;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300834
835 BT_DBG("dev %p removing %speer %p", dev,
836 last ? "last " : "1 ", peer);
837 BT_DBG("chan %p orig refcnt %d", chan,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100838 kref_read(&chan->kref));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300839
840 l2cap_chan_put(chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200841 break;
842 }
843 }
844
845 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
Jukka Rissanen90305822014-10-28 17:16:47 +0200846 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200847
848 cancel_delayed_work_sync(&dev->notify_peers);
849
Jukka Rissanen7f118252014-06-18 16:37:11 +0300850 ifdown(dev->netdev);
851
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700852 if (remove) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300853 INIT_WORK(&entry->delete_netdev, delete_netdev);
854 schedule_work(&entry->delete_netdev);
855 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200856 } else {
Jukka Rissanen90305822014-10-28 17:16:47 +0200857 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200858 }
859
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300860 return;
861}
862
863static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
864{
865 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
866 state_to_string(state), err);
867}
868
869static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
870 unsigned long hdr_len,
871 unsigned long len, int nb)
872{
873 /* Note that we must allocate using GFP_ATOMIC here as
874 * this function is called originally from netdev hard xmit
875 * function in atomic context.
876 */
877 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
878}
879
880static void chan_suspend_cb(struct l2cap_chan *chan)
881{
Michael Scott6dea44f2017-03-28 23:10:18 -0700882 BT_DBG("chan %p suspend", chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300883}
884
885static void chan_resume_cb(struct l2cap_chan *chan)
886{
Michael Scott6dea44f2017-03-28 23:10:18 -0700887 BT_DBG("chan %p resume", chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300888}
889
890static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
891{
Jukka Rissanen2ae50d82014-09-08 12:11:43 +0300892 return L2CAP_CONN_TIMEOUT;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300893}
894
895static const struct l2cap_ops bt_6lowpan_chan_ops = {
896 .name = "L2CAP 6LoWPAN channel",
897 .new_connection = chan_new_conn_cb,
898 .recv = chan_recv_cb,
899 .close = chan_close_cb,
900 .state_change = chan_state_change_cb,
901 .ready = chan_ready_cb,
902 .resume = chan_resume_cb,
903 .suspend = chan_suspend_cb,
904 .get_sndtimeo = chan_get_sndtimeo_cb,
905 .alloc_skb = chan_alloc_skb_cb,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300906
907 .teardown = l2cap_chan_no_teardown,
908 .defer = l2cap_chan_no_defer,
909 .set_shutdown = l2cap_chan_no_set_shutdown,
910};
911
912static inline __u8 bdaddr_type(__u8 type)
913{
914 if (type == ADDR_LE_DEV_PUBLIC)
915 return BDADDR_LE_PUBLIC;
916 else
917 return BDADDR_LE_RANDOM;
918}
919
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300920static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
921{
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300922 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300923 int err;
924
Johan Hedberg26d46df2015-10-06 13:03:24 +0300925 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300926 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300927 return -EINVAL;
928
Johan Hedberg26d46df2015-10-06 13:03:24 +0300929 chan->ops = &bt_6lowpan_chan_ops;
930
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300931 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300932 addr, dst_type);
933
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300934 BT_DBG("chan %p err %d", chan, err);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300935 if (err < 0)
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300936 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300937
Jukka Rissanen18722c22013-12-11 17:05:37 +0200938 return err;
939}
940
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300941static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
942{
943 struct lowpan_peer *peer;
944
945 BT_DBG("conn %p dst type %d", conn, dst_type);
946
947 peer = lookup_peer(conn);
948 if (!peer)
949 return -ENOENT;
950
951 BT_DBG("peer %p chan %p", peer, peer->chan);
952
953 l2cap_chan_close(peer->chan, ENOENT);
954
955 return 0;
956}
957
958static struct l2cap_chan *bt_6lowpan_listen(void)
959{
960 bdaddr_t *addr = BDADDR_ANY;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300961 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300962 int err;
963
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200964 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300965 return NULL;
966
Johan Hedberg26d46df2015-10-06 13:03:24 +0300967 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300968 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300969 return NULL;
970
Johan Hedberg26d46df2015-10-06 13:03:24 +0300971 chan->ops = &bt_6lowpan_chan_ops;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300972 chan->state = BT_LISTEN;
973 chan->src_type = BDADDR_LE_PUBLIC;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300974
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300975 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
Johan Hedberg2773b022014-11-13 09:46:05 +0200976
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300977 BT_DBG("chan %p src type %d", chan, chan->src_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300978
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300979 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300980 if (err) {
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300981 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300982 BT_ERR("psm cannot be added err %d", err);
983 return NULL;
984 }
985
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300986 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300987}
988
989static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
990 struct l2cap_conn **conn)
991{
992 struct hci_conn *hcon;
993 struct hci_dev *hdev;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300994 int n;
995
996 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
997 &addr->b[5], &addr->b[4], &addr->b[3],
998 &addr->b[2], &addr->b[1], &addr->b[0],
999 addr_type);
1000
1001 if (n < 7)
1002 return -EINVAL;
1003
Johan Hedberg39385cb2016-11-12 17:03:07 +02001004 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1005 hdev = hci_get_route(addr, BDADDR_ANY, BDADDR_LE_PUBLIC);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001006 if (!hdev)
1007 return -ENOENT;
1008
1009 hci_dev_lock(hdev);
Johan Hedbergf5ad4ff2015-10-21 18:03:02 +03001010 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001011 hci_dev_unlock(hdev);
1012
1013 if (!hcon)
1014 return -ENOENT;
1015
1016 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1017
1018 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1019
1020 return 0;
1021}
1022
1023static void disconnect_all_peers(void)
1024{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001025 struct lowpan_btle_dev *entry;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001026 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1027 struct list_head peers;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001028
1029 INIT_LIST_HEAD(&peers);
1030
1031 /* We make a separate list of peers as the close_cb() will
1032 * modify the device peers list so it is better not to mess
1033 * with the same list at the same time.
1034 */
1035
Jukka Rissanen90305822014-10-28 17:16:47 +02001036 rcu_read_lock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001037
Jukka Rissanen90305822014-10-28 17:16:47 +02001038 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1039 list_for_each_entry_rcu(peer, &entry->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001040 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1041 if (!new_peer)
1042 break;
1043
1044 new_peer->chan = peer->chan;
1045 INIT_LIST_HEAD(&new_peer->list);
1046
1047 list_add(&new_peer->list, &peers);
1048 }
1049 }
1050
Jukka Rissanen90305822014-10-28 17:16:47 +02001051 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001052
Jukka Rissanen90305822014-10-28 17:16:47 +02001053 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001054 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1055 l2cap_chan_close(peer->chan, ENOENT);
Jukka Rissanen90305822014-10-28 17:16:47 +02001056
1057 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +02001058 kfree_rcu(peer, rcu);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001059 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001060 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001061}
1062
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001063struct set_enable {
Jukka Rissanen90305822014-10-28 17:16:47 +02001064 struct work_struct work;
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001065 bool flag;
Jukka Rissanen90305822014-10-28 17:16:47 +02001066};
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001067
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001068static void do_enable_set(struct work_struct *work)
Jukka Rissanen90305822014-10-28 17:16:47 +02001069{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001070 struct set_enable *set_enable = container_of(work,
1071 struct set_enable, work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001072
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001073 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001074 /* Disconnect existing connections if 6lowpan is
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001075 * disabled
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001076 */
1077 disconnect_all_peers();
1078
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001079 enable_6lowpan = set_enable->flag;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001080
1081 if (listen_chan) {
1082 l2cap_chan_close(listen_chan, 0);
1083 l2cap_chan_put(listen_chan);
1084 }
1085
1086 listen_chan = bt_6lowpan_listen();
1087
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001088 kfree(set_enable);
Jukka Rissanen90305822014-10-28 17:16:47 +02001089}
1090
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001091static int lowpan_enable_set(void *data, u64 val)
Jukka Rissanen90305822014-10-28 17:16:47 +02001092{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001093 struct set_enable *set_enable;
Jukka Rissanen90305822014-10-28 17:16:47 +02001094
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001095 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1096 if (!set_enable)
Jukka Rissanen90305822014-10-28 17:16:47 +02001097 return -ENOMEM;
1098
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001099 set_enable->flag = !!val;
1100 INIT_WORK(&set_enable->work, do_enable_set);
Jukka Rissanen90305822014-10-28 17:16:47 +02001101
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001102 schedule_work(&set_enable->work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001103
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001104 return 0;
1105}
1106
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001107static int lowpan_enable_get(void *data, u64 *val)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001108{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001109 *val = enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001110 return 0;
1111}
1112
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001113DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1114 lowpan_enable_set, "%llu\n");
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001115
1116static ssize_t lowpan_control_write(struct file *fp,
1117 const char __user *user_buffer,
1118 size_t count,
1119 loff_t *position)
1120{
1121 char buf[32];
1122 size_t buf_size = min(count, sizeof(buf) - 1);
1123 int ret;
1124 bdaddr_t addr;
1125 u8 addr_type;
1126 struct l2cap_conn *conn = NULL;
1127
1128 if (copy_from_user(buf, user_buffer, buf_size))
1129 return -EFAULT;
1130
1131 buf[buf_size] = '\0';
1132
1133 if (memcmp(buf, "connect ", 8) == 0) {
1134 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1135 if (ret == -EINVAL)
1136 return ret;
1137
1138 if (listen_chan) {
1139 l2cap_chan_close(listen_chan, 0);
1140 l2cap_chan_put(listen_chan);
1141 listen_chan = NULL;
1142 }
1143
1144 if (conn) {
1145 struct lowpan_peer *peer;
1146
1147 if (!is_bt_6lowpan(conn->hcon))
1148 return -EINVAL;
1149
1150 peer = lookup_peer(conn);
1151 if (peer) {
1152 BT_DBG("6LoWPAN connection already exists");
1153 return -EALREADY;
1154 }
1155
1156 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1157 &conn->hcon->dst, conn->hcon->dst_type,
1158 addr_type);
1159 }
1160
1161 ret = bt_6lowpan_connect(&addr, addr_type);
1162 if (ret < 0)
1163 return ret;
1164
1165 return count;
1166 }
1167
1168 if (memcmp(buf, "disconnect ", 11) == 0) {
1169 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1170 if (ret < 0)
1171 return ret;
1172
1173 ret = bt_6lowpan_disconnect(conn, addr_type);
1174 if (ret < 0)
1175 return ret;
1176
1177 return count;
1178 }
1179
1180 return count;
1181}
1182
1183static int lowpan_control_show(struct seq_file *f, void *ptr)
1184{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001185 struct lowpan_btle_dev *entry;
Jukka Rissanen90305822014-10-28 17:16:47 +02001186 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001187
Jukka Rissanen90305822014-10-28 17:16:47 +02001188 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001189
Jukka Rissanen90305822014-10-28 17:16:47 +02001190 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1191 list_for_each_entry(peer, &entry->peers, list)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001192 seq_printf(f, "%pMR (type %u)\n",
1193 &peer->chan->dst, peer->chan->dst_type);
1194 }
1195
Jukka Rissanen90305822014-10-28 17:16:47 +02001196 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001197
1198 return 0;
1199}
1200
1201static int lowpan_control_open(struct inode *inode, struct file *file)
1202{
1203 return single_open(file, lowpan_control_show, inode->i_private);
1204}
1205
1206static const struct file_operations lowpan_control_fops = {
1207 .open = lowpan_control_open,
1208 .read = seq_read,
1209 .write = lowpan_control_write,
1210 .llseek = seq_lseek,
1211 .release = single_release,
1212};
1213
Jukka Rissanen7f118252014-06-18 16:37:11 +03001214static void disconnect_devices(void)
1215{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001216 struct lowpan_btle_dev *entry, *tmp, *new_dev;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001217 struct list_head devices;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001218
1219 INIT_LIST_HEAD(&devices);
1220
1221 /* We make a separate list of devices because the unregister_netdev()
1222 * will call device_event() which will also want to modify the same
1223 * devices list.
1224 */
1225
Jukka Rissanen90305822014-10-28 17:16:47 +02001226 rcu_read_lock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001227
Jukka Rissanen90305822014-10-28 17:16:47 +02001228 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001229 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1230 if (!new_dev)
1231 break;
1232
1233 new_dev->netdev = entry->netdev;
1234 INIT_LIST_HEAD(&new_dev->list);
1235
Jukka Rissanen90305822014-10-28 17:16:47 +02001236 list_add_rcu(&new_dev->list, &devices);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001237 }
1238
Jukka Rissanen90305822014-10-28 17:16:47 +02001239 rcu_read_unlock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001240
Dan Carpenterdaac1972014-10-29 19:10:57 +03001241 list_for_each_entry_safe(entry, tmp, &devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001242 ifdown(entry->netdev);
1243 BT_DBG("Unregistering netdev %s %p",
1244 entry->netdev->name, entry->netdev);
Alexander Aring00f59312015-12-09 22:46:29 +01001245 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001246 kfree(entry);
1247 }
1248}
1249
Jukka Rissanen18722c22013-12-11 17:05:37 +02001250static int device_event(struct notifier_block *unused,
1251 unsigned long event, void *ptr)
1252{
1253 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001254 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +02001255
1256 if (netdev->type != ARPHRD_6LOWPAN)
1257 return NOTIFY_DONE;
1258
1259 switch (event) {
1260 case NETDEV_UNREGISTER:
Jukka Rissanen90305822014-10-28 17:16:47 +02001261 spin_lock(&devices_lock);
1262 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +02001263 if (entry->netdev == netdev) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001264 BT_DBG("Unregistered netdev %s %p",
1265 netdev->name, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001266 list_del(&entry->list);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001267 break;
1268 }
1269 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001270 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001271 break;
1272 }
1273
1274 return NOTIFY_DONE;
1275}
1276
1277static struct notifier_block bt_6lowpan_dev_notifier = {
1278 .notifier_call = device_event,
1279};
1280
Jukka Rissanen5547e482014-06-18 16:37:09 +03001281static int __init bt_6lowpan_init(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001282{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001283 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1284 bt_debugfs, NULL,
1285 &lowpan_enable_fops);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001286 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1287 bt_debugfs, NULL,
1288 &lowpan_control_fops);
1289
Jukka Rissanen18722c22013-12-11 17:05:37 +02001290 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1291}
1292
Jukka Rissanen5547e482014-06-18 16:37:09 +03001293static void __exit bt_6lowpan_exit(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001294{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001295 debugfs_remove(lowpan_enable_debugfs);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001296 debugfs_remove(lowpan_control_debugfs);
1297
1298 if (listen_chan) {
1299 l2cap_chan_close(listen_chan, 0);
1300 l2cap_chan_put(listen_chan);
1301 }
1302
Jukka Rissanen7f118252014-06-18 16:37:11 +03001303 disconnect_devices();
1304
Jukka Rissanen18722c22013-12-11 17:05:37 +02001305 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1306}
Jukka Rissanen5547e482014-06-18 16:37:09 +03001307
1308module_init(bt_6lowpan_init);
1309module_exit(bt_6lowpan_exit);
1310
1311MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1312MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1313MODULE_VERSION(VERSION);
1314MODULE_LICENSE("GPL");