blob: 326e14ee05dbf0cbad221865d883ad1bde7c7df3 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * net/core/ethtool.c - Ethtool ioctl handler
4 * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
5 *
6 * This file is where we call all the ethtool_ops commands to get
Matthew Wilcox61a44b92007-07-31 14:00:02 -07007 * the information ethtool needs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Arnd Bergmanndd98d282021-07-22 16:28:59 +020010#include <linux/compat.h>
Jakub Kicinskib6459412021-12-28 16:49:13 -080011#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/types.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/errno.h>
16#include <linux/ethtool.h>
17#include <linux/netdevice.h>
Richard Cochranc8f3a8c2012-04-03 22:59:17 +000018#include <linux/net_tstamp.h>
19#include <linux/phy.h>
Jeff Garzikd17792e2010-03-04 08:21:53 +000020#include <linux/bitops.h>
chavey97f8aef2010-04-07 21:54:42 -070021#include <linux/uaccess.h>
David S. Miller73da16c2010-09-21 16:12:11 -070022#include <linux/vmalloc.h>
Russell Kinge679c9c2018-03-28 15:44:16 -070023#include <linux/sfp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Ben Hutchings68f512f2011-04-02 00:35:15 +010025#include <linux/rtnetlink.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Eric Dumazet960fb622014-11-16 06:23:05 -080027#include <linux/net.h>
Heiner Kallweitf32a2132021-08-01 12:36:48 +020028#include <linux/pm_runtime.h>
Jakub Kicinskiddb6e992019-01-31 10:50:47 -080029#include <net/devlink.h>
Magnus Karlssona71506a2020-05-20 21:20:51 +020030#include <net/xdp_sock_drv.h>
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +010031#include <net/flow_offload.h>
Michal Kubecek73286732019-12-27 15:56:03 +010032#include <linux/ethtool_netlink.h>
Leon Romanovsky1c790312020-04-19 17:18:47 +030033#include <generated/utsrelease.h>
Michal Kubecekd44e1312019-12-11 10:58:29 +010034#include "common.h"
35
Jakub Kicinski095cfcf2021-10-30 10:18:49 -070036/* State held across locks and calls for commands which have devlink fallback */
37struct ethtool_devlink_compat {
Jakub Kicinski1af0a092021-10-30 10:18:51 -070038 struct devlink *devlink;
Jakub Kicinski095cfcf2021-10-30 10:18:49 -070039 union {
40 struct ethtool_flash efl;
41 struct ethtool_drvinfo info;
42 };
43};
44
Jakub Kicinski1af0a092021-10-30 10:18:51 -070045static struct devlink *netdev_to_devlink_get(struct net_device *dev)
46{
47 struct devlink_port *devlink_port;
48
49 if (!dev->netdev_ops->ndo_get_devlink_port)
50 return NULL;
51
52 devlink_port = dev->netdev_ops->ndo_get_devlink_port(dev);
53 if (!devlink_port)
54 return NULL;
55
56 return devlink_try_get(devlink_port->devlink);
57}
58
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * Some useful ethtool_ops methods that're device independent.
61 * If we find that all drivers want to do the same thing here,
62 * we can turn these into dev_() function calls.
63 */
64
65u32 ethtool_op_get_link(struct net_device *dev)
66{
67 return netif_carrier_ok(dev) ? 1 : 0;
68}
chavey97f8aef2010-04-07 21:54:42 -070069EXPORT_SYMBOL(ethtool_op_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Richard Cochran02eacbd2012-04-03 22:59:22 +000071int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
72{
73 info->so_timestamping =
74 SOF_TIMESTAMPING_TX_SOFTWARE |
75 SOF_TIMESTAMPING_RX_SOFTWARE |
76 SOF_TIMESTAMPING_SOFTWARE;
77 info->phc_index = -1;
78 return 0;
79}
80EXPORT_SYMBOL(ethtool_op_get_ts_info);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* Handlers for each ethtool command */
83
Michał Mirosław5455c692011-02-15 16:59:17 +000084static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
85{
86 struct ethtool_gfeatures cmd = {
87 .cmd = ETHTOOL_GFEATURES,
88 .size = ETHTOOL_DEV_FEATURE_WORDS,
89 };
Michał Mirosław475414f2011-11-15 15:29:55 +000090 struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław5455c692011-02-15 16:59:17 +000091 u32 __user *sizeaddr;
92 u32 copy_size;
Michał Mirosław475414f2011-11-15 15:29:55 +000093 int i;
94
95 /* in case feature bits run out again */
Michał Mirosław09da71b2011-11-16 14:32:03 +000096 BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
Michał Mirosław475414f2011-11-15 15:29:55 +000097
98 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +000099 features[i].available = (u32)(dev->hw_features >> (32 * i));
100 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
101 features[i].active = (u32)(dev->features >> (32 * i));
102 features[i].never_changed =
103 (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
Michał Mirosław475414f2011-11-15 15:29:55 +0000104 }
Michał Mirosław5455c692011-02-15 16:59:17 +0000105
106 sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
107 if (get_user(copy_size, sizeaddr))
108 return -EFAULT;
109
110 if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
111 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
112
113 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
114 return -EFAULT;
115 useraddr += sizeof(cmd);
Gustavo A. R. Silvaed717612021-09-28 14:57:35 -0500116 if (copy_to_user(useraddr, features,
117 array_size(copy_size, sizeof(*features))))
Michał Mirosław5455c692011-02-15 16:59:17 +0000118 return -EFAULT;
119
120 return 0;
121}
122
123static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
124{
125 struct ethtool_sfeatures cmd;
126 struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
Michał Mirosław475414f2011-11-15 15:29:55 +0000127 netdev_features_t wanted = 0, valid = 0;
128 int i, ret = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +0000129
130 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
131 return -EFAULT;
132 useraddr += sizeof(cmd);
133
134 if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
135 return -EINVAL;
136
137 if (copy_from_user(features, useraddr, sizeof(features)))
138 return -EFAULT;
139
Michał Mirosław475414f2011-11-15 15:29:55 +0000140 for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
Michał Mirosław09da71b2011-11-16 14:32:03 +0000141 valid |= (netdev_features_t)features[i].valid << (32 * i);
142 wanted |= (netdev_features_t)features[i].requested << (32 * i);
Michał Mirosław475414f2011-11-15 15:29:55 +0000143 }
144
145 if (valid & ~NETIF_F_ETHTOOL_BITS)
Michał Mirosław5455c692011-02-15 16:59:17 +0000146 return -EINVAL;
147
Michał Mirosław475414f2011-11-15 15:29:55 +0000148 if (valid & ~dev->hw_features) {
149 valid &= dev->hw_features;
Michał Mirosław5455c692011-02-15 16:59:17 +0000150 ret |= ETHTOOL_F_UNSUPPORTED;
151 }
152
Michał Mirosław475414f2011-11-15 15:29:55 +0000153 dev->wanted_features &= ~valid;
154 dev->wanted_features |= wanted & valid;
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700155 __netdev_update_features(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +0000156
Michał Mirosław475414f2011-11-15 15:29:55 +0000157 if ((dev->wanted_features ^ dev->features) & valid)
Michał Mirosław5455c692011-02-15 16:59:17 +0000158 ret |= ETHTOOL_F_WISH;
159
160 return ret;
161}
162
Michał Mirosław340ae162011-02-15 16:59:16 +0000163static int __ethtool_get_sset_count(struct net_device *dev, int sset)
164{
Florian Fainelli17809512020-07-08 09:46:25 -0700165 const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops;
Michał Mirosław340ae162011-02-15 16:59:16 +0000166 const struct ethtool_ops *ops = dev->ethtool_ops;
167
Michał Mirosław5455c692011-02-15 16:59:17 +0000168 if (sset == ETH_SS_FEATURES)
169 return ARRAY_SIZE(netdev_features_strings);
170
Eyal Perry892311f2014-12-02 18:12:10 +0200171 if (sset == ETH_SS_RSS_HASH_FUNCS)
172 return ARRAY_SIZE(rss_hash_func_strings);
173
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300174 if (sset == ETH_SS_TUNABLES)
175 return ARRAY_SIZE(tunable_strings);
176
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100177 if (sset == ETH_SS_PHY_TUNABLES)
178 return ARRAY_SIZE(phy_tunable_strings);
179
Florian Fainelli99943382018-04-25 12:12:48 -0700180 if (sset == ETH_SS_PHY_STATS && dev->phydev &&
Florian Fainelli17809512020-07-08 09:46:25 -0700181 !ops->get_ethtool_phy_stats &&
182 phy_ops && phy_ops->get_sset_count)
183 return phy_ops->get_sset_count(dev->phydev);
Andrew Lunnf3a40942015-12-30 16:28:25 +0100184
Michal Kubecek428c1222019-12-11 10:58:34 +0100185 if (sset == ETH_SS_LINK_MODES)
186 return __ETHTOOL_LINK_MODE_MASK_NBITS;
187
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000188 if (ops->get_sset_count && ops->get_strings)
Michał Mirosław340ae162011-02-15 16:59:16 +0000189 return ops->get_sset_count(dev, sset);
190 else
191 return -EOPNOTSUPP;
192}
193
194static void __ethtool_get_strings(struct net_device *dev,
195 u32 stringset, u8 *data)
196{
Florian Fainelli17809512020-07-08 09:46:25 -0700197 const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops;
Michał Mirosław340ae162011-02-15 16:59:16 +0000198 const struct ethtool_ops *ops = dev->ethtool_ops;
199
Michał Mirosław5455c692011-02-15 16:59:17 +0000200 if (stringset == ETH_SS_FEATURES)
201 memcpy(data, netdev_features_strings,
202 sizeof(netdev_features_strings));
Eyal Perry892311f2014-12-02 18:12:10 +0200203 else if (stringset == ETH_SS_RSS_HASH_FUNCS)
204 memcpy(data, rss_hash_func_strings,
205 sizeof(rss_hash_func_strings));
Hadar Hen Ziona4244b02015-06-11 10:28:16 +0300206 else if (stringset == ETH_SS_TUNABLES)
207 memcpy(data, tunable_strings, sizeof(tunable_strings));
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +0100208 else if (stringset == ETH_SS_PHY_TUNABLES)
209 memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings));
Florian Fainelli99943382018-04-25 12:12:48 -0700210 else if (stringset == ETH_SS_PHY_STATS && dev->phydev &&
Florian Fainelli17809512020-07-08 09:46:25 -0700211 !ops->get_ethtool_phy_stats && phy_ops &&
212 phy_ops->get_strings)
213 phy_ops->get_strings(dev->phydev, data);
Michal Kubecek428c1222019-12-11 10:58:34 +0100214 else if (stringset == ETH_SS_LINK_MODES)
215 memcpy(data, link_mode_names,
216 __ETHTOOL_LINK_MODE_MASK_NBITS * ETH_GSTRING_LEN);
Florian Fainelli99943382018-04-25 12:12:48 -0700217 else
Michał Mirosław5455c692011-02-15 16:59:17 +0000218 /* ops->get_strings is valid because checked earlier */
219 ops->get_strings(dev, stringset, data);
Michał Mirosław340ae162011-02-15 16:59:16 +0000220}
221
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000222static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
Michał Mirosław0a417702011-02-15 16:59:17 +0000223{
224 /* feature masks of legacy discrete ethtool ops */
225
226 switch (eth_cmd) {
227 case ETHTOOL_GTXCSUM:
228 case ETHTOOL_STXCSUM:
Vladyslav Tarasiuk9d648fb2020-03-24 13:57:08 +0200229 return NETIF_F_CSUM_MASK | NETIF_F_FCOE_CRC |
Michal Kubecekf70bb062020-03-12 21:07:43 +0100230 NETIF_F_SCTP_CRC;
Michał Mirosławe83d3602011-02-15 16:59:18 +0000231 case ETHTOOL_GRXCSUM:
232 case ETHTOOL_SRXCSUM:
233 return NETIF_F_RXCSUM;
Michał Mirosław0a417702011-02-15 16:59:17 +0000234 case ETHTOOL_GSG:
235 case ETHTOOL_SSG:
Michal Kubecekf70bb062020-03-12 21:07:43 +0100236 return NETIF_F_SG | NETIF_F_FRAGLIST;
Michał Mirosław0a417702011-02-15 16:59:17 +0000237 case ETHTOOL_GTSO:
238 case ETHTOOL_STSO:
239 return NETIF_F_ALL_TSO;
Michał Mirosław0a417702011-02-15 16:59:17 +0000240 case ETHTOOL_GGSO:
241 case ETHTOOL_SGSO:
242 return NETIF_F_GSO;
243 case ETHTOOL_GGRO:
244 case ETHTOOL_SGRO:
245 return NETIF_F_GRO;
246 default:
247 BUG();
248 }
249}
250
Michał Mirosław0a417702011-02-15 16:59:17 +0000251static int ethtool_get_one_feature(struct net_device *dev,
252 char __user *useraddr, u32 ethcmd)
253{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000254 netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
Michał Mirosław0a417702011-02-15 16:59:17 +0000255 struct ethtool_value edata = {
256 .cmd = ethcmd,
Michał Mirosław86794882011-02-15 16:59:17 +0000257 .data = !!(dev->features & mask),
Michał Mirosław0a417702011-02-15 16:59:17 +0000258 };
Michał Mirosław0a417702011-02-15 16:59:17 +0000259
Michał Mirosław0a417702011-02-15 16:59:17 +0000260 if (copy_to_user(useraddr, &edata, sizeof(edata)))
261 return -EFAULT;
262 return 0;
263}
264
Michał Mirosław0a417702011-02-15 16:59:17 +0000265static int ethtool_set_one_feature(struct net_device *dev,
266 void __user *useraddr, u32 ethcmd)
267{
268 struct ethtool_value edata;
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000269 netdev_features_t mask;
Michał Mirosław0a417702011-02-15 16:59:17 +0000270
271 if (copy_from_user(&edata, useraddr, sizeof(edata)))
272 return -EFAULT;
273
Michał Mirosław86794882011-02-15 16:59:17 +0000274 mask = ethtool_get_feature_mask(ethcmd);
275 mask &= dev->hw_features;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000276 if (!mask)
Michał Mirosław0a417702011-02-15 16:59:17 +0000277 return -EOPNOTSUPP;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000278
279 if (edata.data)
280 dev->wanted_features |= mask;
281 else
282 dev->wanted_features &= ~mask;
283
284 __netdev_update_features(dev);
285
286 return 0;
Michał Mirosław0a417702011-02-15 16:59:17 +0000287}
288
Michał Mirosław02b3a552011-11-15 15:29:55 +0000289#define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
290 ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
Patrick McHardyf6469682013-04-19 02:04:27 +0000291#define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
292 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
293 NETIF_F_RXHASH)
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000294
295static u32 __ethtool_get_flags(struct net_device *dev)
296{
Michał Mirosław02b3a552011-11-15 15:29:55 +0000297 u32 flags = 0;
298
Dragos Foianu8a731252013-07-13 14:43:00 +0100299 if (dev->features & NETIF_F_LRO)
300 flags |= ETH_FLAG_LRO;
301 if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
302 flags |= ETH_FLAG_RXVLAN;
303 if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
304 flags |= ETH_FLAG_TXVLAN;
305 if (dev->features & NETIF_F_NTUPLE)
306 flags |= ETH_FLAG_NTUPLE;
307 if (dev->features & NETIF_F_RXHASH)
308 flags |= ETH_FLAG_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000309
310 return flags;
Michał Mirosławbc5787c62011-11-15 15:29:55 +0000311}
312
313static int __ethtool_set_flags(struct net_device *dev, u32 data)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000314{
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000315 netdev_features_t features = 0, changed;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000316
Michał Mirosław02b3a552011-11-15 15:29:55 +0000317 if (data & ~ETH_ALL_FLAGS)
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000318 return -EINVAL;
319
Dragos Foianu8a731252013-07-13 14:43:00 +0100320 if (data & ETH_FLAG_LRO)
321 features |= NETIF_F_LRO;
322 if (data & ETH_FLAG_RXVLAN)
323 features |= NETIF_F_HW_VLAN_CTAG_RX;
324 if (data & ETH_FLAG_TXVLAN)
325 features |= NETIF_F_HW_VLAN_CTAG_TX;
326 if (data & ETH_FLAG_NTUPLE)
327 features |= NETIF_F_NTUPLE;
328 if (data & ETH_FLAG_RXHASH)
329 features |= NETIF_F_RXHASH;
Michał Mirosław02b3a552011-11-15 15:29:55 +0000330
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000331 /* allow changing only bits set in hw_features */
Michał Mirosław02b3a552011-11-15 15:29:55 +0000332 changed = (features ^ dev->features) & ETH_ALL_FEATURES;
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000333 if (changed & ~dev->hw_features)
334 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
335
336 dev->wanted_features =
Michał Mirosław02b3a552011-11-15 15:29:55 +0000337 (dev->wanted_features & ~changed) | (features & changed);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000338
Michał Mirosław6cb6a272011-04-02 22:48:47 -0700339 __netdev_update_features(dev);
Michał Mirosławda8ac86c2011-02-15 16:59:18 +0000340
341 return 0;
342}
343
Alan Brady5a6cd6d2017-10-05 14:53:40 -0700344/* Given two link masks, AND them together and save the result in dst. */
345void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst,
346 struct ethtool_link_ksettings *src)
347{
348 unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
349 unsigned int idx = 0;
350
351 for (; idx < size; idx++) {
352 dst->link_modes.supported[idx] &=
353 src->link_modes.supported[idx];
354 dst->link_modes.advertising[idx] &=
355 src->link_modes.advertising[idx];
356 }
357}
358EXPORT_SYMBOL(ethtool_intersect_link_masks);
359
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200360void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
361 u32 legacy_u32)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800362{
Sean Anderson49730562021-10-22 18:41:04 -0400363 linkmode_zero(dst);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800364 dst[0] = legacy_u32;
365}
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200366EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800367
368/* return false if src had higher bits set. lower bits always updated. */
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200369bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
370 const unsigned long *src)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800371{
372 bool retval = true;
373
374 /* TODO: following test will soon always be true */
375 if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
376 __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
377
Sean Anderson49730562021-10-22 18:41:04 -0400378 linkmode_zero(ext);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800379 bitmap_fill(ext, 32);
380 bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
Sean Anderson49730562021-10-22 18:41:04 -0400381 if (linkmode_intersects(ext, src)) {
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800382 /* src mask goes beyond bit 31 */
383 retval = false;
384 }
385 }
386 *legacy_u32 = src[0];
387 return retval;
388}
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200389EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800390
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800391/* return false if ksettings link modes had higher bits
392 * set. legacy_settings always updated (best effort)
393 */
394static bool
395convert_link_ksettings_to_legacy_settings(
396 struct ethtool_cmd *legacy_settings,
397 const struct ethtool_link_ksettings *link_ksettings)
398{
399 bool retval = true;
400
401 memset(legacy_settings, 0, sizeof(*legacy_settings));
402 /* this also clears the deprecated fields in legacy structure:
403 * __u8 transceiver;
404 * __u32 maxtxpkt;
405 * __u32 maxrxpkt;
406 */
407
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200408 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800409 &legacy_settings->supported,
410 link_ksettings->link_modes.supported);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200411 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800412 &legacy_settings->advertising,
413 link_ksettings->link_modes.advertising);
Philippe Reynes6d62b4d2016-04-15 00:34:59 +0200414 retval &= ethtool_convert_link_mode_to_legacy_u32(
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800415 &legacy_settings->lp_advertising,
416 link_ksettings->link_modes.lp_advertising);
417 ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
418 legacy_settings->duplex
419 = link_ksettings->base.duplex;
420 legacy_settings->port
421 = link_ksettings->base.port;
422 legacy_settings->phy_address
423 = link_ksettings->base.phy_address;
424 legacy_settings->autoneg
425 = link_ksettings->base.autoneg;
426 legacy_settings->mdio_support
427 = link_ksettings->base.mdio_support;
428 legacy_settings->eth_tp_mdix
429 = link_ksettings->base.eth_tp_mdix;
430 legacy_settings->eth_tp_mdix_ctrl
431 = link_ksettings->base.eth_tp_mdix_ctrl;
Florian Fainelli19cab882017-09-20 15:52:13 -0700432 legacy_settings->transceiver
433 = link_ksettings->base.transceiver;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800434 return retval;
435}
436
437/* number of 32-bit words to store the user's link mode bitmaps */
438#define __ETHTOOL_LINK_MODE_MASK_NU32 \
439 DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
440
441/* layout of the struct passed from/to userland */
442struct ethtool_link_usettings {
443 struct ethtool_link_settings base;
444 struct {
445 __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
446 __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
447 __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
448 } link_modes;
449};
450
Michal Kubecek9b300492018-08-28 19:56:58 +0200451/* Internal kernel helper to query a device ethtool_link_settings. */
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800452int __ethtool_get_link_ksettings(struct net_device *dev,
453 struct ethtool_link_ksettings *link_ksettings)
454{
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800455 ASSERT_RTNL();
456
Michal Kubecek9b300492018-08-28 19:56:58 +0200457 if (!dev->ethtool_ops->get_link_ksettings)
David Decotigny3237fc62016-02-24 10:58:11 -0800458 return -EOPNOTSUPP;
459
Michal Kubecek9b300492018-08-28 19:56:58 +0200460 memset(link_ksettings, 0, sizeof(*link_ksettings));
Danielle Ratsona975d7d2021-04-07 13:06:51 +0300461 return dev->ethtool_ops->get_link_ksettings(dev, link_ksettings);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800462}
463EXPORT_SYMBOL(__ethtool_get_link_ksettings);
464
465/* convert ethtool_link_usettings in user space to a kernel internal
466 * ethtool_link_ksettings. return 0 on success, errno on error.
467 */
468static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
469 const void __user *from)
470{
471 struct ethtool_link_usettings link_usettings;
472
473 if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
474 return -EFAULT;
475
476 memcpy(&to->base, &link_usettings.base, sizeof(to->base));
Yury Norov3aa56882018-02-06 15:38:06 -0800477 bitmap_from_arr32(to->link_modes.supported,
478 link_usettings.link_modes.supported,
479 __ETHTOOL_LINK_MODE_MASK_NBITS);
480 bitmap_from_arr32(to->link_modes.advertising,
481 link_usettings.link_modes.advertising,
482 __ETHTOOL_LINK_MODE_MASK_NBITS);
483 bitmap_from_arr32(to->link_modes.lp_advertising,
484 link_usettings.link_modes.lp_advertising,
485 __ETHTOOL_LINK_MODE_MASK_NBITS);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800486
487 return 0;
488}
489
Cris Forno70ae1e12020-02-28 14:12:04 -0600490/* Check if the user is trying to change anything besides speed/duplex */
491bool ethtool_virtdev_validate_cmd(const struct ethtool_link_ksettings *cmd)
492{
493 struct ethtool_link_settings base2 = {};
494
495 base2.speed = cmd->base.speed;
496 base2.port = PORT_OTHER;
497 base2.duplex = cmd->base.duplex;
498 base2.cmd = cmd->base.cmd;
499 base2.link_mode_masks_nwords = cmd->base.link_mode_masks_nwords;
500
501 return !memcmp(&base2, &cmd->base, sizeof(base2)) &&
502 bitmap_empty(cmd->link_modes.supported,
503 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
504 bitmap_empty(cmd->link_modes.lp_advertising,
505 __ETHTOOL_LINK_MODE_MASK_NBITS);
506}
507
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800508/* convert a kernel internal ethtool_link_ksettings to
509 * ethtool_link_usettings in user space. return 0 on success, errno on
510 * error.
511 */
512static int
513store_link_ksettings_for_user(void __user *to,
514 const struct ethtool_link_ksettings *from)
515{
516 struct ethtool_link_usettings link_usettings;
517
Gustavo A. R. Silvac1d9e342021-04-16 15:15:40 -0500518 memcpy(&link_usettings, from, sizeof(link_usettings));
Yury Norov3aa56882018-02-06 15:38:06 -0800519 bitmap_to_arr32(link_usettings.link_modes.supported,
520 from->link_modes.supported,
521 __ETHTOOL_LINK_MODE_MASK_NBITS);
522 bitmap_to_arr32(link_usettings.link_modes.advertising,
523 from->link_modes.advertising,
524 __ETHTOOL_LINK_MODE_MASK_NBITS);
525 bitmap_to_arr32(link_usettings.link_modes.lp_advertising,
526 from->link_modes.lp_advertising,
527 __ETHTOOL_LINK_MODE_MASK_NBITS);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800528
529 if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
530 return -EFAULT;
531
532 return 0;
533}
534
Michal Kubecek9b300492018-08-28 19:56:58 +0200535/* Query device for its ethtool_link_settings. */
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800536static int ethtool_get_link_ksettings(struct net_device *dev,
537 void __user *useraddr)
538{
539 int err = 0;
540 struct ethtool_link_ksettings link_ksettings;
541
542 ASSERT_RTNL();
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800543 if (!dev->ethtool_ops->get_link_ksettings)
544 return -EOPNOTSUPP;
545
546 /* handle bitmap nbits handshake */
547 if (copy_from_user(&link_ksettings.base, useraddr,
548 sizeof(link_ksettings.base)))
549 return -EFAULT;
550
551 if (__ETHTOOL_LINK_MODE_MASK_NU32
552 != link_ksettings.base.link_mode_masks_nwords) {
553 /* wrong link mode nbits requested */
554 memset(&link_ksettings, 0, sizeof(link_ksettings));
Ben Hutchings793cf872016-03-14 01:05:38 +0000555 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800556 /* send back number of words required as negative val */
557 compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
558 "need too many bits for link modes!");
559 link_ksettings.base.link_mode_masks_nwords
560 = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
561
562 /* copy the base fields back to user, not the link
563 * mode bitmaps
564 */
565 if (copy_to_user(useraddr, &link_ksettings.base,
566 sizeof(link_ksettings.base)))
567 return -EFAULT;
568
569 return 0;
570 }
571
572 /* handshake successful: user/kernel agree on
573 * link_mode_masks_nwords
574 */
575
576 memset(&link_ksettings, 0, sizeof(link_ksettings));
577 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
578 if (err < 0)
579 return err;
580
581 /* make sure we tell the right values to user */
582 link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
583 link_ksettings.base.link_mode_masks_nwords
584 = __ETHTOOL_LINK_MODE_MASK_NU32;
Oleksij Rempelbdbdac72020-05-05 08:35:05 +0200585 link_ksettings.base.master_slave_cfg = MASTER_SLAVE_CFG_UNSUPPORTED;
586 link_ksettings.base.master_slave_state = MASTER_SLAVE_STATE_UNSUPPORTED;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800587
588 return store_link_ksettings_for_user(useraddr, &link_ksettings);
589}
590
Michal Kubecek9b300492018-08-28 19:56:58 +0200591/* Update device ethtool_link_settings. */
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800592static int ethtool_set_link_ksettings(struct net_device *dev,
593 void __user *useraddr)
594{
595 int err;
596 struct ethtool_link_ksettings link_ksettings;
597
598 ASSERT_RTNL();
599
600 if (!dev->ethtool_ops->set_link_ksettings)
601 return -EOPNOTSUPP;
602
603 /* make sure nbits field has expected value */
604 if (copy_from_user(&link_ksettings.base, useraddr,
605 sizeof(link_ksettings.base)))
606 return -EFAULT;
607
608 if (__ETHTOOL_LINK_MODE_MASK_NU32
609 != link_ksettings.base.link_mode_masks_nwords)
610 return -EINVAL;
611
612 /* copy the whole structure, now that we know it has expected
613 * format
614 */
615 err = load_link_ksettings_from_user(&link_ksettings, useraddr);
616 if (err)
617 return err;
618
619 /* re-check nwords field, just in case */
620 if (__ETHTOOL_LINK_MODE_MASK_NU32
621 != link_ksettings.base.link_mode_masks_nwords)
622 return -EINVAL;
623
Oleksij Rempelbdbdac72020-05-05 08:35:05 +0200624 if (link_ksettings.base.master_slave_cfg ||
625 link_ksettings.base.master_slave_state)
626 return -EINVAL;
627
Michal Kubecek73286732019-12-27 15:56:03 +0100628 err = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
Michal Kubecek1b1b1842019-12-27 15:56:18 +0100629 if (err >= 0) {
Michal Kubecek73286732019-12-27 15:56:03 +0100630 ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL);
Michal Kubecek1b1b1842019-12-27 15:56:18 +0100631 ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL);
632 }
Michal Kubecek73286732019-12-27 15:56:03 +0100633 return err;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800634}
635
Cris Forno70ae1e12020-02-28 14:12:04 -0600636int ethtool_virtdev_set_link_ksettings(struct net_device *dev,
637 const struct ethtool_link_ksettings *cmd,
638 u32 *dev_speed, u8 *dev_duplex)
639{
640 u32 speed;
641 u8 duplex;
642
643 speed = cmd->base.speed;
644 duplex = cmd->base.duplex;
645 /* don't allow custom speed and duplex */
646 if (!ethtool_validate_speed(speed) ||
647 !ethtool_validate_duplex(duplex) ||
648 !ethtool_virtdev_validate_cmd(cmd))
649 return -EINVAL;
650 *dev_speed = speed;
651 *dev_duplex = duplex;
652
653 return 0;
654}
655EXPORT_SYMBOL(ethtool_virtdev_set_link_ksettings);
656
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800657/* Query device for its ethtool_cmd settings.
658 *
Michal Kubecek9b300492018-08-28 19:56:58 +0200659 * Backward compatibility note: for compatibility with legacy ethtool, this is
660 * now implemented via get_link_ksettings. When driver reports higher link mode
661 * bits, a kernel warning is logged once (with name of 1st driver/device) to
662 * recommend user to upgrade ethtool, but the command is successful (only the
663 * lower link mode bits reported back to user). Deprecated fields from
664 * ethtool_cmd (transceiver/maxrxpkt/maxtxpkt) are always set to zero.
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800665 */
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000666static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
667{
Michal Kubecek9b300492018-08-28 19:56:58 +0200668 struct ethtool_link_ksettings link_ksettings;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000669 struct ethtool_cmd cmd;
Michal Kubecek9b300492018-08-28 19:56:58 +0200670 int err;
Jiri Pirko4bc71cb2011-09-03 03:34:30 +0000671
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800672 ASSERT_RTNL();
Michal Kubecek9b300492018-08-28 19:56:58 +0200673 if (!dev->ethtool_ops->get_link_ksettings)
674 return -EOPNOTSUPP;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800675
Michal Kubecek9b300492018-08-28 19:56:58 +0200676 memset(&link_ksettings, 0, sizeof(link_ksettings));
677 err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
678 if (err < 0)
679 return err;
680 convert_link_ksettings_to_legacy_settings(&cmd, &link_ksettings);
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800681
Michal Kubecek9b300492018-08-28 19:56:58 +0200682 /* send a sensible cmd tag back to user */
683 cmd.cmd = ETHTOOL_GSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
686 return -EFAULT;
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689}
690
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800691/* Update device link settings with given ethtool_cmd.
692 *
Michal Kubecek9b300492018-08-28 19:56:58 +0200693 * Backward compatibility note: for compatibility with legacy ethtool, this is
694 * now always implemented via set_link_settings. When user's request updates
695 * deprecated ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
696 * warning is logged once (with name of 1st driver/device) to recommend user to
697 * upgrade ethtool, and the request is rejected.
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800698 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
700{
Michal Kubecek9b300492018-08-28 19:56:58 +0200701 struct ethtool_link_ksettings link_ksettings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 struct ethtool_cmd cmd;
Michal Kubecek73286732019-12-27 15:56:03 +0100703 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800705 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707 if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
708 return -EFAULT;
Michal Kubecek9b300492018-08-28 19:56:58 +0200709 if (!dev->ethtool_ops->set_link_ksettings)
David Decotigny3f1ac7a2016-02-24 10:57:59 -0800710 return -EOPNOTSUPP;
711
Michal Kubecek9b300492018-08-28 19:56:58 +0200712 if (!convert_legacy_settings_to_link_ksettings(&link_ksettings, &cmd))
713 return -EINVAL;
714 link_ksettings.base.link_mode_masks_nwords =
715 __ETHTOOL_LINK_MODE_MASK_NU32;
Michal Kubecek73286732019-12-27 15:56:03 +0100716 ret = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
Michal Kubecek1b1b1842019-12-27 15:56:18 +0100717 if (ret >= 0) {
Michal Kubecek73286732019-12-27 15:56:03 +0100718 ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL);
Michal Kubecek1b1b1842019-12-27 15:56:18 +0100719 ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL);
720 }
Michal Kubecek73286732019-12-27 15:56:03 +0100721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700724static int
725ethtool_get_drvinfo(struct net_device *dev, struct ethtool_devlink_compat *rsp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Stephen Hemminger76fd8592006-09-08 11:16:13 -0700727 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700729 rsp->info.cmd = ETHTOOL_GDRVINFO;
730 strlcpy(rsp->info.version, UTS_RELEASE, sizeof(rsp->info.version));
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000731 if (ops->get_drvinfo) {
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700732 ops->get_drvinfo(dev, &rsp->info);
Ben Hutchings01414802010-08-17 02:31:15 -0700733 } else if (dev->dev.parent && dev->dev.parent->driver) {
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700734 strlcpy(rsp->info.bus_info, dev_name(dev->dev.parent),
735 sizeof(rsp->info.bus_info));
736 strlcpy(rsp->info.driver, dev->dev.parent->driver->name,
737 sizeof(rsp->info.driver));
Tonghao Zhangbde3b0f2021-11-26 00:30:49 +0800738 } else if (dev->rtnl_link_ops) {
739 strlcpy(rsp->info.driver, dev->rtnl_link_ops->kind,
740 sizeof(rsp->info.driver));
Ben Hutchings01414802010-08-17 02:31:15 -0700741 } else {
742 return -EOPNOTSUPP;
743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Jeff Garzik723b2f52010-03-03 22:51:50 +0000745 /*
746 * this method of obtaining string set info is deprecated;
Jeff Garzikd17792e2010-03-04 08:21:53 +0000747 * Use ETHTOOL_GSSET_INFO instead.
Jeff Garzik723b2f52010-03-03 22:51:50 +0000748 */
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000749 if (ops->get_sset_count) {
Jeff Garzikff03d492007-08-15 16:01:08 -0700750 int rc;
751
752 rc = ops->get_sset_count(dev, ETH_SS_TEST);
753 if (rc >= 0)
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700754 rsp->info.testinfo_len = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700755 rc = ops->get_sset_count(dev, ETH_SS_STATS);
756 if (rc >= 0)
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700757 rsp->info.n_stats = rc;
Jeff Garzik339bf022007-08-15 16:01:32 -0700758 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
759 if (rc >= 0)
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700760 rsp->info.n_priv_flags = rc;
Jeff Garzikff03d492007-08-15 16:01:08 -0700761 }
Yunsheng Linf9fc54d2018-12-26 19:51:46 +0800762 if (ops->get_regs_len) {
763 int ret = ops->get_regs_len(dev);
764
765 if (ret > 0)
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700766 rsp->info.regdump_len = ret;
Yunsheng Linf9fc54d2018-12-26 19:51:46 +0800767 }
768
Jiri Pirkoc03a14e2013-01-07 09:02:08 +0000769 if (ops->get_eeprom_len)
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700770 rsp->info.eedump_len = ops->get_eeprom_len(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Jakub Kicinski095cfcf2021-10-30 10:18:49 -0700772 if (!rsp->info.fw_version[0])
Jakub Kicinski1af0a092021-10-30 10:18:51 -0700773 rsp->devlink = netdev_to_devlink_get(dev);
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
776}
777
Eric Dumazetf5c445e2010-03-08 12:17:04 -0800778static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
chavey97f8aef2010-04-07 21:54:42 -0700779 void __user *useraddr)
Jeff Garzik723b2f52010-03-03 22:51:50 +0000780{
781 struct ethtool_sset_info info;
Jeff Garzik723b2f52010-03-03 22:51:50 +0000782 u64 sset_mask;
783 int i, idx = 0, n_bits = 0, ret, rc;
784 u32 *info_buf = NULL;
785
Jeff Garzik723b2f52010-03-03 22:51:50 +0000786 if (copy_from_user(&info, useraddr, sizeof(info)))
787 return -EFAULT;
788
789 /* store copy of mask, because we zero struct later on */
790 sset_mask = info.sset_mask;
791 if (!sset_mask)
792 return 0;
793
794 /* calculate size of return buffer */
Jeff Garzikd17792e2010-03-04 08:21:53 +0000795 n_bits = hweight64(sset_mask);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000796
797 memset(&info, 0, sizeof(info));
798 info.cmd = ETHTOOL_GSSET_INFO;
799
Kees Cook6396bb22018-06-12 14:03:40 -0700800 info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000801 if (!info_buf)
802 return -ENOMEM;
803
804 /*
805 * fill return buffer based on input bitmask and successful
806 * get_sset_count return
807 */
808 for (i = 0; i < 64; i++) {
809 if (!(sset_mask & (1ULL << i)))
810 continue;
811
Michał Mirosław340ae162011-02-15 16:59:16 +0000812 rc = __ethtool_get_sset_count(dev, i);
Jeff Garzik723b2f52010-03-03 22:51:50 +0000813 if (rc >= 0) {
814 info.sset_mask |= (1ULL << i);
815 info_buf[idx++] = rc;
816 }
817 }
818
819 ret = -EFAULT;
820 if (copy_to_user(useraddr, &info, sizeof(info)))
821 goto out;
822
823 useraddr += offsetof(struct ethtool_sset_info, data);
Gustavo A. R. Silvaed717612021-09-28 14:57:35 -0500824 if (copy_to_user(useraddr, info_buf, array_size(idx, sizeof(u32))))
Jeff Garzik723b2f52010-03-03 22:51:50 +0000825 goto out;
826
827 ret = 0;
828
829out:
830 kfree(info_buf);
831 return ret;
832}
833
Arnd Bergmanndd98d282021-07-22 16:28:59 +0200834static noinline_for_stack int
835ethtool_rxnfc_copy_from_compat(struct ethtool_rxnfc *rxnfc,
836 const struct compat_ethtool_rxnfc __user *useraddr,
837 size_t size)
838{
839 struct compat_ethtool_rxnfc crxnfc = {};
840
841 /* We expect there to be holes between fs.m_ext and
842 * fs.ring_cookie and at the end of fs, but nowhere else.
843 * On non-x86, no conversion should be needed.
844 */
845 BUILD_BUG_ON(!IS_ENABLED(CONFIG_X86_64) &&
846 sizeof(struct compat_ethtool_rxnfc) !=
847 sizeof(struct ethtool_rxnfc));
848 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.m_ext) +
849 sizeof(useraddr->fs.m_ext) !=
850 offsetof(struct ethtool_rxnfc, fs.m_ext) +
851 sizeof(rxnfc->fs.m_ext));
852 BUILD_BUG_ON(offsetof(struct compat_ethtool_rxnfc, fs.location) -
853 offsetof(struct compat_ethtool_rxnfc, fs.ring_cookie) !=
854 offsetof(struct ethtool_rxnfc, fs.location) -
855 offsetof(struct ethtool_rxnfc, fs.ring_cookie));
856
857 if (copy_from_user(&crxnfc, useraddr, min(size, sizeof(crxnfc))))
858 return -EFAULT;
859
860 *rxnfc = (struct ethtool_rxnfc) {
861 .cmd = crxnfc.cmd,
862 .flow_type = crxnfc.flow_type,
863 .data = crxnfc.data,
864 .fs = {
865 .flow_type = crxnfc.fs.flow_type,
866 .h_u = crxnfc.fs.h_u,
867 .h_ext = crxnfc.fs.h_ext,
868 .m_u = crxnfc.fs.m_u,
869 .m_ext = crxnfc.fs.m_ext,
870 .ring_cookie = crxnfc.fs.ring_cookie,
871 .location = crxnfc.fs.location,
872 },
873 .rule_cnt = crxnfc.rule_cnt,
874 };
875
876 return 0;
877}
878
879static int ethtool_rxnfc_copy_from_user(struct ethtool_rxnfc *rxnfc,
880 const void __user *useraddr,
881 size_t size)
882{
883 if (compat_need_64bit_alignment_fixup())
884 return ethtool_rxnfc_copy_from_compat(rxnfc, useraddr, size);
885
886 if (copy_from_user(rxnfc, useraddr, size))
887 return -EFAULT;
888
889 return 0;
890}
891
892static int ethtool_rxnfc_copy_to_compat(void __user *useraddr,
893 const struct ethtool_rxnfc *rxnfc,
894 size_t size, const u32 *rule_buf)
895{
896 struct compat_ethtool_rxnfc crxnfc;
897
898 memset(&crxnfc, 0, sizeof(crxnfc));
899 crxnfc = (struct compat_ethtool_rxnfc) {
900 .cmd = rxnfc->cmd,
901 .flow_type = rxnfc->flow_type,
902 .data = rxnfc->data,
903 .fs = {
904 .flow_type = rxnfc->fs.flow_type,
905 .h_u = rxnfc->fs.h_u,
906 .h_ext = rxnfc->fs.h_ext,
907 .m_u = rxnfc->fs.m_u,
908 .m_ext = rxnfc->fs.m_ext,
909 .ring_cookie = rxnfc->fs.ring_cookie,
910 .location = rxnfc->fs.location,
911 },
912 .rule_cnt = rxnfc->rule_cnt,
913 };
914
915 if (copy_to_user(useraddr, &crxnfc, min(size, sizeof(crxnfc))))
916 return -EFAULT;
917
918 return 0;
919}
920
921static int ethtool_rxnfc_copy_to_user(void __user *useraddr,
922 const struct ethtool_rxnfc *rxnfc,
923 size_t size, const u32 *rule_buf)
924{
925 int ret;
926
927 if (compat_need_64bit_alignment_fixup()) {
928 ret = ethtool_rxnfc_copy_to_compat(useraddr, rxnfc, size,
929 rule_buf);
930 useraddr += offsetof(struct compat_ethtool_rxnfc, rule_locs);
931 } else {
Saeed Mahameed9b29a162021-07-26 15:15:39 -0700932 ret = copy_to_user(useraddr, rxnfc, size);
Arnd Bergmanndd98d282021-07-22 16:28:59 +0200933 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
934 }
935
936 if (ret)
937 return -EFAULT;
938
939 if (rule_buf) {
940 if (copy_to_user(useraddr, rule_buf,
941 rxnfc->rule_cnt * sizeof(u32)))
942 return -EFAULT;
943 }
944
945 return 0;
946}
947
chavey97f8aef2010-04-07 21:54:42 -0700948static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000949 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700950{
Ben Hutchingsbf988432010-06-28 08:45:58 +0000951 struct ethtool_rxnfc info;
952 size_t info_size = sizeof(info);
Ben Hutchings55664f32012-01-03 12:04:51 +0000953 int rc;
Santwona Behera0853ad62008-07-02 03:47:41 -0700954
Santwona Behera59089d82009-02-20 00:58:13 -0800955 if (!dev->ethtool_ops->set_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700956 return -EOPNOTSUPP;
957
Ben Hutchingsbf988432010-06-28 08:45:58 +0000958 /* struct ethtool_rxnfc was originally defined for
959 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
960 * members. User-space might still be using that
961 * definition. */
962 if (cmd == ETHTOOL_SRXFH)
963 info_size = (offsetof(struct ethtool_rxnfc, data) +
964 sizeof(info.data));
965
Arnd Bergmanndd98d282021-07-22 16:28:59 +0200966 if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -0700967 return -EFAULT;
968
Ben Hutchings55664f32012-01-03 12:04:51 +0000969 rc = dev->ethtool_ops->set_rxnfc(dev, &info);
970 if (rc)
971 return rc;
972
973 if (cmd == ETHTOOL_SRXCLSRLINS &&
Arnd Bergmanndd98d282021-07-22 16:28:59 +0200974 ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, NULL))
Ben Hutchings55664f32012-01-03 12:04:51 +0000975 return -EFAULT;
976
977 return 0;
Santwona Behera0853ad62008-07-02 03:47:41 -0700978}
979
chavey97f8aef2010-04-07 21:54:42 -0700980static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
Ben Hutchingsbf988432010-06-28 08:45:58 +0000981 u32 cmd, void __user *useraddr)
Santwona Behera0853ad62008-07-02 03:47:41 -0700982{
983 struct ethtool_rxnfc info;
Ben Hutchingsbf988432010-06-28 08:45:58 +0000984 size_t info_size = sizeof(info);
Santwona Behera59089d82009-02-20 00:58:13 -0800985 const struct ethtool_ops *ops = dev->ethtool_ops;
986 int ret;
987 void *rule_buf = NULL;
Santwona Behera0853ad62008-07-02 03:47:41 -0700988
Santwona Behera59089d82009-02-20 00:58:13 -0800989 if (!ops->get_rxnfc)
Santwona Behera0853ad62008-07-02 03:47:41 -0700990 return -EOPNOTSUPP;
991
Ben Hutchingsbf988432010-06-28 08:45:58 +0000992 /* struct ethtool_rxnfc was originally defined for
993 * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
994 * members. User-space might still be using that
995 * definition. */
996 if (cmd == ETHTOOL_GRXFH)
997 info_size = (offsetof(struct ethtool_rxnfc, data) +
998 sizeof(info.data));
999
Arnd Bergmanndd98d282021-07-22 16:28:59 +02001000 if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size))
Santwona Behera0853ad62008-07-02 03:47:41 -07001001 return -EFAULT;
1002
Edward Cree84a1d9c42018-03-08 15:45:03 +00001003 /* If FLOW_RSS was requested then user-space must be using the
1004 * new definition, as FLOW_RSS is newer.
1005 */
1006 if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) {
1007 info_size = sizeof(info);
Arnd Bergmanndd98d282021-07-22 16:28:59 +02001008 if (ethtool_rxnfc_copy_from_user(&info, useraddr, info_size))
Edward Cree84a1d9c42018-03-08 15:45:03 +00001009 return -EFAULT;
Wenwen Wangd656fe42018-04-30 12:31:13 -05001010 /* Since malicious users may modify the original data,
1011 * we need to check whether FLOW_RSS is still requested.
1012 */
1013 if (!(info.flow_type & FLOW_RSS))
1014 return -EINVAL;
Edward Cree84a1d9c42018-03-08 15:45:03 +00001015 }
1016
Wenwen Wang2bb32072018-10-09 08:15:38 -05001017 if (info.cmd != cmd)
1018 return -EINVAL;
1019
Santwona Behera59089d82009-02-20 00:58:13 -08001020 if (info.cmd == ETHTOOL_GRXCLSRLALL) {
1021 if (info.rule_cnt > 0) {
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001022 if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
Kees Cook6396bb22018-06-12 14:03:40 -07001023 rule_buf = kcalloc(info.rule_cnt, sizeof(u32),
Ben Hutchingsdb048b62010-06-28 08:44:07 +00001024 GFP_USER);
Santwona Behera59089d82009-02-20 00:58:13 -08001025 if (!rule_buf)
1026 return -ENOMEM;
1027 }
1028 }
Santwona Behera0853ad62008-07-02 03:47:41 -07001029
Santwona Behera59089d82009-02-20 00:58:13 -08001030 ret = ops->get_rxnfc(dev, &info, rule_buf);
1031 if (ret < 0)
1032 goto err_out;
1033
Arnd Bergmanndd98d282021-07-22 16:28:59 +02001034 ret = ethtool_rxnfc_copy_to_user(useraddr, &info, info_size, rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -08001035err_out:
Wei Yongjunc9cacec2009-03-31 15:06:26 -07001036 kfree(rule_buf);
Santwona Behera59089d82009-02-20 00:58:13 -08001037
1038 return ret;
Santwona Behera0853ad62008-07-02 03:47:41 -07001039}
1040
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301041static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
1042 struct ethtool_rxnfc *rx_rings,
1043 u32 size)
1044{
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001045 int i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301046
Gustavo A. R. Silvaed717612021-09-28 14:57:35 -05001047 if (copy_from_user(indir, useraddr, array_size(size, sizeof(indir[0]))))
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001048 return -EFAULT;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301049
1050 /* Validate ring indices */
Ben Hutchingsfb95cd82014-05-15 00:46:45 +01001051 for (i = 0; i < size; i++)
1052 if (indir[i] >= rx_rings->data)
1053 return -EINVAL;
1054
1055 return 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301056}
1057
Kim Jonesba905f52016-02-02 03:51:16 +00001058u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
Eric Dumazet960fb622014-11-16 06:23:05 -08001059
1060void netdev_rss_key_fill(void *buffer, size_t len)
1061{
1062 BUG_ON(len > sizeof(netdev_rss_key));
1063 net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
1064 memcpy(buffer, netdev_rss_key, len);
1065}
1066EXPORT_SYMBOL(netdev_rss_key_fill);
1067
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001068static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
1069 void __user *useraddr)
1070{
Ben Hutchings7850f632011-12-15 13:55:01 +00001071 u32 user_size, dev_size;
1072 u32 *indir;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001073 int ret;
1074
Ben Hutchings7850f632011-12-15 13:55:01 +00001075 if (!dev->ethtool_ops->get_rxfh_indir_size ||
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001076 !dev->ethtool_ops->get_rxfh)
Ben Hutchings7850f632011-12-15 13:55:01 +00001077 return -EOPNOTSUPP;
1078 dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
1079 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001080 return -EOPNOTSUPP;
1081
Ben Hutchings7850f632011-12-15 13:55:01 +00001082 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001083 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001084 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001085 return -EFAULT;
1086
Ben Hutchings7850f632011-12-15 13:55:01 +00001087 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
1088 &dev_size, sizeof(dev_size)))
1089 return -EFAULT;
1090
1091 /* If the user buffer size is 0, this is just a query for the
1092 * device table size. Otherwise, if it's smaller than the
1093 * device table size it's an error.
1094 */
1095 if (user_size < dev_size)
1096 return user_size == 0 ? 0 : -EINVAL;
1097
1098 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001099 if (!indir)
1100 return -ENOMEM;
1101
Eyal Perry892311f2014-12-02 18:12:10 +02001102 ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001103 if (ret)
1104 goto out;
1105
Ben Hutchings7850f632011-12-15 13:55:01 +00001106 if (copy_to_user(useraddr +
1107 offsetof(struct ethtool_rxfh_indir, ring_index[0]),
1108 indir, dev_size * sizeof(indir[0])))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001109 ret = -EFAULT;
1110
1111out:
1112 kfree(indir);
1113 return ret;
1114}
1115
1116static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
1117 void __user *useraddr)
1118{
Ben Hutchings7850f632011-12-15 13:55:01 +00001119 struct ethtool_rxnfc rx_rings;
1120 u32 user_size, dev_size, i;
1121 u32 *indir;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001122 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001123 int ret;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301124 u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001125
Ben Hutchingsfe62d002014-05-15 01:25:27 +01001126 if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001127 !ops->get_rxnfc)
Ben Hutchings7850f632011-12-15 13:55:01 +00001128 return -EOPNOTSUPP;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001129
1130 dev_size = ops->get_rxfh_indir_size(dev);
Ben Hutchings7850f632011-12-15 13:55:01 +00001131 if (dev_size == 0)
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001132 return -EOPNOTSUPP;
1133
Ben Hutchings7850f632011-12-15 13:55:01 +00001134 if (copy_from_user(&user_size,
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001135 useraddr + offsetof(struct ethtool_rxfh_indir, size),
Ben Hutchings7850f632011-12-15 13:55:01 +00001136 sizeof(user_size)))
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001137 return -EFAULT;
1138
Ben Hutchings278bc422011-12-15 13:56:49 +00001139 if (user_size != 0 && user_size != dev_size)
Ben Hutchings7850f632011-12-15 13:55:01 +00001140 return -EINVAL;
1141
1142 indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001143 if (!indir)
1144 return -ENOMEM;
1145
Ben Hutchings7850f632011-12-15 13:55:01 +00001146 rx_rings.cmd = ETHTOOL_GRXRINGS;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001147 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
Ben Hutchings7850f632011-12-15 13:55:01 +00001148 if (ret)
1149 goto out;
Ben Hutchings278bc422011-12-15 13:56:49 +00001150
1151 if (user_size == 0) {
1152 for (i = 0; i < dev_size; i++)
1153 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1154 } else {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301155 ret = ethtool_copy_validate_indir(indir,
1156 useraddr + ringidx_offset,
1157 &rx_rings,
1158 dev_size);
1159 if (ret)
Ben Hutchings7850f632011-12-15 13:55:01 +00001160 goto out;
Ben Hutchings7850f632011-12-15 13:55:01 +00001161 }
1162
Eyal Perry892311f2014-12-02 18:12:10 +02001163 ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001164 if (ret)
1165 goto out;
1166
1167 /* indicate whether rxfh was set to default */
1168 if (user_size == 0)
1169 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1170 else
1171 dev->priv_flags |= IFF_RXFH_CONFIGURED;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00001172
1173out:
1174 kfree(indir);
1175 return ret;
1176}
1177
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301178static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1179 void __user *useraddr)
1180{
1181 int ret;
1182 const struct ethtool_ops *ops = dev->ethtool_ops;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001183 u32 user_indir_size, user_key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301184 u32 dev_indir_size = 0, dev_key_size = 0;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001185 struct ethtool_rxfh rxfh;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301186 u32 total_size;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001187 u32 indir_bytes;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301188 u32 *indir = NULL;
Eyal Perry892311f2014-12-02 18:12:10 +02001189 u8 dev_hfunc = 0;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301190 u8 *hkey = NULL;
1191 u8 *rss_config;
1192
Eyal Perry892311f2014-12-02 18:12:10 +02001193 if (!ops->get_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301194 return -EOPNOTSUPP;
1195
1196 if (ops->get_rxfh_indir_size)
1197 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301198 if (ops->get_rxfh_key_size)
1199 dev_key_size = ops->get_rxfh_key_size(dev);
1200
Ben Hutchingsf062a382014-05-15 16:28:07 +01001201 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301202 return -EFAULT;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001203 user_indir_size = rxfh.indir_size;
1204 user_key_size = rxfh.key_size;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301205
Ben Hutchingsf062a382014-05-15 16:28:07 +01001206 /* Check that reserved fields are 0 for now */
Edward Cree84a1d9c42018-03-08 15:45:03 +00001207 if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001208 return -EINVAL;
Edward Cree84a1d9c42018-03-08 15:45:03 +00001209 /* Most drivers don't handle rss_context, check it's 0 as well */
1210 if (rxfh.rss_context && !ops->get_rxfh_context)
1211 return -EOPNOTSUPP;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001212
1213 rxfh.indir_size = dev_indir_size;
1214 rxfh.key_size = dev_key_size;
1215 if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301216 return -EFAULT;
1217
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301218 if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1219 (user_key_size && (user_key_size != dev_key_size)))
1220 return -EINVAL;
1221
1222 indir_bytes = user_indir_size * sizeof(indir[0]);
1223 total_size = indir_bytes + user_key_size;
1224 rss_config = kzalloc(total_size, GFP_USER);
1225 if (!rss_config)
1226 return -ENOMEM;
1227
1228 if (user_indir_size)
1229 indir = (u32 *)rss_config;
1230
1231 if (user_key_size)
1232 hkey = rss_config + indir_bytes;
1233
Edward Cree84a1d9c42018-03-08 15:45:03 +00001234 if (rxfh.rss_context)
1235 ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey,
1236 &dev_hfunc,
1237 rxfh.rss_context);
1238 else
1239 ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
Eyal Perry892311f2014-12-02 18:12:10 +02001240 if (ret)
1241 goto out;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301242
Eyal Perry892311f2014-12-02 18:12:10 +02001243 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1244 &dev_hfunc, sizeof(rxfh.hfunc))) {
1245 ret = -EFAULT;
1246 } else if (copy_to_user(useraddr +
1247 offsetof(struct ethtool_rxfh, rss_config[0]),
1248 rss_config, total_size)) {
1249 ret = -EFAULT;
1250 }
1251out:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301252 kfree(rss_config);
1253
1254 return ret;
1255}
1256
1257static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1258 void __user *useraddr)
1259{
1260 int ret;
1261 const struct ethtool_ops *ops = dev->ethtool_ops;
1262 struct ethtool_rxnfc rx_rings;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001263 struct ethtool_rxfh rxfh;
1264 u32 dev_indir_size = 0, dev_key_size = 0, i;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301265 u32 *indir = NULL, indir_bytes = 0;
1266 u8 *hkey = NULL;
1267 u8 *rss_config;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301268 u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
Edward Cree84a1d9c42018-03-08 15:45:03 +00001269 bool delete = false;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301270
Eyal Perry892311f2014-12-02 18:12:10 +02001271 if (!ops->get_rxnfc || !ops->set_rxfh)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301272 return -EOPNOTSUPP;
1273
1274 if (ops->get_rxfh_indir_size)
1275 dev_indir_size = ops->get_rxfh_indir_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301276 if (ops->get_rxfh_key_size)
Dan Carpenterd340c862015-02-20 13:54:05 +03001277 dev_key_size = ops->get_rxfh_key_size(dev);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301278
Ben Hutchingsf062a382014-05-15 16:28:07 +01001279 if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301280 return -EFAULT;
1281
Ben Hutchingsf062a382014-05-15 16:28:07 +01001282 /* Check that reserved fields are 0 for now */
Edward Cree84a1d9c42018-03-08 15:45:03 +00001283 if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
Ben Hutchingsf062a382014-05-15 16:28:07 +01001284 return -EINVAL;
Edward Cree84a1d9c42018-03-08 15:45:03 +00001285 /* Most drivers don't handle rss_context, check it's 0 as well */
1286 if (rxfh.rss_context && !ops->set_rxfh_context)
1287 return -EOPNOTSUPP;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001288
Eyal Perry892311f2014-12-02 18:12:10 +02001289 /* If either indir, hash key or function is valid, proceed further.
1290 * Must request at least one change: indir size, hash key or function.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301291 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001292 if ((rxfh.indir_size &&
1293 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1294 rxfh.indir_size != dev_indir_size) ||
1295 (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
1296 (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
Eyal Perry892311f2014-12-02 18:12:10 +02001297 rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301298 return -EINVAL;
1299
Ben Hutchingsf062a382014-05-15 16:28:07 +01001300 if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301301 indir_bytes = dev_indir_size * sizeof(indir[0]);
1302
Ben Hutchingsf062a382014-05-15 16:28:07 +01001303 rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301304 if (!rss_config)
1305 return -ENOMEM;
1306
1307 rx_rings.cmd = ETHTOOL_GRXRINGS;
1308 ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1309 if (ret)
1310 goto out;
1311
Edward Cree84a1d9c42018-03-08 15:45:03 +00001312 /* rxfh.indir_size == 0 means reset the indir table to default (master
1313 * context) or delete the context (other RSS contexts).
Ben Hutchingsf062a382014-05-15 16:28:07 +01001314 * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301315 */
Ben Hutchingsf062a382014-05-15 16:28:07 +01001316 if (rxfh.indir_size &&
1317 rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301318 indir = (u32 *)rss_config;
1319 ret = ethtool_copy_validate_indir(indir,
1320 useraddr + rss_cfg_offset,
1321 &rx_rings,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001322 rxfh.indir_size);
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301323 if (ret)
1324 goto out;
Ben Hutchingsf062a382014-05-15 16:28:07 +01001325 } else if (rxfh.indir_size == 0) {
Edward Cree84a1d9c42018-03-08 15:45:03 +00001326 if (rxfh.rss_context == 0) {
1327 indir = (u32 *)rss_config;
1328 for (i = 0; i < dev_indir_size; i++)
1329 indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1330 } else {
1331 delete = true;
1332 }
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301333 }
1334
Ben Hutchingsf062a382014-05-15 16:28:07 +01001335 if (rxfh.key_size) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301336 hkey = rss_config + indir_bytes;
1337 if (copy_from_user(hkey,
1338 useraddr + rss_cfg_offset + indir_bytes,
Ben Hutchingsf062a382014-05-15 16:28:07 +01001339 rxfh.key_size)) {
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301340 ret = -EFAULT;
1341 goto out;
1342 }
1343 }
1344
Edward Cree84a1d9c42018-03-08 15:45:03 +00001345 if (rxfh.rss_context)
1346 ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc,
1347 &rxfh.rss_context, delete);
1348 else
1349 ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001350 if (ret)
1351 goto out;
1352
Edward Cree84a1d9c42018-03-08 15:45:03 +00001353 if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context),
1354 &rxfh.rss_context, sizeof(rxfh.rss_context)))
1355 ret = -EFAULT;
1356
1357 if (!rxfh.rss_context) {
1358 /* indicate whether rxfh was set to default */
1359 if (rxfh.indir_size == 0)
1360 dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1361 else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1362 dev->priv_flags |= IFF_RXFH_CONFIGURED;
1363 }
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05301364
1365out:
1366 kfree(rss_config);
1367 return ret;
1368}
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1371{
1372 struct ethtool_regs regs;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001373 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 void *regbuf;
1375 int reglen, ret;
1376
1377 if (!ops->get_regs || !ops->get_regs_len)
1378 return -EOPNOTSUPP;
1379
1380 if (copy_from_user(&regs, useraddr, sizeof(regs)))
1381 return -EFAULT;
1382
1383 reglen = ops->get_regs_len(dev);
Yunsheng Linf9fc54d2018-12-26 19:51:46 +08001384 if (reglen <= 0)
1385 return reglen;
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 if (regs.len > reglen)
1388 regs.len = reglen;
1389
Dan Carpenteref76c772019-02-01 11:24:06 +03001390 regbuf = vzalloc(reglen);
1391 if (!regbuf)
1392 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Vivien Didelot0ee4e762019-06-03 16:57:13 -04001394 if (regs.len < reglen)
1395 reglen = regs.len;
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 ops->get_regs(dev, &regs, regbuf);
1398
1399 ret = -EFAULT;
1400 if (copy_to_user(useraddr, &regs, sizeof(regs)))
1401 goto out;
1402 useraddr += offsetof(struct ethtool_regs, data);
Vivien Didelot0ee4e762019-06-03 16:57:13 -04001403 if (copy_to_user(useraddr, regbuf, reglen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 goto out;
1405 ret = 0;
1406
1407 out:
Ben Hutchingsa77f5db2010-09-20 08:42:17 +00001408 vfree(regbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return ret;
1410}
1411
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00001412static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1413{
1414 struct ethtool_value reset;
1415 int ret;
1416
1417 if (!dev->ethtool_ops->reset)
1418 return -EOPNOTSUPP;
1419
1420 if (copy_from_user(&reset, useraddr, sizeof(reset)))
1421 return -EFAULT;
1422
1423 ret = dev->ethtool_ops->reset(dev, &reset.data);
1424 if (ret)
1425 return ret;
1426
1427 if (copy_to_user(useraddr, &reset, sizeof(reset)))
1428 return -EFAULT;
1429 return 0;
1430}
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1433{
zhanglin5ff223e82019-10-26 15:54:16 +08001434 struct ethtool_wolinfo wol;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 if (!dev->ethtool_ops->get_wol)
1437 return -EOPNOTSUPP;
1438
zhanglin5ff223e82019-10-26 15:54:16 +08001439 memset(&wol, 0, sizeof(struct ethtool_wolinfo));
1440 wol.cmd = ETHTOOL_GWOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 dev->ethtool_ops->get_wol(dev, &wol);
1442
1443 if (copy_to_user(useraddr, &wol, sizeof(wol)))
1444 return -EFAULT;
1445 return 0;
1446}
1447
1448static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1449{
1450 struct ethtool_wolinfo wol;
Heiner Kallweit61941142018-09-24 21:58:59 +02001451 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 if (!dev->ethtool_ops->set_wol)
1454 return -EOPNOTSUPP;
1455
1456 if (copy_from_user(&wol, useraddr, sizeof(wol)))
1457 return -EFAULT;
1458
Heiner Kallweit61941142018-09-24 21:58:59 +02001459 ret = dev->ethtool_ops->set_wol(dev, &wol);
1460 if (ret)
1461 return ret;
1462
1463 dev->wol_enabled = !!wol.wolopts;
Michal Kubecek67bffa72020-01-26 23:11:19 +01001464 ethtool_notify(dev, ETHTOOL_MSG_WOL_NTF, NULL);
Heiner Kallweit61941142018-09-24 21:58:59 +02001465
1466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001469static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1470{
1471 struct ethtool_eee edata;
1472 int rc;
1473
1474 if (!dev->ethtool_ops->get_eee)
1475 return -EOPNOTSUPP;
1476
1477 memset(&edata, 0, sizeof(struct ethtool_eee));
1478 edata.cmd = ETHTOOL_GEEE;
1479 rc = dev->ethtool_ops->get_eee(dev, &edata);
1480
1481 if (rc)
1482 return rc;
1483
1484 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1485 return -EFAULT;
1486
1487 return 0;
1488}
1489
1490static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1491{
1492 struct ethtool_eee edata;
Michal Kubecek6c5bc8f2020-03-28 00:01:48 +01001493 int ret;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001494
1495 if (!dev->ethtool_ops->set_eee)
1496 return -EOPNOTSUPP;
1497
1498 if (copy_from_user(&edata, useraddr, sizeof(edata)))
1499 return -EFAULT;
1500
Michal Kubecek6c5bc8f2020-03-28 00:01:48 +01001501 ret = dev->ethtool_ops->set_eee(dev, &edata);
1502 if (!ret)
1503 ethtool_notify(dev, ETHTOOL_MSG_EEE_NTF, NULL);
1504 return ret;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00001505}
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507static int ethtool_nway_reset(struct net_device *dev)
1508{
1509 if (!dev->ethtool_ops->nway_reset)
1510 return -EOPNOTSUPP;
1511
1512 return dev->ethtool_ops->nway_reset(dev);
1513}
1514
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001515static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1516{
1517 struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
Michal Kubecek3d2b8472019-12-27 15:56:23 +01001518 int link = __ethtool_get_link(dev);
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001519
Michal Kubecek3d2b8472019-12-27 15:56:23 +01001520 if (link < 0)
1521 return link;
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001522
Michal Kubecek3d2b8472019-12-27 15:56:23 +01001523 edata.data = link;
Ben Hutchingse596e6e2010-12-09 12:08:35 +00001524 if (copy_to_user(useraddr, &edata, sizeof(edata)))
1525 return -EFAULT;
1526 return 0;
1527}
1528
Ben Hutchings081d0942012-04-12 00:42:12 +00001529static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1530 int (*getter)(struct net_device *,
1531 struct ethtool_eeprom *, u8 *),
1532 u32 total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
1534 struct ethtool_eeprom eeprom;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001535 void __user *userbuf = useraddr + sizeof(eeprom);
1536 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001538 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1541 return -EFAULT;
1542
1543 /* Check for wrap and zero */
1544 if (eeprom.offset + eeprom.len <= eeprom.offset)
1545 return -EINVAL;
1546
1547 /* Check for exceeding total eeprom len */
Ben Hutchings081d0942012-04-12 00:42:12 +00001548 if (eeprom.offset + eeprom.len > total_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return -EINVAL;
1550
Austin Kim80ec82e2021-06-09 03:34:25 +01001551 data = kzalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (!data)
1553 return -ENOMEM;
1554
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001555 bytes_remaining = eeprom.len;
1556 while (bytes_remaining > 0) {
1557 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Ben Hutchings081d0942012-04-12 00:42:12 +00001559 ret = getter(dev, &eeprom, data);
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001560 if (ret)
1561 break;
Heiner Kallweitb9bbc4c2021-09-13 21:58:26 +02001562 if (!eeprom.len) {
1563 ret = -EIO;
1564 break;
1565 }
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001566 if (copy_to_user(userbuf, data, eeprom.len)) {
1567 ret = -EFAULT;
1568 break;
1569 }
1570 userbuf += eeprom.len;
1571 eeprom.offset += eeprom.len;
1572 bytes_remaining -= eeprom.len;
1573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Mandeep Singh Bainesc5835df2008-04-24 20:55:56 -07001575 eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1576 eeprom.offset -= eeprom.len;
1577 if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1578 ret = -EFAULT;
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 kfree(data);
1581 return ret;
1582}
1583
Ben Hutchings081d0942012-04-12 00:42:12 +00001584static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1585{
1586 const struct ethtool_ops *ops = dev->ethtool_ops;
1587
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001588 if (!ops->get_eeprom || !ops->get_eeprom_len ||
1589 !ops->get_eeprom_len(dev))
Ben Hutchings081d0942012-04-12 00:42:12 +00001590 return -EOPNOTSUPP;
1591
1592 return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1593 ops->get_eeprom_len(dev));
1594}
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1597{
1598 struct ethtool_eeprom eeprom;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001599 const struct ethtool_ops *ops = dev->ethtool_ops;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001600 void __user *userbuf = useraddr + sizeof(eeprom);
1601 u32 bytes_remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 u8 *data;
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001603 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Guenter Roecke0fb6fb2014-10-30 20:50:15 -07001605 if (!ops->set_eeprom || !ops->get_eeprom_len ||
1606 !ops->get_eeprom_len(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return -EOPNOTSUPP;
1608
1609 if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1610 return -EFAULT;
1611
1612 /* Check for wrap and zero */
1613 if (eeprom.offset + eeprom.len <= eeprom.offset)
1614 return -EINVAL;
1615
1616 /* Check for exceeding total eeprom len */
1617 if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1618 return -EINVAL;
1619
Austin Kim80ec82e2021-06-09 03:34:25 +01001620 data = kzalloc(PAGE_SIZE, GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (!data)
1622 return -ENOMEM;
1623
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001624 bytes_remaining = eeprom.len;
1625 while (bytes_remaining > 0) {
1626 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Mandeep Singh Bainesb131dd52008-04-15 19:24:17 -07001628 if (copy_from_user(data, userbuf, eeprom.len)) {
1629 ret = -EFAULT;
1630 break;
1631 }
1632 ret = ops->set_eeprom(dev, &eeprom, data);
1633 if (ret)
1634 break;
1635 userbuf += eeprom.len;
1636 eeprom.offset += eeprom.len;
1637 bytes_remaining -= eeprom.len;
1638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 kfree(data);
1641 return ret;
1642}
1643
chavey97f8aef2010-04-07 21:54:42 -07001644static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1645 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646{
Roland Dreier8e557422010-02-11 12:14:23 -08001647 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
Yufeng Mof3ccfda12021-08-20 15:35:18 +08001648 struct kernel_ethtool_coalesce kernel_coalesce = {};
Heiner Kallweit31610712020-05-23 17:40:25 +02001649 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 if (!dev->ethtool_ops->get_coalesce)
1652 return -EOPNOTSUPP;
1653
Yufeng Mof3ccfda12021-08-20 15:35:18 +08001654 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce,
1655 NULL);
Heiner Kallweit31610712020-05-23 17:40:25 +02001656 if (ret)
1657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1660 return -EFAULT;
1661 return 0;
1662}
1663
Jakub Kicinski95cddcb2020-03-04 21:15:31 -08001664static bool
1665ethtool_set_coalesce_supported(struct net_device *dev,
1666 struct ethtool_coalesce *coalesce)
1667{
1668 u32 supported_params = dev->ethtool_ops->supported_coalesce_params;
1669 u32 nonzero_params = 0;
1670
Jakub Kicinski95cddcb2020-03-04 21:15:31 -08001671 if (coalesce->rx_coalesce_usecs)
1672 nonzero_params |= ETHTOOL_COALESCE_RX_USECS;
1673 if (coalesce->rx_max_coalesced_frames)
1674 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES;
1675 if (coalesce->rx_coalesce_usecs_irq)
1676 nonzero_params |= ETHTOOL_COALESCE_RX_USECS_IRQ;
1677 if (coalesce->rx_max_coalesced_frames_irq)
1678 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_IRQ;
1679 if (coalesce->tx_coalesce_usecs)
1680 nonzero_params |= ETHTOOL_COALESCE_TX_USECS;
1681 if (coalesce->tx_max_coalesced_frames)
1682 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES;
1683 if (coalesce->tx_coalesce_usecs_irq)
1684 nonzero_params |= ETHTOOL_COALESCE_TX_USECS_IRQ;
1685 if (coalesce->tx_max_coalesced_frames_irq)
1686 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_IRQ;
1687 if (coalesce->stats_block_coalesce_usecs)
1688 nonzero_params |= ETHTOOL_COALESCE_STATS_BLOCK_USECS;
1689 if (coalesce->use_adaptive_rx_coalesce)
1690 nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_RX;
1691 if (coalesce->use_adaptive_tx_coalesce)
1692 nonzero_params |= ETHTOOL_COALESCE_USE_ADAPTIVE_TX;
1693 if (coalesce->pkt_rate_low)
1694 nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_LOW;
1695 if (coalesce->rx_coalesce_usecs_low)
1696 nonzero_params |= ETHTOOL_COALESCE_RX_USECS_LOW;
1697 if (coalesce->rx_max_coalesced_frames_low)
1698 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_LOW;
1699 if (coalesce->tx_coalesce_usecs_low)
1700 nonzero_params |= ETHTOOL_COALESCE_TX_USECS_LOW;
1701 if (coalesce->tx_max_coalesced_frames_low)
1702 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_LOW;
1703 if (coalesce->pkt_rate_high)
1704 nonzero_params |= ETHTOOL_COALESCE_PKT_RATE_HIGH;
1705 if (coalesce->rx_coalesce_usecs_high)
1706 nonzero_params |= ETHTOOL_COALESCE_RX_USECS_HIGH;
1707 if (coalesce->rx_max_coalesced_frames_high)
1708 nonzero_params |= ETHTOOL_COALESCE_RX_MAX_FRAMES_HIGH;
1709 if (coalesce->tx_coalesce_usecs_high)
1710 nonzero_params |= ETHTOOL_COALESCE_TX_USECS_HIGH;
1711 if (coalesce->tx_max_coalesced_frames_high)
1712 nonzero_params |= ETHTOOL_COALESCE_TX_MAX_FRAMES_HIGH;
1713 if (coalesce->rate_sample_interval)
1714 nonzero_params |= ETHTOOL_COALESCE_RATE_SAMPLE_INTERVAL;
1715
1716 return (supported_params & nonzero_params) == nonzero_params;
1717}
1718
chavey97f8aef2010-04-07 21:54:42 -07001719static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1720 void __user *useraddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
Yufeng Mof3ccfda12021-08-20 15:35:18 +08001722 struct kernel_ethtool_coalesce kernel_coalesce = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 struct ethtool_coalesce coalesce;
Michal Kubecek0cf3eac2020-03-28 00:01:18 +01001724 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Julian Wiedmann0276af22021-11-26 18:55:43 +01001726 if (!dev->ethtool_ops->set_coalesce || !dev->ethtool_ops->get_coalesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return -EOPNOTSUPP;
1728
Yufeng Mof3ccfda12021-08-20 15:35:18 +08001729 ret = dev->ethtool_ops->get_coalesce(dev, &coalesce, &kernel_coalesce,
1730 NULL);
1731 if (ret)
1732 return ret;
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1735 return -EFAULT;
1736
Jakub Kicinski95cddcb2020-03-04 21:15:31 -08001737 if (!ethtool_set_coalesce_supported(dev, &coalesce))
1738 return -EOPNOTSUPP;
1739
Yufeng Mof3ccfda12021-08-20 15:35:18 +08001740 ret = dev->ethtool_ops->set_coalesce(dev, &coalesce, &kernel_coalesce,
1741 NULL);
Michal Kubecek0cf3eac2020-03-28 00:01:18 +01001742 if (!ret)
1743 ethtool_notify(dev, ETHTOOL_MSG_COALESCE_NTF, NULL);
1744 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
1747static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1748{
Roland Dreier8e557422010-02-11 12:14:23 -08001749 struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
Hao Chen74624942021-11-18 20:12:43 +08001750 struct kernel_ethtool_ringparam kernel_ringparam = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 if (!dev->ethtool_ops->get_ringparam)
1753 return -EOPNOTSUPP;
1754
Hao Chen74624942021-11-18 20:12:43 +08001755 dev->ethtool_ops->get_ringparam(dev, &ringparam,
1756 &kernel_ringparam, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1759 return -EFAULT;
1760 return 0;
1761}
1762
1763static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1764{
Eugenia Emantayev37e2d992018-01-08 16:00:24 +02001765 struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM };
Hao Chen74624942021-11-18 20:12:43 +08001766 struct kernel_ethtool_ringparam kernel_ringparam;
Michal Kubecekbc9d1c92020-03-12 21:08:33 +01001767 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Eugenia Emantayev37e2d992018-01-08 16:00:24 +02001769 if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return -EOPNOTSUPP;
1771
1772 if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1773 return -EFAULT;
1774
Hao Chen74624942021-11-18 20:12:43 +08001775 dev->ethtool_ops->get_ringparam(dev, &max, &kernel_ringparam, NULL);
Eugenia Emantayev37e2d992018-01-08 16:00:24 +02001776
1777 /* ensure new ring parameters are within the maximums */
1778 if (ringparam.rx_pending > max.rx_max_pending ||
1779 ringparam.rx_mini_pending > max.rx_mini_max_pending ||
1780 ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending ||
1781 ringparam.tx_pending > max.tx_max_pending)
1782 return -EINVAL;
1783
Hao Chen74624942021-11-18 20:12:43 +08001784 ret = dev->ethtool_ops->set_ringparam(dev, &ringparam,
1785 &kernel_ringparam, NULL);
Michal Kubecekbc9d1c92020-03-12 21:08:33 +01001786 if (!ret)
1787 ethtool_notify(dev, ETHTOOL_MSG_RINGS_NTF, NULL);
1788 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789}
1790
amit salecha8b5933c2011-04-07 01:58:42 +00001791static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1792 void __user *useraddr)
1793{
1794 struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1795
1796 if (!dev->ethtool_ops->get_channels)
1797 return -EOPNOTSUPP;
1798
1799 dev->ethtool_ops->get_channels(dev, &channels);
1800
1801 if (copy_to_user(useraddr, &channels, sizeof(channels)))
1802 return -EFAULT;
1803 return 0;
1804}
1805
1806static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1807 void __user *useraddr)
1808{
Jakub Kicinskib8c8a2e2018-10-01 14:51:35 +02001809 struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS };
Jakub Kicinski1661d342018-10-01 14:51:36 +02001810 u16 from_channel, to_channel;
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001811 u32 max_rx_in_use = 0;
Jakub Kicinski1661d342018-10-01 14:51:36 +02001812 unsigned int i;
Michal Kubecek546379b2020-03-12 21:08:48 +01001813 int ret;
amit salecha8b5933c2011-04-07 01:58:42 +00001814
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001815 if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
amit salecha8b5933c2011-04-07 01:58:42 +00001816 return -EOPNOTSUPP;
1817
1818 if (copy_from_user(&channels, useraddr, sizeof(channels)))
1819 return -EFAULT;
1820
Jakub Kicinskib8c8a2e2018-10-01 14:51:35 +02001821 dev->ethtool_ops->get_channels(dev, &curr);
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001822
Jakub Kicinski75c36db2020-05-15 12:49:02 -07001823 if (channels.rx_count == curr.rx_count &&
1824 channels.tx_count == curr.tx_count &&
1825 channels.combined_count == curr.combined_count &&
1826 channels.other_count == curr.other_count)
1827 return 0;
1828
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001829 /* ensure new counts are within the maximums */
Jakub Kicinskib8c8a2e2018-10-01 14:51:35 +02001830 if (channels.rx_count > curr.max_rx ||
1831 channels.tx_count > curr.max_tx ||
1832 channels.combined_count > curr.max_combined ||
1833 channels.other_count > curr.max_other)
Keller, Jacob E8bf36862016-02-08 16:05:04 -08001834 return -EINVAL;
1835
Jakub Kicinski7be92512020-05-15 12:49:00 -07001836 /* ensure there is at least one RX and one TX channel */
1837 if (!channels.combined_count &&
1838 (!channels.rx_count || !channels.tx_count))
1839 return -EINVAL;
1840
Keller, Jacob Ed4ab4282016-02-08 16:05:03 -08001841 /* ensure the new Rx count fits within the configured Rx flow
1842 * indirection table settings */
1843 if (netif_is_rxfh_configured(dev) &&
1844 !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1845 (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1846 return -EINVAL;
1847
Jakub Kicinski1661d342018-10-01 14:51:36 +02001848 /* Disabling channels, query zero-copy AF_XDP sockets */
1849 from_channel = channels.combined_count +
1850 min(channels.rx_count, channels.tx_count);
1851 to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count);
1852 for (i = from_channel; i < to_channel; i++)
Magnus Karlssonc4655762020-08-28 10:26:16 +02001853 if (xsk_get_pool_from_qid(dev, i))
Jakub Kicinski1661d342018-10-01 14:51:36 +02001854 return -EINVAL;
1855
Michal Kubecek546379b2020-03-12 21:08:48 +01001856 ret = dev->ethtool_ops->set_channels(dev, &channels);
1857 if (!ret)
1858 ethtool_notify(dev, ETHTOOL_MSG_CHANNELS_NTF, NULL);
1859 return ret;
amit salecha8b5933c2011-04-07 01:58:42 +00001860}
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1863{
Li RongQinge83887f2019-02-27 20:47:57 +08001864 struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 if (!dev->ethtool_ops->get_pauseparam)
1867 return -EOPNOTSUPP;
1868
1869 dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1870
1871 if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1872 return -EFAULT;
1873 return 0;
1874}
1875
1876static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1877{
1878 struct ethtool_pauseparam pauseparam;
Michal Kubecekbf37faa2020-03-28 00:01:33 +01001879 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Jeff Garzike1b90c42006-07-17 12:54:40 -04001881 if (!dev->ethtool_ops->set_pauseparam)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return -EOPNOTSUPP;
1883
1884 if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1885 return -EFAULT;
1886
Michal Kubecekbf37faa2020-03-28 00:01:33 +01001887 ret = dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1888 if (!ret)
1889 ethtool_notify(dev, ETHTOOL_MSG_PAUSE_NTF, NULL);
1890 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1894{
1895 struct ethtool_test test;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07001896 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07001898 int ret, test_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001900 if (!ops->self_test || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07001901 return -EOPNOTSUPP;
1902
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001903 test_len = ops->get_sset_count(dev, ETH_SS_TEST);
Jeff Garzikff03d492007-08-15 16:01:08 -07001904 if (test_len < 0)
1905 return test_len;
1906 WARN_ON(test_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 if (copy_from_user(&test, useraddr, sizeof(test)))
1909 return -EFAULT;
1910
Jeff Garzikff03d492007-08-15 16:01:08 -07001911 test.len = test_len;
Austin Kim80ec82e2021-06-09 03:34:25 +01001912 data = kcalloc(test_len, sizeof(u64), GFP_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (!data)
1914 return -ENOMEM;
1915
Andrew Lunn77e9b2a2020-04-20 00:11:52 +02001916 netif_testing_on(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 ops->self_test(dev, &test, data);
Andrew Lunn77e9b2a2020-04-20 00:11:52 +02001918 netif_testing_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 ret = -EFAULT;
1921 if (copy_to_user(useraddr, &test, sizeof(test)))
1922 goto out;
1923 useraddr += sizeof(test);
Gustavo A. R. Silvaed717612021-09-28 14:57:35 -05001924 if (copy_to_user(useraddr, data, array_size(test.len, sizeof(u64))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 goto out;
1926 ret = 0;
1927
1928 out:
1929 kfree(data);
1930 return ret;
1931}
1932
1933static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1934{
1935 struct ethtool_gstrings gstrings;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 u8 *data;
1937 int ret;
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1940 return -EFAULT;
1941
Michał Mirosław340ae162011-02-15 16:59:16 +00001942 ret = __ethtool_get_sset_count(dev, gstrings.string_set);
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001943 if (ret < 0)
1944 return ret;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001945 if (ret > S32_MAX / ETH_GSTRING_LEN)
1946 return -ENOMEM;
1947 WARN_ON_ONCE(!ret);
Jeff Garzikff03d492007-08-15 16:01:08 -07001948
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00001949 gstrings.len = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Li RongQing3d883022019-03-29 09:18:02 +08001951 if (gstrings.len) {
1952 data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN));
1953 if (!data)
1954 return -ENOMEM;
1955
1956 __ethtool_get_strings(dev, gstrings.string_set, data);
1957 } else {
1958 data = NULL;
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
1961 ret = -EFAULT;
1962 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1963 goto out;
1964 useraddr += sizeof(gstrings);
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001965 if (gstrings.len &&
Gustavo A. R. Silvaed717612021-09-28 14:57:35 -05001966 copy_to_user(useraddr, data,
1967 array_size(gstrings.len, ETH_GSTRING_LEN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 goto out;
1969 ret = 0;
1970
Michał Mirosław340ae162011-02-15 16:59:16 +00001971out:
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08001972 vfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return ret;
1974}
1975
Alexander Duyck7888fe52021-03-16 17:30:36 -07001976__printf(2, 3) void ethtool_sprintf(u8 **data, const char *fmt, ...)
1977{
1978 va_list args;
1979
1980 va_start(args, fmt);
1981 vsnprintf(*data, ETH_GSTRING_LEN, fmt, args);
1982 va_end(args);
1983
1984 *data += ETH_GSTRING_LEN;
1985}
1986EXPORT_SYMBOL(ethtool_sprintf);
1987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1989{
1990 struct ethtool_value id;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001991 static bool busy;
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001992 const struct ethtool_ops *ops = dev->ethtool_ops;
Eric Dumazet5ae21952021-12-04 20:22:00 -08001993 netdevice_tracker dev_tracker;
Ben Hutchings68f512f2011-04-02 00:35:15 +01001994 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00001996 if (!ops->set_phys_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return -EOPNOTSUPP;
1998
Ben Hutchings68f512f2011-04-02 00:35:15 +01001999 if (busy)
2000 return -EBUSY;
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 if (copy_from_user(&id, useraddr, sizeof(id)))
2003 return -EFAULT;
2004
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002005 rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
Allan, Bruce Wfce55922011-04-13 13:09:10 +00002006 if (rc < 0)
Ben Hutchings68f512f2011-04-02 00:35:15 +01002007 return rc;
2008
2009 /* Drop the RTNL lock while waiting, but prevent reentry or
2010 * removal of the device.
2011 */
2012 busy = true;
Eric Dumazet5ae21952021-12-04 20:22:00 -08002013 dev_hold_track(dev, &dev_tracker, GFP_KERNEL);
Ben Hutchings68f512f2011-04-02 00:35:15 +01002014 rtnl_unlock();
2015
2016 if (rc == 0) {
2017 /* Driver will handle this itself */
2018 schedule_timeout_interruptible(
Allan, Bruce W143780c2011-04-11 13:01:59 +00002019 id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
Ben Hutchings68f512f2011-04-02 00:35:15 +01002020 } else {
Allan, Bruce Wfce55922011-04-13 13:09:10 +00002021 /* Driver expects to be called at twice the frequency in rc */
Edward Cree2adc6ed2020-09-01 18:52:32 +01002022 int n = rc * 2, interval = HZ / n;
2023 u64 count = n * id.data, i = 0;
Ben Hutchings68f512f2011-04-02 00:35:15 +01002024
Allan, Bruce Wfce55922011-04-13 13:09:10 +00002025 do {
Edward Cree2adc6ed2020-09-01 18:52:32 +01002026 rtnl_lock();
2027 rc = ops->set_phys_id(dev,
2028 (i++ & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
2029 rtnl_unlock();
2030 if (rc)
2031 break;
2032 schedule_timeout_interruptible(interval);
2033 } while (!signal_pending(current) && (!id.data || i < count));
Ben Hutchings68f512f2011-04-02 00:35:15 +01002034 }
2035
2036 rtnl_lock();
Eric Dumazet5ae21952021-12-04 20:22:00 -08002037 dev_put_track(dev, &dev_tracker);
Ben Hutchings68f512f2011-04-02 00:35:15 +01002038 busy = false;
2039
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002040 (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
Ben Hutchings68f512f2011-04-02 00:35:15 +01002041 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
2044static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
2045{
2046 struct ethtool_stats stats;
Stephen Hemminger76fd8592006-09-08 11:16:13 -07002047 const struct ethtool_ops *ops = dev->ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 u64 *data;
Jeff Garzikff03d492007-08-15 16:01:08 -07002049 int ret, n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00002051 if (!ops->get_ethtool_stats || !ops->get_sset_count)
Jeff Garzikff03d492007-08-15 16:01:08 -07002052 return -EOPNOTSUPP;
2053
Ben Hutchingsa9828ec2009-10-01 11:33:03 +00002054 n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
Jeff Garzikff03d492007-08-15 16:01:08 -07002055 if (n_stats < 0)
2056 return n_stats;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08002057 if (n_stats > S32_MAX / sizeof(u64))
2058 return -ENOMEM;
2059 WARN_ON_ONCE(!n_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (copy_from_user(&stats, useraddr, sizeof(stats)))
2061 return -EFAULT;
2062
Jeff Garzikff03d492007-08-15 16:01:08 -07002063 stats.n_stats = n_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Li RongQing3d883022019-03-29 09:18:02 +08002065 if (n_stats) {
2066 data = vzalloc(array_size(n_stats, sizeof(u64)));
2067 if (!data)
2068 return -ENOMEM;
2069 ops->get_ethtool_stats(dev, &stats, data);
2070 } else {
2071 data = NULL;
2072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 ret = -EFAULT;
2075 if (copy_to_user(useraddr, &stats, sizeof(stats)))
2076 goto out;
2077 useraddr += sizeof(stats);
Gustavo A. R. Silva3dd14992020-06-15 18:01:07 -05002078 if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 goto out;
2080 ret = 0;
2081
2082 out:
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08002083 vfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return ret;
2085}
2086
Andrew Lunnf3a40942015-12-30 16:28:25 +01002087static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
2088{
Florian Fainelli17809512020-07-08 09:46:25 -07002089 const struct ethtool_phy_ops *phy_ops = ethtool_phy_ops;
Florian Fainelli99943382018-04-25 12:12:48 -07002090 const struct ethtool_ops *ops = dev->ethtool_ops;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002091 struct phy_device *phydev = dev->phydev;
Florian Fainelli99943382018-04-25 12:12:48 -07002092 struct ethtool_stats stats;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002093 u64 *data;
2094 int ret, n_stats;
2095
Florian Fainelli99943382018-04-25 12:12:48 -07002096 if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count))
Andrew Lunnf3a40942015-12-30 16:28:25 +01002097 return -EOPNOTSUPP;
2098
Tom Rixccd21ec2022-01-05 06:10:20 -08002099 if (phydev && !ops->get_ethtool_phy_stats &&
Florian Fainelli17809512020-07-08 09:46:25 -07002100 phy_ops && phy_ops->get_sset_count)
Tom Rixccd21ec2022-01-05 06:10:20 -08002101 n_stats = phy_ops->get_sset_count(phydev);
Florian Fainelli99943382018-04-25 12:12:48 -07002102 else
2103 n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS);
Andrew Lunnf3a40942015-12-30 16:28:25 +01002104 if (n_stats < 0)
2105 return n_stats;
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08002106 if (n_stats > S32_MAX / sizeof(u64))
2107 return -ENOMEM;
2108 WARN_ON_ONCE(!n_stats);
Andrew Lunnf3a40942015-12-30 16:28:25 +01002109
2110 if (copy_from_user(&stats, useraddr, sizeof(stats)))
2111 return -EFAULT;
2112
2113 stats.n_stats = n_stats;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002114
Li RongQing3d883022019-03-29 09:18:02 +08002115 if (n_stats) {
2116 data = vzalloc(array_size(n_stats, sizeof(u64)));
2117 if (!data)
2118 return -ENOMEM;
2119
Tom Rixccd21ec2022-01-05 06:10:20 -08002120 if (phydev && !ops->get_ethtool_phy_stats &&
Florian Fainelli17809512020-07-08 09:46:25 -07002121 phy_ops && phy_ops->get_stats) {
Tom Rixccd21ec2022-01-05 06:10:20 -08002122 ret = phy_ops->get_stats(phydev, &stats, data);
Li RongQing3d883022019-03-29 09:18:02 +08002123 if (ret < 0)
2124 goto out;
2125 } else {
2126 ops->get_ethtool_phy_stats(dev, &stats, data);
2127 }
Florian Fainelli99943382018-04-25 12:12:48 -07002128 } else {
Li RongQing3d883022019-03-29 09:18:02 +08002129 data = NULL;
Florian Fainelli99943382018-04-25 12:12:48 -07002130 }
Andrew Lunnf3a40942015-12-30 16:28:25 +01002131
2132 ret = -EFAULT;
2133 if (copy_to_user(useraddr, &stats, sizeof(stats)))
2134 goto out;
2135 useraddr += sizeof(stats);
Gustavo A. R. Silva3dd14992020-06-15 18:01:07 -05002136 if (n_stats && copy_to_user(useraddr, data, array_size(n_stats, sizeof(u64))))
Andrew Lunnf3a40942015-12-30 16:28:25 +01002137 goto out;
2138 ret = 0;
2139
2140 out:
Alexei Starovoitov4d1ceea2017-01-30 18:25:18 -08002141 vfree(data);
Andrew Lunnf3a40942015-12-30 16:28:25 +01002142 return ret;
2143}
2144
viro@ftp.linux.org.uk0bf0519d2005-09-05 03:26:18 +01002145static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
Jon Wetzela6f9a702005-08-20 17:15:54 -07002146{
2147 struct ethtool_perm_addr epaddr;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002148
Matthew Wilcox313674a2007-07-31 14:00:29 -07002149 if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
Jon Wetzela6f9a702005-08-20 17:15:54 -07002150 return -EFAULT;
2151
Matthew Wilcox313674a2007-07-31 14:00:29 -07002152 if (epaddr.size < dev->addr_len)
2153 return -ETOOSMALL;
2154 epaddr.size = dev->addr_len;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002155
Jon Wetzela6f9a702005-08-20 17:15:54 -07002156 if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
Matthew Wilcox313674a2007-07-31 14:00:29 -07002157 return -EFAULT;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002158 useraddr += sizeof(epaddr);
Matthew Wilcox313674a2007-07-31 14:00:29 -07002159 if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
2160 return -EFAULT;
2161 return 0;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002162}
2163
Jeff Garzik13c99b22007-08-15 16:01:56 -07002164static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
2165 u32 cmd, u32 (*actor)(struct net_device *))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002166{
Roland Dreier8e557422010-02-11 12:14:23 -08002167 struct ethtool_value edata = { .cmd = cmd };
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002168
Jeff Garzik13c99b22007-08-15 16:01:56 -07002169 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002170 return -EOPNOTSUPP;
2171
Jeff Garzik13c99b22007-08-15 16:01:56 -07002172 edata.data = actor(dev);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002173
2174 if (copy_to_user(useraddr, &edata, sizeof(edata)))
2175 return -EFAULT;
2176 return 0;
2177}
2178
Jeff Garzik13c99b22007-08-15 16:01:56 -07002179static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
2180 void (*actor)(struct net_device *, u32))
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002181{
2182 struct ethtool_value edata;
2183
Jeff Garzik13c99b22007-08-15 16:01:56 -07002184 if (!actor)
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002185 return -EOPNOTSUPP;
2186
2187 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2188 return -EFAULT;
2189
Jeff Garzik13c99b22007-08-15 16:01:56 -07002190 actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002191 return 0;
2192}
2193
Jeff Garzik13c99b22007-08-15 16:01:56 -07002194static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
2195 int (*actor)(struct net_device *, u32))
Jeff Garzik339bf022007-08-15 16:01:32 -07002196{
2197 struct ethtool_value edata;
2198
Jeff Garzik13c99b22007-08-15 16:01:56 -07002199 if (!actor)
Jeff Garzik339bf022007-08-15 16:01:32 -07002200 return -EOPNOTSUPP;
2201
2202 if (copy_from_user(&edata, useraddr, sizeof(edata)))
2203 return -EFAULT;
2204
Jeff Garzik13c99b22007-08-15 16:01:56 -07002205 return actor(dev, edata.data);
Jeff Garzik339bf022007-08-15 16:01:32 -07002206}
2207
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002208static int
2209ethtool_flash_device(struct net_device *dev, struct ethtool_devlink_compat *req)
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002210{
Jakub Kicinski1af0a092021-10-30 10:18:51 -07002211 if (!dev->ethtool_ops->flash_device) {
2212 req->devlink = netdev_to_devlink_get(dev);
2213 return 0;
2214 }
Jakub Kicinski4eceba12019-02-14 13:40:45 -08002215
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002216 return dev->ethtool_ops->flash_device(dev, &req->efl);
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002217}
2218
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002219static int ethtool_set_dump(struct net_device *dev,
2220 void __user *useraddr)
2221{
2222 struct ethtool_dump dump;
2223
2224 if (!dev->ethtool_ops->set_dump)
2225 return -EOPNOTSUPP;
2226
2227 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2228 return -EFAULT;
2229
2230 return dev->ethtool_ops->set_dump(dev, &dump);
2231}
2232
2233static int ethtool_get_dump_flag(struct net_device *dev,
2234 void __user *useraddr)
2235{
2236 int ret;
2237 struct ethtool_dump dump;
2238 const struct ethtool_ops *ops = dev->ethtool_ops;
2239
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002240 if (!ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002241 return -EOPNOTSUPP;
2242
2243 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2244 return -EFAULT;
2245
2246 ret = ops->get_dump_flag(dev, &dump);
2247 if (ret)
2248 return ret;
2249
2250 if (copy_to_user(useraddr, &dump, sizeof(dump)))
2251 return -EFAULT;
2252 return 0;
2253}
2254
2255static int ethtool_get_dump_data(struct net_device *dev,
2256 void __user *useraddr)
2257{
2258 int ret;
2259 __u32 len;
2260 struct ethtool_dump dump, tmp;
2261 const struct ethtool_ops *ops = dev->ethtool_ops;
2262 void *data = NULL;
2263
Jiri Pirkoc03a14e2013-01-07 09:02:08 +00002264 if (!ops->get_dump_data || !ops->get_dump_flag)
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002265 return -EOPNOTSUPP;
2266
2267 if (copy_from_user(&dump, useraddr, sizeof(dump)))
2268 return -EFAULT;
2269
2270 memset(&tmp, 0, sizeof(tmp));
2271 tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2272 ret = ops->get_dump_flag(dev, &tmp);
2273 if (ret)
2274 return ret;
2275
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002276 len = min(tmp.len, dump.len);
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002277 if (!len)
2278 return -EFAULT;
2279
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002280 /* Don't ever let the driver think there's more space available
2281 * than it requested with .get_dump_flag().
2282 */
2283 dump.len = len;
2284
2285 /* Always allocate enough space to hold the whole thing so that the
2286 * driver does not need to check the length and bother with partial
2287 * dumping.
2288 */
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002289 data = vzalloc(tmp.len);
2290 if (!data)
2291 return -ENOMEM;
2292 ret = ops->get_dump_data(dev, &dump, data);
2293 if (ret)
2294 goto out;
2295
Michal Schmidtc590b5e2013-07-01 17:23:30 +02002296 /* There are two sane possibilities:
2297 * 1. The driver's .get_dump_data() does not touch dump.len.
2298 * 2. Or it may set dump.len to how much it really writes, which
2299 * should be tmp.len (or len if it can do a partial dump).
2300 * In any case respond to userspace with the actual length of data
2301 * it's receiving.
2302 */
2303 WARN_ON(dump.len != len && dump.len != tmp.len);
2304 dump.len = len;
2305
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002306 if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2307 ret = -EFAULT;
2308 goto out;
2309 }
2310 useraddr += offsetof(struct ethtool_dump, data);
2311 if (copy_to_user(useraddr, data, len))
2312 ret = -EFAULT;
2313out:
2314 vfree(data);
2315 return ret;
2316}
2317
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002318static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2319{
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002320 struct ethtool_ts_info info;
Michal Kubecek5b071c52020-03-28 00:01:58 +01002321 int err;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002322
Michal Kubecek5b071c52020-03-28 00:01:58 +01002323 err = __ethtool_get_ts_info(dev, &info);
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002324 if (err)
2325 return err;
2326
2327 if (copy_to_user(useraddr, &info, sizeof(info)))
Michal Kubecek5b071c52020-03-28 00:01:58 +01002328 return -EFAULT;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002329
Michal Kubecek5b071c52020-03-28 00:01:58 +01002330 return 0;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002331}
2332
Andrew Lunn95dfc7e2021-04-09 11:06:38 +03002333int ethtool_get_module_info_call(struct net_device *dev,
2334 struct ethtool_modinfo *modinfo)
Ed Swierk2f438362015-01-02 17:27:56 -08002335{
2336 const struct ethtool_ops *ops = dev->ethtool_ops;
2337 struct phy_device *phydev = dev->phydev;
2338
Russell Kinge679c9c2018-03-28 15:44:16 -07002339 if (dev->sfp_bus)
2340 return sfp_get_module_info(dev->sfp_bus, modinfo);
2341
Ed Swierk2f438362015-01-02 17:27:56 -08002342 if (phydev && phydev->drv && phydev->drv->module_info)
2343 return phydev->drv->module_info(phydev, modinfo);
2344
2345 if (ops->get_module_info)
2346 return ops->get_module_info(dev, modinfo);
2347
2348 return -EOPNOTSUPP;
2349}
2350
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002351static int ethtool_get_module_info(struct net_device *dev,
2352 void __user *useraddr)
2353{
2354 int ret;
2355 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002356
2357 if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2358 return -EFAULT;
2359
Andrew Lunn95dfc7e2021-04-09 11:06:38 +03002360 ret = ethtool_get_module_info_call(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002361 if (ret)
2362 return ret;
2363
2364 if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2365 return -EFAULT;
2366
2367 return 0;
2368}
2369
Andrew Lunn95dfc7e2021-04-09 11:06:38 +03002370int ethtool_get_module_eeprom_call(struct net_device *dev,
2371 struct ethtool_eeprom *ee, u8 *data)
Ed Swierk2f438362015-01-02 17:27:56 -08002372{
2373 const struct ethtool_ops *ops = dev->ethtool_ops;
2374 struct phy_device *phydev = dev->phydev;
2375
Russell Kinge679c9c2018-03-28 15:44:16 -07002376 if (dev->sfp_bus)
2377 return sfp_get_module_eeprom(dev->sfp_bus, ee, data);
2378
Ed Swierk2f438362015-01-02 17:27:56 -08002379 if (phydev && phydev->drv && phydev->drv->module_eeprom)
2380 return phydev->drv->module_eeprom(phydev, ee, data);
2381
2382 if (ops->get_module_eeprom)
2383 return ops->get_module_eeprom(dev, ee, data);
2384
2385 return -EOPNOTSUPP;
2386}
2387
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002388static int ethtool_get_module_eeprom(struct net_device *dev,
2389 void __user *useraddr)
2390{
2391 int ret;
2392 struct ethtool_modinfo modinfo;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002393
Andrew Lunn95dfc7e2021-04-09 11:06:38 +03002394 ret = ethtool_get_module_info_call(dev, &modinfo);
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002395 if (ret)
2396 return ret;
2397
Ed Swierk2f438362015-01-02 17:27:56 -08002398 return ethtool_get_any_eeprom(dev, useraddr,
Andrew Lunn95dfc7e2021-04-09 11:06:38 +03002399 ethtool_get_module_eeprom_call,
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002400 modinfo.eeprom_len);
2401}
2402
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302403static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2404{
2405 switch (tuna->id) {
2406 case ETHTOOL_RX_COPYBREAK:
Eric Dumazet1255a502014-10-05 12:35:21 +03002407 case ETHTOOL_TX_COPYBREAK:
Hao Chen448f4132021-11-18 20:12:40 +08002408 case ETHTOOL_TX_COPYBREAK_BUF_SIZE:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302409 if (tuna->len != sizeof(u32) ||
2410 tuna->type_id != ETHTOOL_TUNABLE_U32)
2411 return -EINVAL;
2412 break;
Inbar Karmye1577c12017-11-20 16:14:30 +02002413 case ETHTOOL_PFC_PREVENTION_TOUT:
2414 if (tuna->len != sizeof(u16) ||
2415 tuna->type_id != ETHTOOL_TUNABLE_U16)
2416 return -EINVAL;
2417 break;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302418 default:
2419 return -EINVAL;
2420 }
2421
2422 return 0;
2423}
2424
2425static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2426{
2427 int ret;
2428 struct ethtool_tunable tuna;
2429 const struct ethtool_ops *ops = dev->ethtool_ops;
2430 void *data;
2431
2432 if (!ops->get_tunable)
2433 return -EOPNOTSUPP;
2434 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2435 return -EFAULT;
2436 ret = ethtool_tunable_valid(&tuna);
2437 if (ret)
2438 return ret;
Austin Kim80ec82e2021-06-09 03:34:25 +01002439 data = kzalloc(tuna.len, GFP_USER);
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302440 if (!data)
2441 return -ENOMEM;
2442 ret = ops->get_tunable(dev, &tuna, data);
2443 if (ret)
2444 goto out;
2445 useraddr += sizeof(tuna);
2446 ret = -EFAULT;
2447 if (copy_to_user(useraddr, data, tuna.len))
2448 goto out;
2449 ret = 0;
2450
2451out:
2452 kfree(data);
2453 return ret;
2454}
2455
2456static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2457{
2458 int ret;
2459 struct ethtool_tunable tuna;
2460 const struct ethtool_ops *ops = dev->ethtool_ops;
2461 void *data;
2462
2463 if (!ops->set_tunable)
2464 return -EOPNOTSUPP;
2465 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2466 return -EFAULT;
2467 ret = ethtool_tunable_valid(&tuna);
2468 if (ret)
2469 return ret;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302470 useraddr += sizeof(tuna);
Al Viro30e7e3e2017-05-13 18:31:26 -04002471 data = memdup_user(useraddr, tuna.len);
2472 if (IS_ERR(data))
2473 return PTR_ERR(data);
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302474 ret = ops->set_tunable(dev, &tuna, data);
2475
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302476 kfree(data);
2477 return ret;
2478}
2479
Arnd Bergmann3499e872019-03-07 16:58:35 +01002480static noinline_for_stack int
2481ethtool_get_per_queue_coalesce(struct net_device *dev,
2482 void __user *useraddr,
2483 struct ethtool_per_queue_op *per_queue_opt)
Kan Liang421797b2016-02-19 09:24:02 -05002484{
2485 u32 bit;
2486 int ret;
2487 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2488
2489 if (!dev->ethtool_ops->get_per_queue_coalesce)
2490 return -EOPNOTSUPP;
2491
2492 useraddr += sizeof(*per_queue_opt);
2493
Yury Norov3aa56882018-02-06 15:38:06 -08002494 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask,
2495 MAX_NUM_QUEUE);
Kan Liang421797b2016-02-19 09:24:02 -05002496
2497 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2498 struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2499
2500 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2501 if (ret != 0)
2502 return ret;
2503 if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2504 return -EFAULT;
2505 useraddr += sizeof(coalesce);
2506 }
2507
2508 return 0;
2509}
2510
Arnd Bergmann3499e872019-03-07 16:58:35 +01002511static noinline_for_stack int
2512ethtool_set_per_queue_coalesce(struct net_device *dev,
2513 void __user *useraddr,
2514 struct ethtool_per_queue_op *per_queue_opt)
Kan Liangf38d1382016-02-19 09:24:03 -05002515{
2516 u32 bit;
2517 int i, ret = 0;
2518 int n_queue;
2519 struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2520 DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2521
2522 if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2523 (!dev->ethtool_ops->get_per_queue_coalesce))
2524 return -EOPNOTSUPP;
2525
2526 useraddr += sizeof(*per_queue_opt);
2527
Yury Norov3aa56882018-02-06 15:38:06 -08002528 bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE);
Kan Liangf38d1382016-02-19 09:24:03 -05002529 n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2530 tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2531 if (!backup)
2532 return -ENOMEM;
2533
2534 for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2535 struct ethtool_coalesce coalesce;
2536
2537 ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2538 if (ret != 0)
2539 goto roll_back;
2540
2541 tmp++;
2542
2543 if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2544 ret = -EFAULT;
2545 goto roll_back;
2546 }
2547
Jakub Kicinski95cddcb2020-03-04 21:15:31 -08002548 if (!ethtool_set_coalesce_supported(dev, &coalesce)) {
2549 ret = -EOPNOTSUPP;
2550 goto roll_back;
2551 }
2552
Kan Liangf38d1382016-02-19 09:24:03 -05002553 ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2554 if (ret != 0)
2555 goto roll_back;
2556
2557 useraddr += sizeof(coalesce);
2558 }
2559
2560roll_back:
2561 if (ret != 0) {
2562 tmp = backup;
2563 for_each_set_bit(i, queue_mask, bit) {
2564 dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2565 tmp++;
2566 }
2567 }
2568 kfree(backup);
2569
2570 return ret;
2571}
2572
Arnd Bergmann3499e872019-03-07 16:58:35 +01002573static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev,
Wenwen Wang58f5bbe2018-10-08 10:49:35 -05002574 void __user *useraddr, u32 sub_cmd)
Kan Liangac2c7ad2016-02-19 09:24:01 -05002575{
2576 struct ethtool_per_queue_op per_queue_opt;
2577
2578 if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2579 return -EFAULT;
2580
Wenwen Wang58f5bbe2018-10-08 10:49:35 -05002581 if (per_queue_opt.sub_command != sub_cmd)
2582 return -EINVAL;
2583
Kan Liangac2c7ad2016-02-19 09:24:01 -05002584 switch (per_queue_opt.sub_command) {
Kan Liang421797b2016-02-19 09:24:02 -05002585 case ETHTOOL_GCOALESCE:
2586 return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangf38d1382016-02-19 09:24:03 -05002587 case ETHTOOL_SCOALESCE:
2588 return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002589 default:
2590 return -EOPNOTSUPP;
Tom Rix9d253c02020-11-01 07:56:01 -08002591 }
Kan Liangac2c7ad2016-02-19 09:24:01 -05002592}
2593
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002594static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)
2595{
2596 switch (tuna->id) {
Raju Lakkaraju65feddd2016-11-17 13:07:23 +01002597 case ETHTOOL_PHY_DOWNSHIFT:
Heiner Kallweit3aeb0802019-03-25 19:34:58 +01002598 case ETHTOOL_PHY_FAST_LINK_DOWN:
Raju Lakkaraju65feddd2016-11-17 13:07:23 +01002599 if (tuna->len != sizeof(u8) ||
2600 tuna->type_id != ETHTOOL_TUNABLE_U8)
2601 return -EINVAL;
2602 break;
Alexandru Ardelean9f2f13f2019-09-16 10:35:25 +03002603 case ETHTOOL_PHY_EDPD:
2604 if (tuna->len != sizeof(u16) ||
2605 tuna->type_id != ETHTOOL_TUNABLE_U16)
2606 return -EINVAL;
2607 break;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002608 default:
2609 return -EINVAL;
2610 }
2611
2612 return 0;
2613}
2614
2615static int get_phy_tunable(struct net_device *dev, void __user *useraddr)
2616{
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002617 struct phy_device *phydev = dev->phydev;
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002618 struct ethtool_tunable tuna;
2619 bool phy_drv_tunable;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002620 void *data;
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002621 int ret;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002622
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002623 phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable;
2624 if (!phy_drv_tunable && !dev->ethtool_ops->get_phy_tunable)
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002625 return -EOPNOTSUPP;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002626 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2627 return -EFAULT;
2628 ret = ethtool_phy_tunable_valid(&tuna);
2629 if (ret)
2630 return ret;
Austin Kim80ec82e2021-06-09 03:34:25 +01002631 data = kzalloc(tuna.len, GFP_USER);
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002632 if (!data)
2633 return -ENOMEM;
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002634 if (phy_drv_tunable) {
2635 mutex_lock(&phydev->lock);
2636 ret = phydev->drv->get_tunable(phydev, &tuna, data);
2637 mutex_unlock(&phydev->lock);
2638 } else {
2639 ret = dev->ethtool_ops->get_phy_tunable(dev, &tuna, data);
2640 }
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002641 if (ret)
2642 goto out;
2643 useraddr += sizeof(tuna);
2644 ret = -EFAULT;
2645 if (copy_to_user(useraddr, data, tuna.len))
2646 goto out;
2647 ret = 0;
2648
2649out:
2650 kfree(data);
2651 return ret;
2652}
2653
2654static int set_phy_tunable(struct net_device *dev, void __user *useraddr)
2655{
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002656 struct phy_device *phydev = dev->phydev;
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002657 struct ethtool_tunable tuna;
2658 bool phy_drv_tunable;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002659 void *data;
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002660 int ret;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002661
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002662 phy_drv_tunable = phydev && phydev->drv && phydev->drv->get_tunable;
2663 if (!phy_drv_tunable && !dev->ethtool_ops->set_phy_tunable)
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002664 return -EOPNOTSUPP;
2665 if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2666 return -EFAULT;
2667 ret = ethtool_phy_tunable_valid(&tuna);
2668 if (ret)
2669 return ret;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002670 useraddr += sizeof(tuna);
Al Viro30e7e3e2017-05-13 18:31:26 -04002671 data = memdup_user(useraddr, tuna.len);
2672 if (IS_ERR(data))
2673 return PTR_ERR(data);
Igor Russkikhc6db31f2020-10-05 18:39:37 +03002674 if (phy_drv_tunable) {
2675 mutex_lock(&phydev->lock);
2676 ret = phydev->drv->set_tunable(phydev, &tuna, data);
2677 mutex_unlock(&phydev->lock);
2678 } else {
2679 ret = dev->ethtool_ops->set_phy_tunable(dev, &tuna, data);
2680 }
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002681
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002682 kfree(data);
2683 return ret;
2684}
2685
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002686static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr)
2687{
Li RongQinge83887f2019-02-27 20:47:57 +08002688 struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM };
Edward Creea6d50512018-02-28 19:15:58 +00002689 int rc;
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002690
2691 if (!dev->ethtool_ops->get_fecparam)
2692 return -EOPNOTSUPP;
2693
Edward Creea6d50512018-02-28 19:15:58 +00002694 rc = dev->ethtool_ops->get_fecparam(dev, &fecparam);
2695 if (rc)
2696 return rc;
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002697
Jakub Kicinski240e11442021-03-24 18:11:57 -07002698 if (WARN_ON_ONCE(fecparam.reserved))
2699 fecparam.reserved = 0;
2700
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002701 if (copy_to_user(useraddr, &fecparam, sizeof(fecparam)))
2702 return -EFAULT;
2703 return 0;
2704}
2705
2706static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
2707{
2708 struct ethtool_fecparam fecparam;
2709
2710 if (!dev->ethtool_ops->set_fecparam)
2711 return -EOPNOTSUPP;
2712
2713 if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
2714 return -EFAULT;
2715
Jakub Kicinskicf2cc0b2021-03-26 13:22:22 -07002716 if (!fecparam.fec || fecparam.fec & ETHTOOL_FEC_NONE)
Jakub Kicinski42ce1272021-03-24 18:11:59 -07002717 return -EINVAL;
2718
Jakub Kicinskid3b37fc2021-03-24 18:11:58 -07002719 fecparam.active_fec = 0;
Jakub Kicinski240e11442021-03-24 18:11:57 -07002720 fecparam.reserved = 0;
2721
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002722 return dev->ethtool_ops->set_fecparam(dev, &fecparam);
2723}
2724
Yan Burman600fed52013-06-03 02:03:34 +00002725/* The main entry point in this file. Called from net/core/dev_ioctl.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Jakub Kicinskif49deaa2021-10-30 10:18:48 -07002727static int
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002728__dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr,
2729 u32 ethcmd, struct ethtool_devlink_compat *devlink_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002731 struct net_device *dev;
2732 u32 sub_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 int rc;
Bjørn Morkb29d3142013-05-01 23:06:42 +00002734 netdev_features_t old_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002736 dev = __dev_get_by_name(net, ifr->ifr_name);
Heiner Kallweitf32a2132021-08-01 12:36:48 +02002737 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 return -ENODEV;
2739
Kan Liangac2c7ad2016-02-19 09:24:01 -05002740 if (ethcmd == ETHTOOL_PERQUEUE) {
2741 if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2742 return -EFAULT;
2743 } else {
2744 sub_cmd = ethcmd;
2745 }
Stephen Hemminger75f31232006-09-28 15:13:37 -07002746 /* Allow some commands to be done by anyone */
Kan Liangac2c7ad2016-02-19 09:24:01 -05002747 switch (sub_cmd) {
stephen hemminger0fdc1002010-08-23 10:24:18 +00002748 case ETHTOOL_GSET:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002749 case ETHTOOL_GDRVINFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002750 case ETHTOOL_GMSGLVL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002751 case ETHTOOL_GLINK:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002752 case ETHTOOL_GCOALESCE:
2753 case ETHTOOL_GRINGPARAM:
2754 case ETHTOOL_GPAUSEPARAM:
2755 case ETHTOOL_GRXCSUM:
2756 case ETHTOOL_GTXCSUM:
2757 case ETHTOOL_GSG:
Michał Mirosławf80400a2012-01-22 00:20:40 +00002758 case ETHTOOL_GSSET_INFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002759 case ETHTOOL_GSTRINGS:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002760 case ETHTOOL_GSTATS:
Andrew Lunnf3a40942015-12-30 16:28:25 +01002761 case ETHTOOL_GPHYSTATS:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002762 case ETHTOOL_GTSO:
2763 case ETHTOOL_GPERMADDR:
Maciej Żenczykowski474ff262018-09-22 01:34:01 -07002764 case ETHTOOL_GUFO:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002765 case ETHTOOL_GGSO:
stephen hemminger1cab8192010-02-11 13:48:29 +00002766 case ETHTOOL_GGRO:
Jeff Garzik339bf022007-08-15 16:01:32 -07002767 case ETHTOOL_GFLAGS:
2768 case ETHTOOL_GPFLAGS:
Santwona Behera0853ad62008-07-02 03:47:41 -07002769 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002770 case ETHTOOL_GRXRINGS:
2771 case ETHTOOL_GRXCLSRLCNT:
2772 case ETHTOOL_GRXCLSRULE:
2773 case ETHTOOL_GRXCLSRLALL:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002774 case ETHTOOL_GRXFHINDIR:
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302775 case ETHTOOL_GRSSH:
Michał Mirosław5455c692011-02-15 16:59:17 +00002776 case ETHTOOL_GFEATURES:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002777 case ETHTOOL_GCHANNELS:
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002778 case ETHTOOL_GET_TS_INFO:
Ben Hutchings2da45db2012-06-12 13:05:41 +00002779 case ETHTOOL_GEEE:
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302780 case ETHTOOL_GTUNABLE:
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002781 case ETHTOOL_PHY_GTUNABLE:
Miroslav Lichvar8006f6b2016-11-24 10:55:06 +01002782 case ETHTOOL_GLINKSETTINGS:
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07002783 case ETHTOOL_GFECPARAM:
Stephen Hemminger75f31232006-09-28 15:13:37 -07002784 break;
2785 default:
Eric W. Biederman5e1fccc2012-11-16 03:03:04 +00002786 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Stephen Hemminger75f31232006-09-28 15:13:37 -07002787 return -EPERM;
2788 }
2789
Heiner Kallweitf32a2132021-08-01 12:36:48 +02002790 if (dev->dev.parent)
2791 pm_runtime_get_sync(dev->dev.parent);
2792
2793 if (!netif_device_present(dev)) {
2794 rc = -ENODEV;
2795 goto out;
2796 }
2797
chavey97f8aef2010-04-07 21:54:42 -07002798 if (dev->ethtool_ops->begin) {
2799 rc = dev->ethtool_ops->begin(dev);
Heiner Kallweitf32a2132021-08-01 12:36:48 +02002800 if (rc < 0)
2801 goto out;
chavey97f8aef2010-04-07 21:54:42 -07002802 }
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07002803 old_features = dev->features;
2804
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 switch (ethcmd) {
2806 case ETHTOOL_GSET:
2807 rc = ethtool_get_settings(dev, useraddr);
2808 break;
2809 case ETHTOOL_SSET:
2810 rc = ethtool_set_settings(dev, useraddr);
2811 break;
2812 case ETHTOOL_GDRVINFO:
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002813 rc = ethtool_get_drvinfo(dev, devlink_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 break;
2815 case ETHTOOL_GREGS:
2816 rc = ethtool_get_regs(dev, useraddr);
2817 break;
2818 case ETHTOOL_GWOL:
2819 rc = ethtool_get_wol(dev, useraddr);
2820 break;
2821 case ETHTOOL_SWOL:
2822 rc = ethtool_set_wol(dev, useraddr);
2823 break;
2824 case ETHTOOL_GMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002825 rc = ethtool_get_value(dev, useraddr, ethcmd,
2826 dev->ethtool_ops->get_msglevel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 break;
2828 case ETHTOOL_SMSGLVL:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002829 rc = ethtool_set_value_void(dev, useraddr,
2830 dev->ethtool_ops->set_msglevel);
Michal Kubecek0bda7af2020-01-26 23:11:10 +01002831 if (!rc)
2832 ethtool_notify(dev, ETHTOOL_MSG_DEBUG_NTF, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 break;
Yuval Mintz80f12ec2012-06-06 17:13:06 +00002834 case ETHTOOL_GEEE:
2835 rc = ethtool_get_eee(dev, useraddr);
2836 break;
2837 case ETHTOOL_SEEE:
2838 rc = ethtool_set_eee(dev, useraddr);
2839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 case ETHTOOL_NWAY_RST:
2841 rc = ethtool_nway_reset(dev);
2842 break;
2843 case ETHTOOL_GLINK:
Ben Hutchingse596e6e2010-12-09 12:08:35 +00002844 rc = ethtool_get_link(dev, useraddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 break;
2846 case ETHTOOL_GEEPROM:
2847 rc = ethtool_get_eeprom(dev, useraddr);
2848 break;
2849 case ETHTOOL_SEEPROM:
2850 rc = ethtool_set_eeprom(dev, useraddr);
2851 break;
2852 case ETHTOOL_GCOALESCE:
2853 rc = ethtool_get_coalesce(dev, useraddr);
2854 break;
2855 case ETHTOOL_SCOALESCE:
2856 rc = ethtool_set_coalesce(dev, useraddr);
2857 break;
2858 case ETHTOOL_GRINGPARAM:
2859 rc = ethtool_get_ringparam(dev, useraddr);
2860 break;
2861 case ETHTOOL_SRINGPARAM:
2862 rc = ethtool_set_ringparam(dev, useraddr);
2863 break;
2864 case ETHTOOL_GPAUSEPARAM:
2865 rc = ethtool_get_pauseparam(dev, useraddr);
2866 break;
2867 case ETHTOOL_SPAUSEPARAM:
2868 rc = ethtool_set_pauseparam(dev, useraddr);
2869 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 case ETHTOOL_TEST:
2871 rc = ethtool_self_test(dev, useraddr);
2872 break;
2873 case ETHTOOL_GSTRINGS:
2874 rc = ethtool_get_strings(dev, useraddr);
2875 break;
2876 case ETHTOOL_PHYS_ID:
2877 rc = ethtool_phys_id(dev, useraddr);
2878 break;
2879 case ETHTOOL_GSTATS:
2880 rc = ethtool_get_stats(dev, useraddr);
2881 break;
Jon Wetzela6f9a702005-08-20 17:15:54 -07002882 case ETHTOOL_GPERMADDR:
2883 rc = ethtool_get_perm_addr(dev, useraddr);
2884 break;
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002885 case ETHTOOL_GFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002886 rc = ethtool_get_value(dev, useraddr, ethcmd,
Michał Mirosławbc5787c62011-11-15 15:29:55 +00002887 __ethtool_get_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002888 break;
2889 case ETHTOOL_SFLAGS:
Michał Mirosławda8ac86c2011-02-15 16:59:18 +00002890 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
Jeff Garzik3ae7c0b2007-08-15 16:00:51 -07002891 break;
Jeff Garzik339bf022007-08-15 16:01:32 -07002892 case ETHTOOL_GPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002893 rc = ethtool_get_value(dev, useraddr, ethcmd,
2894 dev->ethtool_ops->get_priv_flags);
Michal Kubecek111dcba2020-03-12 21:08:18 +01002895 if (!rc)
2896 ethtool_notify(dev, ETHTOOL_MSG_PRIVFLAGS_NTF, NULL);
Jeff Garzik339bf022007-08-15 16:01:32 -07002897 break;
2898 case ETHTOOL_SPFLAGS:
Jeff Garzik13c99b22007-08-15 16:01:56 -07002899 rc = ethtool_set_value(dev, useraddr,
2900 dev->ethtool_ops->set_priv_flags);
Jeff Garzik339bf022007-08-15 16:01:32 -07002901 break;
Santwona Behera0853ad62008-07-02 03:47:41 -07002902 case ETHTOOL_GRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002903 case ETHTOOL_GRXRINGS:
2904 case ETHTOOL_GRXCLSRLCNT:
2905 case ETHTOOL_GRXCLSRULE:
2906 case ETHTOOL_GRXCLSRLALL:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002907 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002908 break;
2909 case ETHTOOL_SRXFH:
Santwona Behera59089d82009-02-20 00:58:13 -08002910 case ETHTOOL_SRXCLSRLDEL:
2911 case ETHTOOL_SRXCLSRLINS:
Ben Hutchingsbf988432010-06-28 08:45:58 +00002912 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
Santwona Behera0853ad62008-07-02 03:47:41 -07002913 break;
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002914 case ETHTOOL_FLASHDEV:
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07002915 rc = ethtool_flash_device(dev, devlink_state);
Ajit Khaparde05c6a8d2009-09-02 17:02:55 +00002916 break;
Ben Hutchingsd73d3a82009-10-05 10:59:58 +00002917 case ETHTOOL_RESET:
2918 rc = ethtool_reset(dev, useraddr);
2919 break;
Jeff Garzik723b2f52010-03-03 22:51:50 +00002920 case ETHTOOL_GSSET_INFO:
2921 rc = ethtool_get_sset_info(dev, useraddr);
2922 break;
Ben Hutchingsa5b6ee22010-06-30 05:05:23 +00002923 case ETHTOOL_GRXFHINDIR:
2924 rc = ethtool_get_rxfh_indir(dev, useraddr);
2925 break;
2926 case ETHTOOL_SRXFHINDIR:
2927 rc = ethtool_set_rxfh_indir(dev, useraddr);
2928 break;
Venkata Duvvuru3de0b592014-04-21 15:37:59 +05302929 case ETHTOOL_GRSSH:
2930 rc = ethtool_get_rxfh(dev, useraddr);
2931 break;
2932 case ETHTOOL_SRSSH:
2933 rc = ethtool_set_rxfh(dev, useraddr);
2934 break;
Michał Mirosław5455c692011-02-15 16:59:17 +00002935 case ETHTOOL_GFEATURES:
2936 rc = ethtool_get_features(dev, useraddr);
2937 break;
2938 case ETHTOOL_SFEATURES:
2939 rc = ethtool_set_features(dev, useraddr);
2940 break;
Michał Mirosław0a417702011-02-15 16:59:17 +00002941 case ETHTOOL_GTXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002942 case ETHTOOL_GRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002943 case ETHTOOL_GSG:
2944 case ETHTOOL_GTSO:
Michał Mirosław0a417702011-02-15 16:59:17 +00002945 case ETHTOOL_GGSO:
2946 case ETHTOOL_GGRO:
2947 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2948 break;
2949 case ETHTOOL_STXCSUM:
Michał Mirosławe83d3602011-02-15 16:59:18 +00002950 case ETHTOOL_SRXCSUM:
Michał Mirosław0a417702011-02-15 16:59:17 +00002951 case ETHTOOL_SSG:
2952 case ETHTOOL_STSO:
Michał Mirosław0a417702011-02-15 16:59:17 +00002953 case ETHTOOL_SGSO:
2954 case ETHTOOL_SGRO:
2955 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2956 break;
amit salecha8b5933c2011-04-07 01:58:42 +00002957 case ETHTOOL_GCHANNELS:
2958 rc = ethtool_get_channels(dev, useraddr);
2959 break;
2960 case ETHTOOL_SCHANNELS:
2961 rc = ethtool_set_channels(dev, useraddr);
2962 break;
Anirban Chakraborty29dd54b2011-05-12 12:48:32 +00002963 case ETHTOOL_SET_DUMP:
2964 rc = ethtool_set_dump(dev, useraddr);
2965 break;
2966 case ETHTOOL_GET_DUMP_FLAG:
2967 rc = ethtool_get_dump_flag(dev, useraddr);
2968 break;
2969 case ETHTOOL_GET_DUMP_DATA:
2970 rc = ethtool_get_dump_data(dev, useraddr);
2971 break;
Richard Cochranc8f3a8c2012-04-03 22:59:17 +00002972 case ETHTOOL_GET_TS_INFO:
2973 rc = ethtool_get_ts_info(dev, useraddr);
2974 break;
Stuart Hodgson41c3cb62012-04-19 09:44:42 +01002975 case ETHTOOL_GMODULEINFO:
2976 rc = ethtool_get_module_info(dev, useraddr);
2977 break;
2978 case ETHTOOL_GMODULEEEPROM:
2979 rc = ethtool_get_module_eeprom(dev, useraddr);
2980 break;
Govindarajulu Varadarajanf0db9b02014-09-03 03:17:20 +05302981 case ETHTOOL_GTUNABLE:
2982 rc = ethtool_get_tunable(dev, useraddr);
2983 break;
2984 case ETHTOOL_STUNABLE:
2985 rc = ethtool_set_tunable(dev, useraddr);
2986 break;
Andrew Lunnf3a40942015-12-30 16:28:25 +01002987 case ETHTOOL_GPHYSTATS:
2988 rc = ethtool_get_phy_stats(dev, useraddr);
2989 break;
Kan Liangac2c7ad2016-02-19 09:24:01 -05002990 case ETHTOOL_PERQUEUE:
Wenwen Wang58f5bbe2018-10-08 10:49:35 -05002991 rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
Kan Liangac2c7ad2016-02-19 09:24:01 -05002992 break;
David Decotigny3f1ac7a2016-02-24 10:57:59 -08002993 case ETHTOOL_GLINKSETTINGS:
2994 rc = ethtool_get_link_ksettings(dev, useraddr);
2995 break;
2996 case ETHTOOL_SLINKSETTINGS:
2997 rc = ethtool_set_link_ksettings(dev, useraddr);
2998 break;
Raju Lakkaraju968ad9d2016-11-17 13:07:21 +01002999 case ETHTOOL_PHY_GTUNABLE:
3000 rc = get_phy_tunable(dev, useraddr);
3001 break;
3002 case ETHTOOL_PHY_STUNABLE:
3003 rc = set_phy_tunable(dev, useraddr);
3004 break;
Vidya Sagar Ravipati1a5f3da2017-07-27 16:47:26 -07003005 case ETHTOOL_GFECPARAM:
3006 rc = ethtool_get_fecparam(dev, useraddr);
3007 break;
3008 case ETHTOOL_SFECPARAM:
3009 rc = ethtool_set_fecparam(dev, useraddr);
3010 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 default:
Matthew Wilcox61a44b92007-07-31 14:00:02 -07003012 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003014
Stephen Hemmingere71a4782007-04-10 20:10:33 -07003015 if (dev->ethtool_ops->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 dev->ethtool_ops->complete(dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07003017
3018 if (old_features != dev->features)
3019 netdev_features_change(dev);
Heiner Kallweitf32a2132021-08-01 12:36:48 +02003020out:
3021 if (dev->dev.parent)
3022 pm_runtime_put(dev->dev.parent);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07003023
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003026
Jakub Kicinskif49deaa2021-10-30 10:18:48 -07003027int dev_ethtool(struct net *net, struct ifreq *ifr, void __user *useraddr)
3028{
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07003029 struct ethtool_devlink_compat *state;
3030 u32 ethcmd;
Jakub Kicinskif49deaa2021-10-30 10:18:48 -07003031 int rc;
3032
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07003033 if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
3034 return -EFAULT;
Jakub Kicinskif49deaa2021-10-30 10:18:48 -07003035
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07003036 state = kzalloc(sizeof(*state), GFP_KERNEL);
3037 if (!state)
3038 return -ENOMEM;
3039
3040 switch (ethcmd) {
3041 case ETHTOOL_FLASHDEV:
3042 if (copy_from_user(&state->efl, useraddr, sizeof(state->efl))) {
3043 rc = -EFAULT;
3044 goto exit_free;
3045 }
3046 state->efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
3047 break;
3048 }
3049
3050 rtnl_lock();
3051 rc = __dev_ethtool(net, ifr, useraddr, ethcmd, state);
3052 rtnl_unlock();
3053 if (rc)
3054 goto exit_free;
3055
3056 switch (ethcmd) {
Jakub Kicinski1af0a092021-10-30 10:18:51 -07003057 case ETHTOOL_FLASHDEV:
3058 if (state->devlink)
3059 rc = devlink_compat_flash_update(state->devlink,
3060 state->efl.data);
3061 break;
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07003062 case ETHTOOL_GDRVINFO:
Jakub Kicinski1af0a092021-10-30 10:18:51 -07003063 if (state->devlink)
3064 devlink_compat_running_version(state->devlink,
3065 state->info.fw_version,
3066 sizeof(state->info.fw_version));
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07003067 if (copy_to_user(useraddr, &state->info, sizeof(state->info))) {
3068 rc = -EFAULT;
3069 goto exit_free;
3070 }
3071 break;
3072 }
3073
3074exit_free:
Jakub Kicinski1af0a092021-10-30 10:18:51 -07003075 if (state->devlink)
3076 devlink_put(state->devlink);
Jakub Kicinski095cfcf2021-10-30 10:18:49 -07003077 kfree(state);
Jakub Kicinskif49deaa2021-10-30 10:18:48 -07003078 return rc;
3079}
3080
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003081struct ethtool_rx_flow_key {
3082 struct flow_dissector_key_basic basic;
3083 union {
3084 struct flow_dissector_key_ipv4_addrs ipv4;
3085 struct flow_dissector_key_ipv6_addrs ipv6;
3086 };
3087 struct flow_dissector_key_ports tp;
3088 struct flow_dissector_key_ip ip;
3089 struct flow_dissector_key_vlan vlan;
3090 struct flow_dissector_key_eth_addrs eth_addrs;
3091} __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */
3092
3093struct ethtool_rx_flow_match {
3094 struct flow_dissector dissector;
3095 struct ethtool_rx_flow_key key;
3096 struct ethtool_rx_flow_key mask;
3097};
3098
3099struct ethtool_rx_flow_rule *
3100ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input)
3101{
3102 const struct ethtool_rx_flow_spec *fs = input->fs;
3103 static struct in6_addr zero_addr = {};
3104 struct ethtool_rx_flow_match *match;
3105 struct ethtool_rx_flow_rule *flow;
3106 struct flow_action_entry *act;
3107
3108 flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) +
3109 sizeof(struct ethtool_rx_flow_match), GFP_KERNEL);
3110 if (!flow)
3111 return ERR_PTR(-ENOMEM);
3112
3113 /* ethtool_rx supports only one single action per rule. */
3114 flow->rule = flow_rule_alloc(1);
3115 if (!flow->rule) {
3116 kfree(flow);
3117 return ERR_PTR(-ENOMEM);
3118 }
3119
3120 match = (struct ethtool_rx_flow_match *)flow->priv;
3121 flow->rule->match.dissector = &match->dissector;
3122 flow->rule->match.mask = &match->mask;
3123 flow->rule->match.key = &match->key;
3124
3125 match->mask.basic.n_proto = htons(0xffff);
3126
3127 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
Maxime Chevallier5b9469a2019-06-27 10:52:26 +02003128 case ETHER_FLOW: {
3129 const struct ethhdr *ether_spec, *ether_m_spec;
3130
3131 ether_spec = &fs->h_u.ether_spec;
3132 ether_m_spec = &fs->m_u.ether_spec;
3133
3134 if (!is_zero_ether_addr(ether_m_spec->h_source)) {
3135 ether_addr_copy(match->key.eth_addrs.src,
3136 ether_spec->h_source);
3137 ether_addr_copy(match->mask.eth_addrs.src,
3138 ether_m_spec->h_source);
3139 }
3140 if (!is_zero_ether_addr(ether_m_spec->h_dest)) {
3141 ether_addr_copy(match->key.eth_addrs.dst,
3142 ether_spec->h_dest);
3143 ether_addr_copy(match->mask.eth_addrs.dst,
3144 ether_m_spec->h_dest);
3145 }
3146 if (ether_m_spec->h_proto) {
3147 match->key.basic.n_proto = ether_spec->h_proto;
3148 match->mask.basic.n_proto = ether_m_spec->h_proto;
3149 }
3150 }
3151 break;
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003152 case TCP_V4_FLOW:
3153 case UDP_V4_FLOW: {
3154 const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec;
3155
3156 match->key.basic.n_proto = htons(ETH_P_IP);
3157
3158 v4_spec = &fs->h_u.tcp_ip4_spec;
3159 v4_m_spec = &fs->m_u.tcp_ip4_spec;
3160
3161 if (v4_m_spec->ip4src) {
3162 match->key.ipv4.src = v4_spec->ip4src;
3163 match->mask.ipv4.src = v4_m_spec->ip4src;
3164 }
3165 if (v4_m_spec->ip4dst) {
3166 match->key.ipv4.dst = v4_spec->ip4dst;
3167 match->mask.ipv4.dst = v4_m_spec->ip4dst;
3168 }
3169 if (v4_m_spec->ip4src ||
3170 v4_m_spec->ip4dst) {
3171 match->dissector.used_keys |=
3172 BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS);
3173 match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] =
3174 offsetof(struct ethtool_rx_flow_key, ipv4);
3175 }
3176 if (v4_m_spec->psrc) {
3177 match->key.tp.src = v4_spec->psrc;
3178 match->mask.tp.src = v4_m_spec->psrc;
3179 }
3180 if (v4_m_spec->pdst) {
3181 match->key.tp.dst = v4_spec->pdst;
3182 match->mask.tp.dst = v4_m_spec->pdst;
3183 }
3184 if (v4_m_spec->psrc ||
3185 v4_m_spec->pdst) {
3186 match->dissector.used_keys |=
3187 BIT(FLOW_DISSECTOR_KEY_PORTS);
3188 match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
3189 offsetof(struct ethtool_rx_flow_key, tp);
3190 }
3191 if (v4_m_spec->tos) {
3192 match->key.ip.tos = v4_spec->tos;
3193 match->mask.ip.tos = v4_m_spec->tos;
3194 match->dissector.used_keys |=
3195 BIT(FLOW_DISSECTOR_KEY_IP);
3196 match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
3197 offsetof(struct ethtool_rx_flow_key, ip);
3198 }
3199 }
3200 break;
3201 case TCP_V6_FLOW:
3202 case UDP_V6_FLOW: {
3203 const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec;
3204
3205 match->key.basic.n_proto = htons(ETH_P_IPV6);
3206
3207 v6_spec = &fs->h_u.tcp_ip6_spec;
3208 v6_m_spec = &fs->m_u.tcp_ip6_spec;
3209 if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
3210 memcpy(&match->key.ipv6.src, v6_spec->ip6src,
3211 sizeof(match->key.ipv6.src));
3212 memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src,
3213 sizeof(match->mask.ipv6.src));
3214 }
3215 if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
3216 memcpy(&match->key.ipv6.dst, v6_spec->ip6dst,
3217 sizeof(match->key.ipv6.dst));
3218 memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst,
3219 sizeof(match->mask.ipv6.dst));
3220 }
3221 if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) ||
Gaurav Singh21a739c2020-06-21 11:30:17 -04003222 memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003223 match->dissector.used_keys |=
3224 BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS);
3225 match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] =
3226 offsetof(struct ethtool_rx_flow_key, ipv6);
3227 }
3228 if (v6_m_spec->psrc) {
3229 match->key.tp.src = v6_spec->psrc;
3230 match->mask.tp.src = v6_m_spec->psrc;
3231 }
3232 if (v6_m_spec->pdst) {
3233 match->key.tp.dst = v6_spec->pdst;
3234 match->mask.tp.dst = v6_m_spec->pdst;
3235 }
3236 if (v6_m_spec->psrc ||
3237 v6_m_spec->pdst) {
3238 match->dissector.used_keys |=
3239 BIT(FLOW_DISSECTOR_KEY_PORTS);
3240 match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
3241 offsetof(struct ethtool_rx_flow_key, tp);
3242 }
3243 if (v6_m_spec->tclass) {
3244 match->key.ip.tos = v6_spec->tclass;
3245 match->mask.ip.tos = v6_m_spec->tclass;
3246 match->dissector.used_keys |=
3247 BIT(FLOW_DISSECTOR_KEY_IP);
3248 match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
3249 offsetof(struct ethtool_rx_flow_key, ip);
3250 }
3251 }
3252 break;
3253 default:
3254 ethtool_rx_flow_rule_destroy(flow);
3255 return ERR_PTR(-EINVAL);
3256 }
3257
3258 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
3259 case TCP_V4_FLOW:
3260 case TCP_V6_FLOW:
3261 match->key.basic.ip_proto = IPPROTO_TCP;
Vishal Kulkarnid0a84e12020-08-19 00:25:03 +05303262 match->mask.basic.ip_proto = 0xff;
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003263 break;
3264 case UDP_V4_FLOW:
3265 case UDP_V6_FLOW:
3266 match->key.basic.ip_proto = IPPROTO_UDP;
Vishal Kulkarnid0a84e12020-08-19 00:25:03 +05303267 match->mask.basic.ip_proto = 0xff;
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003268 break;
3269 }
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003270
3271 match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC);
3272 match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] =
3273 offsetof(struct ethtool_rx_flow_key, basic);
3274
3275 if (fs->flow_type & FLOW_EXT) {
3276 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
3277 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
3278
Maxime Chevallierb73484b2019-05-30 16:08:40 +02003279 if (ext_m_spec->vlan_etype) {
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003280 match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype;
3281 match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype;
Maxime Chevallierb73484b2019-05-30 16:08:40 +02003282 }
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003283
Maxime Chevallierb73484b2019-05-30 16:08:40 +02003284 if (ext_m_spec->vlan_tci) {
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003285 match->key.vlan.vlan_id =
3286 ntohs(ext_h_spec->vlan_tci) & 0x0fff;
3287 match->mask.vlan.vlan_id =
3288 ntohs(ext_m_spec->vlan_tci) & 0x0fff;
3289
Maxime Chevallierf0d2ca12019-06-12 17:18:38 +02003290 match->key.vlan.vlan_dei =
3291 !!(ext_h_spec->vlan_tci & htons(0x1000));
3292 match->mask.vlan.vlan_dei =
3293 !!(ext_m_spec->vlan_tci & htons(0x1000));
3294
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003295 match->key.vlan.vlan_priority =
3296 (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13;
3297 match->mask.vlan.vlan_priority =
3298 (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13;
Maxime Chevallierb73484b2019-05-30 16:08:40 +02003299 }
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003300
Maxime Chevallierb73484b2019-05-30 16:08:40 +02003301 if (ext_m_spec->vlan_etype ||
3302 ext_m_spec->vlan_tci) {
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003303 match->dissector.used_keys |=
3304 BIT(FLOW_DISSECTOR_KEY_VLAN);
3305 match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] =
3306 offsetof(struct ethtool_rx_flow_key, vlan);
3307 }
3308 }
3309 if (fs->flow_type & FLOW_MAC_EXT) {
3310 const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
3311 const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
3312
Nathan Chancellor8b34ec62019-02-07 21:46:53 -07003313 memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest,
3314 ETH_ALEN);
3315 memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest,
3316 ETH_ALEN);
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003317
Nathan Chancellor8b34ec62019-02-07 21:46:53 -07003318 match->dissector.used_keys |=
3319 BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS);
3320 match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] =
3321 offsetof(struct ethtool_rx_flow_key, eth_addrs);
Pablo Neira Ayusoeca42052019-02-02 12:50:51 +01003322 }
3323
3324 act = &flow->rule->action.entries[0];
3325 switch (fs->ring_cookie) {
3326 case RX_CLS_FLOW_DISC:
3327 act->id = FLOW_ACTION_DROP;
3328 break;
3329 case RX_CLS_FLOW_WAKE:
3330 act->id = FLOW_ACTION_WAKE;
3331 break;
3332 default:
3333 act->id = FLOW_ACTION_QUEUE;
3334 if (fs->flow_type & FLOW_RSS)
3335 act->queue.ctx = input->rss_ctx;
3336
3337 act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie);
3338 act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie);
3339 break;
3340 }
3341
3342 return flow;
3343}
3344EXPORT_SYMBOL(ethtool_rx_flow_rule_create);
3345
3346void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow)
3347{
3348 kfree(flow->rule);
3349 kfree(flow);
3350}
3351EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy);