blob: 9d79c7de234a968683cb956318041b1fe503f74d [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>
Luiz Augusto von Dentz814f1b22017-04-11 22:21:02 +030023#include <net/pkt_sched.h>
Jukka Rissanen18722c22013-12-11 17:05:37 +020024
Jukka Rissanen18722c22013-12-11 17:05:37 +020025#include <net/bluetooth/bluetooth.h>
26#include <net/bluetooth/hci_core.h>
27#include <net/bluetooth/l2cap.h>
28
Alexander Aringcefc8c82014-03-05 14:29:05 +010029#include <net/6lowpan.h> /* for the compression support */
Jukka Rissanen18722c22013-12-11 17:05:37 +020030
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030031#define VERSION "0.1"
32
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020033static struct dentry *lowpan_enable_debugfs;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030034static struct dentry *lowpan_control_debugfs;
35
Jukka Rissanen18722c22013-12-11 17:05:37 +020036#define IFACE_NAME_TEMPLATE "bt%d"
Jukka Rissanen18722c22013-12-11 17:05:37 +020037
38struct skb_cb {
39 struct in6_addr addr;
Jukka Rissanen39e90c72014-09-08 12:11:45 +030040 struct in6_addr gw;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030041 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020042};
43#define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
44
45/* The devices list contains those devices that we are acting
46 * as a proxy. The BT 6LoWPAN device is a virtual device that
47 * connects to the Bluetooth LE device. The real connection to
48 * BT device is done via l2cap layer. There exists one
49 * virtual device / one BT 6LoWPAN network (=hciX device).
50 * The list contains struct lowpan_dev elements.
51 */
52static LIST_HEAD(bt_6lowpan_devices);
Jukka Rissanen90305822014-10-28 17:16:47 +020053static DEFINE_SPINLOCK(devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +020054
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020055static bool enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030056
57/* We are listening incoming connections via this channel
58 */
59static struct l2cap_chan *listen_chan;
60
Jukka Rissanen18722c22013-12-11 17:05:37 +020061struct lowpan_peer {
62 struct list_head list;
Jukka Rissanen90305822014-10-28 17:16:47 +020063 struct rcu_head rcu;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030064 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020065
66 /* peer addresses in various formats */
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +020067 unsigned char lladdr[ETH_ALEN];
Jukka Rissanen18722c22013-12-11 17:05:37 +020068 struct in6_addr peer_addr;
69};
70
Alexander Aring2e4d60c2016-04-11 11:04:18 +020071struct lowpan_btle_dev {
Jukka Rissanen18722c22013-12-11 17:05:37 +020072 struct list_head list;
73
74 struct hci_dev *hdev;
75 struct net_device *netdev;
76 struct list_head peers;
77 atomic_t peer_count; /* number of items in peers list */
78
79 struct work_struct delete_netdev;
80 struct delayed_work notify_peers;
81};
82
Alexander Aring2e4d60c2016-04-11 11:04:18 +020083static inline struct lowpan_btle_dev *
84lowpan_btle_dev(const struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +020085{
Alexander Aring2e4d60c2016-04-11 11:04:18 +020086 return (struct lowpan_btle_dev *)lowpan_dev(netdev)->priv;
Jukka Rissanen18722c22013-12-11 17:05:37 +020087}
88
Alexander Aring2e4d60c2016-04-11 11:04:18 +020089static inline void peer_add(struct lowpan_btle_dev *dev,
90 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020091{
Jukka Rissanen90305822014-10-28 17:16:47 +020092 list_add_rcu(&peer->list, &dev->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +020093 atomic_inc(&dev->peer_count);
94}
95
Alexander Aring2e4d60c2016-04-11 11:04:18 +020096static inline bool peer_del(struct lowpan_btle_dev *dev,
97 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020098{
Jukka Rissanen90305822014-10-28 17:16:47 +020099 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +0200100 kfree_rcu(peer, rcu);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200101
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300102 module_put(THIS_MODULE);
103
Jukka Rissanen18722c22013-12-11 17:05:37 +0200104 if (atomic_dec_and_test(&dev->peer_count)) {
105 BT_DBG("last peer");
106 return true;
107 }
108
109 return false;
110}
111
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200112static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_btle_dev *dev,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200113 bdaddr_t *ba, __u8 type)
114{
Jukka Rissanen90305822014-10-28 17:16:47 +0200115 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200116
117 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
118 ba, type);
119
Jukka Rissanen90305822014-10-28 17:16:47 +0200120 rcu_read_lock();
121
122 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300123 BT_DBG("dst addr %pMR dst type %d",
124 &peer->chan->dst, peer->chan->dst_type);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200125
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300126 if (bacmp(&peer->chan->dst, ba))
Jukka Rissanen18722c22013-12-11 17:05:37 +0200127 continue;
128
Jukka Rissanen90305822014-10-28 17:16:47 +0200129 if (type == peer->chan->dst_type) {
130 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300131 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200132 }
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300133 }
134
Jukka Rissanen90305822014-10-28 17:16:47 +0200135 rcu_read_unlock();
136
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300137 return NULL;
138}
139
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200140static inline struct lowpan_peer *
141__peer_lookup_chan(struct lowpan_btle_dev *dev, struct l2cap_chan *chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300142{
Jukka Rissanen90305822014-10-28 17:16:47 +0200143 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300144
Jukka Rissanen90305822014-10-28 17:16:47 +0200145 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300146 if (peer->chan == chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200147 return peer;
148 }
149
150 return NULL;
151}
152
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200153static inline struct lowpan_peer *
154__peer_lookup_conn(struct lowpan_btle_dev *dev, struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200155{
Jukka Rissanen90305822014-10-28 17:16:47 +0200156 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200157
Jukka Rissanen90305822014-10-28 17:16:47 +0200158 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300159 if (peer->chan->conn == conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200160 return peer;
161 }
162
163 return NULL;
164}
165
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200166static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev,
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300167 struct in6_addr *daddr,
168 struct sk_buff *skb)
169{
Jukka Rissanen90305822014-10-28 17:16:47 +0200170 struct lowpan_peer *peer;
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300171 struct in6_addr *nexthop;
172 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
173 int count = atomic_read(&dev->peer_count);
174
175 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
176
177 /* If we have multiple 6lowpan peers, then check where we should
178 * send the packet. If only one peer exists, then we can send the
179 * packet right away.
180 */
Jukka Rissanen90305822014-10-28 17:16:47 +0200181 if (count == 1) {
182 rcu_read_lock();
183 peer = list_first_or_null_rcu(&dev->peers, struct lowpan_peer,
184 list);
185 rcu_read_unlock();
186 return peer;
187 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300188
189 if (!rt) {
190 nexthop = &lowpan_cb(skb)->gw;
191
192 if (ipv6_addr_any(nexthop))
193 return NULL;
194 } else {
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700195 nexthop = rt6_nexthop(rt, daddr);
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300196
197 /* We need to remember the address because it is needed
198 * by bt_xmit() when sending the packet. In bt_xmit(), the
199 * destination routing info is not set.
200 */
201 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
202 }
203
204 BT_DBG("gw %pI6c", nexthop);
205
Jukka Rissanen90305822014-10-28 17:16:47 +0200206 rcu_read_lock();
207
208 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300209 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
210 &peer->chan->dst, peer->chan->dst_type,
211 &peer->peer_addr);
212
Jukka Rissanen90305822014-10-28 17:16:47 +0200213 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
214 rcu_read_unlock();
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300215 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200216 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300217 }
218
Jukka Rissanen90305822014-10-28 17:16:47 +0200219 rcu_read_unlock();
220
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300221 return NULL;
222}
223
Jukka Rissanen18722c22013-12-11 17:05:37 +0200224static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
225{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200226 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200227 struct lowpan_peer *peer = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200228
Jukka Rissanen90305822014-10-28 17:16:47 +0200229 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200230
Jukka Rissanen90305822014-10-28 17:16:47 +0200231 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
232 peer = __peer_lookup_conn(entry, conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200233 if (peer)
234 break;
235 }
236
Jukka Rissanen90305822014-10-28 17:16:47 +0200237 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200238
239 return peer;
240}
241
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200242static struct lowpan_btle_dev *lookup_dev(struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200243{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200244 struct lowpan_btle_dev *entry;
245 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200246
Jukka Rissanen90305822014-10-28 17:16:47 +0200247 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200248
Jukka Rissanen90305822014-10-28 17:16:47 +0200249 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +0200250 if (conn->hcon->hdev == entry->hdev) {
251 dev = entry;
252 break;
253 }
254 }
255
Jukka Rissanen90305822014-10-28 17:16:47 +0200256 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200257
258 return dev;
259}
260
Jukka Rissanen18722c22013-12-11 17:05:37 +0200261static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
262{
263 struct sk_buff *skb_cp;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200264
265 skb_cp = skb_copy(skb, GFP_ATOMIC);
266 if (!skb_cp)
Martin Townsendf8b36172014-10-23 15:40:53 +0100267 return NET_RX_DROP;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200268
Alexander Aring324e7862015-10-27 08:35:24 +0100269 return netif_rx_ni(skb_cp);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200270}
271
Martin Townsend01141232014-10-23 15:40:56 +0100272static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300273 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200274{
Patrik Flyktc259d142017-03-12 10:19:33 +0200275 const u8 *saddr;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200276
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200277 saddr = peer->lladdr;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200278
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200279 return lowpan_header_decompress(skb, netdev, netdev->dev_addr, saddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200280}
281
282static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300283 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200284{
285 struct sk_buff *local_skb;
286 int ret;
287
288 if (!netif_running(dev))
289 goto drop;
290
Alexander Aringcefdb802015-10-13 13:42:55 +0200291 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200292 goto drop;
293
Alexander Aringcefdb802015-10-13 13:42:55 +0200294 skb_reset_network_header(skb);
295
Martin Townsend11e3ff702014-10-13 11:00:56 +0100296 skb = skb_share_check(skb, GFP_ATOMIC);
297 if (!skb)
298 goto drop;
299
Jukka Rissanen18722c22013-12-11 17:05:37 +0200300 /* check that it's our buffer */
Alexander Aringcefdb802015-10-13 13:42:55 +0200301 if (lowpan_is_ipv6(*skb_network_header(skb))) {
Lukasz Duda87f5fed2016-01-13 16:57:48 +0100302 /* Pull off the 1-byte of 6lowpan header. */
303 skb_pull(skb, 1);
304
Jukka Rissanen18722c22013-12-11 17:05:37 +0200305 /* Copy the packet so that the IPv6 header is
306 * properly aligned.
307 */
308 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
309 skb_tailroom(skb), GFP_ATOMIC);
310 if (!local_skb)
311 goto drop;
312
313 local_skb->protocol = htons(ETH_P_IPV6);
314 local_skb->pkt_type = PACKET_HOST;
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100315 local_skb->dev = dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200316
Jukka Rissanen18722c22013-12-11 17:05:37 +0200317 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
318
319 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
320 kfree_skb(local_skb);
321 goto drop;
322 }
323
324 dev->stats.rx_bytes += skb->len;
325 dev->stats.rx_packets++;
326
Martin Townsend3c400b82014-10-23 15:40:55 +0100327 consume_skb(local_skb);
328 consume_skb(skb);
Alexander Aringcefdb802015-10-13 13:42:55 +0200329 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
330 local_skb = skb_clone(skb, GFP_ATOMIC);
331 if (!local_skb)
332 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200333
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100334 local_skb->dev = dev;
335
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300336 ret = iphc_decompress(local_skb, dev, peer);
Alexander Aringcefdb802015-10-13 13:42:55 +0200337 if (ret < 0) {
Luiz Augusto von Dentzda75fdc2017-04-03 17:48:56 +0300338 BT_DBG("iphc_decompress failed: %d", ret);
Alexander Aringcefdb802015-10-13 13:42:55 +0200339 kfree_skb(local_skb);
340 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200341 }
Alexander Aringcefdb802015-10-13 13:42:55 +0200342
343 local_skb->protocol = htons(ETH_P_IPV6);
344 local_skb->pkt_type = PACKET_HOST;
Alexander Aringcefdb802015-10-13 13:42:55 +0200345
346 if (give_skb_to_upper(local_skb, dev)
347 != NET_RX_SUCCESS) {
348 kfree_skb(local_skb);
349 goto drop;
350 }
351
352 dev->stats.rx_bytes += skb->len;
353 dev->stats.rx_packets++;
354
355 consume_skb(local_skb);
356 consume_skb(skb);
357 } else {
Luiz Augusto von Dentzda75fdc2017-04-03 17:48:56 +0300358 BT_DBG("unknown packet type");
Alexander Aringcefdb802015-10-13 13:42:55 +0200359 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200360 }
361
362 return NET_RX_SUCCESS;
363
364drop:
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300365 dev->stats.rx_dropped++;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200366 return NET_RX_DROP;
367}
368
369/* Packet from BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300370static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200371{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200372 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200373 struct lowpan_peer *peer;
374 int err;
375
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300376 peer = lookup_peer(chan->conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200377 if (!peer)
378 return -ENOENT;
379
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300380 dev = lookup_dev(chan->conn);
Johan Hedberg30d3db42013-12-12 09:53:21 +0200381 if (!dev || !dev->netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200382 return -ENOENT;
383
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300384 err = recv_pkt(skb, dev->netdev, peer);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300385 if (err) {
386 BT_DBG("recv pkt %d", err);
387 err = -EAGAIN;
388 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200389
390 return err;
391}
392
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300393static int setup_header(struct sk_buff *skb, struct net_device *netdev,
394 bdaddr_t *peer_addr, u8 *peer_addr_type)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200395{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300396 struct in6_addr ipv6_daddr;
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200397 struct ipv6hdr *hdr;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200398 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200399 struct lowpan_peer *peer;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200400 u8 *daddr;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300401 int err, status = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200402
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200403 hdr = ipv6_hdr(skb);
404
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200405 dev = lowpan_btle_dev(netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200406
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200407 memcpy(&ipv6_daddr, &hdr->daddr, sizeof(ipv6_daddr));
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300408
409 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300410 lowpan_cb(skb)->chan = NULL;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200411 daddr = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200412 } else {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200413 BT_DBG("dest IP %pI6c", &ipv6_daddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200414
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200415 /* The packet might be sent to 6lowpan interface
416 * because of routing (either via default route
417 * or user set route) so get peer according to
418 * the destination address.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200419 */
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200420 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200421 if (!peer) {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200422 BT_DBG("no such peer");
423 return -ENOENT;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200424 }
425
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200426 daddr = peer->lladdr;
Colin Ian Kingfa0eaf82017-03-28 13:11:29 +0100427 *peer_addr = peer->chan->dst;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200428 *peer_addr_type = peer->chan->dst_type;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300429 lowpan_cb(skb)->chan = peer->chan;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300430
431 status = 1;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200432 }
433
Alexander Aringa6f77382015-10-13 13:42:57 +0200434 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200435
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300436 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
437 if (err < 0)
438 return err;
439
440 return status;
441}
442
443static int header_create(struct sk_buff *skb, struct net_device *netdev,
444 unsigned short type, const void *_daddr,
445 const void *_saddr, unsigned int len)
446{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300447 if (type != ETH_P_IPV6)
448 return -EINVAL;
449
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300450 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200451}
452
453/* Packet to BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300454static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300455 struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200456{
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300457 struct msghdr msg;
458 struct kvec iv;
459 int err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200460
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300461 /* Remember the skb so that we can send EAGAIN to the caller if
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300462 * we run out of credits.
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300463 */
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300464 chan->data = skb;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300465
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300466 iv.iov_base = skb->data;
467 iv.iov_len = skb->len;
468
Al Viroc0371da2014-11-24 10:42:55 -0500469 memset(&msg, 0, sizeof(msg));
David Howellsaa563d72018-10-20 00:57:56 +0100470 iov_iter_kvec(&msg.msg_iter, WRITE, &iv, 1, skb->len);
Al Viroc0371da2014-11-24 10:42:55 -0500471
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300472 err = l2cap_chan_send(chan, &msg, skb->len);
473 if (err > 0) {
474 netdev->stats.tx_bytes += err;
475 netdev->stats.tx_packets++;
476 return 0;
477 }
478
Luiz Augusto von Dentze1008f92017-04-11 22:20:59 +0300479 if (err < 0)
480 netdev->stats.tx_errors++;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300481
482 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200483}
484
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300485static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200486{
487 struct sk_buff *local_skb;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200488 struct lowpan_btle_dev *entry;
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300489 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200490
Jukka Rissanen90305822014-10-28 17:16:47 +0200491 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200492
Jukka Rissanen90305822014-10-28 17:16:47 +0200493 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
494 struct lowpan_peer *pentry;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200495 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200496
497 if (entry->netdev != netdev)
498 continue;
499
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200500 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200501
Jukka Rissanen90305822014-10-28 17:16:47 +0200502 list_for_each_entry_rcu(pentry, &dev->peers, list) {
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300503 int ret;
504
Jukka Rissanen18722c22013-12-11 17:05:37 +0200505 local_skb = skb_clone(skb, GFP_ATOMIC);
506
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300507 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
508 netdev->name,
509 &pentry->chan->dst, pentry->chan->dst_type,
510 &pentry->peer_addr, pentry->chan);
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300511 ret = send_pkt(pentry->chan, local_skb, netdev);
512 if (ret < 0)
513 err = ret;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200514
515 kfree_skb(local_skb);
516 }
517 }
518
Jukka Rissanen90305822014-10-28 17:16:47 +0200519 rcu_read_unlock();
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300520
521 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200522}
523
524static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
525{
526 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200527 bdaddr_t addr;
528 u8 addr_type;
529
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300530 /* We must take a copy of the skb before we modify/replace the ipv6
531 * header as the header could be used elsewhere
532 */
Alexander Aringb0c42cd2014-10-08 10:24:53 +0200533 skb = skb_unshare(skb, GFP_ATOMIC);
534 if (!skb)
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300535 return NET_XMIT_DROP;
536
537 /* Return values from setup_header()
538 * <0 - error, packet is dropped
539 * 0 - this is a multicast packet
540 * 1 - this is unicast packet
541 */
542 err = setup_header(skb, netdev, &addr, &addr_type);
543 if (err < 0) {
544 kfree_skb(skb);
545 return NET_XMIT_DROP;
546 }
547
548 if (err) {
549 if (lowpan_cb(skb)->chan) {
550 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
551 netdev->name, &addr, addr_type,
552 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300553 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300554 } else {
555 err = -ENOENT;
556 }
557 } else {
558 /* We need to send the packet to every device behind this
559 * interface.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200560 */
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300561 err = send_mcast_pkt(skb, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200562 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200563
Jukka Rissanenfc125182014-10-01 11:30:26 +0300564 dev_kfree_skb(skb);
565
Jukka Rissanen18722c22013-12-11 17:05:37 +0200566 if (err)
567 BT_DBG("ERROR: xmit failed (%d)", err);
568
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300569 return err < 0 ? NET_XMIT_DROP : err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200570}
571
Jukka Rissanendf092302014-10-28 17:16:48 +0200572static int bt_dev_init(struct net_device *dev)
573{
Eric Dumazetd3fff6c2016-06-09 07:45:12 -0700574 netdev_lockdep_set_classes(dev);
Jukka Rissanendf092302014-10-28 17:16:48 +0200575
576 return 0;
577}
578
Jukka Rissanen18722c22013-12-11 17:05:37 +0200579static const struct net_device_ops netdev_ops = {
Jukka Rissanendf092302014-10-28 17:16:48 +0200580 .ndo_init = bt_dev_init,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200581 .ndo_start_xmit = bt_xmit,
582};
583
584static struct header_ops header_ops = {
585 .create = header_create,
586};
587
588static void netdev_setup(struct net_device *dev)
589{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200590 dev->hard_header_len = 0;
591 dev->needed_tailroom = 0;
Patrik Flykt25869522017-04-11 22:21:03 +0300592 dev->flags = IFF_RUNNING | IFF_MULTICAST;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200593 dev->watchdog_timeo = 0;
Luiz Augusto von Dentz814f1b22017-04-11 22:21:02 +0300594 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200595
596 dev->netdev_ops = &netdev_ops;
597 dev->header_ops = &header_ops;
David S. Millercf124db2017-05-08 12:52:56 -0400598 dev->needs_free_netdev = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200599}
600
601static struct device_type bt_type = {
602 .name = "bluetooth",
603};
604
Jukka Rissanen18722c22013-12-11 17:05:37 +0200605static void ifup(struct net_device *netdev)
606{
607 int err;
608
609 rtnl_lock();
Petr Machata00f54e62018-12-06 17:05:36 +0000610 err = dev_open(netdev, NULL);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200611 if (err < 0)
612 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
613 rtnl_unlock();
614}
615
Jukka Rissanen7f118252014-06-18 16:37:11 +0300616static void ifdown(struct net_device *netdev)
617{
Jukka Rissanen7f118252014-06-18 16:37:11 +0300618 rtnl_lock();
stephen hemmingerddee3102017-07-18 15:59:25 -0700619 dev_close(netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +0300620 rtnl_unlock();
621}
622
Jukka Rissanen18722c22013-12-11 17:05:37 +0200623static void do_notify_peers(struct work_struct *work)
624{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200625 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
626 notify_peers.work);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200627
628 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
629}
630
631static bool is_bt_6lowpan(struct hci_conn *hcon)
632{
633 if (hcon->type != LE_LINK)
634 return false;
635
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200636 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300637 return false;
638
639 return true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200640}
641
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300642static struct l2cap_chan *chan_create(void)
643{
644 struct l2cap_chan *chan;
645
646 chan = l2cap_chan_create();
647 if (!chan)
648 return NULL;
649
650 l2cap_chan_set_defaults(chan);
651
652 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
653 chan->mode = L2CAP_MODE_LE_FLOWCTL;
Johan Hedberg301de2c2015-10-06 13:03:19 +0300654 chan->imtu = 1280;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300655
656 return chan;
657}
658
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300659static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
Michael Scottd2891c42017-03-28 23:10:54 -0700660 struct lowpan_btle_dev *dev,
661 bool new_netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200662{
663 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200664
665 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
666 if (!peer)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300667 return NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200668
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300669 peer->chan = chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200670 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
671
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200672 baswap((void *)peer->lladdr, &chan->dst);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200673
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200674 lowpan_iphc_uncompress_eui48_lladdr(&peer->peer_addr, peer->lladdr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200675
Jukka Rissanen90305822014-10-28 17:16:47 +0200676 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200677 INIT_LIST_HEAD(&peer->list);
678 peer_add(dev, peer);
Jukka Rissanen90305822014-10-28 17:16:47 +0200679 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200680
681 /* Notifying peers about us needs to be done without locks held */
Michael Scottd2891c42017-03-28 23:10:54 -0700682 if (new_netdev)
683 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200684 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
685
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300686 return peer->chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200687}
688
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200689static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200690{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200691 struct net_device *netdev;
692 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200693
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200694 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
Alexander Aringb72f6f52015-08-11 21:44:08 +0200695 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
696 netdev_setup);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200697 if (!netdev)
698 return -ENOMEM;
699
Patrik Flyktc259d142017-03-12 10:19:33 +0200700 netdev->addr_assign_type = NET_ADDR_PERM;
701 baswap((void *)netdev->dev_addr, &chan->src);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200702
703 netdev->netdev_ops = &netdev_ops;
Glenn Ruben Bakkefc842422015-06-17 07:32:25 -0700704 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200705 SET_NETDEV_DEVTYPE(netdev, &bt_type);
706
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200707 *dev = lowpan_btle_dev(netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300708 (*dev)->netdev = netdev;
709 (*dev)->hdev = chan->conn->hcon->hdev;
710 INIT_LIST_HEAD(&(*dev)->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200711
Jukka Rissanen90305822014-10-28 17:16:47 +0200712 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300713 INIT_LIST_HEAD(&(*dev)->list);
Jukka Rissanen90305822014-10-28 17:16:47 +0200714 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
715 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200716
Alexander Aring00f59312015-12-09 22:46:29 +0100717 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
Alexander Aring5857d1d2015-07-30 09:40:53 +0200718 if (err < 0) {
719 BT_INFO("register_netdev failed %d", err);
720 spin_lock(&devices_lock);
721 list_del_rcu(&(*dev)->list);
722 spin_unlock(&devices_lock);
723 free_netdev(netdev);
724 goto out;
725 }
726
727 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
728 netdev->ifindex, &chan->dst, chan->dst_type,
729 &chan->src, chan->src_type);
730 set_bit(__LINK_STATE_PRESENT, &netdev->state);
731
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300732 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200733
734out:
735 return err;
736}
737
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300738static inline void chan_ready_cb(struct l2cap_chan *chan)
739{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200740 struct lowpan_btle_dev *dev;
Michael Scottd2891c42017-03-28 23:10:54 -0700741 bool new_netdev = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300742
743 dev = lookup_dev(chan->conn);
744
745 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
746
747 if (!dev) {
748 if (setup_netdev(chan, &dev) < 0) {
749 l2cap_chan_del(chan, -ENOENT);
750 return;
751 }
Michael Scottd2891c42017-03-28 23:10:54 -0700752 new_netdev = true;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300753 }
754
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300755 if (!try_module_get(THIS_MODULE))
756 return;
757
Michael Scottd2891c42017-03-28 23:10:54 -0700758 add_peer_chan(chan, dev, new_netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300759 ifup(dev->netdev);
760}
761
Johan Hedberg2b293492014-08-07 10:03:32 +0300762static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300763{
Johan Hedberg2b293492014-08-07 10:03:32 +0300764 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300765
Johan Hedberg630ef792015-10-06 13:03:22 +0300766 chan = chan_create();
767 if (!chan)
768 return NULL;
769
Johan Hedberg2b293492014-08-07 10:03:32 +0300770 chan->ops = pchan->ops;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300771
772 BT_DBG("chan %p pchan %p", chan, pchan);
773
Johan Hedberg2b293492014-08-07 10:03:32 +0300774 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300775}
776
Jukka Rissanen18722c22013-12-11 17:05:37 +0200777static void delete_netdev(struct work_struct *work)
778{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200779 struct lowpan_btle_dev *entry = container_of(work,
780 struct lowpan_btle_dev,
781 delete_netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200782
Alexander Aring00f59312015-12-09 22:46:29 +0100783 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200784
Glenn Ruben Bakke2ad88fb2015-06-17 07:32:26 -0700785 /* The entry pointer is deleted by the netdev destructor. */
Jukka Rissanen18722c22013-12-11 17:05:37 +0200786}
787
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300788static void chan_close_cb(struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200789{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200790 struct lowpan_btle_dev *entry;
791 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200792 struct lowpan_peer *peer;
793 int err = -ENOENT;
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700794 bool last = false, remove = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200795
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300796 BT_DBG("chan %p conn %p", chan, chan->conn);
797
798 if (chan->conn && chan->conn->hcon) {
799 if (!is_bt_6lowpan(chan->conn->hcon))
800 return;
801
802 /* If conn is set, then the netdev is also there and we should
803 * not remove it.
804 */
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700805 remove = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300806 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200807
Jukka Rissanen90305822014-10-28 17:16:47 +0200808 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200809
Jukka Rissanen90305822014-10-28 17:16:47 +0200810 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200811 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen90305822014-10-28 17:16:47 +0200812 peer = __peer_lookup_chan(dev, chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200813 if (peer) {
814 last = peer_del(dev, peer);
815 err = 0;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300816
817 BT_DBG("dev %p removing %speer %p", dev,
818 last ? "last " : "1 ", peer);
819 BT_DBG("chan %p orig refcnt %d", chan,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100820 kref_read(&chan->kref));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300821
822 l2cap_chan_put(chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200823 break;
824 }
825 }
826
827 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
Jukka Rissanen90305822014-10-28 17:16:47 +0200828 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200829
830 cancel_delayed_work_sync(&dev->notify_peers);
831
Jukka Rissanen7f118252014-06-18 16:37:11 +0300832 ifdown(dev->netdev);
833
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700834 if (remove) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300835 INIT_WORK(&entry->delete_netdev, delete_netdev);
836 schedule_work(&entry->delete_netdev);
837 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200838 } else {
Jukka Rissanen90305822014-10-28 17:16:47 +0200839 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200840 }
841
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300842 return;
843}
844
845static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
846{
847 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
848 state_to_string(state), err);
849}
850
851static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
852 unsigned long hdr_len,
853 unsigned long len, int nb)
854{
855 /* Note that we must allocate using GFP_ATOMIC here as
856 * this function is called originally from netdev hard xmit
857 * function in atomic context.
858 */
859 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
860}
861
862static void chan_suspend_cb(struct l2cap_chan *chan)
863{
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300864 struct lowpan_btle_dev *dev;
865
Michael Scott6dea44f2017-03-28 23:10:18 -0700866 BT_DBG("chan %p suspend", chan);
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300867
868 dev = lookup_dev(chan->conn);
869 if (!dev || !dev->netdev)
870 return;
871
872 netif_stop_queue(dev->netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300873}
874
875static void chan_resume_cb(struct l2cap_chan *chan)
876{
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300877 struct lowpan_btle_dev *dev;
878
Michael Scott6dea44f2017-03-28 23:10:18 -0700879 BT_DBG("chan %p resume", chan);
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300880
881 dev = lookup_dev(chan->conn);
882 if (!dev || !dev->netdev)
883 return;
884
885 netif_wake_queue(dev->netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300886}
887
888static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
889{
Jukka Rissanen2ae50d82014-09-08 12:11:43 +0300890 return L2CAP_CONN_TIMEOUT;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300891}
892
893static const struct l2cap_ops bt_6lowpan_chan_ops = {
894 .name = "L2CAP 6LoWPAN channel",
895 .new_connection = chan_new_conn_cb,
896 .recv = chan_recv_cb,
897 .close = chan_close_cb,
898 .state_change = chan_state_change_cb,
899 .ready = chan_ready_cb,
900 .resume = chan_resume_cb,
901 .suspend = chan_suspend_cb,
902 .get_sndtimeo = chan_get_sndtimeo_cb,
903 .alloc_skb = chan_alloc_skb_cb,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300904
905 .teardown = l2cap_chan_no_teardown,
906 .defer = l2cap_chan_no_defer,
907 .set_shutdown = l2cap_chan_no_set_shutdown,
908};
909
910static inline __u8 bdaddr_type(__u8 type)
911{
912 if (type == ADDR_LE_DEV_PUBLIC)
913 return BDADDR_LE_PUBLIC;
914 else
915 return BDADDR_LE_RANDOM;
916}
917
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300918static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
919{
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300920 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300921 int err;
922
Johan Hedberg26d46df2015-10-06 13:03:24 +0300923 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300924 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300925 return -EINVAL;
926
Johan Hedberg26d46df2015-10-06 13:03:24 +0300927 chan->ops = &bt_6lowpan_chan_ops;
928
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300929 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300930 addr, dst_type);
931
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300932 BT_DBG("chan %p err %d", chan, err);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300933 if (err < 0)
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300934 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300935
Jukka Rissanen18722c22013-12-11 17:05:37 +0200936 return err;
937}
938
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300939static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
940{
941 struct lowpan_peer *peer;
942
943 BT_DBG("conn %p dst type %d", conn, dst_type);
944
945 peer = lookup_peer(conn);
946 if (!peer)
947 return -ENOENT;
948
949 BT_DBG("peer %p chan %p", peer, peer->chan);
950
951 l2cap_chan_close(peer->chan, ENOENT);
952
953 return 0;
954}
955
956static struct l2cap_chan *bt_6lowpan_listen(void)
957{
958 bdaddr_t *addr = BDADDR_ANY;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300959 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300960 int err;
961
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200962 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300963 return NULL;
964
Johan Hedberg26d46df2015-10-06 13:03:24 +0300965 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300966 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300967 return NULL;
968
Johan Hedberg26d46df2015-10-06 13:03:24 +0300969 chan->ops = &bt_6lowpan_chan_ops;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300970 chan->state = BT_LISTEN;
971 chan->src_type = BDADDR_LE_PUBLIC;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300972
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300973 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
Johan Hedberg2773b022014-11-13 09:46:05 +0200974
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300975 BT_DBG("chan %p src type %d", chan, chan->src_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300976
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300977 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300978 if (err) {
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300979 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300980 BT_ERR("psm cannot be added err %d", err);
981 return NULL;
982 }
983
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300984 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300985}
986
987static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
988 struct l2cap_conn **conn)
989{
990 struct hci_conn *hcon;
991 struct hci_dev *hdev;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300992 int n;
993
994 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
995 &addr->b[5], &addr->b[4], &addr->b[3],
996 &addr->b[2], &addr->b[1], &addr->b[0],
997 addr_type);
998
999 if (n < 7)
1000 return -EINVAL;
1001
Johan Hedberg39385cb2016-11-12 17:03:07 +02001002 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1003 hdev = hci_get_route(addr, BDADDR_ANY, BDADDR_LE_PUBLIC);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001004 if (!hdev)
1005 return -ENOENT;
1006
1007 hci_dev_lock(hdev);
Johan Hedbergf5ad4ff2015-10-21 18:03:02 +03001008 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001009 hci_dev_unlock(hdev);
1010
1011 if (!hcon)
1012 return -ENOENT;
1013
1014 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1015
1016 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1017
1018 return 0;
1019}
1020
1021static void disconnect_all_peers(void)
1022{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001023 struct lowpan_btle_dev *entry;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001024 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1025 struct list_head peers;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001026
1027 INIT_LIST_HEAD(&peers);
1028
1029 /* We make a separate list of peers as the close_cb() will
1030 * modify the device peers list so it is better not to mess
1031 * with the same list at the same time.
1032 */
1033
Jukka Rissanen90305822014-10-28 17:16:47 +02001034 rcu_read_lock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001035
Jukka Rissanen90305822014-10-28 17:16:47 +02001036 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1037 list_for_each_entry_rcu(peer, &entry->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001038 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1039 if (!new_peer)
1040 break;
1041
1042 new_peer->chan = peer->chan;
1043 INIT_LIST_HEAD(&new_peer->list);
1044
1045 list_add(&new_peer->list, &peers);
1046 }
1047 }
1048
Jukka Rissanen90305822014-10-28 17:16:47 +02001049 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001050
Jukka Rissanen90305822014-10-28 17:16:47 +02001051 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001052 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1053 l2cap_chan_close(peer->chan, ENOENT);
Jukka Rissanen90305822014-10-28 17:16:47 +02001054
1055 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +02001056 kfree_rcu(peer, rcu);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001057 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001058 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001059}
1060
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001061struct set_enable {
Jukka Rissanen90305822014-10-28 17:16:47 +02001062 struct work_struct work;
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001063 bool flag;
Jukka Rissanen90305822014-10-28 17:16:47 +02001064};
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001065
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001066static void do_enable_set(struct work_struct *work)
Jukka Rissanen90305822014-10-28 17:16:47 +02001067{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001068 struct set_enable *set_enable = container_of(work,
1069 struct set_enable, work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001070
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001071 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001072 /* Disconnect existing connections if 6lowpan is
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001073 * disabled
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001074 */
1075 disconnect_all_peers();
1076
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001077 enable_6lowpan = set_enable->flag;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001078
1079 if (listen_chan) {
1080 l2cap_chan_close(listen_chan, 0);
1081 l2cap_chan_put(listen_chan);
1082 }
1083
1084 listen_chan = bt_6lowpan_listen();
1085
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001086 kfree(set_enable);
Jukka Rissanen90305822014-10-28 17:16:47 +02001087}
1088
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001089static int lowpan_enable_set(void *data, u64 val)
Jukka Rissanen90305822014-10-28 17:16:47 +02001090{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001091 struct set_enable *set_enable;
Jukka Rissanen90305822014-10-28 17:16:47 +02001092
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001093 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1094 if (!set_enable)
Jukka Rissanen90305822014-10-28 17:16:47 +02001095 return -ENOMEM;
1096
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001097 set_enable->flag = !!val;
1098 INIT_WORK(&set_enable->work, do_enable_set);
Jukka Rissanen90305822014-10-28 17:16:47 +02001099
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001100 schedule_work(&set_enable->work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001101
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001102 return 0;
1103}
1104
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001105static int lowpan_enable_get(void *data, u64 *val)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001106{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001107 *val = enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001108 return 0;
1109}
1110
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001111DEFINE_SIMPLE_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1112 lowpan_enable_set, "%llu\n");
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001113
1114static ssize_t lowpan_control_write(struct file *fp,
1115 const char __user *user_buffer,
1116 size_t count,
1117 loff_t *position)
1118{
1119 char buf[32];
1120 size_t buf_size = min(count, sizeof(buf) - 1);
1121 int ret;
1122 bdaddr_t addr;
1123 u8 addr_type;
1124 struct l2cap_conn *conn = NULL;
1125
1126 if (copy_from_user(buf, user_buffer, buf_size))
1127 return -EFAULT;
1128
1129 buf[buf_size] = '\0';
1130
1131 if (memcmp(buf, "connect ", 8) == 0) {
1132 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1133 if (ret == -EINVAL)
1134 return ret;
1135
1136 if (listen_chan) {
1137 l2cap_chan_close(listen_chan, 0);
1138 l2cap_chan_put(listen_chan);
1139 listen_chan = NULL;
1140 }
1141
1142 if (conn) {
1143 struct lowpan_peer *peer;
1144
1145 if (!is_bt_6lowpan(conn->hcon))
1146 return -EINVAL;
1147
1148 peer = lookup_peer(conn);
1149 if (peer) {
1150 BT_DBG("6LoWPAN connection already exists");
1151 return -EALREADY;
1152 }
1153
1154 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1155 &conn->hcon->dst, conn->hcon->dst_type,
1156 addr_type);
1157 }
1158
1159 ret = bt_6lowpan_connect(&addr, addr_type);
1160 if (ret < 0)
1161 return ret;
1162
1163 return count;
1164 }
1165
1166 if (memcmp(buf, "disconnect ", 11) == 0) {
1167 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1168 if (ret < 0)
1169 return ret;
1170
1171 ret = bt_6lowpan_disconnect(conn, addr_type);
1172 if (ret < 0)
1173 return ret;
1174
1175 return count;
1176 }
1177
1178 return count;
1179}
1180
1181static int lowpan_control_show(struct seq_file *f, void *ptr)
1182{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001183 struct lowpan_btle_dev *entry;
Jukka Rissanen90305822014-10-28 17:16:47 +02001184 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001185
Jukka Rissanen90305822014-10-28 17:16:47 +02001186 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001187
Jukka Rissanen90305822014-10-28 17:16:47 +02001188 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1189 list_for_each_entry(peer, &entry->peers, list)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001190 seq_printf(f, "%pMR (type %u)\n",
1191 &peer->chan->dst, peer->chan->dst_type);
1192 }
1193
Jukka Rissanen90305822014-10-28 17:16:47 +02001194 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001195
1196 return 0;
1197}
1198
1199static int lowpan_control_open(struct inode *inode, struct file *file)
1200{
1201 return single_open(file, lowpan_control_show, inode->i_private);
1202}
1203
1204static const struct file_operations lowpan_control_fops = {
1205 .open = lowpan_control_open,
1206 .read = seq_read,
1207 .write = lowpan_control_write,
1208 .llseek = seq_lseek,
1209 .release = single_release,
1210};
1211
Jukka Rissanen7f118252014-06-18 16:37:11 +03001212static void disconnect_devices(void)
1213{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001214 struct lowpan_btle_dev *entry, *tmp, *new_dev;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001215 struct list_head devices;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001216
1217 INIT_LIST_HEAD(&devices);
1218
1219 /* We make a separate list of devices because the unregister_netdev()
1220 * will call device_event() which will also want to modify the same
1221 * devices list.
1222 */
1223
Jukka Rissanen90305822014-10-28 17:16:47 +02001224 rcu_read_lock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001225
Jukka Rissanen90305822014-10-28 17:16:47 +02001226 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001227 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1228 if (!new_dev)
1229 break;
1230
1231 new_dev->netdev = entry->netdev;
1232 INIT_LIST_HEAD(&new_dev->list);
1233
Jukka Rissanen90305822014-10-28 17:16:47 +02001234 list_add_rcu(&new_dev->list, &devices);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001235 }
1236
Jukka Rissanen90305822014-10-28 17:16:47 +02001237 rcu_read_unlock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001238
Dan Carpenterdaac1972014-10-29 19:10:57 +03001239 list_for_each_entry_safe(entry, tmp, &devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001240 ifdown(entry->netdev);
1241 BT_DBG("Unregistering netdev %s %p",
1242 entry->netdev->name, entry->netdev);
Alexander Aring00f59312015-12-09 22:46:29 +01001243 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001244 kfree(entry);
1245 }
1246}
1247
Jukka Rissanen18722c22013-12-11 17:05:37 +02001248static int device_event(struct notifier_block *unused,
1249 unsigned long event, void *ptr)
1250{
1251 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001252 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +02001253
1254 if (netdev->type != ARPHRD_6LOWPAN)
1255 return NOTIFY_DONE;
1256
1257 switch (event) {
1258 case NETDEV_UNREGISTER:
Jukka Rissanen90305822014-10-28 17:16:47 +02001259 spin_lock(&devices_lock);
1260 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +02001261 if (entry->netdev == netdev) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001262 BT_DBG("Unregistered netdev %s %p",
1263 netdev->name, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001264 list_del(&entry->list);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001265 break;
1266 }
1267 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001268 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001269 break;
1270 }
1271
1272 return NOTIFY_DONE;
1273}
1274
1275static struct notifier_block bt_6lowpan_dev_notifier = {
1276 .notifier_call = device_event,
1277};
1278
Jukka Rissanen5547e482014-06-18 16:37:09 +03001279static int __init bt_6lowpan_init(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001280{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001281 lowpan_enable_debugfs = debugfs_create_file("6lowpan_enable", 0644,
1282 bt_debugfs, NULL,
1283 &lowpan_enable_fops);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001284 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1285 bt_debugfs, NULL,
1286 &lowpan_control_fops);
1287
Jukka Rissanen18722c22013-12-11 17:05:37 +02001288 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1289}
1290
Jukka Rissanen5547e482014-06-18 16:37:09 +03001291static void __exit bt_6lowpan_exit(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001292{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001293 debugfs_remove(lowpan_enable_debugfs);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001294 debugfs_remove(lowpan_control_debugfs);
1295
1296 if (listen_chan) {
1297 l2cap_chan_close(listen_chan, 0);
1298 l2cap_chan_put(listen_chan);
1299 }
1300
Jukka Rissanen7f118252014-06-18 16:37:11 +03001301 disconnect_devices();
1302
Jukka Rissanen18722c22013-12-11 17:05:37 +02001303 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1304}
Jukka Rissanen5547e482014-06-18 16:37:09 +03001305
1306module_init(bt_6lowpan_init);
1307module_exit(bt_6lowpan_exit);
1308
1309MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1310MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1311MODULE_VERSION(VERSION);
1312MODULE_LICENSE("GPL");