blob: 5b91e85cf1c69078975c8776a14d2594421dc303 [file] [log] [blame]
Jukka Rissanen18722c22013-12-11 17:05:37 +02001/*
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03002 Copyright (c) 2013-2014 Intel Corp.
Jukka Rissanen18722c22013-12-11 17:05:37 +02003
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.
7
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.
12*/
13
Jukka Rissanen18722c22013-12-11 17:05:37 +020014#include <linux/if_arp.h>
15#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
Jukka Rissanen5547e482014-06-18 16:37:09 +030017#include <linux/module.h>
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030018#include <linux/debugfs.h>
Jukka Rissanen18722c22013-12-11 17:05:37 +020019
20#include <net/ipv6.h>
21#include <net/ip6_route.h>
22#include <net/addrconf.h>
23
Jukka Rissanen18722c22013-12-11 17:05:37 +020024#include <net/bluetooth/bluetooth.h>
25#include <net/bluetooth/hci_core.h>
26#include <net/bluetooth/l2cap.h>
27
Alexander Aringcefc8c82014-03-05 14:29:05 +010028#include <net/6lowpan.h> /* for the compression support */
Jukka Rissanen18722c22013-12-11 17:05:37 +020029
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030030#define VERSION "0.1"
31
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020032static struct dentry *lowpan_enable_debugfs;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030033static struct dentry *lowpan_control_debugfs;
34
Jukka Rissanen18722c22013-12-11 17:05:37 +020035#define IFACE_NAME_TEMPLATE "bt%d"
Jukka Rissanen18722c22013-12-11 17:05:37 +020036
37struct skb_cb {
38 struct in6_addr addr;
Jukka Rissanen39e90c72014-09-08 12:11:45 +030039 struct in6_addr gw;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030040 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020041};
42#define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
43
44/* The devices list contains those devices that we are acting
45 * as a proxy. The BT 6LoWPAN device is a virtual device that
46 * connects to the Bluetooth LE device. The real connection to
47 * BT device is done via l2cap layer. There exists one
48 * virtual device / one BT 6LoWPAN network (=hciX device).
49 * The list contains struct lowpan_dev elements.
50 */
51static LIST_HEAD(bt_6lowpan_devices);
Jukka Rissanen90305822014-10-28 17:16:47 +020052static DEFINE_SPINLOCK(devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +020053
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020054static bool enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030055
56/* We are listening incoming connections via this channel
57 */
58static struct l2cap_chan *listen_chan;
59
Jukka Rissanen18722c22013-12-11 17:05:37 +020060struct lowpan_peer {
61 struct list_head list;
Jukka Rissanen90305822014-10-28 17:16:47 +020062 struct rcu_head rcu;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030063 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020064
65 /* peer addresses in various formats */
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +020066 unsigned char lladdr[ETH_ALEN];
Jukka Rissanen18722c22013-12-11 17:05:37 +020067 struct in6_addr peer_addr;
68};
69
Alexander Aring2e4d60c2016-04-11 11:04:18 +020070struct lowpan_btle_dev {
Jukka Rissanen18722c22013-12-11 17:05:37 +020071 struct list_head list;
72
73 struct hci_dev *hdev;
74 struct net_device *netdev;
75 struct list_head peers;
76 atomic_t peer_count; /* number of items in peers list */
77
78 struct work_struct delete_netdev;
79 struct delayed_work notify_peers;
80};
81
Alexander Aring2e4d60c2016-04-11 11:04:18 +020082static inline struct lowpan_btle_dev *
83lowpan_btle_dev(const struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +020084{
Alexander Aring2e4d60c2016-04-11 11:04:18 +020085 return (struct lowpan_btle_dev *)lowpan_dev(netdev)->priv;
Jukka Rissanen18722c22013-12-11 17:05:37 +020086}
87
Alexander Aring2e4d60c2016-04-11 11:04:18 +020088static inline void peer_add(struct lowpan_btle_dev *dev,
89 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020090{
Jukka Rissanen90305822014-10-28 17:16:47 +020091 list_add_rcu(&peer->list, &dev->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +020092 atomic_inc(&dev->peer_count);
93}
94
Alexander Aring2e4d60c2016-04-11 11:04:18 +020095static inline bool peer_del(struct lowpan_btle_dev *dev,
96 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020097{
Jukka Rissanen90305822014-10-28 17:16:47 +020098 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +020099 kfree_rcu(peer, rcu);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200100
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300101 module_put(THIS_MODULE);
102
Jukka Rissanen18722c22013-12-11 17:05:37 +0200103 if (atomic_dec_and_test(&dev->peer_count)) {
104 BT_DBG("last peer");
105 return true;
106 }
107
108 return false;
109}
110
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200111static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_btle_dev *dev,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200112 bdaddr_t *ba, __u8 type)
113{
Jukka Rissanen90305822014-10-28 17:16:47 +0200114 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200115
116 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
117 ba, type);
118
Jukka Rissanen90305822014-10-28 17:16:47 +0200119 rcu_read_lock();
120
121 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300122 BT_DBG("dst addr %pMR dst type %d",
123 &peer->chan->dst, peer->chan->dst_type);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200124
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300125 if (bacmp(&peer->chan->dst, ba))
Jukka Rissanen18722c22013-12-11 17:05:37 +0200126 continue;
127
Jukka Rissanen90305822014-10-28 17:16:47 +0200128 if (type == peer->chan->dst_type) {
129 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300130 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200131 }
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300132 }
133
Jukka Rissanen90305822014-10-28 17:16:47 +0200134 rcu_read_unlock();
135
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300136 return NULL;
137}
138
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200139static inline struct lowpan_peer *
140__peer_lookup_chan(struct lowpan_btle_dev *dev, struct l2cap_chan *chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300141{
Jukka Rissanen90305822014-10-28 17:16:47 +0200142 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300143
Jukka Rissanen90305822014-10-28 17:16:47 +0200144 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300145 if (peer->chan == chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200146 return peer;
147 }
148
149 return NULL;
150}
151
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200152static inline struct lowpan_peer *
153__peer_lookup_conn(struct lowpan_btle_dev *dev, struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200154{
Jukka Rissanen90305822014-10-28 17:16:47 +0200155 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200156
Jukka Rissanen90305822014-10-28 17:16:47 +0200157 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300158 if (peer->chan->conn == conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200159 return peer;
160 }
161
162 return NULL;
163}
164
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200165static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev,
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300166 struct in6_addr *daddr,
167 struct sk_buff *skb)
168{
Jukka Rissanen90305822014-10-28 17:16:47 +0200169 struct lowpan_peer *peer;
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300170 struct in6_addr *nexthop;
171 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
172 int count = atomic_read(&dev->peer_count);
173
174 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
175
176 /* If we have multiple 6lowpan peers, then check where we should
177 * send the packet. If only one peer exists, then we can send the
178 * packet right away.
179 */
Jukka Rissanen90305822014-10-28 17:16:47 +0200180 if (count == 1) {
181 rcu_read_lock();
182 peer = list_first_or_null_rcu(&dev->peers, struct lowpan_peer,
183 list);
184 rcu_read_unlock();
185 return peer;
186 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300187
188 if (!rt) {
189 nexthop = &lowpan_cb(skb)->gw;
190
191 if (ipv6_addr_any(nexthop))
192 return NULL;
193 } else {
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700194 nexthop = rt6_nexthop(rt, daddr);
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300195
196 /* We need to remember the address because it is needed
197 * by bt_xmit() when sending the packet. In bt_xmit(), the
198 * destination routing info is not set.
199 */
200 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
201 }
202
203 BT_DBG("gw %pI6c", nexthop);
204
Jukka Rissanen90305822014-10-28 17:16:47 +0200205 rcu_read_lock();
206
207 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300208 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
209 &peer->chan->dst, peer->chan->dst_type,
210 &peer->peer_addr);
211
Jukka Rissanen90305822014-10-28 17:16:47 +0200212 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
213 rcu_read_unlock();
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300214 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200215 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300216 }
217
Jukka Rissanen90305822014-10-28 17:16:47 +0200218 rcu_read_unlock();
219
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300220 return NULL;
221}
222
Jukka Rissanen18722c22013-12-11 17:05:37 +0200223static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
224{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200225 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200226 struct lowpan_peer *peer = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200227
Jukka Rissanen90305822014-10-28 17:16:47 +0200228 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200229
Jukka Rissanen90305822014-10-28 17:16:47 +0200230 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
231 peer = __peer_lookup_conn(entry, conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200232 if (peer)
233 break;
234 }
235
Jukka Rissanen90305822014-10-28 17:16:47 +0200236 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200237
238 return peer;
239}
240
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200241static struct lowpan_btle_dev *lookup_dev(struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200242{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200243 struct lowpan_btle_dev *entry;
244 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200245
Jukka Rissanen90305822014-10-28 17:16:47 +0200246 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200247
Jukka Rissanen90305822014-10-28 17:16:47 +0200248 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +0200249 if (conn->hcon->hdev == entry->hdev) {
250 dev = entry;
251 break;
252 }
253 }
254
Jukka Rissanen90305822014-10-28 17:16:47 +0200255 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200256
257 return dev;
258}
259
Jukka Rissanen18722c22013-12-11 17:05:37 +0200260static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
261{
262 struct sk_buff *skb_cp;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200263
264 skb_cp = skb_copy(skb, GFP_ATOMIC);
265 if (!skb_cp)
Martin Townsendf8b36172014-10-23 15:40:53 +0100266 return NET_RX_DROP;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200267
Alexander Aring324e7862015-10-27 08:35:24 +0100268 return netif_rx_ni(skb_cp);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200269}
270
Martin Townsend01141232014-10-23 15:40:56 +0100271static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300272 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200273{
Patrik Flyktc259d142017-03-12 10:19:33 +0200274 const u8 *saddr;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200275 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200276
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200277 dev = lowpan_btle_dev(netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200278
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200279 saddr = peer->lladdr;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200280
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200281 return lowpan_header_decompress(skb, netdev, netdev->dev_addr, saddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200282}
283
284static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300285 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200286{
287 struct sk_buff *local_skb;
288 int ret;
289
290 if (!netif_running(dev))
291 goto drop;
292
Alexander Aringcefdb802015-10-13 13:42:55 +0200293 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200294 goto drop;
295
Alexander Aringcefdb802015-10-13 13:42:55 +0200296 skb_reset_network_header(skb);
297
Martin Townsend11e3ff702014-10-13 11:00:56 +0100298 skb = skb_share_check(skb, GFP_ATOMIC);
299 if (!skb)
300 goto drop;
301
Jukka Rissanen18722c22013-12-11 17:05:37 +0200302 /* check that it's our buffer */
Alexander Aringcefdb802015-10-13 13:42:55 +0200303 if (lowpan_is_ipv6(*skb_network_header(skb))) {
Lukasz Duda87f5fed2016-01-13 16:57:48 +0100304 /* Pull off the 1-byte of 6lowpan header. */
305 skb_pull(skb, 1);
306
Jukka Rissanen18722c22013-12-11 17:05:37 +0200307 /* Copy the packet so that the IPv6 header is
308 * properly aligned.
309 */
310 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
311 skb_tailroom(skb), GFP_ATOMIC);
312 if (!local_skb)
313 goto drop;
314
315 local_skb->protocol = htons(ETH_P_IPV6);
316 local_skb->pkt_type = PACKET_HOST;
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100317 local_skb->dev = dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200318
Jukka Rissanen18722c22013-12-11 17:05:37 +0200319 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
320
321 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
322 kfree_skb(local_skb);
323 goto drop;
324 }
325
326 dev->stats.rx_bytes += skb->len;
327 dev->stats.rx_packets++;
328
Martin Townsend3c400b82014-10-23 15:40:55 +0100329 consume_skb(local_skb);
330 consume_skb(skb);
Alexander Aringcefdb802015-10-13 13:42:55 +0200331 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
332 local_skb = skb_clone(skb, GFP_ATOMIC);
333 if (!local_skb)
334 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200335
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100336 local_skb->dev = dev;
337
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300338 ret = iphc_decompress(local_skb, dev, peer);
Alexander Aringcefdb802015-10-13 13:42:55 +0200339 if (ret < 0) {
Luiz Augusto von Dentzda75fdc2017-04-03 17:48:56 +0300340 BT_DBG("iphc_decompress failed: %d", ret);
Alexander Aringcefdb802015-10-13 13:42:55 +0200341 kfree_skb(local_skb);
342 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200343 }
Alexander Aringcefdb802015-10-13 13:42:55 +0200344
345 local_skb->protocol = htons(ETH_P_IPV6);
346 local_skb->pkt_type = PACKET_HOST;
Alexander Aringcefdb802015-10-13 13:42:55 +0200347
348 if (give_skb_to_upper(local_skb, dev)
349 != NET_RX_SUCCESS) {
350 kfree_skb(local_skb);
351 goto drop;
352 }
353
354 dev->stats.rx_bytes += skb->len;
355 dev->stats.rx_packets++;
356
357 consume_skb(local_skb);
358 consume_skb(skb);
359 } else {
Luiz Augusto von Dentzda75fdc2017-04-03 17:48:56 +0300360 BT_DBG("unknown packet type");
Alexander Aringcefdb802015-10-13 13:42:55 +0200361 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200362 }
363
364 return NET_RX_SUCCESS;
365
366drop:
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300367 dev->stats.rx_dropped++;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200368 return NET_RX_DROP;
369}
370
371/* Packet from BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300372static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200373{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200374 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200375 struct lowpan_peer *peer;
376 int err;
377
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300378 peer = lookup_peer(chan->conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200379 if (!peer)
380 return -ENOENT;
381
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300382 dev = lookup_dev(chan->conn);
Johan Hedberg30d3db42013-12-12 09:53:21 +0200383 if (!dev || !dev->netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200384 return -ENOENT;
385
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300386 err = recv_pkt(skb, dev->netdev, peer);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300387 if (err) {
388 BT_DBG("recv pkt %d", err);
389 err = -EAGAIN;
390 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200391
392 return err;
393}
394
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300395static int setup_header(struct sk_buff *skb, struct net_device *netdev,
396 bdaddr_t *peer_addr, u8 *peer_addr_type)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200397{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300398 struct in6_addr ipv6_daddr;
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200399 struct ipv6hdr *hdr;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200400 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200401 struct lowpan_peer *peer;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200402 u8 *daddr;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300403 int err, status = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200404
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200405 hdr = ipv6_hdr(skb);
406
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200407 dev = lowpan_btle_dev(netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200408
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200409 memcpy(&ipv6_daddr, &hdr->daddr, sizeof(ipv6_daddr));
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300410
411 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300412 lowpan_cb(skb)->chan = NULL;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200413 daddr = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200414 } else {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200415 BT_DBG("dest IP %pI6c", &ipv6_daddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200416
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200417 /* The packet might be sent to 6lowpan interface
418 * because of routing (either via default route
419 * or user set route) so get peer according to
420 * the destination address.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200421 */
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200422 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200423 if (!peer) {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200424 BT_DBG("no such peer");
425 return -ENOENT;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200426 }
427
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200428 daddr = peer->lladdr;
Colin Ian Kingfa0eaf82017-03-28 13:11:29 +0100429 *peer_addr = peer->chan->dst;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200430 *peer_addr_type = peer->chan->dst_type;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300431 lowpan_cb(skb)->chan = peer->chan;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300432
433 status = 1;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200434 }
435
Alexander Aringa6f77382015-10-13 13:42:57 +0200436 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200437
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300438 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
439 if (err < 0)
440 return err;
441
442 return status;
443}
444
445static int header_create(struct sk_buff *skb, struct net_device *netdev,
446 unsigned short type, const void *_daddr,
447 const void *_saddr, unsigned int len)
448{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300449 if (type != ETH_P_IPV6)
450 return -EINVAL;
451
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300452 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200453}
454
455/* Packet to BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300456static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300457 struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200458{
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300459 struct msghdr msg;
460 struct kvec iv;
461 int err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200462
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300463 /* Remember the skb so that we can send EAGAIN to the caller if
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300464 * we run out of credits.
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300465 */
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300466 chan->data = skb;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300467
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300468 iv.iov_base = skb->data;
469 iv.iov_len = skb->len;
470
Al Viroc0371da2014-11-24 10:42:55 -0500471 memset(&msg, 0, sizeof(msg));
Al Viro17836392014-11-24 17:07:38 -0500472 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &iv, 1, skb->len);
Al Viroc0371da2014-11-24 10:42:55 -0500473
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300474 err = l2cap_chan_send(chan, &msg, skb->len);
475 if (err > 0) {
476 netdev->stats.tx_bytes += err;
477 netdev->stats.tx_packets++;
478 return 0;
479 }
480
481 if (!err)
Michael Scott6dea44f2017-03-28 23:10:18 -0700482 err = (!chan->tx_credits ? -EAGAIN : 0);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300483
484 if (err < 0) {
485 if (err == -EAGAIN)
486 netdev->stats.tx_dropped++;
487 else
488 netdev->stats.tx_errors++;
489 }
490
491 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200492}
493
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300494static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200495{
496 struct sk_buff *local_skb;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200497 struct lowpan_btle_dev *entry;
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300498 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200499
Jukka Rissanen90305822014-10-28 17:16:47 +0200500 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200501
Jukka Rissanen90305822014-10-28 17:16:47 +0200502 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
503 struct lowpan_peer *pentry;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200504 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200505
506 if (entry->netdev != netdev)
507 continue;
508
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200509 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200510
Jukka Rissanen90305822014-10-28 17:16:47 +0200511 list_for_each_entry_rcu(pentry, &dev->peers, list) {
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300512 int ret;
513
Jukka Rissanen18722c22013-12-11 17:05:37 +0200514 local_skb = skb_clone(skb, GFP_ATOMIC);
515
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300516 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
517 netdev->name,
518 &pentry->chan->dst, pentry->chan->dst_type,
519 &pentry->peer_addr, pentry->chan);
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300520 ret = send_pkt(pentry->chan, local_skb, netdev);
521 if (ret < 0)
522 err = ret;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200523
524 kfree_skb(local_skb);
525 }
526 }
527
Jukka Rissanen90305822014-10-28 17:16:47 +0200528 rcu_read_unlock();
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300529
530 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200531}
532
533static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
534{
535 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200536 bdaddr_t addr;
537 u8 addr_type;
538
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300539 /* We must take a copy of the skb before we modify/replace the ipv6
540 * header as the header could be used elsewhere
541 */
Alexander Aringb0c42cd2014-10-08 10:24:53 +0200542 skb = skb_unshare(skb, GFP_ATOMIC);
543 if (!skb)
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300544 return NET_XMIT_DROP;
545
546 /* Return values from setup_header()
547 * <0 - error, packet is dropped
548 * 0 - this is a multicast packet
549 * 1 - this is unicast packet
550 */
551 err = setup_header(skb, netdev, &addr, &addr_type);
552 if (err < 0) {
553 kfree_skb(skb);
554 return NET_XMIT_DROP;
555 }
556
557 if (err) {
558 if (lowpan_cb(skb)->chan) {
559 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
560 netdev->name, &addr, addr_type,
561 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300562 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300563 } else {
564 err = -ENOENT;
565 }
566 } else {
567 /* We need to send the packet to every device behind this
568 * interface.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200569 */
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300570 err = send_mcast_pkt(skb, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200571 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200572
Jukka Rissanenfc125182014-10-01 11:30:26 +0300573 dev_kfree_skb(skb);
574
Jukka Rissanen18722c22013-12-11 17:05:37 +0200575 if (err)
576 BT_DBG("ERROR: xmit failed (%d)", err);
577
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300578 return err < 0 ? NET_XMIT_DROP : err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200579}
580
Jukka Rissanendf092302014-10-28 17:16:48 +0200581static int bt_dev_init(struct net_device *dev)
582{
Eric Dumazetd3fff6c2016-06-09 07:45:12 -0700583 netdev_lockdep_set_classes(dev);
Jukka Rissanendf092302014-10-28 17:16:48 +0200584
585 return 0;
586}
587
Jukka Rissanen18722c22013-12-11 17:05:37 +0200588static const struct net_device_ops netdev_ops = {
Jukka Rissanendf092302014-10-28 17:16:48 +0200589 .ndo_init = bt_dev_init,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200590 .ndo_start_xmit = bt_xmit,
591};
592
593static struct header_ops header_ops = {
594 .create = header_create,
595};
596
597static void netdev_setup(struct net_device *dev)
598{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200599 dev->hard_header_len = 0;
600 dev->needed_tailroom = 0;
Jukka Rissanen156395c2014-09-29 16:37:26 +0300601 dev->flags = IFF_RUNNING | IFF_POINTOPOINT |
602 IFF_MULTICAST;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200603 dev->watchdog_timeo = 0;
604
605 dev->netdev_ops = &netdev_ops;
606 dev->header_ops = &header_ops;
607 dev->destructor = free_netdev;
608}
609
610static struct device_type bt_type = {
611 .name = "bluetooth",
612};
613
Jukka Rissanen18722c22013-12-11 17:05:37 +0200614static void ifup(struct net_device *netdev)
615{
616 int err;
617
618 rtnl_lock();
619 err = dev_open(netdev);
620 if (err < 0)
621 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
622 rtnl_unlock();
623}
624
Jukka Rissanen7f118252014-06-18 16:37:11 +0300625static void ifdown(struct net_device *netdev)
626{
627 int err;
628
629 rtnl_lock();
630 err = dev_close(netdev);
631 if (err < 0)
632 BT_INFO("iface %s cannot be closed (%d)", netdev->name, err);
633 rtnl_unlock();
634}
635
Jukka Rissanen18722c22013-12-11 17:05:37 +0200636static void do_notify_peers(struct work_struct *work)
637{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200638 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
639 notify_peers.work);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200640
641 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
642}
643
644static bool is_bt_6lowpan(struct hci_conn *hcon)
645{
646 if (hcon->type != LE_LINK)
647 return false;
648
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200649 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300650 return false;
651
652 return true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200653}
654
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300655static struct l2cap_chan *chan_create(void)
656{
657 struct l2cap_chan *chan;
658
659 chan = l2cap_chan_create();
660 if (!chan)
661 return NULL;
662
663 l2cap_chan_set_defaults(chan);
664
665 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
666 chan->mode = L2CAP_MODE_LE_FLOWCTL;
Johan Hedberg301de2c2015-10-06 13:03:19 +0300667 chan->imtu = 1280;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300668
669 return chan;
670}
671
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300672static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
Michael Scottd2891c42017-03-28 23:10:54 -0700673 struct lowpan_btle_dev *dev,
674 bool new_netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200675{
676 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200677
678 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
679 if (!peer)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300680 return NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200681
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300682 peer->chan = chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200683 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
684
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200685 baswap((void *)peer->lladdr, &chan->dst);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200686
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200687 lowpan_iphc_uncompress_eui48_lladdr(&peer->peer_addr, peer->lladdr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200688
Jukka Rissanen90305822014-10-28 17:16:47 +0200689 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200690 INIT_LIST_HEAD(&peer->list);
691 peer_add(dev, peer);
Jukka Rissanen90305822014-10-28 17:16:47 +0200692 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200693
694 /* Notifying peers about us needs to be done without locks held */
Michael Scottd2891c42017-03-28 23:10:54 -0700695 if (new_netdev)
696 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200697 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
698
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300699 return peer->chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200700}
701
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200702static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200703{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200704 struct net_device *netdev;
705 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200706
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200707 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
Alexander Aringb72f6f52015-08-11 21:44:08 +0200708 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
709 netdev_setup);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200710 if (!netdev)
711 return -ENOMEM;
712
Patrik Flyktc259d142017-03-12 10:19:33 +0200713 netdev->addr_assign_type = NET_ADDR_PERM;
714 baswap((void *)netdev->dev_addr, &chan->src);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200715
716 netdev->netdev_ops = &netdev_ops;
Glenn Ruben Bakkefc842422015-06-17 07:32:25 -0700717 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200718 SET_NETDEV_DEVTYPE(netdev, &bt_type);
719
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200720 *dev = lowpan_btle_dev(netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300721 (*dev)->netdev = netdev;
722 (*dev)->hdev = chan->conn->hcon->hdev;
723 INIT_LIST_HEAD(&(*dev)->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200724
Jukka Rissanen90305822014-10-28 17:16:47 +0200725 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300726 INIT_LIST_HEAD(&(*dev)->list);
Jukka Rissanen90305822014-10-28 17:16:47 +0200727 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
728 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200729
Alexander Aring00f59312015-12-09 22:46:29 +0100730 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
Alexander Aring5857d1d2015-07-30 09:40:53 +0200731 if (err < 0) {
732 BT_INFO("register_netdev failed %d", err);
733 spin_lock(&devices_lock);
734 list_del_rcu(&(*dev)->list);
735 spin_unlock(&devices_lock);
736 free_netdev(netdev);
737 goto out;
738 }
739
740 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
741 netdev->ifindex, &chan->dst, chan->dst_type,
742 &chan->src, chan->src_type);
743 set_bit(__LINK_STATE_PRESENT, &netdev->state);
744
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300745 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200746
747out:
748 return err;
749}
750
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300751static inline void chan_ready_cb(struct l2cap_chan *chan)
752{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200753 struct lowpan_btle_dev *dev;
Michael Scottd2891c42017-03-28 23:10:54 -0700754 bool new_netdev = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300755
756 dev = lookup_dev(chan->conn);
757
758 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
759
760 if (!dev) {
761 if (setup_netdev(chan, &dev) < 0) {
762 l2cap_chan_del(chan, -ENOENT);
763 return;
764 }
Michael Scottd2891c42017-03-28 23:10:54 -0700765 new_netdev = true;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300766 }
767
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300768 if (!try_module_get(THIS_MODULE))
769 return;
770
Michael Scottd2891c42017-03-28 23:10:54 -0700771 add_peer_chan(chan, dev, new_netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300772 ifup(dev->netdev);
773}
774
Johan Hedberg2b293492014-08-07 10:03:32 +0300775static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300776{
Johan Hedberg2b293492014-08-07 10:03:32 +0300777 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300778
Johan Hedberg630ef792015-10-06 13:03:22 +0300779 chan = chan_create();
780 if (!chan)
781 return NULL;
782
Johan Hedberg2b293492014-08-07 10:03:32 +0300783 chan->ops = pchan->ops;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300784
785 BT_DBG("chan %p pchan %p", chan, pchan);
786
Johan Hedberg2b293492014-08-07 10:03:32 +0300787 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300788}
789
Jukka Rissanen18722c22013-12-11 17:05:37 +0200790static void delete_netdev(struct work_struct *work)
791{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200792 struct lowpan_btle_dev *entry = container_of(work,
793 struct lowpan_btle_dev,
794 delete_netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200795
Alexander Aring00f59312015-12-09 22:46:29 +0100796 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200797
Glenn Ruben Bakke2ad88fb2015-06-17 07:32:26 -0700798 /* The entry pointer is deleted by the netdev destructor. */
Jukka Rissanen18722c22013-12-11 17:05:37 +0200799}
800
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300801static void chan_close_cb(struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200802{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200803 struct lowpan_btle_dev *entry;
804 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200805 struct lowpan_peer *peer;
806 int err = -ENOENT;
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700807 bool last = false, remove = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200808
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300809 BT_DBG("chan %p conn %p", chan, chan->conn);
810
811 if (chan->conn && chan->conn->hcon) {
812 if (!is_bt_6lowpan(chan->conn->hcon))
813 return;
814
815 /* If conn is set, then the netdev is also there and we should
816 * not remove it.
817 */
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700818 remove = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300819 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200820
Jukka Rissanen90305822014-10-28 17:16:47 +0200821 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200822
Jukka Rissanen90305822014-10-28 17:16:47 +0200823 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200824 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen90305822014-10-28 17:16:47 +0200825 peer = __peer_lookup_chan(dev, chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200826 if (peer) {
827 last = peer_del(dev, peer);
828 err = 0;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300829
830 BT_DBG("dev %p removing %speer %p", dev,
831 last ? "last " : "1 ", peer);
832 BT_DBG("chan %p orig refcnt %d", chan,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100833 kref_read(&chan->kref));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300834
835 l2cap_chan_put(chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200836 break;
837 }
838 }
839
840 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
Jukka Rissanen90305822014-10-28 17:16:47 +0200841 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200842
843 cancel_delayed_work_sync(&dev->notify_peers);
844
Jukka Rissanen7f118252014-06-18 16:37:11 +0300845 ifdown(dev->netdev);
846
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700847 if (remove) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300848 INIT_WORK(&entry->delete_netdev, delete_netdev);
849 schedule_work(&entry->delete_netdev);
850 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200851 } else {
Jukka Rissanen90305822014-10-28 17:16:47 +0200852 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200853 }
854
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300855 return;
856}
857
858static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
859{
860 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
861 state_to_string(state), err);
862}
863
864static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
865 unsigned long hdr_len,
866 unsigned long len, int nb)
867{
868 /* Note that we must allocate using GFP_ATOMIC here as
869 * this function is called originally from netdev hard xmit
870 * function in atomic context.
871 */
872 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
873}
874
875static void chan_suspend_cb(struct l2cap_chan *chan)
876{
Michael Scott6dea44f2017-03-28 23:10:18 -0700877 BT_DBG("chan %p suspend", chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300878}
879
880static void chan_resume_cb(struct l2cap_chan *chan)
881{
Michael Scott6dea44f2017-03-28 23:10:18 -0700882 BT_DBG("chan %p resume", chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300883}
884
885static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
886{
Jukka Rissanen2ae50d82014-09-08 12:11:43 +0300887 return L2CAP_CONN_TIMEOUT;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300888}
889
890static const struct l2cap_ops bt_6lowpan_chan_ops = {
891 .name = "L2CAP 6LoWPAN channel",
892 .new_connection = chan_new_conn_cb,
893 .recv = chan_recv_cb,
894 .close = chan_close_cb,
895 .state_change = chan_state_change_cb,
896 .ready = chan_ready_cb,
897 .resume = chan_resume_cb,
898 .suspend = chan_suspend_cb,
899 .get_sndtimeo = chan_get_sndtimeo_cb,
900 .alloc_skb = chan_alloc_skb_cb,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300901
902 .teardown = l2cap_chan_no_teardown,
903 .defer = l2cap_chan_no_defer,
904 .set_shutdown = l2cap_chan_no_set_shutdown,
905};
906
907static inline __u8 bdaddr_type(__u8 type)
908{
909 if (type == ADDR_LE_DEV_PUBLIC)
910 return BDADDR_LE_PUBLIC;
911 else
912 return BDADDR_LE_RANDOM;
913}
914
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300915static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
916{
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300917 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300918 int err;
919
Johan Hedberg26d46df2015-10-06 13:03:24 +0300920 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300921 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300922 return -EINVAL;
923
Johan Hedberg26d46df2015-10-06 13:03:24 +0300924 chan->ops = &bt_6lowpan_chan_ops;
925
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300926 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300927 addr, dst_type);
928
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300929 BT_DBG("chan %p err %d", chan, err);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300930 if (err < 0)
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300931 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300932
Jukka Rissanen18722c22013-12-11 17:05:37 +0200933 return err;
934}
935
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300936static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
937{
938 struct lowpan_peer *peer;
939
940 BT_DBG("conn %p dst type %d", conn, dst_type);
941
942 peer = lookup_peer(conn);
943 if (!peer)
944 return -ENOENT;
945
946 BT_DBG("peer %p chan %p", peer, peer->chan);
947
948 l2cap_chan_close(peer->chan, ENOENT);
949
950 return 0;
951}
952
953static struct l2cap_chan *bt_6lowpan_listen(void)
954{
955 bdaddr_t *addr = BDADDR_ANY;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300956 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300957 int err;
958
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200959 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300960 return NULL;
961
Johan Hedberg26d46df2015-10-06 13:03:24 +0300962 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300963 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300964 return NULL;
965
Johan Hedberg26d46df2015-10-06 13:03:24 +0300966 chan->ops = &bt_6lowpan_chan_ops;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300967 chan->state = BT_LISTEN;
968 chan->src_type = BDADDR_LE_PUBLIC;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300969
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300970 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
Johan Hedberg2773b022014-11-13 09:46:05 +0200971
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300972 BT_DBG("chan %p src type %d", chan, chan->src_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300973
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300974 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300975 if (err) {
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300976 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300977 BT_ERR("psm cannot be added err %d", err);
978 return NULL;
979 }
980
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300981 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300982}
983
984static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
985 struct l2cap_conn **conn)
986{
987 struct hci_conn *hcon;
988 struct hci_dev *hdev;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300989 int n;
990
991 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
992 &addr->b[5], &addr->b[4], &addr->b[3],
993 &addr->b[2], &addr->b[1], &addr->b[0],
994 addr_type);
995
996 if (n < 7)
997 return -EINVAL;
998
Johan Hedberg39385cb2016-11-12 17:03:07 +0200999 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1000 hdev = hci_get_route(addr, BDADDR_ANY, BDADDR_LE_PUBLIC);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001001 if (!hdev)
1002 return -ENOENT;
1003
1004 hci_dev_lock(hdev);
Johan Hedbergf5ad4ff2015-10-21 18:03:02 +03001005 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001006 hci_dev_unlock(hdev);
1007
1008 if (!hcon)
1009 return -ENOENT;
1010
1011 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1012
1013 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1014
1015 return 0;
1016}
1017
1018static void disconnect_all_peers(void)
1019{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001020 struct lowpan_btle_dev *entry;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001021 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1022 struct list_head peers;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001023
1024 INIT_LIST_HEAD(&peers);
1025
1026 /* We make a separate list of peers as the close_cb() will
1027 * modify the device peers list so it is better not to mess
1028 * with the same list at the same time.
1029 */
1030
Jukka Rissanen90305822014-10-28 17:16:47 +02001031 rcu_read_lock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001032
Jukka Rissanen90305822014-10-28 17:16:47 +02001033 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1034 list_for_each_entry_rcu(peer, &entry->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001035 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1036 if (!new_peer)
1037 break;
1038
1039 new_peer->chan = peer->chan;
1040 INIT_LIST_HEAD(&new_peer->list);
1041
1042 list_add(&new_peer->list, &peers);
1043 }
1044 }
1045
Jukka Rissanen90305822014-10-28 17:16:47 +02001046 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001047
Jukka Rissanen90305822014-10-28 17:16:47 +02001048 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001049 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1050 l2cap_chan_close(peer->chan, ENOENT);
Jukka Rissanen90305822014-10-28 17:16:47 +02001051
1052 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +02001053 kfree_rcu(peer, rcu);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001054 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001055 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001056}
1057
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001058struct set_enable {
Jukka Rissanen90305822014-10-28 17:16:47 +02001059 struct work_struct work;
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001060 bool flag;
Jukka Rissanen90305822014-10-28 17:16:47 +02001061};
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001062
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001063static void do_enable_set(struct work_struct *work)
Jukka Rissanen90305822014-10-28 17:16:47 +02001064{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001065 struct set_enable *set_enable = container_of(work,
1066 struct set_enable, work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001067
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001068 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001069 /* Disconnect existing connections if 6lowpan is
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001070 * disabled
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001071 */
1072 disconnect_all_peers();
1073
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001074 enable_6lowpan = set_enable->flag;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001075
1076 if (listen_chan) {
1077 l2cap_chan_close(listen_chan, 0);
1078 l2cap_chan_put(listen_chan);
1079 }
1080
1081 listen_chan = bt_6lowpan_listen();
1082
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001083 kfree(set_enable);
Jukka Rissanen90305822014-10-28 17:16:47 +02001084}
1085
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001086static int lowpan_enable_set(void *data, u64 val)
Jukka Rissanen90305822014-10-28 17:16:47 +02001087{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001088 struct set_enable *set_enable;
Jukka Rissanen90305822014-10-28 17:16:47 +02001089
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001090 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1091 if (!set_enable)
Jukka Rissanen90305822014-10-28 17:16:47 +02001092 return -ENOMEM;
1093
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001094 set_enable->flag = !!val;
1095 INIT_WORK(&set_enable->work, do_enable_set);
Jukka Rissanen90305822014-10-28 17:16:47 +02001096
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001097 schedule_work(&set_enable->work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001098
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001099 return 0;
1100}
1101
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001102static int lowpan_enable_get(void *data, u64 *val)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001103{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001104 *val = enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001105 return 0;
1106}
1107
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001108DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1109 lowpan_enable_set, "%llu\n");
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001110
1111static ssize_t lowpan_control_write(struct file *fp,
1112 const char __user *user_buffer,
1113 size_t count,
1114 loff_t *position)
1115{
1116 char buf[32];
1117 size_t buf_size = min(count, sizeof(buf) - 1);
1118 int ret;
1119 bdaddr_t addr;
1120 u8 addr_type;
1121 struct l2cap_conn *conn = NULL;
1122
1123 if (copy_from_user(buf, user_buffer, buf_size))
1124 return -EFAULT;
1125
1126 buf[buf_size] = '\0';
1127
1128 if (memcmp(buf, "connect ", 8) == 0) {
1129 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1130 if (ret == -EINVAL)
1131 return ret;
1132
1133 if (listen_chan) {
1134 l2cap_chan_close(listen_chan, 0);
1135 l2cap_chan_put(listen_chan);
1136 listen_chan = NULL;
1137 }
1138
1139 if (conn) {
1140 struct lowpan_peer *peer;
1141
1142 if (!is_bt_6lowpan(conn->hcon))
1143 return -EINVAL;
1144
1145 peer = lookup_peer(conn);
1146 if (peer) {
1147 BT_DBG("6LoWPAN connection already exists");
1148 return -EALREADY;
1149 }
1150
1151 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1152 &conn->hcon->dst, conn->hcon->dst_type,
1153 addr_type);
1154 }
1155
1156 ret = bt_6lowpan_connect(&addr, addr_type);
1157 if (ret < 0)
1158 return ret;
1159
1160 return count;
1161 }
1162
1163 if (memcmp(buf, "disconnect ", 11) == 0) {
1164 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1165 if (ret < 0)
1166 return ret;
1167
1168 ret = bt_6lowpan_disconnect(conn, addr_type);
1169 if (ret < 0)
1170 return ret;
1171
1172 return count;
1173 }
1174
1175 return count;
1176}
1177
1178static int lowpan_control_show(struct seq_file *f, void *ptr)
1179{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001180 struct lowpan_btle_dev *entry;
Jukka Rissanen90305822014-10-28 17:16:47 +02001181 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001182
Jukka Rissanen90305822014-10-28 17:16:47 +02001183 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001184
Jukka Rissanen90305822014-10-28 17:16:47 +02001185 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1186 list_for_each_entry(peer, &entry->peers, list)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001187 seq_printf(f, "%pMR (type %u)\n",
1188 &peer->chan->dst, peer->chan->dst_type);
1189 }
1190
Jukka Rissanen90305822014-10-28 17:16:47 +02001191 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001192
1193 return 0;
1194}
1195
1196static int lowpan_control_open(struct inode *inode, struct file *file)
1197{
1198 return single_open(file, lowpan_control_show, inode->i_private);
1199}
1200
1201static const struct file_operations lowpan_control_fops = {
1202 .open = lowpan_control_open,
1203 .read = seq_read,
1204 .write = lowpan_control_write,
1205 .llseek = seq_lseek,
1206 .release = single_release,
1207};
1208
Jukka Rissanen7f118252014-06-18 16:37:11 +03001209static void disconnect_devices(void)
1210{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001211 struct lowpan_btle_dev *entry, *tmp, *new_dev;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001212 struct list_head devices;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001213
1214 INIT_LIST_HEAD(&devices);
1215
1216 /* We make a separate list of devices because the unregister_netdev()
1217 * will call device_event() which will also want to modify the same
1218 * devices list.
1219 */
1220
Jukka Rissanen90305822014-10-28 17:16:47 +02001221 rcu_read_lock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001222
Jukka Rissanen90305822014-10-28 17:16:47 +02001223 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001224 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1225 if (!new_dev)
1226 break;
1227
1228 new_dev->netdev = entry->netdev;
1229 INIT_LIST_HEAD(&new_dev->list);
1230
Jukka Rissanen90305822014-10-28 17:16:47 +02001231 list_add_rcu(&new_dev->list, &devices);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001232 }
1233
Jukka Rissanen90305822014-10-28 17:16:47 +02001234 rcu_read_unlock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001235
Dan Carpenterdaac1972014-10-29 19:10:57 +03001236 list_for_each_entry_safe(entry, tmp, &devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001237 ifdown(entry->netdev);
1238 BT_DBG("Unregistering netdev %s %p",
1239 entry->netdev->name, entry->netdev);
Alexander Aring00f59312015-12-09 22:46:29 +01001240 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001241 kfree(entry);
1242 }
1243}
1244
Jukka Rissanen18722c22013-12-11 17:05:37 +02001245static int device_event(struct notifier_block *unused,
1246 unsigned long event, void *ptr)
1247{
1248 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001249 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +02001250
1251 if (netdev->type != ARPHRD_6LOWPAN)
1252 return NOTIFY_DONE;
1253
1254 switch (event) {
1255 case NETDEV_UNREGISTER:
Jukka Rissanen90305822014-10-28 17:16:47 +02001256 spin_lock(&devices_lock);
1257 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +02001258 if (entry->netdev == netdev) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001259 BT_DBG("Unregistered netdev %s %p",
1260 netdev->name, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001261 list_del(&entry->list);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001262 break;
1263 }
1264 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001265 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001266 break;
1267 }
1268
1269 return NOTIFY_DONE;
1270}
1271
1272static struct notifier_block bt_6lowpan_dev_notifier = {
1273 .notifier_call = device_event,
1274};
1275
Jukka Rissanen5547e482014-06-18 16:37:09 +03001276static int __init bt_6lowpan_init(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001277{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001278 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1279 bt_debugfs, NULL,
1280 &lowpan_enable_fops);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001281 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1282 bt_debugfs, NULL,
1283 &lowpan_control_fops);
1284
Jukka Rissanen18722c22013-12-11 17:05:37 +02001285 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1286}
1287
Jukka Rissanen5547e482014-06-18 16:37:09 +03001288static void __exit bt_6lowpan_exit(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001289{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001290 debugfs_remove(lowpan_enable_debugfs);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001291 debugfs_remove(lowpan_control_debugfs);
1292
1293 if (listen_chan) {
1294 l2cap_chan_close(listen_chan, 0);
1295 l2cap_chan_put(listen_chan);
1296 }
1297
Jukka Rissanen7f118252014-06-18 16:37:11 +03001298 disconnect_devices();
1299
Jukka Rissanen18722c22013-12-11 17:05:37 +02001300 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1301}
Jukka Rissanen5547e482014-06-18 16:37:09 +03001302
1303module_init(bt_6lowpan_init);
1304module_exit(bt_6lowpan_exit);
1305
1306MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1307MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1308MODULE_VERSION(VERSION);
1309MODULE_LICENSE("GPL");