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
;
62 struct list_head list
;
64 struct l2cap_chan
*chan
;
66 /* peer addresses in various formats */
67 unsigned char lladdr
[ETH_ALEN
];
68 struct in6_addr peer_addr
;
71 struct lowpan_btle_dev
{
72 struct list_head list
;
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_btle_dev
*
84 lowpan_btle_dev(const struct net_device
*netdev
)
86 return (struct lowpan_btle_dev
*)lowpan_dev(netdev
)->priv
;
89 static inline void peer_add(struct lowpan_btle_dev
*dev
,
90 struct lowpan_peer
*peer
)
92 list_add_rcu(&peer
->list
, &dev
->peers
);
93 atomic_inc(&dev
->peer_count
);
96 static inline bool peer_del(struct lowpan_btle_dev
*dev
,
97 struct lowpan_peer
*peer
)
99 list_del_rcu(&peer
->list
);
100 kfree_rcu(peer
, rcu
);
102 module_put(THIS_MODULE
);
104 if (atomic_dec_and_test(&dev
->peer_count
)) {
112 static inline struct lowpan_peer
*peer_lookup_ba(struct lowpan_btle_dev
*dev
,
113 bdaddr_t
*ba
, __u8 type
)
115 struct lowpan_peer
*peer
;
117 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev
->peer_count
),
122 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
123 BT_DBG("dst addr %pMR dst type %d",
124 &peer
->chan
->dst
, peer
->chan
->dst_type
);
126 if (bacmp(&peer
->chan
->dst
, ba
))
129 if (type
== peer
->chan
->dst_type
) {
140 static inline struct lowpan_peer
*
141 __peer_lookup_chan(struct lowpan_btle_dev
*dev
, struct l2cap_chan
*chan
)
143 struct lowpan_peer
*peer
;
145 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
146 if (peer
->chan
== chan
)
153 static inline struct lowpan_peer
*
154 __peer_lookup_conn(struct lowpan_btle_dev
*dev
, struct l2cap_conn
*conn
)
156 struct lowpan_peer
*peer
;
158 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
159 if (peer
->chan
->conn
== conn
)
166 static inline struct lowpan_peer
*peer_lookup_dst(struct lowpan_btle_dev
*dev
,
167 struct in6_addr
*daddr
,
170 struct lowpan_peer
*peer
;
171 struct in6_addr
*nexthop
;
172 struct rt6_info
*rt
= (struct rt6_info
*)skb_dst(skb
);
173 int count
= atomic_read(&dev
->peer_count
);
175 BT_DBG("peers %d addr %pI6c rt %p", count
, daddr
, rt
);
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
183 peer
= list_first_or_null_rcu(&dev
->peers
, struct lowpan_peer
,
190 if (ipv6_addr_any(&lowpan_cb(skb
)->gw
)) {
191 /* There is neither route nor gateway,
192 * probably the destination is a direct peer.
196 /* There is a known gateway
198 nexthop
= &lowpan_cb(skb
)->gw
;
201 nexthop
= rt6_nexthop(rt
, daddr
);
203 /* We need to remember the address because it is needed
204 * by bt_xmit() when sending the packet. In bt_xmit(), the
205 * destination routing info is not set.
207 memcpy(&lowpan_cb(skb
)->gw
, nexthop
, sizeof(struct in6_addr
));
210 BT_DBG("gw %pI6c", nexthop
);
214 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
215 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
216 &peer
->chan
->dst
, peer
->chan
->dst_type
,
219 if (!ipv6_addr_cmp(&peer
->peer_addr
, nexthop
)) {
230 static struct lowpan_peer
*lookup_peer(struct l2cap_conn
*conn
)
232 struct lowpan_btle_dev
*entry
;
233 struct lowpan_peer
*peer
= NULL
;
237 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
238 peer
= __peer_lookup_conn(entry
, conn
);
248 static struct lowpan_btle_dev
*lookup_dev(struct l2cap_conn
*conn
)
250 struct lowpan_btle_dev
*entry
;
251 struct lowpan_btle_dev
*dev
= NULL
;
255 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
256 if (conn
->hcon
->hdev
== entry
->hdev
) {
267 static int give_skb_to_upper(struct sk_buff
*skb
, struct net_device
*dev
)
269 struct sk_buff
*skb_cp
;
271 skb_cp
= skb_copy(skb
, GFP_ATOMIC
);
275 return netif_rx_ni(skb_cp
);
278 static int iphc_decompress(struct sk_buff
*skb
, struct net_device
*netdev
,
279 struct lowpan_peer
*peer
)
283 saddr
= peer
->lladdr
;
285 return lowpan_header_decompress(skb
, netdev
, netdev
->dev_addr
, saddr
);
288 static int recv_pkt(struct sk_buff
*skb
, struct net_device
*dev
,
289 struct lowpan_peer
*peer
)
291 struct sk_buff
*local_skb
;
294 if (!netif_running(dev
))
297 if (dev
->type
!= ARPHRD_6LOWPAN
|| !skb
->len
)
300 skb_reset_network_header(skb
);
302 skb
= skb_share_check(skb
, GFP_ATOMIC
);
306 /* check that it's our buffer */
307 if (lowpan_is_ipv6(*skb_network_header(skb
))) {
308 /* Pull off the 1-byte of 6lowpan header. */
311 /* Copy the packet so that the IPv6 header is
314 local_skb
= skb_copy_expand(skb
, NET_SKB_PAD
- 1,
315 skb_tailroom(skb
), GFP_ATOMIC
);
319 local_skb
->protocol
= htons(ETH_P_IPV6
);
320 local_skb
->pkt_type
= PACKET_HOST
;
321 local_skb
->dev
= dev
;
323 skb_set_transport_header(local_skb
, sizeof(struct ipv6hdr
));
325 if (give_skb_to_upper(local_skb
, dev
) != NET_RX_SUCCESS
) {
326 kfree_skb(local_skb
);
330 dev
->stats
.rx_bytes
+= skb
->len
;
331 dev
->stats
.rx_packets
++;
333 consume_skb(local_skb
);
335 } else if (lowpan_is_iphc(*skb_network_header(skb
))) {
336 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
340 local_skb
->dev
= dev
;
342 ret
= iphc_decompress(local_skb
, dev
, peer
);
344 BT_DBG("iphc_decompress failed: %d", ret
);
345 kfree_skb(local_skb
);
349 local_skb
->protocol
= htons(ETH_P_IPV6
);
350 local_skb
->pkt_type
= PACKET_HOST
;
352 if (give_skb_to_upper(local_skb
, dev
)
354 kfree_skb(local_skb
);
358 dev
->stats
.rx_bytes
+= skb
->len
;
359 dev
->stats
.rx_packets
++;
361 consume_skb(local_skb
);
364 BT_DBG("unknown packet type");
368 return NET_RX_SUCCESS
;
371 dev
->stats
.rx_dropped
++;
375 /* Packet from BT LE device */
376 static int chan_recv_cb(struct l2cap_chan
*chan
, struct sk_buff
*skb
)
378 struct lowpan_btle_dev
*dev
;
379 struct lowpan_peer
*peer
;
382 peer
= lookup_peer(chan
->conn
);
386 dev
= lookup_dev(chan
->conn
);
387 if (!dev
|| !dev
->netdev
)
390 err
= recv_pkt(skb
, dev
->netdev
, peer
);
392 BT_DBG("recv pkt %d", err
);
399 static int setup_header(struct sk_buff
*skb
, struct net_device
*netdev
,
400 bdaddr_t
*peer_addr
, u8
*peer_addr_type
)
402 struct in6_addr ipv6_daddr
;
404 struct lowpan_btle_dev
*dev
;
405 struct lowpan_peer
*peer
;
411 dev
= lowpan_btle_dev(netdev
);
413 memcpy(&ipv6_daddr
, &hdr
->daddr
, sizeof(ipv6_daddr
));
415 if (ipv6_addr_is_multicast(&ipv6_daddr
)) {
416 lowpan_cb(skb
)->chan
= NULL
;
419 BT_DBG("dest IP %pI6c", &ipv6_daddr
);
421 /* The packet might be sent to 6lowpan interface
422 * because of routing (either via default route
423 * or user set route) so get peer according to
424 * the destination address.
426 peer
= peer_lookup_dst(dev
, &ipv6_daddr
, skb
);
428 BT_DBG("no such peer");
432 daddr
= peer
->lladdr
;
433 *peer_addr
= peer
->chan
->dst
;
434 *peer_addr_type
= peer
->chan
->dst_type
;
435 lowpan_cb(skb
)->chan
= peer
->chan
;
440 lowpan_header_compress(skb
, netdev
, daddr
, dev
->netdev
->dev_addr
);
442 err
= dev_hard_header(skb
, netdev
, ETH_P_IPV6
, NULL
, NULL
, 0);
449 static int header_create(struct sk_buff
*skb
, struct net_device
*netdev
,
450 unsigned short type
, const void *_daddr
,
451 const void *_saddr
, unsigned int len
)
453 if (type
!= ETH_P_IPV6
)
459 /* Packet to BT LE device */
460 static int send_pkt(struct l2cap_chan
*chan
, struct sk_buff
*skb
,
461 struct net_device
*netdev
)
467 /* Remember the skb so that we can send EAGAIN to the caller if
468 * we run out of credits.
472 iv
.iov_base
= skb
->data
;
473 iv
.iov_len
= skb
->len
;
475 memset(&msg
, 0, sizeof(msg
));
476 iov_iter_kvec(&msg
.msg_iter
, WRITE
| ITER_KVEC
, &iv
, 1, skb
->len
);
478 err
= l2cap_chan_send(chan
, &msg
, skb
->len
);
480 netdev
->stats
.tx_bytes
+= err
;
481 netdev
->stats
.tx_packets
++;
486 netdev
->stats
.tx_errors
++;
491 static int send_mcast_pkt(struct sk_buff
*skb
, struct net_device
*netdev
)
493 struct sk_buff
*local_skb
;
494 struct lowpan_btle_dev
*entry
;
499 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
500 struct lowpan_peer
*pentry
;
501 struct lowpan_btle_dev
*dev
;
503 if (entry
->netdev
!= netdev
)
506 dev
= lowpan_btle_dev(entry
->netdev
);
508 list_for_each_entry_rcu(pentry
, &dev
->peers
, list
) {
511 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
513 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
515 &pentry
->chan
->dst
, pentry
->chan
->dst_type
,
516 &pentry
->peer_addr
, pentry
->chan
);
517 ret
= send_pkt(pentry
->chan
, local_skb
, netdev
);
521 kfree_skb(local_skb
);
530 static netdev_tx_t
bt_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
536 /* We must take a copy of the skb before we modify/replace the ipv6
537 * header as the header could be used elsewhere
539 skb
= skb_unshare(skb
, GFP_ATOMIC
);
541 return NET_XMIT_DROP
;
543 /* Return values from setup_header()
544 * <0 - error, packet is dropped
545 * 0 - this is a multicast packet
546 * 1 - this is unicast packet
548 err
= setup_header(skb
, netdev
, &addr
, &addr_type
);
551 return NET_XMIT_DROP
;
555 if (lowpan_cb(skb
)->chan
) {
556 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
557 netdev
->name
, &addr
, addr_type
,
558 &lowpan_cb(skb
)->addr
, lowpan_cb(skb
)->chan
);
559 err
= send_pkt(lowpan_cb(skb
)->chan
, skb
, netdev
);
564 /* We need to send the packet to every device behind this
567 err
= send_mcast_pkt(skb
, netdev
);
573 BT_DBG("ERROR: xmit failed (%d)", err
);
575 return err
< 0 ? NET_XMIT_DROP
: err
;
578 static int bt_dev_init(struct net_device
*dev
)
580 netdev_lockdep_set_classes(dev
);
585 static const struct net_device_ops netdev_ops
= {
586 .ndo_init
= bt_dev_init
,
587 .ndo_start_xmit
= bt_xmit
,
590 static struct header_ops header_ops
= {
591 .create
= header_create
,
594 static void netdev_setup(struct net_device
*dev
)
596 dev
->hard_header_len
= 0;
597 dev
->needed_tailroom
= 0;
598 dev
->flags
= IFF_RUNNING
| IFF_MULTICAST
;
599 dev
->watchdog_timeo
= 0;
600 dev
->tx_queue_len
= DEFAULT_TX_QUEUE_LEN
;
602 dev
->netdev_ops
= &netdev_ops
;
603 dev
->header_ops
= &header_ops
;
604 dev
->needs_free_netdev
= true;
607 static struct device_type bt_type
= {
611 static void ifup(struct net_device
*netdev
)
616 err
= dev_open(netdev
);
618 BT_INFO("iface %s cannot be opened (%d)", netdev
->name
, err
);
622 static void ifdown(struct net_device
*netdev
)
629 static void do_notify_peers(struct work_struct
*work
)
631 struct lowpan_btle_dev
*dev
= container_of(work
, struct lowpan_btle_dev
,
634 netdev_notify_peers(dev
->netdev
); /* send neighbour adv at startup */
637 static bool is_bt_6lowpan(struct hci_conn
*hcon
)
639 if (hcon
->type
!= LE_LINK
)
648 static struct l2cap_chan
*chan_create(void)
650 struct l2cap_chan
*chan
;
652 chan
= l2cap_chan_create();
656 l2cap_chan_set_defaults(chan
);
658 chan
->chan_type
= L2CAP_CHAN_CONN_ORIENTED
;
659 chan
->mode
= L2CAP_MODE_LE_FLOWCTL
;
665 static struct l2cap_chan
*add_peer_chan(struct l2cap_chan
*chan
,
666 struct lowpan_btle_dev
*dev
,
669 struct lowpan_peer
*peer
;
671 peer
= kzalloc(sizeof(*peer
), GFP_ATOMIC
);
676 memset(&peer
->peer_addr
, 0, sizeof(struct in6_addr
));
678 baswap((void *)peer
->lladdr
, &chan
->dst
);
680 lowpan_iphc_uncompress_eui48_lladdr(&peer
->peer_addr
, peer
->lladdr
);
682 spin_lock(&devices_lock
);
683 INIT_LIST_HEAD(&peer
->list
);
685 spin_unlock(&devices_lock
);
687 /* Notifying peers about us needs to be done without locks held */
689 INIT_DELAYED_WORK(&dev
->notify_peers
, do_notify_peers
);
690 schedule_delayed_work(&dev
->notify_peers
, msecs_to_jiffies(100));
695 static int setup_netdev(struct l2cap_chan
*chan
, struct lowpan_btle_dev
**dev
)
697 struct net_device
*netdev
;
700 netdev
= alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev
)),
701 IFACE_NAME_TEMPLATE
, NET_NAME_UNKNOWN
,
706 netdev
->addr_assign_type
= NET_ADDR_PERM
;
707 baswap((void *)netdev
->dev_addr
, &chan
->src
);
709 netdev
->netdev_ops
= &netdev_ops
;
710 SET_NETDEV_DEV(netdev
, &chan
->conn
->hcon
->hdev
->dev
);
711 SET_NETDEV_DEVTYPE(netdev
, &bt_type
);
713 *dev
= lowpan_btle_dev(netdev
);
714 (*dev
)->netdev
= netdev
;
715 (*dev
)->hdev
= chan
->conn
->hcon
->hdev
;
716 INIT_LIST_HEAD(&(*dev
)->peers
);
718 spin_lock(&devices_lock
);
719 INIT_LIST_HEAD(&(*dev
)->list
);
720 list_add_rcu(&(*dev
)->list
, &bt_6lowpan_devices
);
721 spin_unlock(&devices_lock
);
723 err
= lowpan_register_netdev(netdev
, LOWPAN_LLTYPE_BTLE
);
725 BT_INFO("register_netdev failed %d", err
);
726 spin_lock(&devices_lock
);
727 list_del_rcu(&(*dev
)->list
);
728 spin_unlock(&devices_lock
);
733 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
734 netdev
->ifindex
, &chan
->dst
, chan
->dst_type
,
735 &chan
->src
, chan
->src_type
);
736 set_bit(__LINK_STATE_PRESENT
, &netdev
->state
);
744 static inline void chan_ready_cb(struct l2cap_chan
*chan
)
746 struct lowpan_btle_dev
*dev
;
747 bool new_netdev
= false;
749 dev
= lookup_dev(chan
->conn
);
751 BT_DBG("chan %p conn %p dev %p", chan
, chan
->conn
, dev
);
754 if (setup_netdev(chan
, &dev
) < 0) {
755 l2cap_chan_del(chan
, -ENOENT
);
761 if (!try_module_get(THIS_MODULE
))
764 add_peer_chan(chan
, dev
, new_netdev
);
768 static inline struct l2cap_chan
*chan_new_conn_cb(struct l2cap_chan
*pchan
)
770 struct l2cap_chan
*chan
;
772 chan
= chan_create();
776 chan
->ops
= pchan
->ops
;
778 BT_DBG("chan %p pchan %p", chan
, pchan
);
783 static void delete_netdev(struct work_struct
*work
)
785 struct lowpan_btle_dev
*entry
= container_of(work
,
786 struct lowpan_btle_dev
,
789 lowpan_unregister_netdev(entry
->netdev
);
791 /* The entry pointer is deleted by the netdev destructor. */
794 static void chan_close_cb(struct l2cap_chan
*chan
)
796 struct lowpan_btle_dev
*entry
;
797 struct lowpan_btle_dev
*dev
= NULL
;
798 struct lowpan_peer
*peer
;
800 bool last
= false, remove
= true;
802 BT_DBG("chan %p conn %p", chan
, chan
->conn
);
804 if (chan
->conn
&& chan
->conn
->hcon
) {
805 if (!is_bt_6lowpan(chan
->conn
->hcon
))
808 /* If conn is set, then the netdev is also there and we should
814 spin_lock(&devices_lock
);
816 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
817 dev
= lowpan_btle_dev(entry
->netdev
);
818 peer
= __peer_lookup_chan(dev
, chan
);
820 last
= peer_del(dev
, peer
);
823 BT_DBG("dev %p removing %speer %p", dev
,
824 last
? "last " : "1 ", peer
);
825 BT_DBG("chan %p orig refcnt %d", chan
,
826 kref_read(&chan
->kref
));
828 l2cap_chan_put(chan
);
833 if (!err
&& last
&& dev
&& !atomic_read(&dev
->peer_count
)) {
834 spin_unlock(&devices_lock
);
836 cancel_delayed_work_sync(&dev
->notify_peers
);
841 INIT_WORK(&entry
->delete_netdev
, delete_netdev
);
842 schedule_work(&entry
->delete_netdev
);
845 spin_unlock(&devices_lock
);
851 static void chan_state_change_cb(struct l2cap_chan
*chan
, int state
, int err
)
853 BT_DBG("chan %p conn %p state %s err %d", chan
, chan
->conn
,
854 state_to_string(state
), err
);
857 static struct sk_buff
*chan_alloc_skb_cb(struct l2cap_chan
*chan
,
858 unsigned long hdr_len
,
859 unsigned long len
, int nb
)
861 /* Note that we must allocate using GFP_ATOMIC here as
862 * this function is called originally from netdev hard xmit
863 * function in atomic context.
865 return bt_skb_alloc(hdr_len
+ len
, GFP_ATOMIC
);
868 static void chan_suspend_cb(struct l2cap_chan
*chan
)
870 struct lowpan_btle_dev
*dev
;
872 BT_DBG("chan %p suspend", chan
);
874 dev
= lookup_dev(chan
->conn
);
875 if (!dev
|| !dev
->netdev
)
878 netif_stop_queue(dev
->netdev
);
881 static void chan_resume_cb(struct l2cap_chan
*chan
)
883 struct lowpan_btle_dev
*dev
;
885 BT_DBG("chan %p resume", chan
);
887 dev
= lookup_dev(chan
->conn
);
888 if (!dev
|| !dev
->netdev
)
891 netif_wake_queue(dev
->netdev
);
894 static long chan_get_sndtimeo_cb(struct l2cap_chan
*chan
)
896 return L2CAP_CONN_TIMEOUT
;
899 static const struct l2cap_ops bt_6lowpan_chan_ops
= {
900 .name
= "L2CAP 6LoWPAN channel",
901 .new_connection
= chan_new_conn_cb
,
902 .recv
= chan_recv_cb
,
903 .close
= chan_close_cb
,
904 .state_change
= chan_state_change_cb
,
905 .ready
= chan_ready_cb
,
906 .resume
= chan_resume_cb
,
907 .suspend
= chan_suspend_cb
,
908 .get_sndtimeo
= chan_get_sndtimeo_cb
,
909 .alloc_skb
= chan_alloc_skb_cb
,
911 .teardown
= l2cap_chan_no_teardown
,
912 .defer
= l2cap_chan_no_defer
,
913 .set_shutdown
= l2cap_chan_no_set_shutdown
,
916 static inline __u8
bdaddr_type(__u8 type
)
918 if (type
== ADDR_LE_DEV_PUBLIC
)
919 return BDADDR_LE_PUBLIC
;
921 return BDADDR_LE_RANDOM
;
924 static int bt_6lowpan_connect(bdaddr_t
*addr
, u8 dst_type
)
926 struct l2cap_chan
*chan
;
929 chan
= chan_create();
933 chan
->ops
= &bt_6lowpan_chan_ops
;
935 err
= l2cap_chan_connect(chan
, cpu_to_le16(L2CAP_PSM_IPSP
), 0,
938 BT_DBG("chan %p err %d", chan
, err
);
940 l2cap_chan_put(chan
);
945 static int bt_6lowpan_disconnect(struct l2cap_conn
*conn
, u8 dst_type
)
947 struct lowpan_peer
*peer
;
949 BT_DBG("conn %p dst type %d", conn
, dst_type
);
951 peer
= lookup_peer(conn
);
955 BT_DBG("peer %p chan %p", peer
, peer
->chan
);
957 l2cap_chan_close(peer
->chan
, ENOENT
);
962 static struct l2cap_chan
*bt_6lowpan_listen(void)
964 bdaddr_t
*addr
= BDADDR_ANY
;
965 struct l2cap_chan
*chan
;
971 chan
= chan_create();
975 chan
->ops
= &bt_6lowpan_chan_ops
;
976 chan
->state
= BT_LISTEN
;
977 chan
->src_type
= BDADDR_LE_PUBLIC
;
979 atomic_set(&chan
->nesting
, L2CAP_NESTING_PARENT
);
981 BT_DBG("chan %p src type %d", chan
, chan
->src_type
);
983 err
= l2cap_add_psm(chan
, addr
, cpu_to_le16(L2CAP_PSM_IPSP
));
985 l2cap_chan_put(chan
);
986 BT_ERR("psm cannot be added err %d", err
);
993 static int get_l2cap_conn(char *buf
, bdaddr_t
*addr
, u8
*addr_type
,
994 struct l2cap_conn
**conn
)
996 struct hci_conn
*hcon
;
997 struct hci_dev
*hdev
;
1000 n
= sscanf(buf
, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
1001 &addr
->b
[5], &addr
->b
[4], &addr
->b
[3],
1002 &addr
->b
[2], &addr
->b
[1], &addr
->b
[0],
1008 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1009 hdev
= hci_get_route(addr
, BDADDR_ANY
, BDADDR_LE_PUBLIC
);
1014 hcon
= hci_conn_hash_lookup_le(hdev
, addr
, *addr_type
);
1015 hci_dev_unlock(hdev
);
1020 *conn
= (struct l2cap_conn
*)hcon
->l2cap_data
;
1022 BT_DBG("conn %p dst %pMR type %d", *conn
, &hcon
->dst
, hcon
->dst_type
);
1027 static void disconnect_all_peers(void)
1029 struct lowpan_btle_dev
*entry
;
1030 struct lowpan_peer
*peer
, *tmp_peer
, *new_peer
;
1031 struct list_head peers
;
1033 INIT_LIST_HEAD(&peers
);
1035 /* We make a separate list of peers as the close_cb() will
1036 * modify the device peers list so it is better not to mess
1037 * with the same list at the same time.
1042 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1043 list_for_each_entry_rcu(peer
, &entry
->peers
, list
) {
1044 new_peer
= kmalloc(sizeof(*new_peer
), GFP_ATOMIC
);
1048 new_peer
->chan
= peer
->chan
;
1049 INIT_LIST_HEAD(&new_peer
->list
);
1051 list_add(&new_peer
->list
, &peers
);
1057 spin_lock(&devices_lock
);
1058 list_for_each_entry_safe(peer
, tmp_peer
, &peers
, list
) {
1059 l2cap_chan_close(peer
->chan
, ENOENT
);
1061 list_del_rcu(&peer
->list
);
1062 kfree_rcu(peer
, rcu
);
1064 spin_unlock(&devices_lock
);
1068 struct work_struct work
;
1072 static void do_enable_set(struct work_struct
*work
)
1074 struct set_enable
*set_enable
= container_of(work
,
1075 struct set_enable
, work
);
1077 if (!set_enable
->flag
|| enable_6lowpan
!= set_enable
->flag
)
1078 /* Disconnect existing connections if 6lowpan is
1081 disconnect_all_peers();
1083 enable_6lowpan
= set_enable
->flag
;
1086 l2cap_chan_close(listen_chan
, 0);
1087 l2cap_chan_put(listen_chan
);
1090 listen_chan
= bt_6lowpan_listen();
1095 static int lowpan_enable_set(void *data
, u64 val
)
1097 struct set_enable
*set_enable
;
1099 set_enable
= kzalloc(sizeof(*set_enable
), GFP_KERNEL
);
1103 set_enable
->flag
= !!val
;
1104 INIT_WORK(&set_enable
->work
, do_enable_set
);
1106 schedule_work(&set_enable
->work
);
1111 static int lowpan_enable_get(void *data
, u64
*val
)
1113 *val
= enable_6lowpan
;
1117 DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops
, lowpan_enable_get
,
1118 lowpan_enable_set
, "%llu\n");
1120 static ssize_t
lowpan_control_write(struct file
*fp
,
1121 const char __user
*user_buffer
,
1126 size_t buf_size
= min(count
, sizeof(buf
) - 1);
1130 struct l2cap_conn
*conn
= NULL
;
1132 if (copy_from_user(buf
, user_buffer
, buf_size
))
1135 buf
[buf_size
] = '\0';
1137 if (memcmp(buf
, "connect ", 8) == 0) {
1138 ret
= get_l2cap_conn(&buf
[8], &addr
, &addr_type
, &conn
);
1143 l2cap_chan_close(listen_chan
, 0);
1144 l2cap_chan_put(listen_chan
);
1149 struct lowpan_peer
*peer
;
1151 if (!is_bt_6lowpan(conn
->hcon
))
1154 peer
= lookup_peer(conn
);
1156 BT_DBG("6LoWPAN connection already exists");
1160 BT_DBG("conn %p dst %pMR type %d user %d", conn
,
1161 &conn
->hcon
->dst
, conn
->hcon
->dst_type
,
1165 ret
= bt_6lowpan_connect(&addr
, addr_type
);
1172 if (memcmp(buf
, "disconnect ", 11) == 0) {
1173 ret
= get_l2cap_conn(&buf
[11], &addr
, &addr_type
, &conn
);
1177 ret
= bt_6lowpan_disconnect(conn
, addr_type
);
1187 static int lowpan_control_show(struct seq_file
*f
, void *ptr
)
1189 struct lowpan_btle_dev
*entry
;
1190 struct lowpan_peer
*peer
;
1192 spin_lock(&devices_lock
);
1194 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1195 list_for_each_entry(peer
, &entry
->peers
, list
)
1196 seq_printf(f
, "%pMR (type %u)\n",
1197 &peer
->chan
->dst
, peer
->chan
->dst_type
);
1200 spin_unlock(&devices_lock
);
1205 static int lowpan_control_open(struct inode
*inode
, struct file
*file
)
1207 return single_open(file
, lowpan_control_show
, inode
->i_private
);
1210 static const struct file_operations lowpan_control_fops
= {
1211 .open
= lowpan_control_open
,
1213 .write
= lowpan_control_write
,
1214 .llseek
= seq_lseek
,
1215 .release
= single_release
,
1218 static void disconnect_devices(void)
1220 struct lowpan_btle_dev
*entry
, *tmp
, *new_dev
;
1221 struct list_head devices
;
1223 INIT_LIST_HEAD(&devices
);
1225 /* We make a separate list of devices because the unregister_netdev()
1226 * will call device_event() which will also want to modify the same
1232 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1233 new_dev
= kmalloc(sizeof(*new_dev
), GFP_ATOMIC
);
1237 new_dev
->netdev
= entry
->netdev
;
1238 INIT_LIST_HEAD(&new_dev
->list
);
1240 list_add_rcu(&new_dev
->list
, &devices
);
1245 list_for_each_entry_safe(entry
, tmp
, &devices
, list
) {
1246 ifdown(entry
->netdev
);
1247 BT_DBG("Unregistering netdev %s %p",
1248 entry
->netdev
->name
, entry
->netdev
);
1249 lowpan_unregister_netdev(entry
->netdev
);
1254 static int device_event(struct notifier_block
*unused
,
1255 unsigned long event
, void *ptr
)
1257 struct net_device
*netdev
= netdev_notifier_info_to_dev(ptr
);
1258 struct lowpan_btle_dev
*entry
;
1260 if (netdev
->type
!= ARPHRD_6LOWPAN
)
1264 case NETDEV_UNREGISTER
:
1265 spin_lock(&devices_lock
);
1266 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1267 if (entry
->netdev
== netdev
) {
1268 BT_DBG("Unregistered netdev %s %p",
1269 netdev
->name
, netdev
);
1270 list_del(&entry
->list
);
1274 spin_unlock(&devices_lock
);
1281 static struct notifier_block bt_6lowpan_dev_notifier
= {
1282 .notifier_call
= device_event
,
1285 static int __init
bt_6lowpan_init(void)
1287 lowpan_enable_debugfs
= debugfs_create_file("6lowpan_enable", 0644,
1289 &lowpan_enable_fops
);
1290 lowpan_control_debugfs
= debugfs_create_file("6lowpan_control", 0644,
1292 &lowpan_control_fops
);
1294 return register_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1297 static void __exit
bt_6lowpan_exit(void)
1299 debugfs_remove(lowpan_enable_debugfs
);
1300 debugfs_remove(lowpan_control_debugfs
);
1303 l2cap_chan_close(listen_chan
, 0);
1304 l2cap_chan_put(listen_chan
);
1307 disconnect_devices();
1309 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1312 module_init(bt_6lowpan_init
);
1313 module_exit(bt_6lowpan_exit
);
1315 MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1316 MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1317 MODULE_VERSION(VERSION
);
1318 MODULE_LICENSE("GPL");