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
;
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 nexthop
= &lowpan_cb(skb
)->gw
;
192 if (ipv6_addr_any(nexthop
))
195 nexthop
= rt6_nexthop(rt
, daddr
);
197 /* We need to remember the address because it is needed
198 * by bt_xmit() when sending the packet. In bt_xmit(), the
199 * destination routing info is not set.
201 memcpy(&lowpan_cb(skb
)->gw
, nexthop
, sizeof(struct in6_addr
));
204 BT_DBG("gw %pI6c", nexthop
);
208 list_for_each_entry_rcu(peer
, &dev
->peers
, list
) {
209 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
210 &peer
->chan
->dst
, peer
->chan
->dst_type
,
213 if (!ipv6_addr_cmp(&peer
->peer_addr
, nexthop
)) {
224 static struct lowpan_peer
*lookup_peer(struct l2cap_conn
*conn
)
226 struct lowpan_btle_dev
*entry
;
227 struct lowpan_peer
*peer
= NULL
;
231 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
232 peer
= __peer_lookup_conn(entry
, conn
);
242 static struct lowpan_btle_dev
*lookup_dev(struct l2cap_conn
*conn
)
244 struct lowpan_btle_dev
*entry
;
245 struct lowpan_btle_dev
*dev
= NULL
;
249 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
250 if (conn
->hcon
->hdev
== entry
->hdev
) {
261 static int give_skb_to_upper(struct sk_buff
*skb
, struct net_device
*dev
)
263 struct sk_buff
*skb_cp
;
265 skb_cp
= skb_copy(skb
, GFP_ATOMIC
);
269 return netif_rx_ni(skb_cp
);
272 static int iphc_decompress(struct sk_buff
*skb
, struct net_device
*netdev
,
273 struct l2cap_chan
*chan
)
275 const u8
*saddr
, *daddr
;
276 struct lowpan_btle_dev
*dev
;
277 struct lowpan_peer
*peer
;
279 dev
= lowpan_btle_dev(netdev
);
282 peer
= __peer_lookup_chan(dev
, chan
);
287 saddr
= peer
->eui64_addr
;
288 daddr
= dev
->netdev
->dev_addr
;
290 return lowpan_header_decompress(skb
, netdev
, daddr
, saddr
);
293 static int recv_pkt(struct sk_buff
*skb
, struct net_device
*dev
,
294 struct l2cap_chan
*chan
)
296 struct sk_buff
*local_skb
;
299 if (!netif_running(dev
))
302 if (dev
->type
!= ARPHRD_6LOWPAN
|| !skb
->len
)
305 skb_reset_network_header(skb
);
307 skb
= skb_share_check(skb
, GFP_ATOMIC
);
311 /* check that it's our buffer */
312 if (lowpan_is_ipv6(*skb_network_header(skb
))) {
313 /* Pull off the 1-byte of 6lowpan header. */
316 /* Copy the packet so that the IPv6 header is
319 local_skb
= skb_copy_expand(skb
, NET_SKB_PAD
- 1,
320 skb_tailroom(skb
), GFP_ATOMIC
);
324 local_skb
->protocol
= htons(ETH_P_IPV6
);
325 local_skb
->pkt_type
= PACKET_HOST
;
326 local_skb
->dev
= dev
;
328 skb_set_transport_header(local_skb
, sizeof(struct ipv6hdr
));
330 if (give_skb_to_upper(local_skb
, dev
) != NET_RX_SUCCESS
) {
331 kfree_skb(local_skb
);
335 dev
->stats
.rx_bytes
+= skb
->len
;
336 dev
->stats
.rx_packets
++;
338 consume_skb(local_skb
);
340 } else if (lowpan_is_iphc(*skb_network_header(skb
))) {
341 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
345 local_skb
->dev
= dev
;
347 ret
= iphc_decompress(local_skb
, dev
, chan
);
349 kfree_skb(local_skb
);
353 local_skb
->protocol
= htons(ETH_P_IPV6
);
354 local_skb
->pkt_type
= PACKET_HOST
;
356 if (give_skb_to_upper(local_skb
, dev
)
358 kfree_skb(local_skb
);
362 dev
->stats
.rx_bytes
+= skb
->len
;
363 dev
->stats
.rx_packets
++;
365 consume_skb(local_skb
);
371 return NET_RX_SUCCESS
;
374 dev
->stats
.rx_dropped
++;
378 /* Packet from BT LE device */
379 static int chan_recv_cb(struct l2cap_chan
*chan
, struct sk_buff
*skb
)
381 struct lowpan_btle_dev
*dev
;
382 struct lowpan_peer
*peer
;
385 peer
= lookup_peer(chan
->conn
);
389 dev
= lookup_dev(chan
->conn
);
390 if (!dev
|| !dev
->netdev
)
393 err
= recv_pkt(skb
, dev
->netdev
, chan
);
395 BT_DBG("recv pkt %d", err
);
402 static u8
get_addr_type_from_eui64(u8 byte
)
404 /* Is universal(0) or local(1) bit */
405 return ((byte
& 0x02) ? BDADDR_LE_RANDOM
: BDADDR_LE_PUBLIC
);
408 static void copy_to_bdaddr(struct in6_addr
*ip6_daddr
, bdaddr_t
*addr
)
410 u8
*eui64
= ip6_daddr
->s6_addr
+ 8;
412 addr
->b
[0] = eui64
[7];
413 addr
->b
[1] = eui64
[6];
414 addr
->b
[2] = eui64
[5];
415 addr
->b
[3] = eui64
[2];
416 addr
->b
[4] = eui64
[1];
417 addr
->b
[5] = eui64
[0];
420 static void convert_dest_bdaddr(struct in6_addr
*ip6_daddr
,
421 bdaddr_t
*addr
, u8
*addr_type
)
423 copy_to_bdaddr(ip6_daddr
, addr
);
425 /* We need to toggle the U/L bit that we got from IPv6 address
426 * so that we get the proper address and type of the BD address.
430 *addr_type
= get_addr_type_from_eui64(addr
->b
[5]);
433 static int setup_header(struct sk_buff
*skb
, struct net_device
*netdev
,
434 bdaddr_t
*peer_addr
, u8
*peer_addr_type
)
436 struct in6_addr ipv6_daddr
;
438 struct lowpan_btle_dev
*dev
;
439 struct lowpan_peer
*peer
;
440 bdaddr_t addr
, *any
= BDADDR_ANY
;
446 dev
= lowpan_btle_dev(netdev
);
448 memcpy(&ipv6_daddr
, &hdr
->daddr
, sizeof(ipv6_daddr
));
450 if (ipv6_addr_is_multicast(&ipv6_daddr
)) {
451 lowpan_cb(skb
)->chan
= NULL
;
455 /* Get destination BT device from skb.
456 * If there is no such peer then discard the packet.
458 convert_dest_bdaddr(&ipv6_daddr
, &addr
, &addr_type
);
460 BT_DBG("dest addr %pMR type %d IP %pI6c", &addr
,
461 addr_type
, &ipv6_daddr
);
463 peer
= peer_lookup_ba(dev
, &addr
, addr_type
);
465 /* The packet might be sent to 6lowpan interface
466 * because of routing (either via default route
467 * or user set route) so get peer according to
468 * the destination address.
470 peer
= peer_lookup_dst(dev
, &ipv6_daddr
, skb
);
472 BT_DBG("no such peer %pMR found", &addr
);
477 daddr
= peer
->eui64_addr
;
479 *peer_addr_type
= addr_type
;
480 lowpan_cb(skb
)->chan
= peer
->chan
;
485 lowpan_header_compress(skb
, netdev
, daddr
, dev
->netdev
->dev_addr
);
487 err
= dev_hard_header(skb
, netdev
, ETH_P_IPV6
, NULL
, NULL
, 0);
494 static int header_create(struct sk_buff
*skb
, struct net_device
*netdev
,
495 unsigned short type
, const void *_daddr
,
496 const void *_saddr
, unsigned int len
)
498 if (type
!= ETH_P_IPV6
)
504 /* Packet to BT LE device */
505 static int send_pkt(struct l2cap_chan
*chan
, struct sk_buff
*skb
,
506 struct net_device
*netdev
)
512 /* Remember the skb so that we can send EAGAIN to the caller if
513 * we run out of credits.
517 iv
.iov_base
= skb
->data
;
518 iv
.iov_len
= skb
->len
;
520 memset(&msg
, 0, sizeof(msg
));
521 iov_iter_kvec(&msg
.msg_iter
, WRITE
| ITER_KVEC
, &iv
, 1, skb
->len
);
523 err
= l2cap_chan_send(chan
, &msg
, skb
->len
);
525 netdev
->stats
.tx_bytes
+= err
;
526 netdev
->stats
.tx_packets
++;
531 err
= lowpan_cb(skb
)->status
;
535 netdev
->stats
.tx_dropped
++;
537 netdev
->stats
.tx_errors
++;
543 static int send_mcast_pkt(struct sk_buff
*skb
, struct net_device
*netdev
)
545 struct sk_buff
*local_skb
;
546 struct lowpan_btle_dev
*entry
;
551 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
552 struct lowpan_peer
*pentry
;
553 struct lowpan_btle_dev
*dev
;
555 if (entry
->netdev
!= netdev
)
558 dev
= lowpan_btle_dev(entry
->netdev
);
560 list_for_each_entry_rcu(pentry
, &dev
->peers
, list
) {
563 local_skb
= skb_clone(skb
, GFP_ATOMIC
);
565 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
567 &pentry
->chan
->dst
, pentry
->chan
->dst_type
,
568 &pentry
->peer_addr
, pentry
->chan
);
569 ret
= send_pkt(pentry
->chan
, local_skb
, netdev
);
573 kfree_skb(local_skb
);
582 static netdev_tx_t
bt_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
588 /* We must take a copy of the skb before we modify/replace the ipv6
589 * header as the header could be used elsewhere
591 skb
= skb_unshare(skb
, GFP_ATOMIC
);
593 return NET_XMIT_DROP
;
595 /* Return values from setup_header()
596 * <0 - error, packet is dropped
597 * 0 - this is a multicast packet
598 * 1 - this is unicast packet
600 err
= setup_header(skb
, netdev
, &addr
, &addr_type
);
603 return NET_XMIT_DROP
;
607 if (lowpan_cb(skb
)->chan
) {
608 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
609 netdev
->name
, &addr
, addr_type
,
610 &lowpan_cb(skb
)->addr
, lowpan_cb(skb
)->chan
);
611 err
= send_pkt(lowpan_cb(skb
)->chan
, skb
, netdev
);
616 /* We need to send the packet to every device behind this
619 err
= send_mcast_pkt(skb
, netdev
);
625 BT_DBG("ERROR: xmit failed (%d)", err
);
627 return err
< 0 ? NET_XMIT_DROP
: err
;
630 static int bt_dev_init(struct net_device
*dev
)
632 netdev_lockdep_set_classes(dev
);
637 static const struct net_device_ops netdev_ops
= {
638 .ndo_init
= bt_dev_init
,
639 .ndo_start_xmit
= bt_xmit
,
642 static struct header_ops header_ops
= {
643 .create
= header_create
,
646 static void netdev_setup(struct net_device
*dev
)
648 dev
->hard_header_len
= 0;
649 dev
->needed_tailroom
= 0;
650 dev
->flags
= IFF_RUNNING
| IFF_POINTOPOINT
|
652 dev
->watchdog_timeo
= 0;
654 dev
->netdev_ops
= &netdev_ops
;
655 dev
->header_ops
= &header_ops
;
656 dev
->destructor
= free_netdev
;
659 static struct device_type bt_type
= {
663 static void set_addr(u8
*eui
, u8
*addr
, u8 addr_type
)
665 /* addr is the BT address in little-endian format */
675 /* Universal/local bit set, BT 6lowpan draft ch. 3.2.1 */
676 if (addr_type
== BDADDR_LE_PUBLIC
)
681 BT_DBG("type %d addr %*phC", addr_type
, 8, eui
);
684 static void set_dev_addr(struct net_device
*netdev
, bdaddr_t
*addr
,
687 netdev
->addr_assign_type
= NET_ADDR_PERM
;
688 set_addr(netdev
->dev_addr
, addr
->b
, addr_type
);
691 static void ifup(struct net_device
*netdev
)
696 err
= dev_open(netdev
);
698 BT_INFO("iface %s cannot be opened (%d)", netdev
->name
, err
);
702 static void ifdown(struct net_device
*netdev
)
707 err
= dev_close(netdev
);
709 BT_INFO("iface %s cannot be closed (%d)", netdev
->name
, err
);
713 static void do_notify_peers(struct work_struct
*work
)
715 struct lowpan_btle_dev
*dev
= container_of(work
, struct lowpan_btle_dev
,
718 netdev_notify_peers(dev
->netdev
); /* send neighbour adv at startup */
721 static bool is_bt_6lowpan(struct hci_conn
*hcon
)
723 if (hcon
->type
!= LE_LINK
)
732 static struct l2cap_chan
*chan_create(void)
734 struct l2cap_chan
*chan
;
736 chan
= l2cap_chan_create();
740 l2cap_chan_set_defaults(chan
);
742 chan
->chan_type
= L2CAP_CHAN_CONN_ORIENTED
;
743 chan
->mode
= L2CAP_MODE_LE_FLOWCTL
;
749 static void set_ip_addr_bits(u8 addr_type
, u8
*addr
)
751 if (addr_type
== BDADDR_LE_PUBLIC
)
757 static struct l2cap_chan
*add_peer_chan(struct l2cap_chan
*chan
,
758 struct lowpan_btle_dev
*dev
,
761 struct lowpan_peer
*peer
;
763 peer
= kzalloc(sizeof(*peer
), GFP_ATOMIC
);
768 memset(&peer
->peer_addr
, 0, sizeof(struct in6_addr
));
771 peer
->peer_addr
.s6_addr
[0] = 0xFE;
772 peer
->peer_addr
.s6_addr
[1] = 0x80;
773 set_addr((u8
*)&peer
->peer_addr
.s6_addr
+ 8, chan
->dst
.b
,
776 memcpy(&peer
->eui64_addr
, (u8
*)&peer
->peer_addr
.s6_addr
+ 8,
779 /* IPv6 address needs to have the U/L bit set properly so toggle
782 set_ip_addr_bits(chan
->dst_type
, (u8
*)&peer
->peer_addr
.s6_addr
+ 8);
784 spin_lock(&devices_lock
);
785 INIT_LIST_HEAD(&peer
->list
);
787 spin_unlock(&devices_lock
);
789 /* Notifying peers about us needs to be done without locks held */
791 INIT_DELAYED_WORK(&dev
->notify_peers
, do_notify_peers
);
792 schedule_delayed_work(&dev
->notify_peers
, msecs_to_jiffies(100));
797 static int setup_netdev(struct l2cap_chan
*chan
, struct lowpan_btle_dev
**dev
)
799 struct net_device
*netdev
;
802 netdev
= alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev
)),
803 IFACE_NAME_TEMPLATE
, NET_NAME_UNKNOWN
,
808 set_dev_addr(netdev
, &chan
->src
, chan
->src_type
);
810 netdev
->netdev_ops
= &netdev_ops
;
811 SET_NETDEV_DEV(netdev
, &chan
->conn
->hcon
->hdev
->dev
);
812 SET_NETDEV_DEVTYPE(netdev
, &bt_type
);
814 *dev
= lowpan_btle_dev(netdev
);
815 (*dev
)->netdev
= netdev
;
816 (*dev
)->hdev
= chan
->conn
->hcon
->hdev
;
817 INIT_LIST_HEAD(&(*dev
)->peers
);
819 spin_lock(&devices_lock
);
820 INIT_LIST_HEAD(&(*dev
)->list
);
821 list_add_rcu(&(*dev
)->list
, &bt_6lowpan_devices
);
822 spin_unlock(&devices_lock
);
824 err
= lowpan_register_netdev(netdev
, LOWPAN_LLTYPE_BTLE
);
826 BT_INFO("register_netdev failed %d", err
);
827 spin_lock(&devices_lock
);
828 list_del_rcu(&(*dev
)->list
);
829 spin_unlock(&devices_lock
);
834 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
835 netdev
->ifindex
, &chan
->dst
, chan
->dst_type
,
836 &chan
->src
, chan
->src_type
);
837 set_bit(__LINK_STATE_PRESENT
, &netdev
->state
);
845 static inline void chan_ready_cb(struct l2cap_chan
*chan
)
847 struct lowpan_btle_dev
*dev
;
848 bool new_netdev
= false;
850 dev
= lookup_dev(chan
->conn
);
852 BT_DBG("chan %p conn %p dev %p", chan
, chan
->conn
, dev
);
855 if (setup_netdev(chan
, &dev
) < 0) {
856 l2cap_chan_del(chan
, -ENOENT
);
862 if (!try_module_get(THIS_MODULE
))
865 add_peer_chan(chan
, dev
, new_netdev
);
869 static inline struct l2cap_chan
*chan_new_conn_cb(struct l2cap_chan
*pchan
)
871 struct l2cap_chan
*chan
;
873 chan
= chan_create();
877 chan
->ops
= pchan
->ops
;
879 BT_DBG("chan %p pchan %p", chan
, pchan
);
884 static void delete_netdev(struct work_struct
*work
)
886 struct lowpan_btle_dev
*entry
= container_of(work
,
887 struct lowpan_btle_dev
,
890 lowpan_unregister_netdev(entry
->netdev
);
892 /* The entry pointer is deleted by the netdev destructor. */
895 static void chan_close_cb(struct l2cap_chan
*chan
)
897 struct lowpan_btle_dev
*entry
;
898 struct lowpan_btle_dev
*dev
= NULL
;
899 struct lowpan_peer
*peer
;
901 bool last
= false, remove
= true;
903 BT_DBG("chan %p conn %p", chan
, chan
->conn
);
905 if (chan
->conn
&& chan
->conn
->hcon
) {
906 if (!is_bt_6lowpan(chan
->conn
->hcon
))
909 /* If conn is set, then the netdev is also there and we should
915 spin_lock(&devices_lock
);
917 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
918 dev
= lowpan_btle_dev(entry
->netdev
);
919 peer
= __peer_lookup_chan(dev
, chan
);
921 last
= peer_del(dev
, peer
);
924 BT_DBG("dev %p removing %speer %p", dev
,
925 last
? "last " : "1 ", peer
);
926 BT_DBG("chan %p orig refcnt %d", chan
,
927 atomic_read(&chan
->kref
.refcount
));
929 l2cap_chan_put(chan
);
934 if (!err
&& last
&& dev
&& !atomic_read(&dev
->peer_count
)) {
935 spin_unlock(&devices_lock
);
937 cancel_delayed_work_sync(&dev
->notify_peers
);
942 INIT_WORK(&entry
->delete_netdev
, delete_netdev
);
943 schedule_work(&entry
->delete_netdev
);
946 spin_unlock(&devices_lock
);
952 static void chan_state_change_cb(struct l2cap_chan
*chan
, int state
, int err
)
954 BT_DBG("chan %p conn %p state %s err %d", chan
, chan
->conn
,
955 state_to_string(state
), err
);
958 static struct sk_buff
*chan_alloc_skb_cb(struct l2cap_chan
*chan
,
959 unsigned long hdr_len
,
960 unsigned long len
, int nb
)
962 /* Note that we must allocate using GFP_ATOMIC here as
963 * this function is called originally from netdev hard xmit
964 * function in atomic context.
966 return bt_skb_alloc(hdr_len
+ len
, GFP_ATOMIC
);
969 static void chan_suspend_cb(struct l2cap_chan
*chan
)
971 struct sk_buff
*skb
= chan
->data
;
973 BT_DBG("chan %p conn %p skb %p", chan
, chan
->conn
, skb
);
978 lowpan_cb(skb
)->status
= -EAGAIN
;
981 static void chan_resume_cb(struct l2cap_chan
*chan
)
983 struct sk_buff
*skb
= chan
->data
;
985 BT_DBG("chan %p conn %p skb %p", chan
, chan
->conn
, skb
);
990 lowpan_cb(skb
)->status
= 0;
993 static long chan_get_sndtimeo_cb(struct l2cap_chan
*chan
)
995 return L2CAP_CONN_TIMEOUT
;
998 static const struct l2cap_ops bt_6lowpan_chan_ops
= {
999 .name
= "L2CAP 6LoWPAN channel",
1000 .new_connection
= chan_new_conn_cb
,
1001 .recv
= chan_recv_cb
,
1002 .close
= chan_close_cb
,
1003 .state_change
= chan_state_change_cb
,
1004 .ready
= chan_ready_cb
,
1005 .resume
= chan_resume_cb
,
1006 .suspend
= chan_suspend_cb
,
1007 .get_sndtimeo
= chan_get_sndtimeo_cb
,
1008 .alloc_skb
= chan_alloc_skb_cb
,
1010 .teardown
= l2cap_chan_no_teardown
,
1011 .defer
= l2cap_chan_no_defer
,
1012 .set_shutdown
= l2cap_chan_no_set_shutdown
,
1015 static inline __u8
bdaddr_type(__u8 type
)
1017 if (type
== ADDR_LE_DEV_PUBLIC
)
1018 return BDADDR_LE_PUBLIC
;
1020 return BDADDR_LE_RANDOM
;
1023 static int bt_6lowpan_connect(bdaddr_t
*addr
, u8 dst_type
)
1025 struct l2cap_chan
*chan
;
1028 chan
= chan_create();
1032 chan
->ops
= &bt_6lowpan_chan_ops
;
1034 err
= l2cap_chan_connect(chan
, cpu_to_le16(L2CAP_PSM_IPSP
), 0,
1037 BT_DBG("chan %p err %d", chan
, err
);
1039 l2cap_chan_put(chan
);
1044 static int bt_6lowpan_disconnect(struct l2cap_conn
*conn
, u8 dst_type
)
1046 struct lowpan_peer
*peer
;
1048 BT_DBG("conn %p dst type %d", conn
, dst_type
);
1050 peer
= lookup_peer(conn
);
1054 BT_DBG("peer %p chan %p", peer
, peer
->chan
);
1056 l2cap_chan_close(peer
->chan
, ENOENT
);
1061 static struct l2cap_chan
*bt_6lowpan_listen(void)
1063 bdaddr_t
*addr
= BDADDR_ANY
;
1064 struct l2cap_chan
*chan
;
1067 if (!enable_6lowpan
)
1070 chan
= chan_create();
1074 chan
->ops
= &bt_6lowpan_chan_ops
;
1075 chan
->state
= BT_LISTEN
;
1076 chan
->src_type
= BDADDR_LE_PUBLIC
;
1078 atomic_set(&chan
->nesting
, L2CAP_NESTING_PARENT
);
1080 BT_DBG("chan %p src type %d", chan
, chan
->src_type
);
1082 err
= l2cap_add_psm(chan
, addr
, cpu_to_le16(L2CAP_PSM_IPSP
));
1084 l2cap_chan_put(chan
);
1085 BT_ERR("psm cannot be added err %d", err
);
1092 static int get_l2cap_conn(char *buf
, bdaddr_t
*addr
, u8
*addr_type
,
1093 struct l2cap_conn
**conn
)
1095 struct hci_conn
*hcon
;
1096 struct hci_dev
*hdev
;
1099 n
= sscanf(buf
, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
1100 &addr
->b
[5], &addr
->b
[4], &addr
->b
[3],
1101 &addr
->b
[2], &addr
->b
[1], &addr
->b
[0],
1107 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1108 hdev
= hci_get_route(addr
, BDADDR_ANY
, BDADDR_LE_PUBLIC
);
1113 hcon
= hci_conn_hash_lookup_le(hdev
, addr
, *addr_type
);
1114 hci_dev_unlock(hdev
);
1119 *conn
= (struct l2cap_conn
*)hcon
->l2cap_data
;
1121 BT_DBG("conn %p dst %pMR type %d", *conn
, &hcon
->dst
, hcon
->dst_type
);
1126 static void disconnect_all_peers(void)
1128 struct lowpan_btle_dev
*entry
;
1129 struct lowpan_peer
*peer
, *tmp_peer
, *new_peer
;
1130 struct list_head peers
;
1132 INIT_LIST_HEAD(&peers
);
1134 /* We make a separate list of peers as the close_cb() will
1135 * modify the device peers list so it is better not to mess
1136 * with the same list at the same time.
1141 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1142 list_for_each_entry_rcu(peer
, &entry
->peers
, list
) {
1143 new_peer
= kmalloc(sizeof(*new_peer
), GFP_ATOMIC
);
1147 new_peer
->chan
= peer
->chan
;
1148 INIT_LIST_HEAD(&new_peer
->list
);
1150 list_add(&new_peer
->list
, &peers
);
1156 spin_lock(&devices_lock
);
1157 list_for_each_entry_safe(peer
, tmp_peer
, &peers
, list
) {
1158 l2cap_chan_close(peer
->chan
, ENOENT
);
1160 list_del_rcu(&peer
->list
);
1161 kfree_rcu(peer
, rcu
);
1163 spin_unlock(&devices_lock
);
1167 struct work_struct work
;
1171 static void do_enable_set(struct work_struct
*work
)
1173 struct set_enable
*set_enable
= container_of(work
,
1174 struct set_enable
, work
);
1176 if (!set_enable
->flag
|| enable_6lowpan
!= set_enable
->flag
)
1177 /* Disconnect existing connections if 6lowpan is
1180 disconnect_all_peers();
1182 enable_6lowpan
= set_enable
->flag
;
1185 l2cap_chan_close(listen_chan
, 0);
1186 l2cap_chan_put(listen_chan
);
1189 listen_chan
= bt_6lowpan_listen();
1194 static int lowpan_enable_set(void *data
, u64 val
)
1196 struct set_enable
*set_enable
;
1198 set_enable
= kzalloc(sizeof(*set_enable
), GFP_KERNEL
);
1202 set_enable
->flag
= !!val
;
1203 INIT_WORK(&set_enable
->work
, do_enable_set
);
1205 schedule_work(&set_enable
->work
);
1210 static int lowpan_enable_get(void *data
, u64
*val
)
1212 *val
= enable_6lowpan
;
1216 DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops
, lowpan_enable_get
,
1217 lowpan_enable_set
, "%llu\n");
1219 static ssize_t
lowpan_control_write(struct file
*fp
,
1220 const char __user
*user_buffer
,
1225 size_t buf_size
= min(count
, sizeof(buf
) - 1);
1229 struct l2cap_conn
*conn
= NULL
;
1231 if (copy_from_user(buf
, user_buffer
, buf_size
))
1234 buf
[buf_size
] = '\0';
1236 if (memcmp(buf
, "connect ", 8) == 0) {
1237 ret
= get_l2cap_conn(&buf
[8], &addr
, &addr_type
, &conn
);
1242 l2cap_chan_close(listen_chan
, 0);
1243 l2cap_chan_put(listen_chan
);
1248 struct lowpan_peer
*peer
;
1250 if (!is_bt_6lowpan(conn
->hcon
))
1253 peer
= lookup_peer(conn
);
1255 BT_DBG("6LoWPAN connection already exists");
1259 BT_DBG("conn %p dst %pMR type %d user %d", conn
,
1260 &conn
->hcon
->dst
, conn
->hcon
->dst_type
,
1264 ret
= bt_6lowpan_connect(&addr
, addr_type
);
1271 if (memcmp(buf
, "disconnect ", 11) == 0) {
1272 ret
= get_l2cap_conn(&buf
[11], &addr
, &addr_type
, &conn
);
1276 ret
= bt_6lowpan_disconnect(conn
, addr_type
);
1286 static int lowpan_control_show(struct seq_file
*f
, void *ptr
)
1288 struct lowpan_btle_dev
*entry
;
1289 struct lowpan_peer
*peer
;
1291 spin_lock(&devices_lock
);
1293 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1294 list_for_each_entry(peer
, &entry
->peers
, list
)
1295 seq_printf(f
, "%pMR (type %u)\n",
1296 &peer
->chan
->dst
, peer
->chan
->dst_type
);
1299 spin_unlock(&devices_lock
);
1304 static int lowpan_control_open(struct inode
*inode
, struct file
*file
)
1306 return single_open(file
, lowpan_control_show
, inode
->i_private
);
1309 static const struct file_operations lowpan_control_fops
= {
1310 .open
= lowpan_control_open
,
1312 .write
= lowpan_control_write
,
1313 .llseek
= seq_lseek
,
1314 .release
= single_release
,
1317 static void disconnect_devices(void)
1319 struct lowpan_btle_dev
*entry
, *tmp
, *new_dev
;
1320 struct list_head devices
;
1322 INIT_LIST_HEAD(&devices
);
1324 /* We make a separate list of devices because the unregister_netdev()
1325 * will call device_event() which will also want to modify the same
1331 list_for_each_entry_rcu(entry
, &bt_6lowpan_devices
, list
) {
1332 new_dev
= kmalloc(sizeof(*new_dev
), GFP_ATOMIC
);
1336 new_dev
->netdev
= entry
->netdev
;
1337 INIT_LIST_HEAD(&new_dev
->list
);
1339 list_add_rcu(&new_dev
->list
, &devices
);
1344 list_for_each_entry_safe(entry
, tmp
, &devices
, list
) {
1345 ifdown(entry
->netdev
);
1346 BT_DBG("Unregistering netdev %s %p",
1347 entry
->netdev
->name
, entry
->netdev
);
1348 lowpan_unregister_netdev(entry
->netdev
);
1353 static int device_event(struct notifier_block
*unused
,
1354 unsigned long event
, void *ptr
)
1356 struct net_device
*netdev
= netdev_notifier_info_to_dev(ptr
);
1357 struct lowpan_btle_dev
*entry
;
1359 if (netdev
->type
!= ARPHRD_6LOWPAN
)
1363 case NETDEV_UNREGISTER
:
1364 spin_lock(&devices_lock
);
1365 list_for_each_entry(entry
, &bt_6lowpan_devices
, list
) {
1366 if (entry
->netdev
== netdev
) {
1367 BT_DBG("Unregistered netdev %s %p",
1368 netdev
->name
, netdev
);
1369 list_del(&entry
->list
);
1373 spin_unlock(&devices_lock
);
1380 static struct notifier_block bt_6lowpan_dev_notifier
= {
1381 .notifier_call
= device_event
,
1384 static int __init
bt_6lowpan_init(void)
1386 lowpan_enable_debugfs
= debugfs_create_file("6lowpan_enable", 0644,
1388 &lowpan_enable_fops
);
1389 lowpan_control_debugfs
= debugfs_create_file("6lowpan_control", 0644,
1391 &lowpan_control_fops
);
1393 return register_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1396 static void __exit
bt_6lowpan_exit(void)
1398 debugfs_remove(lowpan_enable_debugfs
);
1399 debugfs_remove(lowpan_control_debugfs
);
1402 l2cap_chan_close(listen_chan
, 0);
1403 l2cap_chan_put(listen_chan
);
1406 disconnect_devices();
1408 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier
);
1411 module_init(bt_6lowpan_init
);
1412 module_exit(bt_6lowpan_exit
);
1414 MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1415 MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1416 MODULE_VERSION(VERSION
);
1417 MODULE_LICENSE("GPL");