blob: 2cdc7e63fe172b4598c1848606e9cdbba54ed018 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +04002/*
Varka Bhadram69bb6312014-11-25 10:04:57 +05303 * Netlink interface for IEEE 802.15.4 stack
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +04004 *
5 * Copyright 2007, 2008 Siemens AG
6 *
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +04007 * Written by:
8 * Sergey Lapin <slapin@ossfans.org>
9 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
10 * Maxim Osipov <maxim.osipov@siemens.com>
11 */
12
13#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +030015#include <linux/if_arp.h>
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040016#include <net/netlink.h>
17#include <net/genetlink.h>
Alexander Aring5ad60d32014-10-25 09:41:02 +020018#include <net/cfg802154.h>
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +030019#include <net/af_ieee802154.h>
20#include <net/ieee802154_netdev.h>
21#include <net/rtnetlink.h> /* for rtnl_{un,}lock */
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040022#include <linux/nl802154.h>
23
24#include "ieee802154.h"
Alexander Aring4a9a8162014-11-02 04:18:38 +010025#include "rdev-ops.h"
26#include "core.h"
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040027
Eric W. Biederman15e47302012-09-07 20:12:54 +000028static int ieee802154_nl_fill_phy(struct sk_buff *msg, u32 portid,
Varka Bhadram4710d802014-07-02 09:01:09 +053029 u32 seq, int flags, struct wpan_phy *phy)
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040030{
31 void *hdr;
32 int i, pages = 0;
Kees Cook6396bb22018-06-12 14:03:40 -070033 uint32_t *buf = kcalloc(32, sizeof(uint32_t), GFP_KERNEL);
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040034
35 pr_debug("%s\n", __func__);
36
37 if (!buf)
Jesper Juhlb9cabe52011-06-12 04:28:16 +000038 return -EMSGSIZE;
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040039
40 hdr = genlmsg_put(msg, 0, seq, &nl802154_family, flags,
Varka Bhadram4710d802014-07-02 09:01:09 +053041 IEEE802154_LIST_PHY);
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040042 if (!hdr)
43 goto out;
44
Alexander Aring4a3a8c02015-05-22 17:43:52 +020045 rtnl_lock();
David S. Millerbe51da02012-04-01 20:45:25 -040046 if (nla_put_string(msg, IEEE802154_ATTR_PHY_NAME, wpan_phy_name(phy)) ||
47 nla_put_u8(msg, IEEE802154_ATTR_PAGE, phy->current_page) ||
48 nla_put_u8(msg, IEEE802154_ATTR_CHANNEL, phy->current_channel))
49 goto nla_put_failure;
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040050 for (i = 0; i < 32; i++) {
Alexander Aring72f655e2015-05-17 21:44:42 +020051 if (phy->supported.channels[i])
52 buf[pages++] = phy->supported.channels[i] | (i << 27);
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040053 }
David S. Millerbe51da02012-04-01 20:45:25 -040054 if (pages &&
55 nla_put(msg, IEEE802154_ATTR_CHANNEL_PAGE_LIST,
56 pages * sizeof(uint32_t), buf))
57 goto nla_put_failure;
Alexander Aring4a3a8c02015-05-22 17:43:52 +020058 rtnl_unlock();
Jesper Juhlb9cabe52011-06-12 04:28:16 +000059 kfree(buf);
Johannes Berg053c0952015-01-16 22:09:00 +010060 genlmsg_end(msg, hdr);
61 return 0;
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040062
63nla_put_failure:
Alexander Aring4a3a8c02015-05-22 17:43:52 +020064 rtnl_unlock();
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040065 genlmsg_cancel(msg, hdr);
66out:
67 kfree(buf);
68 return -EMSGSIZE;
69}
70
Johannes Berg1c582d92013-11-14 17:14:41 +010071int ieee802154_list_phy(struct sk_buff *skb, struct genl_info *info)
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040072{
73 /* Request for interface name, index, type, IEEE address,
Varka Bhadram4710d802014-07-02 09:01:09 +053074 * PAN Id, short address
75 */
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040076 struct sk_buff *msg;
77 struct wpan_phy *phy;
78 const char *name;
79 int rc = -ENOBUFS;
80
81 pr_debug("%s\n", __func__);
82
83 if (!info->attrs[IEEE802154_ATTR_PHY_NAME])
84 return -EINVAL;
85
86 name = nla_data(info->attrs[IEEE802154_ATTR_PHY_NAME]);
87 if (name[nla_len(info->attrs[IEEE802154_ATTR_PHY_NAME]) - 1] != '\0')
88 return -EINVAL; /* phy name should be null-terminated */
89
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040090 phy = wpan_phy_find(name);
91 if (!phy)
92 return -ENODEV;
93
Thomas Graf58050fc2012-06-28 03:57:45 +000094 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +040095 if (!msg)
96 goto out_dev;
97
Eric W. Biederman15e47302012-09-07 20:12:54 +000098 rc = ieee802154_nl_fill_phy(msg, info->snd_portid, info->snd_seq,
Varka Bhadram4710d802014-07-02 09:01:09 +053099 0, phy);
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +0400100 if (rc < 0)
101 goto out_free;
102
103 wpan_phy_put(phy);
104
105 return genlmsg_reply(msg, info);
106out_free:
107 nlmsg_free(msg);
108out_dev:
109 wpan_phy_put(phy);
110 return rc;
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +0400111}
112
113struct dump_phy_data {
114 struct sk_buff *skb;
115 struct netlink_callback *cb;
116 int idx, s_idx;
117};
118
119static int ieee802154_dump_phy_iter(struct wpan_phy *phy, void *_data)
120{
121 int rc;
122 struct dump_phy_data *data = _data;
123
124 pr_debug("%s\n", __func__);
125
126 if (data->idx++ < data->s_idx)
127 return 0;
128
129 rc = ieee802154_nl_fill_phy(data->skb,
Varka Bhadram4710d802014-07-02 09:01:09 +0530130 NETLINK_CB(data->cb->skb).portid,
131 data->cb->nlh->nlmsg_seq,
132 NLM_F_MULTI,
133 phy);
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +0400134
135 if (rc < 0) {
136 data->idx--;
137 return rc;
138 }
139
140 return 0;
141}
142
Johannes Berg1c582d92013-11-14 17:14:41 +0100143int ieee802154_dump_phy(struct sk_buff *skb, struct netlink_callback *cb)
Dmitry Eremin-Solenikov1eaa9d02009-09-15 17:04:44 +0400144{
145 struct dump_phy_data data = {
146 .cb = cb,
147 .skb = skb,
148 .s_idx = cb->args[0],
149 .idx = 0,
150 };
151
152 pr_debug("%s\n", __func__);
153
154 wpan_phy_for_each(ieee802154_dump_phy_iter, &data);
155
156 cb->args[0] = data.idx;
157
158 return skb->len;
159}
160
Johannes Berg1c582d92013-11-14 17:14:41 +0100161int ieee802154_add_iface(struct sk_buff *skb, struct genl_info *info)
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300162{
163 struct sk_buff *msg;
164 struct wpan_phy *phy;
165 const char *name;
166 const char *devname;
167 int rc = -ENOBUFS;
168 struct net_device *dev;
alex.bluesman.smirnov@gmail.com90c049b2012-05-15 20:50:27 +0000169 int type = __IEEE802154_DEV_INVALID;
Varka Bhadram5b4a10392015-04-30 17:44:57 +0200170 unsigned char name_assign_type;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300171
172 pr_debug("%s\n", __func__);
173
174 if (!info->attrs[IEEE802154_ATTR_PHY_NAME])
175 return -EINVAL;
176
177 name = nla_data(info->attrs[IEEE802154_ATTR_PHY_NAME]);
178 if (name[nla_len(info->attrs[IEEE802154_ATTR_PHY_NAME]) - 1] != '\0')
179 return -EINVAL; /* phy name should be null-terminated */
180
181 if (info->attrs[IEEE802154_ATTR_DEV_NAME]) {
182 devname = nla_data(info->attrs[IEEE802154_ATTR_DEV_NAME]);
183 if (devname[nla_len(info->attrs[IEEE802154_ATTR_DEV_NAME]) - 1]
184 != '\0')
185 return -EINVAL; /* phy name should be null-terminated */
Varka Bhadram5b4a10392015-04-30 17:44:57 +0200186 name_assign_type = NET_NAME_USER;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300187 } else {
188 devname = "wpan%d";
Varka Bhadram5b4a10392015-04-30 17:44:57 +0200189 name_assign_type = NET_NAME_ENUM;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300190 }
191
192 if (strlen(devname) >= IFNAMSIZ)
193 return -ENAMETOOLONG;
194
195 phy = wpan_phy_find(name);
196 if (!phy)
197 return -ENODEV;
198
199 msg = ieee802154_nl_new_reply(info, 0, IEEE802154_ADD_IFACE);
200 if (!msg)
201 goto out_dev;
202
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300203 if (info->attrs[IEEE802154_ATTR_HW_ADDR] &&
204 nla_len(info->attrs[IEEE802154_ATTR_HW_ADDR]) !=
205 IEEE802154_ADDR_LEN) {
206 rc = -EINVAL;
207 goto nla_put_failure;
208 }
209
alex.bluesman.smirnov@gmail.com90c049b2012-05-15 20:50:27 +0000210 if (info->attrs[IEEE802154_ATTR_DEV_TYPE]) {
211 type = nla_get_u8(info->attrs[IEEE802154_ATTR_DEV_TYPE]);
Christian Engelmayer267d29a2014-01-11 22:19:30 +0100212 if (type >= __IEEE802154_DEV_MAX) {
213 rc = -EINVAL;
214 goto nla_put_failure;
215 }
alex.bluesman.smirnov@gmail.com90c049b2012-05-15 20:50:27 +0000216 }
217
Alexander Aring4a9a8162014-11-02 04:18:38 +0100218 dev = rdev_add_virtual_intf_deprecated(wpan_phy_to_rdev(phy), devname,
Varka Bhadram5b4a10392015-04-30 17:44:57 +0200219 name_assign_type, type);
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300220 if (IS_ERR(dev)) {
221 rc = PTR_ERR(dev);
222 goto nla_put_failure;
223 }
Alexander Aring12cb56c2014-11-05 20:51:16 +0100224 dev_hold(dev);
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300225
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300226 if (info->attrs[IEEE802154_ATTR_HW_ADDR]) {
227 struct sockaddr addr;
228
229 addr.sa_family = ARPHRD_IEEE802154;
230 nla_memcpy(&addr.sa_data, info->attrs[IEEE802154_ATTR_HW_ADDR],
Varka Bhadram4710d802014-07-02 09:01:09 +0530231 IEEE802154_ADDR_LEN);
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300232
Varka Bhadram4710d802014-07-02 09:01:09 +0530233 /* strangely enough, some callbacks (inetdev_event) from
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300234 * dev_set_mac_address require RTNL_LOCK
235 */
236 rtnl_lock();
Petr Machata3a37a962018-12-13 11:54:30 +0000237 rc = dev_set_mac_address(dev, &addr, NULL);
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300238 rtnl_unlock();
239 if (rc)
240 goto dev_unregister;
241 }
242
David S. Millerbe51da02012-04-01 20:45:25 -0400243 if (nla_put_string(msg, IEEE802154_ATTR_PHY_NAME, wpan_phy_name(phy)) ||
244 nla_put_string(msg, IEEE802154_ATTR_DEV_NAME, dev->name))
245 goto nla_put_failure;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300246 dev_put(dev);
247
248 wpan_phy_put(phy);
249
250 return ieee802154_nl_reply(msg, info);
251
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300252dev_unregister:
253 rtnl_lock(); /* del_iface must be called with RTNL lock */
Alexander Aring4a9a8162014-11-02 04:18:38 +0100254 rdev_del_virtual_intf_deprecated(wpan_phy_to_rdev(phy), dev);
Dmitry Eremin-Solenikov060e4172010-03-18 19:26:23 +0300255 dev_put(dev);
256 rtnl_unlock();
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300257nla_put_failure:
258 nlmsg_free(msg);
259out_dev:
260 wpan_phy_put(phy);
261 return rc;
262}
263
Johannes Berg1c582d92013-11-14 17:14:41 +0100264int ieee802154_del_iface(struct sk_buff *skb, struct genl_info *info)
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300265{
266 struct sk_buff *msg;
267 struct wpan_phy *phy;
268 const char *name;
269 int rc;
270 struct net_device *dev;
271
272 pr_debug("%s\n", __func__);
273
274 if (!info->attrs[IEEE802154_ATTR_DEV_NAME])
275 return -EINVAL;
276
277 name = nla_data(info->attrs[IEEE802154_ATTR_DEV_NAME]);
278 if (name[nla_len(info->attrs[IEEE802154_ATTR_DEV_NAME]) - 1] != '\0')
279 return -EINVAL; /* name should be null-terminated */
280
vegard.nossum@oracle.com5b3211d2016-07-20 10:43:11 +0200281 rc = -ENODEV;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300282 dev = dev_get_by_name(genl_info_net(info), name);
283 if (!dev)
vegard.nossum@oracle.com5b3211d2016-07-20 10:43:11 +0200284 return rc;
285 if (dev->type != ARPHRD_IEEE802154)
286 goto out;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300287
Alexander Aringbd28a112014-11-05 20:51:18 +0100288 phy = dev->ieee802154_ptr->wpan_phy;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300289 BUG_ON(!phy);
Alexander Aringbd28a112014-11-05 20:51:18 +0100290 get_device(&phy->dev);
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300291
292 rc = -EINVAL;
293 /* phy name is optional, but should be checked if it's given */
294 if (info->attrs[IEEE802154_ATTR_PHY_NAME]) {
295 struct wpan_phy *phy2;
296
297 const char *pname =
298 nla_data(info->attrs[IEEE802154_ATTR_PHY_NAME]);
299 if (pname[nla_len(info->attrs[IEEE802154_ATTR_PHY_NAME]) - 1]
300 != '\0')
301 /* name should be null-terminated */
302 goto out_dev;
303
304 phy2 = wpan_phy_find(pname);
305 if (!phy2)
306 goto out_dev;
307
308 if (phy != phy2) {
309 wpan_phy_put(phy2);
310 goto out_dev;
311 }
312 }
313
314 rc = -ENOBUFS;
315
316 msg = ieee802154_nl_new_reply(info, 0, IEEE802154_DEL_IFACE);
317 if (!msg)
318 goto out_dev;
319
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300320 rtnl_lock();
Alexander Aring4a9a8162014-11-02 04:18:38 +0100321 rdev_del_virtual_intf_deprecated(wpan_phy_to_rdev(phy), dev);
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300322
323 /* We don't have device anymore */
324 dev_put(dev);
325 dev = NULL;
326
327 rtnl_unlock();
328
David S. Millerbe51da02012-04-01 20:45:25 -0400329 if (nla_put_string(msg, IEEE802154_ATTR_PHY_NAME, wpan_phy_name(phy)) ||
330 nla_put_string(msg, IEEE802154_ATTR_DEV_NAME, name))
331 goto nla_put_failure;
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300332 wpan_phy_put(phy);
333
334 return ieee802154_nl_reply(msg, info);
335
336nla_put_failure:
337 nlmsg_free(msg);
338out_dev:
339 wpan_phy_put(phy);
vegard.nossum@oracle.com5b3211d2016-07-20 10:43:11 +0200340out:
Dmitry Eremin-Solenikovbb1cafb2009-11-05 16:56:23 +0300341 if (dev)
342 dev_put(dev);
343
344 return rc;
345}