]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/bluetooth/6lowpan.c
net_sched: transform qdisc running bit into a seqcount
[mirror_ubuntu-artful-kernel.git] / net / bluetooth / 6lowpan.c
CommitLineData
18722c24 1/*
6b8d4a6a 2 Copyright (c) 2013-2014 Intel Corp.
18722c24
JR
3
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
18722c24
JR
14#include <linux/if_arp.h>
15#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
5547e48c 17#include <linux/module.h>
6b8d4a6a 18#include <linux/debugfs.h>
18722c24
JR
19
20#include <net/ipv6.h>
21#include <net/ip6_route.h>
22#include <net/addrconf.h>
23
18722c24
JR
24#include <net/bluetooth/bluetooth.h>
25#include <net/bluetooth/hci_core.h>
26#include <net/bluetooth/l2cap.h>
27
cefc8c8a 28#include <net/6lowpan.h> /* for the compression support */
18722c24 29
6b8d4a6a
JR
30#define VERSION "0.1"
31
7b2ed60e 32static struct dentry *lowpan_enable_debugfs;
6b8d4a6a
JR
33static struct dentry *lowpan_control_debugfs;
34
18722c24 35#define IFACE_NAME_TEMPLATE "bt%d"
18722c24
JR
36
37struct skb_cb {
38 struct in6_addr addr;
39e90c77 39 struct in6_addr gw;
6b8d4a6a
JR
40 struct l2cap_chan *chan;
41 int status;
18722c24
JR
42};
43#define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
44
45/* The devices list contains those devices that we are acting
46 * as a proxy. The BT 6LoWPAN device is a virtual device that
47 * connects to the Bluetooth LE device. The real connection to
48 * BT device is done via l2cap layer. There exists one
49 * virtual device / one BT 6LoWPAN network (=hciX device).
50 * The list contains struct lowpan_dev elements.
51 */
52static LIST_HEAD(bt_6lowpan_devices);
90305829 53static DEFINE_SPINLOCK(devices_lock);
18722c24 54
7b2ed60e 55static bool enable_6lowpan;
6b8d4a6a
JR
56
57/* We are listening incoming connections via this channel
58 */
59static struct l2cap_chan *listen_chan;
60
18722c24
JR
61struct lowpan_peer {
62 struct list_head list;
90305829 63 struct rcu_head rcu;
6b8d4a6a 64 struct l2cap_chan *chan;
18722c24
JR
65
66 /* peer addresses in various formats */
67 unsigned char eui64_addr[EUI64_ADDR_LEN];
68 struct in6_addr peer_addr;
69};
70
2e4d60cb 71struct lowpan_btle_dev {
18722c24
JR
72 struct list_head list;
73
74 struct hci_dev *hdev;
75 struct net_device *netdev;
76 struct list_head peers;
77 atomic_t peer_count; /* number of items in peers list */
78
79 struct work_struct delete_netdev;
80 struct delayed_work notify_peers;
81};
82
2e4d60cb
AA
83static inline struct lowpan_btle_dev *
84lowpan_btle_dev(const struct net_device *netdev)
18722c24 85{
2e4d60cb 86 return (struct lowpan_btle_dev *)lowpan_dev(netdev)->priv;
18722c24
JR
87}
88
2e4d60cb
AA
89static inline void peer_add(struct lowpan_btle_dev *dev,
90 struct lowpan_peer *peer)
18722c24 91{
90305829 92 list_add_rcu(&peer->list, &dev->peers);
18722c24
JR
93 atomic_inc(&dev->peer_count);
94}
95
2e4d60cb
AA
96static inline bool peer_del(struct lowpan_btle_dev *dev,
97 struct lowpan_peer *peer)
18722c24 98{
90305829 99 list_del_rcu(&peer->list);
4e790226 100 kfree_rcu(peer, rcu);
18722c24 101
18d93c17
JR
102 module_put(THIS_MODULE);
103
18722c24
JR
104 if (atomic_dec_and_test(&dev->peer_count)) {
105 BT_DBG("last peer");
106 return true;
107 }
108
109 return false;
110}
111
2e4d60cb 112static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_btle_dev *dev,
18722c24
JR
113 bdaddr_t *ba, __u8 type)
114{
90305829 115 struct lowpan_peer *peer;
18722c24
JR
116
117 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
118 ba, type);
119
90305829
JR
120 rcu_read_lock();
121
122 list_for_each_entry_rcu(peer, &dev->peers, list) {
6b8d4a6a
JR
123 BT_DBG("dst addr %pMR dst type %d",
124 &peer->chan->dst, peer->chan->dst_type);
18722c24 125
6b8d4a6a 126 if (bacmp(&peer->chan->dst, ba))
18722c24
JR
127 continue;
128
90305829
JR
129 if (type == peer->chan->dst_type) {
130 rcu_read_unlock();
6b8d4a6a 131 return peer;
90305829 132 }
6b8d4a6a
JR
133 }
134
90305829
JR
135 rcu_read_unlock();
136
6b8d4a6a
JR
137 return NULL;
138}
139
2e4d60cb
AA
140static inline struct lowpan_peer *
141__peer_lookup_chan(struct lowpan_btle_dev *dev, struct l2cap_chan *chan)
6b8d4a6a 142{
90305829 143 struct lowpan_peer *peer;
6b8d4a6a 144
90305829 145 list_for_each_entry_rcu(peer, &dev->peers, list) {
6b8d4a6a 146 if (peer->chan == chan)
18722c24
JR
147 return peer;
148 }
149
150 return NULL;
151}
152
2e4d60cb
AA
153static inline struct lowpan_peer *
154__peer_lookup_conn(struct lowpan_btle_dev *dev, struct l2cap_conn *conn)
18722c24 155{
90305829 156 struct lowpan_peer *peer;
18722c24 157
90305829 158 list_for_each_entry_rcu(peer, &dev->peers, list) {
6b8d4a6a 159 if (peer->chan->conn == conn)
18722c24
JR
160 return peer;
161 }
162
163 return NULL;
164}
165
2e4d60cb 166static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev,
39e90c77
JR
167 struct in6_addr *daddr,
168 struct sk_buff *skb)
169{
90305829 170 struct lowpan_peer *peer;
39e90c77
JR
171 struct in6_addr *nexthop;
172 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
173 int count = atomic_read(&dev->peer_count);
174
175 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
176
177 /* If we have multiple 6lowpan peers, then check where we should
178 * send the packet. If only one peer exists, then we can send the
179 * packet right away.
180 */
90305829
JR
181 if (count == 1) {
182 rcu_read_lock();
183 peer = list_first_or_null_rcu(&dev->peers, struct lowpan_peer,
184 list);
185 rcu_read_unlock();
186 return peer;
187 }
39e90c77
JR
188
189 if (!rt) {
190 nexthop = &lowpan_cb(skb)->gw;
191
192 if (ipv6_addr_any(nexthop))
193 return NULL;
194 } else {
2647a9b0 195 nexthop = rt6_nexthop(rt, daddr);
39e90c77
JR
196
197 /* We need to remember the address because it is needed
198 * by bt_xmit() when sending the packet. In bt_xmit(), the
199 * destination routing info is not set.
200 */
201 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
202 }
203
204 BT_DBG("gw %pI6c", nexthop);
205
90305829
JR
206 rcu_read_lock();
207
208 list_for_each_entry_rcu(peer, &dev->peers, list) {
39e90c77
JR
209 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
210 &peer->chan->dst, peer->chan->dst_type,
211 &peer->peer_addr);
212
90305829
JR
213 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
214 rcu_read_unlock();
39e90c77 215 return peer;
90305829 216 }
39e90c77
JR
217 }
218
90305829
JR
219 rcu_read_unlock();
220
39e90c77
JR
221 return NULL;
222}
223
18722c24
JR
224static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
225{
2e4d60cb 226 struct lowpan_btle_dev *entry;
18722c24 227 struct lowpan_peer *peer = NULL;
18722c24 228
90305829 229 rcu_read_lock();
18722c24 230
90305829
JR
231 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
232 peer = __peer_lookup_conn(entry, conn);
18722c24
JR
233 if (peer)
234 break;
235 }
236
90305829 237 rcu_read_unlock();
18722c24
JR
238
239 return peer;
240}
241
2e4d60cb 242static struct lowpan_btle_dev *lookup_dev(struct l2cap_conn *conn)
18722c24 243{
2e4d60cb
AA
244 struct lowpan_btle_dev *entry;
245 struct lowpan_btle_dev *dev = NULL;
18722c24 246
90305829 247 rcu_read_lock();
18722c24 248
90305829 249 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
18722c24
JR
250 if (conn->hcon->hdev == entry->hdev) {
251 dev = entry;
252 break;
253 }
254 }
255
90305829 256 rcu_read_unlock();
18722c24
JR
257
258 return dev;
259}
260
18722c24
JR
261static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
262{
263 struct sk_buff *skb_cp;
18722c24
JR
264
265 skb_cp = skb_copy(skb, GFP_ATOMIC);
266 if (!skb_cp)
f8b36176 267 return NET_RX_DROP;
18722c24 268
324e786e 269 return netif_rx_ni(skb_cp);
18722c24
JR
270}
271
01141234
MT
272static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
273 struct l2cap_chan *chan)
18722c24
JR
274{
275 const u8 *saddr, *daddr;
2e4d60cb 276 struct lowpan_btle_dev *dev;
18722c24 277 struct lowpan_peer *peer;
18722c24 278
2e4d60cb 279 dev = lowpan_btle_dev(netdev);
18722c24 280
90305829
JR
281 rcu_read_lock();
282 peer = __peer_lookup_chan(dev, chan);
283 rcu_read_unlock();
18722c24 284 if (!peer)
56b2c3ee 285 return -EINVAL;
18722c24
JR
286
287 saddr = peer->eui64_addr;
288 daddr = dev->netdev->dev_addr;
289
8911d774 290 return lowpan_header_decompress(skb, netdev, daddr, saddr);
18722c24
JR
291}
292
293static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
6b8d4a6a 294 struct l2cap_chan *chan)
18722c24
JR
295{
296 struct sk_buff *local_skb;
297 int ret;
298
299 if (!netif_running(dev))
300 goto drop;
301
cefdb801 302 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
18722c24
JR
303 goto drop;
304
cefdb801
AA
305 skb_reset_network_header(skb);
306
11e3ff70
MT
307 skb = skb_share_check(skb, GFP_ATOMIC);
308 if (!skb)
309 goto drop;
310
18722c24 311 /* check that it's our buffer */
cefdb801 312 if (lowpan_is_ipv6(*skb_network_header(skb))) {
87f5fedb
LD
313 /* Pull off the 1-byte of 6lowpan header. */
314 skb_pull(skb, 1);
315
18722c24
JR
316 /* Copy the packet so that the IPv6 header is
317 * properly aligned.
318 */
319 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
320 skb_tailroom(skb), GFP_ATOMIC);
321 if (!local_skb)
322 goto drop;
323
324 local_skb->protocol = htons(ETH_P_IPV6);
325 local_skb->pkt_type = PACKET_HOST;
4c58f328 326 local_skb->dev = dev;
18722c24 327
18722c24
JR
328 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
329
330 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
331 kfree_skb(local_skb);
332 goto drop;
333 }
334
335 dev->stats.rx_bytes += skb->len;
336 dev->stats.rx_packets++;
337
3c400b84
MT
338 consume_skb(local_skb);
339 consume_skb(skb);
cefdb801
AA
340 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
341 local_skb = skb_clone(skb, GFP_ATOMIC);
342 if (!local_skb)
343 goto drop;
344
4c58f328
GRB
345 local_skb->dev = dev;
346
cefdb801
AA
347 ret = iphc_decompress(local_skb, dev, chan);
348 if (ret < 0) {
349 kfree_skb(local_skb);
350 goto drop;
351 }
352
353 local_skb->protocol = htons(ETH_P_IPV6);
354 local_skb->pkt_type = PACKET_HOST;
cefdb801
AA
355
356 if (give_skb_to_upper(local_skb, dev)
357 != NET_RX_SUCCESS) {
358 kfree_skb(local_skb);
359 goto drop;
18722c24 360 }
cefdb801
AA
361
362 dev->stats.rx_bytes += skb->len;
363 dev->stats.rx_packets++;
364
365 consume_skb(local_skb);
366 consume_skb(skb);
367 } else {
368 goto drop;
18722c24
JR
369 }
370
371 return NET_RX_SUCCESS;
372
373drop:
6b8d4a6a 374 dev->stats.rx_dropped++;
18722c24
JR
375 return NET_RX_DROP;
376}
377
378/* Packet from BT LE device */
6b8d4a6a 379static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
18722c24 380{
2e4d60cb 381 struct lowpan_btle_dev *dev;
18722c24
JR
382 struct lowpan_peer *peer;
383 int err;
384
6b8d4a6a 385 peer = lookup_peer(chan->conn);
18722c24
JR
386 if (!peer)
387 return -ENOENT;
388
6b8d4a6a 389 dev = lookup_dev(chan->conn);
30d3db44 390 if (!dev || !dev->netdev)
18722c24
JR
391 return -ENOENT;
392
6b8d4a6a
JR
393 err = recv_pkt(skb, dev->netdev, chan);
394 if (err) {
395 BT_DBG("recv pkt %d", err);
396 err = -EAGAIN;
18722c24
JR
397 }
398
6b8d4a6a 399 return err;
18722c24
JR
400}
401
62bbd5b3 402static u8 get_addr_type_from_eui64(u8 byte)
18722c24 403{
6b8d4a6a
JR
404 /* Is universal(0) or local(1) bit */
405 return ((byte & 0x02) ? BDADDR_LE_RANDOM : BDADDR_LE_PUBLIC);
62bbd5b3
JR
406}
407
408static void copy_to_bdaddr(struct in6_addr *ip6_daddr, bdaddr_t *addr)
409{
410 u8 *eui64 = ip6_daddr->s6_addr + 8;
18722c24
JR
411
412 addr->b[0] = eui64[7];
413 addr->b[1] = eui64[6];
414 addr->b[2] = eui64[5];
415 addr->b[3] = eui64[2];
416 addr->b[4] = eui64[1];
417 addr->b[5] = eui64[0];
62bbd5b3 418}
18722c24 419
62bbd5b3
JR
420static void convert_dest_bdaddr(struct in6_addr *ip6_daddr,
421 bdaddr_t *addr, u8 *addr_type)
422{
423 copy_to_bdaddr(ip6_daddr, addr);
18722c24 424
62bbd5b3
JR
425 /* We need to toggle the U/L bit that we got from IPv6 address
426 * so that we get the proper address and type of the BD address.
427 */
428 addr->b[5] ^= 0x02;
429
430 *addr_type = get_addr_type_from_eui64(addr->b[5]);
18722c24
JR
431}
432
36b3dd25
JR
433static int setup_header(struct sk_buff *skb, struct net_device *netdev,
434 bdaddr_t *peer_addr, u8 *peer_addr_type)
18722c24 435{
36b3dd25 436 struct in6_addr ipv6_daddr;
55441070 437 struct ipv6hdr *hdr;
2e4d60cb 438 struct lowpan_btle_dev *dev;
18722c24
JR
439 struct lowpan_peer *peer;
440 bdaddr_t addr, *any = BDADDR_ANY;
36b3dd25
JR
441 u8 *daddr = any->b;
442 int err, status = 0;
18722c24 443
55441070
GRB
444 hdr = ipv6_hdr(skb);
445
2e4d60cb 446 dev = lowpan_btle_dev(netdev);
18722c24 447
55441070 448 memcpy(&ipv6_daddr, &hdr->daddr, sizeof(ipv6_daddr));
36b3dd25
JR
449
450 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
6b8d4a6a 451 lowpan_cb(skb)->chan = NULL;
18722c24 452 } else {
36b3dd25 453 u8 addr_type;
18722c24
JR
454
455 /* Get destination BT device from skb.
456 * If there is no such peer then discard the packet.
457 */
36b3dd25 458 convert_dest_bdaddr(&ipv6_daddr, &addr, &addr_type);
18722c24 459
6b8d4a6a 460 BT_DBG("dest addr %pMR type %d IP %pI6c", &addr,
36b3dd25 461 addr_type, &ipv6_daddr);
18722c24 462
18722c24 463 peer = peer_lookup_ba(dev, &addr, addr_type);
18722c24 464 if (!peer) {
39e90c77
JR
465 /* The packet might be sent to 6lowpan interface
466 * because of routing (either via default route
467 * or user set route) so get peer according to
468 * the destination address.
469 */
36b3dd25 470 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
39e90c77
JR
471 if (!peer) {
472 BT_DBG("no such peer %pMR found", &addr);
473 return -ENOENT;
474 }
18722c24
JR
475 }
476
477 daddr = peer->eui64_addr;
36b3dd25
JR
478 *peer_addr = addr;
479 *peer_addr_type = addr_type;
6b8d4a6a 480 lowpan_cb(skb)->chan = peer->chan;
36b3dd25
JR
481
482 status = 1;
18722c24
JR
483 }
484
a6f77389 485 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
36b3dd25
JR
486
487 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
488 if (err < 0)
489 return err;
490
491 return status;
492}
493
494static int header_create(struct sk_buff *skb, struct net_device *netdev,
495 unsigned short type, const void *_daddr,
496 const void *_saddr, unsigned int len)
497{
36b3dd25
JR
498 if (type != ETH_P_IPV6)
499 return -EINVAL;
500
36b3dd25 501 return 0;
18722c24
JR
502}
503
504/* Packet to BT LE device */
6b8d4a6a 505static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
d7b6b0a5 506 struct net_device *netdev)
18722c24 507{
6b8d4a6a
JR
508 struct msghdr msg;
509 struct kvec iv;
510 int err;
511
512 /* Remember the skb so that we can send EAGAIN to the caller if
d7b6b0a5 513 * we run out of credits.
6b8d4a6a 514 */
d7b6b0a5 515 chan->data = skb;
6b8d4a6a 516
6b8d4a6a
JR
517 iv.iov_base = skb->data;
518 iv.iov_len = skb->len;
519
c0371da6 520 memset(&msg, 0, sizeof(msg));
17836394 521 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &iv, 1, skb->len);
c0371da6 522
6b8d4a6a
JR
523 err = l2cap_chan_send(chan, &msg, skb->len);
524 if (err > 0) {
525 netdev->stats.tx_bytes += err;
526 netdev->stats.tx_packets++;
527 return 0;
528 }
529
530 if (!err)
531 err = lowpan_cb(skb)->status;
532
533 if (err < 0) {
534 if (err == -EAGAIN)
535 netdev->stats.tx_dropped++;
536 else
537 netdev->stats.tx_errors++;
538 }
18722c24 539
6b8d4a6a 540 return err;
18722c24
JR
541}
542
9c238ca8 543static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
18722c24
JR
544{
545 struct sk_buff *local_skb;
2e4d60cb 546 struct lowpan_btle_dev *entry;
9c238ca8 547 int err = 0;
18722c24 548
90305829 549 rcu_read_lock();
18722c24 550
90305829
JR
551 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
552 struct lowpan_peer *pentry;
2e4d60cb 553 struct lowpan_btle_dev *dev;
18722c24
JR
554
555 if (entry->netdev != netdev)
556 continue;
557
2e4d60cb 558 dev = lowpan_btle_dev(entry->netdev);
18722c24 559
90305829 560 list_for_each_entry_rcu(pentry, &dev->peers, list) {
9c238ca8
JR
561 int ret;
562
18722c24
JR
563 local_skb = skb_clone(skb, GFP_ATOMIC);
564
36b3dd25
JR
565 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
566 netdev->name,
567 &pentry->chan->dst, pentry->chan->dst_type,
568 &pentry->peer_addr, pentry->chan);
9c238ca8
JR
569 ret = send_pkt(pentry->chan, local_skb, netdev);
570 if (ret < 0)
571 err = ret;
18722c24
JR
572
573 kfree_skb(local_skb);
574 }
575 }
576
90305829 577 rcu_read_unlock();
9c238ca8
JR
578
579 return err;
18722c24
JR
580}
581
582static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
583{
584 int err = 0;
18722c24
JR
585 bdaddr_t addr;
586 u8 addr_type;
587
36b3dd25
JR
588 /* We must take a copy of the skb before we modify/replace the ipv6
589 * header as the header could be used elsewhere
590 */
b0c42cd7
AA
591 skb = skb_unshare(skb, GFP_ATOMIC);
592 if (!skb)
36b3dd25
JR
593 return NET_XMIT_DROP;
594
595 /* Return values from setup_header()
596 * <0 - error, packet is dropped
597 * 0 - this is a multicast packet
598 * 1 - this is unicast packet
599 */
600 err = setup_header(skb, netdev, &addr, &addr_type);
601 if (err < 0) {
602 kfree_skb(skb);
603 return NET_XMIT_DROP;
604 }
18722c24 605
36b3dd25
JR
606 if (err) {
607 if (lowpan_cb(skb)->chan) {
608 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
609 netdev->name, &addr, addr_type,
610 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
d7b6b0a5 611 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
36b3dd25 612 } else {
6b8d4a6a 613 err = -ENOENT;
36b3dd25
JR
614 }
615 } else {
616 /* We need to send the packet to every device behind this
617 * interface.
618 */
9c238ca8 619 err = send_mcast_pkt(skb, netdev);
18722c24 620 }
18722c24 621
fc12518a
JR
622 dev_kfree_skb(skb);
623
18722c24
JR
624 if (err)
625 BT_DBG("ERROR: xmit failed (%d)", err);
626
36b3dd25 627 return err < 0 ? NET_XMIT_DROP : err;
18722c24
JR
628}
629
df092306
JR
630static struct lock_class_key bt_tx_busylock;
631static struct lock_class_key bt_netdev_xmit_lock_key;
f9eb8aea 632static struct lock_class_key bt_qdisc_running_key;
df092306
JR
633
634static void bt_set_lockdep_class_one(struct net_device *dev,
635 struct netdev_queue *txq,
636 void *_unused)
637{
638 lockdep_set_class(&txq->_xmit_lock, &bt_netdev_xmit_lock_key);
639}
640
641static int bt_dev_init(struct net_device *dev)
642{
643 netdev_for_each_tx_queue(dev, bt_set_lockdep_class_one, NULL);
644 dev->qdisc_tx_busylock = &bt_tx_busylock;
f9eb8aea 645 dev->qdisc_running_key = &bt_qdisc_running_key;
df092306
JR
646
647 return 0;
648}
649
18722c24 650static const struct net_device_ops netdev_ops = {
df092306 651 .ndo_init = bt_dev_init,
18722c24
JR
652 .ndo_start_xmit = bt_xmit,
653};
654
655static struct header_ops header_ops = {
656 .create = header_create,
657};
658
659static void netdev_setup(struct net_device *dev)
660{
18722c24
JR
661 dev->hard_header_len = 0;
662 dev->needed_tailroom = 0;
156395c9
JR
663 dev->flags = IFF_RUNNING | IFF_POINTOPOINT |
664 IFF_MULTICAST;
18722c24
JR
665 dev->watchdog_timeo = 0;
666
667 dev->netdev_ops = &netdev_ops;
668 dev->header_ops = &header_ops;
669 dev->destructor = free_netdev;
670}
671
672static struct device_type bt_type = {
673 .name = "bluetooth",
674};
675
676static void set_addr(u8 *eui, u8 *addr, u8 addr_type)
677{
678 /* addr is the BT address in little-endian format */
679 eui[0] = addr[5];
680 eui[1] = addr[4];
681 eui[2] = addr[3];
682 eui[3] = 0xFF;
683 eui[4] = 0xFE;
684 eui[5] = addr[2];
685 eui[6] = addr[1];
686 eui[7] = addr[0];
687
62bbd5b3 688 /* Universal/local bit set, BT 6lowpan draft ch. 3.2.1 */
6b8d4a6a 689 if (addr_type == BDADDR_LE_PUBLIC)
62bbd5b3 690 eui[0] &= ~0x02;
18722c24 691 else
62bbd5b3
JR
692 eui[0] |= 0x02;
693
694 BT_DBG("type %d addr %*phC", addr_type, 8, eui);
18722c24
JR
695}
696
697static void set_dev_addr(struct net_device *netdev, bdaddr_t *addr,
698 u8 addr_type)
699{
700 netdev->addr_assign_type = NET_ADDR_PERM;
701 set_addr(netdev->dev_addr, addr->b, addr_type);
18722c24
JR
702}
703
704static void ifup(struct net_device *netdev)
705{
706 int err;
707
708 rtnl_lock();
709 err = dev_open(netdev);
710 if (err < 0)
711 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
712 rtnl_unlock();
713}
714
7f118253
JR
715static void ifdown(struct net_device *netdev)
716{
717 int err;
718
719 rtnl_lock();
720 err = dev_close(netdev);
721 if (err < 0)
722 BT_INFO("iface %s cannot be closed (%d)", netdev->name, err);
723 rtnl_unlock();
724}
725
18722c24
JR
726static void do_notify_peers(struct work_struct *work)
727{
2e4d60cb
AA
728 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
729 notify_peers.work);
18722c24
JR
730
731 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
732}
733
734static bool is_bt_6lowpan(struct hci_conn *hcon)
735{
736 if (hcon->type != LE_LINK)
737 return false;
738
7b2ed60e 739 if (!enable_6lowpan)
6b8d4a6a
JR
740 return false;
741
742 return true;
18722c24
JR
743}
744
6b8d4a6a
JR
745static struct l2cap_chan *chan_create(void)
746{
747 struct l2cap_chan *chan;
748
749 chan = l2cap_chan_create();
750 if (!chan)
751 return NULL;
752
753 l2cap_chan_set_defaults(chan);
754
755 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
756 chan->mode = L2CAP_MODE_LE_FLOWCTL;
301de2cb 757 chan->imtu = 1280;
6b8d4a6a
JR
758
759 return chan;
760}
761
b2799cec
JR
762static void set_ip_addr_bits(u8 addr_type, u8 *addr)
763{
764 if (addr_type == BDADDR_LE_PUBLIC)
765 *addr |= 0x02;
766 else
767 *addr &= ~0x02;
768}
769
6b8d4a6a 770static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
2e4d60cb 771 struct lowpan_btle_dev *dev)
18722c24
JR
772{
773 struct lowpan_peer *peer;
18722c24
JR
774
775 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
776 if (!peer)
6b8d4a6a 777 return NULL;
18722c24 778
6b8d4a6a 779 peer->chan = chan;
18722c24
JR
780 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
781
782 /* RFC 2464 ch. 5 */
783 peer->peer_addr.s6_addr[0] = 0xFE;
784 peer->peer_addr.s6_addr[1] = 0x80;
6b8d4a6a
JR
785 set_addr((u8 *)&peer->peer_addr.s6_addr + 8, chan->dst.b,
786 chan->dst_type);
18722c24
JR
787
788 memcpy(&peer->eui64_addr, (u8 *)&peer->peer_addr.s6_addr + 8,
789 EUI64_ADDR_LEN);
18722c24 790
b2799cec
JR
791 /* IPv6 address needs to have the U/L bit set properly so toggle
792 * it back here.
793 */
794 set_ip_addr_bits(chan->dst_type, (u8 *)&peer->peer_addr.s6_addr + 8);
795
90305829 796 spin_lock(&devices_lock);
18722c24
JR
797 INIT_LIST_HEAD(&peer->list);
798 peer_add(dev, peer);
90305829 799 spin_unlock(&devices_lock);
18722c24
JR
800
801 /* Notifying peers about us needs to be done without locks held */
802 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
803 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
804
6b8d4a6a 805 return peer->chan;
18722c24
JR
806}
807
2e4d60cb 808static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
18722c24 809{
18722c24
JR
810 struct net_device *netdev;
811 int err = 0;
18722c24 812
2e4d60cb 813 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
b72f6f51
AA
814 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
815 netdev_setup);
18722c24
JR
816 if (!netdev)
817 return -ENOMEM;
818
6b8d4a6a 819 set_dev_addr(netdev, &chan->src, chan->src_type);
18722c24
JR
820
821 netdev->netdev_ops = &netdev_ops;
fc84242f 822 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
18722c24
JR
823 SET_NETDEV_DEVTYPE(netdev, &bt_type);
824
2e4d60cb 825 *dev = lowpan_btle_dev(netdev);
5857d1db
AA
826 (*dev)->netdev = netdev;
827 (*dev)->hdev = chan->conn->hcon->hdev;
828 INIT_LIST_HEAD(&(*dev)->peers);
829
830 spin_lock(&devices_lock);
831 INIT_LIST_HEAD(&(*dev)->list);
832 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
833 spin_unlock(&devices_lock);
834
00f59314 835 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
18722c24
JR
836 if (err < 0) {
837 BT_INFO("register_netdev failed %d", err);
5857d1db
AA
838 spin_lock(&devices_lock);
839 list_del_rcu(&(*dev)->list);
840 spin_unlock(&devices_lock);
18722c24
JR
841 free_netdev(netdev);
842 goto out;
843 }
844
6b8d4a6a
JR
845 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
846 netdev->ifindex, &chan->dst, chan->dst_type,
847 &chan->src, chan->src_type);
18722c24
JR
848 set_bit(__LINK_STATE_PRESENT, &netdev->state);
849
6b8d4a6a 850 return 0;
18722c24
JR
851
852out:
853 return err;
854}
855
6b8d4a6a
JR
856static inline void chan_ready_cb(struct l2cap_chan *chan)
857{
2e4d60cb 858 struct lowpan_btle_dev *dev;
6b8d4a6a
JR
859
860 dev = lookup_dev(chan->conn);
861
862 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
863
864 if (!dev) {
865 if (setup_netdev(chan, &dev) < 0) {
866 l2cap_chan_del(chan, -ENOENT);
867 return;
868 }
869 }
870
18d93c17
JR
871 if (!try_module_get(THIS_MODULE))
872 return;
873
6b8d4a6a
JR
874 add_peer_chan(chan, dev);
875 ifup(dev->netdev);
876}
877
2b293490 878static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
6b8d4a6a 879{
2b293490 880 struct l2cap_chan *chan;
6b8d4a6a 881
630ef791
JH
882 chan = chan_create();
883 if (!chan)
884 return NULL;
885
2b293490 886 chan->ops = pchan->ops;
6b8d4a6a
JR
887
888 BT_DBG("chan %p pchan %p", chan, pchan);
889
2b293490 890 return chan;
6b8d4a6a
JR
891}
892
18722c24
JR
893static void delete_netdev(struct work_struct *work)
894{
2e4d60cb
AA
895 struct lowpan_btle_dev *entry = container_of(work,
896 struct lowpan_btle_dev,
897 delete_netdev);
18722c24 898
00f59314 899 lowpan_unregister_netdev(entry->netdev);
18722c24 900
2ad88fb2 901 /* The entry pointer is deleted by the netdev destructor. */
18722c24
JR
902}
903
6b8d4a6a 904static void chan_close_cb(struct l2cap_chan *chan)
18722c24 905{
2e4d60cb
AA
906 struct lowpan_btle_dev *entry;
907 struct lowpan_btle_dev *dev = NULL;
18722c24
JR
908 struct lowpan_peer *peer;
909 int err = -ENOENT;
f63666d2 910 bool last = false, remove = true;
18722c24 911
6b8d4a6a
JR
912 BT_DBG("chan %p conn %p", chan, chan->conn);
913
914 if (chan->conn && chan->conn->hcon) {
915 if (!is_bt_6lowpan(chan->conn->hcon))
916 return;
917
918 /* If conn is set, then the netdev is also there and we should
919 * not remove it.
920 */
f63666d2 921 remove = false;
6b8d4a6a 922 }
18722c24 923
90305829 924 spin_lock(&devices_lock);
18722c24 925
90305829 926 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
2e4d60cb 927 dev = lowpan_btle_dev(entry->netdev);
90305829 928 peer = __peer_lookup_chan(dev, chan);
18722c24
JR
929 if (peer) {
930 last = peer_del(dev, peer);
931 err = 0;
6b8d4a6a
JR
932
933 BT_DBG("dev %p removing %speer %p", dev,
934 last ? "last " : "1 ", peer);
935 BT_DBG("chan %p orig refcnt %d", chan,
936 atomic_read(&chan->kref.refcount));
937
938 l2cap_chan_put(chan);
18722c24
JR
939 break;
940 }
941 }
942
943 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
90305829 944 spin_unlock(&devices_lock);
18722c24
JR
945
946 cancel_delayed_work_sync(&dev->notify_peers);
947
7f118253
JR
948 ifdown(dev->netdev);
949
f63666d2 950 if (remove) {
6b8d4a6a
JR
951 INIT_WORK(&entry->delete_netdev, delete_netdev);
952 schedule_work(&entry->delete_netdev);
953 }
18722c24 954 } else {
90305829 955 spin_unlock(&devices_lock);
18722c24
JR
956 }
957
6b8d4a6a
JR
958 return;
959}
960
961static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
962{
963 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
964 state_to_string(state), err);
965}
966
967static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
968 unsigned long hdr_len,
969 unsigned long len, int nb)
970{
971 /* Note that we must allocate using GFP_ATOMIC here as
972 * this function is called originally from netdev hard xmit
973 * function in atomic context.
974 */
975 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
976}
977
978static void chan_suspend_cb(struct l2cap_chan *chan)
979{
980 struct sk_buff *skb = chan->data;
981
982 BT_DBG("chan %p conn %p skb %p", chan, chan->conn, skb);
983
59790aa2
JR
984 if (!skb)
985 return;
986
6b8d4a6a
JR
987 lowpan_cb(skb)->status = -EAGAIN;
988}
989
990static void chan_resume_cb(struct l2cap_chan *chan)
991{
992 struct sk_buff *skb = chan->data;
993
994 BT_DBG("chan %p conn %p skb %p", chan, chan->conn, skb);
995
59790aa2
JR
996 if (!skb)
997 return;
998
6b8d4a6a
JR
999 lowpan_cb(skb)->status = 0;
1000}
1001
1002static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
1003{
2ae50d8d 1004 return L2CAP_CONN_TIMEOUT;
6b8d4a6a
JR
1005}
1006
1007static const struct l2cap_ops bt_6lowpan_chan_ops = {
1008 .name = "L2CAP 6LoWPAN channel",
1009 .new_connection = chan_new_conn_cb,
1010 .recv = chan_recv_cb,
1011 .close = chan_close_cb,
1012 .state_change = chan_state_change_cb,
1013 .ready = chan_ready_cb,
1014 .resume = chan_resume_cb,
1015 .suspend = chan_suspend_cb,
1016 .get_sndtimeo = chan_get_sndtimeo_cb,
1017 .alloc_skb = chan_alloc_skb_cb,
6b8d4a6a
JR
1018
1019 .teardown = l2cap_chan_no_teardown,
1020 .defer = l2cap_chan_no_defer,
1021 .set_shutdown = l2cap_chan_no_set_shutdown,
1022};
1023
1024static inline __u8 bdaddr_type(__u8 type)
1025{
1026 if (type == ADDR_LE_DEV_PUBLIC)
1027 return BDADDR_LE_PUBLIC;
1028 else
1029 return BDADDR_LE_RANDOM;
1030}
1031
6b8d4a6a
JR
1032static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
1033{
0cd088fc 1034 struct l2cap_chan *chan;
6b8d4a6a
JR
1035 int err;
1036
26d46dff 1037 chan = chan_create();
0cd088fc 1038 if (!chan)
6b8d4a6a
JR
1039 return -EINVAL;
1040
26d46dff
JH
1041 chan->ops = &bt_6lowpan_chan_ops;
1042
0cd088fc 1043 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
6b8d4a6a
JR
1044 addr, dst_type);
1045
0cd088fc 1046 BT_DBG("chan %p err %d", chan, err);
6b8d4a6a 1047 if (err < 0)
0cd088fc 1048 l2cap_chan_put(chan);
6b8d4a6a 1049
18722c24
JR
1050 return err;
1051}
1052
6b8d4a6a
JR
1053static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
1054{
1055 struct lowpan_peer *peer;
1056
1057 BT_DBG("conn %p dst type %d", conn, dst_type);
1058
1059 peer = lookup_peer(conn);
1060 if (!peer)
1061 return -ENOENT;
1062
1063 BT_DBG("peer %p chan %p", peer, peer->chan);
1064
1065 l2cap_chan_close(peer->chan, ENOENT);
1066
1067 return 0;
1068}
1069
1070static struct l2cap_chan *bt_6lowpan_listen(void)
1071{
1072 bdaddr_t *addr = BDADDR_ANY;
0cd088fc 1073 struct l2cap_chan *chan;
6b8d4a6a
JR
1074 int err;
1075
7b2ed60e 1076 if (!enable_6lowpan)
6b8d4a6a
JR
1077 return NULL;
1078
26d46dff 1079 chan = chan_create();
0cd088fc 1080 if (!chan)
6b8d4a6a
JR
1081 return NULL;
1082
26d46dff 1083 chan->ops = &bt_6lowpan_chan_ops;
0cd088fc
JH
1084 chan->state = BT_LISTEN;
1085 chan->src_type = BDADDR_LE_PUBLIC;
6b8d4a6a 1086
0cd088fc 1087 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
2773b024 1088
0cd088fc 1089 BT_DBG("chan %p src type %d", chan, chan->src_type);
6b8d4a6a 1090
0cd088fc 1091 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
6b8d4a6a 1092 if (err) {
0cd088fc 1093 l2cap_chan_put(chan);
6b8d4a6a
JR
1094 BT_ERR("psm cannot be added err %d", err);
1095 return NULL;
1096 }
1097
0cd088fc 1098 return chan;
6b8d4a6a
JR
1099}
1100
1101static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
1102 struct l2cap_conn **conn)
1103{
1104 struct hci_conn *hcon;
1105 struct hci_dev *hdev;
1106 bdaddr_t *src = BDADDR_ANY;
1107 int n;
1108
1109 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
1110 &addr->b[5], &addr->b[4], &addr->b[3],
1111 &addr->b[2], &addr->b[1], &addr->b[0],
1112 addr_type);
1113
1114 if (n < 7)
1115 return -EINVAL;
1116
1117 hdev = hci_get_route(addr, src);
1118 if (!hdev)
1119 return -ENOENT;
1120
1121 hci_dev_lock(hdev);
f5ad4ffc 1122 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
6b8d4a6a
JR
1123 hci_dev_unlock(hdev);
1124
1125 if (!hcon)
1126 return -ENOENT;
1127
1128 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1129
1130 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1131
1132 return 0;
1133}
1134
1135static void disconnect_all_peers(void)
1136{
2e4d60cb 1137 struct lowpan_btle_dev *entry;
6b8d4a6a
JR
1138 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1139 struct list_head peers;
6b8d4a6a
JR
1140
1141 INIT_LIST_HEAD(&peers);
1142
1143 /* We make a separate list of peers as the close_cb() will
1144 * modify the device peers list so it is better not to mess
1145 * with the same list at the same time.
1146 */
1147
90305829 1148 rcu_read_lock();
6b8d4a6a 1149
90305829
JR
1150 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1151 list_for_each_entry_rcu(peer, &entry->peers, list) {
6b8d4a6a
JR
1152 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1153 if (!new_peer)
1154 break;
1155
1156 new_peer->chan = peer->chan;
1157 INIT_LIST_HEAD(&new_peer->list);
1158
1159 list_add(&new_peer->list, &peers);
1160 }
1161 }
1162
90305829 1163 rcu_read_unlock();
6b8d4a6a 1164
90305829 1165 spin_lock(&devices_lock);
6b8d4a6a
JR
1166 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1167 l2cap_chan_close(peer->chan, ENOENT);
90305829
JR
1168
1169 list_del_rcu(&peer->list);
4e790226 1170 kfree_rcu(peer, rcu);
6b8d4a6a 1171 }
90305829 1172 spin_unlock(&devices_lock);
6b8d4a6a
JR
1173}
1174
7b2ed60e 1175struct set_enable {
90305829 1176 struct work_struct work;
7b2ed60e 1177 bool flag;
90305829 1178};
6b8d4a6a 1179
7b2ed60e 1180static void do_enable_set(struct work_struct *work)
90305829 1181{
7b2ed60e
JR
1182 struct set_enable *set_enable = container_of(work,
1183 struct set_enable, work);
90305829 1184
7b2ed60e 1185 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
6b8d4a6a 1186 /* Disconnect existing connections if 6lowpan is
7b2ed60e 1187 * disabled
6b8d4a6a
JR
1188 */
1189 disconnect_all_peers();
1190
7b2ed60e 1191 enable_6lowpan = set_enable->flag;
6b8d4a6a
JR
1192
1193 if (listen_chan) {
1194 l2cap_chan_close(listen_chan, 0);
1195 l2cap_chan_put(listen_chan);
1196 }
1197
1198 listen_chan = bt_6lowpan_listen();
1199
7b2ed60e 1200 kfree(set_enable);
90305829
JR
1201}
1202
7b2ed60e 1203static int lowpan_enable_set(void *data, u64 val)
90305829 1204{
7b2ed60e 1205 struct set_enable *set_enable;
90305829 1206
7b2ed60e
JR
1207 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1208 if (!set_enable)
90305829
JR
1209 return -ENOMEM;
1210
7b2ed60e
JR
1211 set_enable->flag = !!val;
1212 INIT_WORK(&set_enable->work, do_enable_set);
90305829 1213
7b2ed60e 1214 schedule_work(&set_enable->work);
90305829 1215
6b8d4a6a
JR
1216 return 0;
1217}
1218
7b2ed60e 1219static int lowpan_enable_get(void *data, u64 *val)
6b8d4a6a 1220{
7b2ed60e 1221 *val = enable_6lowpan;
6b8d4a6a
JR
1222 return 0;
1223}
1224
7b2ed60e
JR
1225DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1226 lowpan_enable_set, "%llu\n");
6b8d4a6a
JR
1227
1228static ssize_t lowpan_control_write(struct file *fp,
1229 const char __user *user_buffer,
1230 size_t count,
1231 loff_t *position)
1232{
1233 char buf[32];
1234 size_t buf_size = min(count, sizeof(buf) - 1);
1235 int ret;
1236 bdaddr_t addr;
1237 u8 addr_type;
1238 struct l2cap_conn *conn = NULL;
1239
1240 if (copy_from_user(buf, user_buffer, buf_size))
1241 return -EFAULT;
1242
1243 buf[buf_size] = '\0';
1244
1245 if (memcmp(buf, "connect ", 8) == 0) {
1246 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1247 if (ret == -EINVAL)
1248 return ret;
1249
1250 if (listen_chan) {
1251 l2cap_chan_close(listen_chan, 0);
1252 l2cap_chan_put(listen_chan);
1253 listen_chan = NULL;
1254 }
1255
1256 if (conn) {
1257 struct lowpan_peer *peer;
1258
1259 if (!is_bt_6lowpan(conn->hcon))
1260 return -EINVAL;
1261
1262 peer = lookup_peer(conn);
1263 if (peer) {
1264 BT_DBG("6LoWPAN connection already exists");
1265 return -EALREADY;
1266 }
1267
1268 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1269 &conn->hcon->dst, conn->hcon->dst_type,
1270 addr_type);
1271 }
1272
1273 ret = bt_6lowpan_connect(&addr, addr_type);
1274 if (ret < 0)
1275 return ret;
1276
1277 return count;
1278 }
1279
1280 if (memcmp(buf, "disconnect ", 11) == 0) {
1281 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1282 if (ret < 0)
1283 return ret;
1284
1285 ret = bt_6lowpan_disconnect(conn, addr_type);
1286 if (ret < 0)
1287 return ret;
1288
1289 return count;
1290 }
1291
1292 return count;
1293}
1294
1295static int lowpan_control_show(struct seq_file *f, void *ptr)
1296{
2e4d60cb 1297 struct lowpan_btle_dev *entry;
90305829 1298 struct lowpan_peer *peer;
6b8d4a6a 1299
90305829 1300 spin_lock(&devices_lock);
6b8d4a6a 1301
90305829
JR
1302 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1303 list_for_each_entry(peer, &entry->peers, list)
6b8d4a6a
JR
1304 seq_printf(f, "%pMR (type %u)\n",
1305 &peer->chan->dst, peer->chan->dst_type);
1306 }
1307
90305829 1308 spin_unlock(&devices_lock);
6b8d4a6a
JR
1309
1310 return 0;
1311}
1312
1313static int lowpan_control_open(struct inode *inode, struct file *file)
1314{
1315 return single_open(file, lowpan_control_show, inode->i_private);
1316}
1317
1318static const struct file_operations lowpan_control_fops = {
1319 .open = lowpan_control_open,
1320 .read = seq_read,
1321 .write = lowpan_control_write,
1322 .llseek = seq_lseek,
1323 .release = single_release,
1324};
1325
7f118253
JR
1326static void disconnect_devices(void)
1327{
2e4d60cb 1328 struct lowpan_btle_dev *entry, *tmp, *new_dev;
7f118253 1329 struct list_head devices;
7f118253
JR
1330
1331 INIT_LIST_HEAD(&devices);
1332
1333 /* We make a separate list of devices because the unregister_netdev()
1334 * will call device_event() which will also want to modify the same
1335 * devices list.
1336 */
1337
90305829 1338 rcu_read_lock();
7f118253 1339
90305829 1340 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
7f118253
JR
1341 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1342 if (!new_dev)
1343 break;
1344
1345 new_dev->netdev = entry->netdev;
1346 INIT_LIST_HEAD(&new_dev->list);
1347
90305829 1348 list_add_rcu(&new_dev->list, &devices);
7f118253
JR
1349 }
1350
90305829 1351 rcu_read_unlock();
7f118253 1352
daac197c 1353 list_for_each_entry_safe(entry, tmp, &devices, list) {
7f118253
JR
1354 ifdown(entry->netdev);
1355 BT_DBG("Unregistering netdev %s %p",
1356 entry->netdev->name, entry->netdev);
00f59314 1357 lowpan_unregister_netdev(entry->netdev);
7f118253
JR
1358 kfree(entry);
1359 }
1360}
1361
18722c24
JR
1362static int device_event(struct notifier_block *unused,
1363 unsigned long event, void *ptr)
1364{
1365 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
2e4d60cb 1366 struct lowpan_btle_dev *entry;
18722c24
JR
1367
1368 if (netdev->type != ARPHRD_6LOWPAN)
1369 return NOTIFY_DONE;
1370
1371 switch (event) {
1372 case NETDEV_UNREGISTER:
90305829
JR
1373 spin_lock(&devices_lock);
1374 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
18722c24 1375 if (entry->netdev == netdev) {
7f118253
JR
1376 BT_DBG("Unregistered netdev %s %p",
1377 netdev->name, netdev);
18722c24 1378 list_del(&entry->list);
18722c24
JR
1379 break;
1380 }
1381 }
90305829 1382 spin_unlock(&devices_lock);
18722c24
JR
1383 break;
1384 }
1385
1386 return NOTIFY_DONE;
1387}
1388
1389static struct notifier_block bt_6lowpan_dev_notifier = {
1390 .notifier_call = device_event,
1391};
1392
5547e48c 1393static int __init bt_6lowpan_init(void)
18722c24 1394{
7b2ed60e
JR
1395 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1396 bt_debugfs, NULL,
1397 &lowpan_enable_fops);
6b8d4a6a
JR
1398 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1399 bt_debugfs, NULL,
1400 &lowpan_control_fops);
1401
18722c24
JR
1402 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1403}
1404
5547e48c 1405static void __exit bt_6lowpan_exit(void)
18722c24 1406{
7b2ed60e 1407 debugfs_remove(lowpan_enable_debugfs);
6b8d4a6a
JR
1408 debugfs_remove(lowpan_control_debugfs);
1409
1410 if (listen_chan) {
1411 l2cap_chan_close(listen_chan, 0);
1412 l2cap_chan_put(listen_chan);
1413 }
1414
7f118253
JR
1415 disconnect_devices();
1416
18722c24
JR
1417 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1418}
5547e48c
JR
1419
1420module_init(bt_6lowpan_init);
1421module_exit(bt_6lowpan_exit);
1422
1423MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1424MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1425MODULE_VERSION(VERSION);
1426MODULE_LICENSE("GPL");