blob: 22bd936ed2cec4b3d9b90f81668cf851cadf6904 [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
Luiz Augusto von Dentze1008f92017-04-11 22:20:59 +0300481 if (err < 0)
482 netdev->stats.tx_errors++;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300483
484 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200485}
486
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300487static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200488{
489 struct sk_buff *local_skb;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200490 struct lowpan_btle_dev *entry;
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300491 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200492
Jukka Rissanen90305822014-10-28 17:16:47 +0200493 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200494
Jukka Rissanen90305822014-10-28 17:16:47 +0200495 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
496 struct lowpan_peer *pentry;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200497 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200498
499 if (entry->netdev != netdev)
500 continue;
501
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200502 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200503
Jukka Rissanen90305822014-10-28 17:16:47 +0200504 list_for_each_entry_rcu(pentry, &dev->peers, list) {
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300505 int ret;
506
Jukka Rissanen18722c22013-12-11 17:05:37 +0200507 local_skb = skb_clone(skb, GFP_ATOMIC);
508
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300509 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
510 netdev->name,
511 &pentry->chan->dst, pentry->chan->dst_type,
512 &pentry->peer_addr, pentry->chan);
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300513 ret = send_pkt(pentry->chan, local_skb, netdev);
514 if (ret < 0)
515 err = ret;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200516
517 kfree_skb(local_skb);
518 }
519 }
520
Jukka Rissanen90305822014-10-28 17:16:47 +0200521 rcu_read_unlock();
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300522
523 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200524}
525
526static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
527{
528 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200529 bdaddr_t addr;
530 u8 addr_type;
531
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300532 /* We must take a copy of the skb before we modify/replace the ipv6
533 * header as the header could be used elsewhere
534 */
Alexander Aringb0c42cd2014-10-08 10:24:53 +0200535 skb = skb_unshare(skb, GFP_ATOMIC);
536 if (!skb)
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300537 return NET_XMIT_DROP;
538
539 /* Return values from setup_header()
540 * <0 - error, packet is dropped
541 * 0 - this is a multicast packet
542 * 1 - this is unicast packet
543 */
544 err = setup_header(skb, netdev, &addr, &addr_type);
545 if (err < 0) {
546 kfree_skb(skb);
547 return NET_XMIT_DROP;
548 }
549
550 if (err) {
551 if (lowpan_cb(skb)->chan) {
552 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
553 netdev->name, &addr, addr_type,
554 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300555 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300556 } else {
557 err = -ENOENT;
558 }
559 } else {
560 /* We need to send the packet to every device behind this
561 * interface.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200562 */
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300563 err = send_mcast_pkt(skb, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200564 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200565
Jukka Rissanenfc125182014-10-01 11:30:26 +0300566 dev_kfree_skb(skb);
567
Jukka Rissanen18722c22013-12-11 17:05:37 +0200568 if (err)
569 BT_DBG("ERROR: xmit failed (%d)", err);
570
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300571 return err < 0 ? NET_XMIT_DROP : err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200572}
573
Jukka Rissanendf092302014-10-28 17:16:48 +0200574static int bt_dev_init(struct net_device *dev)
575{
Eric Dumazetd3fff6c2016-06-09 07:45:12 -0700576 netdev_lockdep_set_classes(dev);
Jukka Rissanendf092302014-10-28 17:16:48 +0200577
578 return 0;
579}
580
Jukka Rissanen18722c22013-12-11 17:05:37 +0200581static const struct net_device_ops netdev_ops = {
Jukka Rissanendf092302014-10-28 17:16:48 +0200582 .ndo_init = bt_dev_init,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200583 .ndo_start_xmit = bt_xmit,
584};
585
586static struct header_ops header_ops = {
587 .create = header_create,
588};
589
590static void netdev_setup(struct net_device *dev)
591{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200592 dev->hard_header_len = 0;
593 dev->needed_tailroom = 0;
Jukka Rissanen156395c2014-09-29 16:37:26 +0300594 dev->flags = IFF_RUNNING | IFF_POINTOPOINT |
595 IFF_MULTICAST;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200596 dev->watchdog_timeo = 0;
597
598 dev->netdev_ops = &netdev_ops;
599 dev->header_ops = &header_ops;
600 dev->destructor = free_netdev;
601}
602
603static struct device_type bt_type = {
604 .name = "bluetooth",
605};
606
Jukka Rissanen18722c22013-12-11 17:05:37 +0200607static void ifup(struct net_device *netdev)
608{
609 int err;
610
611 rtnl_lock();
612 err = dev_open(netdev);
613 if (err < 0)
614 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
615 rtnl_unlock();
616}
617
Jukka Rissanen7f118252014-06-18 16:37:11 +0300618static void ifdown(struct net_device *netdev)
619{
620 int err;
621
622 rtnl_lock();
623 err = dev_close(netdev);
624 if (err < 0)
625 BT_INFO("iface %s cannot be closed (%d)", netdev->name, err);
626 rtnl_unlock();
627}
628
Jukka Rissanen18722c22013-12-11 17:05:37 +0200629static void do_notify_peers(struct work_struct *work)
630{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200631 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
632 notify_peers.work);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200633
634 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
635}
636
637static bool is_bt_6lowpan(struct hci_conn *hcon)
638{
639 if (hcon->type != LE_LINK)
640 return false;
641
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200642 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300643 return false;
644
645 return true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200646}
647
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300648static struct l2cap_chan *chan_create(void)
649{
650 struct l2cap_chan *chan;
651
652 chan = l2cap_chan_create();
653 if (!chan)
654 return NULL;
655
656 l2cap_chan_set_defaults(chan);
657
658 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
659 chan->mode = L2CAP_MODE_LE_FLOWCTL;
Johan Hedberg301de2c2015-10-06 13:03:19 +0300660 chan->imtu = 1280;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300661
662 return chan;
663}
664
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300665static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
Michael Scottd2891c42017-03-28 23:10:54 -0700666 struct lowpan_btle_dev *dev,
667 bool new_netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200668{
669 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200670
671 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
672 if (!peer)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300673 return NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200674
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300675 peer->chan = chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200676 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
677
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200678 baswap((void *)peer->lladdr, &chan->dst);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200679
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200680 lowpan_iphc_uncompress_eui48_lladdr(&peer->peer_addr, peer->lladdr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200681
Jukka Rissanen90305822014-10-28 17:16:47 +0200682 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200683 INIT_LIST_HEAD(&peer->list);
684 peer_add(dev, peer);
Jukka Rissanen90305822014-10-28 17:16:47 +0200685 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200686
687 /* Notifying peers about us needs to be done without locks held */
Michael Scottd2891c42017-03-28 23:10:54 -0700688 if (new_netdev)
689 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200690 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
691
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300692 return peer->chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200693}
694
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200695static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200696{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200697 struct net_device *netdev;
698 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200699
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200700 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
Alexander Aringb72f6f52015-08-11 21:44:08 +0200701 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
702 netdev_setup);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200703 if (!netdev)
704 return -ENOMEM;
705
Patrik Flyktc259d142017-03-12 10:19:33 +0200706 netdev->addr_assign_type = NET_ADDR_PERM;
707 baswap((void *)netdev->dev_addr, &chan->src);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200708
709 netdev->netdev_ops = &netdev_ops;
Glenn Ruben Bakkefc842422015-06-17 07:32:25 -0700710 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200711 SET_NETDEV_DEVTYPE(netdev, &bt_type);
712
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200713 *dev = lowpan_btle_dev(netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300714 (*dev)->netdev = netdev;
715 (*dev)->hdev = chan->conn->hcon->hdev;
716 INIT_LIST_HEAD(&(*dev)->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200717
Jukka Rissanen90305822014-10-28 17:16:47 +0200718 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300719 INIT_LIST_HEAD(&(*dev)->list);
Jukka Rissanen90305822014-10-28 17:16:47 +0200720 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
721 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200722
Alexander Aring00f59312015-12-09 22:46:29 +0100723 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
Alexander Aring5857d1d2015-07-30 09:40:53 +0200724 if (err < 0) {
725 BT_INFO("register_netdev failed %d", err);
726 spin_lock(&devices_lock);
727 list_del_rcu(&(*dev)->list);
728 spin_unlock(&devices_lock);
729 free_netdev(netdev);
730 goto out;
731 }
732
733 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
734 netdev->ifindex, &chan->dst, chan->dst_type,
735 &chan->src, chan->src_type);
736 set_bit(__LINK_STATE_PRESENT, &netdev->state);
737
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300738 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200739
740out:
741 return err;
742}
743
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300744static inline void chan_ready_cb(struct l2cap_chan *chan)
745{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200746 struct lowpan_btle_dev *dev;
Michael Scottd2891c42017-03-28 23:10:54 -0700747 bool new_netdev = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300748
749 dev = lookup_dev(chan->conn);
750
751 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
752
753 if (!dev) {
754 if (setup_netdev(chan, &dev) < 0) {
755 l2cap_chan_del(chan, -ENOENT);
756 return;
757 }
Michael Scottd2891c42017-03-28 23:10:54 -0700758 new_netdev = true;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300759 }
760
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300761 if (!try_module_get(THIS_MODULE))
762 return;
763
Michael Scottd2891c42017-03-28 23:10:54 -0700764 add_peer_chan(chan, dev, new_netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300765 ifup(dev->netdev);
766}
767
Johan Hedberg2b293492014-08-07 10:03:32 +0300768static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300769{
Johan Hedberg2b293492014-08-07 10:03:32 +0300770 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300771
Johan Hedberg630ef792015-10-06 13:03:22 +0300772 chan = chan_create();
773 if (!chan)
774 return NULL;
775
Johan Hedberg2b293492014-08-07 10:03:32 +0300776 chan->ops = pchan->ops;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300777
778 BT_DBG("chan %p pchan %p", chan, pchan);
779
Johan Hedberg2b293492014-08-07 10:03:32 +0300780 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300781}
782
Jukka Rissanen18722c22013-12-11 17:05:37 +0200783static void delete_netdev(struct work_struct *work)
784{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200785 struct lowpan_btle_dev *entry = container_of(work,
786 struct lowpan_btle_dev,
787 delete_netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200788
Alexander Aring00f59312015-12-09 22:46:29 +0100789 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200790
Glenn Ruben Bakke2ad88fb2015-06-17 07:32:26 -0700791 /* The entry pointer is deleted by the netdev destructor. */
Jukka Rissanen18722c22013-12-11 17:05:37 +0200792}
793
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300794static void chan_close_cb(struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200795{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200796 struct lowpan_btle_dev *entry;
797 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200798 struct lowpan_peer *peer;
799 int err = -ENOENT;
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700800 bool last = false, remove = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200801
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300802 BT_DBG("chan %p conn %p", chan, chan->conn);
803
804 if (chan->conn && chan->conn->hcon) {
805 if (!is_bt_6lowpan(chan->conn->hcon))
806 return;
807
808 /* If conn is set, then the netdev is also there and we should
809 * not remove it.
810 */
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700811 remove = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300812 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200813
Jukka Rissanen90305822014-10-28 17:16:47 +0200814 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200815
Jukka Rissanen90305822014-10-28 17:16:47 +0200816 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200817 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen90305822014-10-28 17:16:47 +0200818 peer = __peer_lookup_chan(dev, chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200819 if (peer) {
820 last = peer_del(dev, peer);
821 err = 0;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300822
823 BT_DBG("dev %p removing %speer %p", dev,
824 last ? "last " : "1 ", peer);
825 BT_DBG("chan %p orig refcnt %d", chan,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100826 kref_read(&chan->kref));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300827
828 l2cap_chan_put(chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200829 break;
830 }
831 }
832
833 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
Jukka Rissanen90305822014-10-28 17:16:47 +0200834 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200835
836 cancel_delayed_work_sync(&dev->notify_peers);
837
Jukka Rissanen7f118252014-06-18 16:37:11 +0300838 ifdown(dev->netdev);
839
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700840 if (remove) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300841 INIT_WORK(&entry->delete_netdev, delete_netdev);
842 schedule_work(&entry->delete_netdev);
843 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200844 } else {
Jukka Rissanen90305822014-10-28 17:16:47 +0200845 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200846 }
847
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300848 return;
849}
850
851static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
852{
853 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
854 state_to_string(state), err);
855}
856
857static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
858 unsigned long hdr_len,
859 unsigned long len, int nb)
860{
861 /* Note that we must allocate using GFP_ATOMIC here as
862 * this function is called originally from netdev hard xmit
863 * function in atomic context.
864 */
865 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
866}
867
868static void chan_suspend_cb(struct l2cap_chan *chan)
869{
Michael Scott6dea44f2017-03-28 23:10:18 -0700870 BT_DBG("chan %p suspend", chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300871}
872
873static void chan_resume_cb(struct l2cap_chan *chan)
874{
Michael Scott6dea44f2017-03-28 23:10:18 -0700875 BT_DBG("chan %p resume", chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300876}
877
878static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
879{
Jukka Rissanen2ae50d82014-09-08 12:11:43 +0300880 return L2CAP_CONN_TIMEOUT;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300881}
882
883static const struct l2cap_ops bt_6lowpan_chan_ops = {
884 .name = "L2CAP 6LoWPAN channel",
885 .new_connection = chan_new_conn_cb,
886 .recv = chan_recv_cb,
887 .close = chan_close_cb,
888 .state_change = chan_state_change_cb,
889 .ready = chan_ready_cb,
890 .resume = chan_resume_cb,
891 .suspend = chan_suspend_cb,
892 .get_sndtimeo = chan_get_sndtimeo_cb,
893 .alloc_skb = chan_alloc_skb_cb,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300894
895 .teardown = l2cap_chan_no_teardown,
896 .defer = l2cap_chan_no_defer,
897 .set_shutdown = l2cap_chan_no_set_shutdown,
898};
899
900static inline __u8 bdaddr_type(__u8 type)
901{
902 if (type == ADDR_LE_DEV_PUBLIC)
903 return BDADDR_LE_PUBLIC;
904 else
905 return BDADDR_LE_RANDOM;
906}
907
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300908static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
909{
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300910 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300911 int err;
912
Johan Hedberg26d46df2015-10-06 13:03:24 +0300913 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300914 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300915 return -EINVAL;
916
Johan Hedberg26d46df2015-10-06 13:03:24 +0300917 chan->ops = &bt_6lowpan_chan_ops;
918
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300919 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300920 addr, dst_type);
921
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300922 BT_DBG("chan %p err %d", chan, err);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300923 if (err < 0)
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300924 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300925
Jukka Rissanen18722c22013-12-11 17:05:37 +0200926 return err;
927}
928
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300929static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
930{
931 struct lowpan_peer *peer;
932
933 BT_DBG("conn %p dst type %d", conn, dst_type);
934
935 peer = lookup_peer(conn);
936 if (!peer)
937 return -ENOENT;
938
939 BT_DBG("peer %p chan %p", peer, peer->chan);
940
941 l2cap_chan_close(peer->chan, ENOENT);
942
943 return 0;
944}
945
946static struct l2cap_chan *bt_6lowpan_listen(void)
947{
948 bdaddr_t *addr = BDADDR_ANY;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300949 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300950 int err;
951
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200952 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300953 return NULL;
954
Johan Hedberg26d46df2015-10-06 13:03:24 +0300955 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300956 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300957 return NULL;
958
Johan Hedberg26d46df2015-10-06 13:03:24 +0300959 chan->ops = &bt_6lowpan_chan_ops;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300960 chan->state = BT_LISTEN;
961 chan->src_type = BDADDR_LE_PUBLIC;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300962
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300963 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
Johan Hedberg2773b022014-11-13 09:46:05 +0200964
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300965 BT_DBG("chan %p src type %d", chan, chan->src_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300966
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300967 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300968 if (err) {
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300969 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300970 BT_ERR("psm cannot be added err %d", err);
971 return NULL;
972 }
973
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300974 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300975}
976
977static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
978 struct l2cap_conn **conn)
979{
980 struct hci_conn *hcon;
981 struct hci_dev *hdev;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300982 int n;
983
984 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
985 &addr->b[5], &addr->b[4], &addr->b[3],
986 &addr->b[2], &addr->b[1], &addr->b[0],
987 addr_type);
988
989 if (n < 7)
990 return -EINVAL;
991
Johan Hedberg39385cb2016-11-12 17:03:07 +0200992 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
993 hdev = hci_get_route(addr, BDADDR_ANY, BDADDR_LE_PUBLIC);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300994 if (!hdev)
995 return -ENOENT;
996
997 hci_dev_lock(hdev);
Johan Hedbergf5ad4ff2015-10-21 18:03:02 +0300998 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300999 hci_dev_unlock(hdev);
1000
1001 if (!hcon)
1002 return -ENOENT;
1003
1004 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1005
1006 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1007
1008 return 0;
1009}
1010
1011static void disconnect_all_peers(void)
1012{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001013 struct lowpan_btle_dev *entry;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001014 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1015 struct list_head peers;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001016
1017 INIT_LIST_HEAD(&peers);
1018
1019 /* We make a separate list of peers as the close_cb() will
1020 * modify the device peers list so it is better not to mess
1021 * with the same list at the same time.
1022 */
1023
Jukka Rissanen90305822014-10-28 17:16:47 +02001024 rcu_read_lock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001025
Jukka Rissanen90305822014-10-28 17:16:47 +02001026 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1027 list_for_each_entry_rcu(peer, &entry->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001028 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1029 if (!new_peer)
1030 break;
1031
1032 new_peer->chan = peer->chan;
1033 INIT_LIST_HEAD(&new_peer->list);
1034
1035 list_add(&new_peer->list, &peers);
1036 }
1037 }
1038
Jukka Rissanen90305822014-10-28 17:16:47 +02001039 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001040
Jukka Rissanen90305822014-10-28 17:16:47 +02001041 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001042 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1043 l2cap_chan_close(peer->chan, ENOENT);
Jukka Rissanen90305822014-10-28 17:16:47 +02001044
1045 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +02001046 kfree_rcu(peer, rcu);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001047 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001048 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001049}
1050
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001051struct set_enable {
Jukka Rissanen90305822014-10-28 17:16:47 +02001052 struct work_struct work;
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001053 bool flag;
Jukka Rissanen90305822014-10-28 17:16:47 +02001054};
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001055
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001056static void do_enable_set(struct work_struct *work)
Jukka Rissanen90305822014-10-28 17:16:47 +02001057{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001058 struct set_enable *set_enable = container_of(work,
1059 struct set_enable, work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001060
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001061 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001062 /* Disconnect existing connections if 6lowpan is
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001063 * disabled
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001064 */
1065 disconnect_all_peers();
1066
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001067 enable_6lowpan = set_enable->flag;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001068
1069 if (listen_chan) {
1070 l2cap_chan_close(listen_chan, 0);
1071 l2cap_chan_put(listen_chan);
1072 }
1073
1074 listen_chan = bt_6lowpan_listen();
1075
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001076 kfree(set_enable);
Jukka Rissanen90305822014-10-28 17:16:47 +02001077}
1078
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001079static int lowpan_enable_set(void *data, u64 val)
Jukka Rissanen90305822014-10-28 17:16:47 +02001080{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001081 struct set_enable *set_enable;
Jukka Rissanen90305822014-10-28 17:16:47 +02001082
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001083 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1084 if (!set_enable)
Jukka Rissanen90305822014-10-28 17:16:47 +02001085 return -ENOMEM;
1086
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001087 set_enable->flag = !!val;
1088 INIT_WORK(&set_enable->work, do_enable_set);
Jukka Rissanen90305822014-10-28 17:16:47 +02001089
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001090 schedule_work(&set_enable->work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001091
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001092 return 0;
1093}
1094
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001095static int lowpan_enable_get(void *data, u64 *val)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001096{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001097 *val = enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001098 return 0;
1099}
1100
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001101DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1102 lowpan_enable_set, "%llu\n");
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001103
1104static ssize_t lowpan_control_write(struct file *fp,
1105 const char __user *user_buffer,
1106 size_t count,
1107 loff_t *position)
1108{
1109 char buf[32];
1110 size_t buf_size = min(count, sizeof(buf) - 1);
1111 int ret;
1112 bdaddr_t addr;
1113 u8 addr_type;
1114 struct l2cap_conn *conn = NULL;
1115
1116 if (copy_from_user(buf, user_buffer, buf_size))
1117 return -EFAULT;
1118
1119 buf[buf_size] = '\0';
1120
1121 if (memcmp(buf, "connect ", 8) == 0) {
1122 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1123 if (ret == -EINVAL)
1124 return ret;
1125
1126 if (listen_chan) {
1127 l2cap_chan_close(listen_chan, 0);
1128 l2cap_chan_put(listen_chan);
1129 listen_chan = NULL;
1130 }
1131
1132 if (conn) {
1133 struct lowpan_peer *peer;
1134
1135 if (!is_bt_6lowpan(conn->hcon))
1136 return -EINVAL;
1137
1138 peer = lookup_peer(conn);
1139 if (peer) {
1140 BT_DBG("6LoWPAN connection already exists");
1141 return -EALREADY;
1142 }
1143
1144 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1145 &conn->hcon->dst, conn->hcon->dst_type,
1146 addr_type);
1147 }
1148
1149 ret = bt_6lowpan_connect(&addr, addr_type);
1150 if (ret < 0)
1151 return ret;
1152
1153 return count;
1154 }
1155
1156 if (memcmp(buf, "disconnect ", 11) == 0) {
1157 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1158 if (ret < 0)
1159 return ret;
1160
1161 ret = bt_6lowpan_disconnect(conn, addr_type);
1162 if (ret < 0)
1163 return ret;
1164
1165 return count;
1166 }
1167
1168 return count;
1169}
1170
1171static int lowpan_control_show(struct seq_file *f, void *ptr)
1172{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001173 struct lowpan_btle_dev *entry;
Jukka Rissanen90305822014-10-28 17:16:47 +02001174 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001175
Jukka Rissanen90305822014-10-28 17:16:47 +02001176 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001177
Jukka Rissanen90305822014-10-28 17:16:47 +02001178 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1179 list_for_each_entry(peer, &entry->peers, list)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001180 seq_printf(f, "%pMR (type %u)\n",
1181 &peer->chan->dst, peer->chan->dst_type);
1182 }
1183
Jukka Rissanen90305822014-10-28 17:16:47 +02001184 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001185
1186 return 0;
1187}
1188
1189static int lowpan_control_open(struct inode *inode, struct file *file)
1190{
1191 return single_open(file, lowpan_control_show, inode->i_private);
1192}
1193
1194static const struct file_operations lowpan_control_fops = {
1195 .open = lowpan_control_open,
1196 .read = seq_read,
1197 .write = lowpan_control_write,
1198 .llseek = seq_lseek,
1199 .release = single_release,
1200};
1201
Jukka Rissanen7f118252014-06-18 16:37:11 +03001202static void disconnect_devices(void)
1203{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001204 struct lowpan_btle_dev *entry, *tmp, *new_dev;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001205 struct list_head devices;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001206
1207 INIT_LIST_HEAD(&devices);
1208
1209 /* We make a separate list of devices because the unregister_netdev()
1210 * will call device_event() which will also want to modify the same
1211 * devices list.
1212 */
1213
Jukka Rissanen90305822014-10-28 17:16:47 +02001214 rcu_read_lock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001215
Jukka Rissanen90305822014-10-28 17:16:47 +02001216 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001217 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1218 if (!new_dev)
1219 break;
1220
1221 new_dev->netdev = entry->netdev;
1222 INIT_LIST_HEAD(&new_dev->list);
1223
Jukka Rissanen90305822014-10-28 17:16:47 +02001224 list_add_rcu(&new_dev->list, &devices);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001225 }
1226
Jukka Rissanen90305822014-10-28 17:16:47 +02001227 rcu_read_unlock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001228
Dan Carpenterdaac1972014-10-29 19:10:57 +03001229 list_for_each_entry_safe(entry, tmp, &devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001230 ifdown(entry->netdev);
1231 BT_DBG("Unregistering netdev %s %p",
1232 entry->netdev->name, entry->netdev);
Alexander Aring00f59312015-12-09 22:46:29 +01001233 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001234 kfree(entry);
1235 }
1236}
1237
Jukka Rissanen18722c22013-12-11 17:05:37 +02001238static int device_event(struct notifier_block *unused,
1239 unsigned long event, void *ptr)
1240{
1241 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001242 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +02001243
1244 if (netdev->type != ARPHRD_6LOWPAN)
1245 return NOTIFY_DONE;
1246
1247 switch (event) {
1248 case NETDEV_UNREGISTER:
Jukka Rissanen90305822014-10-28 17:16:47 +02001249 spin_lock(&devices_lock);
1250 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +02001251 if (entry->netdev == netdev) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001252 BT_DBG("Unregistered netdev %s %p",
1253 netdev->name, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001254 list_del(&entry->list);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001255 break;
1256 }
1257 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001258 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001259 break;
1260 }
1261
1262 return NOTIFY_DONE;
1263}
1264
1265static struct notifier_block bt_6lowpan_dev_notifier = {
1266 .notifier_call = device_event,
1267};
1268
Jukka Rissanen5547e482014-06-18 16:37:09 +03001269static int __init bt_6lowpan_init(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001270{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001271 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1272 bt_debugfs, NULL,
1273 &lowpan_enable_fops);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001274 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1275 bt_debugfs, NULL,
1276 &lowpan_control_fops);
1277
Jukka Rissanen18722c22013-12-11 17:05:37 +02001278 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1279}
1280
Jukka Rissanen5547e482014-06-18 16:37:09 +03001281static void __exit bt_6lowpan_exit(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001282{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001283 debugfs_remove(lowpan_enable_debugfs);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001284 debugfs_remove(lowpan_control_debugfs);
1285
1286 if (listen_chan) {
1287 l2cap_chan_close(listen_chan, 0);
1288 l2cap_chan_put(listen_chan);
1289 }
1290
Jukka Rissanen7f118252014-06-18 16:37:11 +03001291 disconnect_devices();
1292
Jukka Rissanen18722c22013-12-11 17:05:37 +02001293 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1294}
Jukka Rissanen5547e482014-06-18 16:37:09 +03001295
1296module_init(bt_6lowpan_init);
1297module_exit(bt_6lowpan_exit);
1298
1299MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1300MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1301MODULE_VERSION(VERSION);
1302MODULE_LICENSE("GPL");