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>
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 */
32 static struct dentry
*lowpan_enable_debugfs
;
33 static struct dentry
*lowpan_control_debugfs
;
35 #define IFACE_NAME_TEMPLATE "bt%d"
40 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 eui64_addr
[EUI64_ADDR_LEN
];
68 struct in6_addr peer_addr
;
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_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
);
99 module_put(THIS_MODULE
);
101 if (atomic_dec_and_test(&dev
->peer_count
)) {
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
),
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
))
126 if (type
== peer
->chan
->dst_type
) {
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
)
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
)
163 static inline struct lowpan_peer
*peer_lookup_dst(struct lowpan_dev
*dev
,
164 struct in6_addr
*daddr
,
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
180 peer
= list_first_or_null_rcu(&dev
->peers
, struct lowpan_peer
,
187 nexthop
= &lowpan_cb(skb
)->gw
;
189 if (ipv6_addr_any(nexthop
))
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
);
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
,
210 if (!ipv6_addr_cmp(&peer
->peer_addr
, nexthop
)) {
221 static struct lowpan_peer
*lookup_peer(struct l2cap_conn
*conn
)
223 struct lowpan_dev
*entry
;
224 struct lowpan_peer
*peer
= NULL
;
228 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
229 peer
= __peer_lookup_conn(entry
, conn
);
239 static struct lowpan_dev
*lookup_dev(struct l2cap_conn
*conn
)
241 struct lowpan_dev
*entry
;
242 struct lowpan_dev
*dev
= NULL
;
246 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
247 if (conn
->hcon
->hdev
== entry
->hdev
) {
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
);
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
);
279 peer
= __peer_lookup_chan(dev
, chan
);
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
;
296 if (!netif_running(dev
))
299 if (dev
->type
!= ARPHRD_6LOWPAN
|| !skb
->len
)
302 skb_reset_network_header(skb
);
304 skb
= skb_share_check(skb
, GFP_ATOMIC
);
308 /* check that it's our buffer */
309 if (lowpan_is_ipv6(*skb_network_header(skb
))) {
310 /* Copy the packet so that the IPv6 header is
313 local_skb
= skb_copy_expand(skb
, NET_SKB_PAD
- 1,
314 skb_tailroom(skb
), GFP_ATOMIC
);
318 local_skb
->protocol
= htons(ETH_P_IPV6
);
319 local_skb
->pkt_type
= PACKET_HOST
;
321 skb_set_transport_header(local_skb
, sizeof(struct ipv6hdr
));
323 if (give_skb_to_upper(local_skb
, dev
) != NET_RX_SUCCESS
) {
324 kfree_skb(local_skb
);
328 dev
->stats
.rx_bytes
+= skb
->len
;
329 dev
->stats
.rx_packets
++;
331 consume_skb(local_skb
);
333 } else if (lowpan_is_iphc(*skb_network_header(skb
))) {
334 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
338 ret
= iphc_decompress(local_skb
, dev
, chan
);
340 kfree_skb(local_skb
);
344 local_skb
->protocol
= htons(ETH_P_IPV6
);
345 local_skb
->pkt_type
= PACKET_HOST
;
346 local_skb
->dev
= dev
;
348 if (give_skb_to_upper(local_skb
, dev
)
350 kfree_skb(local_skb
);
354 dev
->stats
.rx_bytes
+= skb
->len
;
355 dev
->stats
.rx_packets
++;
357 consume_skb(local_skb
);
363 return NET_RX_SUCCESS
;
366 dev
->stats
.rx_dropped
++;
370 /* Packet from BT LE device */
371 static int chan_recv_cb(struct l2cap_chan
*chan
, struct sk_buff
*skb
)
373 struct lowpan_dev
*dev
;
374 struct lowpan_peer
*peer
;
377 peer
= lookup_peer(chan
->conn
);
381 dev
= lookup_dev(chan
->conn
);
382 if (!dev
|| !dev
->netdev
)
385 err
= recv_pkt(skb
, dev
->netdev
, chan
);
387 BT_DBG("recv pkt %d", err
);
394 static u8
get_addr_type_from_eui64(u8 byte
)
396 /* Is universal(0) or local(1) bit */
397 return ((byte
& 0x02) ? BDADDR_LE_RANDOM
: BDADDR_LE_PUBLIC
);
400 static void copy_to_bdaddr(struct in6_addr
*ip6_daddr
, bdaddr_t
*addr
)
402 u8
*eui64
= ip6_daddr
->s6_addr
+ 8;
404 addr
->b
[0] = eui64
[7];
405 addr
->b
[1] = eui64
[6];
406 addr
->b
[2] = eui64
[5];
407 addr
->b
[3] = eui64
[2];
408 addr
->b
[4] = eui64
[1];
409 addr
->b
[5] = eui64
[0];
412 static void convert_dest_bdaddr(struct in6_addr
*ip6_daddr
,
413 bdaddr_t
*addr
, u8
*addr_type
)
415 copy_to_bdaddr(ip6_daddr
, addr
);
417 /* We need to toggle the U/L bit that we got from IPv6 address
418 * so that we get the proper address and type of the BD address.
422 *addr_type
= get_addr_type_from_eui64(addr
->b
[5]);
425 static int setup_header(struct sk_buff
*skb
, struct net_device
*netdev
,
426 bdaddr_t
*peer_addr
, u8
*peer_addr_type
)
428 struct in6_addr ipv6_daddr
;
429 struct lowpan_dev
*dev
;
430 struct lowpan_peer
*peer
;
431 bdaddr_t addr
, *any
= BDADDR_ANY
;
435 dev
= lowpan_dev(netdev
);
437 memcpy(&ipv6_daddr
, &lowpan_cb(skb
)->addr
, sizeof(ipv6_daddr
));
439 if (ipv6_addr_is_multicast(&ipv6_daddr
)) {
440 lowpan_cb(skb
)->chan
= NULL
;
444 /* Get destination BT device from skb.
445 * If there is no such peer then discard the packet.
447 convert_dest_bdaddr(&ipv6_daddr
, &addr
, &addr_type
);
449 BT_DBG("dest addr %pMR type %d IP %pI6c", &addr
,
450 addr_type
, &ipv6_daddr
);
452 peer
= peer_lookup_ba(dev
, &addr
, addr_type
);
454 /* The packet might be sent to 6lowpan interface
455 * because of routing (either via default route
456 * or user set route) so get peer according to
457 * the destination address.
459 peer
= peer_lookup_dst(dev
, &ipv6_daddr
, skb
);
461 BT_DBG("no such peer %pMR found", &addr
);
466 daddr
= peer
->eui64_addr
;
468 *peer_addr_type
= addr_type
;
469 lowpan_cb(skb
)->chan
= peer
->chan
;
474 lowpan_header_compress(skb
, netdev
, daddr
, dev
->netdev
->dev_addr
);
476 err
= dev_hard_header(skb
, netdev
, ETH_P_IPV6
, NULL
, NULL
, 0);
483 static int header_create(struct sk_buff
*skb
, struct net_device
*netdev
,
484 unsigned short type
, const void *_daddr
,
485 const void *_saddr
, unsigned int len
)
489 if (type
!= ETH_P_IPV6
)
494 memcpy(&lowpan_cb(skb
)->addr
, &hdr
->daddr
, sizeof(struct in6_addr
));
499 /* Packet to BT LE device */
500 static int send_pkt(struct l2cap_chan
*chan
, struct sk_buff
*skb
,
501 struct net_device
*netdev
)
507 /* Remember the skb so that we can send EAGAIN to the caller if
508 * we run out of credits.
512 iv
.iov_base
= skb
->data
;
513 iv
.iov_len
= skb
->len
;
515 memset(&msg
, 0, sizeof(msg
));
516 iov_iter_kvec(&msg
.msg_iter
, WRITE
| ITER_KVEC
, &iv
, 1, skb
->len
);
518 err
= l2cap_chan_send(chan
, &msg
, skb
->len
);
520 netdev
->stats
.tx_bytes
+= err
;
521 netdev
->stats
.tx_packets
++;
526 err
= lowpan_cb(skb
)->status
;
530 netdev
->stats
.tx_dropped
++;
532 netdev
->stats
.tx_errors
++;
538 static int send_mcast_pkt(struct sk_buff
*skb
, struct net_device
*netdev
)
540 struct sk_buff
*local_skb
;
541 struct lowpan_dev
*entry
;
546 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
547 struct lowpan_peer
*pentry
;
548 struct lowpan_dev
*dev
;
550 if (entry
->netdev
!= netdev
)
553 dev
= lowpan_dev(entry
->netdev
);
555 list_for_each_entry_rcu(pentry
, &dev
->peers
, list
) {
558 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
560 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
562 &pentry
->chan
->dst
, pentry
->chan
->dst_type
,
563 &pentry
->peer_addr
, pentry
->chan
);
564 ret
= send_pkt(pentry
->chan
, local_skb
, netdev
);
568 kfree_skb(local_skb
);
577 static netdev_tx_t
bt_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
583 /* We must take a copy of the skb before we modify/replace the ipv6
584 * header as the header could be used elsewhere
586 skb
= skb_unshare(skb
, GFP_ATOMIC
);
588 return NET_XMIT_DROP
;
590 /* Return values from setup_header()
591 * <0 - error, packet is dropped
592 * 0 - this is a multicast packet
593 * 1 - this is unicast packet
595 err
= setup_header(skb
, netdev
, &addr
, &addr_type
);
598 return NET_XMIT_DROP
;
602 if (lowpan_cb(skb
)->chan
) {
603 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
604 netdev
->name
, &addr
, addr_type
,
605 &lowpan_cb(skb
)->addr
, lowpan_cb(skb
)->chan
);
606 err
= send_pkt(lowpan_cb(skb
)->chan
, skb
, netdev
);
611 /* We need to send the packet to every device behind this
614 err
= send_mcast_pkt(skb
, netdev
);
620 BT_DBG("ERROR: xmit failed (%d)", err
);
622 return err
< 0 ? NET_XMIT_DROP
: err
;
625 static struct lock_class_key bt_tx_busylock
;
626 static struct lock_class_key bt_netdev_xmit_lock_key
;
628 static void bt_set_lockdep_class_one(struct net_device
*dev
,
629 struct netdev_queue
*txq
,
632 lockdep_set_class(&txq
->_xmit_lock
, &bt_netdev_xmit_lock_key
);
635 static int bt_dev_init(struct net_device
*dev
)
637 netdev_for_each_tx_queue(dev
, bt_set_lockdep_class_one
, NULL
);
638 dev
->qdisc_tx_busylock
= &bt_tx_busylock
;
643 static const struct net_device_ops netdev_ops
= {
644 .ndo_init
= bt_dev_init
,
645 .ndo_start_xmit
= bt_xmit
,
648 static struct header_ops header_ops
= {
649 .create
= header_create
,
652 static void netdev_setup(struct net_device
*dev
)
654 dev
->hard_header_len
= 0;
655 dev
->needed_tailroom
= 0;
656 dev
->flags
= IFF_RUNNING
| IFF_POINTOPOINT
|
658 dev
->watchdog_timeo
= 0;
660 dev
->netdev_ops
= &netdev_ops
;
661 dev
->header_ops
= &header_ops
;
662 dev
->destructor
= free_netdev
;
665 static struct device_type bt_type
= {
669 static void set_addr(u8
*eui
, u8
*addr
, u8 addr_type
)
671 /* addr is the BT address in little-endian format */
681 /* Universal/local bit set, BT 6lowpan draft ch. 3.2.1 */
682 if (addr_type
== BDADDR_LE_PUBLIC
)
687 BT_DBG("type %d addr %*phC", addr_type
, 8, eui
);
690 static void set_dev_addr(struct net_device
*netdev
, bdaddr_t
*addr
,
693 netdev
->addr_assign_type
= NET_ADDR_PERM
;
694 set_addr(netdev
->dev_addr
, addr
->b
, addr_type
);
697 static void ifup(struct net_device
*netdev
)
702 err
= dev_open(netdev
);
704 BT_INFO("iface %s cannot be opened (%d)", netdev
->name
, err
);
708 static void ifdown(struct net_device
*netdev
)
713 err
= dev_close(netdev
);
715 BT_INFO("iface %s cannot be closed (%d)", netdev
->name
, err
);
719 static void do_notify_peers(struct work_struct
*work
)
721 struct lowpan_dev
*dev
= container_of(work
, struct lowpan_dev
,
724 netdev_notify_peers(dev
->netdev
); /* send neighbour adv at startup */
727 static bool is_bt_6lowpan(struct hci_conn
*hcon
)
729 if (hcon
->type
!= LE_LINK
)
738 static struct l2cap_chan
*chan_create(void)
740 struct l2cap_chan
*chan
;
742 chan
= l2cap_chan_create();
746 l2cap_chan_set_defaults(chan
);
748 chan
->chan_type
= L2CAP_CHAN_CONN_ORIENTED
;
749 chan
->mode
= L2CAP_MODE_LE_FLOWCTL
;
755 static void set_ip_addr_bits(u8 addr_type
, u8
*addr
)
757 if (addr_type
== BDADDR_LE_PUBLIC
)
763 static struct l2cap_chan
*add_peer_chan(struct l2cap_chan
*chan
,
764 struct lowpan_dev
*dev
)
766 struct lowpan_peer
*peer
;
768 peer
= kzalloc(sizeof(*peer
), GFP_ATOMIC
);
773 memset(&peer
->peer_addr
, 0, sizeof(struct in6_addr
));
776 peer
->peer_addr
.s6_addr
[0] = 0xFE;
777 peer
->peer_addr
.s6_addr
[1] = 0x80;
778 set_addr((u8
*)&peer
->peer_addr
.s6_addr
+ 8, chan
->dst
.b
,
781 memcpy(&peer
->eui64_addr
, (u8
*)&peer
->peer_addr
.s6_addr
+ 8,
784 /* IPv6 address needs to have the U/L bit set properly so toggle
787 set_ip_addr_bits(chan
->dst_type
, (u8
*)&peer
->peer_addr
.s6_addr
+ 8);
789 spin_lock(&devices_lock
);
790 INIT_LIST_HEAD(&peer
->list
);
792 spin_unlock(&devices_lock
);
794 /* Notifying peers about us needs to be done without locks held */
795 INIT_DELAYED_WORK(&dev
->notify_peers
, do_notify_peers
);
796 schedule_delayed_work(&dev
->notify_peers
, msecs_to_jiffies(100));
801 static int setup_netdev(struct l2cap_chan
*chan
, struct lowpan_dev
**dev
)
803 struct net_device
*netdev
;
806 netdev
= alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_dev
)),
807 IFACE_NAME_TEMPLATE
, NET_NAME_UNKNOWN
,
812 set_dev_addr(netdev
, &chan
->src
, chan
->src_type
);
814 netdev
->netdev_ops
= &netdev_ops
;
815 SET_NETDEV_DEV(netdev
, &chan
->conn
->hcon
->hdev
->dev
);
816 SET_NETDEV_DEVTYPE(netdev
, &bt_type
);
818 *dev
= lowpan_dev(netdev
);
819 (*dev
)->netdev
= netdev
;
820 (*dev
)->hdev
= chan
->conn
->hcon
->hdev
;
821 INIT_LIST_HEAD(&(*dev
)->peers
);
823 spin_lock(&devices_lock
);
824 INIT_LIST_HEAD(&(*dev
)->list
);
825 list_add_rcu(&(*dev
)->list
, &bt_6lowpan_devices
);
826 spin_unlock(&devices_lock
);
828 lowpan_netdev_setup(netdev
, LOWPAN_LLTYPE_BTLE
);
830 err
= register_netdev(netdev
);
832 BT_INFO("register_netdev failed %d", err
);
833 spin_lock(&devices_lock
);
834 list_del_rcu(&(*dev
)->list
);
835 spin_unlock(&devices_lock
);
840 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
841 netdev
->ifindex
, &chan
->dst
, chan
->dst_type
,
842 &chan
->src
, chan
->src_type
);
843 set_bit(__LINK_STATE_PRESENT
, &netdev
->state
);
851 static inline void chan_ready_cb(struct l2cap_chan
*chan
)
853 struct lowpan_dev
*dev
;
855 dev
= lookup_dev(chan
->conn
);
857 BT_DBG("chan %p conn %p dev %p", chan
, chan
->conn
, dev
);
860 if (setup_netdev(chan
, &dev
) < 0) {
861 l2cap_chan_del(chan
, -ENOENT
);
866 if (!try_module_get(THIS_MODULE
))
869 add_peer_chan(chan
, dev
);
873 static inline struct l2cap_chan
*chan_new_conn_cb(struct l2cap_chan
*pchan
)
875 struct l2cap_chan
*chan
;
877 chan
= chan_create();
881 chan
->ops
= pchan
->ops
;
883 BT_DBG("chan %p pchan %p", chan
, pchan
);
888 static void delete_netdev(struct work_struct
*work
)
890 struct lowpan_dev
*entry
= container_of(work
, struct lowpan_dev
,
893 unregister_netdev(entry
->netdev
);
895 /* The entry pointer is deleted by the netdev destructor. */
898 static void chan_close_cb(struct l2cap_chan
*chan
)
900 struct lowpan_dev
*entry
;
901 struct lowpan_dev
*dev
= NULL
;
902 struct lowpan_peer
*peer
;
904 bool last
= false, remove
= true;
906 BT_DBG("chan %p conn %p", chan
, chan
->conn
);
908 if (chan
->conn
&& chan
->conn
->hcon
) {
909 if (!is_bt_6lowpan(chan
->conn
->hcon
))
912 /* If conn is set, then the netdev is also there and we should
918 spin_lock(&devices_lock
);
920 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
921 dev
= lowpan_dev(entry
->netdev
);
922 peer
= __peer_lookup_chan(dev
, chan
);
924 last
= peer_del(dev
, peer
);
927 BT_DBG("dev %p removing %speer %p", dev
,
928 last
? "last " : "1 ", peer
);
929 BT_DBG("chan %p orig refcnt %d", chan
,
930 atomic_read(&chan
->kref
.refcount
));
932 l2cap_chan_put(chan
);
937 if (!err
&& last
&& dev
&& !atomic_read(&dev
->peer_count
)) {
938 spin_unlock(&devices_lock
);
940 cancel_delayed_work_sync(&dev
->notify_peers
);
945 INIT_WORK(&entry
->delete_netdev
, delete_netdev
);
946 schedule_work(&entry
->delete_netdev
);
949 spin_unlock(&devices_lock
);
955 static void chan_state_change_cb(struct l2cap_chan
*chan
, int state
, int err
)
957 BT_DBG("chan %p conn %p state %s err %d", chan
, chan
->conn
,
958 state_to_string(state
), err
);
961 static struct sk_buff
*chan_alloc_skb_cb(struct l2cap_chan
*chan
,
962 unsigned long hdr_len
,
963 unsigned long len
, int nb
)
965 /* Note that we must allocate using GFP_ATOMIC here as
966 * this function is called originally from netdev hard xmit
967 * function in atomic context.
969 return bt_skb_alloc(hdr_len
+ len
, GFP_ATOMIC
);
972 static void chan_suspend_cb(struct l2cap_chan
*chan
)
974 struct sk_buff
*skb
= chan
->data
;
976 BT_DBG("chan %p conn %p skb %p", chan
, chan
->conn
, skb
);
981 lowpan_cb(skb
)->status
= -EAGAIN
;
984 static void chan_resume_cb(struct l2cap_chan
*chan
)
986 struct sk_buff
*skb
= chan
->data
;
988 BT_DBG("chan %p conn %p skb %p", chan
, chan
->conn
, skb
);
993 lowpan_cb(skb
)->status
= 0;
996 static long chan_get_sndtimeo_cb(struct l2cap_chan
*chan
)
998 return L2CAP_CONN_TIMEOUT
;
1001 static const struct l2cap_ops bt_6lowpan_chan_ops
= {
1002 .name
= "L2CAP 6LoWPAN channel",
1003 .new_connection
= chan_new_conn_cb
,
1004 .recv
= chan_recv_cb
,
1005 .close
= chan_close_cb
,
1006 .state_change
= chan_state_change_cb
,
1007 .ready
= chan_ready_cb
,
1008 .resume
= chan_resume_cb
,
1009 .suspend
= chan_suspend_cb
,
1010 .get_sndtimeo
= chan_get_sndtimeo_cb
,
1011 .alloc_skb
= chan_alloc_skb_cb
,
1013 .teardown
= l2cap_chan_no_teardown
,
1014 .defer
= l2cap_chan_no_defer
,
1015 .set_shutdown
= l2cap_chan_no_set_shutdown
,
1018 static inline __u8
bdaddr_type(__u8 type
)
1020 if (type
== ADDR_LE_DEV_PUBLIC
)
1021 return BDADDR_LE_PUBLIC
;
1023 return BDADDR_LE_RANDOM
;
1026 static int bt_6lowpan_connect(bdaddr_t
*addr
, u8 dst_type
)
1028 struct l2cap_chan
*chan
;
1031 chan
= chan_create();
1035 chan
->ops
= &bt_6lowpan_chan_ops
;
1037 err
= l2cap_chan_connect(chan
, cpu_to_le16(L2CAP_PSM_IPSP
), 0,
1040 BT_DBG("chan %p err %d", chan
, err
);
1042 l2cap_chan_put(chan
);
1047 static int bt_6lowpan_disconnect(struct l2cap_conn
*conn
, u8 dst_type
)
1049 struct lowpan_peer
*peer
;
1051 BT_DBG("conn %p dst type %d", conn
, dst_type
);
1053 peer
= lookup_peer(conn
);
1057 BT_DBG("peer %p chan %p", peer
, peer
->chan
);
1059 l2cap_chan_close(peer
->chan
, ENOENT
);
1064 static struct l2cap_chan
*bt_6lowpan_listen(void)
1066 bdaddr_t
*addr
= BDADDR_ANY
;
1067 struct l2cap_chan
*chan
;
1070 if (!enable_6lowpan
)
1073 chan
= chan_create();
1077 chan
->ops
= &bt_6lowpan_chan_ops
;
1078 chan
->state
= BT_LISTEN
;
1079 chan
->src_type
= BDADDR_LE_PUBLIC
;
1081 atomic_set(&chan
->nesting
, L2CAP_NESTING_PARENT
);
1083 BT_DBG("chan %p src type %d", chan
, chan
->src_type
);
1085 err
= l2cap_add_psm(chan
, addr
, cpu_to_le16(L2CAP_PSM_IPSP
));
1087 l2cap_chan_put(chan
);
1088 BT_ERR("psm cannot be added err %d", err
);
1095 static int get_l2cap_conn(char *buf
, bdaddr_t
*addr
, u8
*addr_type
,
1096 struct l2cap_conn
**conn
)
1098 struct hci_conn
*hcon
;
1099 struct hci_dev
*hdev
;
1100 bdaddr_t
*src
= BDADDR_ANY
;
1103 n
= sscanf(buf
, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
1104 &addr
->b
[5], &addr
->b
[4], &addr
->b
[3],
1105 &addr
->b
[2], &addr
->b
[1], &addr
->b
[0],
1111 hdev
= hci_get_route(addr
, src
);
1116 hcon
= hci_conn_hash_lookup_le(hdev
, addr
, *addr_type
);
1117 hci_dev_unlock(hdev
);
1122 *conn
= (struct l2cap_conn
*)hcon
->l2cap_data
;
1124 BT_DBG("conn %p dst %pMR type %d", *conn
, &hcon
->dst
, hcon
->dst_type
);
1129 static void disconnect_all_peers(void)
1131 struct lowpan_dev
*entry
;
1132 struct lowpan_peer
*peer
, *tmp_peer
, *new_peer
;
1133 struct list_head peers
;
1135 INIT_LIST_HEAD(&peers
);
1137 /* We make a separate list of peers as the close_cb() will
1138 * modify the device peers list so it is better not to mess
1139 * with the same list at the same time.
1144 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1145 list_for_each_entry_rcu(peer
, &entry
->peers
, list
) {
1146 new_peer
= kmalloc(sizeof(*new_peer
), GFP_ATOMIC
);
1150 new_peer
->chan
= peer
->chan
;
1151 INIT_LIST_HEAD(&new_peer
->list
);
1153 list_add(&new_peer
->list
, &peers
);
1159 spin_lock(&devices_lock
);
1160 list_for_each_entry_safe(peer
, tmp_peer
, &peers
, list
) {
1161 l2cap_chan_close(peer
->chan
, ENOENT
);
1163 list_del_rcu(&peer
->list
);
1164 kfree_rcu(peer
, rcu
);
1166 spin_unlock(&devices_lock
);
1170 struct work_struct work
;
1174 static void do_enable_set(struct work_struct
*work
)
1176 struct set_enable
*set_enable
= container_of(work
,
1177 struct set_enable
, work
);
1179 if (!set_enable
->flag
|| enable_6lowpan
!= set_enable
->flag
)
1180 /* Disconnect existing connections if 6lowpan is
1183 disconnect_all_peers();
1185 enable_6lowpan
= set_enable
->flag
;
1188 l2cap_chan_close(listen_chan
, 0);
1189 l2cap_chan_put(listen_chan
);
1192 listen_chan
= bt_6lowpan_listen();
1197 static int lowpan_enable_set(void *data
, u64 val
)
1199 struct set_enable
*set_enable
;
1201 set_enable
= kzalloc(sizeof(*set_enable
), GFP_KERNEL
);
1205 set_enable
->flag
= !!val
;
1206 INIT_WORK(&set_enable
->work
, do_enable_set
);
1208 schedule_work(&set_enable
->work
);
1213 static int lowpan_enable_get(void *data
, u64
*val
)
1215 *val
= enable_6lowpan
;
1219 DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops
, lowpan_enable_get
,
1220 lowpan_enable_set
, "%llu\n");
1222 static ssize_t
lowpan_control_write(struct file
*fp
,
1223 const char __user
*user_buffer
,
1228 size_t buf_size
= min(count
, sizeof(buf
) - 1);
1232 struct l2cap_conn
*conn
= NULL
;
1234 if (copy_from_user(buf
, user_buffer
, buf_size
))
1237 buf
[buf_size
] = '\0';
1239 if (memcmp(buf
, "connect ", 8) == 0) {
1240 ret
= get_l2cap_conn(&buf
[8], &addr
, &addr_type
, &conn
);
1245 l2cap_chan_close(listen_chan
, 0);
1246 l2cap_chan_put(listen_chan
);
1251 struct lowpan_peer
*peer
;
1253 if (!is_bt_6lowpan(conn
->hcon
))
1256 peer
= lookup_peer(conn
);
1258 BT_DBG("6LoWPAN connection already exists");
1262 BT_DBG("conn %p dst %pMR type %d user %d", conn
,
1263 &conn
->hcon
->dst
, conn
->hcon
->dst_type
,
1267 ret
= bt_6lowpan_connect(&addr
, addr_type
);
1274 if (memcmp(buf
, "disconnect ", 11) == 0) {
1275 ret
= get_l2cap_conn(&buf
[11], &addr
, &addr_type
, &conn
);
1279 ret
= bt_6lowpan_disconnect(conn
, addr_type
);
1289 static int lowpan_control_show(struct seq_file
*f
, void *ptr
)
1291 struct lowpan_dev
*entry
;
1292 struct lowpan_peer
*peer
;
1294 spin_lock(&devices_lock
);
1296 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1297 list_for_each_entry(peer
, &entry
->peers
, list
)
1298 seq_printf(f
, "%pMR (type %u)\n",
1299 &peer
->chan
->dst
, peer
->chan
->dst_type
);
1302 spin_unlock(&devices_lock
);
1307 static int lowpan_control_open(struct inode
*inode
, struct file
*file
)
1309 return single_open(file
, lowpan_control_show
, inode
->i_private
);
1312 static const struct file_operations lowpan_control_fops
= {
1313 .open
= lowpan_control_open
,
1315 .write
= lowpan_control_write
,
1316 .llseek
= seq_lseek
,
1317 .release
= single_release
,
1320 static void disconnect_devices(void)
1322 struct lowpan_dev
*entry
, *tmp
, *new_dev
;
1323 struct list_head devices
;
1325 INIT_LIST_HEAD(&devices
);
1327 /* We make a separate list of devices because the unregister_netdev()
1328 * will call device_event() which will also want to modify the same
1334 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1335 new_dev
= kmalloc(sizeof(*new_dev
), GFP_ATOMIC
);
1339 new_dev
->netdev
= entry
->netdev
;
1340 INIT_LIST_HEAD(&new_dev
->list
);
1342 list_add_rcu(&new_dev
->list
, &devices
);
1347 list_for_each_entry_safe(entry
, tmp
, &devices
, list
) {
1348 ifdown(entry
->netdev
);
1349 BT_DBG("Unregistering netdev %s %p",
1350 entry
->netdev
->name
, entry
->netdev
);
1351 unregister_netdev(entry
->netdev
);
1356 static int device_event(struct notifier_block
*unused
,
1357 unsigned long event
, void *ptr
)
1359 struct net_device
*netdev
= netdev_notifier_info_to_dev(ptr
);
1360 struct lowpan_dev
*entry
;
1362 if (netdev
->type
!= ARPHRD_6LOWPAN
)
1366 case NETDEV_UNREGISTER
:
1367 spin_lock(&devices_lock
);
1368 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1369 if (entry
->netdev
== netdev
) {
1370 BT_DBG("Unregistered netdev %s %p",
1371 netdev
->name
, netdev
);
1372 list_del(&entry
->list
);
1376 spin_unlock(&devices_lock
);
1383 static struct notifier_block bt_6lowpan_dev_notifier
= {
1384 .notifier_call
= device_event
,
1387 static int __init
bt_6lowpan_init(void)
1389 lowpan_enable_debugfs
= debugfs_create_file("6lowpan_enable", 0644,
1391 &lowpan_enable_fops
);
1392 lowpan_control_debugfs
= debugfs_create_file("6lowpan_control", 0644,
1394 &lowpan_control_fops
);
1396 return register_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1399 static void __exit
bt_6lowpan_exit(void)
1401 debugfs_remove(lowpan_enable_debugfs
);
1402 debugfs_remove(lowpan_control_debugfs
);
1405 l2cap_chan_close(listen_chan
, 0);
1406 l2cap_chan_put(listen_chan
);
1409 disconnect_devices();
1411 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1414 module_init(bt_6lowpan_init
);
1415 module_exit(bt_6lowpan_exit
);
1417 MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1418 MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1419 MODULE_VERSION(VERSION
);
1420 MODULE_LICENSE("GPL");