blob: f8f94303a1f57203eaa28b5ea459ac28c89e1b12 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * net-sysfs.c - network device class and attributes
3 *
4 * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org>
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/netdevice.h>
15#include <linux/if_arp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010017#include <linux/sched/signal.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070018#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <net/sock.h>
Eric W. Biederman608b4b92010-05-04 17:36:45 -070020#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/rtnetlink.h>
Tom Herbertfec5e652010-04-16 16:01:27 -070022#include <linux/vmalloc.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040023#include <linux/export.h>
Tom Herbert114cf582011-11-28 16:33:09 +000024#include <linux/jiffies.h>
Ming Lei9802c8e2013-02-22 16:34:16 -080025#include <linux/pm_runtime.h>
Florian Fainelliaa836df2015-03-09 14:31:20 -070026#include <linux/of.h>
Ben Dooks88832a22016-06-07 19:27:51 +010027#include <linux/of_net.h>
Andrei Vagin4d99f662018-08-08 20:07:35 -070028#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Pavel Emelyanov342709e2007-10-23 21:14:45 -070030#include "net-sysfs.h"
31
Eric W. Biederman8b41d182007-09-26 22:02:53 -070032#ifdef CONFIG_SYSFS
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static const char fmt_hex[] = "%#x\n";
34static const char fmt_dec[] = "%d\n";
35static const char fmt_ulong[] = "%lu\n";
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +000036static const char fmt_u64[] = "%llu\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090038static inline int dev_isalive(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Stephen Hemmingerfe9925b2006-05-06 17:56:03 -070040 return dev->reg_state <= NETREG_REGISTERED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
43/* use same locking rules as GIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070044static ssize_t netdev_show(const struct device *dev,
45 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 ssize_t (*format)(const struct net_device *, char *))
47{
WANG Cong6b53daf2014-07-23 16:09:10 -070048 struct net_device *ndev = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 ssize_t ret = -EINVAL;
50
51 read_lock(&dev_base_lock);
WANG Cong6b53daf2014-07-23 16:09:10 -070052 if (dev_isalive(ndev))
53 ret = (*format)(ndev, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 read_unlock(&dev_base_lock);
55
56 return ret;
57}
58
59/* generate a show function for simple field */
60#define NETDEVICE_SHOW(field, format_string) \
WANG Cong6b53daf2014-07-23 16:09:10 -070061static ssize_t format_##field(const struct net_device *dev, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{ \
WANG Cong6b53daf2014-07-23 16:09:10 -070063 return sprintf(buf, format_string, dev->field); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070064} \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070065static ssize_t field##_show(struct device *dev, \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070066 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070068 return netdev_show(dev, attr, buf, format_##field); \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070069} \
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -070071#define NETDEVICE_SHOW_RO(field, format_string) \
72NETDEVICE_SHOW(field, format_string); \
73static DEVICE_ATTR_RO(field)
74
75#define NETDEVICE_SHOW_RW(field, format_string) \
76NETDEVICE_SHOW(field, format_string); \
77static DEVICE_ATTR_RW(field)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* use same locking and permission rules as SIF* ioctl's */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070080static ssize_t netdev_store(struct device *dev, struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 const char *buf, size_t len,
82 int (*set)(struct net_device *, unsigned long))
83{
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000084 struct net_device *netdev = to_net_dev(dev);
85 struct net *net = dev_net(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned long new;
87 int ret = -EINVAL;
88
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000089 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return -EPERM;
91
Shuah Khane1e420c2012-04-12 09:28:13 +000092 ret = kstrtoul(buf, 0, &new);
93 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 goto err;
95
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000096 if (!rtnl_trylock())
Eric W. Biederman336ca572009-05-13 16:57:25 +000097 return restart_syscall();
Stephen Hemminger5a5990d2009-02-26 06:49:24 +000098
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +000099 if (dev_isalive(netdev)) {
stephen hemminger6648c652017-08-18 13:46:28 -0700100 ret = (*set)(netdev, new);
101 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 ret = len;
103 }
104 rtnl_unlock();
105 err:
106 return ret;
107}
108
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700109NETDEVICE_SHOW_RO(dev_id, fmt_hex);
Amir Vadai3f859442014-02-25 18:17:50 +0200110NETDEVICE_SHOW_RO(dev_port, fmt_dec);
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700111NETDEVICE_SHOW_RO(addr_assign_type, fmt_dec);
112NETDEVICE_SHOW_RO(addr_len, fmt_dec);
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700113NETDEVICE_SHOW_RO(ifindex, fmt_dec);
114NETDEVICE_SHOW_RO(type, fmt_dec);
115NETDEVICE_SHOW_RO(link_mode, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200117static ssize_t iflink_show(struct device *dev, struct device_attribute *attr,
118 char *buf)
119{
120 struct net_device *ndev = to_net_dev(dev);
121
122 return sprintf(buf, fmt_dec, dev_get_iflink(ndev));
123}
124static DEVICE_ATTR_RO(iflink);
125
WANG Cong6b53daf2014-07-23 16:09:10 -0700126static ssize_t format_name_assign_type(const struct net_device *dev, char *buf)
Tom Gundersen685343f2014-07-14 16:37:22 +0200127{
WANG Cong6b53daf2014-07-23 16:09:10 -0700128 return sprintf(buf, fmt_dec, dev->name_assign_type);
Tom Gundersen685343f2014-07-14 16:37:22 +0200129}
130
131static ssize_t name_assign_type_show(struct device *dev,
132 struct device_attribute *attr,
133 char *buf)
134{
WANG Cong6b53daf2014-07-23 16:09:10 -0700135 struct net_device *ndev = to_net_dev(dev);
Tom Gundersen685343f2014-07-14 16:37:22 +0200136 ssize_t ret = -EINVAL;
137
WANG Cong6b53daf2014-07-23 16:09:10 -0700138 if (ndev->name_assign_type != NET_NAME_UNKNOWN)
Tom Gundersen685343f2014-07-14 16:37:22 +0200139 ret = netdev_show(dev, attr, buf, format_name_assign_type);
140
141 return ret;
142}
143static DEVICE_ATTR_RO(name_assign_type);
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/* use same locking rules as GIFHWADDR ioctl's */
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700146static ssize_t address_show(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700147 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
WANG Cong6b53daf2014-07-23 16:09:10 -0700149 struct net_device *ndev = to_net_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 ssize_t ret = -EINVAL;
151
152 read_lock(&dev_base_lock);
WANG Cong6b53daf2014-07-23 16:09:10 -0700153 if (dev_isalive(ndev))
154 ret = sysfs_format_mac(buf, ndev->dev_addr, ndev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 read_unlock(&dev_base_lock);
156 return ret;
157}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700158static DEVICE_ATTR_RO(address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700160static ssize_t broadcast_show(struct device *dev,
161 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
WANG Cong6b53daf2014-07-23 16:09:10 -0700163 struct net_device *ndev = to_net_dev(dev);
stephen hemminger6648c652017-08-18 13:46:28 -0700164
WANG Cong6b53daf2014-07-23 16:09:10 -0700165 if (dev_isalive(ndev))
166 return sysfs_format_mac(buf, ndev->broadcast, ndev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return -EINVAL;
168}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700169static DEVICE_ATTR_RO(broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
WANG Cong6b53daf2014-07-23 16:09:10 -0700171static int change_carrier(struct net_device *dev, unsigned long new_carrier)
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000172{
WANG Cong6b53daf2014-07-23 16:09:10 -0700173 if (!netif_running(dev))
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000174 return -EINVAL;
stephen hemminger6648c652017-08-18 13:46:28 -0700175 return dev_change_carrier(dev, (bool)new_carrier);
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000176}
177
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700178static ssize_t carrier_store(struct device *dev, struct device_attribute *attr,
179 const char *buf, size_t len)
Jiri Pirkofdae0fd2012-12-27 23:49:38 +0000180{
181 return netdev_store(dev, attr, buf, len, change_carrier);
182}
183
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700184static ssize_t carrier_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700185 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct net_device *netdev = to_net_dev(dev);
stephen hemminger6648c652017-08-18 13:46:28 -0700188
189 if (netif_running(netdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev));
stephen hemminger6648c652017-08-18 13:46:28 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EINVAL;
193}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700194static DEVICE_ATTR_RW(carrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700196static ssize_t speed_show(struct device *dev,
Andy Gospodarekd519e172009-10-02 09:26:12 +0000197 struct device_attribute *attr, char *buf)
198{
199 struct net_device *netdev = to_net_dev(dev);
200 int ret = -EINVAL;
201
202 if (!rtnl_trylock())
203 return restart_syscall();
204
David Decotigny8ae6daca2011-04-27 18:32:38 +0000205 if (netif_running(netdev)) {
David Decotigny7cad1ba2016-02-24 10:58:10 -0800206 struct ethtool_link_ksettings cmd;
207
208 if (!__ethtool_get_link_ksettings(netdev, &cmd))
209 ret = sprintf(buf, fmt_dec, cmd.base.speed);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000210 }
211 rtnl_unlock();
212 return ret;
213}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700214static DEVICE_ATTR_RO(speed);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000215
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700216static ssize_t duplex_show(struct device *dev,
Andy Gospodarekd519e172009-10-02 09:26:12 +0000217 struct device_attribute *attr, char *buf)
218{
219 struct net_device *netdev = to_net_dev(dev);
220 int ret = -EINVAL;
221
222 if (!rtnl_trylock())
223 return restart_syscall();
224
David Decotigny8ae6daca2011-04-27 18:32:38 +0000225 if (netif_running(netdev)) {
David Decotigny7cad1ba2016-02-24 10:58:10 -0800226 struct ethtool_link_ksettings cmd;
227
228 if (!__ethtool_get_link_ksettings(netdev, &cmd)) {
Nikolay Aleksandrovc6c13962012-09-05 04:11:28 +0000229 const char *duplex;
David Decotigny7cad1ba2016-02-24 10:58:10 -0800230
231 switch (cmd.base.duplex) {
Nikolay Aleksandrovc6c13962012-09-05 04:11:28 +0000232 case DUPLEX_HALF:
233 duplex = "half";
234 break;
235 case DUPLEX_FULL:
236 duplex = "full";
237 break;
238 default:
239 duplex = "unknown";
240 break;
241 }
242 ret = sprintf(buf, "%s\n", duplex);
243 }
Andy Gospodarekd519e172009-10-02 09:26:12 +0000244 }
245 rtnl_unlock();
246 return ret;
247}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700248static DEVICE_ATTR_RO(duplex);
Andy Gospodarekd519e172009-10-02 09:26:12 +0000249
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700250static ssize_t dormant_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700251 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800252{
253 struct net_device *netdev = to_net_dev(dev);
254
255 if (netif_running(netdev))
256 return sprintf(buf, fmt_dec, !!netif_dormant(netdev));
257
258 return -EINVAL;
259}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700260static DEVICE_ATTR_RO(dormant);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800261
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700262static const char *const operstates[] = {
Stefan Rompfb00055a2006-03-20 17:09:11 -0800263 "unknown",
264 "notpresent", /* currently unused */
265 "down",
266 "lowerlayerdown",
267 "testing", /* currently unused */
268 "dormant",
269 "up"
270};
271
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700272static ssize_t operstate_show(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700273 struct device_attribute *attr, char *buf)
Stefan Rompfb00055a2006-03-20 17:09:11 -0800274{
275 const struct net_device *netdev = to_net_dev(dev);
276 unsigned char operstate;
277
278 read_lock(&dev_base_lock);
279 operstate = netdev->operstate;
280 if (!netif_running(netdev))
281 operstate = IF_OPER_DOWN;
282 read_unlock(&dev_base_lock);
283
Adrian Bunke3a5cd92006-04-05 22:19:47 -0700284 if (operstate >= ARRAY_SIZE(operstates))
Stefan Rompfb00055a2006-03-20 17:09:11 -0800285 return -EINVAL; /* should not happen */
286
287 return sprintf(buf, "%s\n", operstates[operstate]);
288}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700289static DEVICE_ATTR_RO(operstate);
Stefan Rompfb00055a2006-03-20 17:09:11 -0800290
david decotigny2d3b4792014-03-29 09:48:35 -0700291static ssize_t carrier_changes_show(struct device *dev,
292 struct device_attribute *attr,
293 char *buf)
294{
295 struct net_device *netdev = to_net_dev(dev);
stephen hemminger6648c652017-08-18 13:46:28 -0700296
david decotigny2d3b4792014-03-29 09:48:35 -0700297 return sprintf(buf, fmt_dec,
David Decotignyb2d3bcf2018-01-18 09:59:13 -0800298 atomic_read(&netdev->carrier_up_count) +
299 atomic_read(&netdev->carrier_down_count));
david decotigny2d3b4792014-03-29 09:48:35 -0700300}
301static DEVICE_ATTR_RO(carrier_changes);
302
David Decotignyb2d3bcf2018-01-18 09:59:13 -0800303static ssize_t carrier_up_count_show(struct device *dev,
304 struct device_attribute *attr,
305 char *buf)
306{
307 struct net_device *netdev = to_net_dev(dev);
308
309 return sprintf(buf, fmt_dec, atomic_read(&netdev->carrier_up_count));
310}
311static DEVICE_ATTR_RO(carrier_up_count);
312
313static ssize_t carrier_down_count_show(struct device *dev,
314 struct device_attribute *attr,
315 char *buf)
316{
317 struct net_device *netdev = to_net_dev(dev);
318
319 return sprintf(buf, fmt_dec, atomic_read(&netdev->carrier_down_count));
320}
321static DEVICE_ATTR_RO(carrier_down_count);
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/* read-write attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
WANG Cong6b53daf2014-07-23 16:09:10 -0700325static int change_mtu(struct net_device *dev, unsigned long new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
stephen hemminger6648c652017-08-18 13:46:28 -0700327 return dev_set_mtu(dev, (int)new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700330static ssize_t mtu_store(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700331 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700333 return netdev_store(dev, attr, buf, len, change_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700335NETDEVICE_SHOW_RW(mtu, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
WANG Cong6b53daf2014-07-23 16:09:10 -0700337static int change_flags(struct net_device *dev, unsigned long new_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Petr Machata567c5e12018-12-06 17:05:42 +0000339 return dev_change_flags(dev, (unsigned int)new_flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700342static ssize_t flags_store(struct device *dev, struct device_attribute *attr,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700343 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700345 return netdev_store(dev, attr, buf, len, change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700347NETDEVICE_SHOW_RW(flags, fmt_hex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700349static ssize_t tx_queue_len_store(struct device *dev,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700350 struct device_attribute *attr,
351 const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000353 if (!capable(CAP_NET_ADMIN))
354 return -EPERM;
355
Cong Wang6a643dd2018-01-25 18:26:22 -0800356 return netdev_store(dev, attr, buf, len, dev_change_tx_queue_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
Alexey Dobriyan0cd29502017-05-17 13:30:44 +0300358NETDEVICE_SHOW_RW(tx_queue_len, fmt_dec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Eric Dumazet3b47d302014-11-06 21:09:44 -0800360static int change_gro_flush_timeout(struct net_device *dev, unsigned long val)
361{
362 dev->gro_flush_timeout = val;
363 return 0;
364}
365
366static ssize_t gro_flush_timeout_store(struct device *dev,
stephen hemminger6648c652017-08-18 13:46:28 -0700367 struct device_attribute *attr,
368 const char *buf, size_t len)
Eric Dumazet3b47d302014-11-06 21:09:44 -0800369{
370 if (!capable(CAP_NET_ADMIN))
371 return -EPERM;
372
373 return netdev_store(dev, attr, buf, len, change_gro_flush_timeout);
374}
375NETDEVICE_SHOW_RW(gro_flush_timeout, fmt_ulong);
376
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700377static ssize_t ifalias_store(struct device *dev, struct device_attribute *attr,
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700378 const char *buf, size_t len)
379{
380 struct net_device *netdev = to_net_dev(dev);
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000381 struct net *net = dev_net(netdev);
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700382 size_t count = len;
Roopa Prabhuc92eb772017-11-13 23:21:36 -0800383 ssize_t ret = 0;
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700384
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +0000385 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700386 return -EPERM;
387
388 /* ignore trailing newline */
389 if (len > 0 && buf[len - 1] == '\n')
390 --count;
391
Roopa Prabhuc92eb772017-11-13 23:21:36 -0800392 if (!rtnl_trylock())
393 return restart_syscall();
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700394
Roopa Prabhuc92eb772017-11-13 23:21:36 -0800395 if (dev_isalive(netdev)) {
396 ret = dev_set_alias(netdev, buf, count);
397 if (ret < 0)
398 goto err;
399 ret = len;
400 netdev_state_change(netdev);
401 }
402err:
403 rtnl_unlock();
404
405 return ret;
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700406}
407
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700408static ssize_t ifalias_show(struct device *dev,
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700409 struct device_attribute *attr, char *buf)
410{
411 const struct net_device *netdev = to_net_dev(dev);
Florian Westphal6c557002017-10-02 23:50:05 +0200412 char tmp[IFALIASZ];
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700413 ssize_t ret = 0;
414
Florian Westphal6c557002017-10-02 23:50:05 +0200415 ret = dev_get_alias(netdev, tmp, sizeof(tmp));
416 if (ret > 0)
417 ret = sprintf(buf, "%s\n", tmp);
Stephen Hemminger0b815a12008-09-22 21:28:11 -0700418 return ret;
419}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700420static DEVICE_ATTR_RW(ifalias);
Vlad Dogarua512b922011-01-24 03:37:29 +0000421
WANG Cong6b53daf2014-07-23 16:09:10 -0700422static int change_group(struct net_device *dev, unsigned long new_group)
Vlad Dogarua512b922011-01-24 03:37:29 +0000423{
stephen hemminger6648c652017-08-18 13:46:28 -0700424 dev_set_group(dev, (int)new_group);
Vlad Dogarua512b922011-01-24 03:37:29 +0000425 return 0;
426}
427
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700428static ssize_t group_store(struct device *dev, struct device_attribute *attr,
429 const char *buf, size_t len)
Vlad Dogarua512b922011-01-24 03:37:29 +0000430{
431 return netdev_store(dev, attr, buf, len, change_group);
432}
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700433NETDEVICE_SHOW(group, fmt_dec);
Joe Perchesd6444062018-03-23 15:54:38 -0700434static DEVICE_ATTR(netdev_group, 0644, group_show, group_store);
Vlad Dogarua512b922011-01-24 03:37:29 +0000435
Anuradha Karuppiahd746d702015-07-14 13:43:19 -0700436static int change_proto_down(struct net_device *dev, unsigned long proto_down)
437{
stephen hemminger6648c652017-08-18 13:46:28 -0700438 return dev_change_proto_down(dev, (bool)proto_down);
Anuradha Karuppiahd746d702015-07-14 13:43:19 -0700439}
440
441static ssize_t proto_down_store(struct device *dev,
442 struct device_attribute *attr,
443 const char *buf, size_t len)
444{
445 return netdev_store(dev, attr, buf, len, change_proto_down);
446}
447NETDEVICE_SHOW_RW(proto_down, fmt_dec);
448
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700449static ssize_t phys_port_id_show(struct device *dev,
Jiri Pirkoff80e512013-07-29 18:16:51 +0200450 struct device_attribute *attr, char *buf)
451{
452 struct net_device *netdev = to_net_dev(dev);
453 ssize_t ret = -EINVAL;
454
455 if (!rtnl_trylock())
456 return restart_syscall();
457
458 if (dev_isalive(netdev)) {
Jiri Pirko02637fc2014-11-28 14:34:16 +0100459 struct netdev_phys_item_id ppid;
Jiri Pirkoff80e512013-07-29 18:16:51 +0200460
461 ret = dev_get_phys_port_id(netdev, &ppid);
462 if (!ret)
463 ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id);
464 }
465 rtnl_unlock();
466
467 return ret;
468}
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700469static DEVICE_ATTR_RO(phys_port_id);
Jiri Pirkoff80e512013-07-29 18:16:51 +0200470
David Aherndb24a902015-03-17 20:23:15 -0600471static ssize_t phys_port_name_show(struct device *dev,
472 struct device_attribute *attr, char *buf)
473{
474 struct net_device *netdev = to_net_dev(dev);
475 ssize_t ret = -EINVAL;
476
477 if (!rtnl_trylock())
478 return restart_syscall();
479
480 if (dev_isalive(netdev)) {
481 char name[IFNAMSIZ];
482
483 ret = dev_get_phys_port_name(netdev, name, sizeof(name));
484 if (!ret)
485 ret = sprintf(buf, "%s\n", name);
486 }
487 rtnl_unlock();
488
489 return ret;
490}
491static DEVICE_ATTR_RO(phys_port_name);
492
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100493static ssize_t phys_switch_id_show(struct device *dev,
494 struct device_attribute *attr, char *buf)
495{
496 struct net_device *netdev = to_net_dev(dev);
497 ssize_t ret = -EINVAL;
498
499 if (!rtnl_trylock())
500 return restart_syscall();
501
502 if (dev_isalive(netdev)) {
Florian Fainellibccb3022019-02-06 09:45:46 -0800503 struct netdev_phys_item_id ppid = { };
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100504
Florian Fainellibccb3022019-02-06 09:45:46 -0800505 ret = dev_get_port_parent_id(netdev, &ppid, false);
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100506 if (!ret)
Florian Fainellibccb3022019-02-06 09:45:46 -0800507 ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id);
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100508 }
509 rtnl_unlock();
510
511 return ret;
512}
513static DEVICE_ATTR_RO(phys_switch_id);
514
stephen hemmingerec6cc592017-08-18 13:46:23 -0700515static struct attribute *net_class_attrs[] __ro_after_init = {
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700516 &dev_attr_netdev_group.attr,
517 &dev_attr_type.attr,
518 &dev_attr_dev_id.attr,
Amir Vadai3f859442014-02-25 18:17:50 +0200519 &dev_attr_dev_port.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700520 &dev_attr_iflink.attr,
521 &dev_attr_ifindex.attr,
Tom Gundersen685343f2014-07-14 16:37:22 +0200522 &dev_attr_name_assign_type.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700523 &dev_attr_addr_assign_type.attr,
524 &dev_attr_addr_len.attr,
525 &dev_attr_link_mode.attr,
526 &dev_attr_address.attr,
527 &dev_attr_broadcast.attr,
528 &dev_attr_speed.attr,
529 &dev_attr_duplex.attr,
530 &dev_attr_dormant.attr,
531 &dev_attr_operstate.attr,
david decotigny2d3b4792014-03-29 09:48:35 -0700532 &dev_attr_carrier_changes.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700533 &dev_attr_ifalias.attr,
534 &dev_attr_carrier.attr,
535 &dev_attr_mtu.attr,
536 &dev_attr_flags.attr,
537 &dev_attr_tx_queue_len.attr,
Eric Dumazet3b47d302014-11-06 21:09:44 -0800538 &dev_attr_gro_flush_timeout.attr,
Linus Torvaldscc998ff2013-09-05 14:54:29 -0700539 &dev_attr_phys_port_id.attr,
David Aherndb24a902015-03-17 20:23:15 -0600540 &dev_attr_phys_port_name.attr,
Jiri Pirkoaecbe012014-11-28 14:34:19 +0100541 &dev_attr_phys_switch_id.attr,
Anuradha Karuppiahd746d702015-07-14 13:43:19 -0700542 &dev_attr_proto_down.attr,
David Decotignyb2d3bcf2018-01-18 09:59:13 -0800543 &dev_attr_carrier_up_count.attr,
544 &dev_attr_carrier_down_count.attr,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700545 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546};
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700547ATTRIBUTE_GROUPS(net_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549/* Show a given an attribute in the statistics group */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700550static ssize_t netstat_show(const struct device *d,
551 struct device_attribute *attr, char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 unsigned long offset)
553{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700554 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 ssize_t ret = -EINVAL;
556
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000557 WARN_ON(offset > sizeof(struct rtnl_link_stats64) ||
stephen hemminger6648c652017-08-18 13:46:28 -0700558 offset % sizeof(u64) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 read_lock(&dev_base_lock);
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700561 if (dev_isalive(dev)) {
Eric Dumazet28172732010-07-07 14:58:56 -0700562 struct rtnl_link_stats64 temp;
563 const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp);
564
stephen hemminger6648c652017-08-18 13:46:28 -0700565 ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *)stats) + offset));
Pavel Emelyanov96e74082008-05-21 14:12:46 -0700566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 read_unlock(&dev_base_lock);
568 return ret;
569}
570
571/* generate a read-only statistics attribute */
572#define NETSTAT_ENTRY(name) \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700573static ssize_t name##_show(struct device *d, \
stephen hemminger6648c652017-08-18 13:46:28 -0700574 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{ \
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700576 return netstat_show(d, attr, buf, \
Ben Hutchingsbe1f3c22010-06-08 07:19:54 +0000577 offsetof(struct rtnl_link_stats64, name)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578} \
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700579static DEVICE_ATTR_RO(name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581NETSTAT_ENTRY(rx_packets);
582NETSTAT_ENTRY(tx_packets);
583NETSTAT_ENTRY(rx_bytes);
584NETSTAT_ENTRY(tx_bytes);
585NETSTAT_ENTRY(rx_errors);
586NETSTAT_ENTRY(tx_errors);
587NETSTAT_ENTRY(rx_dropped);
588NETSTAT_ENTRY(tx_dropped);
589NETSTAT_ENTRY(multicast);
590NETSTAT_ENTRY(collisions);
591NETSTAT_ENTRY(rx_length_errors);
592NETSTAT_ENTRY(rx_over_errors);
593NETSTAT_ENTRY(rx_crc_errors);
594NETSTAT_ENTRY(rx_frame_errors);
595NETSTAT_ENTRY(rx_fifo_errors);
596NETSTAT_ENTRY(rx_missed_errors);
597NETSTAT_ENTRY(tx_aborted_errors);
598NETSTAT_ENTRY(tx_carrier_errors);
599NETSTAT_ENTRY(tx_fifo_errors);
600NETSTAT_ENTRY(tx_heartbeat_errors);
601NETSTAT_ENTRY(tx_window_errors);
602NETSTAT_ENTRY(rx_compressed);
603NETSTAT_ENTRY(tx_compressed);
Jarod Wilson6e7333d2016-02-01 18:51:05 -0500604NETSTAT_ENTRY(rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
stephen hemmingerec6cc592017-08-18 13:46:23 -0700606static struct attribute *netstat_attrs[] __ro_after_init = {
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -0700607 &dev_attr_rx_packets.attr,
608 &dev_attr_tx_packets.attr,
609 &dev_attr_rx_bytes.attr,
610 &dev_attr_tx_bytes.attr,
611 &dev_attr_rx_errors.attr,
612 &dev_attr_tx_errors.attr,
613 &dev_attr_rx_dropped.attr,
614 &dev_attr_tx_dropped.attr,
615 &dev_attr_multicast.attr,
616 &dev_attr_collisions.attr,
617 &dev_attr_rx_length_errors.attr,
618 &dev_attr_rx_over_errors.attr,
619 &dev_attr_rx_crc_errors.attr,
620 &dev_attr_rx_frame_errors.attr,
621 &dev_attr_rx_fifo_errors.attr,
622 &dev_attr_rx_missed_errors.attr,
623 &dev_attr_tx_aborted_errors.attr,
624 &dev_attr_tx_carrier_errors.attr,
625 &dev_attr_tx_fifo_errors.attr,
626 &dev_attr_tx_heartbeat_errors.attr,
627 &dev_attr_tx_window_errors.attr,
628 &dev_attr_rx_compressed.attr,
629 &dev_attr_tx_compressed.attr,
Jarod Wilson6e7333d2016-02-01 18:51:05 -0500630 &dev_attr_rx_nohandler.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 NULL
632};
633
Arvind Yadav38ef00c2017-06-29 16:31:26 +0530634static const struct attribute_group netstat_group = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 .name = "statistics",
636 .attrs = netstat_attrs,
637};
Johannes Berg38c1a012012-11-16 20:46:19 +0100638
639#if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211)
640static struct attribute *wireless_attrs[] = {
641 NULL
642};
643
Arvind Yadav38ef00c2017-06-29 16:31:26 +0530644static const struct attribute_group wireless_group = {
Johannes Berg38c1a012012-11-16 20:46:19 +0100645 .name = "wireless",
646 .attrs = wireless_attrs,
647};
648#endif
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -0700649
650#else /* CONFIG_SYSFS */
651#define net_class_groups NULL
Eric W. Biedermand6523dd2010-05-16 21:59:45 -0700652#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Michael Daltona953be52014-01-16 22:23:28 -0800654#ifdef CONFIG_SYSFS
stephen hemminger6648c652017-08-18 13:46:28 -0700655#define to_rx_queue_attr(_attr) \
656 container_of(_attr, struct rx_queue_attribute, attr)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000657
658#define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj)
659
660static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr,
661 char *buf)
662{
stephen hemminger667e4272017-08-18 13:46:27 -0700663 const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000664 struct netdev_rx_queue *queue = to_rx_queue(kobj);
665
666 if (!attribute->show)
667 return -EIO;
668
stephen hemminger718ad682017-08-18 13:46:24 -0700669 return attribute->show(queue, buf);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000670}
671
672static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
673 const char *buf, size_t count)
674{
stephen hemminger667e4272017-08-18 13:46:27 -0700675 const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000676 struct netdev_rx_queue *queue = to_rx_queue(kobj);
677
678 if (!attribute->store)
679 return -EIO;
680
stephen hemminger718ad682017-08-18 13:46:24 -0700681 return attribute->store(queue, buf, count);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000682}
683
stephen hemmingerfa50d642010-08-31 12:14:13 +0000684static const struct sysfs_ops rx_queue_sysfs_ops = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000685 .show = rx_queue_attr_show,
686 .store = rx_queue_attr_store,
687};
688
Michael Daltona953be52014-01-16 22:23:28 -0800689#ifdef CONFIG_RPS
stephen hemminger718ad682017-08-18 13:46:24 -0700690static ssize_t show_rps_map(struct netdev_rx_queue *queue, char *buf)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000691{
692 struct rps_map *map;
693 cpumask_var_t mask;
Tejun Heof0906822015-02-13 14:37:42 -0800694 int i, len;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000695
696 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
697 return -ENOMEM;
698
699 rcu_read_lock();
700 map = rcu_dereference(queue->rps_map);
701 if (map)
702 for (i = 0; i < map->len; i++)
703 cpumask_set_cpu(map->cpus[i], mask);
704
Tejun Heof0906822015-02-13 14:37:42 -0800705 len = snprintf(buf, PAGE_SIZE, "%*pb\n", cpumask_pr_args(mask));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000706 rcu_read_unlock();
Tom Herbert0a9627f2010-03-16 08:03:29 +0000707 free_cpumask_var(mask);
Tejun Heof0906822015-02-13 14:37:42 -0800708
709 return len < PAGE_SIZE ? len : -EINVAL;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000710}
711
Eric Dumazetf5acb902010-04-19 14:40:57 -0700712static ssize_t store_rps_map(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -0700713 const char *buf, size_t len)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000714{
715 struct rps_map *old_map, *map;
716 cpumask_var_t mask;
717 int err, cpu, i;
Sasha Levinda65ad12015-08-13 14:03:16 -0400718 static DEFINE_MUTEX(rps_map_mutex);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000719
720 if (!capable(CAP_NET_ADMIN))
721 return -EPERM;
722
723 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
724 return -ENOMEM;
725
726 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
727 if (err) {
728 free_cpumask_var(mask);
729 return err;
730 }
731
Eric Dumazet95c96172012-04-15 05:58:06 +0000732 map = kzalloc(max_t(unsigned int,
stephen hemminger6648c652017-08-18 13:46:28 -0700733 RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES),
734 GFP_KERNEL);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000735 if (!map) {
736 free_cpumask_var(mask);
737 return -ENOMEM;
738 }
739
740 i = 0;
741 for_each_cpu_and(cpu, mask, cpu_online_mask)
742 map->cpus[i++] = cpu;
743
stephen hemminger6648c652017-08-18 13:46:28 -0700744 if (i) {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000745 map->len = i;
stephen hemminger6648c652017-08-18 13:46:28 -0700746 } else {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000747 kfree(map);
748 map = NULL;
749 }
750
Sasha Levinda65ad12015-08-13 14:03:16 -0400751 mutex_lock(&rps_map_mutex);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000752 old_map = rcu_dereference_protected(queue->rps_map,
Sasha Levinda65ad12015-08-13 14:03:16 -0400753 mutex_is_locked(&rps_map_mutex));
Tom Herbert0a9627f2010-03-16 08:03:29 +0000754 rcu_assign_pointer(queue->rps_map, map);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000755
Eric Dumazetadc93002011-11-17 03:13:26 +0000756 if (map)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100757 static_key_slow_inc(&rps_needed);
Tom Herbert10e4ea72015-08-05 09:39:27 -0700758 if (old_map)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100759 static_key_slow_dec(&rps_needed);
Tom Herbert10e4ea72015-08-05 09:39:27 -0700760
Sasha Levinda65ad12015-08-13 14:03:16 -0400761 mutex_unlock(&rps_map_mutex);
Tom Herbert10e4ea72015-08-05 09:39:27 -0700762
763 if (old_map)
764 kfree_rcu(old_map, rcu);
765
Tom Herbert0a9627f2010-03-16 08:03:29 +0000766 free_cpumask_var(mask);
767 return len;
768}
769
Tom Herbertfec5e652010-04-16 16:01:27 -0700770static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
Tom Herbertfec5e652010-04-16 16:01:27 -0700771 char *buf)
772{
773 struct rps_dev_flow_table *flow_table;
Eric Dumazet60b778c2011-12-24 06:56:49 +0000774 unsigned long val = 0;
Tom Herbertfec5e652010-04-16 16:01:27 -0700775
776 rcu_read_lock();
777 flow_table = rcu_dereference(queue->rps_flow_table);
778 if (flow_table)
Eric Dumazet60b778c2011-12-24 06:56:49 +0000779 val = (unsigned long)flow_table->mask + 1;
Tom Herbertfec5e652010-04-16 16:01:27 -0700780 rcu_read_unlock();
781
Eric Dumazet60b778c2011-12-24 06:56:49 +0000782 return sprintf(buf, "%lu\n", val);
Tom Herbertfec5e652010-04-16 16:01:27 -0700783}
784
Tom Herbertfec5e652010-04-16 16:01:27 -0700785static void rps_dev_flow_table_release(struct rcu_head *rcu)
786{
787 struct rps_dev_flow_table *table = container_of(rcu,
788 struct rps_dev_flow_table, rcu);
Al Viro243198d2013-05-05 16:05:55 +0000789 vfree(table);
Tom Herbertfec5e652010-04-16 16:01:27 -0700790}
791
Eric Dumazetf5acb902010-04-19 14:40:57 -0700792static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -0700793 const char *buf, size_t len)
Tom Herbertfec5e652010-04-16 16:01:27 -0700794{
Eric Dumazet60b778c2011-12-24 06:56:49 +0000795 unsigned long mask, count;
Tom Herbertfec5e652010-04-16 16:01:27 -0700796 struct rps_dev_flow_table *table, *old_table;
797 static DEFINE_SPINLOCK(rps_dev_flow_lock);
Eric Dumazet60b778c2011-12-24 06:56:49 +0000798 int rc;
Tom Herbertfec5e652010-04-16 16:01:27 -0700799
800 if (!capable(CAP_NET_ADMIN))
801 return -EPERM;
802
Eric Dumazet60b778c2011-12-24 06:56:49 +0000803 rc = kstrtoul(buf, 0, &count);
804 if (rc < 0)
805 return rc;
Tom Herbertfec5e652010-04-16 16:01:27 -0700806
807 if (count) {
Eric Dumazet60b778c2011-12-24 06:56:49 +0000808 mask = count - 1;
809 /* mask = roundup_pow_of_two(count) - 1;
810 * without overflows...
811 */
812 while ((mask | (mask >> 1)) != mask)
813 mask |= (mask >> 1);
814 /* On 64 bit arches, must check mask fits in table->mask (u32),
stephen hemminger8e3bff92013-12-08 12:15:44 -0800815 * and on 32bit arches, must check
816 * RPS_DEV_FLOW_TABLE_SIZE(mask + 1) doesn't overflow.
Eric Dumazet60b778c2011-12-24 06:56:49 +0000817 */
818#if BITS_PER_LONG > 32
819 if (mask > (unsigned long)(u32)mask)
Xi Wanga0a129f2011-12-22 13:35:22 +0000820 return -EINVAL;
Eric Dumazet60b778c2011-12-24 06:56:49 +0000821#else
822 if (mask > (ULONG_MAX - RPS_DEV_FLOW_TABLE_SIZE(1))
Xi Wanga0a129f2011-12-22 13:35:22 +0000823 / sizeof(struct rps_dev_flow)) {
Tom Herbertfec5e652010-04-16 16:01:27 -0700824 /* Enforce a limit to prevent overflow */
825 return -EINVAL;
826 }
Eric Dumazet60b778c2011-12-24 06:56:49 +0000827#endif
828 table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(mask + 1));
Tom Herbertfec5e652010-04-16 16:01:27 -0700829 if (!table)
830 return -ENOMEM;
831
Eric Dumazet60b778c2011-12-24 06:56:49 +0000832 table->mask = mask;
833 for (count = 0; count <= mask; count++)
834 table->flows[count].cpu = RPS_NO_CPU;
stephen hemminger6648c652017-08-18 13:46:28 -0700835 } else {
Tom Herbertfec5e652010-04-16 16:01:27 -0700836 table = NULL;
stephen hemminger6648c652017-08-18 13:46:28 -0700837 }
Tom Herbertfec5e652010-04-16 16:01:27 -0700838
839 spin_lock(&rps_dev_flow_lock);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000840 old_table = rcu_dereference_protected(queue->rps_flow_table,
841 lockdep_is_held(&rps_dev_flow_lock));
Tom Herbertfec5e652010-04-16 16:01:27 -0700842 rcu_assign_pointer(queue->rps_flow_table, table);
843 spin_unlock(&rps_dev_flow_lock);
844
845 if (old_table)
846 call_rcu(&old_table->rcu, rps_dev_flow_table_release);
847
848 return len;
849}
850
stephen hemminger667e4272017-08-18 13:46:27 -0700851static struct rx_queue_attribute rps_cpus_attribute __ro_after_init
Joe Perchesd6444062018-03-23 15:54:38 -0700852 = __ATTR(rps_cpus, 0644, show_rps_map, store_rps_map);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000853
stephen hemminger667e4272017-08-18 13:46:27 -0700854static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute __ro_after_init
Joe Perchesd6444062018-03-23 15:54:38 -0700855 = __ATTR(rps_flow_cnt, 0644,
stephen hemminger667e4272017-08-18 13:46:27 -0700856 show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt);
Michael Daltona953be52014-01-16 22:23:28 -0800857#endif /* CONFIG_RPS */
Tom Herbertfec5e652010-04-16 16:01:27 -0700858
stephen hemminger667e4272017-08-18 13:46:27 -0700859static struct attribute *rx_queue_default_attrs[] __ro_after_init = {
Michael Daltona953be52014-01-16 22:23:28 -0800860#ifdef CONFIG_RPS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000861 &rps_cpus_attribute.attr,
Tom Herbertfec5e652010-04-16 16:01:27 -0700862 &rps_dev_flow_table_cnt_attribute.attr,
Michael Daltona953be52014-01-16 22:23:28 -0800863#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000864 NULL
865};
866
867static void rx_queue_release(struct kobject *kobj)
868{
869 struct netdev_rx_queue *queue = to_rx_queue(kobj);
Michael Daltona953be52014-01-16 22:23:28 -0800870#ifdef CONFIG_RPS
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000871 struct rps_map *map;
872 struct rps_dev_flow_table *flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000873
Eric Dumazet33d480c2011-08-11 19:30:52 +0000874 map = rcu_dereference_protected(queue->rps_map, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000875 if (map) {
876 RCU_INIT_POINTER(queue->rps_map, NULL);
Lai Jiangshanf6f80232011-03-18 12:01:31 +0800877 kfree_rcu(map, rcu);
John Fastabend9ea19482010-11-16 06:31:39 +0000878 }
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000879
Eric Dumazet33d480c2011-08-11 19:30:52 +0000880 flow_table = rcu_dereference_protected(queue->rps_flow_table, 1);
John Fastabend9ea19482010-11-16 06:31:39 +0000881 if (flow_table) {
882 RCU_INIT_POINTER(queue->rps_flow_table, NULL);
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +0000883 call_rcu(&flow_table->rcu, rps_dev_flow_table_release);
John Fastabend9ea19482010-11-16 06:31:39 +0000884 }
Michael Daltona953be52014-01-16 22:23:28 -0800885#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000886
John Fastabend9ea19482010-11-16 06:31:39 +0000887 memset(kobj, 0, sizeof(*kobj));
Tom Herbertfe822242010-11-09 10:47:38 +0000888 dev_put(queue->dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +0000889}
890
Weilong Chen82ef3d52014-01-16 17:24:31 +0800891static const void *rx_queue_namespace(struct kobject *kobj)
892{
893 struct netdev_rx_queue *queue = to_rx_queue(kobj);
894 struct device *dev = &queue->dev->dev;
895 const void *ns = NULL;
896
897 if (dev->class && dev->class->ns_type)
898 ns = dev->class->namespace(dev);
899
900 return ns;
901}
902
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +0000903static void rx_queue_get_ownership(struct kobject *kobj,
904 kuid_t *uid, kgid_t *gid)
905{
906 const struct net *net = rx_queue_namespace(kobj);
907
908 net_ns_get_ownership(net, uid, gid);
909}
910
stephen hemminger667e4272017-08-18 13:46:27 -0700911static struct kobj_type rx_queue_ktype __ro_after_init = {
Tom Herbert0a9627f2010-03-16 08:03:29 +0000912 .sysfs_ops = &rx_queue_sysfs_ops,
913 .release = rx_queue_release,
914 .default_attrs = rx_queue_default_attrs,
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +0000915 .namespace = rx_queue_namespace,
916 .get_ownership = rx_queue_get_ownership,
Tom Herbert0a9627f2010-03-16 08:03:29 +0000917};
918
WANG Cong6b53daf2014-07-23 16:09:10 -0700919static int rx_queue_add_kobject(struct net_device *dev, int index)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000920{
WANG Cong6b53daf2014-07-23 16:09:10 -0700921 struct netdev_rx_queue *queue = dev->_rx + index;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000922 struct kobject *kobj = &queue->kobj;
923 int error = 0;
924
WANG Cong6b53daf2014-07-23 16:09:10 -0700925 kobj->kset = dev->queues_kset;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000926 error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL,
stephen hemminger6648c652017-08-18 13:46:28 -0700927 "rx-%u", index);
Michael Daltona953be52014-01-16 22:23:28 -0800928 if (error)
stephen hemmingerd0d66832017-08-18 13:46:19 -0700929 return error;
Michael Daltona953be52014-01-16 22:23:28 -0800930
YueHaibinga3e23f72019-03-19 10:16:53 +0800931 dev_hold(queue->dev);
932
WANG Cong6b53daf2014-07-23 16:09:10 -0700933 if (dev->sysfs_rx_queue_group) {
934 error = sysfs_create_group(kobj, dev->sysfs_rx_queue_group);
stephen hemmingerd0d66832017-08-18 13:46:19 -0700935 if (error) {
936 kobject_put(kobj);
937 return error;
938 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000939 }
940
941 kobject_uevent(kobj, KOBJ_ADD);
942
943 return error;
944}
Paul Bolle80dd6ea2014-02-09 14:07:11 +0100945#endif /* CONFIG_SYSFS */
Tom Herbert0a9627f2010-03-16 08:03:29 +0000946
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000947int
WANG Cong6b53daf2014-07-23 16:09:10 -0700948net_rx_queue_update_kobjects(struct net_device *dev, int old_num, int new_num)
Tom Herbert0a9627f2010-03-16 08:03:29 +0000949{
Michael Daltona953be52014-01-16 22:23:28 -0800950#ifdef CONFIG_SYSFS
Tom Herbert0a9627f2010-03-16 08:03:29 +0000951 int i;
952 int error = 0;
953
Michael Daltona953be52014-01-16 22:23:28 -0800954#ifndef CONFIG_RPS
WANG Cong6b53daf2014-07-23 16:09:10 -0700955 if (!dev->sysfs_rx_queue_group)
Michael Daltona953be52014-01-16 22:23:28 -0800956 return 0;
957#endif
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000958 for (i = old_num; i < new_num; i++) {
WANG Cong6b53daf2014-07-23 16:09:10 -0700959 error = rx_queue_add_kobject(dev, i);
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000960 if (error) {
961 new_num = old_num;
Tom Herbert0a9627f2010-03-16 08:03:29 +0000962 break;
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000963 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000964 }
965
Michael Daltona953be52014-01-16 22:23:28 -0800966 while (--i >= new_num) {
Andrey Vagin002d8a12016-10-24 19:09:53 -0700967 struct kobject *kobj = &dev->_rx[i].kobj;
968
Kirill Tkhai273c28b2018-01-12 18:28:31 +0300969 if (!refcount_read(&dev_net(dev)->count))
Andrey Vagin002d8a12016-10-24 19:09:53 -0700970 kobj->uevent_suppress = 1;
WANG Cong6b53daf2014-07-23 16:09:10 -0700971 if (dev->sysfs_rx_queue_group)
Andrey Vagin002d8a12016-10-24 19:09:53 -0700972 sysfs_remove_group(kobj, dev->sysfs_rx_queue_group);
973 kobject_put(kobj);
Michael Daltona953be52014-01-16 22:23:28 -0800974 }
Tom Herbert0a9627f2010-03-16 08:03:29 +0000975
976 return error;
Tom Herbertbf264142010-11-26 08:36:09 +0000977#else
978 return 0;
979#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +0000980}
981
david decotignyccf5ff62011-11-16 12:15:10 +0000982#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +0000983/*
984 * netdev_queue sysfs structures and functions.
985 */
986struct netdev_queue_attribute {
987 struct attribute attr;
stephen hemminger718ad682017-08-18 13:46:24 -0700988 ssize_t (*show)(struct netdev_queue *queue, char *buf);
Tom Herbert1d24eb42010-11-21 13:17:27 +0000989 ssize_t (*store)(struct netdev_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -0700990 const char *buf, size_t len);
Tom Herbert1d24eb42010-11-21 13:17:27 +0000991};
stephen hemminger6648c652017-08-18 13:46:28 -0700992#define to_netdev_queue_attr(_attr) \
993 container_of(_attr, struct netdev_queue_attribute, attr)
Tom Herbert1d24eb42010-11-21 13:17:27 +0000994
995#define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj)
996
997static ssize_t netdev_queue_attr_show(struct kobject *kobj,
998 struct attribute *attr, char *buf)
Ben Hutchings62fe0b42010-09-27 08:24:33 +0000999{
stephen hemminger667e4272017-08-18 13:46:27 -07001000 const struct netdev_queue_attribute *attribute
1001 = to_netdev_queue_attr(attr);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001002 struct netdev_queue *queue = to_netdev_queue(kobj);
1003
1004 if (!attribute->show)
1005 return -EIO;
1006
stephen hemminger718ad682017-08-18 13:46:24 -07001007 return attribute->show(queue, buf);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001008}
1009
1010static ssize_t netdev_queue_attr_store(struct kobject *kobj,
1011 struct attribute *attr,
1012 const char *buf, size_t count)
1013{
stephen hemminger667e4272017-08-18 13:46:27 -07001014 const struct netdev_queue_attribute *attribute
1015 = to_netdev_queue_attr(attr);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001016 struct netdev_queue *queue = to_netdev_queue(kobj);
1017
1018 if (!attribute->store)
1019 return -EIO;
1020
stephen hemminger718ad682017-08-18 13:46:24 -07001021 return attribute->store(queue, buf, count);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001022}
1023
1024static const struct sysfs_ops netdev_queue_sysfs_ops = {
1025 .show = netdev_queue_attr_show,
1026 .store = netdev_queue_attr_store,
1027};
1028
stephen hemminger2b9c7582017-08-18 13:46:26 -07001029static ssize_t tx_timeout_show(struct netdev_queue *queue, char *buf)
david decotignyccf5ff62011-11-16 12:15:10 +00001030{
1031 unsigned long trans_timeout;
1032
1033 spin_lock_irq(&queue->_xmit_lock);
1034 trans_timeout = queue->trans_timeout;
1035 spin_unlock_irq(&queue->_xmit_lock);
1036
1037 return sprintf(buf, "%lu", trans_timeout);
1038}
1039
Thadeu Lima de Souza Cascardoc4047f52015-09-15 18:28:00 -03001040static unsigned int get_netdev_queue_index(struct netdev_queue *queue)
John Fastabend822b3b22015-03-18 14:57:33 +02001041{
1042 struct net_device *dev = queue->dev;
Thadeu Lima de Souza Cascardoc4047f52015-09-15 18:28:00 -03001043 unsigned int i;
John Fastabend822b3b22015-03-18 14:57:33 +02001044
Thadeu Lima de Souza Cascardoc4047f52015-09-15 18:28:00 -03001045 i = queue - dev->_tx;
John Fastabend822b3b22015-03-18 14:57:33 +02001046 BUG_ON(i >= dev->num_tx_queues);
1047
1048 return i;
1049}
1050
stephen hemminger2b9c7582017-08-18 13:46:26 -07001051static ssize_t traffic_class_show(struct netdev_queue *queue,
Alexander Duyck8d059b02016-10-28 11:43:49 -04001052 char *buf)
1053{
1054 struct net_device *dev = queue->dev;
Alexander Duyckd7be9772018-07-09 12:19:32 -04001055 int index;
1056 int tc;
Alexander Duyck8d059b02016-10-28 11:43:49 -04001057
Alexander Duyckd7be9772018-07-09 12:19:32 -04001058 if (!netif_is_multiqueue(dev))
1059 return -ENOENT;
1060
1061 index = get_netdev_queue_index(queue);
Alexander Duyckffcfe252018-07-09 12:19:38 -04001062
1063 /* If queue belongs to subordinate dev use its TC mapping */
1064 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
1065
Alexander Duyckd7be9772018-07-09 12:19:32 -04001066 tc = netdev_txq_to_tc(dev, index);
Alexander Duyck8d059b02016-10-28 11:43:49 -04001067 if (tc < 0)
1068 return -EINVAL;
1069
Alexander Duyckffcfe252018-07-09 12:19:38 -04001070 /* We can report the traffic class one of two ways:
1071 * Subordinate device traffic classes are reported with the traffic
1072 * class first, and then the subordinate class so for example TC0 on
1073 * subordinate device 2 will be reported as "0-2". If the queue
1074 * belongs to the root device it will be reported with just the
1075 * traffic class, so just "0" for TC 0 for example.
1076 */
1077 return dev->num_tc < 0 ? sprintf(buf, "%u%d\n", tc, dev->num_tc) :
1078 sprintf(buf, "%u\n", tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04001079}
1080
1081#ifdef CONFIG_XPS
stephen hemminger2b9c7582017-08-18 13:46:26 -07001082static ssize_t tx_maxrate_show(struct netdev_queue *queue,
John Fastabend822b3b22015-03-18 14:57:33 +02001083 char *buf)
1084{
1085 return sprintf(buf, "%lu\n", queue->tx_maxrate);
1086}
1087
stephen hemminger2b9c7582017-08-18 13:46:26 -07001088static ssize_t tx_maxrate_store(struct netdev_queue *queue,
1089 const char *buf, size_t len)
John Fastabend822b3b22015-03-18 14:57:33 +02001090{
1091 struct net_device *dev = queue->dev;
1092 int err, index = get_netdev_queue_index(queue);
1093 u32 rate = 0;
1094
Tyler Hicks3033fce2018-07-20 21:56:51 +00001095 if (!capable(CAP_NET_ADMIN))
1096 return -EPERM;
1097
John Fastabend822b3b22015-03-18 14:57:33 +02001098 err = kstrtou32(buf, 10, &rate);
1099 if (err < 0)
1100 return err;
1101
1102 if (!rtnl_trylock())
1103 return restart_syscall();
1104
1105 err = -EOPNOTSUPP;
1106 if (dev->netdev_ops->ndo_set_tx_maxrate)
1107 err = dev->netdev_ops->ndo_set_tx_maxrate(dev, index, rate);
1108
1109 rtnl_unlock();
1110 if (!err) {
1111 queue->tx_maxrate = rate;
1112 return len;
1113 }
1114 return err;
1115}
1116
stephen hemminger2b9c7582017-08-18 13:46:26 -07001117static struct netdev_queue_attribute queue_tx_maxrate __ro_after_init
1118 = __ATTR_RW(tx_maxrate);
John Fastabend822b3b22015-03-18 14:57:33 +02001119#endif
1120
stephen hemminger2b9c7582017-08-18 13:46:26 -07001121static struct netdev_queue_attribute queue_trans_timeout __ro_after_init
1122 = __ATTR_RO(tx_timeout);
david decotignyccf5ff62011-11-16 12:15:10 +00001123
stephen hemminger2b9c7582017-08-18 13:46:26 -07001124static struct netdev_queue_attribute queue_traffic_class __ro_after_init
1125 = __ATTR_RO(traffic_class);
Alexander Duyck8d059b02016-10-28 11:43:49 -04001126
Tom Herbert114cf582011-11-28 16:33:09 +00001127#ifdef CONFIG_BQL
1128/*
1129 * Byte queue limits sysfs structures and functions.
1130 */
1131static ssize_t bql_show(char *buf, unsigned int value)
1132{
1133 return sprintf(buf, "%u\n", value);
1134}
1135
1136static ssize_t bql_set(const char *buf, const size_t count,
1137 unsigned int *pvalue)
1138{
1139 unsigned int value;
1140 int err;
1141
stephen hemminger6648c652017-08-18 13:46:28 -07001142 if (!strcmp(buf, "max") || !strcmp(buf, "max\n")) {
Tom Herbert114cf582011-11-28 16:33:09 +00001143 value = DQL_MAX_LIMIT;
stephen hemminger6648c652017-08-18 13:46:28 -07001144 } else {
Tom Herbert114cf582011-11-28 16:33:09 +00001145 err = kstrtouint(buf, 10, &value);
1146 if (err < 0)
1147 return err;
1148 if (value > DQL_MAX_LIMIT)
1149 return -EINVAL;
1150 }
1151
1152 *pvalue = value;
1153
1154 return count;
1155}
1156
1157static ssize_t bql_show_hold_time(struct netdev_queue *queue,
Tom Herbert114cf582011-11-28 16:33:09 +00001158 char *buf)
1159{
1160 struct dql *dql = &queue->dql;
1161
1162 return sprintf(buf, "%u\n", jiffies_to_msecs(dql->slack_hold_time));
1163}
1164
1165static ssize_t bql_set_hold_time(struct netdev_queue *queue,
Tom Herbert114cf582011-11-28 16:33:09 +00001166 const char *buf, size_t len)
1167{
1168 struct dql *dql = &queue->dql;
Eric Dumazet95c96172012-04-15 05:58:06 +00001169 unsigned int value;
Tom Herbert114cf582011-11-28 16:33:09 +00001170 int err;
1171
1172 err = kstrtouint(buf, 10, &value);
1173 if (err < 0)
1174 return err;
1175
1176 dql->slack_hold_time = msecs_to_jiffies(value);
1177
1178 return len;
1179}
1180
stephen hemminger170c6582017-08-18 13:46:25 -07001181static struct netdev_queue_attribute bql_hold_time_attribute __ro_after_init
Joe Perchesd6444062018-03-23 15:54:38 -07001182 = __ATTR(hold_time, 0644,
stephen hemminger170c6582017-08-18 13:46:25 -07001183 bql_show_hold_time, bql_set_hold_time);
Tom Herbert114cf582011-11-28 16:33:09 +00001184
1185static ssize_t bql_show_inflight(struct netdev_queue *queue,
Tom Herbert114cf582011-11-28 16:33:09 +00001186 char *buf)
1187{
1188 struct dql *dql = &queue->dql;
1189
1190 return sprintf(buf, "%u\n", dql->num_queued - dql->num_completed);
1191}
1192
stephen hemminger170c6582017-08-18 13:46:25 -07001193static struct netdev_queue_attribute bql_inflight_attribute __ro_after_init =
Joe Perchesd6444062018-03-23 15:54:38 -07001194 __ATTR(inflight, 0444, bql_show_inflight, NULL);
Tom Herbert114cf582011-11-28 16:33:09 +00001195
1196#define BQL_ATTR(NAME, FIELD) \
1197static ssize_t bql_show_ ## NAME(struct netdev_queue *queue, \
Tom Herbert114cf582011-11-28 16:33:09 +00001198 char *buf) \
1199{ \
1200 return bql_show(buf, queue->dql.FIELD); \
1201} \
1202 \
1203static ssize_t bql_set_ ## NAME(struct netdev_queue *queue, \
Tom Herbert114cf582011-11-28 16:33:09 +00001204 const char *buf, size_t len) \
1205{ \
1206 return bql_set(buf, len, &queue->dql.FIELD); \
1207} \
1208 \
stephen hemminger170c6582017-08-18 13:46:25 -07001209static struct netdev_queue_attribute bql_ ## NAME ## _attribute __ro_after_init \
Joe Perchesd6444062018-03-23 15:54:38 -07001210 = __ATTR(NAME, 0644, \
stephen hemminger170c6582017-08-18 13:46:25 -07001211 bql_show_ ## NAME, bql_set_ ## NAME)
Tom Herbert114cf582011-11-28 16:33:09 +00001212
stephen hemminger170c6582017-08-18 13:46:25 -07001213BQL_ATTR(limit, limit);
1214BQL_ATTR(limit_max, max_limit);
1215BQL_ATTR(limit_min, min_limit);
Tom Herbert114cf582011-11-28 16:33:09 +00001216
stephen hemminger170c6582017-08-18 13:46:25 -07001217static struct attribute *dql_attrs[] __ro_after_init = {
Tom Herbert114cf582011-11-28 16:33:09 +00001218 &bql_limit_attribute.attr,
1219 &bql_limit_max_attribute.attr,
1220 &bql_limit_min_attribute.attr,
1221 &bql_hold_time_attribute.attr,
1222 &bql_inflight_attribute.attr,
1223 NULL
1224};
1225
Arvind Yadav38ef00c2017-06-29 16:31:26 +05301226static const struct attribute_group dql_group = {
Tom Herbert114cf582011-11-28 16:33:09 +00001227 .name = "byte_queue_limits",
1228 .attrs = dql_attrs,
1229};
1230#endif /* CONFIG_BQL */
1231
david decotignyccf5ff62011-11-16 12:15:10 +00001232#ifdef CONFIG_XPS
stephen hemminger2b9c7582017-08-18 13:46:26 -07001233static ssize_t xps_cpus_show(struct netdev_queue *queue,
1234 char *buf)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001235{
1236 struct net_device *dev = queue->dev;
Alexander Duyck184c4492016-10-28 11:50:13 -04001237 int cpu, len, num_tc = 1, tc = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001238 struct xps_dev_maps *dev_maps;
1239 cpumask_var_t mask;
1240 unsigned long index;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001241
Alexander Duyckd7be9772018-07-09 12:19:32 -04001242 if (!netif_is_multiqueue(dev))
1243 return -ENOENT;
1244
Tom Herbert1d24eb42010-11-21 13:17:27 +00001245 index = get_netdev_queue_index(queue);
1246
Alexander Duyck184c4492016-10-28 11:50:13 -04001247 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04001248 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04001249 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04001250 if (num_tc < 0)
1251 return -EINVAL;
1252
1253 /* If queue belongs to subordinate dev use its map */
1254 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
1255
Alexander Duyck184c4492016-10-28 11:50:13 -04001256 tc = netdev_txq_to_tc(dev, index);
1257 if (tc < 0)
1258 return -EINVAL;
1259 }
1260
Alexander Duyck664088f2018-05-31 15:59:46 -04001261 if (!zalloc_cpumask_var(&mask, GFP_KERNEL))
1262 return -ENOMEM;
1263
Tom Herbert1d24eb42010-11-21 13:17:27 +00001264 rcu_read_lock();
Amritha Nambiar80d19662018-06-29 21:26:41 -07001265 dev_maps = rcu_dereference(dev->xps_cpus_map);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001266 if (dev_maps) {
Alexander Duyck184c4492016-10-28 11:50:13 -04001267 for_each_possible_cpu(cpu) {
1268 int i, tci = cpu * num_tc + tc;
1269 struct xps_map *map;
1270
Amritha Nambiar80d19662018-06-29 21:26:41 -07001271 map = rcu_dereference(dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04001272 if (!map)
1273 continue;
1274
1275 for (i = map->len; i--;) {
1276 if (map->queues[i] == index) {
1277 cpumask_set_cpu(cpu, mask);
1278 break;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001279 }
1280 }
1281 }
1282 }
1283 rcu_read_unlock();
1284
Tejun Heof0906822015-02-13 14:37:42 -08001285 len = snprintf(buf, PAGE_SIZE, "%*pb\n", cpumask_pr_args(mask));
Tom Herbert1d24eb42010-11-21 13:17:27 +00001286 free_cpumask_var(mask);
Tejun Heof0906822015-02-13 14:37:42 -08001287 return len < PAGE_SIZE ? len : -EINVAL;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001288}
1289
stephen hemminger2b9c7582017-08-18 13:46:26 -07001290static ssize_t xps_cpus_store(struct netdev_queue *queue,
1291 const char *buf, size_t len)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001292{
1293 struct net_device *dev = queue->dev;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001294 unsigned long index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001295 cpumask_var_t mask;
1296 int err;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001297
Alexander Duyckd7be9772018-07-09 12:19:32 -04001298 if (!netif_is_multiqueue(dev))
1299 return -ENOENT;
1300
Tom Herbert1d24eb42010-11-21 13:17:27 +00001301 if (!capable(CAP_NET_ADMIN))
1302 return -EPERM;
1303
1304 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
1305 return -ENOMEM;
1306
1307 index = get_netdev_queue_index(queue);
1308
1309 err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits);
1310 if (err) {
1311 free_cpumask_var(mask);
1312 return err;
1313 }
1314
Alexander Duyck537c00d2013-01-10 08:57:02 +00001315 err = netif_set_xps_queue(dev, mask, index);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001316
1317 free_cpumask_var(mask);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001318
Alexander Duyck537c00d2013-01-10 08:57:02 +00001319 return err ? : len;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001320}
1321
stephen hemminger2b9c7582017-08-18 13:46:26 -07001322static struct netdev_queue_attribute xps_cpus_attribute __ro_after_init
1323 = __ATTR_RW(xps_cpus);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001324
1325static ssize_t xps_rxqs_show(struct netdev_queue *queue, char *buf)
1326{
1327 struct net_device *dev = queue->dev;
1328 struct xps_dev_maps *dev_maps;
1329 unsigned long *mask, index;
1330 int j, len, num_tc = 1, tc = 0;
1331
1332 index = get_netdev_queue_index(queue);
1333
1334 if (dev->num_tc) {
1335 num_tc = dev->num_tc;
1336 tc = netdev_txq_to_tc(dev, index);
1337 if (tc < 0)
1338 return -EINVAL;
1339 }
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001340 mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001341 if (!mask)
1342 return -ENOMEM;
1343
1344 rcu_read_lock();
1345 dev_maps = rcu_dereference(dev->xps_rxqs_map);
1346 if (!dev_maps)
1347 goto out_no_maps;
1348
1349 for (j = -1; j = netif_attrmask_next(j, NULL, dev->num_rx_queues),
1350 j < dev->num_rx_queues;) {
1351 int i, tci = j * num_tc + tc;
1352 struct xps_map *map;
1353
1354 map = rcu_dereference(dev_maps->attr_map[tci]);
1355 if (!map)
1356 continue;
1357
1358 for (i = map->len; i--;) {
1359 if (map->queues[i] == index) {
1360 set_bit(j, mask);
1361 break;
1362 }
1363 }
1364 }
1365out_no_maps:
1366 rcu_read_unlock();
1367
1368 len = bitmap_print_to_pagebuf(false, buf, mask, dev->num_rx_queues);
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001369 bitmap_free(mask);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001370
1371 return len < PAGE_SIZE ? len : -EINVAL;
1372}
1373
1374static ssize_t xps_rxqs_store(struct netdev_queue *queue, const char *buf,
1375 size_t len)
1376{
1377 struct net_device *dev = queue->dev;
1378 struct net *net = dev_net(dev);
1379 unsigned long *mask, index;
1380 int err;
1381
1382 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
1383 return -EPERM;
1384
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001385 mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001386 if (!mask)
1387 return -ENOMEM;
1388
1389 index = get_netdev_queue_index(queue);
1390
1391 err = bitmap_parse(buf, len, mask, dev->num_rx_queues);
1392 if (err) {
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001393 bitmap_free(mask);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001394 return err;
1395 }
1396
Andrei Vagin4d99f662018-08-08 20:07:35 -07001397 cpus_read_lock();
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001398 err = __netif_set_xps_queue(dev, mask, index, true);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001399 cpus_read_unlock();
1400
Andy Shevchenko29ca1c52019-03-04 11:48:56 +02001401 bitmap_free(mask);
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001402 return err ? : len;
1403}
1404
1405static struct netdev_queue_attribute xps_rxqs_attribute __ro_after_init
1406 = __ATTR_RW(xps_rxqs);
david decotignyccf5ff62011-11-16 12:15:10 +00001407#endif /* CONFIG_XPS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001408
stephen hemminger2b9c7582017-08-18 13:46:26 -07001409static struct attribute *netdev_queue_default_attrs[] __ro_after_init = {
david decotignyccf5ff62011-11-16 12:15:10 +00001410 &queue_trans_timeout.attr,
Alexander Duyck8d059b02016-10-28 11:43:49 -04001411 &queue_traffic_class.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001412#ifdef CONFIG_XPS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001413 &xps_cpus_attribute.attr,
Amritha Nambiar8af2c062018-06-29 21:27:07 -07001414 &xps_rxqs_attribute.attr,
John Fastabend822b3b22015-03-18 14:57:33 +02001415 &queue_tx_maxrate.attr,
david decotignyccf5ff62011-11-16 12:15:10 +00001416#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001417 NULL
1418};
1419
1420static void netdev_queue_release(struct kobject *kobj)
1421{
1422 struct netdev_queue *queue = to_netdev_queue(kobj);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001423
Tom Herbert1d24eb42010-11-21 13:17:27 +00001424 memset(kobj, 0, sizeof(*kobj));
1425 dev_put(queue->dev);
1426}
1427
Weilong Chen82ef3d52014-01-16 17:24:31 +08001428static const void *netdev_queue_namespace(struct kobject *kobj)
1429{
1430 struct netdev_queue *queue = to_netdev_queue(kobj);
1431 struct device *dev = &queue->dev->dev;
1432 const void *ns = NULL;
1433
1434 if (dev->class && dev->class->ns_type)
1435 ns = dev->class->namespace(dev);
1436
1437 return ns;
1438}
1439
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001440static void netdev_queue_get_ownership(struct kobject *kobj,
1441 kuid_t *uid, kgid_t *gid)
1442{
1443 const struct net *net = netdev_queue_namespace(kobj);
1444
1445 net_ns_get_ownership(net, uid, gid);
1446}
1447
stephen hemminger2b9c7582017-08-18 13:46:26 -07001448static struct kobj_type netdev_queue_ktype __ro_after_init = {
Tom Herbert1d24eb42010-11-21 13:17:27 +00001449 .sysfs_ops = &netdev_queue_sysfs_ops,
1450 .release = netdev_queue_release,
1451 .default_attrs = netdev_queue_default_attrs,
Weilong Chen82ef3d52014-01-16 17:24:31 +08001452 .namespace = netdev_queue_namespace,
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001453 .get_ownership = netdev_queue_get_ownership,
Tom Herbert1d24eb42010-11-21 13:17:27 +00001454};
1455
WANG Cong6b53daf2014-07-23 16:09:10 -07001456static int netdev_queue_add_kobject(struct net_device *dev, int index)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001457{
WANG Cong6b53daf2014-07-23 16:09:10 -07001458 struct netdev_queue *queue = dev->_tx + index;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001459 struct kobject *kobj = &queue->kobj;
1460 int error = 0;
1461
WANG Cong6b53daf2014-07-23 16:09:10 -07001462 kobj->kset = dev->queues_kset;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001463 error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL,
stephen hemminger6648c652017-08-18 13:46:28 -07001464 "tx-%u", index);
Tom Herbert114cf582011-11-28 16:33:09 +00001465 if (error)
stephen hemmingerd0d66832017-08-18 13:46:19 -07001466 return error;
Tom Herbert114cf582011-11-28 16:33:09 +00001467
YueHaibinga3e23f72019-03-19 10:16:53 +08001468 dev_hold(queue->dev);
1469
Tom Herbert114cf582011-11-28 16:33:09 +00001470#ifdef CONFIG_BQL
1471 error = sysfs_create_group(kobj, &dql_group);
stephen hemmingerd0d66832017-08-18 13:46:19 -07001472 if (error) {
1473 kobject_put(kobj);
1474 return error;
1475 }
Tom Herbert114cf582011-11-28 16:33:09 +00001476#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001477
1478 kobject_uevent(kobj, KOBJ_ADD);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001479
Tom Herbert114cf582011-11-28 16:33:09 +00001480 return 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001481}
david decotignyccf5ff62011-11-16 12:15:10 +00001482#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001483
1484int
WANG Cong6b53daf2014-07-23 16:09:10 -07001485netdev_queue_update_kobjects(struct net_device *dev, int old_num, int new_num)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001486{
david decotignyccf5ff62011-11-16 12:15:10 +00001487#ifdef CONFIG_SYSFS
Tom Herbert1d24eb42010-11-21 13:17:27 +00001488 int i;
1489 int error = 0;
1490
1491 for (i = old_num; i < new_num; i++) {
WANG Cong6b53daf2014-07-23 16:09:10 -07001492 error = netdev_queue_add_kobject(dev, i);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001493 if (error) {
1494 new_num = old_num;
1495 break;
1496 }
1497 }
1498
Tom Herbert114cf582011-11-28 16:33:09 +00001499 while (--i >= new_num) {
WANG Cong6b53daf2014-07-23 16:09:10 -07001500 struct netdev_queue *queue = dev->_tx + i;
Tom Herbert114cf582011-11-28 16:33:09 +00001501
Kirill Tkhai273c28b2018-01-12 18:28:31 +03001502 if (!refcount_read(&dev_net(dev)->count))
Andrey Vagin002d8a12016-10-24 19:09:53 -07001503 queue->kobj.uevent_suppress = 1;
Tom Herbert114cf582011-11-28 16:33:09 +00001504#ifdef CONFIG_BQL
1505 sysfs_remove_group(&queue->kobj, &dql_group);
1506#endif
1507 kobject_put(&queue->kobj);
1508 }
Tom Herbert1d24eb42010-11-21 13:17:27 +00001509
1510 return error;
Tom Herbertbf264142010-11-26 08:36:09 +00001511#else
1512 return 0;
david decotignyccf5ff62011-11-16 12:15:10 +00001513#endif /* CONFIG_SYSFS */
Tom Herbert1d24eb42010-11-21 13:17:27 +00001514}
1515
WANG Cong6b53daf2014-07-23 16:09:10 -07001516static int register_queue_kobjects(struct net_device *dev)
Tom Herbert1d24eb42010-11-21 13:17:27 +00001517{
Tom Herbertbf264142010-11-26 08:36:09 +00001518 int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001519
david decotignyccf5ff62011-11-16 12:15:10 +00001520#ifdef CONFIG_SYSFS
WANG Cong6b53daf2014-07-23 16:09:10 -07001521 dev->queues_kset = kset_create_and_add("queues",
stephen hemminger6648c652017-08-18 13:46:28 -07001522 NULL, &dev->dev.kobj);
WANG Cong6b53daf2014-07-23 16:09:10 -07001523 if (!dev->queues_kset)
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001524 return -ENOMEM;
WANG Cong6b53daf2014-07-23 16:09:10 -07001525 real_rx = dev->real_num_rx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001526#endif
WANG Cong6b53daf2014-07-23 16:09:10 -07001527 real_tx = dev->real_num_tx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001528
WANG Cong6b53daf2014-07-23 16:09:10 -07001529 error = net_rx_queue_update_kobjects(dev, 0, real_rx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001530 if (error)
1531 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001532 rxq = real_rx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001533
WANG Cong6b53daf2014-07-23 16:09:10 -07001534 error = netdev_queue_update_kobjects(dev, 0, real_tx);
Tom Herbert1d24eb42010-11-21 13:17:27 +00001535 if (error)
1536 goto error;
Tom Herbertbf264142010-11-26 08:36:09 +00001537 txq = real_tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00001538
1539 return 0;
1540
1541error:
WANG Cong6b53daf2014-07-23 16:09:10 -07001542 netdev_queue_update_kobjects(dev, txq, 0);
1543 net_rx_queue_update_kobjects(dev, rxq, 0);
YueHaibing895a5e92019-03-02 10:34:55 +08001544#ifdef CONFIG_SYSFS
1545 kset_unregister(dev->queues_kset);
1546#endif
Tom Herbert1d24eb42010-11-21 13:17:27 +00001547 return error;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00001548}
1549
WANG Cong6b53daf2014-07-23 16:09:10 -07001550static void remove_queue_kobjects(struct net_device *dev)
Tom Herbert0a9627f2010-03-16 08:03:29 +00001551{
Tom Herbertbf264142010-11-26 08:36:09 +00001552 int real_rx = 0, real_tx = 0;
1553
Michael Daltona953be52014-01-16 22:23:28 -08001554#ifdef CONFIG_SYSFS
WANG Cong6b53daf2014-07-23 16:09:10 -07001555 real_rx = dev->real_num_rx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001556#endif
WANG Cong6b53daf2014-07-23 16:09:10 -07001557 real_tx = dev->real_num_tx_queues;
Tom Herbertbf264142010-11-26 08:36:09 +00001558
WANG Cong6b53daf2014-07-23 16:09:10 -07001559 net_rx_queue_update_kobjects(dev, real_rx, 0);
1560 netdev_queue_update_kobjects(dev, real_tx, 0);
david decotignyccf5ff62011-11-16 12:15:10 +00001561#ifdef CONFIG_SYSFS
WANG Cong6b53daf2014-07-23 16:09:10 -07001562 kset_unregister(dev->queues_kset);
Tom Herbertbf264142010-11-26 08:36:09 +00001563#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00001564}
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001565
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001566static bool net_current_may_mount(void)
1567{
1568 struct net *net = current->nsproxy->net_ns;
1569
1570 return ns_capable(net->user_ns, CAP_SYS_ADMIN);
1571}
1572
Al Viroa685e082011-06-08 21:13:01 -04001573static void *net_grab_current_ns(void)
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001574{
Al Viroa685e082011-06-08 21:13:01 -04001575 struct net *ns = current->nsproxy->net_ns;
1576#ifdef CONFIG_NET_NS
1577 if (ns)
Reshetova, Elenac122e142017-06-30 13:08:08 +03001578 refcount_inc(&ns->passive);
Al Viroa685e082011-06-08 21:13:01 -04001579#endif
1580 return ns;
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001581}
1582
1583static const void *net_initial_ns(void)
1584{
1585 return &init_net;
1586}
1587
1588static const void *net_netlink_ns(struct sock *sk)
1589{
1590 return sock_net(sk);
1591}
1592
stephen hemminger737aec52017-08-18 13:46:22 -07001593const struct kobj_ns_type_operations net_ns_type_operations = {
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001594 .type = KOBJ_NS_TYPE_NET,
Eric W. Biederman7dc5dbc2013-03-25 20:07:01 -07001595 .current_may_mount = net_current_may_mount,
Al Viroa685e082011-06-08 21:13:01 -04001596 .grab_current_ns = net_grab_current_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001597 .netlink_ns = net_netlink_ns,
1598 .initial_ns = net_initial_ns,
Al Viroa685e082011-06-08 21:13:01 -04001599 .drop_ns = net_drop_ns,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001600};
Johannes Berg04600792010-08-05 17:45:15 +02001601EXPORT_SYMBOL_GPL(net_ns_type_operations);
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001602
Kay Sievers7eff2e72007-08-14 15:15:12 +02001603static int netdev_uevent(struct device *d, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001605 struct net_device *dev = to_net_dev(d);
Kay Sievers7eff2e72007-08-14 15:15:12 +02001606 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Kay Sievers312c0042005-11-16 09:00:00 +01001608 /* pass interface to uevent. */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001609 retval = add_uevent_var(env, "INTERFACE=%s", dev->name);
Eric Rannaudbf624562007-03-30 22:23:12 -07001610 if (retval)
1611 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001613 /* pass ifindex to uevent.
1614 * ifindex is useful as it won't change (interface name may change)
stephen hemminger6648c652017-08-18 13:46:28 -07001615 * and is what RtNetlink uses natively.
1616 */
Kay Sievers7eff2e72007-08-14 15:15:12 +02001617 retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex);
Jean Tourrilhesca2f37d2007-03-07 10:49:30 -08001618
Eric Rannaudbf624562007-03-30 22:23:12 -07001619exit:
Eric Rannaudbf624562007-03-30 22:23:12 -07001620 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623/*
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001624 * netdev_release -- destroy and free a dead device.
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001625 * Called when last reference to device kobject is gone.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 */
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001627static void netdev_release(struct device *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001629 struct net_device *dev = to_net_dev(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 BUG_ON(dev->reg_state != NETREG_RELEASED);
1632
Florian Westphal6c557002017-10-02 23:50:05 +02001633 /* no need to wait for rcu grace period:
1634 * device is dead and about to be freed.
1635 */
1636 kfree(rcu_access_pointer(dev->ifalias));
Eric Dumazet74d332c2013-10-30 13:10:44 -07001637 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001640static const void *net_namespace(struct device *d)
1641{
Geliang Tang5c294822015-12-22 23:11:49 +08001642 struct net_device *dev = to_net_dev(d);
1643
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001644 return dev_net(dev);
1645}
1646
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001647static void net_get_ownership(struct device *d, kuid_t *uid, kgid_t *gid)
1648{
1649 struct net_device *dev = to_net_dev(d);
1650 const struct net *net = dev_net(dev);
1651
1652 net_ns_get_ownership(net, uid, gid);
1653}
1654
stephen hemmingere6d473e2017-08-18 13:46:21 -07001655static struct class net_class __ro_after_init = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .name = "net",
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001657 .dev_release = netdev_release,
Greg Kroah-Hartman6be8aee2013-07-24 15:05:33 -07001658 .dev_groups = net_class_groups,
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001659 .dev_uevent = netdev_uevent,
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001660 .ns_type = &net_ns_type_operations,
1661 .namespace = net_namespace,
Dmitry Torokhovb0e37c02018-07-20 21:56:52 +00001662 .get_ownership = net_get_ownership,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663};
1664
Florian Fainelliaa836df2015-03-09 14:31:20 -07001665#ifdef CONFIG_OF_NET
1666static int of_dev_node_match(struct device *dev, const void *data)
1667{
1668 int ret = 0;
1669
1670 if (dev->parent)
1671 ret = dev->parent->of_node == data;
1672
1673 return ret == 0 ? dev->of_node == data : ret;
1674}
1675
Russell King9861f722015-09-24 20:36:33 +01001676/*
1677 * of_find_net_device_by_node - lookup the net device for the device node
1678 * @np: OF device node
1679 *
1680 * Looks up the net_device structure corresponding with the device node.
1681 * If successful, returns a pointer to the net_device with the embedded
1682 * struct device refcount incremented by one, or NULL on failure. The
1683 * refcount must be dropped when done with the net_device.
1684 */
Florian Fainelliaa836df2015-03-09 14:31:20 -07001685struct net_device *of_find_net_device_by_node(struct device_node *np)
1686{
1687 struct device *dev;
1688
1689 dev = class_find_device(&net_class, NULL, np, of_dev_node_match);
1690 if (!dev)
1691 return NULL;
1692
1693 return to_net_dev(dev);
1694}
1695EXPORT_SYMBOL(of_find_net_device_by_node);
1696#endif
1697
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001698/* Delete sysfs entries but hold kobject reference until after all
1699 * netdev references are gone.
1700 */
WANG Cong6b53daf2014-07-23 16:09:10 -07001701void netdev_unregister_kobject(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
stephen hemminger6648c652017-08-18 13:46:28 -07001703 struct device *dev = &ndev->dev;
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001704
Kirill Tkhai273c28b2018-01-12 18:28:31 +03001705 if (!refcount_read(&dev_net(ndev)->count))
Andrey Vagin002d8a12016-10-24 19:09:53 -07001706 dev_set_uevent_suppress(dev, 1);
1707
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001708 kobject_get(&dev->kobj);
Eric W. Biederman38918452008-10-27 17:51:47 -07001709
WANG Cong6b53daf2014-07-23 16:09:10 -07001710 remove_queue_kobjects(ndev);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001711
Ming Lei9802c8e2013-02-22 16:34:16 -08001712 pm_runtime_set_memalloc_noio(dev, false);
1713
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07001714 device_del(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/* Create sysfs entries for network device. */
WANG Cong6b53daf2014-07-23 16:09:10 -07001718int netdev_register_kobject(struct net_device *ndev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
stephen hemminger6648c652017-08-18 13:46:28 -07001720 struct device *dev = &ndev->dev;
WANG Cong6b53daf2014-07-23 16:09:10 -07001721 const struct attribute_group **groups = ndev->sysfs_groups;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001722 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001724 device_initialize(dev);
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001725 dev->class = &net_class;
WANG Cong6b53daf2014-07-23 16:09:10 -07001726 dev->platform_data = ndev;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001727 dev->groups = groups;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
WANG Cong6b53daf2014-07-23 16:09:10 -07001729 dev_set_name(dev, "%s", ndev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001731#ifdef CONFIG_SYSFS
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001732 /* Allow for a device specific group */
1733 if (*groups)
1734 groups++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Eric W. Biederman0c509a62009-10-29 14:18:21 +00001736 *groups++ = &netstat_group;
Johannes Berg38c1a012012-11-16 20:46:19 +01001737
1738#if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211)
WANG Cong6b53daf2014-07-23 16:09:10 -07001739 if (ndev->ieee80211_ptr)
Johannes Berg38c1a012012-11-16 20:46:19 +01001740 *groups++ = &wireless_group;
1741#if IS_ENABLED(CONFIG_WIRELESS_EXT)
WANG Cong6b53daf2014-07-23 16:09:10 -07001742 else if (ndev->wireless_handlers)
Johannes Berg38c1a012012-11-16 20:46:19 +01001743 *groups++ = &wireless_group;
1744#endif
1745#endif
Eric W. Biederman8b41d182007-09-26 22:02:53 -07001746#endif /* CONFIG_SYSFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Tom Herbert0a9627f2010-03-16 08:03:29 +00001748 error = device_add(dev);
1749 if (error)
Wang Hai6b70fc92019-03-20 14:25:05 -04001750 goto error_put_device;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001751
WANG Cong6b53daf2014-07-23 16:09:10 -07001752 error = register_queue_kobjects(ndev);
Wang Hai6b70fc92019-03-20 14:25:05 -04001753 if (error)
1754 goto error_device_del;
Tom Herbert0a9627f2010-03-16 08:03:29 +00001755
Ming Lei9802c8e2013-02-22 16:34:16 -08001756 pm_runtime_set_memalloc_noio(dev, true);
1757
Wang Hai6b70fc92019-03-20 14:25:05 -04001758 return 0;
1759
1760error_device_del:
1761 device_del(dev);
1762error_put_device:
1763 put_device(dev);
Tom Herbert0a9627f2010-03-16 08:03:29 +00001764 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
1766
stephen hemmingerb793dc52017-08-18 13:46:20 -07001767int netdev_class_create_file_ns(const struct class_attribute *class_attr,
Tejun Heo58292cbe2013-09-11 22:29:04 -04001768 const void *ns)
Jay Vosburghb8a97872008-06-13 18:12:04 -07001769{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001770 return class_create_file_ns(&net_class, class_attr, ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001771}
Tejun Heo58292cbe2013-09-11 22:29:04 -04001772EXPORT_SYMBOL(netdev_class_create_file_ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001773
stephen hemmingerb793dc52017-08-18 13:46:20 -07001774void netdev_class_remove_file_ns(const struct class_attribute *class_attr,
Tejun Heo58292cbe2013-09-11 22:29:04 -04001775 const void *ns)
Jay Vosburghb8a97872008-06-13 18:12:04 -07001776{
Tejun Heo58292cbe2013-09-11 22:29:04 -04001777 class_remove_file_ns(&net_class, class_attr, ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001778}
Tejun Heo58292cbe2013-09-11 22:29:04 -04001779EXPORT_SYMBOL(netdev_class_remove_file_ns);
Jay Vosburghb8a97872008-06-13 18:12:04 -07001780
Daniel Borkmanna48d4bb2014-01-06 01:20:11 +01001781int __init netdev_kobject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Eric W. Biederman608b4b92010-05-04 17:36:45 -07001783 kobj_ns_type_register(&net_ns_type_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return class_register(&net_class);
1785}