blob: cff4944d5b6637d18388321023d55c07b19e2d38 [file] [log] [blame]
Thomas Gleixner97fb5e82019-05-29 07:17:58 -07001// SPDX-License-Identifier: GPL-2.0-only
Jukka Rissanen18722c22013-12-11 17:05:37 +02002/*
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03003 Copyright (c) 2013-2014 Intel Corp.
Jukka Rissanen18722c22013-12-11 17:05:37 +02004
Jukka Rissanen18722c22013-12-11 17:05:37 +02005*/
6
Jukka Rissanen18722c22013-12-11 17:05:37 +02007#include <linux/if_arp.h>
8#include <linux/netdevice.h>
9#include <linux/etherdevice.h>
Jukka Rissanen5547e482014-06-18 16:37:09 +030010#include <linux/module.h>
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030011#include <linux/debugfs.h>
Jukka Rissanen18722c22013-12-11 17:05:37 +020012
13#include <net/ipv6.h>
14#include <net/ip6_route.h>
15#include <net/addrconf.h>
Luiz Augusto von Dentz814f1b22017-04-11 22:21:02 +030016#include <net/pkt_sched.h>
Jukka Rissanen18722c22013-12-11 17:05:37 +020017
Jukka Rissanen18722c22013-12-11 17:05:37 +020018#include <net/bluetooth/bluetooth.h>
19#include <net/bluetooth/hci_core.h>
20#include <net/bluetooth/l2cap.h>
21
Alexander Aringcefc8c82014-03-05 14:29:05 +010022#include <net/6lowpan.h> /* for the compression support */
Jukka Rissanen18722c22013-12-11 17:05:37 +020023
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030024#define VERSION "0.1"
25
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020026static struct dentry *lowpan_enable_debugfs;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030027static struct dentry *lowpan_control_debugfs;
28
Jukka Rissanen18722c22013-12-11 17:05:37 +020029#define IFACE_NAME_TEMPLATE "bt%d"
Jukka Rissanen18722c22013-12-11 17:05:37 +020030
31struct skb_cb {
32 struct in6_addr addr;
Jukka Rissanen39e90c72014-09-08 12:11:45 +030033 struct in6_addr gw;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030034 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020035};
36#define lowpan_cb(skb) ((struct skb_cb *)((skb)->cb))
37
38/* The devices list contains those devices that we are acting
39 * as a proxy. The BT 6LoWPAN device is a virtual device that
40 * connects to the Bluetooth LE device. The real connection to
41 * BT device is done via l2cap layer. There exists one
42 * virtual device / one BT 6LoWPAN network (=hciX device).
43 * The list contains struct lowpan_dev elements.
44 */
45static LIST_HEAD(bt_6lowpan_devices);
Jukka Rissanen90305822014-10-28 17:16:47 +020046static DEFINE_SPINLOCK(devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +020047
Jukka Rissanen7b2ed602015-01-08 17:00:55 +020048static bool enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030049
50/* We are listening incoming connections via this channel
51 */
52static struct l2cap_chan *listen_chan;
Lihong Kouf9c70bd2020-06-23 20:28:41 +080053static DEFINE_MUTEX(set_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030054
Jukka Rissanen18722c22013-12-11 17:05:37 +020055struct lowpan_peer {
56 struct list_head list;
Jukka Rissanen90305822014-10-28 17:16:47 +020057 struct rcu_head rcu;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +030058 struct l2cap_chan *chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +020059
60 /* peer addresses in various formats */
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +020061 unsigned char lladdr[ETH_ALEN];
Jukka Rissanen18722c22013-12-11 17:05:37 +020062 struct in6_addr peer_addr;
63};
64
Alexander Aring2e4d60c2016-04-11 11:04:18 +020065struct lowpan_btle_dev {
Jukka Rissanen18722c22013-12-11 17:05:37 +020066 struct list_head list;
67
68 struct hci_dev *hdev;
69 struct net_device *netdev;
70 struct list_head peers;
71 atomic_t peer_count; /* number of items in peers list */
72
73 struct work_struct delete_netdev;
74 struct delayed_work notify_peers;
75};
76
Alexander Aring2e4d60c2016-04-11 11:04:18 +020077static inline struct lowpan_btle_dev *
78lowpan_btle_dev(const struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +020079{
Alexander Aring2e4d60c2016-04-11 11:04:18 +020080 return (struct lowpan_btle_dev *)lowpan_dev(netdev)->priv;
Jukka Rissanen18722c22013-12-11 17:05:37 +020081}
82
Alexander Aring2e4d60c2016-04-11 11:04:18 +020083static inline void peer_add(struct lowpan_btle_dev *dev,
84 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020085{
Jukka Rissanen90305822014-10-28 17:16:47 +020086 list_add_rcu(&peer->list, &dev->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +020087 atomic_inc(&dev->peer_count);
88}
89
Alexander Aring2e4d60c2016-04-11 11:04:18 +020090static inline bool peer_del(struct lowpan_btle_dev *dev,
91 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +020092{
Jukka Rissanen90305822014-10-28 17:16:47 +020093 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +020094 kfree_rcu(peer, rcu);
Jukka Rissanen18722c22013-12-11 17:05:37 +020095
Jukka Rissanen18d93c12014-06-18 16:37:10 +030096 module_put(THIS_MODULE);
97
Jukka Rissanen18722c22013-12-11 17:05:37 +020098 if (atomic_dec_and_test(&dev->peer_count)) {
99 BT_DBG("last peer");
100 return true;
101 }
102
103 return false;
104}
105
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200106static inline struct lowpan_peer *peer_lookup_ba(struct lowpan_btle_dev *dev,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200107 bdaddr_t *ba, __u8 type)
108{
Jukka Rissanen90305822014-10-28 17:16:47 +0200109 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200110
111 BT_DBG("peers %d addr %pMR type %d", atomic_read(&dev->peer_count),
112 ba, type);
113
Jukka Rissanen90305822014-10-28 17:16:47 +0200114 rcu_read_lock();
115
116 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300117 BT_DBG("dst addr %pMR dst type %d",
118 &peer->chan->dst, peer->chan->dst_type);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200119
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300120 if (bacmp(&peer->chan->dst, ba))
Jukka Rissanen18722c22013-12-11 17:05:37 +0200121 continue;
122
Jukka Rissanen90305822014-10-28 17:16:47 +0200123 if (type == peer->chan->dst_type) {
124 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300125 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200126 }
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300127 }
128
Jukka Rissanen90305822014-10-28 17:16:47 +0200129 rcu_read_unlock();
130
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300131 return NULL;
132}
133
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200134static inline struct lowpan_peer *
135__peer_lookup_chan(struct lowpan_btle_dev *dev, struct l2cap_chan *chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300136{
Jukka Rissanen90305822014-10-28 17:16:47 +0200137 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300138
Jukka Rissanen90305822014-10-28 17:16:47 +0200139 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300140 if (peer->chan == chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200141 return peer;
142 }
143
144 return NULL;
145}
146
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200147static inline struct lowpan_peer *
148__peer_lookup_conn(struct lowpan_btle_dev *dev, struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200149{
Jukka Rissanen90305822014-10-28 17:16:47 +0200150 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200151
Jukka Rissanen90305822014-10-28 17:16:47 +0200152 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300153 if (peer->chan->conn == conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200154 return peer;
155 }
156
157 return NULL;
158}
159
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200160static inline struct lowpan_peer *peer_lookup_dst(struct lowpan_btle_dev *dev,
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300161 struct in6_addr *daddr,
162 struct sk_buff *skb)
163{
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300164 struct rt6_info *rt = (struct rt6_info *)skb_dst(skb);
165 int count = atomic_read(&dev->peer_count);
Nicolas Dichtel9b1c1ef2019-06-24 16:01:08 +0200166 const struct in6_addr *nexthop;
167 struct lowpan_peer *peer;
Josua Mayer56363762019-07-06 17:54:47 +0200168 struct neighbour *neigh;
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300169
170 BT_DBG("peers %d addr %pI6c rt %p", count, daddr, rt);
171
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300172 if (!rt) {
Josua Mayerb188b032019-07-06 17:54:46 +0200173 if (ipv6_addr_any(&lowpan_cb(skb)->gw)) {
174 /* There is neither route nor gateway,
175 * probably the destination is a direct peer.
176 */
177 nexthop = daddr;
178 } else {
179 /* There is a known gateway
180 */
181 nexthop = &lowpan_cb(skb)->gw;
182 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300183 } else {
Martin KaFai Lau2647a9b2015-05-22 20:55:58 -0700184 nexthop = rt6_nexthop(rt, daddr);
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300185
186 /* We need to remember the address because it is needed
187 * by bt_xmit() when sending the packet. In bt_xmit(), the
188 * destination routing info is not set.
189 */
190 memcpy(&lowpan_cb(skb)->gw, nexthop, sizeof(struct in6_addr));
191 }
192
193 BT_DBG("gw %pI6c", nexthop);
194
Jukka Rissanen90305822014-10-28 17:16:47 +0200195 rcu_read_lock();
196
197 list_for_each_entry_rcu(peer, &dev->peers, list) {
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300198 BT_DBG("dst addr %pMR dst type %d ip %pI6c",
199 &peer->chan->dst, peer->chan->dst_type,
200 &peer->peer_addr);
201
Jukka Rissanen90305822014-10-28 17:16:47 +0200202 if (!ipv6_addr_cmp(&peer->peer_addr, nexthop)) {
203 rcu_read_unlock();
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300204 return peer;
Jukka Rissanen90305822014-10-28 17:16:47 +0200205 }
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300206 }
207
Josua Mayer56363762019-07-06 17:54:47 +0200208 /* use the neighbour cache for matching addresses assigned by SLAAC
209 */
210 neigh = __ipv6_neigh_lookup(dev->netdev, nexthop);
211 if (neigh) {
212 list_for_each_entry_rcu(peer, &dev->peers, list) {
213 if (!memcmp(neigh->ha, peer->lladdr, ETH_ALEN)) {
214 neigh_release(neigh);
215 rcu_read_unlock();
216 return peer;
217 }
218 }
219 neigh_release(neigh);
220 }
221
Jukka Rissanen90305822014-10-28 17:16:47 +0200222 rcu_read_unlock();
223
Jukka Rissanen39e90c72014-09-08 12:11:45 +0300224 return NULL;
225}
226
Jukka Rissanen18722c22013-12-11 17:05:37 +0200227static struct lowpan_peer *lookup_peer(struct l2cap_conn *conn)
228{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200229 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200230 struct lowpan_peer *peer = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200231
Jukka Rissanen90305822014-10-28 17:16:47 +0200232 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200233
Jukka Rissanen90305822014-10-28 17:16:47 +0200234 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
235 peer = __peer_lookup_conn(entry, conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200236 if (peer)
237 break;
238 }
239
Jukka Rissanen90305822014-10-28 17:16:47 +0200240 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200241
242 return peer;
243}
244
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200245static struct lowpan_btle_dev *lookup_dev(struct l2cap_conn *conn)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200246{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200247 struct lowpan_btle_dev *entry;
248 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200249
Jukka Rissanen90305822014-10-28 17:16:47 +0200250 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200251
Jukka Rissanen90305822014-10-28 17:16:47 +0200252 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +0200253 if (conn->hcon->hdev == entry->hdev) {
254 dev = entry;
255 break;
256 }
257 }
258
Jukka Rissanen90305822014-10-28 17:16:47 +0200259 rcu_read_unlock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200260
261 return dev;
262}
263
Jukka Rissanen18722c22013-12-11 17:05:37 +0200264static int give_skb_to_upper(struct sk_buff *skb, struct net_device *dev)
265{
266 struct sk_buff *skb_cp;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200267
268 skb_cp = skb_copy(skb, GFP_ATOMIC);
269 if (!skb_cp)
Martin Townsendf8b36172014-10-23 15:40:53 +0100270 return NET_RX_DROP;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200271
Alexander Aring324e7862015-10-27 08:35:24 +0100272 return netif_rx_ni(skb_cp);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200273}
274
Martin Townsend01141232014-10-23 15:40:56 +0100275static int iphc_decompress(struct sk_buff *skb, struct net_device *netdev,
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300276 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200277{
Patrik Flyktc259d142017-03-12 10:19:33 +0200278 const u8 *saddr;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200279
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200280 saddr = peer->lladdr;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200281
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200282 return lowpan_header_decompress(skb, netdev, netdev->dev_addr, saddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200283}
284
285static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300286 struct lowpan_peer *peer)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200287{
288 struct sk_buff *local_skb;
289 int ret;
290
291 if (!netif_running(dev))
292 goto drop;
293
Alexander Aringcefdb802015-10-13 13:42:55 +0200294 if (dev->type != ARPHRD_6LOWPAN || !skb->len)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200295 goto drop;
296
Alexander Aringcefdb802015-10-13 13:42:55 +0200297 skb_reset_network_header(skb);
298
Martin Townsend11e3ff72014-10-13 11:00:56 +0100299 skb = skb_share_check(skb, GFP_ATOMIC);
300 if (!skb)
301 goto drop;
302
Jukka Rissanen18722c22013-12-11 17:05:37 +0200303 /* check that it's our buffer */
Alexander Aringcefdb802015-10-13 13:42:55 +0200304 if (lowpan_is_ipv6(*skb_network_header(skb))) {
Lukasz Duda87f5fed2016-01-13 16:57:48 +0100305 /* Pull off the 1-byte of 6lowpan header. */
306 skb_pull(skb, 1);
307
Jukka Rissanen18722c22013-12-11 17:05:37 +0200308 /* Copy the packet so that the IPv6 header is
309 * properly aligned.
310 */
311 local_skb = skb_copy_expand(skb, NET_SKB_PAD - 1,
312 skb_tailroom(skb), GFP_ATOMIC);
313 if (!local_skb)
314 goto drop;
315
316 local_skb->protocol = htons(ETH_P_IPV6);
317 local_skb->pkt_type = PACKET_HOST;
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100318 local_skb->dev = dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200319
Jukka Rissanen18722c22013-12-11 17:05:37 +0200320 skb_set_transport_header(local_skb, sizeof(struct ipv6hdr));
321
322 if (give_skb_to_upper(local_skb, dev) != NET_RX_SUCCESS) {
323 kfree_skb(local_skb);
324 goto drop;
325 }
326
327 dev->stats.rx_bytes += skb->len;
328 dev->stats.rx_packets++;
329
Martin Townsend3c400b82014-10-23 15:40:55 +0100330 consume_skb(local_skb);
331 consume_skb(skb);
Alexander Aringcefdb802015-10-13 13:42:55 +0200332 } else if (lowpan_is_iphc(*skb_network_header(skb))) {
333 local_skb = skb_clone(skb, GFP_ATOMIC);
334 if (!local_skb)
335 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200336
Glenn Ruben Bakke4c58f322016-01-13 16:41:42 +0100337 local_skb->dev = dev;
338
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300339 ret = iphc_decompress(local_skb, dev, peer);
Alexander Aringcefdb802015-10-13 13:42:55 +0200340 if (ret < 0) {
Luiz Augusto von Dentzda75fdc2017-04-03 17:48:56 +0300341 BT_DBG("iphc_decompress failed: %d", ret);
Alexander Aringcefdb802015-10-13 13:42:55 +0200342 kfree_skb(local_skb);
343 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200344 }
Alexander Aringcefdb802015-10-13 13:42:55 +0200345
346 local_skb->protocol = htons(ETH_P_IPV6);
347 local_skb->pkt_type = PACKET_HOST;
Alexander Aringcefdb802015-10-13 13:42:55 +0200348
349 if (give_skb_to_upper(local_skb, dev)
350 != NET_RX_SUCCESS) {
351 kfree_skb(local_skb);
352 goto drop;
353 }
354
355 dev->stats.rx_bytes += skb->len;
356 dev->stats.rx_packets++;
357
358 consume_skb(local_skb);
359 consume_skb(skb);
360 } else {
Luiz Augusto von Dentzda75fdc2017-04-03 17:48:56 +0300361 BT_DBG("unknown packet type");
Alexander Aringcefdb802015-10-13 13:42:55 +0200362 goto drop;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200363 }
364
365 return NET_RX_SUCCESS;
366
367drop:
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300368 dev->stats.rx_dropped++;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200369 return NET_RX_DROP;
370}
371
372/* Packet from BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300373static int chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200374{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200375 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200376 struct lowpan_peer *peer;
377 int err;
378
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300379 peer = lookup_peer(chan->conn);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200380 if (!peer)
381 return -ENOENT;
382
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300383 dev = lookup_dev(chan->conn);
Johan Hedberg30d3db42013-12-12 09:53:21 +0200384 if (!dev || !dev->netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200385 return -ENOENT;
386
Luiz Augusto von Dentz27ce68a2017-04-03 17:48:55 +0300387 err = recv_pkt(skb, dev->netdev, peer);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300388 if (err) {
389 BT_DBG("recv pkt %d", err);
390 err = -EAGAIN;
391 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200392
393 return err;
394}
395
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300396static int setup_header(struct sk_buff *skb, struct net_device *netdev,
397 bdaddr_t *peer_addr, u8 *peer_addr_type)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200398{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300399 struct in6_addr ipv6_daddr;
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200400 struct ipv6hdr *hdr;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200401 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200402 struct lowpan_peer *peer;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200403 u8 *daddr;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300404 int err, status = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200405
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200406 hdr = ipv6_hdr(skb);
407
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200408 dev = lowpan_btle_dev(netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200409
Glenn Ruben Bakke55441072016-04-22 18:06:11 +0200410 memcpy(&ipv6_daddr, &hdr->daddr, sizeof(ipv6_daddr));
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300411
412 if (ipv6_addr_is_multicast(&ipv6_daddr)) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300413 lowpan_cb(skb)->chan = NULL;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200414 daddr = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200415 } else {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200416 BT_DBG("dest IP %pI6c", &ipv6_daddr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200417
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200418 /* The packet might be sent to 6lowpan interface
419 * because of routing (either via default route
420 * or user set route) so get peer according to
421 * the destination address.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200422 */
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200423 peer = peer_lookup_dst(dev, &ipv6_daddr, skb);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200424 if (!peer) {
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200425 BT_DBG("no such peer");
426 return -ENOENT;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200427 }
428
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200429 daddr = peer->lladdr;
Colin Ian Kingfa0eaf82017-03-28 13:11:29 +0100430 *peer_addr = peer->chan->dst;
Luiz Augusto von Dentz9dae2e02017-03-12 10:19:38 +0200431 *peer_addr_type = peer->chan->dst_type;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300432 lowpan_cb(skb)->chan = peer->chan;
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300433
434 status = 1;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200435 }
436
Alexander Aringa6f77382015-10-13 13:42:57 +0200437 lowpan_header_compress(skb, netdev, daddr, dev->netdev->dev_addr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200438
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300439 err = dev_hard_header(skb, netdev, ETH_P_IPV6, NULL, NULL, 0);
440 if (err < 0)
441 return err;
442
443 return status;
444}
445
446static int header_create(struct sk_buff *skb, struct net_device *netdev,
447 unsigned short type, const void *_daddr,
448 const void *_saddr, unsigned int len)
449{
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300450 if (type != ETH_P_IPV6)
451 return -EINVAL;
452
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300453 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200454}
455
456/* Packet to BT LE device */
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300457static int send_pkt(struct l2cap_chan *chan, struct sk_buff *skb,
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300458 struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200459{
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300460 struct msghdr msg;
461 struct kvec iv;
462 int err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200463
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300464 /* Remember the skb so that we can send EAGAIN to the caller if
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300465 * we run out of credits.
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300466 */
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300467 chan->data = skb;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300468
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300469 iv.iov_base = skb->data;
470 iv.iov_len = skb->len;
471
Al Viroc0371da2014-11-24 10:42:55 -0500472 memset(&msg, 0, sizeof(msg));
David Howellsaa563d72018-10-20 00:57:56 +0100473 iov_iter_kvec(&msg.msg_iter, WRITE, &iv, 1, skb->len);
Al Viroc0371da2014-11-24 10:42:55 -0500474
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300475 err = l2cap_chan_send(chan, &msg, skb->len);
476 if (err > 0) {
477 netdev->stats.tx_bytes += err;
478 netdev->stats.tx_packets++;
479 return 0;
480 }
481
Luiz Augusto von Dentze1008f92017-04-11 22:20:59 +0300482 if (err < 0)
483 netdev->stats.tx_errors++;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300484
485 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200486}
487
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300488static int send_mcast_pkt(struct sk_buff *skb, struct net_device *netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200489{
490 struct sk_buff *local_skb;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200491 struct lowpan_btle_dev *entry;
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300492 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200493
Jukka Rissanen90305822014-10-28 17:16:47 +0200494 rcu_read_lock();
Jukka Rissanen18722c22013-12-11 17:05:37 +0200495
Jukka Rissanen90305822014-10-28 17:16:47 +0200496 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
497 struct lowpan_peer *pentry;
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200498 struct lowpan_btle_dev *dev;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200499
500 if (entry->netdev != netdev)
501 continue;
502
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200503 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200504
Jukka Rissanen90305822014-10-28 17:16:47 +0200505 list_for_each_entry_rcu(pentry, &dev->peers, list) {
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300506 int ret;
507
Jukka Rissanen18722c22013-12-11 17:05:37 +0200508 local_skb = skb_clone(skb, GFP_ATOMIC);
509
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300510 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
511 netdev->name,
512 &pentry->chan->dst, pentry->chan->dst_type,
513 &pentry->peer_addr, pentry->chan);
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300514 ret = send_pkt(pentry->chan, local_skb, netdev);
515 if (ret < 0)
516 err = ret;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200517
518 kfree_skb(local_skb);
519 }
520 }
521
Jukka Rissanen90305822014-10-28 17:16:47 +0200522 rcu_read_unlock();
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300523
524 return err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200525}
526
527static netdev_tx_t bt_xmit(struct sk_buff *skb, struct net_device *netdev)
528{
529 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200530 bdaddr_t addr;
531 u8 addr_type;
532
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300533 /* We must take a copy of the skb before we modify/replace the ipv6
534 * header as the header could be used elsewhere
535 */
Alexander Aringb0c42cd2014-10-08 10:24:53 +0200536 skb = skb_unshare(skb, GFP_ATOMIC);
537 if (!skb)
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300538 return NET_XMIT_DROP;
539
540 /* Return values from setup_header()
541 * <0 - error, packet is dropped
542 * 0 - this is a multicast packet
543 * 1 - this is unicast packet
544 */
545 err = setup_header(skb, netdev, &addr, &addr_type);
546 if (err < 0) {
547 kfree_skb(skb);
548 return NET_XMIT_DROP;
549 }
550
551 if (err) {
552 if (lowpan_cb(skb)->chan) {
553 BT_DBG("xmit %s to %pMR type %d IP %pI6c chan %p",
554 netdev->name, &addr, addr_type,
555 &lowpan_cb(skb)->addr, lowpan_cb(skb)->chan);
Jukka Rissanend7b6b0a2014-10-01 15:59:14 +0300556 err = send_pkt(lowpan_cb(skb)->chan, skb, netdev);
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300557 } else {
558 err = -ENOENT;
559 }
560 } else {
561 /* We need to send the packet to every device behind this
562 * interface.
Jukka Rissanen18722c22013-12-11 17:05:37 +0200563 */
Jukka Rissanen9c238ca2014-10-01 15:59:15 +0300564 err = send_mcast_pkt(skb, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200565 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200566
Jukka Rissanenfc125182014-10-01 11:30:26 +0300567 dev_kfree_skb(skb);
568
Jukka Rissanen18722c22013-12-11 17:05:37 +0200569 if (err)
570 BT_DBG("ERROR: xmit failed (%d)", err);
571
Jukka Rissanen36b3dd22014-09-29 16:37:25 +0300572 return err < 0 ? NET_XMIT_DROP : err;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200573}
574
Cong Wang1a33e102020-05-02 22:22:19 -0700575static int bt_dev_init(struct net_device *dev)
576{
577 netdev_lockdep_set_classes(dev);
578
579 return 0;
580}
581
Jukka Rissanen18722c22013-12-11 17:05:37 +0200582static const struct net_device_ops netdev_ops = {
Cong Wang1a33e102020-05-02 22:22:19 -0700583 .ndo_init = bt_dev_init,
Jukka Rissanen18722c22013-12-11 17:05:37 +0200584 .ndo_start_xmit = bt_xmit,
585};
586
Nishka Dasgupta569428d2019-08-15 11:22:55 +0530587static const struct header_ops header_ops = {
Jukka Rissanen18722c22013-12-11 17:05:37 +0200588 .create = header_create,
589};
590
591static void netdev_setup(struct net_device *dev)
592{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200593 dev->hard_header_len = 0;
594 dev->needed_tailroom = 0;
Patrik Flykt25869522017-04-11 22:21:03 +0300595 dev->flags = IFF_RUNNING | IFF_MULTICAST;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200596 dev->watchdog_timeo = 0;
Luiz Augusto von Dentz814f1b22017-04-11 22:21:02 +0300597 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200598
599 dev->netdev_ops = &netdev_ops;
600 dev->header_ops = &header_ops;
David S. Millercf124db2017-05-08 12:52:56 -0400601 dev->needs_free_netdev = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200602}
603
604static struct device_type bt_type = {
605 .name = "bluetooth",
606};
607
Jukka Rissanen18722c22013-12-11 17:05:37 +0200608static void ifup(struct net_device *netdev)
609{
610 int err;
611
612 rtnl_lock();
Petr Machata00f54e62018-12-06 17:05:36 +0000613 err = dev_open(netdev, NULL);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200614 if (err < 0)
615 BT_INFO("iface %s cannot be opened (%d)", netdev->name, err);
616 rtnl_unlock();
617}
618
Jukka Rissanen7f118252014-06-18 16:37:11 +0300619static void ifdown(struct net_device *netdev)
620{
Jukka Rissanen7f118252014-06-18 16:37:11 +0300621 rtnl_lock();
stephen hemmingerddee3102017-07-18 15:59:25 -0700622 dev_close(netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +0300623 rtnl_unlock();
624}
625
Jukka Rissanen18722c22013-12-11 17:05:37 +0200626static void do_notify_peers(struct work_struct *work)
627{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200628 struct lowpan_btle_dev *dev = container_of(work, struct lowpan_btle_dev,
629 notify_peers.work);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200630
631 netdev_notify_peers(dev->netdev); /* send neighbour adv at startup */
632}
633
634static bool is_bt_6lowpan(struct hci_conn *hcon)
635{
636 if (hcon->type != LE_LINK)
637 return false;
638
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200639 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300640 return false;
641
642 return true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200643}
644
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300645static struct l2cap_chan *chan_create(void)
646{
647 struct l2cap_chan *chan;
648
649 chan = l2cap_chan_create();
650 if (!chan)
651 return NULL;
652
653 l2cap_chan_set_defaults(chan);
654
655 chan->chan_type = L2CAP_CHAN_CONN_ORIENTED;
656 chan->mode = L2CAP_MODE_LE_FLOWCTL;
Johan Hedberg301de2c2015-10-06 13:03:19 +0300657 chan->imtu = 1280;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300658
659 return chan;
660}
661
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300662static struct l2cap_chan *add_peer_chan(struct l2cap_chan *chan,
Michael Scottd2891c42017-03-28 23:10:54 -0700663 struct lowpan_btle_dev *dev,
664 bool new_netdev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200665{
666 struct lowpan_peer *peer;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200667
668 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
669 if (!peer)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300670 return NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200671
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300672 peer->chan = chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200673 memset(&peer->peer_addr, 0, sizeof(struct in6_addr));
674
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200675 baswap((void *)peer->lladdr, &chan->dst);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200676
Luiz Augusto von Dentzfa09ae62017-03-12 10:19:37 +0200677 lowpan_iphc_uncompress_eui48_lladdr(&peer->peer_addr, peer->lladdr);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200678
Jukka Rissanen90305822014-10-28 17:16:47 +0200679 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200680 INIT_LIST_HEAD(&peer->list);
681 peer_add(dev, peer);
Jukka Rissanen90305822014-10-28 17:16:47 +0200682 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200683
684 /* Notifying peers about us needs to be done without locks held */
Michael Scottd2891c42017-03-28 23:10:54 -0700685 if (new_netdev)
686 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200687 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100));
688
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300689 return peer->chan;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200690}
691
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200692static int setup_netdev(struct l2cap_chan *chan, struct lowpan_btle_dev **dev)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200693{
Jukka Rissanen18722c22013-12-11 17:05:37 +0200694 struct net_device *netdev;
695 int err = 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200696
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200697 netdev = alloc_netdev(LOWPAN_PRIV_SIZE(sizeof(struct lowpan_btle_dev)),
Alexander Aringb72f6f52015-08-11 21:44:08 +0200698 IFACE_NAME_TEMPLATE, NET_NAME_UNKNOWN,
699 netdev_setup);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200700 if (!netdev)
701 return -ENOMEM;
702
Patrik Flyktc259d142017-03-12 10:19:33 +0200703 netdev->addr_assign_type = NET_ADDR_PERM;
704 baswap((void *)netdev->dev_addr, &chan->src);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200705
706 netdev->netdev_ops = &netdev_ops;
Glenn Ruben Bakkefc842422015-06-17 07:32:25 -0700707 SET_NETDEV_DEV(netdev, &chan->conn->hcon->hdev->dev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200708 SET_NETDEV_DEVTYPE(netdev, &bt_type);
709
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200710 *dev = lowpan_btle_dev(netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300711 (*dev)->netdev = netdev;
712 (*dev)->hdev = chan->conn->hcon->hdev;
713 INIT_LIST_HEAD(&(*dev)->peers);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200714
Jukka Rissanen90305822014-10-28 17:16:47 +0200715 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300716 INIT_LIST_HEAD(&(*dev)->list);
Jukka Rissanen90305822014-10-28 17:16:47 +0200717 list_add_rcu(&(*dev)->list, &bt_6lowpan_devices);
718 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200719
Alexander Aring00f59312015-12-09 22:46:29 +0100720 err = lowpan_register_netdev(netdev, LOWPAN_LLTYPE_BTLE);
Alexander Aring5857d1d2015-07-30 09:40:53 +0200721 if (err < 0) {
722 BT_INFO("register_netdev failed %d", err);
723 spin_lock(&devices_lock);
724 list_del_rcu(&(*dev)->list);
725 spin_unlock(&devices_lock);
726 free_netdev(netdev);
727 goto out;
728 }
729
730 BT_DBG("ifindex %d peer bdaddr %pMR type %d my addr %pMR type %d",
731 netdev->ifindex, &chan->dst, chan->dst_type,
732 &chan->src, chan->src_type);
733 set_bit(__LINK_STATE_PRESENT, &netdev->state);
734
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300735 return 0;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200736
737out:
738 return err;
739}
740
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300741static inline void chan_ready_cb(struct l2cap_chan *chan)
742{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200743 struct lowpan_btle_dev *dev;
Michael Scottd2891c42017-03-28 23:10:54 -0700744 bool new_netdev = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300745
746 dev = lookup_dev(chan->conn);
747
748 BT_DBG("chan %p conn %p dev %p", chan, chan->conn, dev);
749
750 if (!dev) {
751 if (setup_netdev(chan, &dev) < 0) {
752 l2cap_chan_del(chan, -ENOENT);
753 return;
754 }
Michael Scottd2891c42017-03-28 23:10:54 -0700755 new_netdev = true;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300756 }
757
Jukka Rissanen18d93c12014-06-18 16:37:10 +0300758 if (!try_module_get(THIS_MODULE))
759 return;
760
Michael Scottd2891c42017-03-28 23:10:54 -0700761 add_peer_chan(chan, dev, new_netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300762 ifup(dev->netdev);
763}
764
Johan Hedberg2b293492014-08-07 10:03:32 +0300765static inline struct l2cap_chan *chan_new_conn_cb(struct l2cap_chan *pchan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300766{
Johan Hedberg2b293492014-08-07 10:03:32 +0300767 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300768
Johan Hedberg630ef792015-10-06 13:03:22 +0300769 chan = chan_create();
770 if (!chan)
771 return NULL;
772
Johan Hedberg2b293492014-08-07 10:03:32 +0300773 chan->ops = pchan->ops;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300774
775 BT_DBG("chan %p pchan %p", chan, pchan);
776
Johan Hedberg2b293492014-08-07 10:03:32 +0300777 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300778}
779
Jukka Rissanen18722c22013-12-11 17:05:37 +0200780static void delete_netdev(struct work_struct *work)
781{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200782 struct lowpan_btle_dev *entry = container_of(work,
783 struct lowpan_btle_dev,
784 delete_netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200785
Alexander Aring00f59312015-12-09 22:46:29 +0100786 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200787
Glenn Ruben Bakke2ad88fb2015-06-17 07:32:26 -0700788 /* The entry pointer is deleted by the netdev destructor. */
Jukka Rissanen18722c22013-12-11 17:05:37 +0200789}
790
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300791static void chan_close_cb(struct l2cap_chan *chan)
Jukka Rissanen18722c22013-12-11 17:05:37 +0200792{
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200793 struct lowpan_btle_dev *entry;
794 struct lowpan_btle_dev *dev = NULL;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200795 struct lowpan_peer *peer;
796 int err = -ENOENT;
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700797 bool last = false, remove = true;
Jukka Rissanen18722c22013-12-11 17:05:37 +0200798
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300799 BT_DBG("chan %p conn %p", chan, chan->conn);
800
801 if (chan->conn && chan->conn->hcon) {
802 if (!is_bt_6lowpan(chan->conn->hcon))
803 return;
804
805 /* If conn is set, then the netdev is also there and we should
806 * not remove it.
807 */
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700808 remove = false;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300809 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200810
Jukka Rissanen90305822014-10-28 17:16:47 +0200811 spin_lock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200812
Jukka Rissanen90305822014-10-28 17:16:47 +0200813 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Alexander Aring2e4d60c2016-04-11 11:04:18 +0200814 dev = lowpan_btle_dev(entry->netdev);
Jukka Rissanen90305822014-10-28 17:16:47 +0200815 peer = __peer_lookup_chan(dev, chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200816 if (peer) {
817 last = peer_del(dev, peer);
818 err = 0;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300819
820 BT_DBG("dev %p removing %speer %p", dev,
821 last ? "last " : "1 ", peer);
822 BT_DBG("chan %p orig refcnt %d", chan,
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100823 kref_read(&chan->kref));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300824
825 l2cap_chan_put(chan);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200826 break;
827 }
828 }
829
830 if (!err && last && dev && !atomic_read(&dev->peer_count)) {
Jukka Rissanen90305822014-10-28 17:16:47 +0200831 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200832
833 cancel_delayed_work_sync(&dev->notify_peers);
834
Jukka Rissanen7f118252014-06-18 16:37:11 +0300835 ifdown(dev->netdev);
836
Glenn Ruben Bakkef63666d22015-06-17 07:32:24 -0700837 if (remove) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300838 INIT_WORK(&entry->delete_netdev, delete_netdev);
839 schedule_work(&entry->delete_netdev);
840 }
Jukka Rissanen18722c22013-12-11 17:05:37 +0200841 } else {
Jukka Rissanen90305822014-10-28 17:16:47 +0200842 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +0200843 }
844
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300845 return;
846}
847
848static void chan_state_change_cb(struct l2cap_chan *chan, int state, int err)
849{
850 BT_DBG("chan %p conn %p state %s err %d", chan, chan->conn,
851 state_to_string(state), err);
852}
853
854static struct sk_buff *chan_alloc_skb_cb(struct l2cap_chan *chan,
855 unsigned long hdr_len,
856 unsigned long len, int nb)
857{
858 /* Note that we must allocate using GFP_ATOMIC here as
859 * this function is called originally from netdev hard xmit
860 * function in atomic context.
861 */
862 return bt_skb_alloc(hdr_len + len, GFP_ATOMIC);
863}
864
865static void chan_suspend_cb(struct l2cap_chan *chan)
866{
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300867 struct lowpan_btle_dev *dev;
868
Michael Scott6dea44f2017-03-28 23:10:18 -0700869 BT_DBG("chan %p suspend", chan);
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300870
871 dev = lookup_dev(chan->conn);
872 if (!dev || !dev->netdev)
873 return;
874
875 netif_stop_queue(dev->netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300876}
877
878static void chan_resume_cb(struct l2cap_chan *chan)
879{
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300880 struct lowpan_btle_dev *dev;
881
Michael Scott6dea44f2017-03-28 23:10:18 -0700882 BT_DBG("chan %p resume", chan);
Luiz Augusto von Dentzf183e522017-04-11 22:21:00 +0300883
884 dev = lookup_dev(chan->conn);
885 if (!dev || !dev->netdev)
886 return;
887
888 netif_wake_queue(dev->netdev);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300889}
890
891static long chan_get_sndtimeo_cb(struct l2cap_chan *chan)
892{
Jukka Rissanen2ae50d82014-09-08 12:11:43 +0300893 return L2CAP_CONN_TIMEOUT;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300894}
895
896static const struct l2cap_ops bt_6lowpan_chan_ops = {
897 .name = "L2CAP 6LoWPAN channel",
898 .new_connection = chan_new_conn_cb,
899 .recv = chan_recv_cb,
900 .close = chan_close_cb,
901 .state_change = chan_state_change_cb,
902 .ready = chan_ready_cb,
903 .resume = chan_resume_cb,
904 .suspend = chan_suspend_cb,
905 .get_sndtimeo = chan_get_sndtimeo_cb,
906 .alloc_skb = chan_alloc_skb_cb,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300907
908 .teardown = l2cap_chan_no_teardown,
909 .defer = l2cap_chan_no_defer,
910 .set_shutdown = l2cap_chan_no_set_shutdown,
911};
912
913static inline __u8 bdaddr_type(__u8 type)
914{
915 if (type == ADDR_LE_DEV_PUBLIC)
916 return BDADDR_LE_PUBLIC;
917 else
918 return BDADDR_LE_RANDOM;
919}
920
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300921static int bt_6lowpan_connect(bdaddr_t *addr, u8 dst_type)
922{
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300923 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300924 int err;
925
Johan Hedberg26d46df2015-10-06 13:03:24 +0300926 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300927 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300928 return -EINVAL;
929
Johan Hedberg26d46df2015-10-06 13:03:24 +0300930 chan->ops = &bt_6lowpan_chan_ops;
931
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300932 err = l2cap_chan_connect(chan, cpu_to_le16(L2CAP_PSM_IPSP), 0,
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300933 addr, dst_type);
934
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300935 BT_DBG("chan %p err %d", chan, err);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300936 if (err < 0)
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300937 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300938
Jukka Rissanen18722c22013-12-11 17:05:37 +0200939 return err;
940}
941
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300942static int bt_6lowpan_disconnect(struct l2cap_conn *conn, u8 dst_type)
943{
944 struct lowpan_peer *peer;
945
946 BT_DBG("conn %p dst type %d", conn, dst_type);
947
948 peer = lookup_peer(conn);
949 if (!peer)
950 return -ENOENT;
951
952 BT_DBG("peer %p chan %p", peer, peer->chan);
953
954 l2cap_chan_close(peer->chan, ENOENT);
955
956 return 0;
957}
958
959static struct l2cap_chan *bt_6lowpan_listen(void)
960{
961 bdaddr_t *addr = BDADDR_ANY;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300962 struct l2cap_chan *chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300963 int err;
964
Jukka Rissanen7b2ed602015-01-08 17:00:55 +0200965 if (!enable_6lowpan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300966 return NULL;
967
Johan Hedberg26d46df2015-10-06 13:03:24 +0300968 chan = chan_create();
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300969 if (!chan)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300970 return NULL;
971
Johan Hedberg26d46df2015-10-06 13:03:24 +0300972 chan->ops = &bt_6lowpan_chan_ops;
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300973 chan->state = BT_LISTEN;
974 chan->src_type = BDADDR_LE_PUBLIC;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300975
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300976 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
Johan Hedberg2773b022014-11-13 09:46:05 +0200977
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300978 BT_DBG("chan %p src type %d", chan, chan->src_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300979
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300980 err = l2cap_add_psm(chan, addr, cpu_to_le16(L2CAP_PSM_IPSP));
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300981 if (err) {
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300982 l2cap_chan_put(chan);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300983 BT_ERR("psm cannot be added err %d", err);
984 return NULL;
985 }
986
Johan Hedberg0cd088f2015-10-06 13:03:23 +0300987 return chan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300988}
989
990static int get_l2cap_conn(char *buf, bdaddr_t *addr, u8 *addr_type,
991 struct l2cap_conn **conn)
992{
993 struct hci_conn *hcon;
994 struct hci_dev *hdev;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +0300995 int n;
996
997 n = sscanf(buf, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
998 &addr->b[5], &addr->b[4], &addr->b[3],
999 &addr->b[2], &addr->b[1], &addr->b[0],
1000 addr_type);
1001
1002 if (n < 7)
1003 return -EINVAL;
1004
Johan Hedberg39385cb2016-11-12 17:03:07 +02001005 /* The LE_PUBLIC address type is ignored because of BDADDR_ANY */
1006 hdev = hci_get_route(addr, BDADDR_ANY, BDADDR_LE_PUBLIC);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001007 if (!hdev)
1008 return -ENOENT;
1009
1010 hci_dev_lock(hdev);
Johan Hedbergf5ad4ff2015-10-21 18:03:02 +03001011 hcon = hci_conn_hash_lookup_le(hdev, addr, *addr_type);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001012 hci_dev_unlock(hdev);
1013
1014 if (!hcon)
1015 return -ENOENT;
1016
1017 *conn = (struct l2cap_conn *)hcon->l2cap_data;
1018
1019 BT_DBG("conn %p dst %pMR type %d", *conn, &hcon->dst, hcon->dst_type);
1020
1021 return 0;
1022}
1023
1024static void disconnect_all_peers(void)
1025{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001026 struct lowpan_btle_dev *entry;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001027 struct lowpan_peer *peer, *tmp_peer, *new_peer;
1028 struct list_head peers;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001029
1030 INIT_LIST_HEAD(&peers);
1031
1032 /* We make a separate list of peers as the close_cb() will
1033 * modify the device peers list so it is better not to mess
1034 * with the same list at the same time.
1035 */
1036
Jukka Rissanen90305822014-10-28 17:16:47 +02001037 rcu_read_lock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001038
Jukka Rissanen90305822014-10-28 17:16:47 +02001039 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
1040 list_for_each_entry_rcu(peer, &entry->peers, list) {
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001041 new_peer = kmalloc(sizeof(*new_peer), GFP_ATOMIC);
1042 if (!new_peer)
1043 break;
1044
1045 new_peer->chan = peer->chan;
1046 INIT_LIST_HEAD(&new_peer->list);
1047
1048 list_add(&new_peer->list, &peers);
1049 }
1050 }
1051
Jukka Rissanen90305822014-10-28 17:16:47 +02001052 rcu_read_unlock();
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001053
Jukka Rissanen90305822014-10-28 17:16:47 +02001054 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001055 list_for_each_entry_safe(peer, tmp_peer, &peers, list) {
1056 l2cap_chan_close(peer->chan, ENOENT);
Jukka Rissanen90305822014-10-28 17:16:47 +02001057
1058 list_del_rcu(&peer->list);
Johan Hedberg4e790222014-11-11 14:16:29 +02001059 kfree_rcu(peer, rcu);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001060 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001061 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001062}
1063
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001064struct set_enable {
Jukka Rissanen90305822014-10-28 17:16:47 +02001065 struct work_struct work;
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001066 bool flag;
Jukka Rissanen90305822014-10-28 17:16:47 +02001067};
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001068
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001069static void do_enable_set(struct work_struct *work)
Jukka Rissanen90305822014-10-28 17:16:47 +02001070{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001071 struct set_enable *set_enable = container_of(work,
1072 struct set_enable, work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001073
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001074 if (!set_enable->flag || enable_6lowpan != set_enable->flag)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001075 /* Disconnect existing connections if 6lowpan is
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001076 * disabled
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001077 */
1078 disconnect_all_peers();
1079
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001080 enable_6lowpan = set_enable->flag;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001081
Lihong Kouf9c70bd2020-06-23 20:28:41 +08001082 mutex_lock(&set_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001083 if (listen_chan) {
1084 l2cap_chan_close(listen_chan, 0);
1085 l2cap_chan_put(listen_chan);
1086 }
1087
1088 listen_chan = bt_6lowpan_listen();
Lihong Kouf9c70bd2020-06-23 20:28:41 +08001089 mutex_unlock(&set_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001090
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001091 kfree(set_enable);
Jukka Rissanen90305822014-10-28 17:16:47 +02001092}
1093
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001094static int lowpan_enable_set(void *data, u64 val)
Jukka Rissanen90305822014-10-28 17:16:47 +02001095{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001096 struct set_enable *set_enable;
Jukka Rissanen90305822014-10-28 17:16:47 +02001097
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001098 set_enable = kzalloc(sizeof(*set_enable), GFP_KERNEL);
1099 if (!set_enable)
Jukka Rissanen90305822014-10-28 17:16:47 +02001100 return -ENOMEM;
1101
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001102 set_enable->flag = !!val;
1103 INIT_WORK(&set_enable->work, do_enable_set);
Jukka Rissanen90305822014-10-28 17:16:47 +02001104
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001105 schedule_work(&set_enable->work);
Jukka Rissanen90305822014-10-28 17:16:47 +02001106
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001107 return 0;
1108}
1109
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001110static int lowpan_enable_get(void *data, u64 *val)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001111{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001112 *val = enable_6lowpan;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001113 return 0;
1114}
1115
YueHaibinge250fab2019-01-16 01:54:06 +00001116DEFINE_DEBUGFS_ATTRIBUTE(lowpan_enable_fops, lowpan_enable_get,
1117 lowpan_enable_set, "%llu\n");
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001118
1119static ssize_t lowpan_control_write(struct file *fp,
1120 const char __user *user_buffer,
1121 size_t count,
1122 loff_t *position)
1123{
1124 char buf[32];
1125 size_t buf_size = min(count, sizeof(buf) - 1);
1126 int ret;
1127 bdaddr_t addr;
1128 u8 addr_type;
1129 struct l2cap_conn *conn = NULL;
1130
1131 if (copy_from_user(buf, user_buffer, buf_size))
1132 return -EFAULT;
1133
1134 buf[buf_size] = '\0';
1135
1136 if (memcmp(buf, "connect ", 8) == 0) {
1137 ret = get_l2cap_conn(&buf[8], &addr, &addr_type, &conn);
1138 if (ret == -EINVAL)
1139 return ret;
1140
Lihong Kouf9c70bd2020-06-23 20:28:41 +08001141 mutex_lock(&set_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001142 if (listen_chan) {
1143 l2cap_chan_close(listen_chan, 0);
1144 l2cap_chan_put(listen_chan);
1145 listen_chan = NULL;
1146 }
Lihong Kouf9c70bd2020-06-23 20:28:41 +08001147 mutex_unlock(&set_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001148
1149 if (conn) {
1150 struct lowpan_peer *peer;
1151
1152 if (!is_bt_6lowpan(conn->hcon))
1153 return -EINVAL;
1154
1155 peer = lookup_peer(conn);
1156 if (peer) {
1157 BT_DBG("6LoWPAN connection already exists");
1158 return -EALREADY;
1159 }
1160
1161 BT_DBG("conn %p dst %pMR type %d user %d", conn,
1162 &conn->hcon->dst, conn->hcon->dst_type,
1163 addr_type);
1164 }
1165
1166 ret = bt_6lowpan_connect(&addr, addr_type);
1167 if (ret < 0)
1168 return ret;
1169
1170 return count;
1171 }
1172
1173 if (memcmp(buf, "disconnect ", 11) == 0) {
1174 ret = get_l2cap_conn(&buf[11], &addr, &addr_type, &conn);
1175 if (ret < 0)
1176 return ret;
1177
1178 ret = bt_6lowpan_disconnect(conn, addr_type);
1179 if (ret < 0)
1180 return ret;
1181
1182 return count;
1183 }
1184
1185 return count;
1186}
1187
1188static int lowpan_control_show(struct seq_file *f, void *ptr)
1189{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001190 struct lowpan_btle_dev *entry;
Jukka Rissanen90305822014-10-28 17:16:47 +02001191 struct lowpan_peer *peer;
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001192
Jukka Rissanen90305822014-10-28 17:16:47 +02001193 spin_lock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001194
Jukka Rissanen90305822014-10-28 17:16:47 +02001195 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
1196 list_for_each_entry(peer, &entry->peers, list)
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001197 seq_printf(f, "%pMR (type %u)\n",
1198 &peer->chan->dst, peer->chan->dst_type);
1199 }
1200
Jukka Rissanen90305822014-10-28 17:16:47 +02001201 spin_unlock(&devices_lock);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001202
1203 return 0;
1204}
1205
1206static int lowpan_control_open(struct inode *inode, struct file *file)
1207{
1208 return single_open(file, lowpan_control_show, inode->i_private);
1209}
1210
1211static const struct file_operations lowpan_control_fops = {
1212 .open = lowpan_control_open,
1213 .read = seq_read,
1214 .write = lowpan_control_write,
1215 .llseek = seq_lseek,
1216 .release = single_release,
1217};
1218
Jukka Rissanen7f118252014-06-18 16:37:11 +03001219static void disconnect_devices(void)
1220{
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001221 struct lowpan_btle_dev *entry, *tmp, *new_dev;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001222 struct list_head devices;
Jukka Rissanen7f118252014-06-18 16:37:11 +03001223
1224 INIT_LIST_HEAD(&devices);
1225
1226 /* We make a separate list of devices because the unregister_netdev()
1227 * will call device_event() which will also want to modify the same
1228 * devices list.
1229 */
1230
Jukka Rissanen90305822014-10-28 17:16:47 +02001231 rcu_read_lock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001232
Jukka Rissanen90305822014-10-28 17:16:47 +02001233 list_for_each_entry_rcu(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001234 new_dev = kmalloc(sizeof(*new_dev), GFP_ATOMIC);
1235 if (!new_dev)
1236 break;
1237
1238 new_dev->netdev = entry->netdev;
1239 INIT_LIST_HEAD(&new_dev->list);
1240
Jukka Rissanen90305822014-10-28 17:16:47 +02001241 list_add_rcu(&new_dev->list, &devices);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001242 }
1243
Jukka Rissanen90305822014-10-28 17:16:47 +02001244 rcu_read_unlock();
Jukka Rissanen7f118252014-06-18 16:37:11 +03001245
Dan Carpenterdaac1972014-10-29 19:10:57 +03001246 list_for_each_entry_safe(entry, tmp, &devices, list) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001247 ifdown(entry->netdev);
1248 BT_DBG("Unregistering netdev %s %p",
1249 entry->netdev->name, entry->netdev);
Alexander Aring00f59312015-12-09 22:46:29 +01001250 lowpan_unregister_netdev(entry->netdev);
Jukka Rissanen7f118252014-06-18 16:37:11 +03001251 kfree(entry);
1252 }
1253}
1254
Jukka Rissanen18722c22013-12-11 17:05:37 +02001255static int device_event(struct notifier_block *unused,
1256 unsigned long event, void *ptr)
1257{
1258 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
Alexander Aring2e4d60c2016-04-11 11:04:18 +02001259 struct lowpan_btle_dev *entry;
Jukka Rissanen18722c22013-12-11 17:05:37 +02001260
1261 if (netdev->type != ARPHRD_6LOWPAN)
1262 return NOTIFY_DONE;
1263
1264 switch (event) {
1265 case NETDEV_UNREGISTER:
Jukka Rissanen90305822014-10-28 17:16:47 +02001266 spin_lock(&devices_lock);
1267 list_for_each_entry(entry, &bt_6lowpan_devices, list) {
Jukka Rissanen18722c22013-12-11 17:05:37 +02001268 if (entry->netdev == netdev) {
Jukka Rissanen7f118252014-06-18 16:37:11 +03001269 BT_DBG("Unregistered netdev %s %p",
1270 netdev->name, netdev);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001271 list_del(&entry->list);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001272 break;
1273 }
1274 }
Jukka Rissanen90305822014-10-28 17:16:47 +02001275 spin_unlock(&devices_lock);
Jukka Rissanen18722c22013-12-11 17:05:37 +02001276 break;
1277 }
1278
1279 return NOTIFY_DONE;
1280}
1281
1282static struct notifier_block bt_6lowpan_dev_notifier = {
1283 .notifier_call = device_event,
1284};
1285
Jukka Rissanen5547e482014-06-18 16:37:09 +03001286static int __init bt_6lowpan_init(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001287{
YueHaibinge250fab2019-01-16 01:54:06 +00001288 lowpan_enable_debugfs = debugfs_create_file_unsafe("6lowpan_enable",
1289 0644, bt_debugfs,
1290 NULL,
1291 &lowpan_enable_fops);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001292 lowpan_control_debugfs = debugfs_create_file("6lowpan_control", 0644,
1293 bt_debugfs, NULL,
1294 &lowpan_control_fops);
1295
Jukka Rissanen18722c22013-12-11 17:05:37 +02001296 return register_netdevice_notifier(&bt_6lowpan_dev_notifier);
1297}
1298
Jukka Rissanen5547e482014-06-18 16:37:09 +03001299static void __exit bt_6lowpan_exit(void)
Jukka Rissanen18722c22013-12-11 17:05:37 +02001300{
Jukka Rissanen7b2ed602015-01-08 17:00:55 +02001301 debugfs_remove(lowpan_enable_debugfs);
Jukka Rissanen6b8d4a62014-06-18 16:37:08 +03001302 debugfs_remove(lowpan_control_debugfs);
1303
1304 if (listen_chan) {
1305 l2cap_chan_close(listen_chan, 0);
1306 l2cap_chan_put(listen_chan);
1307 }
1308
Jukka Rissanen7f118252014-06-18 16:37:11 +03001309 disconnect_devices();
1310
Jukka Rissanen18722c22013-12-11 17:05:37 +02001311 unregister_netdevice_notifier(&bt_6lowpan_dev_notifier);
1312}
Jukka Rissanen5547e482014-06-18 16:37:09 +03001313
1314module_init(bt_6lowpan_init);
1315module_exit(bt_6lowpan_exit);
1316
1317MODULE_AUTHOR("Jukka Rissanen <jukka.rissanen@linux.intel.com>");
1318MODULE_DESCRIPTION("Bluetooth 6LoWPAN");
1319MODULE_VERSION(VERSION);
1320MODULE_LICENSE("GPL");