dm thin metadata: fix __udivdi3 undefined on 32-bit
[linux/fpc-iii.git] / net / bluetooth / 6lowpan.c
blob795ddd8b2f77567381a3405839cae239871e18ad
1 /*
2 Copyright (c) 2013-2014 Intel Corp.
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.
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.
14 #include <linux/if_arp.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/module.h>
18 #include <linux/debugfs.h>
20 #include <net/ipv6.h>
21 #include <net/ip6_route.h>
22 #include <net/addrconf.h>
24 #include <net/bluetooth/bluetooth.h>
25 #include <net/bluetooth/hci_core.h>
26 #include <net/bluetooth/l2cap.h>
28 #include <net/6lowpan.h> /* for the compression support */
30 #define VERSION "0.1"
32 static struct dentry *lowpan_enable_debugfs;
33 static struct dentry *lowpan_control_debugfs;
35 #define IFACE_NAME_TEMPLATE "bt%d"
37 struct skb_cb {
38 struct in6_addr addr;
39 struct in6_addr gw;
40 struct l2cap_chan *chan;
41 int status;
43 #define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
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.
52 static LIST_HEAD(bt_6lowpan_devices);
53 static DEFINE_SPINLOCK(devices_lock);
55 static bool enable_6lowpan;
57 /* We are listening incoming connections via this channel
59 static struct l2cap_chan *listen_chan;
61 struct lowpan_peer {
62 struct list_head list;
63 struct rcu_head rcu;
64 struct l2cap_chan *chan;
66 /* peer addresses in various formats */
67 unsigned char eui64_addr[EUI64_ADDR_LEN];
68 struct in6_addr peer_addr;
71 struct lowpan_dev {
72 struct list_head list;
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 */
79 struct work_struct delete_netdev;
80 struct delayed_work notify_peers;
83 static inline struct lowpan_dev *lowpan_dev(const struct net_device *netdev)
85 return (struct lowpan_dev *)lowpan_priv(netdev)->priv;
88 static inline void peer_add(struct lowpan_dev *dev, struct lowpan_peer *peer)
90 list_add_rcu(&peer->list, &dev->peers);
91 atomic_inc(&dev->peer_count);
94 static inline bool peer_del(struct lowpan_dev *dev, struct lowpan_peer *peer)
96 list_del_rcu(&peer->list);
97 kfree_rcu(peer, rcu);
99 module_put(THIS_MODULE);
101 if (atomic_dec_and_test(&dev->peer_count)) {
102 BT_DBG("last peer");
103 return true;
106 return false;
109 static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_dev *dev,
110 bdaddr_t *ba, __u8 type)
112 struct lowpan_peer *peer;
114 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
115 ba, type);
117 rcu_read_lock();
119 list_for_each_entry_rcu(peer, &dev->peers, list) {
120 BT_DBG("dst addr %pMR dst type %d",
121 &peer->chan->dst, peer->chan->dst_type);
123 if (bacmp(&peer->chan->dst, ba))
124 continue;
126 if (type == peer->chan->dst_type) {
127 rcu_read_unlock();
128 return peer;
132 rcu_read_unlock();
134 return NULL;
137 static inline struct lowpan_peer *__peer_lookup_chan(struct lowpan_dev *dev,
138 struct l2cap_chan *chan)
140 struct lowpan_peer *peer;
142 list_for_each_entry_rcu(peer, &dev->peers, list) {
143 if (peer->chan == chan)
144 return peer;
147 return NULL;
150 static inline struct lowpan_peer *__peer_lookup_conn(struct lowpan_dev *dev,
151 struct l2cap_conn *conn)
153 struct lowpan_peer *peer;
155 list_for_each_entry_rcu(peer, &dev->peers, list) {
156 if (peer->chan->conn == conn)
157 return peer;
160 return NULL;
163 static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_dev *dev,
164 struct in6_addr *daddr,
165 struct sk_buff *skb)
167 struct lowpan_peer *peer;
168 struct in6_addr *nexthop;
169 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
170 int count = atomic_read(&dev->peer_count);
172 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
174 /* If we have multiple 6lowpan peers, then check where we should
175 * send the packet. If only one peer exists, then we can send the
176 * packet right away.
178 if (count == 1) {
179 rcu_read_lock();
180 peer = list_first_or_null_rcu(&dev->peers, struct lowpan_peer,
181 list);
182 rcu_read_unlock();
183 return peer;
186 if (!rt) {
187 nexthop = &lowpan_cb(skb)->gw;
189 if (ipv6_addr_any(nexthop))
190 return NULL;
191 } else {
192 nexthop = rt6_nexthop(rt, daddr);
194 /* We need to remember the address because it is needed
195 * by bt_xmit() when sending the packet. In bt_xmit(), the
196 * destination routing info is not set.
198 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
201 BT_DBG("gw %pI6c", nexthop);
203 rcu_read_lock();
205 list_for_each_entry_rcu(peer, &dev->peers, list) {
206 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
207 &peer->chan->dst, peer->chan->dst_type,
208 &peer->peer_addr);
210 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
211 rcu_read_unlock();
212 return peer;
216 rcu_read_unlock();
218 return NULL;
221 static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
223 struct lowpan_dev *entry;
224 struct lowpan_peer *peer = NULL;
226 rcu_read_lock();
228 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
229 peer = __peer_lookup_conn(entry, conn);
230 if (peer)
231 break;
234 rcu_read_unlock();
236 return peer;
239 static struct lowpan_dev *lookup_dev(struct l2cap_conn *conn)
241 struct lowpan_dev *entry;
242 struct lowpan_dev *dev = NULL;
244 rcu_read_lock();
246 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
247 if (conn->hcon->hdev == entry->hdev) {
248 dev = entry;
249 break;
253 rcu_read_unlock();
255 return dev;
258 static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
260 struct sk_buff *skb_cp;
262 skb_cp = skb_copy(skb, GFP_ATOMIC);
263 if (!skb_cp)
264 return NET_RX_DROP;
266 return netif_rx_ni(skb_cp);
269 static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
270 struct l2cap_chan *chan)
272 const u8 *saddr, *daddr;
273 struct lowpan_dev *dev;
274 struct lowpan_peer *peer;
276 dev = lowpan_dev(netdev);
278 rcu_read_lock();
279 peer = __peer_lookup_chan(dev, chan);
280 rcu_read_unlock();
281 if (!peer)
282 return -EINVAL;
284 saddr = peer->eui64_addr;
285 daddr = dev->netdev->dev_addr;
287 return lowpan_header_decompress(skb, netdev, daddr, saddr);
290 static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
291 struct l2cap_chan *chan)
293 struct sk_buff *local_skb;
294 int ret;
296 if (!netif_running(dev))
297 goto drop;
299 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
300 goto drop;
302 skb_reset_network_header(skb);
304 skb = skb_share_check(skb, GFP_ATOMIC);
305 if (!skb)
306 goto drop;
308 /* check that it's our buffer */
309 if (lowpan_is_ipv6(*skb_network_header(skb))) {
310 /* Pull off the 1-byte of 6lowpan header. */
311 skb_pull(skb, 1);
313 /* Copy the packet so that the IPv6 header is
314 * properly aligned.
316 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
317 skb_tailroom(skb), GFP_ATOMIC);
318 if (!local_skb)
319 goto drop;
321 local_skb->protocol = htons(ETH_P_IPV6);
322 local_skb->pkt_type = PACKET_HOST;
323 local_skb->dev = dev;
325 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
327 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
328 kfree_skb(local_skb);
329 goto drop;
332 dev->stats.rx_bytes += skb->len;
333 dev->stats.rx_packets++;
335 consume_skb(local_skb);
336 consume_skb(skb);
337 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
338 local_skb = skb_clone(skb, GFP_ATOMIC);
339 if (!local_skb)
340 goto drop;
342 local_skb->dev = dev;
344 ret = iphc_decompress(local_skb, dev, chan);
345 if (ret < 0) {
346 kfree_skb(local_skb);
347 goto drop;
350 local_skb->protocol = htons(ETH_P_IPV6);
351 local_skb->pkt_type = PACKET_HOST;
353 if (give_skb_to_upper(local_skb, dev)
354 != NET_RX_SUCCESS) {
355 kfree_skb(local_skb);
356 goto drop;
359 dev->stats.rx_bytes += skb->len;
360 dev->stats.rx_packets++;
362 consume_skb(local_skb);
363 consume_skb(skb);
364 } else {
365 goto drop;
368 return NET_RX_SUCCESS;
370 drop:
371 dev->stats.rx_dropped++;
372 return NET_RX_DROP;
375 /* Packet from BT LE device */
376 static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
378 struct lowpan_dev *dev;
379 struct lowpan_peer *peer;
380 int err;
382 peer = lookup_peer(chan->conn);
383 if (!peer)
384 return -ENOENT;
386 dev = lookup_dev(chan->conn);
387 if (!dev || !dev->netdev)
388 return -ENOENT;
390 err = recv_pkt(skb, dev->netdev, chan);
391 if (err) {
392 BT_DBG("recv pkt %d", err);
393 err = -EAGAIN;
396 return err;
399 static u8 get_addr_type_from_eui64(u8 byte)
401 /* Is universal(0) or local(1) bit */
402 return ((byte & 0x02) ? BDADDR_LE_RANDOM : BDADDR_LE_PUBLIC);
405 static void copy_to_bdaddr(struct in6_addr *ip6_daddr, bdaddr_t *addr)
407 u8 *eui64 = ip6_daddr->s6_addr + 8;
409 addr->b[0] = eui64[7];
410 addr->b[1] = eui64[6];
411 addr->b[2] = eui64[5];
412 addr->b[3] = eui64[2];
413 addr->b[4] = eui64[1];
414 addr->b[5] = eui64[0];
417 static void convert_dest_bdaddr(struct in6_addr *ip6_daddr,
418 bdaddr_t *addr, u8 *addr_type)
420 copy_to_bdaddr(ip6_daddr, addr);
422 /* We need to toggle the U/L bit that we got from IPv6 address
423 * so that we get the proper address and type of the BD address.
425 addr->b[5] ^= 0x02;
427 *addr_type = get_addr_type_from_eui64(addr->b[5]);
430 static int setup_header(struct sk_buff *skb, struct net_device *netdev,
431 bdaddr_t *peer_addr, u8 *peer_addr_type)
433 struct in6_addr ipv6_daddr;
434 struct lowpan_dev *dev;
435 struct lowpan_peer *peer;
436 bdaddr_t addr, *any = BDADDR_ANY;
437 u8 *daddr = any->b;
438 int err, status = 0;
440 dev = lowpan_dev(netdev);
442 memcpy(&ipv6_daddr, &lowpan_cb(skb)->addr, sizeof(ipv6_daddr));
444 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
445 lowpan_cb(skb)->chan = NULL;
446 } else {
447 u8 addr_type;
449 /* Get destination BT device from skb.
450 * If there is no such peer then discard the packet.
452 convert_dest_bdaddr(&ipv6_daddr, &addr, &addr_type);
454 BT_DBG("dest addr %pMR type %d IP %pI6c", &addr,
455 addr_type, &ipv6_daddr);
457 peer = peer_lookup_ba(dev, &addr, addr_type);
458 if (!peer) {
459 /* The packet might be sent to 6lowpan interface
460 * because of routing (either via default route
461 * or user set route) so get peer according to
462 * the destination address.
464 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
465 if (!peer) {
466 BT_DBG("no such peer %pMR found", &addr);
467 return -ENOENT;
471 daddr = peer->eui64_addr;
472 *peer_addr = addr;
473 *peer_addr_type = addr_type;
474 lowpan_cb(skb)->chan = peer->chan;
476 status = 1;
479 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
481 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
482 if (err < 0)
483 return err;
485 return status;
488 static int header_create(struct sk_buff *skb, struct net_device *netdev,
489 unsigned short type, const void *_daddr,
490 const void *_saddr, unsigned int len)
492 struct ipv6hdr *hdr;
494 if (type != ETH_P_IPV6)
495 return -EINVAL;
497 hdr = ipv6_hdr(skb);
499 memcpy(&lowpan_cb(skb)->addr, &hdr->daddr, sizeof(struct in6_addr));
501 return 0;
504 /* Packet to BT LE device */
505 static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
506 struct net_device *netdev)
508 struct msghdr msg;
509 struct kvec iv;
510 int err;
512 /* Remember the skb so that we can send EAGAIN to the caller if
513 * we run out of credits.
515 chan->data = skb;
517 iv.iov_base = skb->data;
518 iv.iov_len = skb->len;
520 memset(&msg, 0, sizeof(msg));
521 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &iv, 1, skb->len);
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;
530 if (!err)
531 err = lowpan_cb(skb)->status;
533 if (err < 0) {
534 if (err == -EAGAIN)
535 netdev->stats.tx_dropped++;
536 else
537 netdev->stats.tx_errors++;
540 return err;
543 static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
545 struct sk_buff *local_skb;
546 struct lowpan_dev *entry;
547 int err = 0;
549 rcu_read_lock();
551 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
552 struct lowpan_peer *pentry;
553 struct lowpan_dev *dev;
555 if (entry->netdev != netdev)
556 continue;
558 dev = lowpan_dev(entry->netdev);
560 list_for_each_entry_rcu(pentry, &dev->peers, list) {
561 int ret;
563 local_skb = skb_clone(skb, GFP_ATOMIC);
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);
569 ret = send_pkt(pentry->chan, local_skb, netdev);
570 if (ret < 0)
571 err = ret;
573 kfree_skb(local_skb);
577 rcu_read_unlock();
579 return err;
582 static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
584 int err = 0;
585 bdaddr_t addr;
586 u8 addr_type;
588 /* We must take a copy of the skb before we modify/replace the ipv6
589 * header as the header could be used elsewhere
591 skb = skb_unshare(skb, GFP_ATOMIC);
592 if (!skb)
593 return NET_XMIT_DROP;
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
600 err = setup_header(skb, netdev, &addr, &addr_type);
601 if (err < 0) {
602 kfree_skb(skb);
603 return NET_XMIT_DROP;
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);
611 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
612 } else {
613 err = -ENOENT;
615 } else {
616 /* We need to send the packet to every device behind this
617 * interface.
619 err = send_mcast_pkt(skb, netdev);
622 dev_kfree_skb(skb);
624 if (err)
625 BT_DBG("ERROR: xmit failed (%d)", err);
627 return err < 0 ? NET_XMIT_DROP : err;
630 static struct lock_class_key bt_tx_busylock;
631 static struct lock_class_key bt_netdev_xmit_lock_key;
633 static void bt_set_lockdep_class_one(struct net_device *dev,
634 struct netdev_queue *txq,
635 void *_unused)
637 lockdep_set_class(&txq->_xmit_lock, &bt_netdev_xmit_lock_key);
640 static int bt_dev_init(struct net_device *dev)
642 netdev_for_each_tx_queue(dev, bt_set_lockdep_class_one, NULL);
643 dev->qdisc_tx_busylock = &bt_tx_busylock;
645 return 0;
648 static const struct net_device_ops netdev_ops = {
649 .ndo_init = bt_dev_init,
650 .ndo_start_xmit = bt_xmit,
653 static struct header_ops header_ops = {
654 .create = header_create,
657 static void netdev_setup(struct net_device *dev)
659 dev->hard_header_len = 0;
660 dev->needed_tailroom = 0;
661 dev->flags = IFF_RUNNING | IFF_POINTOPOINT |
662 IFF_MULTICAST;
663 dev->watchdog_timeo = 0;
665 dev->netdev_ops = &netdev_ops;
666 dev->header_ops = &header_ops;
667 dev->destructor = free_netdev;
670 static struct device_type bt_type = {
671 .name = "bluetooth",
674 static void set_addr(u8 *eui, u8 *addr, u8 addr_type)
676 /* addr is the BT address in little-endian format */
677 eui[0] = addr[5];
678 eui[1] = addr[4];
679 eui[2] = addr[3];
680 eui[3] = 0xFF;
681 eui[4] = 0xFE;
682 eui[5] = addr[2];
683 eui[6] = addr[1];
684 eui[7] = addr[0];
686 /* Universal/local bit set, BT 6lowpan draft ch. 3.2.1 */
687 if (addr_type == BDADDR_LE_PUBLIC)
688 eui[0] &= ~0x02;
689 else
690 eui[0] |= 0x02;
692 BT_DBG("type %d addr %*phC", addr_type, 8, eui);
695 static void set_dev_addr(struct net_device *netdev, bdaddr_t *addr,
696 u8 addr_type)
698 netdev->addr_assign_type = NET_ADDR_PERM;
699 set_addr(netdev->dev_addr, addr->b, addr_type);
702 static void ifup(struct net_device *netdev)
704 int err;
706 rtnl_lock();
707 err = dev_open(netdev);
708 if (err < 0)
709 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
710 rtnl_unlock();
713 static void ifdown(struct net_device *netdev)
715 int err;
717 rtnl_lock();
718 err = dev_close(netdev);
719 if (err < 0)
720 BT_INFO("iface %s cannot be closed (%d)", netdev->name, err);
721 rtnl_unlock();
724 static void do_notify_peers(struct work_struct *work)
726 struct lowpan_dev *dev = container_of(work, struct lowpan_dev,
727 notify_peers.work);
729 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
732 static bool is_bt_6lowpan(struct hci_conn *hcon)
734 if (hcon->type != LE_LINK)
735 return false;
737 if (!enable_6lowpan)
738 return false;
740 return true;
743 static struct l2cap_chan *chan_create(void)
745 struct l2cap_chan *chan;
747 chan = l2cap_chan_create();
748 if (!chan)
749 return NULL;
751 l2cap_chan_set_defaults(chan);
753 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
754 chan->mode = L2CAP_MODE_LE_FLOWCTL;
755 chan->imtu = 1280;
757 return chan;
760 static void set_ip_addr_bits(u8 addr_type, u8 *addr)
762 if (addr_type == BDADDR_LE_PUBLIC)
763 *addr |= 0x02;
764 else
765 *addr &= ~0x02;
768 static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
769 struct lowpan_dev *dev)
771 struct lowpan_peer *peer;
773 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
774 if (!peer)
775 return NULL;
777 peer->chan = chan;
778 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
780 /* RFC 2464 ch. 5 */
781 peer->peer_addr.s6_addr[0] = 0xFE;
782 peer->peer_addr.s6_addr[1] = 0x80;
783 set_addr((u8 *)&peer->peer_addr.s6_addr + 8, chan->dst.b,
784 chan->dst_type);
786 memcpy(&peer->eui64_addr, (u8 *)&peer->peer_addr.s6_addr + 8,
787 EUI64_ADDR_LEN);
789 /* IPv6 address needs to have the U/L bit set properly so toggle
790 * it back here.
792 set_ip_addr_bits(chan->dst_type, (u8 *)&peer->peer_addr.s6_addr + 8);
794 spin_lock(&devices_lock);
795 INIT_LIST_HEAD(&peer->list);
796 peer_add(dev, peer);
797 spin_unlock(&devices_lock);
799 /* Notifying peers about us needs to be done without locks held */
800 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
801 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
803 return peer->chan;
806 static int setup_netdev(struct l2cap_chan *chan, struct lowpan_dev **dev)
808 struct net_device *netdev;
809 int err = 0;
811 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_dev)),
812 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
813 netdev_setup);
814 if (!netdev)
815 return -ENOMEM;
817 set_dev_addr(netdev, &chan->src, chan->src_type);
819 netdev->netdev_ops = &netdev_ops;
820 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
821 SET_NETDEV_DEVTYPE(netdev, &bt_type);
823 *dev = lowpan_dev(netdev);
824 (*dev)->netdev = netdev;
825 (*dev)->hdev = chan->conn->hcon->hdev;
826 INIT_LIST_HEAD(&(*dev)->peers);
828 spin_lock(&devices_lock);
829 INIT_LIST_HEAD(&(*dev)->list);
830 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
831 spin_unlock(&devices_lock);
833 lowpan_netdev_setup(netdev, LOWPAN_LLTYPE_BTLE);
835 err = register_netdev(netdev);
836 if (err < 0) {
837 BT_INFO("register_netdev failed %d", err);
838 spin_lock(&devices_lock);
839 list_del_rcu(&(*dev)->list);
840 spin_unlock(&devices_lock);
841 free_netdev(netdev);
842 goto out;
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);
848 set_bit(__LINK_STATE_PRESENT, &netdev->state);
850 return 0;
852 out:
853 return err;
856 static inline void chan_ready_cb(struct l2cap_chan *chan)
858 struct lowpan_dev *dev;
860 dev = lookup_dev(chan->conn);
862 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
864 if (!dev) {
865 if (setup_netdev(chan, &dev) < 0) {
866 l2cap_chan_del(chan, -ENOENT);
867 return;
871 if (!try_module_get(THIS_MODULE))
872 return;
874 add_peer_chan(chan, dev);
875 ifup(dev->netdev);
878 static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
880 struct l2cap_chan *chan;
882 chan = chan_create();
883 if (!chan)
884 return NULL;
886 chan->ops = pchan->ops;
888 BT_DBG("chan %p pchan %p", chan, pchan);
890 return chan;
893 static void delete_netdev(struct work_struct *work)
895 struct lowpan_dev *entry = container_of(work, struct lowpan_dev,
896 delete_netdev);
898 unregister_netdev(entry->netdev);
900 /* The entry pointer is deleted by the netdev destructor. */
903 static void chan_close_cb(struct l2cap_chan *chan)
905 struct lowpan_dev *entry;
906 struct lowpan_dev *dev = NULL;
907 struct lowpan_peer *peer;
908 int err = -ENOENT;
909 bool last = false, remove = true;
911 BT_DBG("chan %p conn %p", chan, chan->conn);
913 if (chan->conn && chan->conn->hcon) {
914 if (!is_bt_6lowpan(chan->conn->hcon))
915 return;
917 /* If conn is set, then the netdev is also there and we should
918 * not remove it.
920 remove = false;
923 spin_lock(&devices_lock);
925 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
926 dev = lowpan_dev(entry->netdev);
927 peer = __peer_lookup_chan(dev, chan);
928 if (peer) {
929 last = peer_del(dev, peer);
930 err = 0;
932 BT_DBG("dev %p removing %speer %p", dev,
933 last ? "last " : "1 ", peer);
934 BT_DBG("chan %p orig refcnt %d", chan,
935 atomic_read(&chan->kref.refcount));
937 l2cap_chan_put(chan);
938 break;
942 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
943 spin_unlock(&devices_lock);
945 cancel_delayed_work_sync(&dev->notify_peers);
947 ifdown(dev->netdev);
949 if (remove) {
950 INIT_WORK(&entry->delete_netdev, delete_netdev);
951 schedule_work(&entry->delete_netdev);
953 } else {
954 spin_unlock(&devices_lock);
957 return;
960 static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
962 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
963 state_to_string(state), err);
966 static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
967 unsigned long hdr_len,
968 unsigned long len, int nb)
970 /* Note that we must allocate using GFP_ATOMIC here as
971 * this function is called originally from netdev hard xmit
972 * function in atomic context.
974 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
977 static void chan_suspend_cb(struct l2cap_chan *chan)
979 struct sk_buff *skb = chan->data;
981 BT_DBG("chan %p conn %p skb %p", chan, chan->conn, skb);
983 if (!skb)
984 return;
986 lowpan_cb(skb)->status = -EAGAIN;
989 static void chan_resume_cb(struct l2cap_chan *chan)
991 struct sk_buff *skb = chan->data;
993 BT_DBG("chan %p conn %p skb %p", chan, chan->conn, skb);
995 if (!skb)
996 return;
998 lowpan_cb(skb)->status = 0;
1001 static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
1003 return L2CAP_CONN_TIMEOUT;
1006 static const struct l2cap_ops bt_6lowpan_chan_ops = {
1007 .name = "L2CAP 6LoWPAN channel",
1008 .new_connection = chan_new_conn_cb,
1009 .recv = chan_recv_cb,
1010 .close = chan_close_cb,
1011 .state_change = chan_state_change_cb,
1012 .ready = chan_ready_cb,
1013 .resume = chan_resume_cb,
1014 .suspend = chan_suspend_cb,
1015 .get_sndtimeo = chan_get_sndtimeo_cb,
1016 .alloc_skb = chan_alloc_skb_cb,
1018 .teardown = l2cap_chan_no_teardown,
1019 .defer = l2cap_chan_no_defer,
1020 .set_shutdown = l2cap_chan_no_set_shutdown,
1023 static inline __u8 bdaddr_type(__u8 type)
1025 if (type == ADDR_LE_DEV_PUBLIC)
1026 return BDADDR_LE_PUBLIC;
1027 else
1028 return BDADDR_LE_RANDOM;
1031 static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
1033 struct l2cap_chan *chan;
1034 int err;
1036 chan = chan_create();
1037 if (!chan)
1038 return -EINVAL;
1040 chan->ops = &bt_6lowpan_chan_ops;
1042 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
1043 addr, dst_type);
1045 BT_DBG("chan %p err %d", chan, err);
1046 if (err < 0)
1047 l2cap_chan_put(chan);
1049 return err;
1052 static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
1054 struct lowpan_peer *peer;
1056 BT_DBG("conn %p dst type %d", conn, dst_type);
1058 peer = lookup_peer(conn);
1059 if (!peer)
1060 return -ENOENT;
1062 BT_DBG("peer %p chan %p", peer, peer->chan);
1064 l2cap_chan_close(peer->chan, ENOENT);
1066 return 0;
1069 static struct l2cap_chan *bt_6lowpan_listen(void)
1071 bdaddr_t *addr = BDADDR_ANY;
1072 struct l2cap_chan *chan;
1073 int err;
1075 if (!enable_6lowpan)
1076 return NULL;
1078 chan = chan_create();
1079 if (!chan)
1080 return NULL;
1082 chan->ops = &bt_6lowpan_chan_ops;
1083 chan->state = BT_LISTEN;
1084 chan->src_type = BDADDR_LE_PUBLIC;
1086 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
1088 BT_DBG("chan %p src type %d", chan, chan->src_type);
1090 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
1091 if (err) {
1092 l2cap_chan_put(chan);
1093 BT_ERR("psm cannot be added err %d", err);
1094 return NULL;
1097 return chan;
1100 static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
1101 struct l2cap_conn **conn)
1103 struct hci_conn *hcon;
1104 struct hci_dev *hdev;
1105 bdaddr_t *src = BDADDR_ANY;
1106 int n;
1108 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
1109 &addr->b[5], &addr->b[4], &addr->b[3],
1110 &addr->b[2], &addr->b[1], &addr->b[0],
1111 addr_type);
1113 if (n < 7)
1114 return -EINVAL;
1116 hdev = hci_get_route(addr, src);
1117 if (!hdev)
1118 return -ENOENT;
1120 hci_dev_lock(hdev);
1121 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
1122 hci_dev_unlock(hdev);
1124 if (!hcon)
1125 return -ENOENT;
1127 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1129 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1131 return 0;
1134 static void disconnect_all_peers(void)
1136 struct lowpan_dev *entry;
1137 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1138 struct list_head peers;
1140 INIT_LIST_HEAD(&peers);
1142 /* We make a separate list of peers as the close_cb() will
1143 * modify the device peers list so it is better not to mess
1144 * with the same list at the same time.
1147 rcu_read_lock();
1149 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1150 list_for_each_entry_rcu(peer, &entry->peers, list) {
1151 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1152 if (!new_peer)
1153 break;
1155 new_peer->chan = peer->chan;
1156 INIT_LIST_HEAD(&new_peer->list);
1158 list_add(&new_peer->list, &peers);
1162 rcu_read_unlock();
1164 spin_lock(&devices_lock);
1165 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1166 l2cap_chan_close(peer->chan, ENOENT);
1168 list_del_rcu(&peer->list);
1169 kfree_rcu(peer, rcu);
1171 spin_unlock(&devices_lock);
1174 struct set_enable {
1175 struct work_struct work;
1176 bool flag;
1179 static void do_enable_set(struct work_struct *work)
1181 struct set_enable *set_enable = container_of(work,
1182 struct set_enable, work);
1184 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
1185 /* Disconnect existing connections if 6lowpan is
1186 * disabled
1188 disconnect_all_peers();
1190 enable_6lowpan = set_enable->flag;
1192 if (listen_chan) {
1193 l2cap_chan_close(listen_chan, 0);
1194 l2cap_chan_put(listen_chan);
1197 listen_chan = bt_6lowpan_listen();
1199 kfree(set_enable);
1202 static int lowpan_enable_set(void *data, u64 val)
1204 struct set_enable *set_enable;
1206 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1207 if (!set_enable)
1208 return -ENOMEM;
1210 set_enable->flag = !!val;
1211 INIT_WORK(&set_enable->work, do_enable_set);
1213 schedule_work(&set_enable->work);
1215 return 0;
1218 static int lowpan_enable_get(void *data, u64 *val)
1220 *val = enable_6lowpan;
1221 return 0;
1224 DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1225 lowpan_enable_set, "%llu\n");
1227 static ssize_t lowpan_control_write(struct file *fp,
1228 const char __user *user_buffer,
1229 size_t count,
1230 loff_t *position)
1232 char buf[32];
1233 size_t buf_size = min(count, sizeof(buf) - 1);
1234 int ret;
1235 bdaddr_t addr;
1236 u8 addr_type;
1237 struct l2cap_conn *conn = NULL;
1239 if (copy_from_user(buf, user_buffer, buf_size))
1240 return -EFAULT;
1242 buf[buf_size] = '\0';
1244 if (memcmp(buf, "connect ", 8) == 0) {
1245 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1246 if (ret == -EINVAL)
1247 return ret;
1249 if (listen_chan) {
1250 l2cap_chan_close(listen_chan, 0);
1251 l2cap_chan_put(listen_chan);
1252 listen_chan = NULL;
1255 if (conn) {
1256 struct lowpan_peer *peer;
1258 if (!is_bt_6lowpan(conn->hcon))
1259 return -EINVAL;
1261 peer = lookup_peer(conn);
1262 if (peer) {
1263 BT_DBG("6LoWPAN connection already exists");
1264 return -EALREADY;
1267 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1268 &conn->hcon->dst, conn->hcon->dst_type,
1269 addr_type);
1272 ret = bt_6lowpan_connect(&addr, addr_type);
1273 if (ret < 0)
1274 return ret;
1276 return count;
1279 if (memcmp(buf, "disconnect ", 11) == 0) {
1280 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1281 if (ret < 0)
1282 return ret;
1284 ret = bt_6lowpan_disconnect(conn, addr_type);
1285 if (ret < 0)
1286 return ret;
1288 return count;
1291 return count;
1294 static int lowpan_control_show(struct seq_file *f, void *ptr)
1296 struct lowpan_dev *entry;
1297 struct lowpan_peer *peer;
1299 spin_lock(&devices_lock);
1301 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1302 list_for_each_entry(peer, &entry->peers, list)
1303 seq_printf(f, "%pMR (type %u)\n",
1304 &peer->chan->dst, peer->chan->dst_type);
1307 spin_unlock(&devices_lock);
1309 return 0;
1312 static int lowpan_control_open(struct inode *inode, struct file *file)
1314 return single_open(file, lowpan_control_show, inode->i_private);
1317 static const struct file_operations lowpan_control_fops = {
1318 .open = lowpan_control_open,
1319 .read = seq_read,
1320 .write = lowpan_control_write,
1321 .llseek = seq_lseek,
1322 .release = single_release,
1325 static void disconnect_devices(void)
1327 struct lowpan_dev *entry, *tmp, *new_dev;
1328 struct list_head devices;
1330 INIT_LIST_HEAD(&devices);
1332 /* We make a separate list of devices because the unregister_netdev()
1333 * will call device_event() which will also want to modify the same
1334 * devices list.
1337 rcu_read_lock();
1339 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1340 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1341 if (!new_dev)
1342 break;
1344 new_dev->netdev = entry->netdev;
1345 INIT_LIST_HEAD(&new_dev->list);
1347 list_add_rcu(&new_dev->list, &devices);
1350 rcu_read_unlock();
1352 list_for_each_entry_safe(entry, tmp, &devices, list) {
1353 ifdown(entry->netdev);
1354 BT_DBG("Unregistering netdev %s %p",
1355 entry->netdev->name, entry->netdev);
1356 unregister_netdev(entry->netdev);
1357 kfree(entry);
1361 static int device_event(struct notifier_block *unused,
1362 unsigned long event, void *ptr)
1364 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
1365 struct lowpan_dev *entry;
1367 if (netdev->type != ARPHRD_6LOWPAN)
1368 return NOTIFY_DONE;
1370 switch (event) {
1371 case NETDEV_UNREGISTER:
1372 spin_lock(&devices_lock);
1373 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1374 if (entry->netdev == netdev) {
1375 BT_DBG("Unregistered netdev %s %p",
1376 netdev->name, netdev);
1377 list_del(&entry->list);
1378 break;
1381 spin_unlock(&devices_lock);
1382 break;
1385 return NOTIFY_DONE;
1388 static struct notifier_block bt_6lowpan_dev_notifier = {
1389 .notifier_call = device_event,
1392 static int __init bt_6lowpan_init(void)
1394 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1395 bt_debugfs, NULL,
1396 &lowpan_enable_fops);
1397 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1398 bt_debugfs, NULL,
1399 &lowpan_control_fops);
1401 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1404 static void __exit bt_6lowpan_exit(void)
1406 debugfs_remove(lowpan_enable_debugfs);
1407 debugfs_remove(lowpan_control_debugfs);
1409 if (listen_chan) {
1410 l2cap_chan_close(listen_chan, 0);
1411 l2cap_chan_put(listen_chan);
1414 disconnect_devices();
1416 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1419 module_init(bt_6lowpan_init);
1420 module_exit(bt_6lowpan_exit);
1422 MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1423 MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1424 MODULE_VERSION(VERSION);
1425 MODULE_LICENSE("GPL");