blob: 5f76183ad5bca9038cc72d91da4968c9a56224cb [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * net-sysfs.c - network device class and attributes
4 *
5 * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Randy Dunlap4fc268d2006-01-11 12:17:47 -08008#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/netdevice.h>
11#include <linux/if_arp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010013#include <linux/sched/signal.h>
Alex Belits07bbecb2020-06-25 18:34:43 -040014#include <linux/sched/isolation.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070015#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <net/sock.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070017#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/rtnetlink.h>
Tom Herbertfec5e652010-04-16 16:01:27 -070019#include <linux/vmalloc.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040020#include <linux/export.h>
Tom Herbert114cf582011-11-28 16:33:09 +000021#include <linux/jiffies.h>
Ming Lei9802c8e2013-02-22 16:34:16 -080022#include <linux/pm_runtime.h>
Florian Fainelliaa836df2015-03-09 14:31:20 -070023#include <linux/of.h>
Ben Dooks88832a22016-06-07 19:27:51 +010024#include <linux/of_net.h>
Andrei Vagin4d99f662018-08-08 20:07:35 -070025#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Pavel Emelyanov342709e2007-10-23 21:14:45 -070027#include "net-sysfs.h"
28
Eric W. Biederman8b41d182007-09-26 22:02:53 -070029#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static const char fmt_hex[] = "%#x\n";
31static const char fmt_dec[] = "%d\n";
32static const char fmt_ulong[] = "%lu\n";
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +000033static const char fmt_u64[] = "%llu\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090035static inline int dev_isalive(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -070037 return dev->reg_state <= NETREG_REGISTERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
40/* use same locking rules as GIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070041static ssize_t netdev_show(const struct device *dev,
42 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 ssize_t (*format)(const struct net_device *, char *))
44{
WANG Cong6b53daf2014-07-23 16:09:10 -070045 struct net_device *ndev = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 ssize_t ret = -EINVAL;
47
48 read_lock(&dev_base_lock);
WANG Cong6b53daf2014-07-23 16:09:10 -070049 if (dev_isalive(ndev))
50 ret = (*format)(ndev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 read_unlock(&dev_base_lock);
52
53 return ret;
54}
55
56/* generate a show function for simple field */
57#define NETDEVICE_SHOW(field, format_string) \
WANG Cong6b53daf2014-07-23 16:09:10 -070058static ssize_t format_##field(const struct net_device *dev, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{ \
WANG Cong6b53daf2014-07-23 16:09:10 -070060 return sprintf(buf, format_string, dev->field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070061} \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070062static ssize_t field##_show(struct device *dev, \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070063 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070065 return netdev_show(dev, attr, buf, format_##field); \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070066} \
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070068#define NETDEVICE_SHOW_RO(field, format_string) \
69NETDEVICE_SHOW(field, format_string); \
70static DEVICE_ATTR_RO(field)
71
72#define NETDEVICE_SHOW_RW(field, format_string) \
73NETDEVICE_SHOW(field, format_string); \
74static DEVICE_ATTR_RW(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/* use same locking and permission rules as SIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070077static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 const char *buf, size_t len,
79 int (*set)(struct net_device *, unsigned long))
80{
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000081 struct net_device *netdev = to_net_dev(dev);
82 struct net *net = dev_net(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 unsigned long new;
Colin Ian King5f0224a2020-04-09 14:41:26 +010084 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000086 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return -EPERM;
88
Shuah Khane1e420c2012-04-12 09:28:13 +000089 ret = kstrtoul(buf, 0, &new);
90 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 goto err;
92
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000093 if (!rtnl_trylock())
Eric W. Biederman336ca572009-05-13 16:57:25 +000094 return restart_syscall();
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000095
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000096 if (dev_isalive(netdev)) {
stephen hemminger6648c652017-08-18 13:46:28 -070097 ret = (*set)(netdev, new);
98 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 ret = len;
100 }
101 rtnl_unlock();
102 err:
103 return ret;
104}
105
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700106NETDEVICE_SHOW_RO(dev_id, fmt_hex);
Amir Vadai3f859442014-02-25 18:17:50 +0200107NETDEVICE_SHOW_RO(dev_port, fmt_dec);
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700108NETDEVICE_SHOW_RO(addr_assign_type, fmt_dec);
109NETDEVICE_SHOW_RO(addr_len, fmt_dec);
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700110NETDEVICE_SHOW_RO(ifindex, fmt_dec);
111NETDEVICE_SHOW_RO(type, fmt_dec);
112NETDEVICE_SHOW_RO(link_mode, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200114static ssize_t iflink_show(struct device *dev, struct device_attribute *attr,
115 char *buf)
116{
117 struct net_device *ndev = to_net_dev(dev);
118
119 return sprintf(buf, fmt_dec, dev_get_iflink(ndev));
120}
121static DEVICE_ATTR_RO(iflink);
122
WANG Cong6b53daf2014-07-23 16:09:10 -0700123static ssize_t format_name_assign_type(const struct net_device *dev, char *buf)
Tom Gundersen685343f2014-07-14 16:37:22 +0200124{
WANG Cong6b53daf2014-07-23 16:09:10 -0700125 return sprintf(buf, fmt_dec, dev->name_assign_type);
Tom Gundersen685343f2014-07-14 16:37:22 +0200126}
127
128static ssize_t name_assign_type_show(struct device *dev,
129 struct device_attribute *attr,
130 char *buf)
131{
WANG Cong6b53daf2014-07-23 16:09:10 -0700132 struct net_device *ndev = to_net_dev(dev);
Tom Gundersen685343f2014-07-14 16:37:22 +0200133 ssize_t ret = -EINVAL;
134
WANG Cong6b53daf2014-07-23 16:09:10 -0700135 if (ndev->name_assign_type != NET_NAME_UNKNOWN)
Tom Gundersen685343f2014-07-14 16:37:22 +0200136 ret = netdev_show(dev, attr, buf, format_name_assign_type);
137
138 return ret;
139}
140static DEVICE_ATTR_RO(name_assign_type);
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* use same locking rules as GIFHWADDR ioctl's */
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700143static ssize_t address_show(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700144 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
WANG Cong6b53daf2014-07-23 16:09:10 -0700146 struct net_device *ndev = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ssize_t ret = -EINVAL;
148
149 read_lock(&dev_base_lock);
WANG Cong6b53daf2014-07-23 16:09:10 -0700150 if (dev_isalive(ndev))
151 ret = sysfs_format_mac(buf, ndev->dev_addr, ndev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 read_unlock(&dev_base_lock);
153 return ret;
154}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700155static DEVICE_ATTR_RO(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700157static ssize_t broadcast_show(struct device *dev,
158 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
WANG Cong6b53daf2014-07-23 16:09:10 -0700160 struct net_device *ndev = to_net_dev(dev);
stephen hemminger6648c652017-08-18 13:46:28 -0700161
WANG Cong6b53daf2014-07-23 16:09:10 -0700162 if (dev_isalive(ndev))
163 return sysfs_format_mac(buf, ndev->broadcast, ndev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return -EINVAL;
165}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700166static DEVICE_ATTR_RO(broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
WANG Cong6b53daf2014-07-23 16:09:10 -0700168static int change_carrier(struct net_device *dev, unsigned long new_carrier)
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000169{
WANG Cong6b53daf2014-07-23 16:09:10 -0700170 if (!netif_running(dev))
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000171 return -EINVAL;
stephen hemminger6648c652017-08-18 13:46:28 -0700172 return dev_change_carrier(dev, (bool)new_carrier);
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000173}
174
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700175static ssize_t carrier_store(struct device *dev, struct device_attribute *attr,
176 const char *buf, size_t len)
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000177{
178 return netdev_store(dev, attr, buf, len, change_carrier);
179}
180
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700181static ssize_t carrier_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700182 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct net_device *netdev = to_net_dev(dev);
stephen hemminger6648c652017-08-18 13:46:28 -0700185
186 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
stephen hemminger6648c652017-08-18 13:46:28 -0700188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return -EINVAL;
190}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700191static DEVICE_ATTR_RW(carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700193static ssize_t speed_show(struct device *dev,
Andy Gospodarekd519e172009-10-02 09:26:12 +0000194 struct device_attribute *attr, char *buf)
195{
196 struct net_device *netdev = to_net_dev(dev);
197 int ret = -EINVAL;
198
199 if (!rtnl_trylock())
200 return restart_syscall();
201
David Decotigny8ae6daca2011-04-27 18:32:38 +0000202 if (netif_running(netdev)) {
David Decotigny7cad1ba2016-02-24 10:58:10 -0800203 struct ethtool_link_ksettings cmd;
204
205 if (!__ethtool_get_link_ksettings(netdev, &cmd))
206 ret = sprintf(buf, fmt_dec, cmd.base.speed);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000207 }
208 rtnl_unlock();
209 return ret;
210}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700211static DEVICE_ATTR_RO(speed);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000212
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700213static ssize_t duplex_show(struct device *dev,
Andy Gospodarekd519e172009-10-02 09:26:12 +0000214 struct device_attribute *attr, char *buf)
215{
216 struct net_device *netdev = to_net_dev(dev);
217 int ret = -EINVAL;
218
219 if (!rtnl_trylock())
220 return restart_syscall();
221
David Decotigny8ae6daca2011-04-27 18:32:38 +0000222 if (netif_running(netdev)) {
David Decotigny7cad1ba2016-02-24 10:58:10 -0800223 struct ethtool_link_ksettings cmd;
224
225 if (!__ethtool_get_link_ksettings(netdev, &cmd)) {
Nikolay Aleksandrovc6c13962012-09-05 04:11:28 +0000226 const char *duplex;
David Decotigny7cad1ba2016-02-24 10:58:10 -0800227
228 switch (cmd.base.duplex) {
Nikolay Aleksandrovc6c13962012-09-05 04:11:28 +0000229 case DUPLEX_HALF:
230 duplex = "half";
231 break;
232 case DUPLEX_FULL:
233 duplex = "full";
234 break;
235 default:
236 duplex = "unknown";
237 break;
238 }
239 ret = sprintf(buf, "%s\n", duplex);
240 }
Andy Gospodarekd519e172009-10-02 09:26:12 +0000241 }
242 rtnl_unlock();
243 return ret;
244}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700245static DEVICE_ATTR_RO(duplex);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000246
Andrew Lunndb30a572020-04-20 00:11:51 +0200247static ssize_t testing_show(struct device *dev,
248 struct device_attribute *attr, char *buf)
249{
250 struct net_device *netdev = to_net_dev(dev);
251
252 if (netif_running(netdev))
253 return sprintf(buf, fmt_dec, !!netif_testing(netdev));
254
255 return -EINVAL;
256}
257static DEVICE_ATTR_RO(testing);
258
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700259static ssize_t dormant_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700260 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800261{
262 struct net_device *netdev = to_net_dev(dev);
263
264 if (netif_running(netdev))
265 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
266
267 return -EINVAL;
268}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700269static DEVICE_ATTR_RO(dormant);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800270
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700271static const char *const operstates[] = {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800272 "unknown",
273 "notpresent", /* currently unused */
274 "down",
275 "lowerlayerdown",
Andrew Lunndb30a572020-04-20 00:11:51 +0200276 "testing",
Stefan Rompfb00055a2006-03-20 17:09:11 -0800277 "dormant",
278 "up"
279};
280
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700281static ssize_t operstate_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700282 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800283{
284 const struct net_device *netdev = to_net_dev(dev);
285 unsigned char operstate;
286
287 read_lock(&dev_base_lock);
288 operstate = netdev->operstate;
289 if (!netif_running(netdev))
290 operstate = IF_OPER_DOWN;
291 read_unlock(&dev_base_lock);
292
Adrian Bunke3a5cd92006-04-05 22:19:47 -0700293 if (operstate >= ARRAY_SIZE(operstates))
Stefan Rompfb00055a2006-03-20 17:09:11 -0800294 return -EINVAL; /* should not happen */
295
296 return sprintf(buf, "%s\n", operstates[operstate]);
297}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700298static DEVICE_ATTR_RO(operstate);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800299
david decotigny2d3b4792014-03-29 09:48:35 -0700300static ssize_t carrier_changes_show(struct device *dev,
301 struct device_attribute *attr,
302 char *buf)
303{
304 struct net_device *netdev = to_net_dev(dev);
stephen hemminger6648c652017-08-18 13:46:28 -0700305
david decotigny2d3b4792014-03-29 09:48:35 -0700306 return sprintf(buf, fmt_dec,
David Decotignyb2d3bcf2018-01-18 09:59:13 -0800307 atomic_read(&netdev->carrier_up_count) +
308 atomic_read(&netdev->carrier_down_count));
david decotigny2d3b4792014-03-29 09:48:35 -0700309}
310static DEVICE_ATTR_RO(carrier_changes);
311
David Decotignyb2d3bcf2018-01-18 09:59:13 -0800312static ssize_t carrier_up_count_show(struct device *dev,
313 struct device_attribute *attr,
314 char *buf)
315{
316 struct net_device *netdev = to_net_dev(dev);
317
318 return sprintf(buf, fmt_dec, atomic_read(&netdev->carrier_up_count));
319}
320static DEVICE_ATTR_RO(carrier_up_count);
321
322static ssize_t carrier_down_count_show(struct device *dev,
323 struct device_attribute *attr,
324 char *buf)
325{
326 struct net_device *netdev = to_net_dev(dev);
327
328 return sprintf(buf, fmt_dec, atomic_read(&netdev->carrier_down_count));
329}
330static DEVICE_ATTR_RO(carrier_down_count);
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/* read-write attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
WANG Cong6b53daf2014-07-23 16:09:10 -0700334static int change_mtu(struct net_device *dev, unsigned long new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
stephen hemminger6648c652017-08-18 13:46:28 -0700336 return dev_set_mtu(dev, (int)new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700339static ssize_t mtu_store(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700340 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700342 return netdev_store(dev, attr, buf, len, change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700344NETDEVICE_SHOW_RW(mtu, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
WANG Cong6b53daf2014-07-23 16:09:10 -0700346static int change_flags(struct net_device *dev, unsigned long new_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Petr Machata567c5e12018-12-06 17:05:42 +0000348 return dev_change_flags(dev, (unsigned int)new_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700351static ssize_t flags_store(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700352 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700354 return netdev_store(dev, attr, buf, len, change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700356NETDEVICE_SHOW_RW(flags, fmt_hex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700358static ssize_t tx_queue_len_store(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700359 struct device_attribute *attr,
360 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000362 if (!capable(CAP_NET_ADMIN))
363 return -EPERM;
364
Cong Wang6a643dd2018-01-25 18:26:22 -0800365 return netdev_store(dev, attr, buf, len, dev_change_tx_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
Alexey Dobriyan0cd29502017-05-17 13:30:44 +0300367NETDEVICE_SHOW_RW(tx_queue_len, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Eric Dumazet3b47d302014-11-06 21:09:44 -0800369static int change_gro_flush_timeout(struct net_device *dev, unsigned long val)
370{
Eric Dumazet7e417a62020-04-22 09:13:28 -0700371 WRITE_ONCE(dev->gro_flush_timeout, val);
Eric Dumazet3b47d302014-11-06 21:09:44 -0800372 return 0;
373}
374
375static ssize_t gro_flush_timeout_store(struct device *dev,
stephen hemminger6648c652017-08-18 13:46:28 -0700376 struct device_attribute *attr,
377 const char *buf, size_t len)
Eric Dumazet3b47d302014-11-06 21:09:44 -0800378{
379 if (!capable(CAP_NET_ADMIN))
380 return -EPERM;
381
382 return netdev_store(dev, attr, buf, len, change_gro_flush_timeout);
383}
384NETDEVICE_SHOW_RW(gro_flush_timeout, fmt_ulong);
385
Eric Dumazet6f8b12d2020-04-22 09:13:27 -0700386static int change_napi_defer_hard_irqs(struct net_device *dev, unsigned long val)
387{
Eric Dumazet7e417a62020-04-22 09:13:28 -0700388 WRITE_ONCE(dev->napi_defer_hard_irqs, val);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -0700389 return 0;
390}
391
392static ssize_t napi_defer_hard_irqs_store(struct device *dev,
393 struct device_attribute *attr,
394 const char *buf, size_t len)
395{
396 if (!capable(CAP_NET_ADMIN))
397 return -EPERM;
398
399 return netdev_store(dev, attr, buf, len, change_napi_defer_hard_irqs);
400}
401NETDEVICE_SHOW_RW(napi_defer_hard_irqs, fmt_dec);
402
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700403static ssize_t ifalias_store(struct device *dev, struct device_attribute *attr,
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700404 const char *buf, size_t len)
405{
406 struct net_device *netdev = to_net_dev(dev);
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000407 struct net *net = dev_net(netdev);
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700408 size_t count = len;
Roopa Prabhuc92eb772017-11-13 23:21:36 -0800409 ssize_t ret = 0;
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700410
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000411 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700412 return -EPERM;
413
414 /* ignore trailing newline */
415 if (len > 0 && buf[len - 1] == '\n')
416 --count;
417
Roopa Prabhuc92eb772017-11-13 23:21:36 -0800418 if (!rtnl_trylock())
419 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700420
Roopa Prabhuc92eb772017-11-13 23:21:36 -0800421 if (dev_isalive(netdev)) {
422 ret = dev_set_alias(netdev, buf, count);
423 if (ret < 0)
424 goto err;
425 ret = len;
426 netdev_state_change(netdev);
427 }
428err:
429 rtnl_unlock();
430
431 return ret;
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700432}
433
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700434static ssize_t ifalias_show(struct device *dev,
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700435 struct device_attribute *attr, char *buf)
436{
437 const struct net_device *netdev = to_net_dev(dev);
Florian Westphal6c557002017-10-02 23:50:05 +0200438 char tmp[IFALIASZ];
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700439 ssize_t ret = 0;
440
Florian Westphal6c557002017-10-02 23:50:05 +0200441 ret = dev_get_alias(netdev, tmp, sizeof(tmp));
442 if (ret > 0)
443 ret = sprintf(buf, "%s\n", tmp);
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700444 return ret;
445}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700446static DEVICE_ATTR_RW(ifalias);
Vlad Dogarua512b922011-01-24 03:37:29 +0000447
WANG Cong6b53daf2014-07-23 16:09:10 -0700448static int change_group(struct net_device *dev, unsigned long new_group)
Vlad Dogarua512b922011-01-24 03:37:29 +0000449{
stephen hemminger6648c652017-08-18 13:46:28 -0700450 dev_set_group(dev, (int)new_group);
Vlad Dogarua512b922011-01-24 03:37:29 +0000451 return 0;
452}
453
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700454static ssize_t group_store(struct device *dev, struct device_attribute *attr,
455 const char *buf, size_t len)
Vlad Dogarua512b922011-01-24 03:37:29 +0000456{
457 return netdev_store(dev, attr, buf, len, change_group);
458}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700459NETDEVICE_SHOW(group, fmt_dec);
Joe Perchesd6444062018-03-23 15:54:38 -0700460static DEVICE_ATTR(netdev_group, 0644, group_show, group_store);
Vlad Dogarua512b922011-01-24 03:37:29 +0000461
Anuradha Karuppiahd746d702015-07-14 13:43:19 -0700462static int change_proto_down(struct net_device *dev, unsigned long proto_down)
463{
stephen hemminger6648c652017-08-18 13:46:28 -0700464 return dev_change_proto_down(dev, (bool)proto_down);
Anuradha Karuppiahd746d702015-07-14 13:43:19 -0700465}
466
467static ssize_t proto_down_store(struct device *dev,
468 struct device_attribute *attr,
469 const char *buf, size_t len)
470{
471 return netdev_store(dev, attr, buf, len, change_proto_down);
472}
473NETDEVICE_SHOW_RW(proto_down, fmt_dec);
474
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700475static ssize_t phys_port_id_show(struct device *dev,
Jiri Pirkoff80e512013-07-29 18:16:51 +0200476 struct device_attribute *attr, char *buf)
477{
478 struct net_device *netdev = to_net_dev(dev);
479 ssize_t ret = -EINVAL;
480
481 if (!rtnl_trylock())
482 return restart_syscall();
483
484 if (dev_isalive(netdev)) {
Jiri Pirko02637fc2014-11-28 14:34:16 +0100485 struct netdev_phys_item_id ppid;
Jiri Pirkoff80e512013-07-29 18:16:51 +0200486
487 ret = dev_get_phys_port_id(netdev, &ppid);
488 if (!ret)
489 ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id);
490 }
491 rtnl_unlock();
492
493 return ret;
494}
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700495static DEVICE_ATTR_RO(phys_port_id);
Jiri Pirkoff80e512013-07-29 18:16:51 +0200496
David Aherndb24a902015-03-17 20:23:15 -0600497static ssize_t phys_port_name_show(struct device *dev,
498 struct device_attribute *attr, char *buf)
499{
500 struct net_device *netdev = to_net_dev(dev);
501 ssize_t ret = -EINVAL;
502
503 if (!rtnl_trylock())
504 return restart_syscall();
505
506 if (dev_isalive(netdev)) {
507 char name[IFNAMSIZ];
508
509 ret = dev_get_phys_port_name(netdev, name, sizeof(name));
510 if (!ret)
511 ret = sprintf(buf, "%s\n", name);
512 }
513 rtnl_unlock();
514
515 return ret;
516}
517static DEVICE_ATTR_RO(phys_port_name);
518
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100519static ssize_t phys_switch_id_show(struct device *dev,
520 struct device_attribute *attr, char *buf)
521{
522 struct net_device *netdev = to_net_dev(dev);
523 ssize_t ret = -EINVAL;
524
525 if (!rtnl_trylock())
526 return restart_syscall();
527
528 if (dev_isalive(netdev)) {
Florian Fainellibccb3022019-02-06 09:45:46 -0800529 struct netdev_phys_item_id ppid = { };
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100530
Florian Fainellibccb3022019-02-06 09:45:46 -0800531 ret = dev_get_port_parent_id(netdev, &ppid, false);
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100532 if (!ret)
Florian Fainellibccb3022019-02-06 09:45:46 -0800533 ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id);
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100534 }
535 rtnl_unlock();
536
537 return ret;
538}
539static DEVICE_ATTR_RO(phys_switch_id);
540
Wei Wang5fdd2f02021-02-08 11:34:10 -0800541static ssize_t threaded_show(struct device *dev,
542 struct device_attribute *attr, char *buf)
543{
544 struct net_device *netdev = to_net_dev(dev);
545 ssize_t ret = -EINVAL;
546
547 if (!rtnl_trylock())
548 return restart_syscall();
549
550 if (dev_isalive(netdev))
551 ret = sprintf(buf, fmt_dec, netdev->threaded);
552
553 rtnl_unlock();
554 return ret;
555}
556
557static int modify_napi_threaded(struct net_device *dev, unsigned long val)
558{
559 int ret;
560
561 if (list_empty(&dev->napi_list))
562 return -EOPNOTSUPP;
563
564 if (val != 0 && val != 1)
565 return -EOPNOTSUPP;
566
567 ret = dev_set_threaded(dev, val);
568
569 return ret;
570}
571
572static ssize_t threaded_store(struct device *dev,
573 struct device_attribute *attr,
574 const char *buf, size_t len)
575{
576 return netdev_store(dev, attr, buf, len, modify_napi_threaded);
577}
578static DEVICE_ATTR_RW(threaded);
579
stephen hemmingerec6cc592017-08-18 13:46:23 -0700580static struct attribute *net_class_attrs[] __ro_after_init = {
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700581 &dev_attr_netdev_group.attr,
582 &dev_attr_type.attr,
583 &dev_attr_dev_id.attr,
Amir Vadai3f859442014-02-25 18:17:50 +0200584 &dev_attr_dev_port.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700585 &dev_attr_iflink.attr,
586 &dev_attr_ifindex.attr,
Tom Gundersen685343f2014-07-14 16:37:22 +0200587 &dev_attr_name_assign_type.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700588 &dev_attr_addr_assign_type.attr,
589 &dev_attr_addr_len.attr,
590 &dev_attr_link_mode.attr,
591 &dev_attr_address.attr,
592 &dev_attr_broadcast.attr,
593 &dev_attr_speed.attr,
594 &dev_attr_duplex.attr,
595 &dev_attr_dormant.attr,
Andrew Lunndb30a572020-04-20 00:11:51 +0200596 &dev_attr_testing.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700597 &dev_attr_operstate.attr,
david decotigny2d3b4792014-03-29 09:48:35 -0700598 &dev_attr_carrier_changes.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700599 &dev_attr_ifalias.attr,
600 &dev_attr_carrier.attr,
601 &dev_attr_mtu.attr,
602 &dev_attr_flags.attr,
603 &dev_attr_tx_queue_len.attr,
Eric Dumazet3b47d302014-11-06 21:09:44 -0800604 &dev_attr_gro_flush_timeout.attr,
Eric Dumazet6f8b12d2020-04-22 09:13:27 -0700605 &dev_attr_napi_defer_hard_irqs.attr,
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700606 &dev_attr_phys_port_id.attr,
David Aherndb24a902015-03-17 20:23:15 -0600607 &dev_attr_phys_port_name.attr,
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100608 &dev_attr_phys_switch_id.attr,
Anuradha Karuppiahd746d702015-07-14 13:43:19 -0700609 &dev_attr_proto_down.attr,
David Decotignyb2d3bcf2018-01-18 09:59:13 -0800610 &dev_attr_carrier_up_count.attr,
611 &dev_attr_carrier_down_count.attr,
Wei Wang5fdd2f02021-02-08 11:34:10 -0800612 &dev_attr_threaded.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700613 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614};
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700615ATTRIBUTE_GROUPS(net_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617/* Show a given an attribute in the statistics group */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700618static ssize_t netstat_show(const struct device *d,
619 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 unsigned long offset)
621{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700622 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 ssize_t ret = -EINVAL;
624
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000625 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
stephen hemminger6648c652017-08-18 13:46:28 -0700626 offset % sizeof(u64) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 read_lock(&dev_base_lock);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700629 if (dev_isalive(dev)) {
Eric Dumazet28172732010-07-07 14:58:56 -0700630 struct rtnl_link_stats64 temp;
631 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
632
stephen hemminger6648c652017-08-18 13:46:28 -0700633 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *)stats) + offset));
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 read_unlock(&dev_base_lock);
636 return ret;
637}
638
639/* generate a read-only statistics attribute */
640#define NETSTAT_ENTRY(name) \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700641static ssize_t name##_show(struct device *d, \
stephen hemminger6648c652017-08-18 13:46:28 -0700642 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700644 return netstat_show(d, attr, buf, \
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000645 offsetof(struct rtnl_link_stats64, name)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646} \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700647static DEVICE_ATTR_RO(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649NETSTAT_ENTRY(rx_packets);
650NETSTAT_ENTRY(tx_packets);
651NETSTAT_ENTRY(rx_bytes);
652NETSTAT_ENTRY(tx_bytes);
653NETSTAT_ENTRY(rx_errors);
654NETSTAT_ENTRY(tx_errors);
655NETSTAT_ENTRY(rx_dropped);
656NETSTAT_ENTRY(tx_dropped);
657NETSTAT_ENTRY(multicast);
658NETSTAT_ENTRY(collisions);
659NETSTAT_ENTRY(rx_length_errors);
660NETSTAT_ENTRY(rx_over_errors);
661NETSTAT_ENTRY(rx_crc_errors);
662NETSTAT_ENTRY(rx_frame_errors);
663NETSTAT_ENTRY(rx_fifo_errors);
664NETSTAT_ENTRY(rx_missed_errors);
665NETSTAT_ENTRY(tx_aborted_errors);
666NETSTAT_ENTRY(tx_carrier_errors);
667NETSTAT_ENTRY(tx_fifo_errors);
668NETSTAT_ENTRY(tx_heartbeat_errors);
669NETSTAT_ENTRY(tx_window_errors);
670NETSTAT_ENTRY(rx_compressed);
671NETSTAT_ENTRY(tx_compressed);
Jarod Wilson6e7333d2016-02-01 18:51:05 -0500672NETSTAT_ENTRY(rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
stephen hemmingerec6cc592017-08-18 13:46:23 -0700674static struct attribute *netstat_attrs[] __ro_after_init = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700675 &dev_attr_rx_packets.attr,
676 &dev_attr_tx_packets.attr,
677 &dev_attr_rx_bytes.attr,
678 &dev_attr_tx_bytes.attr,
679 &dev_attr_rx_errors.attr,
680 &dev_attr_tx_errors.attr,
681 &dev_attr_rx_dropped.attr,
682 &dev_attr_tx_dropped.attr,
683 &dev_attr_multicast.attr,
684 &dev_attr_collisions.attr,
685 &dev_attr_rx_length_errors.attr,
686 &dev_attr_rx_over_errors.attr,
687 &dev_attr_rx_crc_errors.attr,
688 &dev_attr_rx_frame_errors.attr,
689 &dev_attr_rx_fifo_errors.attr,
690 &dev_attr_rx_missed_errors.attr,
691 &dev_attr_tx_aborted_errors.attr,
692 &dev_attr_tx_carrier_errors.attr,
693 &dev_attr_tx_fifo_errors.attr,
694 &dev_attr_tx_heartbeat_errors.attr,
695 &dev_attr_tx_window_errors.attr,
696 &dev_attr_rx_compressed.attr,
697 &dev_attr_tx_compressed.attr,
Jarod Wilson6e7333d2016-02-01 18:51:05 -0500698 &dev_attr_rx_nohandler.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 NULL
700};
701
Arvind Yadav38ef00c2017-06-29 16:31:26 +0530702static const struct attribute_group netstat_group = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 .name = "statistics",
704 .attrs = netstat_attrs,
705};
Johannes Berg38c1a012012-11-16 20:46:19 +0100706
707#if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211)
708static struct attribute *wireless_attrs[] = {
709 NULL
710};
711
Arvind Yadav38ef00c2017-06-29 16:31:26 +0530712static const struct attribute_group wireless_group = {
Johannes Berg38c1a012012-11-16 20:46:19 +0100713 .name = "wireless",
714 .attrs = wireless_attrs,
715};
716#endif
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700717
718#else /* CONFIG_SYSFS */
719#define net_class_groups NULL
Eric W. Biedermand6523dd2010-05-16 21:59:45 -0700720#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Michael Daltona953be52014-01-16 22:23:28 -0800722#ifdef CONFIG_SYSFS
stephen hemminger6648c652017-08-18 13:46:28 -0700723#define to_rx_queue_attr(_attr) \
724 container_of(_attr, struct rx_queue_attribute, attr)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000725
726#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
727
728static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
729 char *buf)
730{
stephen hemminger667e4272017-08-18 13:46:27 -0700731 const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000732 struct netdev_rx_queue *queue = to_rx_queue(kobj);
733
734 if (!attribute->show)
735 return -EIO;
736
stephen hemminger718ad682017-08-18 13:46:24 -0700737 return attribute->show(queue, buf);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000738}
739
740static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
741 const char *buf, size_t count)
742{
stephen hemminger667e4272017-08-18 13:46:27 -0700743 const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000744 struct netdev_rx_queue *queue = to_rx_queue(kobj);
745
746 if (!attribute->store)
747 return -EIO;
748
stephen hemminger718ad682017-08-18 13:46:24 -0700749 return attribute->store(queue, buf, count);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000750}
751
stephen hemmingerfa50d642010-08-31 12:14:13 +0000752static const struct sysfs_ops rx_queue_sysfs_ops = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000753 .show = rx_queue_attr_show,
754 .store = rx_queue_attr_store,
755};
756
Michael Daltona953be52014-01-16 22:23:28 -0800757#ifdef CONFIG_RPS
stephen hemminger718ad682017-08-18 13:46:24 -0700758static ssize_t show_rps_map(struct netdev_rx_queue *queue, char *buf)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000759{
760 struct rps_map *map;
761 cpumask_var_t mask;
Tejun Heof0906822015-02-13 14:37:42 -0800762 int i, len;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000763
764 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
765 return -ENOMEM;
766
767 rcu_read_lock();
768 map = rcu_dereference(queue->rps_map);
769 if (map)
770 for (i = 0; i < map->len; i++)
771 cpumask_set_cpu(map->cpus[i], mask);
772
Tejun Heof0906822015-02-13 14:37:42 -0800773 len = snprintf(buf, PAGE_SIZE, "%*pb\n", cpumask_pr_args(mask));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000774 rcu_read_unlock();
Tom Herbert0a9627f2010-03-16 08:03:29 +0000775 free_cpumask_var(mask);
Tejun Heof0906822015-02-13 14:37:42 -0800776
777 return len < PAGE_SIZE ? len : -EINVAL;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000778}
779
Eric Dumazetf5acb902010-04-19 14:40:57 -0700780static ssize_t store_rps_map(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -0700781 const char *buf, size_t len)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000782{
783 struct rps_map *old_map, *map;
784 cpumask_var_t mask;
Alex Belits07bbecb2020-06-25 18:34:43 -0400785 int err, cpu, i, hk_flags;
Sasha Levinda65ad12015-08-13 14:03:16 -0400786 static DEFINE_MUTEX(rps_map_mutex);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000787
788 if (!capable(CAP_NET_ADMIN))
789 return -EPERM;
790
791 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
792 return -ENOMEM;
793
794 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
795 if (err) {
796 free_cpumask_var(mask);
797 return err;
798 }
799
Eric Dumazet2e0d8fe2020-08-11 18:34:40 -0700800 if (!cpumask_empty(mask)) {
801 hk_flags = HK_FLAG_DOMAIN | HK_FLAG_WQ;
802 cpumask_and(mask, mask, housekeeping_cpumask(hk_flags));
803 if (cpumask_empty(mask)) {
804 free_cpumask_var(mask);
805 return -EINVAL;
806 }
Alex Belits07bbecb2020-06-25 18:34:43 -0400807 }
808
Eric Dumazet95c96172012-04-15 05:58:06 +0000809 map = kzalloc(max_t(unsigned int,
stephen hemminger6648c652017-08-18 13:46:28 -0700810 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
811 GFP_KERNEL);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000812 if (!map) {
813 free_cpumask_var(mask);
814 return -ENOMEM;
815 }
816
817 i = 0;
818 for_each_cpu_and(cpu, mask, cpu_online_mask)
819 map->cpus[i++] = cpu;
820
stephen hemminger6648c652017-08-18 13:46:28 -0700821 if (i) {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000822 map->len = i;
stephen hemminger6648c652017-08-18 13:46:28 -0700823 } else {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000824 kfree(map);
825 map = NULL;
826 }
827
Sasha Levinda65ad12015-08-13 14:03:16 -0400828 mutex_lock(&rps_map_mutex);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000829 old_map = rcu_dereference_protected(queue->rps_map,
Sasha Levinda65ad12015-08-13 14:03:16 -0400830 mutex_is_locked(&rps_map_mutex));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000831 rcu_assign_pointer(queue->rps_map, map);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000832
Eric Dumazetadc93002011-11-17 03:13:26 +0000833 if (map)
Eric Dumazetdc053602019-03-22 08:56:38 -0700834 static_branch_inc(&rps_needed);
Tom Herbert10e4ea72015-08-05 09:39:27 -0700835 if (old_map)
Eric Dumazetdc053602019-03-22 08:56:38 -0700836 static_branch_dec(&rps_needed);
Tom Herbert10e4ea72015-08-05 09:39:27 -0700837
Sasha Levinda65ad12015-08-13 14:03:16 -0400838 mutex_unlock(&rps_map_mutex);
Tom Herbert10e4ea72015-08-05 09:39:27 -0700839
840 if (old_map)
841 kfree_rcu(old_map, rcu);
842
Tom Herbert0a9627f2010-03-16 08:03:29 +0000843 free_cpumask_var(mask);
844 return len;
845}
846
Tom Herbertfec5e652010-04-16 16:01:27 -0700847static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
Tom Herbertfec5e652010-04-16 16:01:27 -0700848 char *buf)
849{
850 struct rps_dev_flow_table *flow_table;
Eric Dumazet60b778c2011-12-24 06:56:49 +0000851 unsigned long val = 0;
Tom Herbertfec5e652010-04-16 16:01:27 -0700852
853 rcu_read_lock();
854 flow_table = rcu_dereference(queue->rps_flow_table);
855 if (flow_table)
Eric Dumazet60b778c2011-12-24 06:56:49 +0000856 val = (unsigned long)flow_table->mask + 1;
Tom Herbertfec5e652010-04-16 16:01:27 -0700857 rcu_read_unlock();
858
Eric Dumazet60b778c2011-12-24 06:56:49 +0000859 return sprintf(buf, "%lu\n", val);
Tom Herbertfec5e652010-04-16 16:01:27 -0700860}
861
Tom Herbertfec5e652010-04-16 16:01:27 -0700862static void rps_dev_flow_table_release(struct rcu_head *rcu)
863{
864 struct rps_dev_flow_table *table = container_of(rcu,
865 struct rps_dev_flow_table, rcu);
Al Viro243198d2013-05-05 16:05:55 +0000866 vfree(table);
Tom Herbertfec5e652010-04-16 16:01:27 -0700867}
868
Eric Dumazetf5acb902010-04-19 14:40:57 -0700869static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -0700870 const char *buf, size_t len)
Tom Herbertfec5e652010-04-16 16:01:27 -0700871{
Eric Dumazet60b778c2011-12-24 06:56:49 +0000872 unsigned long mask, count;
Tom Herbertfec5e652010-04-16 16:01:27 -0700873 struct rps_dev_flow_table *table, *old_table;
874 static DEFINE_SPINLOCK(rps_dev_flow_lock);
Eric Dumazet60b778c2011-12-24 06:56:49 +0000875 int rc;
Tom Herbertfec5e652010-04-16 16:01:27 -0700876
877 if (!capable(CAP_NET_ADMIN))
878 return -EPERM;
879
Eric Dumazet60b778c2011-12-24 06:56:49 +0000880 rc = kstrtoul(buf, 0, &count);
881 if (rc < 0)
882 return rc;
Tom Herbertfec5e652010-04-16 16:01:27 -0700883
884 if (count) {
Eric Dumazet60b778c2011-12-24 06:56:49 +0000885 mask = count - 1;
886 /* mask = roundup_pow_of_two(count) - 1;
887 * without overflows...
888 */
889 while ((mask | (mask >> 1)) != mask)
890 mask |= (mask >> 1);
891 /* On 64 bit arches, must check mask fits in table->mask (u32),
stephen hemminger8e3bff92013-12-08 12:15:44 -0800892 * and on 32bit arches, must check
893 * RPS_DEV_FLOW_TABLE_SIZE(mask + 1) doesn't overflow.
Eric Dumazet60b778c2011-12-24 06:56:49 +0000894 */
895#if BITS_PER_LONG > 32
896 if (mask > (unsigned long)(u32)mask)
Xi Wanga0a129f2011-12-22 13:35:22 +0000897 return -EINVAL;
Eric Dumazet60b778c2011-12-24 06:56:49 +0000898#else
899 if (mask > (ULONG_MAX - RPS_DEV_FLOW_TABLE_SIZE(1))
Xi Wanga0a129f2011-12-22 13:35:22 +0000900 / sizeof(struct rps_dev_flow)) {
Tom Herbertfec5e652010-04-16 16:01:27 -0700901 /* Enforce a limit to prevent overflow */
902 return -EINVAL;
903 }
Eric Dumazet60b778c2011-12-24 06:56:49 +0000904#endif
905 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(mask + 1));
Tom Herbertfec5e652010-04-16 16:01:27 -0700906 if (!table)
907 return -ENOMEM;
908
Eric Dumazet60b778c2011-12-24 06:56:49 +0000909 table->mask = mask;
910 for (count = 0; count <= mask; count++)
911 table->flows[count].cpu = RPS_NO_CPU;
stephen hemminger6648c652017-08-18 13:46:28 -0700912 } else {
Tom Herbertfec5e652010-04-16 16:01:27 -0700913 table = NULL;
stephen hemminger6648c652017-08-18 13:46:28 -0700914 }
Tom Herbertfec5e652010-04-16 16:01:27 -0700915
916 spin_lock(&rps_dev_flow_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000917 old_table = rcu_dereference_protected(queue->rps_flow_table,
918 lockdep_is_held(&rps_dev_flow_lock));
Tom Herbertfec5e652010-04-16 16:01:27 -0700919 rcu_assign_pointer(queue->rps_flow_table, table);
920 spin_unlock(&rps_dev_flow_lock);
921
922 if (old_table)
923 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
924
925 return len;
926}
927
stephen hemminger667e4272017-08-18 13:46:27 -0700928static struct rx_queue_attribute rps_cpus_attribute __ro_after_init
Joe Perchesd6444062018-03-23 15:54:38 -0700929 = __ATTR(rps_cpus, 0644, show_rps_map, store_rps_map);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000930
stephen hemminger667e4272017-08-18 13:46:27 -0700931static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute __ro_after_init
Joe Perchesd6444062018-03-23 15:54:38 -0700932 = __ATTR(rps_flow_cnt, 0644,
stephen hemminger667e4272017-08-18 13:46:27 -0700933 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
Michael Daltona953be52014-01-16 22:23:28 -0800934#endif /* CONFIG_RPS */
Tom Herbertfec5e652010-04-16 16:01:27 -0700935
stephen hemminger667e4272017-08-18 13:46:27 -0700936static struct attribute *rx_queue_default_attrs[] __ro_after_init = {
Michael Daltona953be52014-01-16 22:23:28 -0800937#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000938 &rps_cpus_attribute.attr,
Tom Herbertfec5e652010-04-16 16:01:27 -0700939 &rps_dev_flow_table_cnt_attribute.attr,
Michael Daltona953be52014-01-16 22:23:28 -0800940#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000941 NULL
942};
Kimberly Brownbe0d6922019-04-01 22:51:35 -0400943ATTRIBUTE_GROUPS(rx_queue_default);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000944
945static void rx_queue_release(struct kobject *kobj)
946{
947 struct netdev_rx_queue *queue = to_rx_queue(kobj);
Michael Daltona953be52014-01-16 22:23:28 -0800948#ifdef CONFIG_RPS
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000949 struct rps_map *map;
950 struct rps_dev_flow_table *flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000951
Eric Dumazet33d480c2011-08-11 19:30:52 +0000952 map = rcu_dereference_protected(queue->rps_map, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000953 if (map) {
954 RCU_INIT_POINTER(queue->rps_map, NULL);
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800955 kfree_rcu(map, rcu);
John Fastabend9ea19482010-11-16 06:31:39 +0000956 }
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000957
Eric Dumazet33d480c2011-08-11 19:30:52 +0000958 flow_table = rcu_dereference_protected(queue->rps_flow_table, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000959 if (flow_table) {
960 RCU_INIT_POINTER(queue->rps_flow_table, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000961 call_rcu(&flow_table->rcu, rps_dev_flow_table_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000962 }
Michael Daltona953be52014-01-16 22:23:28 -0800963#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000964
John Fastabend9ea19482010-11-16 06:31:39 +0000965 memset(kobj, 0, sizeof(*kobj));
Tom Herbertfe822242010-11-09 10:47:38 +0000966 dev_put(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000967}
968
Weilong Chen82ef3d52014-01-16 17:24:31 +0800969static const void *rx_queue_namespace(struct kobject *kobj)
970{
971 struct netdev_rx_queue *queue = to_rx_queue(kobj);
972 struct device *dev = &queue->dev->dev;
973 const void *ns = NULL;
974
975 if (dev->class && dev->class->ns_type)
976 ns = dev->class->namespace(dev);
977
978 return ns;
979}
980
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +0000981static void rx_queue_get_ownership(struct kobject *kobj,
982 kuid_t *uid, kgid_t *gid)
983{
984 const struct net *net = rx_queue_namespace(kobj);
985
986 net_ns_get_ownership(net, uid, gid);
987}
988
stephen hemminger667e4272017-08-18 13:46:27 -0700989static struct kobj_type rx_queue_ktype __ro_after_init = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000990 .sysfs_ops = &rx_queue_sysfs_ops,
991 .release = rx_queue_release,
Kimberly Brownbe0d6922019-04-01 22:51:35 -0400992 .default_groups = rx_queue_default_groups,
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +0000993 .namespace = rx_queue_namespace,
994 .get_ownership = rx_queue_get_ownership,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000995};
996
WANG Cong6b53daf2014-07-23 16:09:10 -0700997static int rx_queue_add_kobject(struct net_device *dev, int index)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000998{
WANG Cong6b53daf2014-07-23 16:09:10 -0700999 struct netdev_rx_queue *queue = dev->_rx + index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001000 struct kobject *kobj = &queue->kobj;
1001 int error = 0;
1002
Jouni Hoganderddd9b5e2019-12-17 13:46:34 +02001003 /* Kobject_put later will trigger rx_queue_release call which
1004 * decreases dev refcount: Take that reference here
1005 */
1006 dev_hold(queue->dev);
1007
WANG Cong6b53daf2014-07-23 16:09:10 -07001008 kobj->kset = dev->queues_kset;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001009 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
stephen hemminger6648c652017-08-18 13:46:28 -07001010 "rx-%u", index);
Michael Daltona953be52014-01-16 22:23:28 -08001011 if (error)
Jouni Hoganderb8eb7182019-11-20 09:08:16 +02001012 goto err;
Michael Daltona953be52014-01-16 22:23:28 -08001013
WANG Cong6b53daf2014-07-23 16:09:10 -07001014 if (dev->sysfs_rx_queue_group) {
1015 error = sysfs_create_group(kobj, dev->sysfs_rx_queue_group);
Jouni Hoganderb8eb7182019-11-20 09:08:16 +02001016 if (error)
1017 goto err;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001018 }
1019
1020 kobject_uevent(kobj, KOBJ_ADD);
1021
1022 return error;
Jouni Hoganderb8eb7182019-11-20 09:08:16 +02001023
1024err:
1025 kobject_put(kobj);
1026 return error;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001027}
Christian Braunerd7554072020-02-27 04:37:18 +01001028
1029static int rx_queue_change_owner(struct net_device *dev, int index, kuid_t kuid,
1030 kgid_t kgid)
1031{
1032 struct netdev_rx_queue *queue = dev->_rx + index;
1033 struct kobject *kobj = &queue->kobj;
1034 int error;
1035
1036 error = sysfs_change_owner(kobj, kuid, kgid);
1037 if (error)
1038 return error;
1039
1040 if (dev->sysfs_rx_queue_group)
1041 error = sysfs_group_change_owner(
1042 kobj, dev->sysfs_rx_queue_group, kuid, kgid);
1043
1044 return error;
1045}
Paul Bolle80dd6ea2014-02-09 14:07:11 +01001046#endif /* CONFIG_SYSFS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00001047
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001048int
WANG Cong6b53daf2014-07-23 16:09:10 -07001049net_rx_queue_update_kobjects(struct net_device *dev, int old_num, int new_num)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001050{
Michael Daltona953be52014-01-16 22:23:28 -08001051#ifdef CONFIG_SYSFS
Tom Herbert0a9627f2010-03-16 08:03:29 +00001052 int i;
1053 int error = 0;
1054
Michael Daltona953be52014-01-16 22:23:28 -08001055#ifndef CONFIG_RPS
WANG Cong6b53daf2014-07-23 16:09:10 -07001056 if (!dev->sysfs_rx_queue_group)
Michael Daltona953be52014-01-16 22:23:28 -08001057 return 0;
1058#endif
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001059 for (i = old_num; i < new_num; i++) {
WANG Cong6b53daf2014-07-23 16:09:10 -07001060 error = rx_queue_add_kobject(dev, i);
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001061 if (error) {
1062 new_num = old_num;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001063 break;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001064 }
Tom Herbert0a9627f2010-03-16 08:03:29 +00001065 }
1066
Michael Daltona953be52014-01-16 22:23:28 -08001067 while (--i >= new_num) {
Andrey Vagin002d8a12016-10-24 19:09:53 -07001068 struct kobject *kobj = &dev->_rx[i].kobj;
1069
Christian Brauner8b8f3e62020-08-19 14:06:36 +02001070 if (!refcount_read(&dev_net(dev)->ns.count))
Andrey Vagin002d8a12016-10-24 19:09:53 -07001071 kobj->uevent_suppress = 1;
WANG Cong6b53daf2014-07-23 16:09:10 -07001072 if (dev->sysfs_rx_queue_group)
Andrey Vagin002d8a12016-10-24 19:09:53 -07001073 sysfs_remove_group(kobj, dev->sysfs_rx_queue_group);
1074 kobject_put(kobj);
Michael Daltona953be52014-01-16 22:23:28 -08001075 }
Tom Herbert0a9627f2010-03-16 08:03:29 +00001076
1077 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001078#else
1079 return 0;
1080#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001081}
1082
Christian Braunerd7554072020-02-27 04:37:18 +01001083static int net_rx_queue_change_owner(struct net_device *dev, int num,
1084 kuid_t kuid, kgid_t kgid)
1085{
1086#ifdef CONFIG_SYSFS
1087 int error = 0;
1088 int i;
1089
1090#ifndef CONFIG_RPS
1091 if (!dev->sysfs_rx_queue_group)
1092 return 0;
1093#endif
1094 for (i = 0; i < num; i++) {
1095 error = rx_queue_change_owner(dev, i, kuid, kgid);
1096 if (error)
1097 break;
1098 }
1099
1100 return error;
1101#else
1102 return 0;
1103#endif
1104}
1105
david decotignyccf5ff62011-11-16 12:15:10 +00001106#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001107/*
1108 * netdev_queue sysfs structures and functions.
1109 */
1110struct netdev_queue_attribute {
1111 struct attribute attr;
stephen hemminger718ad682017-08-18 13:46:24 -07001112 ssize_t (*show)(struct netdev_queue *queue, char *buf);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001113 ssize_t (*store)(struct netdev_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07001114 const char *buf, size_t len);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001115};
stephen hemminger6648c652017-08-18 13:46:28 -07001116#define to_netdev_queue_attr(_attr) \
1117 container_of(_attr, struct netdev_queue_attribute, attr)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001118
1119#define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj)
1120
1121static ssize_t netdev_queue_attr_show(struct kobject *kobj,
1122 struct attribute *attr, char *buf)
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001123{
stephen hemminger667e4272017-08-18 13:46:27 -07001124 const struct netdev_queue_attribute *attribute
1125 = to_netdev_queue_attr(attr);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001126 struct netdev_queue *queue = to_netdev_queue(kobj);
1127
1128 if (!attribute->show)
1129 return -EIO;
1130
stephen hemminger718ad682017-08-18 13:46:24 -07001131 return attribute->show(queue, buf);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001132}
1133
1134static ssize_t netdev_queue_attr_store(struct kobject *kobj,
1135 struct attribute *attr,
1136 const char *buf, size_t count)
1137{
stephen hemminger667e4272017-08-18 13:46:27 -07001138 const struct netdev_queue_attribute *attribute
1139 = to_netdev_queue_attr(attr);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001140 struct netdev_queue *queue = to_netdev_queue(kobj);
1141
1142 if (!attribute->store)
1143 return -EIO;
1144
stephen hemminger718ad682017-08-18 13:46:24 -07001145 return attribute->store(queue, buf, count);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001146}
1147
1148static const struct sysfs_ops netdev_queue_sysfs_ops = {
1149 .show = netdev_queue_attr_show,
1150 .store = netdev_queue_attr_store,
1151};
1152
stephen hemminger2b9c7582017-08-18 13:46:26 -07001153static ssize_t tx_timeout_show(struct netdev_queue *queue, char *buf)
david decotignyccf5ff62011-11-16 12:15:10 +00001154{
1155 unsigned long trans_timeout;
1156
1157 spin_lock_irq(&queue->_xmit_lock);
1158 trans_timeout = queue->trans_timeout;
1159 spin_unlock_irq(&queue->_xmit_lock);
1160
Xiongfeng Wang9bb5fbe2020-07-21 15:02:57 +08001161 return sprintf(buf, fmt_ulong, trans_timeout);
david decotignyccf5ff62011-11-16 12:15:10 +00001162}
1163
Thadeu Lima de Souza Cascardoc4047f52015-09-15 18:28:00 -03001164static unsigned int get_netdev_queue_index(struct netdev_queue *queue)
John Fastabend822b3b22015-03-18 14:57:33 +02001165{
1166 struct net_device *dev = queue->dev;
Thadeu Lima de Souza Cascardoc4047f52015-09-15 18:28:00 -03001167 unsigned int i;
John Fastabend822b3b22015-03-18 14:57:33 +02001168
Thadeu Lima de Souza Cascardoc4047f52015-09-15 18:28:00 -03001169 i = queue - dev->_tx;
John Fastabend822b3b22015-03-18 14:57:33 +02001170 BUG_ON(i >= dev->num_tx_queues);
1171
1172 return i;
1173}
1174
stephen hemminger2b9c7582017-08-18 13:46:26 -07001175static ssize_t traffic_class_show(struct netdev_queue *queue,
Alexander Duyck8d059b02016-10-28 11:43:49 -04001176 char *buf)
1177{
1178 struct net_device *dev = queue->dev;
Alexander Duyckb2f17562021-02-08 14:29:18 -08001179 int num_tc, tc;
Alexander Duyckd7be9772018-07-09 12:19:32 -04001180 int index;
Alexander Duyck8d059b02016-10-28 11:43:49 -04001181
Alexander Duyckd7be9772018-07-09 12:19:32 -04001182 if (!netif_is_multiqueue(dev))
1183 return -ENOENT;
1184
Alexander Duyckb2f17562021-02-08 14:29:18 -08001185 if (!rtnl_trylock())
1186 return restart_syscall();
1187
Alexander Duyckd7be9772018-07-09 12:19:32 -04001188 index = get_netdev_queue_index(queue);
Alexander Duyckffcfe252018-07-09 12:19:38 -04001189
1190 /* If queue belongs to subordinate dev use its TC mapping */
1191 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
1192
Alexander Duyckb2f17562021-02-08 14:29:18 -08001193 num_tc = dev->num_tc;
Alexander Duyckd7be9772018-07-09 12:19:32 -04001194 tc = netdev_txq_to_tc(dev, index);
Alexander Duyckb2f17562021-02-08 14:29:18 -08001195
1196 rtnl_unlock();
1197
Alexander Duyck8d059b02016-10-28 11:43:49 -04001198 if (tc < 0)
1199 return -EINVAL;
1200
Alexander Duyckffcfe252018-07-09 12:19:38 -04001201 /* We can report the traffic class one of two ways:
1202 * Subordinate device traffic classes are reported with the traffic
1203 * class first, and then the subordinate class so for example TC0 on
1204 * subordinate device 2 will be reported as "0-2". If the queue
1205 * belongs to the root device it will be reported with just the
1206 * traffic class, so just "0" for TC 0 for example.
1207 */
Alexander Duyckb2f17562021-02-08 14:29:18 -08001208 return num_tc < 0 ? sprintf(buf, "%d%d\n", tc, num_tc) :
1209 sprintf(buf, "%d\n", tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04001210}
1211
1212#ifdef CONFIG_XPS
stephen hemminger2b9c7582017-08-18 13:46:26 -07001213static ssize_t tx_maxrate_show(struct netdev_queue *queue,
John Fastabend822b3b22015-03-18 14:57:33 +02001214 char *buf)
1215{
1216 return sprintf(buf, "%lu\n", queue->tx_maxrate);
1217}
1218
stephen hemminger2b9c7582017-08-18 13:46:26 -07001219static ssize_t tx_maxrate_store(struct netdev_queue *queue,
1220 const char *buf, size_t len)
John Fastabend822b3b22015-03-18 14:57:33 +02001221{
1222 struct net_device *dev = queue->dev;
1223 int err, index = get_netdev_queue_index(queue);
1224 u32 rate = 0;
1225
Tyler Hicks3033fce2018-07-20 21:56:51 +00001226 if (!capable(CAP_NET_ADMIN))
1227 return -EPERM;
1228
John Fastabend822b3b22015-03-18 14:57:33 +02001229 err = kstrtou32(buf, 10, &rate);
1230 if (err < 0)
1231 return err;
1232
1233 if (!rtnl_trylock())
1234 return restart_syscall();
1235
1236 err = -EOPNOTSUPP;
1237 if (dev->netdev_ops->ndo_set_tx_maxrate)
1238 err = dev->netdev_ops->ndo_set_tx_maxrate(dev, index, rate);
1239
1240 rtnl_unlock();
1241 if (!err) {
1242 queue->tx_maxrate = rate;
1243 return len;
1244 }
1245 return err;
1246}
1247
stephen hemminger2b9c7582017-08-18 13:46:26 -07001248static struct netdev_queue_attribute queue_tx_maxrate __ro_after_init
1249 = __ATTR_RW(tx_maxrate);
John Fastabend822b3b22015-03-18 14:57:33 +02001250#endif
1251
stephen hemminger2b9c7582017-08-18 13:46:26 -07001252static struct netdev_queue_attribute queue_trans_timeout __ro_after_init
1253 = __ATTR_RO(tx_timeout);
david decotignyccf5ff62011-11-16 12:15:10 +00001254
stephen hemminger2b9c7582017-08-18 13:46:26 -07001255static struct netdev_queue_attribute queue_traffic_class __ro_after_init
1256 = __ATTR_RO(traffic_class);
Alexander Duyck8d059b02016-10-28 11:43:49 -04001257
Tom Herbert114cf582011-11-28 16:33:09 +00001258#ifdef CONFIG_BQL
1259/*
1260 * Byte queue limits sysfs structures and functions.
1261 */
1262static ssize_t bql_show(char *buf, unsigned int value)
1263{
1264 return sprintf(buf, "%u\n", value);
1265}
1266
1267static ssize_t bql_set(const char *buf, const size_t count,
1268 unsigned int *pvalue)
1269{
1270 unsigned int value;
1271 int err;
1272
stephen hemminger6648c652017-08-18 13:46:28 -07001273 if (!strcmp(buf, "max") || !strcmp(buf, "max\n")) {
Tom Herbert114cf582011-11-28 16:33:09 +00001274 value = DQL_MAX_LIMIT;
stephen hemminger6648c652017-08-18 13:46:28 -07001275 } else {
Tom Herbert114cf582011-11-28 16:33:09 +00001276 err = kstrtouint(buf, 10, &value);
1277 if (err < 0)
1278 return err;
1279 if (value > DQL_MAX_LIMIT)
1280 return -EINVAL;
1281 }
1282
1283 *pvalue = value;
1284
1285 return count;
1286}
1287
1288static ssize_t bql_show_hold_time(struct netdev_queue *queue,
Tom Herbert114cf582011-11-28 16:33:09 +00001289 char *buf)
1290{
1291 struct dql *dql = &queue->dql;
1292
1293 return sprintf(buf, "%u\n", jiffies_to_msecs(dql->slack_hold_time));
1294}
1295
1296static ssize_t bql_set_hold_time(struct netdev_queue *queue,
Tom Herbert114cf582011-11-28 16:33:09 +00001297 const char *buf, size_t len)
1298{
1299 struct dql *dql = &queue->dql;
Eric Dumazet95c96172012-04-15 05:58:06 +00001300 unsigned int value;
Tom Herbert114cf582011-11-28 16:33:09 +00001301 int err;
1302
1303 err = kstrtouint(buf, 10, &value);
1304 if (err < 0)
1305 return err;
1306
1307 dql->slack_hold_time = msecs_to_jiffies(value);
1308
1309 return len;
1310}
1311
stephen hemminger170c6582017-08-18 13:46:25 -07001312static struct netdev_queue_attribute bql_hold_time_attribute __ro_after_init
Joe Perchesd6444062018-03-23 15:54:38 -07001313 = __ATTR(hold_time, 0644,
stephen hemminger170c6582017-08-18 13:46:25 -07001314 bql_show_hold_time, bql_set_hold_time);
Tom Herbert114cf582011-11-28 16:33:09 +00001315
1316static ssize_t bql_show_inflight(struct netdev_queue *queue,
Tom Herbert114cf582011-11-28 16:33:09 +00001317 char *buf)
1318{
1319 struct dql *dql = &queue->dql;
1320
1321 return sprintf(buf, "%u\n", dql->num_queued - dql->num_completed);
1322}
1323
stephen hemminger170c6582017-08-18 13:46:25 -07001324static struct netdev_queue_attribute bql_inflight_attribute __ro_after_init =
Joe Perchesd6444062018-03-23 15:54:38 -07001325 __ATTR(inflight, 0444, bql_show_inflight, NULL);
Tom Herbert114cf582011-11-28 16:33:09 +00001326
1327#define BQL_ATTR(NAME, FIELD) \
1328static ssize_t bql_show_ ## NAME(struct netdev_queue *queue, \
Tom Herbert114cf582011-11-28 16:33:09 +00001329 char *buf) \
1330{ \
1331 return bql_show(buf, queue->dql.FIELD); \
1332} \
1333 \
1334static ssize_t bql_set_ ## NAME(struct netdev_queue *queue, \
Tom Herbert114cf582011-11-28 16:33:09 +00001335 const char *buf, size_t len) \
1336{ \
1337 return bql_set(buf, len, &queue->dql.FIELD); \
1338} \
1339 \
stephen hemminger170c6582017-08-18 13:46:25 -07001340static struct netdev_queue_attribute bql_ ## NAME ## _attribute __ro_after_init \
Joe Perchesd6444062018-03-23 15:54:38 -07001341 = __ATTR(NAME, 0644, \
stephen hemminger170c6582017-08-18 13:46:25 -07001342 bql_show_ ## NAME, bql_set_ ## NAME)
Tom Herbert114cf582011-11-28 16:33:09 +00001343
stephen hemminger170c6582017-08-18 13:46:25 -07001344BQL_ATTR(limit, limit);
1345BQL_ATTR(limit_max, max_limit);
1346BQL_ATTR(limit_min, min_limit);
Tom Herbert114cf582011-11-28 16:33:09 +00001347
stephen hemminger170c6582017-08-18 13:46:25 -07001348static struct attribute *dql_attrs[] __ro_after_init = {
Tom Herbert114cf582011-11-28 16:33:09 +00001349 &bql_limit_attribute.attr,
1350 &bql_limit_max_attribute.attr,
1351 &bql_limit_min_attribute.attr,
1352 &bql_hold_time_attribute.attr,
1353 &bql_inflight_attribute.attr,
1354 NULL
1355};
1356
Arvind Yadav38ef00c2017-06-29 16:31:26 +05301357static const struct attribute_group dql_group = {
Tom Herbert114cf582011-11-28 16:33:09 +00001358 .name = "byte_queue_limits",
1359 .attrs = dql_attrs,
1360};
1361#endif /* CONFIG_BQL */
1362
david decotignyccf5ff62011-11-16 12:15:10 +00001363#ifdef CONFIG_XPS
stephen hemminger2b9c7582017-08-18 13:46:26 -07001364static ssize_t xps_cpus_show(struct netdev_queue *queue,
1365 char *buf)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001366{
Antoine Tenart73f5e522021-03-18 19:37:42 +01001367 int j, len, ret, num_tc = 1, tc = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001368 struct net_device *dev = queue->dev;
1369 struct xps_dev_maps *dev_maps;
Antoine Tenartd9a063d22021-03-18 19:37:41 +01001370 unsigned long *mask;
1371 unsigned int index;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001372
Alexander Duyckd7be9772018-07-09 12:19:32 -04001373 if (!netif_is_multiqueue(dev))
1374 return -ENOENT;
1375
Tom Herbert1d24eb42010-11-21 13:17:27 +00001376 index = get_netdev_queue_index(queue);
1377
Antoine Tenartfb250382020-12-23 22:23:21 +01001378 if (!rtnl_trylock())
1379 return restart_syscall();
1380
Alexander Duyck184c4492016-10-28 11:50:13 -04001381 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04001382 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04001383 num_tc = dev->num_tc;
Antoine Tenartfb250382020-12-23 22:23:21 +01001384 if (num_tc < 0) {
1385 ret = -EINVAL;
1386 goto err_rtnl_unlock;
1387 }
Alexander Duyckffcfe252018-07-09 12:19:38 -04001388
1389 /* If queue belongs to subordinate dev use its map */
1390 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
1391
Alexander Duyck184c4492016-10-28 11:50:13 -04001392 tc = netdev_txq_to_tc(dev, index);
Antoine Tenartfb250382020-12-23 22:23:21 +01001393 if (tc < 0) {
1394 ret = -EINVAL;
1395 goto err_rtnl_unlock;
1396 }
Alexander Duyck184c4492016-10-28 11:50:13 -04001397 }
1398
Antoine Tenartea4fe7e2021-03-18 19:37:40 +01001399 mask = bitmap_zalloc(nr_cpu_ids, GFP_KERNEL);
1400 if (!mask) {
Antoine Tenartfb250382020-12-23 22:23:21 +01001401 ret = -ENOMEM;
1402 goto err_rtnl_unlock;
1403 }
Alexander Duyck664088f2018-05-31 15:59:46 -04001404
Tom Herbert1d24eb42010-11-21 13:17:27 +00001405 rcu_read_lock();
Amritha Nambiar80d19662018-06-29 21:26:41 -07001406 dev_maps = rcu_dereference(dev->xps_cpus_map);
Antoine Tenart73f5e522021-03-18 19:37:42 +01001407 if (!dev_maps)
1408 goto out_no_maps;
Alexander Duyck184c4492016-10-28 11:50:13 -04001409
Antoine Tenart73f5e522021-03-18 19:37:42 +01001410 for (j = -1; j = netif_attrmask_next(j, NULL, nr_cpu_ids),
1411 j < nr_cpu_ids;) {
1412 int i, tci = j * num_tc + tc;
1413 struct xps_map *map;
Alexander Duyck184c4492016-10-28 11:50:13 -04001414
Antoine Tenart73f5e522021-03-18 19:37:42 +01001415 map = rcu_dereference(dev_maps->attr_map[tci]);
1416 if (!map)
1417 continue;
1418
1419 for (i = map->len; i--;) {
1420 if (map->queues[i] == index) {
1421 set_bit(j, mask);
1422 break;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001423 }
1424 }
1425 }
Antoine Tenart73f5e522021-03-18 19:37:42 +01001426out_no_maps:
Tom Herbert1d24eb42010-11-21 13:17:27 +00001427 rcu_read_unlock();
1428
Antoine Tenartfb250382020-12-23 22:23:21 +01001429 rtnl_unlock();
1430
Antoine Tenartea4fe7e2021-03-18 19:37:40 +01001431 len = bitmap_print_to_pagebuf(false, buf, mask, nr_cpu_ids);
1432 bitmap_free(mask);
Tejun Heof0906822015-02-13 14:37:42 -08001433 return len < PAGE_SIZE ? len : -EINVAL;
Antoine Tenartfb250382020-12-23 22:23:21 +01001434
1435err_rtnl_unlock:
1436 rtnl_unlock();
1437 return ret;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001438}
1439
stephen hemminger2b9c7582017-08-18 13:46:26 -07001440static ssize_t xps_cpus_store(struct netdev_queue *queue,
1441 const char *buf, size_t len)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001442{
1443 struct net_device *dev = queue->dev;
Antoine Tenartd9a063d22021-03-18 19:37:41 +01001444 unsigned int index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001445 cpumask_var_t mask;
1446 int err;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001447
Alexander Duyckd7be9772018-07-09 12:19:32 -04001448 if (!netif_is_multiqueue(dev))
1449 return -ENOENT;
1450
Tom Herbert1d24eb42010-11-21 13:17:27 +00001451 if (!capable(CAP_NET_ADMIN))
1452 return -EPERM;
1453
1454 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
1455 return -ENOMEM;
1456
1457 index = get_netdev_queue_index(queue);
1458
1459 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
1460 if (err) {
1461 free_cpumask_var(mask);
1462 return err;
1463 }
1464
Antoine Tenart1ad582252020-12-23 22:23:20 +01001465 if (!rtnl_trylock()) {
1466 free_cpumask_var(mask);
1467 return restart_syscall();
1468 }
1469
Alexander Duyck537c00d2013-01-10 08:57:02 +00001470 err = netif_set_xps_queue(dev, mask, index);
Antoine Tenart1ad582252020-12-23 22:23:20 +01001471 rtnl_unlock();
Tom Herbert1d24eb42010-11-21 13:17:27 +00001472
1473 free_cpumask_var(mask);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001474
Alexander Duyck537c00d2013-01-10 08:57:02 +00001475 return err ? : len;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001476}
1477
stephen hemminger2b9c7582017-08-18 13:46:26 -07001478static struct netdev_queue_attribute xps_cpus_attribute __ro_after_init
1479 = __ATTR_RW(xps_cpus);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001480
1481static ssize_t xps_rxqs_show(struct netdev_queue *queue, char *buf)
1482{
Antoine Tenart4ae2bb82020-12-23 22:23:23 +01001483 int j, len, ret, num_tc = 1, tc = 0;
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001484 struct net_device *dev = queue->dev;
1485 struct xps_dev_maps *dev_maps;
Antoine Tenartd9a063d22021-03-18 19:37:41 +01001486 unsigned long *mask;
1487 unsigned int index;
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001488
1489 index = get_netdev_queue_index(queue);
1490
Antoine Tenart4ae2bb82020-12-23 22:23:23 +01001491 if (!rtnl_trylock())
1492 return restart_syscall();
1493
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001494 if (dev->num_tc) {
1495 num_tc = dev->num_tc;
1496 tc = netdev_txq_to_tc(dev, index);
Antoine Tenart4ae2bb82020-12-23 22:23:23 +01001497 if (tc < 0) {
1498 ret = -EINVAL;
1499 goto err_rtnl_unlock;
1500 }
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001501 }
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001502 mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL);
Antoine Tenart4ae2bb82020-12-23 22:23:23 +01001503 if (!mask) {
1504 ret = -ENOMEM;
1505 goto err_rtnl_unlock;
1506 }
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001507
1508 rcu_read_lock();
1509 dev_maps = rcu_dereference(dev->xps_rxqs_map);
1510 if (!dev_maps)
1511 goto out_no_maps;
1512
1513 for (j = -1; j = netif_attrmask_next(j, NULL, dev->num_rx_queues),
1514 j < dev->num_rx_queues;) {
1515 int i, tci = j * num_tc + tc;
1516 struct xps_map *map;
1517
1518 map = rcu_dereference(dev_maps->attr_map[tci]);
1519 if (!map)
1520 continue;
1521
1522 for (i = map->len; i--;) {
1523 if (map->queues[i] == index) {
1524 set_bit(j, mask);
1525 break;
1526 }
1527 }
1528 }
1529out_no_maps:
1530 rcu_read_unlock();
1531
Antoine Tenart4ae2bb82020-12-23 22:23:23 +01001532 rtnl_unlock();
1533
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001534 len = bitmap_print_to_pagebuf(false, buf, mask, dev->num_rx_queues);
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001535 bitmap_free(mask);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001536
1537 return len < PAGE_SIZE ? len : -EINVAL;
Antoine Tenart4ae2bb82020-12-23 22:23:23 +01001538
1539err_rtnl_unlock:
1540 rtnl_unlock();
1541 return ret;
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001542}
1543
1544static ssize_t xps_rxqs_store(struct netdev_queue *queue, const char *buf,
1545 size_t len)
1546{
1547 struct net_device *dev = queue->dev;
1548 struct net *net = dev_net(dev);
Antoine Tenartd9a063d22021-03-18 19:37:41 +01001549 unsigned long *mask;
1550 unsigned int index;
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001551 int err;
1552
1553 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1554 return -EPERM;
1555
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001556 mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001557 if (!mask)
1558 return -ENOMEM;
1559
1560 index = get_netdev_queue_index(queue);
1561
1562 err = bitmap_parse(buf, len, mask, dev->num_rx_queues);
1563 if (err) {
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001564 bitmap_free(mask);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001565 return err;
1566 }
1567
Antoine Tenart2d57b4f2020-12-23 22:23:22 +01001568 if (!rtnl_trylock()) {
1569 bitmap_free(mask);
1570 return restart_syscall();
1571 }
1572
Andrei Vagin4d99f662018-08-08 20:07:35 -07001573 cpus_read_lock();
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001574 err = __netif_set_xps_queue(dev, mask, index, true);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001575 cpus_read_unlock();
1576
Antoine Tenart2d57b4f2020-12-23 22:23:22 +01001577 rtnl_unlock();
1578
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001579 bitmap_free(mask);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001580 return err ? : len;
1581}
1582
1583static struct netdev_queue_attribute xps_rxqs_attribute __ro_after_init
1584 = __ATTR_RW(xps_rxqs);
david decotignyccf5ff62011-11-16 12:15:10 +00001585#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001586
stephen hemminger2b9c7582017-08-18 13:46:26 -07001587static struct attribute *netdev_queue_default_attrs[] __ro_after_init = {
david decotignyccf5ff62011-11-16 12:15:10 +00001588 &queue_trans_timeout.attr,
Alexander Duyck8d059b02016-10-28 11:43:49 -04001589 &queue_traffic_class.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001590#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001591 &xps_cpus_attribute.attr,
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001592 &xps_rxqs_attribute.attr,
John Fastabend822b3b22015-03-18 14:57:33 +02001593 &queue_tx_maxrate.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001594#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001595 NULL
1596};
Kimberly Brownbe0d6922019-04-01 22:51:35 -04001597ATTRIBUTE_GROUPS(netdev_queue_default);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001598
1599static void netdev_queue_release(struct kobject *kobj)
1600{
1601 struct netdev_queue *queue = to_netdev_queue(kobj);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001602
Tom Herbert1d24eb42010-11-21 13:17:27 +00001603 memset(kobj, 0, sizeof(*kobj));
1604 dev_put(queue->dev);
1605}
1606
Weilong Chen82ef3d52014-01-16 17:24:31 +08001607static const void *netdev_queue_namespace(struct kobject *kobj)
1608{
1609 struct netdev_queue *queue = to_netdev_queue(kobj);
1610 struct device *dev = &queue->dev->dev;
1611 const void *ns = NULL;
1612
1613 if (dev->class && dev->class->ns_type)
1614 ns = dev->class->namespace(dev);
1615
1616 return ns;
1617}
1618
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001619static void netdev_queue_get_ownership(struct kobject *kobj,
1620 kuid_t *uid, kgid_t *gid)
1621{
1622 const struct net *net = netdev_queue_namespace(kobj);
1623
1624 net_ns_get_ownership(net, uid, gid);
1625}
1626
stephen hemminger2b9c7582017-08-18 13:46:26 -07001627static struct kobj_type netdev_queue_ktype __ro_after_init = {
Tom Herbert1d24eb42010-11-21 13:17:27 +00001628 .sysfs_ops = &netdev_queue_sysfs_ops,
1629 .release = netdev_queue_release,
Kimberly Brownbe0d6922019-04-01 22:51:35 -04001630 .default_groups = netdev_queue_default_groups,
Weilong Chen82ef3d52014-01-16 17:24:31 +08001631 .namespace = netdev_queue_namespace,
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001632 .get_ownership = netdev_queue_get_ownership,
Tom Herbert1d24eb42010-11-21 13:17:27 +00001633};
1634
WANG Cong6b53daf2014-07-23 16:09:10 -07001635static int netdev_queue_add_kobject(struct net_device *dev, int index)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001636{
WANG Cong6b53daf2014-07-23 16:09:10 -07001637 struct netdev_queue *queue = dev->_tx + index;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001638 struct kobject *kobj = &queue->kobj;
1639 int error = 0;
1640
Jouni Hogandere0b609032019-12-05 15:57:07 +02001641 /* Kobject_put later will trigger netdev_queue_release call
1642 * which decreases dev refcount: Take that reference here
1643 */
1644 dev_hold(queue->dev);
1645
WANG Cong6b53daf2014-07-23 16:09:10 -07001646 kobj->kset = dev->queues_kset;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001647 error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL,
stephen hemminger6648c652017-08-18 13:46:28 -07001648 "tx-%u", index);
Tom Herbert114cf582011-11-28 16:33:09 +00001649 if (error)
Jouni Hoganderb8eb7182019-11-20 09:08:16 +02001650 goto err;
Tom Herbert114cf582011-11-28 16:33:09 +00001651
1652#ifdef CONFIG_BQL
1653 error = sysfs_create_group(kobj, &dql_group);
Jouni Hoganderb8eb7182019-11-20 09:08:16 +02001654 if (error)
1655 goto err;
Tom Herbert114cf582011-11-28 16:33:09 +00001656#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001657
1658 kobject_uevent(kobj, KOBJ_ADD);
Eric Dumazet48a322b2019-11-20 19:19:07 -08001659 return 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001660
Jouni Hoganderb8eb7182019-11-20 09:08:16 +02001661err:
1662 kobject_put(kobj);
1663 return error;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001664}
Christian Braunerd7554072020-02-27 04:37:18 +01001665
1666static int tx_queue_change_owner(struct net_device *ndev, int index,
1667 kuid_t kuid, kgid_t kgid)
1668{
1669 struct netdev_queue *queue = ndev->_tx + index;
1670 struct kobject *kobj = &queue->kobj;
1671 int error;
1672
1673 error = sysfs_change_owner(kobj, kuid, kgid);
1674 if (error)
1675 return error;
1676
1677#ifdef CONFIG_BQL
1678 error = sysfs_group_change_owner(kobj, &dql_group, kuid, kgid);
1679#endif
1680 return error;
1681}
david decotignyccf5ff62011-11-16 12:15:10 +00001682#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001683
1684int
WANG Cong6b53daf2014-07-23 16:09:10 -07001685netdev_queue_update_kobjects(struct net_device *dev, int old_num, int new_num)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001686{
david decotignyccf5ff62011-11-16 12:15:10 +00001687#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001688 int i;
1689 int error = 0;
1690
1691 for (i = old_num; i < new_num; i++) {
WANG Cong6b53daf2014-07-23 16:09:10 -07001692 error = netdev_queue_add_kobject(dev, i);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001693 if (error) {
1694 new_num = old_num;
1695 break;
1696 }
1697 }
1698
Tom Herbert114cf582011-11-28 16:33:09 +00001699 while (--i >= new_num) {
WANG Cong6b53daf2014-07-23 16:09:10 -07001700 struct netdev_queue *queue = dev->_tx + i;
Tom Herbert114cf582011-11-28 16:33:09 +00001701
Christian Brauner8b8f3e62020-08-19 14:06:36 +02001702 if (!refcount_read(&dev_net(dev)->ns.count))
Andrey Vagin002d8a12016-10-24 19:09:53 -07001703 queue->kobj.uevent_suppress = 1;
Tom Herbert114cf582011-11-28 16:33:09 +00001704#ifdef CONFIG_BQL
1705 sysfs_remove_group(&queue->kobj, &dql_group);
1706#endif
1707 kobject_put(&queue->kobj);
1708 }
Tom Herbert1d24eb42010-11-21 13:17:27 +00001709
1710 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001711#else
1712 return 0;
david decotignyccf5ff62011-11-16 12:15:10 +00001713#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001714}
1715
Christian Braunerd7554072020-02-27 04:37:18 +01001716static int net_tx_queue_change_owner(struct net_device *dev, int num,
1717 kuid_t kuid, kgid_t kgid)
1718{
1719#ifdef CONFIG_SYSFS
1720 int error = 0;
1721 int i;
1722
1723 for (i = 0; i < num; i++) {
1724 error = tx_queue_change_owner(dev, i, kuid, kgid);
1725 if (error)
1726 break;
1727 }
1728
1729 return error;
1730#else
1731 return 0;
1732#endif /* CONFIG_SYSFS */
1733}
1734
WANG Cong6b53daf2014-07-23 16:09:10 -07001735static int register_queue_kobjects(struct net_device *dev)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001736{
Tom Herbertbf264142010-11-26 08:36:09 +00001737 int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001738
david decotignyccf5ff62011-11-16 12:15:10 +00001739#ifdef CONFIG_SYSFS
WANG Cong6b53daf2014-07-23 16:09:10 -07001740 dev->queues_kset = kset_create_and_add("queues",
stephen hemminger6648c652017-08-18 13:46:28 -07001741 NULL, &dev->dev.kobj);
WANG Cong6b53daf2014-07-23 16:09:10 -07001742 if (!dev->queues_kset)
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001743 return -ENOMEM;
WANG Cong6b53daf2014-07-23 16:09:10 -07001744 real_rx = dev->real_num_rx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001745#endif
WANG Cong6b53daf2014-07-23 16:09:10 -07001746 real_tx = dev->real_num_tx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001747
WANG Cong6b53daf2014-07-23 16:09:10 -07001748 error = net_rx_queue_update_kobjects(dev, 0, real_rx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001749 if (error)
1750 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001751 rxq = real_rx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001752
WANG Cong6b53daf2014-07-23 16:09:10 -07001753 error = netdev_queue_update_kobjects(dev, 0, real_tx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001754 if (error)
1755 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001756 txq = real_tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001757
1758 return 0;
1759
1760error:
WANG Cong6b53daf2014-07-23 16:09:10 -07001761 netdev_queue_update_kobjects(dev, txq, 0);
1762 net_rx_queue_update_kobjects(dev, rxq, 0);
YueHaibing895a5e92019-03-02 10:34:55 +08001763#ifdef CONFIG_SYSFS
1764 kset_unregister(dev->queues_kset);
1765#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001766 return error;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001767}
1768
Christian Braunerd7554072020-02-27 04:37:18 +01001769static int queue_change_owner(struct net_device *ndev, kuid_t kuid, kgid_t kgid)
1770{
1771 int error = 0, real_rx = 0, real_tx = 0;
1772
1773#ifdef CONFIG_SYSFS
1774 if (ndev->queues_kset) {
1775 error = sysfs_change_owner(&ndev->queues_kset->kobj, kuid, kgid);
1776 if (error)
1777 return error;
1778 }
1779 real_rx = ndev->real_num_rx_queues;
1780#endif
1781 real_tx = ndev->real_num_tx_queues;
1782
1783 error = net_rx_queue_change_owner(ndev, real_rx, kuid, kgid);
1784 if (error)
1785 return error;
1786
1787 error = net_tx_queue_change_owner(ndev, real_tx, kuid, kgid);
1788 if (error)
1789 return error;
1790
1791 return 0;
1792}
1793
WANG Cong6b53daf2014-07-23 16:09:10 -07001794static void remove_queue_kobjects(struct net_device *dev)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001795{
Tom Herbertbf264142010-11-26 08:36:09 +00001796 int real_rx = 0, real_tx = 0;
1797
Michael Daltona953be52014-01-16 22:23:28 -08001798#ifdef CONFIG_SYSFS
WANG Cong6b53daf2014-07-23 16:09:10 -07001799 real_rx = dev->real_num_rx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001800#endif
WANG Cong6b53daf2014-07-23 16:09:10 -07001801 real_tx = dev->real_num_tx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001802
WANG Cong6b53daf2014-07-23 16:09:10 -07001803 net_rx_queue_update_kobjects(dev, real_rx, 0);
1804 netdev_queue_update_kobjects(dev, real_tx, 0);
david decotignyccf5ff62011-11-16 12:15:10 +00001805#ifdef CONFIG_SYSFS
WANG Cong6b53daf2014-07-23 16:09:10 -07001806 kset_unregister(dev->queues_kset);
Tom Herbertbf264142010-11-26 08:36:09 +00001807#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001808}
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001809
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001810static bool net_current_may_mount(void)
1811{
1812 struct net *net = current->nsproxy->net_ns;
1813
1814 return ns_capable(net->user_ns, CAP_SYS_ADMIN);
1815}
1816
Al Viroa685e082011-06-08 21:13:01 -04001817static void *net_grab_current_ns(void)
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001818{
Al Viroa685e082011-06-08 21:13:01 -04001819 struct net *ns = current->nsproxy->net_ns;
1820#ifdef CONFIG_NET_NS
1821 if (ns)
Reshetova, Elenac122e142017-06-30 13:08:08 +03001822 refcount_inc(&ns->passive);
Al Viroa685e082011-06-08 21:13:01 -04001823#endif
1824 return ns;
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001825}
1826
1827static const void *net_initial_ns(void)
1828{
1829 return &init_net;
1830}
1831
1832static const void *net_netlink_ns(struct sock *sk)
1833{
1834 return sock_net(sk);
1835}
1836
stephen hemminger737aec52017-08-18 13:46:22 -07001837const struct kobj_ns_type_operations net_ns_type_operations = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001838 .type = KOBJ_NS_TYPE_NET,
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001839 .current_may_mount = net_current_may_mount,
Al Viroa685e082011-06-08 21:13:01 -04001840 .grab_current_ns = net_grab_current_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001841 .netlink_ns = net_netlink_ns,
1842 .initial_ns = net_initial_ns,
Al Viroa685e082011-06-08 21:13:01 -04001843 .drop_ns = net_drop_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001844};
Johannes Berg04600792010-08-05 17:45:15 +02001845EXPORT_SYMBOL_GPL(net_ns_type_operations);
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001846
Kay Sievers7eff2e72007-08-14 15:15:12 +02001847static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001849 struct net_device *dev = to_net_dev(d);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001850 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Kay Sievers312c0042005-11-16 09:00:00 +01001852 /* pass interface to uevent. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001853 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
Eric Rannaudbf624562007-03-30 22:23:12 -07001854 if (retval)
1855 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001857 /* pass ifindex to uevent.
1858 * ifindex is useful as it won't change (interface name may change)
stephen hemminger6648c652017-08-18 13:46:28 -07001859 * and is what RtNetlink uses natively.
1860 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001861 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001862
Eric Rannaudbf624562007-03-30 22:23:12 -07001863exit:
Eric Rannaudbf624562007-03-30 22:23:12 -07001864 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001868 * netdev_release -- destroy and free a dead device.
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001869 * Called when last reference to device kobject is gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001871static void netdev_release(struct device *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001873 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 BUG_ON(dev->reg_state != NETREG_RELEASED);
1876
Florian Westphal6c557002017-10-02 23:50:05 +02001877 /* no need to wait for rcu grace period:
1878 * device is dead and about to be freed.
1879 */
1880 kfree(rcu_access_pointer(dev->ifalias));
Eric Dumazet74d332c2013-10-30 13:10:44 -07001881 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882}
1883
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001884static const void *net_namespace(struct device *d)
1885{
Geliang Tang5c294822015-12-22 23:11:49 +08001886 struct net_device *dev = to_net_dev(d);
1887
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001888 return dev_net(dev);
1889}
1890
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001891static void net_get_ownership(struct device *d, kuid_t *uid, kgid_t *gid)
1892{
1893 struct net_device *dev = to_net_dev(d);
1894 const struct net *net = dev_net(dev);
1895
1896 net_ns_get_ownership(net, uid, gid);
1897}
1898
stephen hemmingere6d473e2017-08-18 13:46:21 -07001899static struct class net_class __ro_after_init = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 .name = "net",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001901 .dev_release = netdev_release,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -07001902 .dev_groups = net_class_groups,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001903 .dev_uevent = netdev_uevent,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001904 .ns_type = &net_ns_type_operations,
1905 .namespace = net_namespace,
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001906 .get_ownership = net_get_ownership,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907};
1908
Florian Fainelliaa836df2015-03-09 14:31:20 -07001909#ifdef CONFIG_OF_NET
1910static int of_dev_node_match(struct device *dev, const void *data)
1911{
Tobias Waldekranz2e186a22020-05-15 11:52:52 +02001912 for (; dev; dev = dev->parent) {
1913 if (dev->of_node == data)
1914 return 1;
1915 }
Florian Fainelliaa836df2015-03-09 14:31:20 -07001916
Tobias Waldekranz2e186a22020-05-15 11:52:52 +02001917 return 0;
Florian Fainelliaa836df2015-03-09 14:31:20 -07001918}
1919
Russell King9861f722015-09-24 20:36:33 +01001920/*
1921 * of_find_net_device_by_node - lookup the net device for the device node
1922 * @np: OF device node
1923 *
1924 * Looks up the net_device structure corresponding with the device node.
1925 * If successful, returns a pointer to the net_device with the embedded
1926 * struct device refcount incremented by one, or NULL on failure. The
1927 * refcount must be dropped when done with the net_device.
1928 */
Florian Fainelliaa836df2015-03-09 14:31:20 -07001929struct net_device *of_find_net_device_by_node(struct device_node *np)
1930{
1931 struct device *dev;
1932
1933 dev = class_find_device(&net_class, NULL, np, of_dev_node_match);
1934 if (!dev)
1935 return NULL;
1936
1937 return to_net_dev(dev);
1938}
1939EXPORT_SYMBOL(of_find_net_device_by_node);
1940#endif
1941
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001942/* Delete sysfs entries but hold kobject reference until after all
1943 * netdev references are gone.
1944 */
WANG Cong6b53daf2014-07-23 16:09:10 -07001945void netdev_unregister_kobject(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
stephen hemminger6648c652017-08-18 13:46:28 -07001947 struct device *dev = &ndev->dev;
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001948
Christian Brauner8b8f3e62020-08-19 14:06:36 +02001949 if (!refcount_read(&dev_net(ndev)->ns.count))
Andrey Vagin002d8a12016-10-24 19:09:53 -07001950 dev_set_uevent_suppress(dev, 1);
1951
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001952 kobject_get(&dev->kobj);
Eric W. Biederman38918452008-10-27 17:51:47 -07001953
WANG Cong6b53daf2014-07-23 16:09:10 -07001954 remove_queue_kobjects(ndev);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001955
Ming Lei9802c8e2013-02-22 16:34:16 -08001956 pm_runtime_set_memalloc_noio(dev, false);
1957
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001958 device_del(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959}
1960
1961/* Create sysfs entries for network device. */
WANG Cong6b53daf2014-07-23 16:09:10 -07001962int netdev_register_kobject(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
stephen hemminger6648c652017-08-18 13:46:28 -07001964 struct device *dev = &ndev->dev;
WANG Cong6b53daf2014-07-23 16:09:10 -07001965 const struct attribute_group **groups = ndev->sysfs_groups;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001966 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001968 device_initialize(dev);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001969 dev->class = &net_class;
WANG Cong6b53daf2014-07-23 16:09:10 -07001970 dev->platform_data = ndev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001971 dev->groups = groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
WANG Cong6b53daf2014-07-23 16:09:10 -07001973 dev_set_name(dev, "%s", ndev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001975#ifdef CONFIG_SYSFS
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001976 /* Allow for a device specific group */
1977 if (*groups)
1978 groups++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001980 *groups++ = &netstat_group;
Johannes Berg38c1a012012-11-16 20:46:19 +01001981
1982#if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211)
WANG Cong6b53daf2014-07-23 16:09:10 -07001983 if (ndev->ieee80211_ptr)
Johannes Berg38c1a012012-11-16 20:46:19 +01001984 *groups++ = &wireless_group;
1985#if IS_ENABLED(CONFIG_WIRELESS_EXT)
WANG Cong6b53daf2014-07-23 16:09:10 -07001986 else if (ndev->wireless_handlers)
Johannes Berg38c1a012012-11-16 20:46:19 +01001987 *groups++ = &wireless_group;
1988#endif
1989#endif
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001990#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Tom Herbert0a9627f2010-03-16 08:03:29 +00001992 error = device_add(dev);
1993 if (error)
Wang Hai8ed633b2019-04-12 16:36:33 -04001994 return error;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001995
WANG Cong6b53daf2014-07-23 16:09:10 -07001996 error = register_queue_kobjects(ndev);
Wang Hai8ed633b2019-04-12 16:36:33 -04001997 if (error) {
1998 device_del(dev);
1999 return error;
2000 }
Tom Herbert0a9627f2010-03-16 08:03:29 +00002001
Ming Lei9802c8e2013-02-22 16:34:16 -08002002 pm_runtime_set_memalloc_noio(dev, true);
2003
Tom Herbert0a9627f2010-03-16 08:03:29 +00002004 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Christian Braunere6dee9f2020-02-27 04:37:17 +01002007/* Change owner for sysfs entries when moving network devices across network
2008 * namespaces owned by different user namespaces.
2009 */
2010int netdev_change_owner(struct net_device *ndev, const struct net *net_old,
2011 const struct net *net_new)
2012{
2013 struct device *dev = &ndev->dev;
2014 kuid_t old_uid, new_uid;
2015 kgid_t old_gid, new_gid;
2016 int error;
2017
2018 net_ns_get_ownership(net_old, &old_uid, &old_gid);
2019 net_ns_get_ownership(net_new, &new_uid, &new_gid);
2020
2021 /* The network namespace was changed but the owning user namespace is
2022 * identical so there's no need to change the owner of sysfs entries.
2023 */
2024 if (uid_eq(old_uid, new_uid) && gid_eq(old_gid, new_gid))
2025 return 0;
2026
2027 error = device_change_owner(dev, new_uid, new_gid);
2028 if (error)
2029 return error;
2030
Christian Braunerd7554072020-02-27 04:37:18 +01002031 error = queue_change_owner(ndev, new_uid, new_gid);
2032 if (error)
2033 return error;
2034
Christian Braunere6dee9f2020-02-27 04:37:17 +01002035 return 0;
2036}
2037
stephen hemmingerb793dc52017-08-18 13:46:20 -07002038int netdev_class_create_file_ns(const struct class_attribute *class_attr,
Tejun Heo58292cbe2013-09-11 22:29:04 -04002039 const void *ns)
Jay Vosburghb8a97872008-06-13 18:12:04 -07002040{
Tejun Heo58292cbe2013-09-11 22:29:04 -04002041 return class_create_file_ns(&net_class, class_attr, ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07002042}
Tejun Heo58292cbe2013-09-11 22:29:04 -04002043EXPORT_SYMBOL(netdev_class_create_file_ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07002044
stephen hemmingerb793dc52017-08-18 13:46:20 -07002045void netdev_class_remove_file_ns(const struct class_attribute *class_attr,
Tejun Heo58292cbe2013-09-11 22:29:04 -04002046 const void *ns)
Jay Vosburghb8a97872008-06-13 18:12:04 -07002047{
Tejun Heo58292cbe2013-09-11 22:29:04 -04002048 class_remove_file_ns(&net_class, class_attr, ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07002049}
Tejun Heo58292cbe2013-09-11 22:29:04 -04002050EXPORT_SYMBOL(netdev_class_remove_file_ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07002051
Daniel Borkmanna48d4bb2014-01-06 01:20:11 +01002052int __init netdev_kobject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Eric W. Biederman608b4b92010-05-04 17:36:45 -07002054 kobj_ns_type_register(&net_ns_type_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 return class_register(&net_class);
2056}