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 | { |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 178 | struct net_device *netdev = to_net_dev(dev); |
| 179 | |
| 180 | /* The check is also done in change_carrier; this helps returning early |
| 181 | * without hitting the trylock/restart in netdev_store. |
| 182 | */ |
| 183 | if (!netdev->netdev_ops->ndo_change_carrier) |
| 184 | return -EOPNOTSUPP; |
| 185 | |
Jiri Pirko | fdae0fd | 2012-12-27 23:49:38 +0000 | [diff] [blame] | 186 | return netdev_store(dev, attr, buf, len, change_carrier); |
| 187 | } |
| 188 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 189 | static ssize_t carrier_show(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 190 | struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
| 192 | struct net_device *netdev = to_net_dev(dev); |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 193 | |
| 194 | if (netif_running(netdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | return sprintf(buf, fmt_dec, !!netif_carrier_ok(netdev)); |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | return -EINVAL; |
| 198 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 199 | static DEVICE_ATTR_RW(carrier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 201 | static ssize_t speed_show(struct device *dev, |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 202 | struct device_attribute *attr, char *buf) |
| 203 | { |
| 204 | struct net_device *netdev = to_net_dev(dev); |
| 205 | int ret = -EINVAL; |
| 206 | |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 207 | /* The check is also done in __ethtool_get_link_ksettings; this helps |
| 208 | * returning early without hitting the trylock/restart below. |
| 209 | */ |
| 210 | if (!netdev->ethtool_ops->get_link_ksettings) |
| 211 | return ret; |
| 212 | |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 213 | if (!rtnl_trylock()) |
| 214 | return restart_syscall(); |
| 215 | |
David Decotigny | 8ae6daca | 2011-04-27 18:32:38 +0000 | [diff] [blame] | 216 | if (netif_running(netdev)) { |
David Decotigny | 7cad1ba | 2016-02-24 10:58:10 -0800 | [diff] [blame] | 217 | struct ethtool_link_ksettings cmd; |
| 218 | |
| 219 | if (!__ethtool_get_link_ksettings(netdev, &cmd)) |
| 220 | ret = sprintf(buf, fmt_dec, cmd.base.speed); |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 221 | } |
| 222 | rtnl_unlock(); |
| 223 | return ret; |
| 224 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 225 | static DEVICE_ATTR_RO(speed); |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 226 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 227 | static ssize_t duplex_show(struct device *dev, |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 228 | struct device_attribute *attr, char *buf) |
| 229 | { |
| 230 | struct net_device *netdev = to_net_dev(dev); |
| 231 | int ret = -EINVAL; |
| 232 | |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 233 | /* The check is also done in __ethtool_get_link_ksettings; this helps |
| 234 | * returning early without hitting the trylock/restart below. |
| 235 | */ |
| 236 | if (!netdev->ethtool_ops->get_link_ksettings) |
| 237 | return ret; |
| 238 | |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 239 | if (!rtnl_trylock()) |
| 240 | return restart_syscall(); |
| 241 | |
David Decotigny | 8ae6daca | 2011-04-27 18:32:38 +0000 | [diff] [blame] | 242 | if (netif_running(netdev)) { |
David Decotigny | 7cad1ba | 2016-02-24 10:58:10 -0800 | [diff] [blame] | 243 | struct ethtool_link_ksettings cmd; |
| 244 | |
| 245 | if (!__ethtool_get_link_ksettings(netdev, &cmd)) { |
Nikolay Aleksandrov | c6c1396 | 2012-09-05 04:11:28 +0000 | [diff] [blame] | 246 | const char *duplex; |
David Decotigny | 7cad1ba | 2016-02-24 10:58:10 -0800 | [diff] [blame] | 247 | |
| 248 | switch (cmd.base.duplex) { |
Nikolay Aleksandrov | c6c1396 | 2012-09-05 04:11:28 +0000 | [diff] [blame] | 249 | case DUPLEX_HALF: |
| 250 | duplex = "half"; |
| 251 | break; |
| 252 | case DUPLEX_FULL: |
| 253 | duplex = "full"; |
| 254 | break; |
| 255 | default: |
| 256 | duplex = "unknown"; |
| 257 | break; |
| 258 | } |
| 259 | ret = sprintf(buf, "%s\n", duplex); |
| 260 | } |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 261 | } |
| 262 | rtnl_unlock(); |
| 263 | return ret; |
| 264 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 265 | static DEVICE_ATTR_RO(duplex); |
Andy Gospodarek | d519e17 | 2009-10-02 09:26:12 +0000 | [diff] [blame] | 266 | |
Andrew Lunn | db30a57 | 2020-04-20 00:11:51 +0200 | [diff] [blame] | 267 | static ssize_t testing_show(struct device *dev, |
| 268 | struct device_attribute *attr, char *buf) |
| 269 | { |
| 270 | struct net_device *netdev = to_net_dev(dev); |
| 271 | |
| 272 | if (netif_running(netdev)) |
| 273 | return sprintf(buf, fmt_dec, !!netif_testing(netdev)); |
| 274 | |
| 275 | return -EINVAL; |
| 276 | } |
| 277 | static DEVICE_ATTR_RO(testing); |
| 278 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 279 | static ssize_t dormant_show(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 280 | struct device_attribute *attr, char *buf) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 281 | { |
| 282 | struct net_device *netdev = to_net_dev(dev); |
| 283 | |
| 284 | if (netif_running(netdev)) |
| 285 | return sprintf(buf, fmt_dec, !!netif_dormant(netdev)); |
| 286 | |
| 287 | return -EINVAL; |
| 288 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 289 | static DEVICE_ATTR_RO(dormant); |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 290 | |
Jan Engelhardt | 36cbd3d | 2009-08-05 10:42:58 -0700 | [diff] [blame] | 291 | static const char *const operstates[] = { |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 292 | "unknown", |
| 293 | "notpresent", /* currently unused */ |
| 294 | "down", |
| 295 | "lowerlayerdown", |
Andrew Lunn | db30a57 | 2020-04-20 00:11:51 +0200 | [diff] [blame] | 296 | "testing", |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 297 | "dormant", |
| 298 | "up" |
| 299 | }; |
| 300 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 301 | static ssize_t operstate_show(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 302 | struct device_attribute *attr, char *buf) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 303 | { |
| 304 | const struct net_device *netdev = to_net_dev(dev); |
| 305 | unsigned char operstate; |
| 306 | |
| 307 | read_lock(&dev_base_lock); |
| 308 | operstate = netdev->operstate; |
| 309 | if (!netif_running(netdev)) |
| 310 | operstate = IF_OPER_DOWN; |
| 311 | read_unlock(&dev_base_lock); |
| 312 | |
Adrian Bunk | e3a5cd9 | 2006-04-05 22:19:47 -0700 | [diff] [blame] | 313 | if (operstate >= ARRAY_SIZE(operstates)) |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 314 | return -EINVAL; /* should not happen */ |
| 315 | |
| 316 | return sprintf(buf, "%s\n", operstates[operstate]); |
| 317 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 318 | static DEVICE_ATTR_RO(operstate); |
Stefan Rompf | b00055a | 2006-03-20 17:09:11 -0800 | [diff] [blame] | 319 | |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 320 | static ssize_t carrier_changes_show(struct device *dev, |
| 321 | struct device_attribute *attr, |
| 322 | char *buf) |
| 323 | { |
| 324 | struct net_device *netdev = to_net_dev(dev); |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 325 | |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 326 | return sprintf(buf, fmt_dec, |
David Decotigny | b2d3bcf | 2018-01-18 09:59:13 -0800 | [diff] [blame] | 327 | atomic_read(&netdev->carrier_up_count) + |
| 328 | atomic_read(&netdev->carrier_down_count)); |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 329 | } |
| 330 | static DEVICE_ATTR_RO(carrier_changes); |
| 331 | |
David Decotigny | b2d3bcf | 2018-01-18 09:59:13 -0800 | [diff] [blame] | 332 | static ssize_t carrier_up_count_show(struct device *dev, |
| 333 | struct device_attribute *attr, |
| 334 | char *buf) |
| 335 | { |
| 336 | struct net_device *netdev = to_net_dev(dev); |
| 337 | |
| 338 | return sprintf(buf, fmt_dec, atomic_read(&netdev->carrier_up_count)); |
| 339 | } |
| 340 | static DEVICE_ATTR_RO(carrier_up_count); |
| 341 | |
| 342 | static ssize_t carrier_down_count_show(struct device *dev, |
| 343 | struct device_attribute *attr, |
| 344 | char *buf) |
| 345 | { |
| 346 | struct net_device *netdev = to_net_dev(dev); |
| 347 | |
| 348 | return sprintf(buf, fmt_dec, atomic_read(&netdev->carrier_down_count)); |
| 349 | } |
| 350 | static DEVICE_ATTR_RO(carrier_down_count); |
| 351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | /* read-write attributes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 354 | static int change_mtu(struct net_device *dev, unsigned long new_mtu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 356 | return dev_set_mtu(dev, (int)new_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 359 | 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] | 360 | const char *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 362 | return netdev_store(dev, attr, buf, len, change_mtu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 364 | NETDEVICE_SHOW_RW(mtu, fmt_dec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 366 | static int change_flags(struct net_device *dev, unsigned long new_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { |
Petr Machata | 567c5e1 | 2018-12-06 17:05:42 +0000 | [diff] [blame] | 368 | return dev_change_flags(dev, (unsigned int)new_flags, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 371 | 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] | 372 | const char *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 374 | return netdev_store(dev, attr, buf, len, change_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 376 | NETDEVICE_SHOW_RW(flags, fmt_hex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 378 | static ssize_t tx_queue_len_store(struct device *dev, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 379 | struct device_attribute *attr, |
| 380 | const char *buf, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 382 | if (!capable(CAP_NET_ADMIN)) |
| 383 | return -EPERM; |
| 384 | |
Cong Wang | 6a643dd | 2018-01-25 18:26:22 -0800 | [diff] [blame] | 385 | return netdev_store(dev, attr, buf, len, dev_change_tx_queue_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | } |
Alexey Dobriyan | 0cd2950 | 2017-05-17 13:30:44 +0300 | [diff] [blame] | 387 | NETDEVICE_SHOW_RW(tx_queue_len, fmt_dec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 389 | static int change_gro_flush_timeout(struct net_device *dev, unsigned long val) |
| 390 | { |
Eric Dumazet | 7e417a6 | 2020-04-22 09:13:28 -0700 | [diff] [blame] | 391 | WRITE_ONCE(dev->gro_flush_timeout, val); |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 392 | return 0; |
| 393 | } |
| 394 | |
| 395 | static ssize_t gro_flush_timeout_store(struct device *dev, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 396 | struct device_attribute *attr, |
| 397 | const char *buf, size_t len) |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 398 | { |
| 399 | if (!capable(CAP_NET_ADMIN)) |
| 400 | return -EPERM; |
| 401 | |
| 402 | return netdev_store(dev, attr, buf, len, change_gro_flush_timeout); |
| 403 | } |
| 404 | NETDEVICE_SHOW_RW(gro_flush_timeout, fmt_ulong); |
| 405 | |
Eric Dumazet | 6f8b12d | 2020-04-22 09:13:27 -0700 | [diff] [blame] | 406 | static int change_napi_defer_hard_irqs(struct net_device *dev, unsigned long val) |
| 407 | { |
Eric Dumazet | 7e417a6 | 2020-04-22 09:13:28 -0700 | [diff] [blame] | 408 | WRITE_ONCE(dev->napi_defer_hard_irqs, val); |
Eric Dumazet | 6f8b12d | 2020-04-22 09:13:27 -0700 | [diff] [blame] | 409 | return 0; |
| 410 | } |
| 411 | |
| 412 | static ssize_t napi_defer_hard_irqs_store(struct device *dev, |
| 413 | struct device_attribute *attr, |
| 414 | const char *buf, size_t len) |
| 415 | { |
| 416 | if (!capable(CAP_NET_ADMIN)) |
| 417 | return -EPERM; |
| 418 | |
| 419 | return netdev_store(dev, attr, buf, len, change_napi_defer_hard_irqs); |
| 420 | } |
| 421 | NETDEVICE_SHOW_RW(napi_defer_hard_irqs, fmt_dec); |
| 422 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 423 | static ssize_t ifalias_store(struct device *dev, struct device_attribute *attr, |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 424 | const char *buf, size_t len) |
| 425 | { |
| 426 | struct net_device *netdev = to_net_dev(dev); |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 427 | struct net *net = dev_net(netdev); |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 428 | size_t count = len; |
Roopa Prabhu | c92eb77 | 2017-11-13 23:21:36 -0800 | [diff] [blame] | 429 | ssize_t ret = 0; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 430 | |
Eric W. Biederman | 5e1fccc | 2012-11-16 03:03:04 +0000 | [diff] [blame] | 431 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 432 | return -EPERM; |
| 433 | |
| 434 | /* ignore trailing newline */ |
| 435 | if (len > 0 && buf[len - 1] == '\n') |
| 436 | --count; |
| 437 | |
Roopa Prabhu | c92eb77 | 2017-11-13 23:21:36 -0800 | [diff] [blame] | 438 | if (!rtnl_trylock()) |
| 439 | return restart_syscall(); |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 440 | |
Roopa Prabhu | c92eb77 | 2017-11-13 23:21:36 -0800 | [diff] [blame] | 441 | if (dev_isalive(netdev)) { |
| 442 | ret = dev_set_alias(netdev, buf, count); |
| 443 | if (ret < 0) |
| 444 | goto err; |
| 445 | ret = len; |
| 446 | netdev_state_change(netdev); |
| 447 | } |
| 448 | err: |
| 449 | rtnl_unlock(); |
| 450 | |
| 451 | return ret; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 452 | } |
| 453 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 454 | static ssize_t ifalias_show(struct device *dev, |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 455 | struct device_attribute *attr, char *buf) |
| 456 | { |
| 457 | const struct net_device *netdev = to_net_dev(dev); |
Florian Westphal | 6c55700 | 2017-10-02 23:50:05 +0200 | [diff] [blame] | 458 | char tmp[IFALIASZ]; |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 459 | ssize_t ret = 0; |
| 460 | |
Florian Westphal | 6c55700 | 2017-10-02 23:50:05 +0200 | [diff] [blame] | 461 | ret = dev_get_alias(netdev, tmp, sizeof(tmp)); |
| 462 | if (ret > 0) |
| 463 | ret = sprintf(buf, "%s\n", tmp); |
Stephen Hemminger | 0b815a1 | 2008-09-22 21:28:11 -0700 | [diff] [blame] | 464 | return ret; |
| 465 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 466 | static DEVICE_ATTR_RW(ifalias); |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 467 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 468 | static int change_group(struct net_device *dev, unsigned long new_group) |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 469 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 470 | dev_set_group(dev, (int)new_group); |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 471 | return 0; |
| 472 | } |
| 473 | |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 474 | static ssize_t group_store(struct device *dev, struct device_attribute *attr, |
| 475 | const char *buf, size_t len) |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 476 | { |
| 477 | return netdev_store(dev, attr, buf, len, change_group); |
| 478 | } |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 479 | NETDEVICE_SHOW(group, fmt_dec); |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 480 | static DEVICE_ATTR(netdev_group, 0644, group_show, group_store); |
Vlad Dogaru | a512b92 | 2011-01-24 03:37:29 +0000 | [diff] [blame] | 481 | |
Anuradha Karuppiah | d746d70 | 2015-07-14 13:43:19 -0700 | [diff] [blame] | 482 | static int change_proto_down(struct net_device *dev, unsigned long proto_down) |
| 483 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 484 | return dev_change_proto_down(dev, (bool)proto_down); |
Anuradha Karuppiah | d746d70 | 2015-07-14 13:43:19 -0700 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | static ssize_t proto_down_store(struct device *dev, |
| 488 | struct device_attribute *attr, |
| 489 | const char *buf, size_t len) |
| 490 | { |
| 491 | return netdev_store(dev, attr, buf, len, change_proto_down); |
| 492 | } |
| 493 | NETDEVICE_SHOW_RW(proto_down, fmt_dec); |
| 494 | |
Linus Torvalds | cc998ff | 2013-09-05 14:54:29 -0700 | [diff] [blame] | 495 | static ssize_t phys_port_id_show(struct device *dev, |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 496 | struct device_attribute *attr, char *buf) |
| 497 | { |
| 498 | struct net_device *netdev = to_net_dev(dev); |
| 499 | ssize_t ret = -EINVAL; |
| 500 | |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 501 | /* The check is also done in dev_get_phys_port_id; this helps returning |
| 502 | * early without hitting the trylock/restart below. |
| 503 | */ |
| 504 | if (!netdev->netdev_ops->ndo_get_phys_port_id) |
| 505 | return -EOPNOTSUPP; |
| 506 | |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 507 | if (!rtnl_trylock()) |
| 508 | return restart_syscall(); |
| 509 | |
| 510 | if (dev_isalive(netdev)) { |
Jiri Pirko | 02637fc | 2014-11-28 14:34:16 +0100 | [diff] [blame] | 511 | struct netdev_phys_item_id ppid; |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 512 | |
| 513 | ret = dev_get_phys_port_id(netdev, &ppid); |
| 514 | if (!ret) |
| 515 | ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id); |
| 516 | } |
| 517 | rtnl_unlock(); |
| 518 | |
| 519 | return ret; |
| 520 | } |
Linus Torvalds | cc998ff | 2013-09-05 14:54:29 -0700 | [diff] [blame] | 521 | static DEVICE_ATTR_RO(phys_port_id); |
Jiri Pirko | ff80e51 | 2013-07-29 18:16:51 +0200 | [diff] [blame] | 522 | |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 523 | static ssize_t phys_port_name_show(struct device *dev, |
| 524 | struct device_attribute *attr, char *buf) |
| 525 | { |
| 526 | struct net_device *netdev = to_net_dev(dev); |
| 527 | ssize_t ret = -EINVAL; |
| 528 | |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 529 | /* The checks are also done in dev_get_phys_port_name; this helps |
| 530 | * returning early without hitting the trylock/restart below. |
| 531 | */ |
| 532 | if (!netdev->netdev_ops->ndo_get_phys_port_name && |
| 533 | !netdev->netdev_ops->ndo_get_devlink_port) |
| 534 | return -EOPNOTSUPP; |
| 535 | |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 536 | if (!rtnl_trylock()) |
| 537 | return restart_syscall(); |
| 538 | |
| 539 | if (dev_isalive(netdev)) { |
| 540 | char name[IFNAMSIZ]; |
| 541 | |
| 542 | ret = dev_get_phys_port_name(netdev, name, sizeof(name)); |
| 543 | if (!ret) |
| 544 | ret = sprintf(buf, "%s\n", name); |
| 545 | } |
| 546 | rtnl_unlock(); |
| 547 | |
| 548 | return ret; |
| 549 | } |
| 550 | static DEVICE_ATTR_RO(phys_port_name); |
| 551 | |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 552 | static ssize_t phys_switch_id_show(struct device *dev, |
| 553 | struct device_attribute *attr, char *buf) |
| 554 | { |
| 555 | struct net_device *netdev = to_net_dev(dev); |
| 556 | ssize_t ret = -EINVAL; |
| 557 | |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 558 | /* The checks are also done in dev_get_phys_port_name; this helps |
| 559 | * returning early without hitting the trylock/restart below. This works |
| 560 | * because recurse is false when calling dev_get_port_parent_id. |
| 561 | */ |
| 562 | if (!netdev->netdev_ops->ndo_get_port_parent_id && |
| 563 | !netdev->netdev_ops->ndo_get_devlink_port) |
| 564 | return -EOPNOTSUPP; |
| 565 | |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 566 | if (!rtnl_trylock()) |
| 567 | return restart_syscall(); |
| 568 | |
| 569 | if (dev_isalive(netdev)) { |
Florian Fainelli | bccb302 | 2019-02-06 09:45:46 -0800 | [diff] [blame] | 570 | struct netdev_phys_item_id ppid = { }; |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 571 | |
Florian Fainelli | bccb302 | 2019-02-06 09:45:46 -0800 | [diff] [blame] | 572 | ret = dev_get_port_parent_id(netdev, &ppid, false); |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 573 | if (!ret) |
Florian Fainelli | bccb302 | 2019-02-06 09:45:46 -0800 | [diff] [blame] | 574 | ret = sprintf(buf, "%*phN\n", ppid.id_len, ppid.id); |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 575 | } |
| 576 | rtnl_unlock(); |
| 577 | |
| 578 | return ret; |
| 579 | } |
| 580 | static DEVICE_ATTR_RO(phys_switch_id); |
| 581 | |
Wei Wang | 5fdd2f0 | 2021-02-08 11:34:10 -0800 | [diff] [blame] | 582 | static ssize_t threaded_show(struct device *dev, |
| 583 | struct device_attribute *attr, char *buf) |
| 584 | { |
| 585 | struct net_device *netdev = to_net_dev(dev); |
| 586 | ssize_t ret = -EINVAL; |
| 587 | |
| 588 | if (!rtnl_trylock()) |
| 589 | return restart_syscall(); |
| 590 | |
| 591 | if (dev_isalive(netdev)) |
| 592 | ret = sprintf(buf, fmt_dec, netdev->threaded); |
| 593 | |
| 594 | rtnl_unlock(); |
| 595 | return ret; |
| 596 | } |
| 597 | |
| 598 | static int modify_napi_threaded(struct net_device *dev, unsigned long val) |
| 599 | { |
| 600 | int ret; |
| 601 | |
| 602 | if (list_empty(&dev->napi_list)) |
| 603 | return -EOPNOTSUPP; |
| 604 | |
| 605 | if (val != 0 && val != 1) |
| 606 | return -EOPNOTSUPP; |
| 607 | |
| 608 | ret = dev_set_threaded(dev, val); |
| 609 | |
| 610 | return ret; |
| 611 | } |
| 612 | |
| 613 | static ssize_t threaded_store(struct device *dev, |
| 614 | struct device_attribute *attr, |
| 615 | const char *buf, size_t len) |
| 616 | { |
| 617 | return netdev_store(dev, attr, buf, len, modify_napi_threaded); |
| 618 | } |
| 619 | static DEVICE_ATTR_RW(threaded); |
| 620 | |
stephen hemminger | ec6cc59 | 2017-08-18 13:46:23 -0700 | [diff] [blame] | 621 | static struct attribute *net_class_attrs[] __ro_after_init = { |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 622 | &dev_attr_netdev_group.attr, |
| 623 | &dev_attr_type.attr, |
| 624 | &dev_attr_dev_id.attr, |
Amir Vadai | 3f85944 | 2014-02-25 18:17:50 +0200 | [diff] [blame] | 625 | &dev_attr_dev_port.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 626 | &dev_attr_iflink.attr, |
| 627 | &dev_attr_ifindex.attr, |
Tom Gundersen | 685343f | 2014-07-14 16:37:22 +0200 | [diff] [blame] | 628 | &dev_attr_name_assign_type.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 629 | &dev_attr_addr_assign_type.attr, |
| 630 | &dev_attr_addr_len.attr, |
| 631 | &dev_attr_link_mode.attr, |
| 632 | &dev_attr_address.attr, |
| 633 | &dev_attr_broadcast.attr, |
| 634 | &dev_attr_speed.attr, |
| 635 | &dev_attr_duplex.attr, |
| 636 | &dev_attr_dormant.attr, |
Andrew Lunn | db30a57 | 2020-04-20 00:11:51 +0200 | [diff] [blame] | 637 | &dev_attr_testing.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 638 | &dev_attr_operstate.attr, |
david decotigny | 2d3b479 | 2014-03-29 09:48:35 -0700 | [diff] [blame] | 639 | &dev_attr_carrier_changes.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 640 | &dev_attr_ifalias.attr, |
| 641 | &dev_attr_carrier.attr, |
| 642 | &dev_attr_mtu.attr, |
| 643 | &dev_attr_flags.attr, |
| 644 | &dev_attr_tx_queue_len.attr, |
Eric Dumazet | 3b47d30 | 2014-11-06 21:09:44 -0800 | [diff] [blame] | 645 | &dev_attr_gro_flush_timeout.attr, |
Eric Dumazet | 6f8b12d | 2020-04-22 09:13:27 -0700 | [diff] [blame] | 646 | &dev_attr_napi_defer_hard_irqs.attr, |
Linus Torvalds | cc998ff | 2013-09-05 14:54:29 -0700 | [diff] [blame] | 647 | &dev_attr_phys_port_id.attr, |
David Ahern | db24a90 | 2015-03-17 20:23:15 -0600 | [diff] [blame] | 648 | &dev_attr_phys_port_name.attr, |
Jiri Pirko | aecbe01 | 2014-11-28 14:34:19 +0100 | [diff] [blame] | 649 | &dev_attr_phys_switch_id.attr, |
Anuradha Karuppiah | d746d70 | 2015-07-14 13:43:19 -0700 | [diff] [blame] | 650 | &dev_attr_proto_down.attr, |
David Decotigny | b2d3bcf | 2018-01-18 09:59:13 -0800 | [diff] [blame] | 651 | &dev_attr_carrier_up_count.attr, |
| 652 | &dev_attr_carrier_down_count.attr, |
Wei Wang | 5fdd2f0 | 2021-02-08 11:34:10 -0800 | [diff] [blame] | 653 | &dev_attr_threaded.attr, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 654 | NULL, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | }; |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 656 | ATTRIBUTE_GROUPS(net_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | |
| 658 | /* Show a given an attribute in the statistics group */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 659 | static ssize_t netstat_show(const struct device *d, |
| 660 | struct device_attribute *attr, char *buf, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | unsigned long offset) |
| 662 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 663 | struct net_device *dev = to_net_dev(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | ssize_t ret = -EINVAL; |
| 665 | |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 666 | WARN_ON(offset > sizeof(struct rtnl_link_stats64) || |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 667 | offset % sizeof(u64) != 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
| 669 | read_lock(&dev_base_lock); |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 670 | if (dev_isalive(dev)) { |
Eric Dumazet | 2817273 | 2010-07-07 14:58:56 -0700 | [diff] [blame] | 671 | struct rtnl_link_stats64 temp; |
| 672 | const struct rtnl_link_stats64 *stats = dev_get_stats(dev, &temp); |
| 673 | |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 674 | ret = sprintf(buf, fmt_u64, *(u64 *)(((u8 *)stats) + offset)); |
Pavel Emelyanov | 96e7408 | 2008-05-21 14:12:46 -0700 | [diff] [blame] | 675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | read_unlock(&dev_base_lock); |
| 677 | return ret; |
| 678 | } |
| 679 | |
| 680 | /* generate a read-only statistics attribute */ |
| 681 | #define NETSTAT_ENTRY(name) \ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 682 | static ssize_t name##_show(struct device *d, \ |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 683 | struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | { \ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 685 | return netstat_show(d, attr, buf, \ |
Ben Hutchings | be1f3c2 | 2010-06-08 07:19:54 +0000 | [diff] [blame] | 686 | offsetof(struct rtnl_link_stats64, name)); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | } \ |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 688 | static DEVICE_ATTR_RO(name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | |
| 690 | NETSTAT_ENTRY(rx_packets); |
| 691 | NETSTAT_ENTRY(tx_packets); |
| 692 | NETSTAT_ENTRY(rx_bytes); |
| 693 | NETSTAT_ENTRY(tx_bytes); |
| 694 | NETSTAT_ENTRY(rx_errors); |
| 695 | NETSTAT_ENTRY(tx_errors); |
| 696 | NETSTAT_ENTRY(rx_dropped); |
| 697 | NETSTAT_ENTRY(tx_dropped); |
| 698 | NETSTAT_ENTRY(multicast); |
| 699 | NETSTAT_ENTRY(collisions); |
| 700 | NETSTAT_ENTRY(rx_length_errors); |
| 701 | NETSTAT_ENTRY(rx_over_errors); |
| 702 | NETSTAT_ENTRY(rx_crc_errors); |
| 703 | NETSTAT_ENTRY(rx_frame_errors); |
| 704 | NETSTAT_ENTRY(rx_fifo_errors); |
| 705 | NETSTAT_ENTRY(rx_missed_errors); |
| 706 | NETSTAT_ENTRY(tx_aborted_errors); |
| 707 | NETSTAT_ENTRY(tx_carrier_errors); |
| 708 | NETSTAT_ENTRY(tx_fifo_errors); |
| 709 | NETSTAT_ENTRY(tx_heartbeat_errors); |
| 710 | NETSTAT_ENTRY(tx_window_errors); |
| 711 | NETSTAT_ENTRY(rx_compressed); |
| 712 | NETSTAT_ENTRY(tx_compressed); |
Jarod Wilson | 6e7333d | 2016-02-01 18:51:05 -0500 | [diff] [blame] | 713 | NETSTAT_ENTRY(rx_nohandler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | |
stephen hemminger | ec6cc59 | 2017-08-18 13:46:23 -0700 | [diff] [blame] | 715 | static struct attribute *netstat_attrs[] __ro_after_init = { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 716 | &dev_attr_rx_packets.attr, |
| 717 | &dev_attr_tx_packets.attr, |
| 718 | &dev_attr_rx_bytes.attr, |
| 719 | &dev_attr_tx_bytes.attr, |
| 720 | &dev_attr_rx_errors.attr, |
| 721 | &dev_attr_tx_errors.attr, |
| 722 | &dev_attr_rx_dropped.attr, |
| 723 | &dev_attr_tx_dropped.attr, |
| 724 | &dev_attr_multicast.attr, |
| 725 | &dev_attr_collisions.attr, |
| 726 | &dev_attr_rx_length_errors.attr, |
| 727 | &dev_attr_rx_over_errors.attr, |
| 728 | &dev_attr_rx_crc_errors.attr, |
| 729 | &dev_attr_rx_frame_errors.attr, |
| 730 | &dev_attr_rx_fifo_errors.attr, |
| 731 | &dev_attr_rx_missed_errors.attr, |
| 732 | &dev_attr_tx_aborted_errors.attr, |
| 733 | &dev_attr_tx_carrier_errors.attr, |
| 734 | &dev_attr_tx_fifo_errors.attr, |
| 735 | &dev_attr_tx_heartbeat_errors.attr, |
| 736 | &dev_attr_tx_window_errors.attr, |
| 737 | &dev_attr_rx_compressed.attr, |
| 738 | &dev_attr_tx_compressed.attr, |
Jarod Wilson | 6e7333d | 2016-02-01 18:51:05 -0500 | [diff] [blame] | 739 | &dev_attr_rx_nohandler.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | NULL |
| 741 | }; |
| 742 | |
Arvind Yadav | 38ef00c | 2017-06-29 16:31:26 +0530 | [diff] [blame] | 743 | static const struct attribute_group netstat_group = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | .name = "statistics", |
| 745 | .attrs = netstat_attrs, |
| 746 | }; |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 747 | |
| 748 | #if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211) |
| 749 | static struct attribute *wireless_attrs[] = { |
| 750 | NULL |
| 751 | }; |
| 752 | |
Arvind Yadav | 38ef00c | 2017-06-29 16:31:26 +0530 | [diff] [blame] | 753 | static const struct attribute_group wireless_group = { |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 754 | .name = "wireless", |
| 755 | .attrs = wireless_attrs, |
| 756 | }; |
| 757 | #endif |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 758 | |
| 759 | #else /* CONFIG_SYSFS */ |
| 760 | #define net_class_groups NULL |
Eric W. Biederman | d6523dd | 2010-05-16 21:59:45 -0700 | [diff] [blame] | 761 | #endif /* CONFIG_SYSFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 763 | #ifdef CONFIG_SYSFS |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 764 | #define to_rx_queue_attr(_attr) \ |
| 765 | container_of(_attr, struct rx_queue_attribute, attr) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 766 | |
| 767 | #define to_rx_queue(obj) container_of(obj, struct netdev_rx_queue, kobj) |
| 768 | |
| 769 | static ssize_t rx_queue_attr_show(struct kobject *kobj, struct attribute *attr, |
| 770 | char *buf) |
| 771 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 772 | const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 773 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
| 774 | |
| 775 | if (!attribute->show) |
| 776 | return -EIO; |
| 777 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 778 | return attribute->show(queue, buf); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr, |
| 782 | const char *buf, size_t count) |
| 783 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 784 | const struct rx_queue_attribute *attribute = to_rx_queue_attr(attr); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 785 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
| 786 | |
| 787 | if (!attribute->store) |
| 788 | return -EIO; |
| 789 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 790 | return attribute->store(queue, buf, count); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 791 | } |
| 792 | |
stephen hemminger | fa50d64 | 2010-08-31 12:14:13 +0000 | [diff] [blame] | 793 | static const struct sysfs_ops rx_queue_sysfs_ops = { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 794 | .show = rx_queue_attr_show, |
| 795 | .store = rx_queue_attr_store, |
| 796 | }; |
| 797 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 798 | #ifdef CONFIG_RPS |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 799 | 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] | 800 | { |
| 801 | struct rps_map *map; |
| 802 | cpumask_var_t mask; |
Tejun Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 803 | int i, len; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 804 | |
| 805 | if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) |
| 806 | return -ENOMEM; |
| 807 | |
| 808 | rcu_read_lock(); |
| 809 | map = rcu_dereference(queue->rps_map); |
| 810 | if (map) |
| 811 | for (i = 0; i < map->len; i++) |
| 812 | cpumask_set_cpu(map->cpus[i], mask); |
| 813 | |
Tejun Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 814 | len = snprintf(buf, PAGE_SIZE, "%*pb\n", cpumask_pr_args(mask)); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 815 | rcu_read_unlock(); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 816 | free_cpumask_var(mask); |
Tejun Heo | f090682 | 2015-02-13 14:37:42 -0800 | [diff] [blame] | 817 | |
| 818 | return len < PAGE_SIZE ? len : -EINVAL; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 819 | } |
| 820 | |
Eric Dumazet | f5acb90 | 2010-04-19 14:40:57 -0700 | [diff] [blame] | 821 | static ssize_t store_rps_map(struct netdev_rx_queue *queue, |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 822 | const char *buf, size_t len) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 823 | { |
| 824 | struct rps_map *old_map, *map; |
| 825 | cpumask_var_t mask; |
Alex Belits | 07bbecb | 2020-06-25 18:34:43 -0400 | [diff] [blame] | 826 | int err, cpu, i, hk_flags; |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 827 | static DEFINE_MUTEX(rps_map_mutex); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 828 | |
| 829 | if (!capable(CAP_NET_ADMIN)) |
| 830 | return -EPERM; |
| 831 | |
| 832 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) |
| 833 | return -ENOMEM; |
| 834 | |
| 835 | err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits); |
| 836 | if (err) { |
| 837 | free_cpumask_var(mask); |
| 838 | return err; |
| 839 | } |
| 840 | |
Eric Dumazet | 2e0d8fe | 2020-08-11 18:34:40 -0700 | [diff] [blame] | 841 | if (!cpumask_empty(mask)) { |
| 842 | hk_flags = HK_FLAG_DOMAIN | HK_FLAG_WQ; |
| 843 | cpumask_and(mask, mask, housekeeping_cpumask(hk_flags)); |
| 844 | if (cpumask_empty(mask)) { |
| 845 | free_cpumask_var(mask); |
| 846 | return -EINVAL; |
| 847 | } |
Alex Belits | 07bbecb | 2020-06-25 18:34:43 -0400 | [diff] [blame] | 848 | } |
| 849 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 850 | map = kzalloc(max_t(unsigned int, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 851 | RPS_MAP_SIZE(cpumask_weight(mask)), L1_CACHE_BYTES), |
| 852 | GFP_KERNEL); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 853 | if (!map) { |
| 854 | free_cpumask_var(mask); |
| 855 | return -ENOMEM; |
| 856 | } |
| 857 | |
| 858 | i = 0; |
| 859 | for_each_cpu_and(cpu, mask, cpu_online_mask) |
| 860 | map->cpus[i++] = cpu; |
| 861 | |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 862 | if (i) { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 863 | map->len = i; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 864 | } else { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 865 | kfree(map); |
| 866 | map = NULL; |
| 867 | } |
| 868 | |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 869 | mutex_lock(&rps_map_mutex); |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 870 | old_map = rcu_dereference_protected(queue->rps_map, |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 871 | mutex_is_locked(&rps_map_mutex)); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 872 | rcu_assign_pointer(queue->rps_map, map); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 873 | |
Eric Dumazet | adc9300 | 2011-11-17 03:13:26 +0000 | [diff] [blame] | 874 | if (map) |
Eric Dumazet | dc05360 | 2019-03-22 08:56:38 -0700 | [diff] [blame] | 875 | static_branch_inc(&rps_needed); |
Tom Herbert | 10e4ea7 | 2015-08-05 09:39:27 -0700 | [diff] [blame] | 876 | if (old_map) |
Eric Dumazet | dc05360 | 2019-03-22 08:56:38 -0700 | [diff] [blame] | 877 | static_branch_dec(&rps_needed); |
Tom Herbert | 10e4ea7 | 2015-08-05 09:39:27 -0700 | [diff] [blame] | 878 | |
Sasha Levin | da65ad1 | 2015-08-13 14:03:16 -0400 | [diff] [blame] | 879 | mutex_unlock(&rps_map_mutex); |
Tom Herbert | 10e4ea7 | 2015-08-05 09:39:27 -0700 | [diff] [blame] | 880 | |
| 881 | if (old_map) |
| 882 | kfree_rcu(old_map, rcu); |
| 883 | |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 884 | free_cpumask_var(mask); |
| 885 | return len; |
| 886 | } |
| 887 | |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 888 | 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] | 889 | char *buf) |
| 890 | { |
| 891 | struct rps_dev_flow_table *flow_table; |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 892 | unsigned long val = 0; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 893 | |
| 894 | rcu_read_lock(); |
| 895 | flow_table = rcu_dereference(queue->rps_flow_table); |
| 896 | if (flow_table) |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 897 | val = (unsigned long)flow_table->mask + 1; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 898 | rcu_read_unlock(); |
| 899 | |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 900 | return sprintf(buf, "%lu\n", val); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 901 | } |
| 902 | |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 903 | static void rps_dev_flow_table_release(struct rcu_head *rcu) |
| 904 | { |
| 905 | struct rps_dev_flow_table *table = container_of(rcu, |
| 906 | struct rps_dev_flow_table, rcu); |
Al Viro | 243198d | 2013-05-05 16:05:55 +0000 | [diff] [blame] | 907 | vfree(table); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 908 | } |
| 909 | |
Eric Dumazet | f5acb90 | 2010-04-19 14:40:57 -0700 | [diff] [blame] | 910 | 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] | 911 | const char *buf, size_t len) |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 912 | { |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 913 | unsigned long mask, count; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 914 | struct rps_dev_flow_table *table, *old_table; |
| 915 | static DEFINE_SPINLOCK(rps_dev_flow_lock); |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 916 | int rc; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 917 | |
| 918 | if (!capable(CAP_NET_ADMIN)) |
| 919 | return -EPERM; |
| 920 | |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 921 | rc = kstrtoul(buf, 0, &count); |
| 922 | if (rc < 0) |
| 923 | return rc; |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 924 | |
| 925 | if (count) { |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 926 | mask = count - 1; |
| 927 | /* mask = roundup_pow_of_two(count) - 1; |
| 928 | * without overflows... |
| 929 | */ |
| 930 | while ((mask | (mask >> 1)) != mask) |
| 931 | mask |= (mask >> 1); |
| 932 | /* On 64 bit arches, must check mask fits in table->mask (u32), |
stephen hemminger | 8e3bff9 | 2013-12-08 12:15:44 -0800 | [diff] [blame] | 933 | * and on 32bit arches, must check |
| 934 | * RPS_DEV_FLOW_TABLE_SIZE(mask + 1) doesn't overflow. |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 935 | */ |
| 936 | #if BITS_PER_LONG > 32 |
| 937 | if (mask > (unsigned long)(u32)mask) |
Xi Wang | a0a129f | 2011-12-22 13:35:22 +0000 | [diff] [blame] | 938 | return -EINVAL; |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 939 | #else |
| 940 | if (mask > (ULONG_MAX - RPS_DEV_FLOW_TABLE_SIZE(1)) |
Xi Wang | a0a129f | 2011-12-22 13:35:22 +0000 | [diff] [blame] | 941 | / sizeof(struct rps_dev_flow)) { |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 942 | /* Enforce a limit to prevent overflow */ |
| 943 | return -EINVAL; |
| 944 | } |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 945 | #endif |
| 946 | table = vmalloc(RPS_DEV_FLOW_TABLE_SIZE(mask + 1)); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 947 | if (!table) |
| 948 | return -ENOMEM; |
| 949 | |
Eric Dumazet | 60b778c | 2011-12-24 06:56:49 +0000 | [diff] [blame] | 950 | table->mask = mask; |
| 951 | for (count = 0; count <= mask; count++) |
| 952 | table->flows[count].cpu = RPS_NO_CPU; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 953 | } else { |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 954 | table = NULL; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 955 | } |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 956 | |
| 957 | spin_lock(&rps_dev_flow_lock); |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 958 | old_table = rcu_dereference_protected(queue->rps_flow_table, |
| 959 | lockdep_is_held(&rps_dev_flow_lock)); |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 960 | rcu_assign_pointer(queue->rps_flow_table, table); |
| 961 | spin_unlock(&rps_dev_flow_lock); |
| 962 | |
| 963 | if (old_table) |
| 964 | call_rcu(&old_table->rcu, rps_dev_flow_table_release); |
| 965 | |
| 966 | return len; |
| 967 | } |
| 968 | |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 969 | static struct rx_queue_attribute rps_cpus_attribute __ro_after_init |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 970 | = __ATTR(rps_cpus, 0644, show_rps_map, store_rps_map); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 971 | |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 972 | 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] | 973 | = __ATTR(rps_flow_cnt, 0644, |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 974 | show_rps_dev_flow_table_cnt, store_rps_dev_flow_table_cnt); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 975 | #endif /* CONFIG_RPS */ |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 976 | |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 977 | static struct attribute *rx_queue_default_attrs[] __ro_after_init = { |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 978 | #ifdef CONFIG_RPS |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 979 | &rps_cpus_attribute.attr, |
Tom Herbert | fec5e65 | 2010-04-16 16:01:27 -0700 | [diff] [blame] | 980 | &rps_dev_flow_table_cnt_attribute.attr, |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 981 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 982 | NULL |
| 983 | }; |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 984 | ATTRIBUTE_GROUPS(rx_queue_default); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 985 | |
| 986 | static void rx_queue_release(struct kobject *kobj) |
| 987 | { |
| 988 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 989 | #ifdef CONFIG_RPS |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 990 | struct rps_map *map; |
| 991 | struct rps_dev_flow_table *flow_table; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 992 | |
Eric Dumazet | 33d480c | 2011-08-11 19:30:52 +0000 | [diff] [blame] | 993 | map = rcu_dereference_protected(queue->rps_map, 1); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 994 | if (map) { |
| 995 | RCU_INIT_POINTER(queue->rps_map, NULL); |
Lai Jiangshan | f6f8023 | 2011-03-18 12:01:31 +0800 | [diff] [blame] | 996 | kfree_rcu(map, rcu); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 997 | } |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 998 | |
Eric Dumazet | 33d480c | 2011-08-11 19:30:52 +0000 | [diff] [blame] | 999 | flow_table = rcu_dereference_protected(queue->rps_flow_table, 1); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 1000 | if (flow_table) { |
| 1001 | RCU_INIT_POINTER(queue->rps_flow_table, NULL); |
Eric Dumazet | 6e3f7fa | 2010-10-25 03:02:02 +0000 | [diff] [blame] | 1002 | call_rcu(&flow_table->rcu, rps_dev_flow_table_release); |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 1003 | } |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1004 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1005 | |
John Fastabend | 9ea1948 | 2010-11-16 06:31:39 +0000 | [diff] [blame] | 1006 | memset(kobj, 0, sizeof(*kobj)); |
Eric Dumazet | 80e8921 | 2021-12-04 20:21:58 -0800 | [diff] [blame] | 1007 | dev_put_track(queue->dev, &queue->dev_tracker); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1008 | } |
| 1009 | |
Weilong Chen | 82ef3d5 | 2014-01-16 17:24:31 +0800 | [diff] [blame] | 1010 | static const void *rx_queue_namespace(struct kobject *kobj) |
| 1011 | { |
| 1012 | struct netdev_rx_queue *queue = to_rx_queue(kobj); |
| 1013 | struct device *dev = &queue->dev->dev; |
| 1014 | const void *ns = NULL; |
| 1015 | |
| 1016 | if (dev->class && dev->class->ns_type) |
| 1017 | ns = dev->class->namespace(dev); |
| 1018 | |
| 1019 | return ns; |
| 1020 | } |
| 1021 | |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1022 | static void rx_queue_get_ownership(struct kobject *kobj, |
| 1023 | kuid_t *uid, kgid_t *gid) |
| 1024 | { |
| 1025 | const struct net *net = rx_queue_namespace(kobj); |
| 1026 | |
| 1027 | net_ns_get_ownership(net, uid, gid); |
| 1028 | } |
| 1029 | |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 1030 | static struct kobj_type rx_queue_ktype __ro_after_init = { |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1031 | .sysfs_ops = &rx_queue_sysfs_ops, |
| 1032 | .release = rx_queue_release, |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 1033 | .default_groups = rx_queue_default_groups, |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1034 | .namespace = rx_queue_namespace, |
| 1035 | .get_ownership = rx_queue_get_ownership, |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1036 | }; |
| 1037 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1038 | static int rx_queue_add_kobject(struct net_device *dev, int index) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1039 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1040 | struct netdev_rx_queue *queue = dev->_rx + index; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1041 | struct kobject *kobj = &queue->kobj; |
| 1042 | int error = 0; |
| 1043 | |
Jouni Hogander | ddd9b5e | 2019-12-17 13:46:34 +0200 | [diff] [blame] | 1044 | /* Kobject_put later will trigger rx_queue_release call which |
| 1045 | * decreases dev refcount: Take that reference here |
| 1046 | */ |
Eric Dumazet | 80e8921 | 2021-12-04 20:21:58 -0800 | [diff] [blame] | 1047 | dev_hold_track(queue->dev, &queue->dev_tracker, GFP_KERNEL); |
Jouni Hogander | ddd9b5e | 2019-12-17 13:46:34 +0200 | [diff] [blame] | 1048 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1049 | kobj->kset = dev->queues_kset; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1050 | error = kobject_init_and_add(kobj, &rx_queue_ktype, NULL, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1051 | "rx-%u", index); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1052 | if (error) |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1053 | goto err; |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1054 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1055 | if (dev->sysfs_rx_queue_group) { |
| 1056 | error = sysfs_create_group(kobj, dev->sysfs_rx_queue_group); |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1057 | if (error) |
| 1058 | goto err; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1059 | } |
| 1060 | |
| 1061 | kobject_uevent(kobj, KOBJ_ADD); |
| 1062 | |
| 1063 | return error; |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1064 | |
| 1065 | err: |
| 1066 | kobject_put(kobj); |
| 1067 | return error; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1068 | } |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1069 | |
| 1070 | static int rx_queue_change_owner(struct net_device *dev, int index, kuid_t kuid, |
| 1071 | kgid_t kgid) |
| 1072 | { |
| 1073 | struct netdev_rx_queue *queue = dev->_rx + index; |
| 1074 | struct kobject *kobj = &queue->kobj; |
| 1075 | int error; |
| 1076 | |
| 1077 | error = sysfs_change_owner(kobj, kuid, kgid); |
| 1078 | if (error) |
| 1079 | return error; |
| 1080 | |
| 1081 | if (dev->sysfs_rx_queue_group) |
| 1082 | error = sysfs_group_change_owner( |
| 1083 | kobj, dev->sysfs_rx_queue_group, kuid, kgid); |
| 1084 | |
| 1085 | return error; |
| 1086 | } |
Paul Bolle | 80dd6ea | 2014-02-09 14:07:11 +0100 | [diff] [blame] | 1087 | #endif /* CONFIG_SYSFS */ |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1088 | |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1089 | int |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1090 | 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] | 1091 | { |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1092 | #ifdef CONFIG_SYSFS |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1093 | int i; |
| 1094 | int error = 0; |
| 1095 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1096 | #ifndef CONFIG_RPS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1097 | if (!dev->sysfs_rx_queue_group) |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1098 | return 0; |
| 1099 | #endif |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1100 | for (i = old_num; i < new_num; i++) { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1101 | error = rx_queue_add_kobject(dev, i); |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1102 | if (error) { |
| 1103 | new_num = old_num; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1104 | break; |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1105 | } |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1106 | } |
| 1107 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1108 | while (--i >= new_num) { |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1109 | struct kobject *kobj = &dev->_rx[i].kobj; |
| 1110 | |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 1111 | if (!refcount_read(&dev_net(dev)->ns.count)) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1112 | kobj->uevent_suppress = 1; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1113 | if (dev->sysfs_rx_queue_group) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1114 | sysfs_remove_group(kobj, dev->sysfs_rx_queue_group); |
| 1115 | kobject_put(kobj); |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1116 | } |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1117 | |
| 1118 | return error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1119 | #else |
| 1120 | return 0; |
| 1121 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1122 | } |
| 1123 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1124 | static int net_rx_queue_change_owner(struct net_device *dev, int num, |
| 1125 | kuid_t kuid, kgid_t kgid) |
| 1126 | { |
| 1127 | #ifdef CONFIG_SYSFS |
| 1128 | int error = 0; |
| 1129 | int i; |
| 1130 | |
| 1131 | #ifndef CONFIG_RPS |
| 1132 | if (!dev->sysfs_rx_queue_group) |
| 1133 | return 0; |
| 1134 | #endif |
| 1135 | for (i = 0; i < num; i++) { |
| 1136 | error = rx_queue_change_owner(dev, i, kuid, kgid); |
| 1137 | if (error) |
| 1138 | break; |
| 1139 | } |
| 1140 | |
| 1141 | return error; |
| 1142 | #else |
| 1143 | return 0; |
| 1144 | #endif |
| 1145 | } |
| 1146 | |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1147 | #ifdef CONFIG_SYSFS |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1148 | /* |
| 1149 | * netdev_queue sysfs structures and functions. |
| 1150 | */ |
| 1151 | struct netdev_queue_attribute { |
| 1152 | struct attribute attr; |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1153 | ssize_t (*show)(struct netdev_queue *queue, char *buf); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1154 | ssize_t (*store)(struct netdev_queue *queue, |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1155 | const char *buf, size_t len); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1156 | }; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1157 | #define to_netdev_queue_attr(_attr) \ |
| 1158 | container_of(_attr, struct netdev_queue_attribute, attr) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1159 | |
| 1160 | #define to_netdev_queue(obj) container_of(obj, struct netdev_queue, kobj) |
| 1161 | |
| 1162 | static ssize_t netdev_queue_attr_show(struct kobject *kobj, |
| 1163 | struct attribute *attr, char *buf) |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1164 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 1165 | const struct netdev_queue_attribute *attribute |
| 1166 | = to_netdev_queue_attr(attr); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1167 | struct netdev_queue *queue = to_netdev_queue(kobj); |
| 1168 | |
| 1169 | if (!attribute->show) |
| 1170 | return -EIO; |
| 1171 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1172 | return attribute->show(queue, buf); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
| 1175 | static ssize_t netdev_queue_attr_store(struct kobject *kobj, |
| 1176 | struct attribute *attr, |
| 1177 | const char *buf, size_t count) |
| 1178 | { |
stephen hemminger | 667e427 | 2017-08-18 13:46:27 -0700 | [diff] [blame] | 1179 | const struct netdev_queue_attribute *attribute |
| 1180 | = to_netdev_queue_attr(attr); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1181 | struct netdev_queue *queue = to_netdev_queue(kobj); |
| 1182 | |
| 1183 | if (!attribute->store) |
| 1184 | return -EIO; |
| 1185 | |
stephen hemminger | 718ad68 | 2017-08-18 13:46:24 -0700 | [diff] [blame] | 1186 | return attribute->store(queue, buf, count); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | static const struct sysfs_ops netdev_queue_sysfs_ops = { |
| 1190 | .show = netdev_queue_attr_show, |
| 1191 | .store = netdev_queue_attr_store, |
| 1192 | }; |
| 1193 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1194 | static ssize_t tx_timeout_show(struct netdev_queue *queue, char *buf) |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1195 | { |
Eric Dumazet | 8160fb4 | 2021-11-16 19:29:21 -0800 | [diff] [blame] | 1196 | unsigned long trans_timeout = atomic_long_read(&queue->trans_timeout); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1197 | |
Xiongfeng Wang | 9bb5fbe | 2020-07-21 15:02:57 +0800 | [diff] [blame] | 1198 | return sprintf(buf, fmt_ulong, trans_timeout); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
Thadeu Lima de Souza Cascardo | c4047f5 | 2015-09-15 18:28:00 -0300 | [diff] [blame] | 1201 | static unsigned int get_netdev_queue_index(struct netdev_queue *queue) |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1202 | { |
| 1203 | struct net_device *dev = queue->dev; |
Thadeu Lima de Souza Cascardo | c4047f5 | 2015-09-15 18:28:00 -0300 | [diff] [blame] | 1204 | unsigned int i; |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1205 | |
Thadeu Lima de Souza Cascardo | c4047f5 | 2015-09-15 18:28:00 -0300 | [diff] [blame] | 1206 | i = queue - dev->_tx; |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1207 | BUG_ON(i >= dev->num_tx_queues); |
| 1208 | |
| 1209 | return i; |
| 1210 | } |
| 1211 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1212 | static ssize_t traffic_class_show(struct netdev_queue *queue, |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1213 | char *buf) |
| 1214 | { |
| 1215 | struct net_device *dev = queue->dev; |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1216 | int num_tc, tc; |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1217 | int index; |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1218 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1219 | if (!netif_is_multiqueue(dev)) |
| 1220 | return -ENOENT; |
| 1221 | |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1222 | if (!rtnl_trylock()) |
| 1223 | return restart_syscall(); |
| 1224 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1225 | index = get_netdev_queue_index(queue); |
Alexander Duyck | ffcfe25 | 2018-07-09 12:19:38 -0400 | [diff] [blame] | 1226 | |
| 1227 | /* If queue belongs to subordinate dev use its TC mapping */ |
| 1228 | dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev; |
| 1229 | |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1230 | num_tc = dev->num_tc; |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1231 | tc = netdev_txq_to_tc(dev, index); |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1232 | |
| 1233 | rtnl_unlock(); |
| 1234 | |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1235 | if (tc < 0) |
| 1236 | return -EINVAL; |
| 1237 | |
Alexander Duyck | ffcfe25 | 2018-07-09 12:19:38 -0400 | [diff] [blame] | 1238 | /* We can report the traffic class one of two ways: |
| 1239 | * Subordinate device traffic classes are reported with the traffic |
| 1240 | * class first, and then the subordinate class so for example TC0 on |
| 1241 | * subordinate device 2 will be reported as "0-2". If the queue |
| 1242 | * belongs to the root device it will be reported with just the |
| 1243 | * traffic class, so just "0" for TC 0 for example. |
| 1244 | */ |
Alexander Duyck | b2f1756 | 2021-02-08 14:29:18 -0800 | [diff] [blame] | 1245 | return num_tc < 0 ? sprintf(buf, "%d%d\n", tc, num_tc) : |
| 1246 | sprintf(buf, "%d\n", tc); |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | #ifdef CONFIG_XPS |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1250 | static ssize_t tx_maxrate_show(struct netdev_queue *queue, |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1251 | char *buf) |
| 1252 | { |
| 1253 | return sprintf(buf, "%lu\n", queue->tx_maxrate); |
| 1254 | } |
| 1255 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1256 | static ssize_t tx_maxrate_store(struct netdev_queue *queue, |
| 1257 | const char *buf, size_t len) |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1258 | { |
| 1259 | struct net_device *dev = queue->dev; |
| 1260 | int err, index = get_netdev_queue_index(queue); |
| 1261 | u32 rate = 0; |
| 1262 | |
Tyler Hicks | 3033fce | 2018-07-20 21:56:51 +0000 | [diff] [blame] | 1263 | if (!capable(CAP_NET_ADMIN)) |
| 1264 | return -EPERM; |
| 1265 | |
Antoine Tenart | 146e5e7 | 2021-10-07 16:00:51 +0200 | [diff] [blame] | 1266 | /* The check is also done later; this helps returning early without |
| 1267 | * hitting the trylock/restart below. |
| 1268 | */ |
| 1269 | if (!dev->netdev_ops->ndo_set_tx_maxrate) |
| 1270 | return -EOPNOTSUPP; |
| 1271 | |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1272 | err = kstrtou32(buf, 10, &rate); |
| 1273 | if (err < 0) |
| 1274 | return err; |
| 1275 | |
| 1276 | if (!rtnl_trylock()) |
| 1277 | return restart_syscall(); |
| 1278 | |
| 1279 | err = -EOPNOTSUPP; |
| 1280 | if (dev->netdev_ops->ndo_set_tx_maxrate) |
| 1281 | err = dev->netdev_ops->ndo_set_tx_maxrate(dev, index, rate); |
| 1282 | |
| 1283 | rtnl_unlock(); |
| 1284 | if (!err) { |
| 1285 | queue->tx_maxrate = rate; |
| 1286 | return len; |
| 1287 | } |
| 1288 | return err; |
| 1289 | } |
| 1290 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1291 | static struct netdev_queue_attribute queue_tx_maxrate __ro_after_init |
| 1292 | = __ATTR_RW(tx_maxrate); |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1293 | #endif |
| 1294 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1295 | static struct netdev_queue_attribute queue_trans_timeout __ro_after_init |
| 1296 | = __ATTR_RO(tx_timeout); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1297 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1298 | static struct netdev_queue_attribute queue_traffic_class __ro_after_init |
| 1299 | = __ATTR_RO(traffic_class); |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1300 | |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1301 | #ifdef CONFIG_BQL |
| 1302 | /* |
| 1303 | * Byte queue limits sysfs structures and functions. |
| 1304 | */ |
| 1305 | static ssize_t bql_show(char *buf, unsigned int value) |
| 1306 | { |
| 1307 | return sprintf(buf, "%u\n", value); |
| 1308 | } |
| 1309 | |
| 1310 | static ssize_t bql_set(const char *buf, const size_t count, |
| 1311 | unsigned int *pvalue) |
| 1312 | { |
| 1313 | unsigned int value; |
| 1314 | int err; |
| 1315 | |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1316 | if (!strcmp(buf, "max") || !strcmp(buf, "max\n")) { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1317 | value = DQL_MAX_LIMIT; |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1318 | } else { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1319 | err = kstrtouint(buf, 10, &value); |
| 1320 | if (err < 0) |
| 1321 | return err; |
| 1322 | if (value > DQL_MAX_LIMIT) |
| 1323 | return -EINVAL; |
| 1324 | } |
| 1325 | |
| 1326 | *pvalue = value; |
| 1327 | |
| 1328 | return count; |
| 1329 | } |
| 1330 | |
| 1331 | static ssize_t bql_show_hold_time(struct netdev_queue *queue, |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1332 | char *buf) |
| 1333 | { |
| 1334 | struct dql *dql = &queue->dql; |
| 1335 | |
| 1336 | return sprintf(buf, "%u\n", jiffies_to_msecs(dql->slack_hold_time)); |
| 1337 | } |
| 1338 | |
| 1339 | static ssize_t bql_set_hold_time(struct netdev_queue *queue, |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1340 | const char *buf, size_t len) |
| 1341 | { |
| 1342 | struct dql *dql = &queue->dql; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 1343 | unsigned int value; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1344 | int err; |
| 1345 | |
| 1346 | err = kstrtouint(buf, 10, &value); |
| 1347 | if (err < 0) |
| 1348 | return err; |
| 1349 | |
| 1350 | dql->slack_hold_time = msecs_to_jiffies(value); |
| 1351 | |
| 1352 | return len; |
| 1353 | } |
| 1354 | |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1355 | static struct netdev_queue_attribute bql_hold_time_attribute __ro_after_init |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 1356 | = __ATTR(hold_time, 0644, |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1357 | bql_show_hold_time, bql_set_hold_time); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1358 | |
| 1359 | static ssize_t bql_show_inflight(struct netdev_queue *queue, |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1360 | char *buf) |
| 1361 | { |
| 1362 | struct dql *dql = &queue->dql; |
| 1363 | |
| 1364 | return sprintf(buf, "%u\n", dql->num_queued - dql->num_completed); |
| 1365 | } |
| 1366 | |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1367 | static struct netdev_queue_attribute bql_inflight_attribute __ro_after_init = |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 1368 | __ATTR(inflight, 0444, bql_show_inflight, NULL); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1369 | |
| 1370 | #define BQL_ATTR(NAME, FIELD) \ |
| 1371 | static ssize_t bql_show_ ## NAME(struct netdev_queue *queue, \ |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1372 | char *buf) \ |
| 1373 | { \ |
| 1374 | return bql_show(buf, queue->dql.FIELD); \ |
| 1375 | } \ |
| 1376 | \ |
| 1377 | static ssize_t bql_set_ ## NAME(struct netdev_queue *queue, \ |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1378 | const char *buf, size_t len) \ |
| 1379 | { \ |
| 1380 | return bql_set(buf, len, &queue->dql.FIELD); \ |
| 1381 | } \ |
| 1382 | \ |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1383 | static struct netdev_queue_attribute bql_ ## NAME ## _attribute __ro_after_init \ |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 1384 | = __ATTR(NAME, 0644, \ |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1385 | bql_show_ ## NAME, bql_set_ ## NAME) |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1386 | |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1387 | BQL_ATTR(limit, limit); |
| 1388 | BQL_ATTR(limit_max, max_limit); |
| 1389 | BQL_ATTR(limit_min, min_limit); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1390 | |
stephen hemminger | 170c658 | 2017-08-18 13:46:25 -0700 | [diff] [blame] | 1391 | static struct attribute *dql_attrs[] __ro_after_init = { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1392 | &bql_limit_attribute.attr, |
| 1393 | &bql_limit_max_attribute.attr, |
| 1394 | &bql_limit_min_attribute.attr, |
| 1395 | &bql_hold_time_attribute.attr, |
| 1396 | &bql_inflight_attribute.attr, |
| 1397 | NULL |
| 1398 | }; |
| 1399 | |
Arvind Yadav | 38ef00c | 2017-06-29 16:31:26 +0530 | [diff] [blame] | 1400 | static const struct attribute_group dql_group = { |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1401 | .name = "byte_queue_limits", |
| 1402 | .attrs = dql_attrs, |
| 1403 | }; |
| 1404 | #endif /* CONFIG_BQL */ |
| 1405 | |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1406 | #ifdef CONFIG_XPS |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1407 | static ssize_t xps_queue_show(struct net_device *dev, unsigned int index, |
| 1408 | int tc, char *buf, enum xps_map_type type) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1409 | { |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1410 | struct xps_dev_maps *dev_maps; |
Antoine Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1411 | unsigned long *mask; |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1412 | unsigned int nr_ids; |
| 1413 | int j, len; |
Antoine Tenart | d7be87a | 2021-03-18 19:37:49 +0100 | [diff] [blame] | 1414 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1415 | rcu_read_lock(); |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1416 | dev_maps = rcu_dereference(dev->xps_maps[type]); |
| 1417 | |
| 1418 | /* Default to nr_cpu_ids/dev->num_rx_queues and do not just return 0 |
| 1419 | * when dev_maps hasn't been allocated yet, to be backward compatible. |
| 1420 | */ |
| 1421 | nr_ids = dev_maps ? dev_maps->nr_ids : |
| 1422 | (type == XPS_CPUS ? nr_cpu_ids : dev->num_rx_queues); |
Antoine Tenart | 5478fcd | 2021-03-18 19:37:44 +0100 | [diff] [blame] | 1423 | |
Antoine Tenart | 7f08ec6 | 2021-03-22 16:43:29 +0100 | [diff] [blame] | 1424 | mask = bitmap_zalloc(nr_ids, GFP_NOWAIT); |
Antoine Tenart | 5478fcd | 2021-03-18 19:37:44 +0100 | [diff] [blame] | 1425 | if (!mask) { |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1426 | rcu_read_unlock(); |
| 1427 | return -ENOMEM; |
Antoine Tenart | 5478fcd | 2021-03-18 19:37:44 +0100 | [diff] [blame] | 1428 | } |
| 1429 | |
Antoine Tenart | 255c04a | 2021-03-18 19:37:43 +0100 | [diff] [blame] | 1430 | if (!dev_maps || tc >= dev_maps->num_tc) |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame] | 1431 | goto out_no_maps; |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1432 | |
Antoine Tenart | 6f36158 | 2021-03-18 19:37:45 +0100 | [diff] [blame] | 1433 | for (j = 0; j < nr_ids; j++) { |
Antoine Tenart | 255c04a | 2021-03-18 19:37:43 +0100 | [diff] [blame] | 1434 | int i, tci = j * dev_maps->num_tc + tc; |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame] | 1435 | struct xps_map *map; |
Alexander Duyck | 184c449 | 2016-10-28 11:50:13 -0400 | [diff] [blame] | 1436 | |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame] | 1437 | map = rcu_dereference(dev_maps->attr_map[tci]); |
| 1438 | if (!map) |
| 1439 | continue; |
| 1440 | |
| 1441 | for (i = map->len; i--;) { |
| 1442 | if (map->queues[i] == index) { |
Christophe JAILLET | 08a7abf | 2021-11-21 19:01:03 +0100 | [diff] [blame] | 1443 | __set_bit(j, mask); |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame] | 1444 | break; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1445 | } |
| 1446 | } |
| 1447 | } |
Antoine Tenart | 73f5e52 | 2021-03-18 19:37:42 +0100 | [diff] [blame] | 1448 | out_no_maps: |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1449 | rcu_read_unlock(); |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1450 | |
Antoine Tenart | 5478fcd | 2021-03-18 19:37:44 +0100 | [diff] [blame] | 1451 | len = bitmap_print_to_pagebuf(false, buf, mask, nr_ids); |
Antoine Tenart | ea4fe7e | 2021-03-18 19:37:40 +0100 | [diff] [blame] | 1452 | bitmap_free(mask); |
Antoine Tenart | fb25038 | 2020-12-23 22:23:21 +0100 | [diff] [blame] | 1453 | |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1454 | return len < PAGE_SIZE ? len : -EINVAL; |
| 1455 | } |
| 1456 | |
| 1457 | static ssize_t xps_cpus_show(struct netdev_queue *queue, char *buf) |
| 1458 | { |
| 1459 | struct net_device *dev = queue->dev; |
| 1460 | unsigned int index; |
| 1461 | int len, tc; |
| 1462 | |
| 1463 | if (!netif_is_multiqueue(dev)) |
| 1464 | return -ENOENT; |
| 1465 | |
| 1466 | index = get_netdev_queue_index(queue); |
| 1467 | |
| 1468 | if (!rtnl_trylock()) |
| 1469 | return restart_syscall(); |
| 1470 | |
| 1471 | /* If queue belongs to subordinate dev use its map */ |
| 1472 | dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev; |
| 1473 | |
| 1474 | tc = netdev_txq_to_tc(dev, index); |
| 1475 | if (tc < 0) { |
| 1476 | rtnl_unlock(); |
| 1477 | return -EINVAL; |
| 1478 | } |
| 1479 | |
| 1480 | /* Make sure the subordinate device can't be freed */ |
| 1481 | get_device(&dev->dev); |
| 1482 | rtnl_unlock(); |
| 1483 | |
| 1484 | len = xps_queue_show(dev, index, tc, buf, XPS_CPUS); |
| 1485 | |
Antoine Tenart | d7be87a | 2021-03-18 19:37:49 +0100 | [diff] [blame] | 1486 | put_device(&dev->dev); |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1487 | return len; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1490 | static ssize_t xps_cpus_store(struct netdev_queue *queue, |
| 1491 | const char *buf, size_t len) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1492 | { |
| 1493 | struct net_device *dev = queue->dev; |
Antoine Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1494 | unsigned int index; |
Alexander Duyck | 537c00d | 2013-01-10 08:57:02 +0000 | [diff] [blame] | 1495 | cpumask_var_t mask; |
| 1496 | int err; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1497 | |
Alexander Duyck | d7be977 | 2018-07-09 12:19:32 -0400 | [diff] [blame] | 1498 | if (!netif_is_multiqueue(dev)) |
| 1499 | return -ENOENT; |
| 1500 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1501 | if (!capable(CAP_NET_ADMIN)) |
| 1502 | return -EPERM; |
| 1503 | |
| 1504 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) |
| 1505 | return -ENOMEM; |
| 1506 | |
| 1507 | index = get_netdev_queue_index(queue); |
| 1508 | |
| 1509 | err = bitmap_parse(buf, len, cpumask_bits(mask), nr_cpumask_bits); |
| 1510 | if (err) { |
| 1511 | free_cpumask_var(mask); |
| 1512 | return err; |
| 1513 | } |
| 1514 | |
Antoine Tenart | 1ad58225 | 2020-12-23 22:23:20 +0100 | [diff] [blame] | 1515 | if (!rtnl_trylock()) { |
| 1516 | free_cpumask_var(mask); |
| 1517 | return restart_syscall(); |
| 1518 | } |
| 1519 | |
Alexander Duyck | 537c00d | 2013-01-10 08:57:02 +0000 | [diff] [blame] | 1520 | err = netif_set_xps_queue(dev, mask, index); |
Antoine Tenart | 1ad58225 | 2020-12-23 22:23:20 +0100 | [diff] [blame] | 1521 | rtnl_unlock(); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1522 | |
| 1523 | free_cpumask_var(mask); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1524 | |
Alexander Duyck | 537c00d | 2013-01-10 08:57:02 +0000 | [diff] [blame] | 1525 | return err ? : len; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1526 | } |
| 1527 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1528 | static struct netdev_queue_attribute xps_cpus_attribute __ro_after_init |
| 1529 | = __ATTR_RW(xps_cpus); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1530 | |
| 1531 | static ssize_t xps_rxqs_show(struct netdev_queue *queue, char *buf) |
| 1532 | { |
| 1533 | struct net_device *dev = queue->dev; |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1534 | unsigned int index; |
| 1535 | int tc; |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1536 | |
| 1537 | index = get_netdev_queue_index(queue); |
| 1538 | |
Antoine Tenart | 4ae2bb8 | 2020-12-23 22:23:23 +0100 | [diff] [blame] | 1539 | if (!rtnl_trylock()) |
| 1540 | return restart_syscall(); |
| 1541 | |
Antoine Tenart | 255c04a | 2021-03-18 19:37:43 +0100 | [diff] [blame] | 1542 | tc = netdev_txq_to_tc(dev, index); |
Antoine Tenart | d7be87a | 2021-03-18 19:37:49 +0100 | [diff] [blame] | 1543 | rtnl_unlock(); |
| 1544 | if (tc < 0) |
| 1545 | return -EINVAL; |
Antoine Tenart | 255c04a | 2021-03-18 19:37:43 +0100 | [diff] [blame] | 1546 | |
Antoine Tenart | 2db6cda | 2021-03-18 19:37:50 +0100 | [diff] [blame] | 1547 | return xps_queue_show(dev, index, tc, buf, XPS_RXQS); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1548 | } |
| 1549 | |
| 1550 | static ssize_t xps_rxqs_store(struct netdev_queue *queue, const char *buf, |
| 1551 | size_t len) |
| 1552 | { |
| 1553 | struct net_device *dev = queue->dev; |
| 1554 | struct net *net = dev_net(dev); |
Antoine Tenart | d9a063d2 | 2021-03-18 19:37:41 +0100 | [diff] [blame] | 1555 | unsigned long *mask; |
| 1556 | unsigned int index; |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1557 | int err; |
| 1558 | |
| 1559 | if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) |
| 1560 | return -EPERM; |
| 1561 | |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1562 | mask = bitmap_zalloc(dev->num_rx_queues, GFP_KERNEL); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1563 | if (!mask) |
| 1564 | return -ENOMEM; |
| 1565 | |
| 1566 | index = get_netdev_queue_index(queue); |
| 1567 | |
| 1568 | err = bitmap_parse(buf, len, mask, dev->num_rx_queues); |
| 1569 | if (err) { |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1570 | bitmap_free(mask); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1571 | return err; |
| 1572 | } |
| 1573 | |
Antoine Tenart | 2d57b4f | 2020-12-23 22:23:22 +0100 | [diff] [blame] | 1574 | if (!rtnl_trylock()) { |
| 1575 | bitmap_free(mask); |
| 1576 | return restart_syscall(); |
| 1577 | } |
| 1578 | |
Andrei Vagin | 4d99f66 | 2018-08-08 20:07:35 -0700 | [diff] [blame] | 1579 | cpus_read_lock(); |
Antoine Tenart | 044ab86 | 2021-03-18 19:37:46 +0100 | [diff] [blame] | 1580 | err = __netif_set_xps_queue(dev, mask, index, XPS_RXQS); |
Andrei Vagin | 4d99f66 | 2018-08-08 20:07:35 -0700 | [diff] [blame] | 1581 | cpus_read_unlock(); |
| 1582 | |
Antoine Tenart | 2d57b4f | 2020-12-23 22:23:22 +0100 | [diff] [blame] | 1583 | rtnl_unlock(); |
| 1584 | |
Andy Shevchenko | 29ca1c5 | 2019-03-04 11:48:56 +0200 | [diff] [blame] | 1585 | bitmap_free(mask); |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1586 | return err ? : len; |
| 1587 | } |
| 1588 | |
| 1589 | static struct netdev_queue_attribute xps_rxqs_attribute __ro_after_init |
| 1590 | = __ATTR_RW(xps_rxqs); |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1591 | #endif /* CONFIG_XPS */ |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1592 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1593 | static struct attribute *netdev_queue_default_attrs[] __ro_after_init = { |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1594 | &queue_trans_timeout.attr, |
Alexander Duyck | 8d059b0 | 2016-10-28 11:43:49 -0400 | [diff] [blame] | 1595 | &queue_traffic_class.attr, |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1596 | #ifdef CONFIG_XPS |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1597 | &xps_cpus_attribute.attr, |
Amritha Nambiar | 8af2c06 | 2018-06-29 21:27:07 -0700 | [diff] [blame] | 1598 | &xps_rxqs_attribute.attr, |
John Fastabend | 822b3b2 | 2015-03-18 14:57:33 +0200 | [diff] [blame] | 1599 | &queue_tx_maxrate.attr, |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1600 | #endif |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1601 | NULL |
| 1602 | }; |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 1603 | ATTRIBUTE_GROUPS(netdev_queue_default); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1604 | |
| 1605 | static void netdev_queue_release(struct kobject *kobj) |
| 1606 | { |
| 1607 | struct netdev_queue *queue = to_netdev_queue(kobj); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1608 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1609 | memset(kobj, 0, sizeof(*kobj)); |
Eric Dumazet | 0b688f2 | 2021-12-04 20:21:59 -0800 | [diff] [blame] | 1610 | dev_put_track(queue->dev, &queue->dev_tracker); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
Weilong Chen | 82ef3d5 | 2014-01-16 17:24:31 +0800 | [diff] [blame] | 1613 | static const void *netdev_queue_namespace(struct kobject *kobj) |
| 1614 | { |
| 1615 | struct netdev_queue *queue = to_netdev_queue(kobj); |
| 1616 | struct device *dev = &queue->dev->dev; |
| 1617 | const void *ns = NULL; |
| 1618 | |
| 1619 | if (dev->class && dev->class->ns_type) |
| 1620 | ns = dev->class->namespace(dev); |
| 1621 | |
| 1622 | return ns; |
| 1623 | } |
| 1624 | |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1625 | static void netdev_queue_get_ownership(struct kobject *kobj, |
| 1626 | kuid_t *uid, kgid_t *gid) |
| 1627 | { |
| 1628 | const struct net *net = netdev_queue_namespace(kobj); |
| 1629 | |
| 1630 | net_ns_get_ownership(net, uid, gid); |
| 1631 | } |
| 1632 | |
stephen hemminger | 2b9c758 | 2017-08-18 13:46:26 -0700 | [diff] [blame] | 1633 | static struct kobj_type netdev_queue_ktype __ro_after_init = { |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1634 | .sysfs_ops = &netdev_queue_sysfs_ops, |
| 1635 | .release = netdev_queue_release, |
Kimberly Brown | be0d692 | 2019-04-01 22:51:35 -0400 | [diff] [blame] | 1636 | .default_groups = netdev_queue_default_groups, |
Weilong Chen | 82ef3d5 | 2014-01-16 17:24:31 +0800 | [diff] [blame] | 1637 | .namespace = netdev_queue_namespace, |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1638 | .get_ownership = netdev_queue_get_ownership, |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1639 | }; |
| 1640 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1641 | static int netdev_queue_add_kobject(struct net_device *dev, int index) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1642 | { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1643 | struct netdev_queue *queue = dev->_tx + index; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1644 | struct kobject *kobj = &queue->kobj; |
| 1645 | int error = 0; |
| 1646 | |
Jouni Hogander | e0b60903 | 2019-12-05 15:57:07 +0200 | [diff] [blame] | 1647 | /* Kobject_put later will trigger netdev_queue_release call |
| 1648 | * which decreases dev refcount: Take that reference here |
| 1649 | */ |
Eric Dumazet | 0b688f2 | 2021-12-04 20:21:59 -0800 | [diff] [blame] | 1650 | dev_hold_track(queue->dev, &queue->dev_tracker, GFP_KERNEL); |
Jouni Hogander | e0b60903 | 2019-12-05 15:57:07 +0200 | [diff] [blame] | 1651 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1652 | kobj->kset = dev->queues_kset; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1653 | error = kobject_init_and_add(kobj, &netdev_queue_ktype, NULL, |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1654 | "tx-%u", index); |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1655 | if (error) |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1656 | goto err; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1657 | |
| 1658 | #ifdef CONFIG_BQL |
| 1659 | error = sysfs_create_group(kobj, &dql_group); |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1660 | if (error) |
| 1661 | goto err; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1662 | #endif |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1663 | |
| 1664 | kobject_uevent(kobj, KOBJ_ADD); |
Eric Dumazet | 48a322b | 2019-11-20 19:19:07 -0800 | [diff] [blame] | 1665 | return 0; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1666 | |
Jouni Hogander | b8eb718 | 2019-11-20 09:08:16 +0200 | [diff] [blame] | 1667 | err: |
| 1668 | kobject_put(kobj); |
| 1669 | return error; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1670 | } |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1671 | |
| 1672 | static int tx_queue_change_owner(struct net_device *ndev, int index, |
| 1673 | kuid_t kuid, kgid_t kgid) |
| 1674 | { |
| 1675 | struct netdev_queue *queue = ndev->_tx + index; |
| 1676 | struct kobject *kobj = &queue->kobj; |
| 1677 | int error; |
| 1678 | |
| 1679 | error = sysfs_change_owner(kobj, kuid, kgid); |
| 1680 | if (error) |
| 1681 | return error; |
| 1682 | |
| 1683 | #ifdef CONFIG_BQL |
| 1684 | error = sysfs_group_change_owner(kobj, &dql_group, kuid, kgid); |
| 1685 | #endif |
| 1686 | return error; |
| 1687 | } |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1688 | #endif /* CONFIG_SYSFS */ |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1689 | |
| 1690 | int |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1691 | 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] | 1692 | { |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1693 | #ifdef CONFIG_SYSFS |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1694 | int i; |
| 1695 | int error = 0; |
| 1696 | |
Antoine Tenart | 5f1c802 | 2021-12-07 15:57:25 +0100 | [diff] [blame] | 1697 | /* Tx queue kobjects are allowed to be updated when a device is being |
| 1698 | * unregistered, but solely to remove queues from qdiscs. Any path |
| 1699 | * adding queues should be fixed. |
| 1700 | */ |
| 1701 | WARN(dev->reg_state == NETREG_UNREGISTERING && new_num > old_num, |
| 1702 | "New queues can't be registered after device unregistration."); |
| 1703 | |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1704 | for (i = old_num; i < new_num; i++) { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1705 | error = netdev_queue_add_kobject(dev, i); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1706 | if (error) { |
| 1707 | new_num = old_num; |
| 1708 | break; |
| 1709 | } |
| 1710 | } |
| 1711 | |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1712 | while (--i >= new_num) { |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1713 | struct netdev_queue *queue = dev->_tx + i; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1714 | |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 1715 | if (!refcount_read(&dev_net(dev)->ns.count)) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1716 | queue->kobj.uevent_suppress = 1; |
Tom Herbert | 114cf58 | 2011-11-28 16:33:09 +0000 | [diff] [blame] | 1717 | #ifdef CONFIG_BQL |
| 1718 | sysfs_remove_group(&queue->kobj, &dql_group); |
| 1719 | #endif |
| 1720 | kobject_put(&queue->kobj); |
| 1721 | } |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1722 | |
| 1723 | return error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1724 | #else |
| 1725 | return 0; |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1726 | #endif /* CONFIG_SYSFS */ |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1727 | } |
| 1728 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1729 | static int net_tx_queue_change_owner(struct net_device *dev, int num, |
| 1730 | kuid_t kuid, kgid_t kgid) |
| 1731 | { |
| 1732 | #ifdef CONFIG_SYSFS |
| 1733 | int error = 0; |
| 1734 | int i; |
| 1735 | |
| 1736 | for (i = 0; i < num; i++) { |
| 1737 | error = tx_queue_change_owner(dev, i, kuid, kgid); |
| 1738 | if (error) |
| 1739 | break; |
| 1740 | } |
| 1741 | |
| 1742 | return error; |
| 1743 | #else |
| 1744 | return 0; |
| 1745 | #endif /* CONFIG_SYSFS */ |
| 1746 | } |
| 1747 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1748 | static int register_queue_kobjects(struct net_device *dev) |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1749 | { |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1750 | 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] | 1751 | |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1752 | #ifdef CONFIG_SYSFS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1753 | dev->queues_kset = kset_create_and_add("queues", |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1754 | NULL, &dev->dev.kobj); |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1755 | if (!dev->queues_kset) |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1756 | return -ENOMEM; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1757 | real_rx = dev->real_num_rx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1758 | #endif |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1759 | real_tx = dev->real_num_tx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1760 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1761 | error = net_rx_queue_update_kobjects(dev, 0, real_rx); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1762 | if (error) |
| 1763 | goto error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1764 | rxq = real_rx; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1765 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1766 | error = netdev_queue_update_kobjects(dev, 0, real_tx); |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1767 | if (error) |
| 1768 | goto error; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1769 | txq = real_tx; |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1770 | |
| 1771 | return 0; |
| 1772 | |
| 1773 | error: |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1774 | netdev_queue_update_kobjects(dev, txq, 0); |
| 1775 | net_rx_queue_update_kobjects(dev, rxq, 0); |
YueHaibing | 895a5e9 | 2019-03-02 10:34:55 +0800 | [diff] [blame] | 1776 | #ifdef CONFIG_SYSFS |
| 1777 | kset_unregister(dev->queues_kset); |
| 1778 | #endif |
Tom Herbert | 1d24eb4 | 2010-11-21 13:17:27 +0000 | [diff] [blame] | 1779 | return error; |
Ben Hutchings | 62fe0b4 | 2010-09-27 08:24:33 +0000 | [diff] [blame] | 1780 | } |
| 1781 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 1782 | static int queue_change_owner(struct net_device *ndev, kuid_t kuid, kgid_t kgid) |
| 1783 | { |
| 1784 | int error = 0, real_rx = 0, real_tx = 0; |
| 1785 | |
| 1786 | #ifdef CONFIG_SYSFS |
| 1787 | if (ndev->queues_kset) { |
| 1788 | error = sysfs_change_owner(&ndev->queues_kset->kobj, kuid, kgid); |
| 1789 | if (error) |
| 1790 | return error; |
| 1791 | } |
| 1792 | real_rx = ndev->real_num_rx_queues; |
| 1793 | #endif |
| 1794 | real_tx = ndev->real_num_tx_queues; |
| 1795 | |
| 1796 | error = net_rx_queue_change_owner(ndev, real_rx, kuid, kgid); |
| 1797 | if (error) |
| 1798 | return error; |
| 1799 | |
| 1800 | error = net_tx_queue_change_owner(ndev, real_tx, kuid, kgid); |
| 1801 | if (error) |
| 1802 | return error; |
| 1803 | |
| 1804 | return 0; |
| 1805 | } |
| 1806 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1807 | static void remove_queue_kobjects(struct net_device *dev) |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1808 | { |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1809 | int real_rx = 0, real_tx = 0; |
| 1810 | |
Michael Dalton | a953be5 | 2014-01-16 22:23:28 -0800 | [diff] [blame] | 1811 | #ifdef CONFIG_SYSFS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1812 | real_rx = dev->real_num_rx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1813 | #endif |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1814 | real_tx = dev->real_num_tx_queues; |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1815 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1816 | net_rx_queue_update_kobjects(dev, real_rx, 0); |
| 1817 | netdev_queue_update_kobjects(dev, real_tx, 0); |
Antoine Tenart | d7dac083 | 2021-12-07 15:57:24 +0100 | [diff] [blame] | 1818 | |
| 1819 | dev->real_num_rx_queues = 0; |
| 1820 | dev->real_num_tx_queues = 0; |
david decotigny | ccf5ff6 | 2011-11-16 12:15:10 +0000 | [diff] [blame] | 1821 | #ifdef CONFIG_SYSFS |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1822 | kset_unregister(dev->queues_kset); |
Tom Herbert | bf26414 | 2010-11-26 08:36:09 +0000 | [diff] [blame] | 1823 | #endif |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1824 | } |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1825 | |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 1826 | static bool net_current_may_mount(void) |
| 1827 | { |
| 1828 | struct net *net = current->nsproxy->net_ns; |
| 1829 | |
| 1830 | return ns_capable(net->user_ns, CAP_SYS_ADMIN); |
| 1831 | } |
| 1832 | |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1833 | static void *net_grab_current_ns(void) |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1834 | { |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1835 | struct net *ns = current->nsproxy->net_ns; |
| 1836 | #ifdef CONFIG_NET_NS |
| 1837 | if (ns) |
Reshetova, Elena | c122e14 | 2017-06-30 13:08:08 +0300 | [diff] [blame] | 1838 | refcount_inc(&ns->passive); |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1839 | #endif |
| 1840 | return ns; |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1841 | } |
| 1842 | |
| 1843 | static const void *net_initial_ns(void) |
| 1844 | { |
| 1845 | return &init_net; |
| 1846 | } |
| 1847 | |
| 1848 | static const void *net_netlink_ns(struct sock *sk) |
| 1849 | { |
| 1850 | return sock_net(sk); |
| 1851 | } |
| 1852 | |
stephen hemminger | 737aec5 | 2017-08-18 13:46:22 -0700 | [diff] [blame] | 1853 | const struct kobj_ns_type_operations net_ns_type_operations = { |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1854 | .type = KOBJ_NS_TYPE_NET, |
Eric W. Biederman | 7dc5dbc | 2013-03-25 20:07:01 -0700 | [diff] [blame] | 1855 | .current_may_mount = net_current_may_mount, |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1856 | .grab_current_ns = net_grab_current_ns, |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1857 | .netlink_ns = net_netlink_ns, |
| 1858 | .initial_ns = net_initial_ns, |
Al Viro | a685e08 | 2011-06-08 21:13:01 -0400 | [diff] [blame] | 1859 | .drop_ns = net_drop_ns, |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1860 | }; |
Johannes Berg | 0460079 | 2010-08-05 17:45:15 +0200 | [diff] [blame] | 1861 | EXPORT_SYMBOL_GPL(net_ns_type_operations); |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1862 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1863 | static int netdev_uevent(struct device *d, struct kobj_uevent_env *env) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1865 | struct net_device *dev = to_net_dev(d); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1866 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 1868 | /* pass interface to uevent. */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1869 | retval = add_uevent_var(env, "INTERFACE=%s", dev->name); |
Eric Rannaud | bf62456 | 2007-03-30 22:23:12 -0700 | [diff] [blame] | 1870 | if (retval) |
| 1871 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1872 | |
Jean Tourrilhes | ca2f37d | 2007-03-07 10:49:30 -0800 | [diff] [blame] | 1873 | /* pass ifindex to uevent. |
| 1874 | * ifindex is useful as it won't change (interface name may change) |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1875 | * and is what RtNetlink uses natively. |
| 1876 | */ |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 1877 | retval = add_uevent_var(env, "IFINDEX=%d", dev->ifindex); |
Jean Tourrilhes | ca2f37d | 2007-03-07 10:49:30 -0800 | [diff] [blame] | 1878 | |
Eric Rannaud | bf62456 | 2007-03-30 22:23:12 -0700 | [diff] [blame] | 1879 | exit: |
Eric Rannaud | bf62456 | 2007-03-30 22:23:12 -0700 | [diff] [blame] | 1880 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | |
| 1883 | /* |
YOSHIFUJI Hideaki | 4ec93ed | 2007-02-09 23:24:36 +0900 | [diff] [blame] | 1884 | * netdev_release -- destroy and free a dead device. |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1885 | * Called when last reference to device kobject is gone. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | */ |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1887 | static void netdev_release(struct device *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | { |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1889 | struct net_device *dev = to_net_dev(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | |
| 1891 | BUG_ON(dev->reg_state != NETREG_RELEASED); |
| 1892 | |
Florian Westphal | 6c55700 | 2017-10-02 23:50:05 +0200 | [diff] [blame] | 1893 | /* no need to wait for rcu grace period: |
| 1894 | * device is dead and about to be freed. |
| 1895 | */ |
| 1896 | kfree(rcu_access_pointer(dev->ifalias)); |
Eric Dumazet | 74d332c | 2013-10-30 13:10:44 -0700 | [diff] [blame] | 1897 | netdev_freemem(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1898 | } |
| 1899 | |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1900 | static const void *net_namespace(struct device *d) |
| 1901 | { |
Geliang Tang | 5c29482 | 2015-12-22 23:11:49 +0800 | [diff] [blame] | 1902 | struct net_device *dev = to_net_dev(d); |
| 1903 | |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1904 | return dev_net(dev); |
| 1905 | } |
| 1906 | |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1907 | static void net_get_ownership(struct device *d, kuid_t *uid, kgid_t *gid) |
| 1908 | { |
| 1909 | struct net_device *dev = to_net_dev(d); |
| 1910 | const struct net *net = dev_net(dev); |
| 1911 | |
| 1912 | net_ns_get_ownership(net, uid, gid); |
| 1913 | } |
| 1914 | |
stephen hemminger | e6d473e | 2017-08-18 13:46:21 -0700 | [diff] [blame] | 1915 | static struct class net_class __ro_after_init = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | .name = "net", |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1917 | .dev_release = netdev_release, |
Greg Kroah-Hartman | 6be8aee | 2013-07-24 15:05:33 -0700 | [diff] [blame] | 1918 | .dev_groups = net_class_groups, |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1919 | .dev_uevent = netdev_uevent, |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 1920 | .ns_type = &net_ns_type_operations, |
| 1921 | .namespace = net_namespace, |
Dmitry Torokhov | b0e37c0 | 2018-07-20 21:56:52 +0000 | [diff] [blame] | 1922 | .get_ownership = net_get_ownership, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | }; |
| 1924 | |
Jakub Kicinski | e330fb1 | 2021-10-06 18:06:54 -0700 | [diff] [blame] | 1925 | #ifdef CONFIG_OF |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1926 | static int of_dev_node_match(struct device *dev, const void *data) |
| 1927 | { |
Tobias Waldekranz | 2e186a2 | 2020-05-15 11:52:52 +0200 | [diff] [blame] | 1928 | for (; dev; dev = dev->parent) { |
| 1929 | if (dev->of_node == data) |
| 1930 | return 1; |
| 1931 | } |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1932 | |
Tobias Waldekranz | 2e186a2 | 2020-05-15 11:52:52 +0200 | [diff] [blame] | 1933 | return 0; |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1934 | } |
| 1935 | |
Russell King | 9861f72 | 2015-09-24 20:36:33 +0100 | [diff] [blame] | 1936 | /* |
| 1937 | * of_find_net_device_by_node - lookup the net device for the device node |
| 1938 | * @np: OF device node |
| 1939 | * |
| 1940 | * Looks up the net_device structure corresponding with the device node. |
| 1941 | * If successful, returns a pointer to the net_device with the embedded |
| 1942 | * struct device refcount incremented by one, or NULL on failure. The |
| 1943 | * refcount must be dropped when done with the net_device. |
| 1944 | */ |
Florian Fainelli | aa836df | 2015-03-09 14:31:20 -0700 | [diff] [blame] | 1945 | struct net_device *of_find_net_device_by_node(struct device_node *np) |
| 1946 | { |
| 1947 | struct device *dev; |
| 1948 | |
| 1949 | dev = class_find_device(&net_class, NULL, np, of_dev_node_match); |
| 1950 | if (!dev) |
| 1951 | return NULL; |
| 1952 | |
| 1953 | return to_net_dev(dev); |
| 1954 | } |
| 1955 | EXPORT_SYMBOL(of_find_net_device_by_node); |
| 1956 | #endif |
| 1957 | |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1958 | /* Delete sysfs entries but hold kobject reference until after all |
| 1959 | * netdev references are gone. |
| 1960 | */ |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1961 | void netdev_unregister_kobject(struct net_device *ndev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1963 | struct device *dev = &ndev->dev; |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1964 | |
Christian Brauner | 8b8f3e6 | 2020-08-19 14:06:36 +0200 | [diff] [blame] | 1965 | if (!refcount_read(&dev_net(ndev)->ns.count)) |
Andrey Vagin | 002d8a1 | 2016-10-24 19:09:53 -0700 | [diff] [blame] | 1966 | dev_set_uevent_suppress(dev, 1); |
| 1967 | |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1968 | kobject_get(&dev->kobj); |
Eric W. Biederman | 3891845 | 2008-10-27 17:51:47 -0700 | [diff] [blame] | 1969 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1970 | remove_queue_kobjects(ndev); |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1971 | |
Ming Lei | 9802c8e | 2013-02-22 16:34:16 -0800 | [diff] [blame] | 1972 | pm_runtime_set_memalloc_noio(dev, false); |
| 1973 | |
Stephen Hemminger | 9093bbb | 2007-05-19 15:39:25 -0700 | [diff] [blame] | 1974 | device_del(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | /* Create sysfs entries for network device. */ |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1978 | int netdev_register_kobject(struct net_device *ndev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | { |
stephen hemminger | 6648c65 | 2017-08-18 13:46:28 -0700 | [diff] [blame] | 1980 | struct device *dev = &ndev->dev; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1981 | const struct attribute_group **groups = ndev->sysfs_groups; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 1982 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | |
Eric W. Biederman | a1b3f59 | 2010-05-04 17:36:49 -0700 | [diff] [blame] | 1984 | device_initialize(dev); |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1985 | dev->class = &net_class; |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1986 | dev->platform_data = ndev; |
Greg Kroah-Hartman | 43cb76d | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 1987 | dev->groups = groups; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1989 | dev_set_name(dev, "%s", ndev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | |
Eric W. Biederman | 8b41d18 | 2007-09-26 22:02:53 -0700 | [diff] [blame] | 1991 | #ifdef CONFIG_SYSFS |
Eric W. Biederman | 0c509a6 | 2009-10-29 14:18:21 +0000 | [diff] [blame] | 1992 | /* Allow for a device specific group */ |
| 1993 | if (*groups) |
| 1994 | groups++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | |
Eric W. Biederman | 0c509a6 | 2009-10-29 14:18:21 +0000 | [diff] [blame] | 1996 | *groups++ = &netstat_group; |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 1997 | |
| 1998 | #if IS_ENABLED(CONFIG_WIRELESS_EXT) || IS_ENABLED(CONFIG_CFG80211) |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 1999 | if (ndev->ieee80211_ptr) |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 2000 | *groups++ = &wireless_group; |
| 2001 | #if IS_ENABLED(CONFIG_WIRELESS_EXT) |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 2002 | else if (ndev->wireless_handlers) |
Johannes Berg | 38c1a01 | 2012-11-16 20:46:19 +0100 | [diff] [blame] | 2003 | *groups++ = &wireless_group; |
| 2004 | #endif |
| 2005 | #endif |
Eric W. Biederman | 8b41d18 | 2007-09-26 22:02:53 -0700 | [diff] [blame] | 2006 | #endif /* CONFIG_SYSFS */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2007 | |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 2008 | error = device_add(dev); |
| 2009 | if (error) |
Wang Hai | 8ed633b | 2019-04-12 16:36:33 -0400 | [diff] [blame] | 2010 | return error; |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 2011 | |
WANG Cong | 6b53daf | 2014-07-23 16:09:10 -0700 | [diff] [blame] | 2012 | error = register_queue_kobjects(ndev); |
Wang Hai | 8ed633b | 2019-04-12 16:36:33 -0400 | [diff] [blame] | 2013 | if (error) { |
| 2014 | device_del(dev); |
| 2015 | return error; |
| 2016 | } |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 2017 | |
Ming Lei | 9802c8e | 2013-02-22 16:34:16 -0800 | [diff] [blame] | 2018 | pm_runtime_set_memalloc_noio(dev, true); |
| 2019 | |
Tom Herbert | 0a9627f | 2010-03-16 08:03:29 +0000 | [diff] [blame] | 2020 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | } |
| 2022 | |
Christian Brauner | e6dee9f | 2020-02-27 04:37:17 +0100 | [diff] [blame] | 2023 | /* Change owner for sysfs entries when moving network devices across network |
| 2024 | * namespaces owned by different user namespaces. |
| 2025 | */ |
| 2026 | int netdev_change_owner(struct net_device *ndev, const struct net *net_old, |
| 2027 | const struct net *net_new) |
| 2028 | { |
Xin Long | f7a1e76 | 2021-10-25 02:31:48 -0400 | [diff] [blame] | 2029 | kuid_t old_uid = GLOBAL_ROOT_UID, new_uid = GLOBAL_ROOT_UID; |
| 2030 | kgid_t old_gid = GLOBAL_ROOT_GID, new_gid = GLOBAL_ROOT_GID; |
Christian Brauner | e6dee9f | 2020-02-27 04:37:17 +0100 | [diff] [blame] | 2031 | struct device *dev = &ndev->dev; |
Christian Brauner | e6dee9f | 2020-02-27 04:37:17 +0100 | [diff] [blame] | 2032 | int error; |
| 2033 | |
| 2034 | net_ns_get_ownership(net_old, &old_uid, &old_gid); |
| 2035 | net_ns_get_ownership(net_new, &new_uid, &new_gid); |
| 2036 | |
| 2037 | /* The network namespace was changed but the owning user namespace is |
| 2038 | * identical so there's no need to change the owner of sysfs entries. |
| 2039 | */ |
| 2040 | if (uid_eq(old_uid, new_uid) && gid_eq(old_gid, new_gid)) |
| 2041 | return 0; |
| 2042 | |
| 2043 | error = device_change_owner(dev, new_uid, new_gid); |
| 2044 | if (error) |
| 2045 | return error; |
| 2046 | |
Christian Brauner | d755407 | 2020-02-27 04:37:18 +0100 | [diff] [blame] | 2047 | error = queue_change_owner(ndev, new_uid, new_gid); |
| 2048 | if (error) |
| 2049 | return error; |
| 2050 | |
Christian Brauner | e6dee9f | 2020-02-27 04:37:17 +0100 | [diff] [blame] | 2051 | return 0; |
| 2052 | } |
| 2053 | |
stephen hemminger | b793dc5 | 2017-08-18 13:46:20 -0700 | [diff] [blame] | 2054 | int netdev_class_create_file_ns(const struct class_attribute *class_attr, |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2055 | const void *ns) |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2056 | { |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2057 | return class_create_file_ns(&net_class, class_attr, ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2058 | } |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2059 | EXPORT_SYMBOL(netdev_class_create_file_ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2060 | |
stephen hemminger | b793dc5 | 2017-08-18 13:46:20 -0700 | [diff] [blame] | 2061 | void netdev_class_remove_file_ns(const struct class_attribute *class_attr, |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2062 | const void *ns) |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2063 | { |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2064 | class_remove_file_ns(&net_class, class_attr, ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2065 | } |
Tejun Heo | 58292cbe | 2013-09-11 22:29:04 -0400 | [diff] [blame] | 2066 | EXPORT_SYMBOL(netdev_class_remove_file_ns); |
Jay Vosburgh | b8a9787 | 2008-06-13 18:12:04 -0700 | [diff] [blame] | 2067 | |
Daniel Borkmann | a48d4bb | 2014-01-06 01:20:11 +0100 | [diff] [blame] | 2068 | int __init netdev_kobject_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | { |
Eric W. Biederman | 608b4b9 | 2010-05-04 17:36:45 -0700 | [diff] [blame] | 2070 | kobj_ns_type_register(&net_ns_type_operations); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | return class_register(&net_class); |
| 2072 | } |