1 // SPDX-License-Identifier: GPL-2.0-only
3 Copyright (c) 2013-2014 Intel Corp.
7 #include <linux/if_arp.h>
8 #include <linux/netdevice.h>
9 #include <linux/etherdevice.h>
10 #include <linux/module.h>
11 #include <linux/debugfs.h>
14 #include <net/ip6_route.h>
15 #include <net/addrconf.h>
16 #include <net/pkt_sched.h>
18 #include <net/bluetooth/bluetooth.h>
19 #include <net/bluetooth/hci_core.h>
20 #include <net/bluetooth/l2cap.h>
22 #include <net/6lowpan.h> /* for the compression support */
26 static struct dentry
*lowpan_enable_debugfs
;
27 static struct dentry
*lowpan_control_debugfs
;
29 #define IFACE_NAME_TEMPLATE "bt%d"
34 struct l2cap_chan
*chan
;
36 #define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
38 /* The devices list contains those devices that we are acting
39 * as a proxy. The BT 6LoWPAN device is a virtual device that
40 * connects to the Bluetooth LE device. The real connection to
41 * BT device is done via l2cap layer. There exists one
42 * virtual device / one BT 6LoWPAN network (=hciX device).
43 * The list contains struct lowpan_dev elements.
45 static LIST_HEAD(bt_6lowpan_devices
);
46 static DEFINE_SPINLOCK(devices_lock
);
48 static bool enable_6lowpan
;
50 /* We are listening incoming connections via this channel
52 static struct l2cap_chan
*listen_chan
;
53 static DEFINE_MUTEX(set_lock
);
56 struct list_head list
;
58 struct l2cap_chan
*chan
;
60 /* peer addresses in various formats */
61 unsigned char lladdr
[ETH_ALEN
];
62 struct in6_addr peer_addr
;
65 struct lowpan_btle_dev
{
66 struct list_head list
;
69 struct net_device
*netdev
;
70 struct list_head peers
;
71 atomic_t peer_count
; /* number of items in peers list */
73 struct work_struct delete_netdev
;
74 struct delayed_work notify_peers
;
77 static inline struct lowpan_btle_dev
*
78 lowpan_btle_dev(const struct net_device
*netdev
)
80 return (struct lowpan_btle_dev
*)lowpan_dev(netdev
)->priv
;
83 static inline void peer_add(struct lowpan_btle_dev
*dev
,
84 struct lowpan_peer
*peer
)
86 list_add_rcu(&peer
->list
, &dev
->peers
);
87 atomic_inc(&dev
->peer_count
);
90 static inline bool peer_del(struct lowpan_btle_dev
*dev
,
91 struct lowpan_peer
*peer
)
93 list_del_rcu(&peer
->list
);
96 module_put(THIS_MODULE
);
98 if (atomic_dec_and_test(&dev
->peer_count
)) {
106 static inline struct lowpan_peer
*peer_lookup_ba(struct lowpan_btle_dev
*dev
,
107 bdaddr_t
*ba
, __u8 type
)
109 struct lowpan_peer
*peer
;
111 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev
->peer_count
),
116 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
117 BT_DBG("dst addr %pMR dst type %d",
118 &peer
->chan
->dst
, peer
->chan
->dst_type
);
120 if (bacmp(&peer
->chan
->dst
, ba
))
123 if (type
== peer
->chan
->dst_type
) {
134 static inline struct lowpan_peer
*
135 __peer_lookup_chan(struct lowpan_btle_dev
*dev
, struct l2cap_chan
*chan
)
137 struct lowpan_peer
*peer
;
139 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
140 if (peer
->chan
== chan
)
147 static inline struct lowpan_peer
*
148 __peer_lookup_conn(struct lowpan_btle_dev
*dev
, struct l2cap_conn
*conn
)
150 struct lowpan_peer
*peer
;
152 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
153 if (peer
->chan
->conn
== conn
)
160 static inline struct lowpan_peer
*peer_lookup_dst(struct lowpan_btle_dev
*dev
,
161 struct in6_addr
*daddr
,
164 struct rt6_info
*rt
= (struct rt6_info
*)skb_dst(skb
);
165 int count
= atomic_read(&dev
->peer_count
);
166 const struct in6_addr
*nexthop
;
167 struct lowpan_peer
*peer
;
168 struct neighbour
*neigh
;
170 BT_DBG("peers %d addr %pI6c rt %p", count
, daddr
, rt
);
173 if (ipv6_addr_any(&lowpan_cb(skb
)->gw
)) {
174 /* There is neither route nor gateway,
175 * probably the destination is a direct peer.
179 /* There is a known gateway
181 nexthop
= &lowpan_cb(skb
)->gw
;
184 nexthop
= rt6_nexthop(rt
, daddr
);
186 /* We need to remember the address because it is needed
187 * by bt_xmit() when sending the packet. In bt_xmit(), the
188 * destination routing info is not set.
190 memcpy(&lowpan_cb(skb
)->gw
, nexthop
, sizeof(struct in6_addr
));
193 BT_DBG("gw %pI6c", nexthop
);
197 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
198 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
199 &peer
->chan
->dst
, peer
->chan
->dst_type
,
202 if (!ipv6_addr_cmp(&peer
->peer_addr
, nexthop
)) {
208 /* use the neighbour cache for matching addresses assigned by SLAAC
210 neigh
= __ipv6_neigh_lookup(dev
->netdev
, nexthop
);
212 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
213 if (!memcmp(neigh
->ha
, peer
->lladdr
, ETH_ALEN
)) {
214 neigh_release(neigh
);
219 neigh_release(neigh
);
227 static struct lowpan_peer
*lookup_peer(struct l2cap_conn
*conn
)
229 struct lowpan_btle_dev
*entry
;
230 struct lowpan_peer
*peer
= NULL
;
234 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
235 peer
= __peer_lookup_conn(entry
, conn
);
245 static struct lowpan_btle_dev
*lookup_dev(struct l2cap_conn
*conn
)
247 struct lowpan_btle_dev
*entry
;
248 struct lowpan_btle_dev
*dev
= NULL
;
252 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
253 if (conn
->hcon
->hdev
== entry
->hdev
) {
264 static int give_skb_to_upper(struct sk_buff
*skb
, struct net_device
*dev
)
266 struct sk_buff
*skb_cp
;
268 skb_cp
= skb_copy(skb
, GFP_ATOMIC
);
272 return netif_rx_ni(skb_cp
);
275 static int iphc_decompress(struct sk_buff
*skb
, struct net_device
*netdev
,
276 struct lowpan_peer
*peer
)
280 saddr
= peer
->lladdr
;
282 return lowpan_header_decompress(skb
, netdev
, netdev
->dev_addr
, saddr
);
285 static int recv_pkt(struct sk_buff
*skb
, struct net_device
*dev
,
286 struct lowpan_peer
*peer
)
288 struct sk_buff
*local_skb
;
291 if (!netif_running(dev
))
294 if (dev
->type
!= ARPHRD_6LOWPAN
|| !skb
->len
)
297 skb_reset_network_header(skb
);
299 skb
= skb_share_check(skb
, GFP_ATOMIC
);
303 /* check that it's our buffer */
304 if (lowpan_is_ipv6(*skb_network_header(skb
))) {
305 /* Pull off the 1-byte of 6lowpan header. */
308 /* Copy the packet so that the IPv6 header is
311 local_skb
= skb_copy_expand(skb
, NET_SKB_PAD
- 1,
312 skb_tailroom(skb
), GFP_ATOMIC
);
316 local_skb
->protocol
= htons(ETH_P_IPV6
);
317 local_skb
->pkt_type
= PACKET_HOST
;
318 local_skb
->dev
= dev
;
320 skb_set_transport_header(local_skb
, sizeof(struct ipv6hdr
));
322 if (give_skb_to_upper(local_skb
, dev
) != NET_RX_SUCCESS
) {
323 kfree_skb(local_skb
);
327 dev
->stats
.rx_bytes
+= skb
->len
;
328 dev
->stats
.rx_packets
++;
330 consume_skb(local_skb
);
332 } else if (lowpan_is_iphc(*skb_network_header(skb
))) {
333 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
337 local_skb
->dev
= dev
;
339 ret
= iphc_decompress(local_skb
, dev
, peer
);
341 BT_DBG("iphc_decompress failed: %d", ret
);
342 kfree_skb(local_skb
);
346 local_skb
->protocol
= htons(ETH_P_IPV6
);
347 local_skb
->pkt_type
= PACKET_HOST
;
349 if (give_skb_to_upper(local_skb
, dev
)
351 kfree_skb(local_skb
);
355 dev
->stats
.rx_bytes
+= skb
->len
;
356 dev
->stats
.rx_packets
++;
358 consume_skb(local_skb
);
361 BT_DBG("unknown packet type");
365 return NET_RX_SUCCESS
;
368 dev
->stats
.rx_dropped
++;
372 /* Packet from BT LE device */
373 static int chan_recv_cb(struct l2cap_chan
*chan
, struct sk_buff
*skb
)
375 struct lowpan_btle_dev
*dev
;
376 struct lowpan_peer
*peer
;
379 peer
= lookup_peer(chan
->conn
);
383 dev
= lookup_dev(chan
->conn
);
384 if (!dev
|| !dev
->netdev
)
387 err
= recv_pkt(skb
, dev
->netdev
, peer
);
389 BT_DBG("recv pkt %d", err
);
396 static int setup_header(struct sk_buff
*skb
, struct net_device
*netdev
,
397 bdaddr_t
*peer_addr
, u8
*peer_addr_type
)
399 struct in6_addr ipv6_daddr
;
401 struct lowpan_btle_dev
*dev
;
402 struct lowpan_peer
*peer
;
408 dev
= lowpan_btle_dev(netdev
);
410 memcpy(&ipv6_daddr
, &hdr
->daddr
, sizeof(ipv6_daddr
));
412 if (ipv6_addr_is_multicast(&ipv6_daddr
)) {
413 lowpan_cb(skb
)->chan
= NULL
;
416 BT_DBG("dest IP %pI6c", &ipv6_daddr
);
418 /* The packet might be sent to 6lowpan interface
419 * because of routing (either via default route
420 * or user set route) so get peer according to
421 * the destination address.
423 peer
= peer_lookup_dst(dev
, &ipv6_daddr
, skb
);
425 BT_DBG("no such peer");
429 daddr
= peer
->lladdr
;
430 *peer_addr
= peer
->chan
->dst
;
431 *peer_addr_type
= peer
->chan
->dst_type
;
432 lowpan_cb(skb
)->chan
= peer
->chan
;
437 lowpan_header_compress(skb
, netdev
, daddr
, dev
->netdev
->dev_addr
);
439 err
= dev_hard_header(skb
, netdev
, ETH_P_IPV6
, NULL
, NULL
, 0);
446 static int header_create(struct sk_buff
*skb
, struct net_device
*netdev
,
447 unsigned short type
, const void *_daddr
,
448 const void *_saddr
, unsigned int len
)
450 if (type
!= ETH_P_IPV6
)
456 /* Packet to BT LE device */
457 static int send_pkt(struct l2cap_chan
*chan
, struct sk_buff
*skb
,
458 struct net_device
*netdev
)
464 /* Remember the skb so that we can send EAGAIN to the caller if
465 * we run out of credits.
469 iv
.iov_base
= skb
->data
;
470 iv
.iov_len
= skb
->len
;
472 memset(&msg
, 0, sizeof(msg
));
473 iov_iter_kvec(&msg
.msg_iter
, WRITE
, &iv
, 1, skb
->len
);
475 err
= l2cap_chan_send(chan
, &msg
, skb
->len
);
477 netdev
->stats
.tx_bytes
+= err
;
478 netdev
->stats
.tx_packets
++;
483 netdev
->stats
.tx_errors
++;
488 static int send_mcast_pkt(struct sk_buff
*skb
, struct net_device
*netdev
)
490 struct sk_buff
*local_skb
;
491 struct lowpan_btle_dev
*entry
;
496 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
497 struct lowpan_peer
*pentry
;
498 struct lowpan_btle_dev
*dev
;
500 if (entry
->netdev
!= netdev
)
503 dev
= lowpan_btle_dev(entry
->netdev
);
505 list_for_each_entry_rcu(pentry
, &dev
->peers
, list
) {
508 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
510 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
512 &pentry
->chan
->dst
, pentry
->chan
->dst_type
,
513 &pentry
->peer_addr
, pentry
->chan
);
514 ret
= send_pkt(pentry
->chan
, local_skb
, netdev
);
518 kfree_skb(local_skb
);
527 static netdev_tx_t
bt_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
533 /* We must take a copy of the skb before we modify/replace the ipv6
534 * header as the header could be used elsewhere
536 skb
= skb_unshare(skb
, GFP_ATOMIC
);
538 return NET_XMIT_DROP
;
540 /* Return values from setup_header()
541 * <0 - error, packet is dropped
542 * 0 - this is a multicast packet
543 * 1 - this is unicast packet
545 err
= setup_header(skb
, netdev
, &addr
, &addr_type
);
548 return NET_XMIT_DROP
;
552 if (lowpan_cb(skb
)->chan
) {
553 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
554 netdev
->name
, &addr
, addr_type
,
555 &lowpan_cb(skb
)->addr
, lowpan_cb(skb
)->chan
);
556 err
= send_pkt(lowpan_cb(skb
)->chan
, skb
, netdev
);
561 /* We need to send the packet to every device behind this
564 err
= send_mcast_pkt(skb
, netdev
);
570 BT_DBG("ERROR: xmit failed (%d)", err
);
572 return err
< 0 ? NET_XMIT_DROP
: err
;
575 static int bt_dev_init(struct net_device
*dev
)
577 netdev_lockdep_set_classes(dev
);
582 static const struct net_device_ops netdev_ops
= {
583 .ndo_init
= bt_dev_init
,
584 .ndo_start_xmit
= bt_xmit
,
587 static const struct header_ops header_ops
= {
588 .create
= header_create
,
591 static void netdev_setup(struct net_device
*dev
)
593 dev
->hard_header_len
= 0;
594 dev
->needed_tailroom
= 0;
595 dev
->flags
= IFF_RUNNING
| IFF_MULTICAST
;
596 dev
->watchdog_timeo
= 0;
597 dev
->tx_queue_len
= DEFAULT_TX_QUEUE_LEN
;
599 dev
->netdev_ops
= &netdev_ops
;
600 dev
->header_ops
= &header_ops
;
601 dev
->needs_free_netdev
= true;
604 static struct device_type bt_type
= {
608 static void ifup(struct net_device
*netdev
)
613 err
= dev_open(netdev
, NULL
);
615 BT_INFO("iface %s cannot be opened (%d)", netdev
->name
, err
);
619 static void ifdown(struct net_device
*netdev
)
626 static void do_notify_peers(struct work_struct
*work
)
628 struct lowpan_btle_dev
*dev
= container_of(work
, struct lowpan_btle_dev
,
631 netdev_notify_peers(dev
->netdev
); /* send neighbour adv at startup */
634 static bool is_bt_6lowpan(struct hci_conn
*hcon
)
636 if (hcon
->type
!= LE_LINK
)
645 static struct l2cap_chan
*chan_create(void)
647 struct l2cap_chan
*chan
;
649 chan
= l2cap_chan_create();
653 l2cap_chan_set_defaults(chan
);
655 chan
->chan_type
= L2CAP_CHAN_CONN_ORIENTED
;
656 chan
->mode
= L2CAP_MODE_LE_FLOWCTL
;
662 static struct l2cap_chan
*add_peer_chan(struct l2cap_chan
*chan
,
663 struct lowpan_btle_dev
*dev
,
666 struct lowpan_peer
*peer
;
668 peer
= kzalloc(sizeof(*peer
), GFP_ATOMIC
);
673 memset(&peer
->peer_addr
, 0, sizeof(struct in6_addr
));
675 baswap((void *)peer
->lladdr
, &chan
->dst
);
677 lowpan_iphc_uncompress_eui48_lladdr(&peer
->peer_addr
, peer
->lladdr
);
679 spin_lock(&devices_lock
);
680 INIT_LIST_HEAD(&peer
->list
);
682 spin_unlock(&devices_lock
);
684 /* Notifying peers about us needs to be done without locks held */
686 INIT_DELAYED_WORK(&dev
->notify_peers
, do_notify_peers
);
687 schedule_delayed_work(&dev
->notify_peers
, msecs_to_jiffies(100));
692 static int setup_netdev(struct l2cap_chan
*chan
, struct lowpan_btle_dev
**dev
)
694 struct net_device
*netdev
;
697 netdev
= alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev
)),
698 IFACE_NAME_TEMPLATE
, NET_NAME_UNKNOWN
,
703 netdev
->addr_assign_type
= NET_ADDR_PERM
;
704 baswap((void *)netdev
->dev_addr
, &chan
->src
);
706 netdev
->netdev_ops
= &netdev_ops
;
707 SET_NETDEV_DEV(netdev
, &chan
->conn
->hcon
->hdev
->dev
);
708 SET_NETDEV_DEVTYPE(netdev
, &bt_type
);
710 *dev
= lowpan_btle_dev(netdev
);
711 (*dev
)->netdev
= netdev
;
712 (*dev
)->hdev
= chan
->conn
->hcon
->hdev
;
713 INIT_LIST_HEAD(&(*dev
)->peers
);
715 spin_lock(&devices_lock
);
716 INIT_LIST_HEAD(&(*dev
)->list
);
717 list_add_rcu(&(*dev
)->list
, &bt_6lowpan_devices
);
718 spin_unlock(&devices_lock
);
720 err
= lowpan_register_netdev(netdev
, LOWPAN_LLTYPE_BTLE
);
722 BT_INFO("register_netdev failed %d", err
);
723 spin_lock(&devices_lock
);
724 list_del_rcu(&(*dev
)->list
);
725 spin_unlock(&devices_lock
);
730 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
731 netdev
->ifindex
, &chan
->dst
, chan
->dst_type
,
732 &chan
->src
, chan
->src_type
);
733 set_bit(__LINK_STATE_PRESENT
, &netdev
->state
);
741 static inline void chan_ready_cb(struct l2cap_chan
*chan
)
743 struct lowpan_btle_dev
*dev
;
744 bool new_netdev
= false;
746 dev
= lookup_dev(chan
->conn
);
748 BT_DBG("chan %p conn %p dev %p", chan
, chan
->conn
, dev
);
751 if (setup_netdev(chan
, &dev
) < 0) {
752 l2cap_chan_del(chan
, -ENOENT
);
758 if (!try_module_get(THIS_MODULE
))
761 add_peer_chan(chan
, dev
, new_netdev
);
765 static inline struct l2cap_chan
*chan_new_conn_cb(struct l2cap_chan
*pchan
)
767 struct l2cap_chan
*chan
;
769 chan
= chan_create();
773 chan
->ops
= pchan
->ops
;
775 BT_DBG("chan %p pchan %p", chan
, pchan
);
780 static void delete_netdev(struct work_struct
*work
)
782 struct lowpan_btle_dev
*entry
= container_of(work
,
783 struct lowpan_btle_dev
,
786 lowpan_unregister_netdev(entry
->netdev
);
788 /* The entry pointer is deleted by the netdev destructor. */
791 static void chan_close_cb(struct l2cap_chan
*chan
)
793 struct lowpan_btle_dev
*entry
;
794 struct lowpan_btle_dev
*dev
= NULL
;
795 struct lowpan_peer
*peer
;
797 bool last
= false, remove
= true;
799 BT_DBG("chan %p conn %p", chan
, chan
->conn
);
801 if (chan
->conn
&& chan
->conn
->hcon
) {
802 if (!is_bt_6lowpan(chan
->conn
->hcon
))
805 /* If conn is set, then the netdev is also there and we should
811 spin_lock(&devices_lock
);
813 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
814 dev
= lowpan_btle_dev(entry
->netdev
);
815 peer
= __peer_lookup_chan(dev
, chan
);
817 last
= peer_del(dev
, peer
);
820 BT_DBG("dev %p removing %speer %p", dev
,
821 last
? "last " : "1 ", peer
);
822 BT_DBG("chan %p orig refcnt %d", chan
,
823 kref_read(&chan
->kref
));
825 l2cap_chan_put(chan
);
830 if (!err
&& last
&& dev
&& !atomic_read(&dev
->peer_count
)) {
831 spin_unlock(&devices_lock
);
833 cancel_delayed_work_sync(&dev
->notify_peers
);
838 INIT_WORK(&entry
->delete_netdev
, delete_netdev
);
839 schedule_work(&entry
->delete_netdev
);
842 spin_unlock(&devices_lock
);
848 static void chan_state_change_cb(struct l2cap_chan
*chan
, int state
, int err
)
850 BT_DBG("chan %p conn %p state %s err %d", chan
, chan
->conn
,
851 state_to_string(state
), err
);
854 static struct sk_buff
*chan_alloc_skb_cb(struct l2cap_chan
*chan
,
855 unsigned long hdr_len
,
856 unsigned long len
, int nb
)
858 /* Note that we must allocate using GFP_ATOMIC here as
859 * this function is called originally from netdev hard xmit
860 * function in atomic context.
862 return bt_skb_alloc(hdr_len
+ len
, GFP_ATOMIC
);
865 static void chan_suspend_cb(struct l2cap_chan
*chan
)
867 struct lowpan_btle_dev
*dev
;
869 BT_DBG("chan %p suspend", chan
);
871 dev
= lookup_dev(chan
->conn
);
872 if (!dev
|| !dev
->netdev
)
875 netif_stop_queue(dev
->netdev
);
878 static void chan_resume_cb(struct l2cap_chan
*chan
)
880 struct lowpan_btle_dev
*dev
;
882 BT_DBG("chan %p resume", chan
);
884 dev
= lookup_dev(chan
->conn
);
885 if (!dev
|| !dev
->netdev
)
888 netif_wake_queue(dev
->netdev
);
891 static long chan_get_sndtimeo_cb(struct l2cap_chan
*chan
)
893 return L2CAP_CONN_TIMEOUT
;
896 static const struct l2cap_ops bt_6lowpan_chan_ops
= {
897 .name
= "L2CAP 6LoWPAN channel",
898 .new_connection
= chan_new_conn_cb
,
899 .recv
= chan_recv_cb
,
900 .close
= chan_close_cb
,
901 .state_change
= chan_state_change_cb
,
902 .ready
= chan_ready_cb
,
903 .resume
= chan_resume_cb
,
904 .suspend
= chan_suspend_cb
,
905 .get_sndtimeo
= chan_get_sndtimeo_cb
,
906 .alloc_skb
= chan_alloc_skb_cb
,
908 .teardown
= l2cap_chan_no_teardown
,
909 .defer
= l2cap_chan_no_defer
,
910 .set_shutdown
= l2cap_chan_no_set_shutdown
,
913 static inline __u8
bdaddr_type(__u8 type
)
915 if (type
== ADDR_LE_DEV_PUBLIC
)
916 return BDADDR_LE_PUBLIC
;
918 return BDADDR_LE_RANDOM
;
921 static int bt_6lowpan_connect(bdaddr_t
*addr
, u8 dst_type
)
923 struct l2cap_chan
*chan
;
926 chan
= chan_create();
930 chan
->ops
= &bt_6lowpan_chan_ops
;
932 err
= l2cap_chan_connect(chan
, cpu_to_le16(L2CAP_PSM_IPSP
), 0,
935 BT_DBG("chan %p err %d", chan
, err
);
937 l2cap_chan_put(chan
);
942 static int bt_6lowpan_disconnect(struct l2cap_conn
*conn
, u8 dst_type
)
944 struct lowpan_peer
*peer
;
946 BT_DBG("conn %p dst type %d", conn
, dst_type
);
948 peer
= lookup_peer(conn
);
952 BT_DBG("peer %p chan %p", peer
, peer
->chan
);
954 l2cap_chan_close(peer
->chan
, ENOENT
);
959 static struct l2cap_chan
*bt_6lowpan_listen(void)
961 bdaddr_t
*addr
= BDADDR_ANY
;
962 struct l2cap_chan
*chan
;
968 chan
= chan_create();
972 chan
->ops
= &bt_6lowpan_chan_ops
;
973 chan
->state
= BT_LISTEN
;
974 chan
->src_type
= BDADDR_LE_PUBLIC
;
976 atomic_set(&chan
->nesting
, L2CAP_NESTING_PARENT
);
978 BT_DBG("chan %p src type %d", chan
, chan
->src_type
);
980 err
= l2cap_add_psm(chan
, addr
, cpu_to_le16(L2CAP_PSM_IPSP
));
982 l2cap_chan_put(chan
);
983 BT_ERR("psm cannot be added err %d", err
);
990 static int get_l2cap_conn(char *buf
, bdaddr_t
*addr
, u8
*addr_type
,
991 struct l2cap_conn
**conn
)
993 struct hci_conn
*hcon
;
994 struct hci_dev
*hdev
;
997 n
= sscanf(buf
, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
998 &addr
->b
[5], &addr
->b
[4], &addr
->b
[3],
999 &addr
->b
[2], &addr
->b
[1], &addr
->b
[0],
1005 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1006 hdev
= hci_get_route(addr
, BDADDR_ANY
, BDADDR_LE_PUBLIC
);
1011 hcon
= hci_conn_hash_lookup_le(hdev
, addr
, *addr_type
);
1012 hci_dev_unlock(hdev
);
1017 *conn
= (struct l2cap_conn
*)hcon
->l2cap_data
;
1019 BT_DBG("conn %p dst %pMR type %d", *conn
, &hcon
->dst
, hcon
->dst_type
);
1024 static void disconnect_all_peers(void)
1026 struct lowpan_btle_dev
*entry
;
1027 struct lowpan_peer
*peer
, *tmp_peer
, *new_peer
;
1028 struct list_head peers
;
1030 INIT_LIST_HEAD(&peers
);
1032 /* We make a separate list of peers as the close_cb() will
1033 * modify the device peers list so it is better not to mess
1034 * with the same list at the same time.
1039 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1040 list_for_each_entry_rcu(peer
, &entry
->peers
, list
) {
1041 new_peer
= kmalloc(sizeof(*new_peer
), GFP_ATOMIC
);
1045 new_peer
->chan
= peer
->chan
;
1046 INIT_LIST_HEAD(&new_peer
->list
);
1048 list_add(&new_peer
->list
, &peers
);
1054 spin_lock(&devices_lock
);
1055 list_for_each_entry_safe(peer
, tmp_peer
, &peers
, list
) {
1056 l2cap_chan_close(peer
->chan
, ENOENT
);
1058 list_del_rcu(&peer
->list
);
1059 kfree_rcu(peer
, rcu
);
1061 spin_unlock(&devices_lock
);
1065 struct work_struct work
;
1069 static void do_enable_set(struct work_struct
*work
)
1071 struct set_enable
*set_enable
= container_of(work
,
1072 struct set_enable
, work
);
1074 if (!set_enable
->flag
|| enable_6lowpan
!= set_enable
->flag
)
1075 /* Disconnect existing connections if 6lowpan is
1078 disconnect_all_peers();
1080 enable_6lowpan
= set_enable
->flag
;
1082 mutex_lock(&set_lock
);
1084 l2cap_chan_close(listen_chan
, 0);
1085 l2cap_chan_put(listen_chan
);
1088 listen_chan
= bt_6lowpan_listen();
1089 mutex_unlock(&set_lock
);
1094 static int lowpan_enable_set(void *data
, u64 val
)
1096 struct set_enable
*set_enable
;
1098 set_enable
= kzalloc(sizeof(*set_enable
), GFP_KERNEL
);
1102 set_enable
->flag
= !!val
;
1103 INIT_WORK(&set_enable
->work
, do_enable_set
);
1105 schedule_work(&set_enable
->work
);
1110 static int lowpan_enable_get(void *data
, u64
*val
)
1112 *val
= enable_6lowpan
;
1116 DEFINE_DEBUGFS_ATTRIBUTE(lowpan_enable_fops
, lowpan_enable_get
,
1117 lowpan_enable_set
, "%llu\n");
1119 static ssize_t
lowpan_control_write(struct file
*fp
,
1120 const char __user
*user_buffer
,
1125 size_t buf_size
= min(count
, sizeof(buf
) - 1);
1129 struct l2cap_conn
*conn
= NULL
;
1131 if (copy_from_user(buf
, user_buffer
, buf_size
))
1134 buf
[buf_size
] = '\0';
1136 if (memcmp(buf
, "connect ", 8) == 0) {
1137 ret
= get_l2cap_conn(&buf
[8], &addr
, &addr_type
, &conn
);
1141 mutex_lock(&set_lock
);
1143 l2cap_chan_close(listen_chan
, 0);
1144 l2cap_chan_put(listen_chan
);
1147 mutex_unlock(&set_lock
);
1150 struct lowpan_peer
*peer
;
1152 if (!is_bt_6lowpan(conn
->hcon
))
1155 peer
= lookup_peer(conn
);
1157 BT_DBG("6LoWPAN connection already exists");
1161 BT_DBG("conn %p dst %pMR type %d user %d", conn
,
1162 &conn
->hcon
->dst
, conn
->hcon
->dst_type
,
1166 ret
= bt_6lowpan_connect(&addr
, addr_type
);
1173 if (memcmp(buf
, "disconnect ", 11) == 0) {
1174 ret
= get_l2cap_conn(&buf
[11], &addr
, &addr_type
, &conn
);
1178 ret
= bt_6lowpan_disconnect(conn
, addr_type
);
1188 static int lowpan_control_show(struct seq_file
*f
, void *ptr
)
1190 struct lowpan_btle_dev
*entry
;
1191 struct lowpan_peer
*peer
;
1193 spin_lock(&devices_lock
);
1195 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1196 list_for_each_entry(peer
, &entry
->peers
, list
)
1197 seq_printf(f
, "%pMR (type %u)\n",
1198 &peer
->chan
->dst
, peer
->chan
->dst_type
);
1201 spin_unlock(&devices_lock
);
1206 static int lowpan_control_open(struct inode
*inode
, struct file
*file
)
1208 return single_open(file
, lowpan_control_show
, inode
->i_private
);
1211 static const struct file_operations lowpan_control_fops
= {
1212 .open
= lowpan_control_open
,
1214 .write
= lowpan_control_write
,
1215 .llseek
= seq_lseek
,
1216 .release
= single_release
,
1219 static void disconnect_devices(void)
1221 struct lowpan_btle_dev
*entry
, *tmp
, *new_dev
;
1222 struct list_head devices
;
1224 INIT_LIST_HEAD(&devices
);
1226 /* We make a separate list of devices because the unregister_netdev()
1227 * will call device_event() which will also want to modify the same
1233 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1234 new_dev
= kmalloc(sizeof(*new_dev
), GFP_ATOMIC
);
1238 new_dev
->netdev
= entry
->netdev
;
1239 INIT_LIST_HEAD(&new_dev
->list
);
1241 list_add_rcu(&new_dev
->list
, &devices
);
1246 list_for_each_entry_safe(entry
, tmp
, &devices
, list
) {
1247 ifdown(entry
->netdev
);
1248 BT_DBG("Unregistering netdev %s %p",
1249 entry
->netdev
->name
, entry
->netdev
);
1250 lowpan_unregister_netdev(entry
->netdev
);
1255 static int device_event(struct notifier_block
*unused
,
1256 unsigned long event
, void *ptr
)
1258 struct net_device
*netdev
= netdev_notifier_info_to_dev(ptr
);
1259 struct lowpan_btle_dev
*entry
;
1261 if (netdev
->type
!= ARPHRD_6LOWPAN
)
1265 case NETDEV_UNREGISTER
:
1266 spin_lock(&devices_lock
);
1267 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1268 if (entry
->netdev
== netdev
) {
1269 BT_DBG("Unregistered netdev %s %p",
1270 netdev
->name
, netdev
);
1271 list_del(&entry
->list
);
1275 spin_unlock(&devices_lock
);
1282 static struct notifier_block bt_6lowpan_dev_notifier
= {
1283 .notifier_call
= device_event
,
1286 static int __init
bt_6lowpan_init(void)
1288 lowpan_enable_debugfs
= debugfs_create_file_unsafe("6lowpan_enable",
1291 &lowpan_enable_fops
);
1292 lowpan_control_debugfs
= debugfs_create_file("6lowpan_control", 0644,
1294 &lowpan_control_fops
);
1296 return register_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1299 static void __exit
bt_6lowpan_exit(void)
1301 debugfs_remove(lowpan_enable_debugfs
);
1302 debugfs_remove(lowpan_control_debugfs
);
1305 l2cap_chan_close(listen_chan
, 0);
1306 l2cap_chan_put(listen_chan
);
1309 disconnect_devices();
1311 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1314 module_init(bt_6lowpan_init
);
1315 module_exit(bt_6lowpan_exit
);
1317 MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1318 MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1319 MODULE_VERSION(VERSION
);
1320 MODULE_LICENSE("GPL");