Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * net-sysfs.c - network device class and attributes |
| 4 | * |
| 5 | * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 8 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/kernel.h> |
| 10 | #include <linux/netdevice.h> |
| 11 | #include <linux/if_arp.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 13 | #include <linux/sched/signal.h> |
Alex Belits | 07bbecb | 2020-06-25 18:34:43 -0400 | [diff] [blame] | 14 | #include <linux/sched/isolation.h> |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 15 | #include <linux/nsproxy.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <net/sock.h> |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 17 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/rtnetlink.h> |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 19 | #include <linux/vmalloc.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 20 | #include <linux/export.h> |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 21 | #include <linux/jiffies.h> |
Ming Lei | 9802c8e | 2013-02-22 16:34:16 -0800 | [diff] [blame] | 22 | #include <linux/pm_runtime.h> |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 23 | #include <linux/of.h> |
Ben Dooks | 88832a2 | 2016-06-07 19:27:51 +0100 | [diff] [blame] | 24 | #include <linux/of_net.h> |
Andrei Vagin | 4d99f66 | 2018-08-08 20:07:35 -0700 | [diff] [blame] | 25 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Pavel Emelyanov | 342709e | 2007-10-23 21:14:45 -0700 | [diff] [blame] | 27 | #include "net-sysfs.h" |
| 28 | |
Eric W. Biederman | 8b41d18 | 2007-09-26 22:02:53 -0700 | [diff] [blame] | 29 | #ifdef CONFIG_SYSFS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | static const char fmt_hex[] = "%#x\n"; |
| 31 | static const char fmt_dec[] = "%d\n"; |
| 32 | static const char fmt_ulong[] = "%lu\n"; |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 33 | static const char fmt_u64[] = "%llu\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 35 | static inline int dev_isalive(const struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | { |
Stephen Hemminger | fe9925b | 2006-05-06 17:56:03 -0700 | [diff] [blame] | 37 | return dev->reg_state <= NETREG_REGISTERED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | /* use same locking rules as GIF* ioctl's */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 41 | static ssize_t netdev_show(const struct device *dev, |
| 42 | struct device_attribute *attr, char *buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | ssize_t (*format)(const struct net_device *, char *)) |
| 44 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 45 | struct net_device *ndev = to_net_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | ssize_t ret = -EINVAL; |
| 47 | |
| 48 | read_lock(&dev_base_lock); |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 49 | if (dev_isalive(ndev)) |
| 50 | ret = (*format)(ndev, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | 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 Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 58 | static ssize_t format_##field(const struct net_device *dev, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { \ |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 60 | return sprintf(buf, format_string, dev->field); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } \ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 62 | static ssize_t field##_show(struct device *dev, \ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 63 | struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | { \ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 65 | return netdev_show(dev, attr, buf, format_##field); \ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 66 | } \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 68 | #define NETDEVICE_SHOW_RO(field, format_string) \ |
| 69 | NETDEVICE_SHOW(field, format_string); \ |
| 70 | static DEVICE_ATTR_RO(field) |
| 71 | |
| 72 | #define NETDEVICE_SHOW_RW(field, format_string) \ |
| 73 | NETDEVICE_SHOW(field, format_string); \ |
| 74 | static DEVICE_ATTR_RW(field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | /* use same locking and permission rules as SIF* ioctl's */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 77 | static ssize_t netdev_store(struct device *dev, struct device_attribute *attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | const char *buf, size_t len, |
| 79 | int (*set)(struct net_device *, unsigned long)) |
| 80 | { |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 81 | struct net_device *netdev = to_net_dev(dev); |
| 82 | struct net *net = dev_net(netdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | unsigned long new; |
Colin Ian King | 5f0224a | 2020-04-09 14:41:26 +0100 | [diff] [blame] | 84 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 86 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | return -EPERM; |
| 88 | |
Shuah Khan | e1e420c | 2012-04-12 09:28:13 +0000 | [diff] [blame] | 89 | ret = kstrtoul(buf, 0, &new); |
| 90 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | goto err; |
| 92 | |
Stephen Hemminger | 5a5990d | 2009-02-26 06:49:24 +0000 | [diff] [blame] | 93 | if (!rtnl_trylock()) |
Eric W. Biederman | 336ca57 | 2009-05-13 16:57:25 +0000 | [diff] [blame] | 94 | return restart_syscall(); |
Stephen Hemminger | 5a5990d | 2009-02-26 06:49:24 +0000 | [diff] [blame] | 95 | |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 96 | if (dev_isalive(netdev)) { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 97 | ret = (*set)(netdev, new); |
| 98 | if (ret == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | ret = len; |
| 100 | } |
| 101 | rtnl_unlock(); |
| 102 | err: |
| 103 | return ret; |
| 104 | } |
| 105 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 106 | NETDEVICE_SHOW_RO(dev_id, fmt_hex); |
Amir Vadai | 3f85944 | 2014-02-25 18:17:50 +0200 | [diff] [blame] | 107 | NETDEVICE_SHOW_RO(dev_port, fmt_dec); |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 108 | NETDEVICE_SHOW_RO(addr_assign_type, fmt_dec); |
| 109 | NETDEVICE_SHOW_RO(addr_len, fmt_dec); |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 110 | NETDEVICE_SHOW_RO(ifindex, fmt_dec); |
| 111 | NETDEVICE_SHOW_RO(type, fmt_dec); |
| 112 | NETDEVICE_SHOW_RO(link_mode, fmt_dec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Nicolas Dichtel | a54acb3 | 2015-04-02 17:07:00 +0200 | [diff] [blame] | 114 | static 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 | } |
| 121 | static DEVICE_ATTR_RO(iflink); |
| 122 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 123 | static ssize_t format_name_assign_type(const struct net_device *dev, char *buf) |
Tom Gundersen | 685343f | 2014-07-14 16:37:22 +0200 | [diff] [blame] | 124 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 125 | return sprintf(buf, fmt_dec, dev->name_assign_type); |
Tom Gundersen | 685343f | 2014-07-14 16:37:22 +0200 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | static ssize_t name_assign_type_show(struct device *dev, |
| 129 | struct device_attribute *attr, |
| 130 | char *buf) |
| 131 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 132 | struct net_device *ndev = to_net_dev(dev); |
Tom Gundersen | 685343f | 2014-07-14 16:37:22 +0200 | [diff] [blame] | 133 | ssize_t ret = -EINVAL; |
| 134 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 135 | if (ndev->name_assign_type != NET_NAME_UNKNOWN) |
Tom Gundersen | 685343f | 2014-07-14 16:37:22 +0200 | [diff] [blame] | 136 | ret = netdev_show(dev, attr, buf, format_name_assign_type); |
| 137 | |
| 138 | return ret; |
| 139 | } |
| 140 | static DEVICE_ATTR_RO(name_assign_type); |
| 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | /* use same locking rules as GIFHWADDR ioctl's */ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 143 | static ssize_t address_show(struct device *dev, struct device_attribute *attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 144 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 146 | struct net_device *ndev = to_net_dev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | ssize_t ret = -EINVAL; |
| 148 | |
| 149 | read_lock(&dev_base_lock); |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 150 | if (dev_isalive(ndev)) |
| 151 | ret = sysfs_format_mac(buf, ndev->dev_addr, ndev->addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | read_unlock(&dev_base_lock); |
| 153 | return ret; |
| 154 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 155 | static DEVICE_ATTR_RO(address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 157 | static ssize_t broadcast_show(struct device *dev, |
| 158 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 160 | struct net_device *ndev = to_net_dev(dev); |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 161 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 162 | if (dev_isalive(ndev)) |
| 163 | return sysfs_format_mac(buf, ndev->broadcast, ndev->addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | return -EINVAL; |
| 165 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 166 | static DEVICE_ATTR_RO(broadcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 168 | static int change_carrier(struct net_device *dev, unsigned long new_carrier) |
Jiri Pirko | fdae0fd | 2012-12-27 23:49:38 +0000 | [diff] [blame] | 169 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 170 | if (!netif_running(dev)) |
Jiri Pirko | fdae0fd | 2012-12-27 23:49:38 +0000 | [diff] [blame] | 171 | return -EINVAL; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 172 | return dev_change_carrier(dev, (bool)new_carrier); |
Jiri Pirko | fdae0fd | 2012-12-27 23:49:38 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 175 | static ssize_t carrier_store(struct device *dev, struct device_attribute *attr, |
| 176 | const char *buf, size_t len) |
Jiri Pirko | fdae0fd | 2012-12-27 23:49:38 +0000 | [diff] [blame] | 177 | { |
| 178 | return netdev_store(dev, attr, buf, len, change_carrier); |
| 179 | } |
| 180 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 181 | static ssize_t carrier_show(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 182 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
| 184 | struct net_device *netdev = to_net_dev(dev); |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 185 | |
| 186 | if (netif_running(netdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev)); |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | return -EINVAL; |
| 190 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 191 | static DEVICE_ATTR_RW(carrier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 193 | static ssize_t speed_show(struct device *dev, |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 194 | 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 Decotigny | 8ae6daca | 2011-04-27 18:32:38 +0000 | [diff] [blame] | 202 | if (netif_running(netdev)) { |
David Decotigny | 7cad1ba | 2016-02-24 10:58:10 -0800 | [diff] [blame] | 203 | struct ethtool_link_ksettings cmd; |
| 204 | |
| 205 | if (!__ethtool_get_link_ksettings(netdev, &cmd)) |
| 206 | ret = sprintf(buf, fmt_dec, cmd.base.speed); |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 207 | } |
| 208 | rtnl_unlock(); |
| 209 | return ret; |
| 210 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 211 | static DEVICE_ATTR_RO(speed); |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 212 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 213 | static ssize_t duplex_show(struct device *dev, |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 214 | 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 Decotigny | 8ae6daca | 2011-04-27 18:32:38 +0000 | [diff] [blame] | 222 | if (netif_running(netdev)) { |
David Decotigny | 7cad1ba | 2016-02-24 10:58:10 -0800 | [diff] [blame] | 223 | struct ethtool_link_ksettings cmd; |
| 224 | |
| 225 | if (!__ethtool_get_link_ksettings(netdev, &cmd)) { |
Nikolay Aleksandrov | c6c1396 | 2012-09-05 04:11:28 +0000 | [diff] [blame] | 226 | const char *duplex; |
David Decotigny | 7cad1ba | 2016-02-24 10:58:10 -0800 | [diff] [blame] | 227 | |
| 228 | switch (cmd.base.duplex) { |
Nikolay Aleksandrov | c6c1396 | 2012-09-05 04:11:28 +0000 | [diff] [blame] | 229 | 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 Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 241 | } |
| 242 | rtnl_unlock(); |
| 243 | return ret; |
| 244 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 245 | static DEVICE_ATTR_RO(duplex); |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 246 | |
Andrew Lunn | db30a57 | 2020-04-20 00:11:51 +0200 | [diff] [blame] | 247 | static 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 | } |
| 257 | static DEVICE_ATTR_RO(testing); |
| 258 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 259 | static ssize_t dormant_show(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 260 | struct device_attribute *attr, char *buf) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 261 | { |
| 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-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 269 | static DEVICE_ATTR_RO(dormant); |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 270 | |
Jan Engelhardt | 36cbd3d | 2009-08-05 10:42:58 -0700 | [diff] [blame] | 271 | static const char *const operstates[] = { |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 272 | "unknown", |
| 273 | "notpresent", /* currently unused */ |
| 274 | "down", |
| 275 | "lowerlayerdown", |
Andrew Lunn | db30a57 | 2020-04-20 00:11:51 +0200 | [diff] [blame] | 276 | "testing", |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 277 | "dormant", |
| 278 | "up" |
| 279 | }; |
| 280 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 281 | static ssize_t operstate_show(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 282 | struct device_attribute *attr, char *buf) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 283 | { |
| 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 Bunk | e3a5cd9 | 2006-04-05 22:19:47 -0700 | [diff] [blame] | 293 | if (operstate >= ARRAY_SIZE(operstates)) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 294 | return -EINVAL; /* should not happen */ |
| 295 | |
| 296 | return sprintf(buf, "%s\n", operstates[operstate]); |
| 297 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 298 | static DEVICE_ATTR_RO(operstate); |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 299 | |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 300 | static 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 hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 305 | |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 306 | return sprintf(buf, fmt_dec, |
David Decotigny | b2d3bcf | 2018-01-18 09:59:13 -0800 | [diff] [blame] | 307 | atomic_read(&netdev->carrier_up_count) + |
| 308 | atomic_read(&netdev->carrier_down_count)); |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 309 | } |
| 310 | static DEVICE_ATTR_RO(carrier_changes); |
| 311 | |
David Decotigny | b2d3bcf | 2018-01-18 09:59:13 -0800 | [diff] [blame] | 312 | static 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 | } |
| 320 | static DEVICE_ATTR_RO(carrier_up_count); |
| 321 | |
| 322 | static 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 | } |
| 330 | static DEVICE_ATTR_RO(carrier_down_count); |
| 331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | /* read-write attributes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 334 | static int change_mtu(struct net_device *dev, unsigned long new_mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 336 | return dev_set_mtu(dev, (int)new_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 339 | static ssize_t mtu_store(struct device *dev, struct device_attribute *attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 340 | const char *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 342 | return netdev_store(dev, attr, buf, len, change_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 344 | NETDEVICE_SHOW_RW(mtu, fmt_dec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 346 | static int change_flags(struct net_device *dev, unsigned long new_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | { |
Petr Machata | 567c5e1 | 2018-12-06 17:05:42 +0000 | [diff] [blame] | 348 | return dev_change_flags(dev, (unsigned int)new_flags, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 351 | static ssize_t flags_store(struct device *dev, struct device_attribute *attr, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 352 | const char *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 354 | return netdev_store(dev, attr, buf, len, change_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 356 | NETDEVICE_SHOW_RW(flags, fmt_hex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 358 | static ssize_t tx_queue_len_store(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 359 | struct device_attribute *attr, |
| 360 | const char *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 362 | if (!capable(CAP_NET_ADMIN)) |
| 363 | return -EPERM; |
| 364 | |
Cong Wang | 6a643dd | 2018-01-25 18:26:22 -0800 | [diff] [blame] | 365 | return netdev_store(dev, attr, buf, len, dev_change_tx_queue_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | } |
Alexey Dobriyan | 0cd2950 | 2017-05-17 13:30:44 +0300 | [diff] [blame] | 367 | NETDEVICE_SHOW_RW(tx_queue_len, fmt_dec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 369 | static int change_gro_flush_timeout(struct net_device *dev, unsigned long val) |
| 370 | { |
Eric Dumazet | 7e417a6 | 2020-04-22 09:13:28 -0700 | [diff] [blame] | 371 | WRITE_ONCE(dev->gro_flush_timeout, val); |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 372 | return 0; |
| 373 | } |
| 374 | |
| 375 | static ssize_t gro_flush_timeout_store(struct device *dev, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 376 | struct device_attribute *attr, |
| 377 | const char *buf, size_t len) |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 378 | { |
| 379 | if (!capable(CAP_NET_ADMIN)) |
| 380 | return -EPERM; |
| 381 | |
| 382 | return netdev_store(dev, attr, buf, len, change_gro_flush_timeout); |
| 383 | } |
| 384 | NETDEVICE_SHOW_RW(gro_flush_timeout, fmt_ulong); |
| 385 | |
Eric Dumazet | 6f8b12d | 2020-04-22 09:13:27 -0700 | [diff] [blame] | 386 | static int change_napi_defer_hard_irqs(struct net_device *dev, unsigned long val) |
| 387 | { |
Eric Dumazet | 7e417a6 | 2020-04-22 09:13:28 -0700 | [diff] [blame] | 388 | WRITE_ONCE(dev->napi_defer_hard_irqs, val); |
Eric Dumazet | 6f8b12d | 2020-04-22 09:13:27 -0700 | [diff] [blame] | 389 | return 0; |
| 390 | } |
| 391 | |
| 392 | static 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 | } |
| 401 | NETDEVICE_SHOW_RW(napi_defer_hard_irqs, fmt_dec); |
| 402 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 403 | static ssize_t ifalias_store(struct device *dev, struct device_attribute *attr, |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 404 | const char *buf, size_t len) |
| 405 | { |
| 406 | struct net_device *netdev = to_net_dev(dev); |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 407 | struct net *net = dev_net(netdev); |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 408 | size_t count = len; |
Roopa Prabhu | c92eb77 | 2017-11-13 23:21:36 -0800 | [diff] [blame] | 409 | ssize_t ret = 0; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 410 | |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 411 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 412 | return -EPERM; |
| 413 | |
| 414 | /* ignore trailing newline */ |
| 415 | if (len > 0 && buf[len - 1] == '\n') |
| 416 | --count; |
| 417 | |
Roopa Prabhu | c92eb77 | 2017-11-13 23:21:36 -0800 | [diff] [blame] | 418 | if (!rtnl_trylock()) |
| 419 | return restart_syscall(); |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 420 | |
Roopa Prabhu | c92eb77 | 2017-11-13 23:21:36 -0800 | [diff] [blame] | 421 | 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 | } |
| 428 | err: |
| 429 | rtnl_unlock(); |
| 430 | |
| 431 | return ret; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 432 | } |
| 433 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 434 | static ssize_t ifalias_show(struct device *dev, |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 435 | struct device_attribute *attr, char *buf) |
| 436 | { |
| 437 | const struct net_device *netdev = to_net_dev(dev); |
Florian Westphal | 6c55700 | 2017-10-02 23:50:05 +0200 | [diff] [blame] | 438 | char tmp[IFALIASZ]; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 439 | ssize_t ret = 0; |
| 440 | |
Florian Westphal | 6c55700 | 2017-10-02 23:50:05 +0200 | [diff] [blame] | 441 | ret = dev_get_alias(netdev, tmp, sizeof(tmp)); |
| 442 | if (ret > 0) |
| 443 | ret = sprintf(buf, "%s\n", tmp); |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 444 | return ret; |
| 445 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 446 | static DEVICE_ATTR_RW(ifalias); |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 447 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 448 | static int change_group(struct net_device *dev, unsigned long new_group) |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 449 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 450 | dev_set_group(dev, (int)new_group); |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 451 | return 0; |
| 452 | } |
| 453 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 454 | static ssize_t group_store(struct device *dev, struct device_attribute *attr, |
| 455 | const char *buf, size_t len) |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 456 | { |
| 457 | return netdev_store(dev, attr, buf, len, change_group); |
| 458 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 459 | NETDEVICE_SHOW(group, fmt_dec); |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 460 | static DEVICE_ATTR(netdev_group, 0644, group_show, group_store); |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 461 | |
Anuradha Karuppiah | d746d70 | 2015-07-14 13:43:19 -0700 | [diff] [blame] | 462 | static int change_proto_down(struct net_device *dev, unsigned long proto_down) |
| 463 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 464 | return dev_change_proto_down(dev, (bool)proto_down); |
Anuradha Karuppiah | d746d70 | 2015-07-14 13:43:19 -0700 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | static 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 | } |
| 473 | NETDEVICE_SHOW_RW(proto_down, fmt_dec); |
| 474 | |
Linus Torvalds | cc998ff | 2013-09-05 14:54:29 -0700 | [diff] [blame] | 475 | static ssize_t phys_port_id_show(struct device *dev, |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 476 | 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 Pirko | 02637fc | 2014-11-28 14:34:16 +0100 | [diff] [blame] | 485 | struct netdev_phys_item_id ppid; |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 486 | |
| 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 Torvalds | cc998ff | 2013-09-05 14:54:29 -0700 | [diff] [blame] | 495 | static DEVICE_ATTR_RO(phys_port_id); |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 496 | |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 497 | static 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 | } |
| 517 | static DEVICE_ATTR_RO(phys_port_name); |
| 518 | |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 519 | static 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 Fainelli | bccb302 | 2019-02-06 09:45:46 -0800 | [diff] [blame] | 529 | struct netdev_phys_item_id ppid = { }; |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 530 | |
Florian Fainelli | bccb302 | 2019-02-06 09:45:46 -0800 | [diff] [blame] | 531 | ret = dev_get_port_parent_id(netdev, &ppid, false); |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 532 | if (!ret) |
Florian Fainelli | bccb302 | 2019-02-06 09:45:46 -0800 | [diff] [blame] | 533 | ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id); |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 534 | } |
| 535 | rtnl_unlock(); |
| 536 | |
| 537 | return ret; |
| 538 | } |
| 539 | static DEVICE_ATTR_RO(phys_switch_id); |
| 540 | |
Wei Wang | 5fdd2f0 | 2021-02-08 11:34:10 -0800 | [diff] [blame] | 541 | static 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 | |
| 557 | static 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 | |
| 572 | static 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 | } |
| 578 | static DEVICE_ATTR_RW(threaded); |
| 579 | |
stephen hemminger | ec6cc59 | 2017-08-18 13:46:23 -0700 | [diff] [blame] | 580 | static struct attribute *net_class_attrs[] __ro_after_init = { |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 581 | &dev_attr_netdev_group.attr, |
| 582 | &dev_attr_type.attr, |
| 583 | &dev_attr_dev_id.attr, |
Amir Vadai | 3f85944 | 2014-02-25 18:17:50 +0200 | [diff] [blame] | 584 | &dev_attr_dev_port.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 585 | &dev_attr_iflink.attr, |
| 586 | &dev_attr_ifindex.attr, |
Tom Gundersen | 685343f | 2014-07-14 16:37:22 +0200 | [diff] [blame] | 587 | &dev_attr_name_assign_type.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 588 | &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 Lunn | db30a57 | 2020-04-20 00:11:51 +0200 | [diff] [blame] | 596 | &dev_attr_testing.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 597 | &dev_attr_operstate.attr, |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 598 | &dev_attr_carrier_changes.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 599 | &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 Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 604 | &dev_attr_gro_flush_timeout.attr, |
Eric Dumazet | 6f8b12d | 2020-04-22 09:13:27 -0700 | [diff] [blame] | 605 | &dev_attr_napi_defer_hard_irqs.attr, |
Linus Torvalds | cc998ff | 2013-09-05 14:54:29 -0700 | [diff] [blame] | 606 | &dev_attr_phys_port_id.attr, |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 607 | &dev_attr_phys_port_name.attr, |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 608 | &dev_attr_phys_switch_id.attr, |
Anuradha Karuppiah | d746d70 | 2015-07-14 13:43:19 -0700 | [diff] [blame] | 609 | &dev_attr_proto_down.attr, |
David Decotigny | b2d3bcf | 2018-01-18 09:59:13 -0800 | [diff] [blame] | 610 | &dev_attr_carrier_up_count.attr, |
| 611 | &dev_attr_carrier_down_count.attr, |
Wei Wang | 5fdd2f0 | 2021-02-08 11:34:10 -0800 | [diff] [blame] | 612 | &dev_attr_threaded.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 613 | NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | }; |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 615 | ATTRIBUTE_GROUPS(net_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | |
| 617 | /* Show a given an attribute in the statistics group */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 618 | static ssize_t netstat_show(const struct device *d, |
| 619 | struct device_attribute *attr, char *buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | unsigned long offset) |
| 621 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 622 | struct net_device *dev = to_net_dev(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | ssize_t ret = -EINVAL; |
| 624 | |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 625 | WARN_ON(offset > sizeof(struct rtnl_link_stats64) || |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 626 | offset % sizeof(u64) != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
| 628 | read_lock(&dev_base_lock); |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 629 | if (dev_isalive(dev)) { |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 630 | struct rtnl_link_stats64 temp; |
| 631 | const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp); |
| 632 | |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 633 | ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *)stats) + offset)); |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 634 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | read_unlock(&dev_base_lock); |
| 636 | return ret; |
| 637 | } |
| 638 | |
| 639 | /* generate a read-only statistics attribute */ |
| 640 | #define NETSTAT_ENTRY(name) \ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 641 | static ssize_t name##_show(struct device *d, \ |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 642 | struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | { \ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 644 | return netstat_show(d, attr, buf, \ |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 645 | offsetof(struct rtnl_link_stats64, name)); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | } \ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 647 | static DEVICE_ATTR_RO(name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
| 649 | NETSTAT_ENTRY(rx_packets); |
| 650 | NETSTAT_ENTRY(tx_packets); |
| 651 | NETSTAT_ENTRY(rx_bytes); |
| 652 | NETSTAT_ENTRY(tx_bytes); |
| 653 | NETSTAT_ENTRY(rx_errors); |
| 654 | NETSTAT_ENTRY(tx_errors); |
| 655 | NETSTAT_ENTRY(rx_dropped); |
| 656 | NETSTAT_ENTRY(tx_dropped); |
| 657 | NETSTAT_ENTRY(multicast); |
| 658 | NETSTAT_ENTRY(collisions); |
| 659 | NETSTAT_ENTRY(rx_length_errors); |
| 660 | NETSTAT_ENTRY(rx_over_errors); |
| 661 | NETSTAT_ENTRY(rx_crc_errors); |
| 662 | NETSTAT_ENTRY(rx_frame_errors); |
| 663 | NETSTAT_ENTRY(rx_fifo_errors); |
| 664 | NETSTAT_ENTRY(rx_missed_errors); |
| 665 | NETSTAT_ENTRY(tx_aborted_errors); |
| 666 | NETSTAT_ENTRY(tx_carrier_errors); |
| 667 | NETSTAT_ENTRY(tx_fifo_errors); |
| 668 | NETSTAT_ENTRY(tx_heartbeat_errors); |
| 669 | NETSTAT_ENTRY(tx_window_errors); |
| 670 | NETSTAT_ENTRY(rx_compressed); |
| 671 | NETSTAT_ENTRY(tx_compressed); |
Jarod Wilson | 6e7333d | 2016-02-01 18:51:05 -0500 | [diff] [blame] | 672 | NETSTAT_ENTRY(rx_nohandler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
stephen hemminger | ec6cc59 | 2017-08-18 13:46:23 -0700 | [diff] [blame] | 674 | static struct attribute *netstat_attrs[] __ro_after_init = { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 675 | &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 Wilson | 6e7333d | 2016-02-01 18:51:05 -0500 | [diff] [blame] | 698 | &dev_attr_rx_nohandler.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | NULL |
| 700 | }; |
| 701 | |
Arvind Yadav | 38ef00c | 2017-06-29 16:31:26 +0530 | [diff] [blame] | 702 | static const struct attribute_group netstat_group = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | .name = "statistics", |
| 704 | .attrs = netstat_attrs, |
| 705 | }; |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 706 | |
| 707 | #if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211) |
| 708 | static struct attribute *wireless_attrs[] = { |
| 709 | NULL |
| 710 | }; |
| 711 | |
Arvind Yadav | 38ef00c | 2017-06-29 16:31:26 +0530 | [diff] [blame] | 712 | static const struct attribute_group wireless_group = { |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 713 | .name = "wireless", |
| 714 | .attrs = wireless_attrs, |
| 715 | }; |
| 716 | #endif |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 717 | |
| 718 | #else /* CONFIG_SYSFS */ |
| 719 | #define net_class_groups NULL |
Eric W. Biederman | d6523dd | 2010-05-16 21:59:45 -0700 | [diff] [blame] | 720 | #endif /* CONFIG_SYSFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 722 | #ifdef CONFIG_SYSFS |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 723 | #define to_rx_queue_attr(_attr) \ |
| 724 | container_of(_attr, struct rx_queue_attribute, attr) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 725 | |
| 726 | #define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj) |
| 727 | |
| 728 | static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr, |
| 729 | char *buf) |
| 730 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 731 | const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 732 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
| 733 | |
| 734 | if (!attribute->show) |
| 735 | return -EIO; |
| 736 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 737 | return attribute->show(queue, buf); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr, |
| 741 | const char *buf, size_t count) |
| 742 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 743 | const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 744 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
| 745 | |
| 746 | if (!attribute->store) |
| 747 | return -EIO; |
| 748 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 749 | return attribute->store(queue, buf, count); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 750 | } |
| 751 | |
stephen hemminger | fa50d64 | 2010-08-31 12:14:13 +0000 | [diff] [blame] | 752 | static const struct sysfs_ops rx_queue_sysfs_ops = { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 753 | .show = rx_queue_attr_show, |
| 754 | .store = rx_queue_attr_store, |
| 755 | }; |
| 756 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 757 | #ifdef CONFIG_RPS |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 758 | static ssize_t show_rps_map(struct netdev_rx_queue *queue, char *buf) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 759 | { |
| 760 | struct rps_map *map; |
| 761 | cpumask_var_t mask; |
Tejun Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 762 | int i, len; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 763 | |
| 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 Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 773 | len = snprintf(buf, PAGE_SIZE, "%*pb\n", cpumask_pr_args(mask)); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 774 | rcu_read_unlock(); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 775 | free_cpumask_var(mask); |
Tejun Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 776 | |
| 777 | return len < PAGE_SIZE ? len : -EINVAL; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 778 | } |
| 779 | |
Eric Dumazet | f5acb90 | 2010-04-19 14:40:57 -0700 | [diff] [blame] | 780 | static ssize_t store_rps_map(struct netdev_rx_queue *queue, |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 781 | const char *buf, size_t len) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 782 | { |
| 783 | struct rps_map *old_map, *map; |
| 784 | cpumask_var_t mask; |
Alex Belits | 07bbecb | 2020-06-25 18:34:43 -0400 | [diff] [blame] | 785 | int err, cpu, i, hk_flags; |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 786 | static DEFINE_MUTEX(rps_map_mutex); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 787 | |
| 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 Dumazet | 2e0d8fe | 2020-08-11 18:34:40 -0700 | [diff] [blame] | 800 | 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 Belits | 07bbecb | 2020-06-25 18:34:43 -0400 | [diff] [blame] | 807 | } |
| 808 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 809 | map = kzalloc(max_t(unsigned int, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 810 | RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES), |
| 811 | GFP_KERNEL); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 812 | 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 hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 821 | if (i) { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 822 | map->len = i; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 823 | } else { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 824 | kfree(map); |
| 825 | map = NULL; |
| 826 | } |
| 827 | |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 828 | mutex_lock(&rps_map_mutex); |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 829 | old_map = rcu_dereference_protected(queue->rps_map, |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 830 | mutex_is_locked(&rps_map_mutex)); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 831 | rcu_assign_pointer(queue->rps_map, map); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 832 | |
Eric Dumazet | adc9300 | 2011-11-17 03:13:26 +0000 | [diff] [blame] | 833 | if (map) |
Eric Dumazet | dc05360 | 2019-03-22 08:56:38 -0700 | [diff] [blame] | 834 | static_branch_inc(&rps_needed); |
Tom Herbert | 10e4ea7 | 2015-08-05 09:39:27 -0700 | [diff] [blame] | 835 | if (old_map) |
Eric Dumazet | dc05360 | 2019-03-22 08:56:38 -0700 | [diff] [blame] | 836 | static_branch_dec(&rps_needed); |
Tom Herbert | 10e4ea7 | 2015-08-05 09:39:27 -0700 | [diff] [blame] | 837 | |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 838 | mutex_unlock(&rps_map_mutex); |
Tom Herbert | 10e4ea7 | 2015-08-05 09:39:27 -0700 | [diff] [blame] | 839 | |
| 840 | if (old_map) |
| 841 | kfree_rcu(old_map, rcu); |
| 842 | |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 843 | free_cpumask_var(mask); |
| 844 | return len; |
| 845 | } |
| 846 | |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 847 | static ssize_t show_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue, |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 848 | char *buf) |
| 849 | { |
| 850 | struct rps_dev_flow_table *flow_table; |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 851 | unsigned long val = 0; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 852 | |
| 853 | rcu_read_lock(); |
| 854 | flow_table = rcu_dereference(queue->rps_flow_table); |
| 855 | if (flow_table) |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 856 | val = (unsigned long)flow_table->mask + 1; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 857 | rcu_read_unlock(); |
| 858 | |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 859 | return sprintf(buf, "%lu\n", val); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 860 | } |
| 861 | |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 862 | static 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 Viro | 243198d | 2013-05-05 16:05:55 +0000 | [diff] [blame] | 866 | vfree(table); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 867 | } |
| 868 | |
Eric Dumazet | f5acb90 | 2010-04-19 14:40:57 -0700 | [diff] [blame] | 869 | static ssize_t store_rps_dev_flow_table_cnt(struct netdev_rx_queue *queue, |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 870 | const char *buf, size_t len) |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 871 | { |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 872 | unsigned long mask, count; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 873 | struct rps_dev_flow_table *table, *old_table; |
| 874 | static DEFINE_SPINLOCK(rps_dev_flow_lock); |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 875 | int rc; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 876 | |
| 877 | if (!capable(CAP_NET_ADMIN)) |
| 878 | return -EPERM; |
| 879 | |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 880 | rc = kstrtoul(buf, 0, &count); |
| 881 | if (rc < 0) |
| 882 | return rc; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 883 | |
| 884 | if (count) { |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 885 | 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 hemminger | 8e3bff9 | 2013-12-08 12:15:44 -0800 | [diff] [blame] | 892 | * and on 32bit arches, must check |
| 893 | * RPS_DEV_FLOW_TABLE_SIZE(mask + 1) doesn't overflow. |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 894 | */ |
| 895 | #if BITS_PER_LONG > 32 |
| 896 | if (mask > (unsigned long)(u32)mask) |
Xi Wang | a0a129f | 2011-12-22 13:35:22 +0000 | [diff] [blame] | 897 | return -EINVAL; |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 898 | #else |
| 899 | if (mask > (ULONG_MAX - RPS_DEV_FLOW_TABLE_SIZE(1)) |
Xi Wang | a0a129f | 2011-12-22 13:35:22 +0000 | [diff] [blame] | 900 | / sizeof(struct rps_dev_flow)) { |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 901 | /* Enforce a limit to prevent overflow */ |
| 902 | return -EINVAL; |
| 903 | } |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 904 | #endif |
| 905 | table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(mask + 1)); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 906 | if (!table) |
| 907 | return -ENOMEM; |
| 908 | |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 909 | table->mask = mask; |
| 910 | for (count = 0; count <= mask; count++) |
| 911 | table->flows[count].cpu = RPS_NO_CPU; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 912 | } else { |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 913 | table = NULL; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 914 | } |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 915 | |
| 916 | spin_lock(&rps_dev_flow_lock); |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 917 | old_table = rcu_dereference_protected(queue->rps_flow_table, |
| 918 | lockdep_is_held(&rps_dev_flow_lock)); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 919 | 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 hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 928 | static struct rx_queue_attribute rps_cpus_attribute __ro_after_init |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 929 | = __ATTR(rps_cpus, 0644, show_rps_map, store_rps_map); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 930 | |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 931 | static struct rx_queue_attribute rps_dev_flow_table_cnt_attribute __ro_after_init |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 932 | = __ATTR(rps_flow_cnt, 0644, |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 933 | show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 934 | #endif /* CONFIG_RPS */ |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 935 | |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 936 | static struct attribute *rx_queue_default_attrs[] __ro_after_init = { |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 937 | #ifdef CONFIG_RPS |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 938 | &rps_cpus_attribute.attr, |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 939 | &rps_dev_flow_table_cnt_attribute.attr, |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 940 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 941 | NULL |
| 942 | }; |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 943 | ATTRIBUTE_GROUPS(rx_queue_default); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 944 | |
| 945 | static void rx_queue_release(struct kobject *kobj) |
| 946 | { |
| 947 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 948 | #ifdef CONFIG_RPS |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 949 | struct rps_map *map; |
| 950 | struct rps_dev_flow_table *flow_table; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 951 | |
Eric Dumazet | 33d480c | 2011-08-11 19:30:52 +0000 | [diff] [blame] | 952 | map = rcu_dereference_protected(queue->rps_map, 1); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 953 | if (map) { |
| 954 | RCU_INIT_POINTER(queue->rps_map, NULL); |
Lai Jiangshan | f6f8023 | 2011-03-18 12:01:31 +0800 | [diff] [blame] | 955 | kfree_rcu(map, rcu); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 956 | } |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 957 | |
Eric Dumazet | 33d480c | 2011-08-11 19:30:52 +0000 | [diff] [blame] | 958 | flow_table = rcu_dereference_protected(queue->rps_flow_table, 1); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 959 | if (flow_table) { |
| 960 | RCU_INIT_POINTER(queue->rps_flow_table, NULL); |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 961 | call_rcu(&flow_table->rcu, rps_dev_flow_table_release); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 962 | } |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 963 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 964 | |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 965 | memset(kobj, 0, sizeof(*kobj)); |
Tom Herbert | fe82224 | 2010-11-09 10:47:38 +0000 | [diff] [blame] | 966 | dev_put(queue->dev); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Weilong Chen | 82ef3d5 | 2014-01-16 17:24:31 +0800 | [diff] [blame] | 969 | static 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 Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 981 | static 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 hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 989 | static struct kobj_type rx_queue_ktype __ro_after_init = { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 990 | .sysfs_ops = &rx_queue_sysfs_ops, |
| 991 | .release = rx_queue_release, |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 992 | .default_groups = rx_queue_default_groups, |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 993 | .namespace = rx_queue_namespace, |
| 994 | .get_ownership = rx_queue_get_ownership, |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 995 | }; |
| 996 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 997 | static int rx_queue_add_kobject(struct net_device *dev, int index) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 998 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 999 | struct netdev_rx_queue *queue = dev->_rx + index; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1000 | struct kobject *kobj = &queue->kobj; |
| 1001 | int error = 0; |
| 1002 | |
Jouni Hogander | ddd9b5e | 2019-12-17 13:46:34 +0200 | [diff] [blame] | 1003 | /* 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 Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1008 | kobj->kset = dev->queues_kset; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1009 | error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1010 | "rx-%u", index); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1011 | if (error) |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1012 | goto err; |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1013 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1014 | if (dev->sysfs_rx_queue_group) { |
| 1015 | error = sysfs_create_group(kobj, dev->sysfs_rx_queue_group); |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1016 | if (error) |
| 1017 | goto err; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1018 | } |
| 1019 | |
| 1020 | kobject_uevent(kobj, KOBJ_ADD); |
| 1021 | |
| 1022 | return error; |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1023 | |
| 1024 | err: |
| 1025 | kobject_put(kobj); |
| 1026 | return error; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1027 | } |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1028 | |
| 1029 | static 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 Bolle | 80dd6ea | 2014-02-09 14:07:11 +0100 | [diff] [blame] | 1046 | #endif /* CONFIG_SYSFS */ |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1047 | |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1048 | int |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1049 | net_rx_queue_update_kobjects(struct net_device *dev, int old_num, int new_num) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1050 | { |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1051 | #ifdef CONFIG_SYSFS |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1052 | int i; |
| 1053 | int error = 0; |
| 1054 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1055 | #ifndef CONFIG_RPS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1056 | if (!dev->sysfs_rx_queue_group) |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1057 | return 0; |
| 1058 | #endif |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1059 | for (i = old_num; i < new_num; i++) { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1060 | error = rx_queue_add_kobject(dev, i); |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1061 | if (error) { |
| 1062 | new_num = old_num; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1063 | break; |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1064 | } |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1067 | while (--i >= new_num) { |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1068 | struct kobject *kobj = &dev->_rx[i].kobj; |
| 1069 | |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 1070 | if (!refcount_read(&dev_net(dev)->ns.count)) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1071 | kobj->uevent_suppress = 1; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1072 | if (dev->sysfs_rx_queue_group) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1073 | sysfs_remove_group(kobj, dev->sysfs_rx_queue_group); |
| 1074 | kobject_put(kobj); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1075 | } |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1076 | |
| 1077 | return error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1078 | #else |
| 1079 | return 0; |
| 1080 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1081 | } |
| 1082 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1083 | static 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 decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1106 | #ifdef CONFIG_SYSFS |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1107 | /* |
| 1108 | * netdev_queue sysfs structures and functions. |
| 1109 | */ |
| 1110 | struct netdev_queue_attribute { |
| 1111 | struct attribute attr; |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1112 | ssize_t (*show)(struct netdev_queue *queue, char *buf); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1113 | ssize_t (*store)(struct netdev_queue *queue, |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1114 | const char *buf, size_t len); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1115 | }; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1116 | #define to_netdev_queue_attr(_attr) \ |
| 1117 | container_of(_attr, struct netdev_queue_attribute, attr) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1118 | |
| 1119 | #define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj) |
| 1120 | |
| 1121 | static ssize_t netdev_queue_attr_show(struct kobject *kobj, |
| 1122 | struct attribute *attr, char *buf) |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1123 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 1124 | const struct netdev_queue_attribute *attribute |
| 1125 | = to_netdev_queue_attr(attr); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1126 | struct netdev_queue *queue = to_netdev_queue(kobj); |
| 1127 | |
| 1128 | if (!attribute->show) |
| 1129 | return -EIO; |
| 1130 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1131 | return attribute->show(queue, buf); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | static ssize_t netdev_queue_attr_store(struct kobject *kobj, |
| 1135 | struct attribute *attr, |
| 1136 | const char *buf, size_t count) |
| 1137 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 1138 | const struct netdev_queue_attribute *attribute |
| 1139 | = to_netdev_queue_attr(attr); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1140 | struct netdev_queue *queue = to_netdev_queue(kobj); |
| 1141 | |
| 1142 | if (!attribute->store) |
| 1143 | return -EIO; |
| 1144 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1145 | return attribute->store(queue, buf, count); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1146 | } |
| 1147 | |
| 1148 | static const struct sysfs_ops netdev_queue_sysfs_ops = { |
| 1149 | .show = netdev_queue_attr_show, |
| 1150 | .store = netdev_queue_attr_store, |
| 1151 | }; |
| 1152 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1153 | static ssize_t tx_timeout_show(struct netdev_queue *queue, char *buf) |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1154 | { |
| 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 Wang | 9bb5fbe | 2020-07-21 15:02:57 +0800 | [diff] [blame] | 1161 | return sprintf(buf, fmt_ulong, trans_timeout); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1162 | } |
| 1163 | |
Thadeu Lima de Souza Cascardo | c4047f5 | 2015-09-15 18:28:00 -0300 | [diff] [blame] | 1164 | static unsigned int get_netdev_queue_index(struct netdev_queue *queue) |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1165 | { |
| 1166 | struct net_device *dev = queue->dev; |
Thadeu Lima de Souza Cascardo | c4047f5 | 2015-09-15 18:28:00 -0300 | [diff] [blame] | 1167 | unsigned int i; |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1168 | |
Thadeu Lima de Souza Cascardo | c4047f5 | 2015-09-15 18:28:00 -0300 | [diff] [blame] | 1169 | i = queue - dev->_tx; |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1170 | BUG_ON(i >= dev->num_tx_queues); |
| 1171 | |
| 1172 | return i; |
| 1173 | } |
| 1174 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1175 | static ssize_t traffic_class_show(struct netdev_queue *queue, |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1176 | char *buf) |
| 1177 | { |
| 1178 | struct net_device *dev = queue->dev; |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1179 | int num_tc, tc; |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1180 | int index; |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1181 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1182 | if (!netif_is_multiqueue(dev)) |
| 1183 | return -ENOENT; |
| 1184 | |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1185 | if (!rtnl_trylock()) |
| 1186 | return restart_syscall(); |
| 1187 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1188 | index = get_netdev_queue_index(queue); |
Alexander Duyck | ffcfe25 | 2018-07-09 12:19:38 -0400 | [diff] [blame] | 1189 | |
| 1190 | /* If queue belongs to subordinate dev use its TC mapping */ |
| 1191 | dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev; |
| 1192 | |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1193 | num_tc = dev->num_tc; |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1194 | tc = netdev_txq_to_tc(dev, index); |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1195 | |
| 1196 | rtnl_unlock(); |
| 1197 | |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1198 | if (tc < 0) |
| 1199 | return -EINVAL; |
| 1200 | |
Alexander Duyck | ffcfe25 | 2018-07-09 12:19:38 -0400 | [diff] [blame] | 1201 | /* 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 Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1208 | return num_tc < 0 ? sprintf(buf, "%d%d\n", tc, num_tc) : |
| 1209 | sprintf(buf, "%d\n", tc); |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1210 | } |
| 1211 | |
| 1212 | #ifdef CONFIG_XPS |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1213 | static ssize_t tx_maxrate_show(struct netdev_queue *queue, |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1214 | char *buf) |
| 1215 | { |
| 1216 | return sprintf(buf, "%lu\n", queue->tx_maxrate); |
| 1217 | } |
| 1218 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1219 | static ssize_t tx_maxrate_store(struct netdev_queue *queue, |
| 1220 | const char *buf, size_t len) |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1221 | { |
| 1222 | struct net_device *dev = queue->dev; |
| 1223 | int err, index = get_netdev_queue_index(queue); |
| 1224 | u32 rate = 0; |
| 1225 | |
Tyler Hicks | 3033fce | 2018-07-20 21:56:51 +0000 | [diff] [blame] | 1226 | if (!capable(CAP_NET_ADMIN)) |
| 1227 | return -EPERM; |
| 1228 | |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1229 | 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 hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1248 | static struct netdev_queue_attribute queue_tx_maxrate __ro_after_init |
| 1249 | = __ATTR_RW(tx_maxrate); |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1250 | #endif |
| 1251 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1252 | static struct netdev_queue_attribute queue_trans_timeout __ro_after_init |
| 1253 | = __ATTR_RO(tx_timeout); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1254 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1255 | static struct netdev_queue_attribute queue_traffic_class __ro_after_init |
| 1256 | = __ATTR_RO(traffic_class); |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1257 | |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1258 | #ifdef CONFIG_BQL |
| 1259 | /* |
| 1260 | * Byte queue limits sysfs structures and functions. |
| 1261 | */ |
| 1262 | static ssize_t bql_show(char *buf, unsigned int value) |
| 1263 | { |
| 1264 | return sprintf(buf, "%u\n", value); |
| 1265 | } |
| 1266 | |
| 1267 | static 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 hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1273 | if (!strcmp(buf, "max") || !strcmp(buf, "max\n")) { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1274 | value = DQL_MAX_LIMIT; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1275 | } else { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1276 | 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 | |
| 1288 | static ssize_t bql_show_hold_time(struct netdev_queue *queue, |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1289 | 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 | |
| 1296 | static ssize_t bql_set_hold_time(struct netdev_queue *queue, |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1297 | const char *buf, size_t len) |
| 1298 | { |
| 1299 | struct dql *dql = &queue->dql; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1300 | unsigned int value; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1301 | 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 hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1312 | static struct netdev_queue_attribute bql_hold_time_attribute __ro_after_init |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 1313 | = __ATTR(hold_time, 0644, |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1314 | bql_show_hold_time, bql_set_hold_time); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1315 | |
| 1316 | static ssize_t bql_show_inflight(struct netdev_queue *queue, |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1317 | 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 hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1324 | static struct netdev_queue_attribute bql_inflight_attribute __ro_after_init = |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 1325 | __ATTR(inflight, 0444, bql_show_inflight, NULL); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1326 | |
| 1327 | #define BQL_ATTR(NAME, FIELD) \ |
| 1328 | static ssize_t bql_show_ ## NAME(struct netdev_queue *queue, \ |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1329 | char *buf) \ |
| 1330 | { \ |
| 1331 | return bql_show(buf, queue->dql.FIELD); \ |
| 1332 | } \ |
| 1333 | \ |
| 1334 | static ssize_t bql_set_ ## NAME(struct netdev_queue *queue, \ |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1335 | const char *buf, size_t len) \ |
| 1336 | { \ |
| 1337 | return bql_set(buf, len, &queue->dql.FIELD); \ |
| 1338 | } \ |
| 1339 | \ |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1340 | static struct netdev_queue_attribute bql_ ## NAME ## _attribute __ro_after_init \ |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 1341 | = __ATTR(NAME, 0644, \ |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1342 | bql_show_ ## NAME, bql_set_ ## NAME) |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1343 | |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1344 | BQL_ATTR(limit, limit); |
| 1345 | BQL_ATTR(limit_max, max_limit); |
| 1346 | BQL_ATTR(limit_min, min_limit); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1347 | |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1348 | static struct attribute *dql_attrs[] __ro_after_init = { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1349 | &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 Yadav | 38ef00c | 2017-06-29 16:31:26 +0530 | [diff] [blame] | 1357 | static const struct attribute_group dql_group = { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1358 | .name = "byte_queue_limits", |
| 1359 | .attrs = dql_attrs, |
| 1360 | }; |
| 1361 | #endif /* CONFIG_BQL */ |
| 1362 | |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1363 | #ifdef CONFIG_XPS |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1364 | static ssize_t xps_cpus_show(struct netdev_queue *queue, |
| 1365 | char *buf) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1366 | { |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame^] | 1367 | int j, len, ret, num_tc = 1, tc = 0; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1368 | struct net_device *dev = queue->dev; |
| 1369 | struct xps_dev_maps *dev_maps; |
Antoine Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1370 | unsigned long *mask; |
| 1371 | unsigned int index; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1372 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1373 | if (!netif_is_multiqueue(dev)) |
| 1374 | return -ENOENT; |
| 1375 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1376 | index = get_netdev_queue_index(queue); |
| 1377 | |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1378 | if (!rtnl_trylock()) |
| 1379 | return restart_syscall(); |
| 1380 | |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1381 | if (dev->num_tc) { |
Alexander Duyck | ffcfe25 | 2018-07-09 12:19:38 -0400 | [diff] [blame] | 1382 | /* Do not allow XPS on subordinate device directly */ |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1383 | num_tc = dev->num_tc; |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1384 | if (num_tc < 0) { |
| 1385 | ret = -EINVAL; |
| 1386 | goto err_rtnl_unlock; |
| 1387 | } |
Alexander Duyck | ffcfe25 | 2018-07-09 12:19:38 -0400 | [diff] [blame] | 1388 | |
| 1389 | /* If queue belongs to subordinate dev use its map */ |
| 1390 | dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev; |
| 1391 | |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1392 | tc = netdev_txq_to_tc(dev, index); |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1393 | if (tc < 0) { |
| 1394 | ret = -EINVAL; |
| 1395 | goto err_rtnl_unlock; |
| 1396 | } |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1397 | } |
| 1398 | |
Antoine Tenart | ea4fe7e | 2021-03-18 19:37:40 +0100 | [diff] [blame] | 1399 | mask = bitmap_zalloc(nr_cpu_ids, GFP_KERNEL); |
| 1400 | if (!mask) { |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1401 | ret = -ENOMEM; |
| 1402 | goto err_rtnl_unlock; |
| 1403 | } |
Alexander Duyck | 664088f | 2018-05-31 15:59:46 -0400 | [diff] [blame] | 1404 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1405 | rcu_read_lock(); |
Amritha Nambiar | 80d1966 | 2018-06-29 21:26:41 -0700 | [diff] [blame] | 1406 | dev_maps = rcu_dereference(dev->xps_cpus_map); |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame^] | 1407 | if (!dev_maps) |
| 1408 | goto out_no_maps; |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1409 | |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame^] | 1410 | 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 Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1414 | |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame^] | 1415 | 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 Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1423 | } |
| 1424 | } |
| 1425 | } |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame^] | 1426 | out_no_maps: |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1427 | rcu_read_unlock(); |
| 1428 | |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1429 | rtnl_unlock(); |
| 1430 | |
Antoine Tenart | ea4fe7e | 2021-03-18 19:37:40 +0100 | [diff] [blame] | 1431 | len = bitmap_print_to_pagebuf(false, buf, mask, nr_cpu_ids); |
| 1432 | bitmap_free(mask); |
Tejun Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 1433 | return len < PAGE_SIZE ? len : -EINVAL; |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1434 | |
| 1435 | err_rtnl_unlock: |
| 1436 | rtnl_unlock(); |
| 1437 | return ret; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1438 | } |
| 1439 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1440 | static ssize_t xps_cpus_store(struct netdev_queue *queue, |
| 1441 | const char *buf, size_t len) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1442 | { |
| 1443 | struct net_device *dev = queue->dev; |
Antoine Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1444 | unsigned int index; |
Alexander Duyck | 537c00d | 2013-01-10 08:57:02 +0000 | [diff] [blame] | 1445 | cpumask_var_t mask; |
| 1446 | int err; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1447 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1448 | if (!netif_is_multiqueue(dev)) |
| 1449 | return -ENOENT; |
| 1450 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1451 | 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 Tenart | 1ad58225 | 2020-12-23 22:23:20 +0100 | [diff] [blame] | 1465 | if (!rtnl_trylock()) { |
| 1466 | free_cpumask_var(mask); |
| 1467 | return restart_syscall(); |
| 1468 | } |
| 1469 | |
Alexander Duyck | 537c00d | 2013-01-10 08:57:02 +0000 | [diff] [blame] | 1470 | err = netif_set_xps_queue(dev, mask, index); |
Antoine Tenart | 1ad58225 | 2020-12-23 22:23:20 +0100 | [diff] [blame] | 1471 | rtnl_unlock(); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1472 | |
| 1473 | free_cpumask_var(mask); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1474 | |
Alexander Duyck | 537c00d | 2013-01-10 08:57:02 +0000 | [diff] [blame] | 1475 | return err ? : len; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1476 | } |
| 1477 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1478 | static struct netdev_queue_attribute xps_cpus_attribute __ro_after_init |
| 1479 | = __ATTR_RW(xps_cpus); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1480 | |
| 1481 | static ssize_t xps_rxqs_show(struct netdev_queue *queue, char *buf) |
| 1482 | { |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1483 | int j, len, ret, num_tc = 1, tc = 0; |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1484 | struct net_device *dev = queue->dev; |
| 1485 | struct xps_dev_maps *dev_maps; |
Antoine Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1486 | unsigned long *mask; |
| 1487 | unsigned int index; |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1488 | |
| 1489 | index = get_netdev_queue_index(queue); |
| 1490 | |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1491 | if (!rtnl_trylock()) |
| 1492 | return restart_syscall(); |
| 1493 | |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1494 | if (dev->num_tc) { |
| 1495 | num_tc = dev->num_tc; |
| 1496 | tc = netdev_txq_to_tc(dev, index); |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1497 | if (tc < 0) { |
| 1498 | ret = -EINVAL; |
| 1499 | goto err_rtnl_unlock; |
| 1500 | } |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1501 | } |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1502 | mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL); |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1503 | if (!mask) { |
| 1504 | ret = -ENOMEM; |
| 1505 | goto err_rtnl_unlock; |
| 1506 | } |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1507 | |
| 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 | } |
| 1529 | out_no_maps: |
| 1530 | rcu_read_unlock(); |
| 1531 | |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1532 | rtnl_unlock(); |
| 1533 | |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1534 | len = bitmap_print_to_pagebuf(false, buf, mask, dev->num_rx_queues); |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1535 | bitmap_free(mask); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1536 | |
| 1537 | return len < PAGE_SIZE ? len : -EINVAL; |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1538 | |
| 1539 | err_rtnl_unlock: |
| 1540 | rtnl_unlock(); |
| 1541 | return ret; |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1542 | } |
| 1543 | |
| 1544 | static 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 Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1549 | unsigned long *mask; |
| 1550 | unsigned int index; |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1551 | int err; |
| 1552 | |
| 1553 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
| 1554 | return -EPERM; |
| 1555 | |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1556 | mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1557 | 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 Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1564 | bitmap_free(mask); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1565 | return err; |
| 1566 | } |
| 1567 | |
Antoine Tenart | 2d57b4f | 2020-12-23 22:23:22 +0100 | [diff] [blame] | 1568 | if (!rtnl_trylock()) { |
| 1569 | bitmap_free(mask); |
| 1570 | return restart_syscall(); |
| 1571 | } |
| 1572 | |
Andrei Vagin | 4d99f66 | 2018-08-08 20:07:35 -0700 | [diff] [blame] | 1573 | cpus_read_lock(); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1574 | err = __netif_set_xps_queue(dev, mask, index, true); |
Andrei Vagin | 4d99f66 | 2018-08-08 20:07:35 -0700 | [diff] [blame] | 1575 | cpus_read_unlock(); |
| 1576 | |
Antoine Tenart | 2d57b4f | 2020-12-23 22:23:22 +0100 | [diff] [blame] | 1577 | rtnl_unlock(); |
| 1578 | |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1579 | bitmap_free(mask); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1580 | return err ? : len; |
| 1581 | } |
| 1582 | |
| 1583 | static struct netdev_queue_attribute xps_rxqs_attribute __ro_after_init |
| 1584 | = __ATTR_RW(xps_rxqs); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1585 | #endif /* CONFIG_XPS */ |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1586 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1587 | static struct attribute *netdev_queue_default_attrs[] __ro_after_init = { |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1588 | &queue_trans_timeout.attr, |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1589 | &queue_traffic_class.attr, |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1590 | #ifdef CONFIG_XPS |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1591 | &xps_cpus_attribute.attr, |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1592 | &xps_rxqs_attribute.attr, |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1593 | &queue_tx_maxrate.attr, |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1594 | #endif |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1595 | NULL |
| 1596 | }; |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 1597 | ATTRIBUTE_GROUPS(netdev_queue_default); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1598 | |
| 1599 | static void netdev_queue_release(struct kobject *kobj) |
| 1600 | { |
| 1601 | struct netdev_queue *queue = to_netdev_queue(kobj); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1602 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1603 | memset(kobj, 0, sizeof(*kobj)); |
| 1604 | dev_put(queue->dev); |
| 1605 | } |
| 1606 | |
Weilong Chen | 82ef3d5 | 2014-01-16 17:24:31 +0800 | [diff] [blame] | 1607 | static 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 Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1619 | static 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 hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1627 | static struct kobj_type netdev_queue_ktype __ro_after_init = { |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1628 | .sysfs_ops = &netdev_queue_sysfs_ops, |
| 1629 | .release = netdev_queue_release, |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 1630 | .default_groups = netdev_queue_default_groups, |
Weilong Chen | 82ef3d5 | 2014-01-16 17:24:31 +0800 | [diff] [blame] | 1631 | .namespace = netdev_queue_namespace, |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1632 | .get_ownership = netdev_queue_get_ownership, |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1633 | }; |
| 1634 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1635 | static int netdev_queue_add_kobject(struct net_device *dev, int index) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1636 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1637 | struct netdev_queue *queue = dev->_tx + index; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1638 | struct kobject *kobj = &queue->kobj; |
| 1639 | int error = 0; |
| 1640 | |
Jouni Hogander | e0b60903 | 2019-12-05 15:57:07 +0200 | [diff] [blame] | 1641 | /* 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 Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1646 | kobj->kset = dev->queues_kset; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1647 | error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1648 | "tx-%u", index); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1649 | if (error) |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1650 | goto err; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1651 | |
| 1652 | #ifdef CONFIG_BQL |
| 1653 | error = sysfs_create_group(kobj, &dql_group); |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1654 | if (error) |
| 1655 | goto err; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1656 | #endif |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1657 | |
| 1658 | kobject_uevent(kobj, KOBJ_ADD); |
Eric Dumazet | 48a322b | 2019-11-20 19:19:07 -0800 | [diff] [blame] | 1659 | return 0; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1660 | |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1661 | err: |
| 1662 | kobject_put(kobj); |
| 1663 | return error; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1664 | } |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1665 | |
| 1666 | static 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 decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1682 | #endif /* CONFIG_SYSFS */ |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1683 | |
| 1684 | int |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1685 | netdev_queue_update_kobjects(struct net_device *dev, int old_num, int new_num) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1686 | { |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1687 | #ifdef CONFIG_SYSFS |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1688 | int i; |
| 1689 | int error = 0; |
| 1690 | |
| 1691 | for (i = old_num; i < new_num; i++) { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1692 | error = netdev_queue_add_kobject(dev, i); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1693 | if (error) { |
| 1694 | new_num = old_num; |
| 1695 | break; |
| 1696 | } |
| 1697 | } |
| 1698 | |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1699 | while (--i >= new_num) { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1700 | struct netdev_queue *queue = dev->_tx + i; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1701 | |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 1702 | if (!refcount_read(&dev_net(dev)->ns.count)) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1703 | queue->kobj.uevent_suppress = 1; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1704 | #ifdef CONFIG_BQL |
| 1705 | sysfs_remove_group(&queue->kobj, &dql_group); |
| 1706 | #endif |
| 1707 | kobject_put(&queue->kobj); |
| 1708 | } |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1709 | |
| 1710 | return error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1711 | #else |
| 1712 | return 0; |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1713 | #endif /* CONFIG_SYSFS */ |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1714 | } |
| 1715 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1716 | static 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 Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1735 | static int register_queue_kobjects(struct net_device *dev) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1736 | { |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1737 | int error = 0, txq = 0, rxq = 0, real_rx = 0, real_tx = 0; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1738 | |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1739 | #ifdef CONFIG_SYSFS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1740 | dev->queues_kset = kset_create_and_add("queues", |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1741 | NULL, &dev->dev.kobj); |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1742 | if (!dev->queues_kset) |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1743 | return -ENOMEM; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1744 | real_rx = dev->real_num_rx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1745 | #endif |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1746 | real_tx = dev->real_num_tx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1747 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1748 | error = net_rx_queue_update_kobjects(dev, 0, real_rx); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1749 | if (error) |
| 1750 | goto error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1751 | rxq = real_rx; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1752 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1753 | error = netdev_queue_update_kobjects(dev, 0, real_tx); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1754 | if (error) |
| 1755 | goto error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1756 | txq = real_tx; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1757 | |
| 1758 | return 0; |
| 1759 | |
| 1760 | error: |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1761 | netdev_queue_update_kobjects(dev, txq, 0); |
| 1762 | net_rx_queue_update_kobjects(dev, rxq, 0); |
YueHaibing | 895a5e9 | 2019-03-02 10:34:55 +0800 | [diff] [blame] | 1763 | #ifdef CONFIG_SYSFS |
| 1764 | kset_unregister(dev->queues_kset); |
| 1765 | #endif |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1766 | return error; |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1767 | } |
| 1768 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1769 | static 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 Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1794 | static void remove_queue_kobjects(struct net_device *dev) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1795 | { |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1796 | int real_rx = 0, real_tx = 0; |
| 1797 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1798 | #ifdef CONFIG_SYSFS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1799 | real_rx = dev->real_num_rx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1800 | #endif |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1801 | real_tx = dev->real_num_tx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1802 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1803 | net_rx_queue_update_kobjects(dev, real_rx, 0); |
| 1804 | netdev_queue_update_kobjects(dev, real_tx, 0); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1805 | #ifdef CONFIG_SYSFS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1806 | kset_unregister(dev->queues_kset); |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1807 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1808 | } |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1809 | |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 1810 | static 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 Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1817 | static void *net_grab_current_ns(void) |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1818 | { |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1819 | struct net *ns = current->nsproxy->net_ns; |
| 1820 | #ifdef CONFIG_NET_NS |
| 1821 | if (ns) |
Reshetova, Elena | c122e14 | 2017-06-30 13:08:08 +0300 | [diff] [blame] | 1822 | refcount_inc(&ns->passive); |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1823 | #endif |
| 1824 | return ns; |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1825 | } |
| 1826 | |
| 1827 | static const void *net_initial_ns(void) |
| 1828 | { |
| 1829 | return &init_net; |
| 1830 | } |
| 1831 | |
| 1832 | static const void *net_netlink_ns(struct sock *sk) |
| 1833 | { |
| 1834 | return sock_net(sk); |
| 1835 | } |
| 1836 | |
stephen hemminger | 737aec5 | 2017-08-18 13:46:22 -0700 | [diff] [blame] | 1837 | const struct kobj_ns_type_operations net_ns_type_operations = { |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1838 | .type = KOBJ_NS_TYPE_NET, |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 1839 | .current_may_mount = net_current_may_mount, |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1840 | .grab_current_ns = net_grab_current_ns, |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1841 | .netlink_ns = net_netlink_ns, |
| 1842 | .initial_ns = net_initial_ns, |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1843 | .drop_ns = net_drop_ns, |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1844 | }; |
Johannes Berg | 0460079 | 2010-08-05 17:45:15 +0200 | [diff] [blame] | 1845 | EXPORT_SYMBOL_GPL(net_ns_type_operations); |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1846 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1847 | static int netdev_uevent(struct device *d, struct kobj_uevent_env *env) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1849 | struct net_device *dev = to_net_dev(d); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1850 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 1852 | /* pass interface to uevent. */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1853 | retval = add_uevent_var(env, "INTERFACE=%s", dev->name); |
Eric Rannaud | bf62456 | 2007-03-30 22:23:12 -0700 | [diff] [blame] | 1854 | if (retval) |
| 1855 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1856 | |
Jean Tourrilhes | ca2f37d | 2007-03-07 10:49:30 -0800 | [diff] [blame] | 1857 | /* pass ifindex to uevent. |
| 1858 | * ifindex is useful as it won't change (interface name may change) |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1859 | * and is what RtNetlink uses natively. |
| 1860 | */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1861 | retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex); |
Jean Tourrilhes | ca2f37d | 2007-03-07 10:49:30 -0800 | [diff] [blame] | 1862 | |
Eric Rannaud | bf62456 | 2007-03-30 22:23:12 -0700 | [diff] [blame] | 1863 | exit: |
Eric Rannaud | bf62456 | 2007-03-30 22:23:12 -0700 | [diff] [blame] | 1864 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | |
| 1867 | /* |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 1868 | * netdev_release -- destroy and free a dead device. |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1869 | * Called when last reference to device kobject is gone. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1871 | static void netdev_release(struct device *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1873 | struct net_device *dev = to_net_dev(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | |
| 1875 | BUG_ON(dev->reg_state != NETREG_RELEASED); |
| 1876 | |
Florian Westphal | 6c55700 | 2017-10-02 23:50:05 +0200 | [diff] [blame] | 1877 | /* 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 Dumazet | 74d332c | 2013-10-30 13:10:44 -0700 | [diff] [blame] | 1881 | netdev_freemem(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | } |
| 1883 | |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1884 | static const void *net_namespace(struct device *d) |
| 1885 | { |
Geliang Tang | 5c29482 | 2015-12-22 23:11:49 +0800 | [diff] [blame] | 1886 | struct net_device *dev = to_net_dev(d); |
| 1887 | |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1888 | return dev_net(dev); |
| 1889 | } |
| 1890 | |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1891 | static 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 hemminger | e6d473e | 2017-08-18 13:46:21 -0700 | [diff] [blame] | 1899 | static struct class net_class __ro_after_init = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | .name = "net", |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1901 | .dev_release = netdev_release, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 1902 | .dev_groups = net_class_groups, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1903 | .dev_uevent = netdev_uevent, |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1904 | .ns_type = &net_ns_type_operations, |
| 1905 | .namespace = net_namespace, |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1906 | .get_ownership = net_get_ownership, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | }; |
| 1908 | |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1909 | #ifdef CONFIG_OF_NET |
| 1910 | static int of_dev_node_match(struct device *dev, const void *data) |
| 1911 | { |
Tobias Waldekranz | 2e186a2 | 2020-05-15 11:52:52 +0200 | [diff] [blame] | 1912 | for (; dev; dev = dev->parent) { |
| 1913 | if (dev->of_node == data) |
| 1914 | return 1; |
| 1915 | } |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1916 | |
Tobias Waldekranz | 2e186a2 | 2020-05-15 11:52:52 +0200 | [diff] [blame] | 1917 | return 0; |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1918 | } |
| 1919 | |
Russell King | 9861f72 | 2015-09-24 20:36:33 +0100 | [diff] [blame] | 1920 | /* |
| 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 Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1929 | struct 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 | } |
| 1939 | EXPORT_SYMBOL(of_find_net_device_by_node); |
| 1940 | #endif |
| 1941 | |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1942 | /* Delete sysfs entries but hold kobject reference until after all |
| 1943 | * netdev references are gone. |
| 1944 | */ |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1945 | void netdev_unregister_kobject(struct net_device *ndev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1947 | struct device *dev = &ndev->dev; |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1948 | |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 1949 | if (!refcount_read(&dev_net(ndev)->ns.count)) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1950 | dev_set_uevent_suppress(dev, 1); |
| 1951 | |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1952 | kobject_get(&dev->kobj); |
Eric W. Biederman | 3891845 | 2008-10-27 17:51:47 -0700 | [diff] [blame] | 1953 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1954 | remove_queue_kobjects(ndev); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1955 | |
Ming Lei | 9802c8e | 2013-02-22 16:34:16 -0800 | [diff] [blame] | 1956 | pm_runtime_set_memalloc_noio(dev, false); |
| 1957 | |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1958 | device_del(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | } |
| 1960 | |
| 1961 | /* Create sysfs entries for network device. */ |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1962 | int netdev_register_kobject(struct net_device *ndev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1964 | struct device *dev = &ndev->dev; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1965 | const struct attribute_group **groups = ndev->sysfs_groups; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1966 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | |
Eric W. Biederman | a1b3f59 | 2010-05-04 17:36:49 -0700 | [diff] [blame] | 1968 | device_initialize(dev); |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1969 | dev->class = &net_class; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1970 | dev->platform_data = ndev; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1971 | dev->groups = groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1972 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1973 | dev_set_name(dev, "%s", ndev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | |
Eric W. Biederman | 8b41d18 | 2007-09-26 22:02:53 -0700 | [diff] [blame] | 1975 | #ifdef CONFIG_SYSFS |
Eric W. Biederman | 0c509a6 | 2009-10-29 14:18:21 +0000 | [diff] [blame] | 1976 | /* Allow for a device specific group */ |
| 1977 | if (*groups) |
| 1978 | groups++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | |
Eric W. Biederman | 0c509a6 | 2009-10-29 14:18:21 +0000 | [diff] [blame] | 1980 | *groups++ = &netstat_group; |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 1981 | |
| 1982 | #if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211) |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1983 | if (ndev->ieee80211_ptr) |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 1984 | *groups++ = &wireless_group; |
| 1985 | #if IS_ENABLED(CONFIG_WIRELESS_EXT) |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1986 | else if (ndev->wireless_handlers) |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 1987 | *groups++ = &wireless_group; |
| 1988 | #endif |
| 1989 | #endif |
Eric W. Biederman | 8b41d18 | 2007-09-26 22:02:53 -0700 | [diff] [blame] | 1990 | #endif /* CONFIG_SYSFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1992 | error = device_add(dev); |
| 1993 | if (error) |
Wang Hai | 8ed633b | 2019-04-12 16:36:33 -0400 | [diff] [blame] | 1994 | return error; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1995 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1996 | error = register_queue_kobjects(ndev); |
Wang Hai | 8ed633b | 2019-04-12 16:36:33 -0400 | [diff] [blame] | 1997 | if (error) { |
| 1998 | device_del(dev); |
| 1999 | return error; |
| 2000 | } |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 2001 | |
Ming Lei | 9802c8e | 2013-02-22 16:34:16 -0800 | [diff] [blame] | 2002 | pm_runtime_set_memalloc_noio(dev, true); |
| 2003 | |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 2004 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | } |
| 2006 | |
Christian Brauner | e6dee9f | 2020-02-27 04:37:17 +0100 | [diff] [blame] | 2007 | /* Change owner for sysfs entries when moving network devices across network |
| 2008 | * namespaces owned by different user namespaces. |
| 2009 | */ |
| 2010 | int 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 Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 2031 | error = queue_change_owner(ndev, new_uid, new_gid); |
| 2032 | if (error) |
| 2033 | return error; |
| 2034 | |
Christian Brauner | e6dee9f | 2020-02-27 04:37:17 +0100 | [diff] [blame] | 2035 | return 0; |
| 2036 | } |
| 2037 | |
stephen hemminger | b793dc5 | 2017-08-18 13:46:20 -0700 | [diff] [blame] | 2038 | int netdev_class_create_file_ns(const struct class_attribute *class_attr, |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2039 | const void *ns) |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2040 | { |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2041 | return class_create_file_ns(&net_class, class_attr, ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2042 | } |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2043 | EXPORT_SYMBOL(netdev_class_create_file_ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2044 | |
stephen hemminger | b793dc5 | 2017-08-18 13:46:20 -0700 | [diff] [blame] | 2045 | void netdev_class_remove_file_ns(const struct class_attribute *class_attr, |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2046 | const void *ns) |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2047 | { |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2048 | class_remove_file_ns(&net_class, class_attr, ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2049 | } |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2050 | EXPORT_SYMBOL(netdev_class_remove_file_ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2051 | |
Daniel Borkmann | a48d4bb | 2014-01-06 01:20:11 +0100 | [diff] [blame] | 2052 | int __init netdev_kobject_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2053 | { |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 2054 | kobj_ns_type_register(&net_ns_type_operations); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | return class_register(&net_class); |
| 2056 | } |