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>
21 #include <net/ip6_route.h>
22 #include <net/addrconf.h>
23 #include <net/pkt_sched.h>
25 #include <net/bluetooth/bluetooth.h>
26 #include <net/bluetooth/hci_core.h>
27 #include <net/bluetooth/l2cap.h>
29 #include <net/6lowpan.h> /* for the compression support */
33 static struct dentry *lowpan_enable_debugfs;
34 static struct dentry *lowpan_control_debugfs;
36 #define IFACE_NAME_TEMPLATE "bt%d"
41 struct l2cap_chan *chan;
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;
60 static DEFINE_MUTEX(set_lock);
63 struct list_head list;
65 struct l2cap_chan *chan;
67 /* peer addresses in various formats */
68 unsigned char lladdr[ETH_ALEN];
69 struct in6_addr peer_addr;
72 struct lowpan_btle_dev {
73 struct list_head list;
76 struct net_device *netdev;
77 struct list_head peers;
78 atomic_t peer_count; /* number of items in peers list */
80 struct work_struct delete_netdev;
81 struct delayed_work notify_peers;
84 static inline struct lowpan_btle_dev *
85 lowpan_btle_dev(const struct net_device *netdev)
87 return (struct lowpan_btle_dev *)lowpan_dev(netdev)->priv;
90 static inline void peer_add(struct lowpan_btle_dev *dev,
91 struct lowpan_peer *peer)
93 list_add_rcu(&peer->list, &dev->peers);
94 atomic_inc(&dev->peer_count);
97 static inline bool peer_del(struct lowpan_btle_dev *dev,
98 struct lowpan_peer *peer)
100 list_del_rcu(&peer->list);
101 kfree_rcu(peer, rcu);
103 module_put(THIS_MODULE);
105 if (atomic_dec_and_test(&dev->peer_count)) {
113 static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_btle_dev *dev,
114 bdaddr_t *ba, __u8 type)
116 struct lowpan_peer *peer;
118 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
123 list_for_each_entry_rcu(peer, &dev->peers, list) {
124 BT_DBG("dst addr %pMR dst type %d",
125 &peer->chan->dst, peer->chan->dst_type);
127 if (bacmp(&peer->chan->dst, ba))
130 if (type == peer->chan->dst_type) {
141 static inline struct lowpan_peer *
142 __peer_lookup_chan(struct lowpan_btle_dev *dev, struct l2cap_chan *chan)
144 struct lowpan_peer *peer;
146 list_for_each_entry_rcu(peer, &dev->peers, list) {
147 if (peer->chan == chan)
154 static inline struct lowpan_peer *
155 __peer_lookup_conn(struct lowpan_btle_dev *dev, struct l2cap_conn *conn)
157 struct lowpan_peer *peer;
159 list_for_each_entry_rcu(peer, &dev->peers, list) {
160 if (peer->chan->conn == conn)
167 static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev,
168 struct in6_addr *daddr,
171 struct lowpan_peer *peer;
172 struct in6_addr *nexthop;
173 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
174 int count = atomic_read(&dev->peer_count);
176 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
178 /* If we have multiple 6lowpan peers, then check where we should
179 * send the packet. If only one peer exists, then we can send the
184 peer = list_first_or_null_rcu(&dev->peers, struct lowpan_peer,
191 if (ipv6_addr_any(&lowpan_cb(skb)->gw)) {
192 /* There is neither route nor gateway,
193 * probably the destination is a direct peer.
197 /* There is a known gateway
199 nexthop = &lowpan_cb(skb)->gw;
202 nexthop = rt6_nexthop(rt, daddr);
204 /* We need to remember the address because it is needed
205 * by bt_xmit() when sending the packet. In bt_xmit(), the
206 * destination routing info is not set.
208 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
211 BT_DBG("gw %pI6c", nexthop);
215 list_for_each_entry_rcu(peer, &dev->peers, list) {
216 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
217 &peer->chan->dst, peer->chan->dst_type,
220 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
231 static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
233 struct lowpan_btle_dev *entry;
234 struct lowpan_peer *peer = NULL;
238 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
239 peer = __peer_lookup_conn(entry, conn);
249 static struct lowpan_btle_dev *lookup_dev(struct l2cap_conn *conn)
251 struct lowpan_btle_dev *entry;
252 struct lowpan_btle_dev *dev = NULL;
256 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
257 if (conn->hcon->hdev == entry->hdev) {
268 static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
270 struct sk_buff *skb_cp;
272 skb_cp = skb_copy(skb, GFP_ATOMIC);
276 return netif_rx_ni(skb_cp);
279 static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
280 struct lowpan_peer *peer)
284 saddr = peer->lladdr;
286 return lowpan_header_decompress(skb, netdev, netdev->dev_addr, saddr);
289 static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
290 struct lowpan_peer *peer)
292 struct sk_buff *local_skb;
295 if (!netif_running(dev))
298 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
301 skb_reset_network_header(skb);
303 skb = skb_share_check(skb, GFP_ATOMIC);
307 /* check that it's our buffer */
308 if (lowpan_is_ipv6(*skb_network_header(skb))) {
309 /* Pull off the 1-byte of 6lowpan header. */
312 /* Copy the packet so that the IPv6 header is
315 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
316 skb_tailroom(skb), GFP_ATOMIC);
320 local_skb->protocol = htons(ETH_P_IPV6);
321 local_skb->pkt_type = PACKET_HOST;
322 local_skb->dev = dev;
324 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
326 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
327 kfree_skb(local_skb);
331 dev->stats.rx_bytes += skb->len;
332 dev->stats.rx_packets++;
334 consume_skb(local_skb);
336 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
337 local_skb = skb_clone(skb, GFP_ATOMIC);
341 local_skb->dev = dev;
343 ret = iphc_decompress(local_skb, dev, peer);
345 BT_DBG("iphc_decompress failed: %d", ret);
346 kfree_skb(local_skb);
350 local_skb->protocol = htons(ETH_P_IPV6);
351 local_skb->pkt_type = PACKET_HOST;
353 if (give_skb_to_upper(local_skb, dev)
355 kfree_skb(local_skb);
359 dev->stats.rx_bytes += skb->len;
360 dev->stats.rx_packets++;
362 consume_skb(local_skb);
365 BT_DBG("unknown packet type");
369 return NET_RX_SUCCESS;
372 dev->stats.rx_dropped++;
376 /* Packet from BT LE device */
377 static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
379 struct lowpan_btle_dev *dev;
380 struct lowpan_peer *peer;
383 peer = lookup_peer(chan->conn);
387 dev = lookup_dev(chan->conn);
388 if (!dev || !dev->netdev)
391 err = recv_pkt(skb, dev->netdev, peer);
393 BT_DBG("recv pkt %d", err);
400 static int setup_header(struct sk_buff *skb, struct net_device *netdev,
401 bdaddr_t *peer_addr, u8 *peer_addr_type)
403 struct in6_addr ipv6_daddr;
405 struct lowpan_btle_dev *dev;
406 struct lowpan_peer *peer;
412 dev = lowpan_btle_dev(netdev);
414 memcpy(&ipv6_daddr, &hdr->daddr, sizeof(ipv6_daddr));
416 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
417 lowpan_cb(skb)->chan = NULL;
420 BT_DBG("dest IP %pI6c", &ipv6_daddr);
422 /* 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.
427 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
429 BT_DBG("no such peer");
433 daddr = peer->lladdr;
434 *peer_addr = peer->chan->dst;
435 *peer_addr_type = peer->chan->dst_type;
436 lowpan_cb(skb)->chan = peer->chan;
441 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
443 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
450 static 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)
454 if (type != ETH_P_IPV6)
460 /* Packet to BT LE device */
461 static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
462 struct net_device *netdev)
468 /* Remember the skb so that we can send EAGAIN to the caller if
469 * we run out of credits.
473 iv.iov_base = skb->data;
474 iv.iov_len = skb->len;
476 memset(&msg, 0, sizeof(msg));
477 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &iv, 1, skb->len);
479 err = l2cap_chan_send(chan, &msg, skb->len);
481 netdev->stats.tx_bytes += err;
482 netdev->stats.tx_packets++;
487 netdev->stats.tx_errors++;
492 static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
494 struct sk_buff *local_skb;
495 struct lowpan_btle_dev *entry;
500 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
501 struct lowpan_peer *pentry;
502 struct lowpan_btle_dev *dev;
504 if (entry->netdev != netdev)
507 dev = lowpan_btle_dev(entry->netdev);
509 list_for_each_entry_rcu(pentry, &dev->peers, list) {
512 local_skb = skb_clone(skb, GFP_ATOMIC);
514 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
516 &pentry->chan->dst, pentry->chan->dst_type,
517 &pentry->peer_addr, pentry->chan);
518 ret = send_pkt(pentry->chan, local_skb, netdev);
522 kfree_skb(local_skb);
531 static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
537 /* We must take a copy of the skb before we modify/replace the ipv6
538 * header as the header could be used elsewhere
540 skb = skb_unshare(skb, GFP_ATOMIC);
542 return NET_XMIT_DROP;
544 /* Return values from setup_header()
545 * <0 - error, packet is dropped
546 * 0 - this is a multicast packet
547 * 1 - this is unicast packet
549 err = setup_header(skb, netdev, &addr, &addr_type);
552 return NET_XMIT_DROP;
556 if (lowpan_cb(skb)->chan) {
557 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
558 netdev->name, &addr, addr_type,
559 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
560 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
565 /* We need to send the packet to every device behind this
568 err = send_mcast_pkt(skb, netdev);
574 BT_DBG("ERROR: xmit failed (%d)", err);
576 return err < 0 ? NET_XMIT_DROP : err;
579 static int bt_dev_init(struct net_device *dev)
581 netdev_lockdep_set_classes(dev);
586 static const struct net_device_ops netdev_ops = {
587 .ndo_init = bt_dev_init,
588 .ndo_start_xmit = bt_xmit,
591 static struct header_ops header_ops = {
592 .create = header_create,
595 static void netdev_setup(struct net_device *dev)
597 dev->hard_header_len = 0;
598 dev->needed_tailroom = 0;
599 dev->flags = IFF_RUNNING | IFF_MULTICAST;
600 dev->watchdog_timeo = 0;
601 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
603 dev->netdev_ops = &netdev_ops;
604 dev->header_ops = &header_ops;
605 dev->needs_free_netdev = true;
608 static struct device_type bt_type = {
612 static void ifup(struct net_device *netdev)
617 err = dev_open(netdev);
619 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
623 static void ifdown(struct net_device *netdev)
630 static void do_notify_peers(struct work_struct *work)
632 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
635 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
638 static bool is_bt_6lowpan(struct hci_conn *hcon)
640 if (hcon->type != LE_LINK)
649 static struct l2cap_chan *chan_create(void)
651 struct l2cap_chan *chan;
653 chan = l2cap_chan_create();
657 l2cap_chan_set_defaults(chan);
659 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
660 chan->mode = L2CAP_MODE_LE_FLOWCTL;
666 static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
667 struct lowpan_btle_dev *dev,
670 struct lowpan_peer *peer;
672 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
677 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
679 baswap((void *)peer->lladdr, &chan->dst);
681 lowpan_iphc_uncompress_eui48_lladdr(&peer->peer_addr, peer->lladdr);
683 spin_lock(&devices_lock);
684 INIT_LIST_HEAD(&peer->list);
686 spin_unlock(&devices_lock);
688 /* Notifying peers about us needs to be done without locks held */
690 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
691 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
696 static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
698 struct net_device *netdev;
701 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
702 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
707 netdev->addr_assign_type = NET_ADDR_PERM;
708 baswap((void *)netdev->dev_addr, &chan->src);
710 netdev->netdev_ops = &netdev_ops;
711 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
712 SET_NETDEV_DEVTYPE(netdev, &bt_type);
714 *dev = lowpan_btle_dev(netdev);
715 (*dev)->netdev = netdev;
716 (*dev)->hdev = chan->conn->hcon->hdev;
717 INIT_LIST_HEAD(&(*dev)->peers);
719 spin_lock(&devices_lock);
720 INIT_LIST_HEAD(&(*dev)->list);
721 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
722 spin_unlock(&devices_lock);
724 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
726 BT_INFO("register_netdev failed %d", err);
727 spin_lock(&devices_lock);
728 list_del_rcu(&(*dev)->list);
729 spin_unlock(&devices_lock);
734 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
735 netdev->ifindex, &chan->dst, chan->dst_type,
736 &chan->src, chan->src_type);
737 set_bit(__LINK_STATE_PRESENT, &netdev->state);
745 static inline void chan_ready_cb(struct l2cap_chan *chan)
747 struct lowpan_btle_dev *dev;
748 bool new_netdev = false;
750 dev = lookup_dev(chan->conn);
752 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
755 if (setup_netdev(chan, &dev) < 0) {
756 l2cap_chan_del(chan, -ENOENT);
762 if (!try_module_get(THIS_MODULE))
765 add_peer_chan(chan, dev, new_netdev);
769 static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
771 struct l2cap_chan *chan;
773 chan = chan_create();
777 chan->ops = pchan->ops;
779 BT_DBG("chan %p pchan %p", chan, pchan);
784 static void delete_netdev(struct work_struct *work)
786 struct lowpan_btle_dev *entry = container_of(work,
787 struct lowpan_btle_dev,
790 lowpan_unregister_netdev(entry->netdev);
792 /* The entry pointer is deleted by the netdev destructor. */
795 static void chan_close_cb(struct l2cap_chan *chan)
797 struct lowpan_btle_dev *entry;
798 struct lowpan_btle_dev *dev = NULL;
799 struct lowpan_peer *peer;
801 bool last = false, remove = true;
803 BT_DBG("chan %p conn %p", chan, chan->conn);
805 if (chan->conn && chan->conn->hcon) {
806 if (!is_bt_6lowpan(chan->conn->hcon))
809 /* If conn is set, then the netdev is also there and we should
815 spin_lock(&devices_lock);
817 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
818 dev = lowpan_btle_dev(entry->netdev);
819 peer = __peer_lookup_chan(dev, chan);
821 last = peer_del(dev, peer);
824 BT_DBG("dev %p removing %speer %p", dev,
825 last ? "last " : "1 ", peer);
826 BT_DBG("chan %p orig refcnt %d", chan,
827 kref_read(&chan->kref));
829 l2cap_chan_put(chan);
834 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
835 spin_unlock(&devices_lock);
837 cancel_delayed_work_sync(&dev->notify_peers);
842 INIT_WORK(&entry->delete_netdev, delete_netdev);
843 schedule_work(&entry->delete_netdev);
846 spin_unlock(&devices_lock);
852 static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
854 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
855 state_to_string(state), err);
858 static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
859 unsigned long hdr_len,
860 unsigned long len, int nb)
862 /* Note that we must allocate using GFP_ATOMIC here as
863 * this function is called originally from netdev hard xmit
864 * function in atomic context.
866 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
869 static void chan_suspend_cb(struct l2cap_chan *chan)
871 struct lowpan_btle_dev *dev;
873 BT_DBG("chan %p suspend", chan);
875 dev = lookup_dev(chan->conn);
876 if (!dev || !dev->netdev)
879 netif_stop_queue(dev->netdev);
882 static void chan_resume_cb(struct l2cap_chan *chan)
884 struct lowpan_btle_dev *dev;
886 BT_DBG("chan %p resume", chan);
888 dev = lookup_dev(chan->conn);
889 if (!dev || !dev->netdev)
892 netif_wake_queue(dev->netdev);
895 static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
897 return L2CAP_CONN_TIMEOUT;
900 static const struct l2cap_ops bt_6lowpan_chan_ops = {
901 .name = "L2CAP 6LoWPAN channel",
902 .new_connection = chan_new_conn_cb,
903 .recv = chan_recv_cb,
904 .close = chan_close_cb,
905 .state_change = chan_state_change_cb,
906 .ready = chan_ready_cb,
907 .resume = chan_resume_cb,
908 .suspend = chan_suspend_cb,
909 .get_sndtimeo = chan_get_sndtimeo_cb,
910 .alloc_skb = chan_alloc_skb_cb,
912 .teardown = l2cap_chan_no_teardown,
913 .defer = l2cap_chan_no_defer,
914 .set_shutdown = l2cap_chan_no_set_shutdown,
917 static inline __u8 bdaddr_type(__u8 type)
919 if (type == ADDR_LE_DEV_PUBLIC)
920 return BDADDR_LE_PUBLIC;
922 return BDADDR_LE_RANDOM;
925 static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
927 struct l2cap_chan *chan;
930 chan = chan_create();
934 chan->ops = &bt_6lowpan_chan_ops;
936 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
939 BT_DBG("chan %p err %d", chan, err);
941 l2cap_chan_put(chan);
946 static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
948 struct lowpan_peer *peer;
950 BT_DBG("conn %p dst type %d", conn, dst_type);
952 peer = lookup_peer(conn);
956 BT_DBG("peer %p chan %p", peer, peer->chan);
958 l2cap_chan_close(peer->chan, ENOENT);
963 static struct l2cap_chan *bt_6lowpan_listen(void)
965 bdaddr_t *addr = BDADDR_ANY;
966 struct l2cap_chan *chan;
972 chan = chan_create();
976 chan->ops = &bt_6lowpan_chan_ops;
977 chan->state = BT_LISTEN;
978 chan->src_type = BDADDR_LE_PUBLIC;
980 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
982 BT_DBG("chan %p src type %d", chan, chan->src_type);
984 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
986 l2cap_chan_put(chan);
987 BT_ERR("psm cannot be added err %d", err);
994 static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
995 struct l2cap_conn **conn)
997 struct hci_conn *hcon;
998 struct hci_dev *hdev;
1001 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
1002 &addr->b[5], &addr->b[4], &addr->b[3],
1003 &addr->b[2], &addr->b[1], &addr->b[0],
1009 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1010 hdev = hci_get_route(addr, BDADDR_ANY, BDADDR_LE_PUBLIC);
1015 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
1016 hci_dev_unlock(hdev);
1021 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1023 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1028 static void disconnect_all_peers(void)
1030 struct lowpan_btle_dev *entry;
1031 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1032 struct list_head peers;
1034 INIT_LIST_HEAD(&peers);
1036 /* We make a separate list of peers as the close_cb() will
1037 * modify the device peers list so it is better not to mess
1038 * with the same list at the same time.
1043 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1044 list_for_each_entry_rcu(peer, &entry->peers, list) {
1045 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1049 new_peer->chan = peer->chan;
1050 INIT_LIST_HEAD(&new_peer->list);
1052 list_add(&new_peer->list, &peers);
1058 spin_lock(&devices_lock);
1059 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1060 l2cap_chan_close(peer->chan, ENOENT);
1062 list_del_rcu(&peer->list);
1063 kfree_rcu(peer, rcu);
1065 spin_unlock(&devices_lock);
1069 struct work_struct work;
1073 static void do_enable_set(struct work_struct *work)
1075 struct set_enable *set_enable = container_of(work,
1076 struct set_enable, work);
1078 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
1079 /* Disconnect existing connections if 6lowpan is
1082 disconnect_all_peers();
1084 enable_6lowpan = set_enable->flag;
1086 mutex_lock(&set_lock);
1088 l2cap_chan_close(listen_chan, 0);
1089 l2cap_chan_put(listen_chan);
1092 listen_chan = bt_6lowpan_listen();
1093 mutex_unlock(&set_lock);
1098 static int lowpan_enable_set(void *data, u64 val)
1100 struct set_enable *set_enable;
1102 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1106 set_enable->flag = !!val;
1107 INIT_WORK(&set_enable->work, do_enable_set);
1109 schedule_work(&set_enable->work);
1114 static int lowpan_enable_get(void *data, u64 *val)
1116 *val = enable_6lowpan;
1120 DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1121 lowpan_enable_set, "%llu\n");
1123 static ssize_t lowpan_control_write(struct file *fp,
1124 const char __user *user_buffer,
1129 size_t buf_size = min(count, sizeof(buf) - 1);
1133 struct l2cap_conn *conn = NULL;
1135 if (copy_from_user(buf, user_buffer, buf_size))
1138 buf[buf_size] = '\0';
1140 if (memcmp(buf, "connect ", 8) == 0) {
1141 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1145 mutex_lock(&set_lock);
1147 l2cap_chan_close(listen_chan, 0);
1148 l2cap_chan_put(listen_chan);
1151 mutex_unlock(&set_lock);
1154 struct lowpan_peer *peer;
1156 if (!is_bt_6lowpan(conn->hcon))
1159 peer = lookup_peer(conn);
1161 BT_DBG("6LoWPAN connection already exists");
1165 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1166 &conn->hcon->dst, conn->hcon->dst_type,
1170 ret = bt_6lowpan_connect(&addr, addr_type);
1177 if (memcmp(buf, "disconnect ", 11) == 0) {
1178 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1182 ret = bt_6lowpan_disconnect(conn, addr_type);
1192 static int lowpan_control_show(struct seq_file *f, void *ptr)
1194 struct lowpan_btle_dev *entry;
1195 struct lowpan_peer *peer;
1197 spin_lock(&devices_lock);
1199 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1200 list_for_each_entry(peer, &entry->peers, list)
1201 seq_printf(f, "%pMR (type %u)\n",
1202 &peer->chan->dst, peer->chan->dst_type);
1205 spin_unlock(&devices_lock);
1210 static int lowpan_control_open(struct inode *inode, struct file *file)
1212 return single_open(file, lowpan_control_show, inode->i_private);
1215 static const struct file_operations lowpan_control_fops = {
1216 .open = lowpan_control_open,
1218 .write = lowpan_control_write,
1219 .llseek = seq_lseek,
1220 .release = single_release,
1223 static void disconnect_devices(void)
1225 struct lowpan_btle_dev *entry, *tmp, *new_dev;
1226 struct list_head devices;
1228 INIT_LIST_HEAD(&devices);
1230 /* We make a separate list of devices because the unregister_netdev()
1231 * will call device_event() which will also want to modify the same
1237 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1238 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1242 new_dev->netdev = entry->netdev;
1243 INIT_LIST_HEAD(&new_dev->list);
1245 list_add_rcu(&new_dev->list, &devices);
1250 list_for_each_entry_safe(entry, tmp, &devices, list) {
1251 ifdown(entry->netdev);
1252 BT_DBG("Unregistering netdev %s %p",
1253 entry->netdev->name, entry->netdev);
1254 lowpan_unregister_netdev(entry->netdev);
1259 static int device_event(struct notifier_block *unused,
1260 unsigned long event, void *ptr)
1262 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
1263 struct lowpan_btle_dev *entry;
1265 if (netdev->type != ARPHRD_6LOWPAN)
1269 case NETDEV_UNREGISTER:
1270 spin_lock(&devices_lock);
1271 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1272 if (entry->netdev == netdev) {
1273 BT_DBG("Unregistered netdev %s %p",
1274 netdev->name, netdev);
1275 list_del(&entry->list);
1279 spin_unlock(&devices_lock);
1286 static struct notifier_block bt_6lowpan_dev_notifier = {
1287 .notifier_call = device_event,
1290 static int __init bt_6lowpan_init(void)
1292 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1294 &lowpan_enable_fops);
1295 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1297 &lowpan_control_fops);
1299 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1302 static void __exit bt_6lowpan_exit(void)
1304 debugfs_remove(lowpan_enable_debugfs);
1305 debugfs_remove(lowpan_control_debugfs);
1308 l2cap_chan_close(listen_chan, 0);
1309 l2cap_chan_put(listen_chan);
1312 disconnect_devices();
1314 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1317 module_init(bt_6lowpan_init);
1318 module_exit(bt_6lowpan_exit);
1320 MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1321 MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1322 MODULE_VERSION(VERSION);
1323 MODULE_LICENSE("GPL");