Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0-or-later
2 : : /*
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
7 : : * the information ethtool needs.
8 : : */
9 : :
10 : : #include <linux/module.h>
11 : : #include <linux/types.h>
12 : : #include <linux/capability.h>
13 : : #include <linux/errno.h>
14 : : #include <linux/ethtool.h>
15 : : #include <linux/netdevice.h>
16 : : #include <linux/net_tstamp.h>
17 : : #include <linux/phy.h>
18 : : #include <linux/bitops.h>
19 : : #include <linux/uaccess.h>
20 : : #include <linux/vermagic.h>
21 : : #include <linux/vmalloc.h>
22 : : #include <linux/sfp.h>
23 : : #include <linux/slab.h>
24 : : #include <linux/rtnetlink.h>
25 : : #include <linux/sched/signal.h>
26 : : #include <linux/net.h>
27 : : #include <net/devlink.h>
28 : : #include <net/xdp_sock.h>
29 : : #include <net/flow_offload.h>
30 : : #include <linux/ethtool_netlink.h>
31 : :
32 : : #include "common.h"
33 : :
34 : : /*
35 : : * Some useful ethtool_ops methods that're device independent.
36 : : * If we find that all drivers want to do the same thing here,
37 : : * we can turn these into dev_() function calls.
38 : : */
39 : :
40 : 0 : u32 ethtool_op_get_link(struct net_device *dev)
41 : : {
42 : 0 : return netif_carrier_ok(dev) ? 1 : 0;
43 : : }
44 : : EXPORT_SYMBOL(ethtool_op_get_link);
45 : :
46 : 0 : int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
47 : : {
48 : 0 : info->so_timestamping =
49 : : SOF_TIMESTAMPING_TX_SOFTWARE |
50 : : SOF_TIMESTAMPING_RX_SOFTWARE |
51 : : SOF_TIMESTAMPING_SOFTWARE;
52 : 0 : info->phc_index = -1;
53 : 0 : return 0;
54 : : }
55 : : EXPORT_SYMBOL(ethtool_op_get_ts_info);
56 : :
57 : : /* Handlers for each ethtool command */
58 : :
59 : : #define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)
60 : :
61 : 0 : static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
62 : : {
63 : 0 : struct ethtool_gfeatures cmd = {
64 : : .cmd = ETHTOOL_GFEATURES,
65 : : .size = ETHTOOL_DEV_FEATURE_WORDS,
66 : : };
67 : 0 : struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
68 : 0 : u32 __user *sizeaddr;
69 : 0 : u32 copy_size;
70 : 0 : int i;
71 : :
72 : : /* in case feature bits run out again */
73 : 0 : BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
74 : :
75 [ # # ]: 0 : for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
76 : 0 : features[i].available = (u32)(dev->hw_features >> (32 * i));
77 : 0 : features[i].requested = (u32)(dev->wanted_features >> (32 * i));
78 : 0 : features[i].active = (u32)(dev->features >> (32 * i));
79 : 0 : features[i].never_changed =
80 : 0 : (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
81 : : }
82 : :
83 : 0 : sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
84 [ # # ]: 0 : if (get_user(copy_size, sizeaddr))
85 : : return -EFAULT;
86 : :
87 : 0 : if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
88 : : copy_size = ETHTOOL_DEV_FEATURE_WORDS;
89 : :
90 [ # # ]: 0 : if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
91 : : return -EFAULT;
92 : 0 : useraddr += sizeof(cmd);
93 [ # # # # ]: 0 : if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
94 : 0 : return -EFAULT;
95 : :
96 : : return 0;
97 : : }
98 : :
99 : 26 : static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
100 : : {
101 : 26 : struct ethtool_sfeatures cmd;
102 : 26 : struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
103 : 26 : netdev_features_t wanted = 0, valid = 0;
104 : 26 : int i, ret = 0;
105 : :
106 [ + - ]: 26 : if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
107 : : return -EFAULT;
108 : 26 : useraddr += sizeof(cmd);
109 : :
110 [ + - ]: 26 : if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
111 : : return -EINVAL;
112 : :
113 [ + - ]: 26 : if (copy_from_user(features, useraddr, sizeof(features)))
114 : : return -EFAULT;
115 : :
116 [ + + ]: 78 : for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
117 : 52 : valid |= (netdev_features_t)features[i].valid << (32 * i);
118 : 52 : wanted |= (netdev_features_t)features[i].requested << (32 * i);
119 : : }
120 : :
121 [ + - ]: 26 : if (valid & ~NETIF_F_ETHTOOL_BITS)
122 : : return -EINVAL;
123 : :
124 [ - + ]: 26 : if (valid & ~dev->hw_features) {
125 : 0 : valid &= dev->hw_features;
126 : 0 : ret |= ETHTOOL_F_UNSUPPORTED;
127 : : }
128 : :
129 : 26 : dev->wanted_features &= ~valid;
130 : 26 : dev->wanted_features |= wanted & valid;
131 : 26 : __netdev_update_features(dev);
132 : :
133 [ - + ]: 26 : if ((dev->wanted_features ^ dev->features) & valid)
134 : 0 : ret |= ETHTOOL_F_WISH;
135 : :
136 : : return ret;
137 : : }
138 : :
139 : 52 : static int __ethtool_get_sset_count(struct net_device *dev, int sset)
140 : : {
141 : 52 : const struct ethtool_ops *ops = dev->ethtool_ops;
142 : :
143 [ - + ]: 52 : if (sset == ETH_SS_FEATURES)
144 : : return ARRAY_SIZE(netdev_features_strings);
145 : :
146 [ # # ]: 0 : if (sset == ETH_SS_RSS_HASH_FUNCS)
147 : : return ARRAY_SIZE(rss_hash_func_strings);
148 : :
149 [ # # ]: 0 : if (sset == ETH_SS_TUNABLES)
150 : : return ARRAY_SIZE(tunable_strings);
151 : :
152 [ # # ]: 0 : if (sset == ETH_SS_PHY_TUNABLES)
153 : : return ARRAY_SIZE(phy_tunable_strings);
154 : :
155 [ # # # # ]: 0 : if (sset == ETH_SS_PHY_STATS && dev->phydev &&
156 [ # # ]: 0 : !ops->get_ethtool_phy_stats)
157 : 0 : return phy_ethtool_get_sset_count(dev->phydev);
158 : :
159 [ # # ]: 0 : if (sset == ETH_SS_LINK_MODES)
160 : : return __ETHTOOL_LINK_MODE_MASK_NBITS;
161 : :
162 [ # # # # ]: 0 : if (ops->get_sset_count && ops->get_strings)
163 : 0 : return ops->get_sset_count(dev, sset);
164 : : else
165 : : return -EOPNOTSUPP;
166 : : }
167 : :
168 : 26 : static void __ethtool_get_strings(struct net_device *dev,
169 : : u32 stringset, u8 *data)
170 : : {
171 : 26 : const struct ethtool_ops *ops = dev->ethtool_ops;
172 : :
173 [ + - ]: 26 : if (stringset == ETH_SS_FEATURES)
174 : 26 : memcpy(data, netdev_features_strings,
175 : : sizeof(netdev_features_strings));
176 [ # # ]: 0 : else if (stringset == ETH_SS_RSS_HASH_FUNCS)
177 : 0 : memcpy(data, rss_hash_func_strings,
178 : : sizeof(rss_hash_func_strings));
179 [ # # ]: 0 : else if (stringset == ETH_SS_TUNABLES)
180 : 0 : memcpy(data, tunable_strings, sizeof(tunable_strings));
181 [ # # ]: 0 : else if (stringset == ETH_SS_PHY_TUNABLES)
182 : 0 : memcpy(data, phy_tunable_strings, sizeof(phy_tunable_strings));
183 [ # # # # ]: 0 : else if (stringset == ETH_SS_PHY_STATS && dev->phydev &&
184 [ # # ]: 0 : !ops->get_ethtool_phy_stats)
185 : 0 : phy_ethtool_get_strings(dev->phydev, data);
186 [ # # ]: 0 : else if (stringset == ETH_SS_LINK_MODES)
187 : 0 : memcpy(data, link_mode_names,
188 : : __ETHTOOL_LINK_MODE_MASK_NBITS * ETH_GSTRING_LEN);
189 : : else
190 : : /* ops->get_strings is valid because checked earlier */
191 : 0 : ops->get_strings(dev, stringset, data);
192 : 26 : }
193 : :
194 : 0 : static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
195 : : {
196 : : /* feature masks of legacy discrete ethtool ops */
197 : :
198 [ # # # # : 0 : switch (eth_cmd) {
# # # ]
199 : : case ETHTOOL_GTXCSUM:
200 : : case ETHTOOL_STXCSUM:
201 : : return NETIF_F_CSUM_MASK | NETIF_F_SCTP_CRC;
202 : 0 : case ETHTOOL_GRXCSUM:
203 : : case ETHTOOL_SRXCSUM:
204 : 0 : return NETIF_F_RXCSUM;
205 : 0 : case ETHTOOL_GSG:
206 : : case ETHTOOL_SSG:
207 : 0 : return NETIF_F_SG;
208 : 0 : case ETHTOOL_GTSO:
209 : : case ETHTOOL_STSO:
210 : 0 : return NETIF_F_ALL_TSO;
211 : 0 : case ETHTOOL_GGSO:
212 : : case ETHTOOL_SGSO:
213 : 0 : return NETIF_F_GSO;
214 : 0 : case ETHTOOL_GGRO:
215 : : case ETHTOOL_SGRO:
216 : 0 : return NETIF_F_GRO;
217 : 0 : default:
218 : 0 : BUG();
219 : : }
220 : : }
221 : :
222 : : static int ethtool_get_one_feature(struct net_device *dev,
223 : : char __user *useraddr, u32 ethcmd)
224 : : {
225 : : netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
226 : : struct ethtool_value edata = {
227 : : .cmd = ethcmd,
228 : : .data = !!(dev->features & mask),
229 : : };
230 : :
231 : : if (copy_to_user(useraddr, &edata, sizeof(edata)))
232 : : return -EFAULT;
233 : : return 0;
234 : : }
235 : :
236 : 0 : static int ethtool_set_one_feature(struct net_device *dev,
237 : : void __user *useraddr, u32 ethcmd)
238 : : {
239 : 0 : struct ethtool_value edata;
240 : 0 : netdev_features_t mask;
241 : :
242 [ # # ]: 0 : if (copy_from_user(&edata, useraddr, sizeof(edata)))
243 : : return -EFAULT;
244 : :
245 : 0 : mask = ethtool_get_feature_mask(ethcmd);
246 : 0 : mask &= dev->hw_features;
247 [ # # ]: 0 : if (!mask)
248 : : return -EOPNOTSUPP;
249 : :
250 [ # # ]: 0 : if (edata.data)
251 : 0 : dev->wanted_features |= mask;
252 : : else
253 : 0 : dev->wanted_features &= ~mask;
254 : :
255 : 0 : __netdev_update_features(dev);
256 : :
257 : 0 : return 0;
258 : : }
259 : :
260 : : #define ETH_ALL_FLAGS (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
261 : : ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
262 : : #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_CTAG_RX | \
263 : : NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_NTUPLE | \
264 : : NETIF_F_RXHASH)
265 : :
266 : 0 : static u32 __ethtool_get_flags(struct net_device *dev)
267 : : {
268 : 0 : u32 flags = 0;
269 : :
270 [ # # ]: 0 : if (dev->features & NETIF_F_LRO)
271 : 0 : flags |= ETH_FLAG_LRO;
272 [ # # ]: 0 : if (dev->features & NETIF_F_HW_VLAN_CTAG_RX)
273 : 0 : flags |= ETH_FLAG_RXVLAN;
274 [ # # ]: 0 : if (dev->features & NETIF_F_HW_VLAN_CTAG_TX)
275 : 0 : flags |= ETH_FLAG_TXVLAN;
276 [ # # ]: 0 : if (dev->features & NETIF_F_NTUPLE)
277 : 0 : flags |= ETH_FLAG_NTUPLE;
278 [ # # ]: 0 : if (dev->features & NETIF_F_RXHASH)
279 : 0 : flags |= ETH_FLAG_RXHASH;
280 : :
281 : 0 : return flags;
282 : : }
283 : :
284 : 0 : static int __ethtool_set_flags(struct net_device *dev, u32 data)
285 : : {
286 : 0 : netdev_features_t features = 0, changed;
287 : :
288 [ # # ]: 0 : if (data & ~ETH_ALL_FLAGS)
289 : : return -EINVAL;
290 : :
291 [ # # ]: 0 : if (data & ETH_FLAG_LRO)
292 : 0 : features |= NETIF_F_LRO;
293 [ # # ]: 0 : if (data & ETH_FLAG_RXVLAN)
294 : 0 : features |= NETIF_F_HW_VLAN_CTAG_RX;
295 [ # # ]: 0 : if (data & ETH_FLAG_TXVLAN)
296 : 0 : features |= NETIF_F_HW_VLAN_CTAG_TX;
297 [ # # ]: 0 : if (data & ETH_FLAG_NTUPLE)
298 : 0 : features |= NETIF_F_NTUPLE;
299 [ # # ]: 0 : if (data & ETH_FLAG_RXHASH)
300 : 0 : features |= NETIF_F_RXHASH;
301 : :
302 : : /* allow changing only bits set in hw_features */
303 : 0 : changed = (features ^ dev->features) & ETH_ALL_FEATURES;
304 [ # # ]: 0 : if (changed & ~dev->hw_features)
305 [ # # ]: 0 : return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
306 : :
307 : 0 : dev->wanted_features =
308 : 0 : (dev->wanted_features & ~changed) | (features & changed);
309 : :
310 : 0 : __netdev_update_features(dev);
311 : :
312 : 0 : return 0;
313 : : }
314 : :
315 : : /* Given two link masks, AND them together and save the result in dst. */
316 : 0 : void ethtool_intersect_link_masks(struct ethtool_link_ksettings *dst,
317 : : struct ethtool_link_ksettings *src)
318 : : {
319 : 0 : unsigned int size = BITS_TO_LONGS(__ETHTOOL_LINK_MODE_MASK_NBITS);
320 : 0 : unsigned int idx = 0;
321 : :
322 [ # # ]: 0 : for (; idx < size; idx++) {
323 : 0 : dst->link_modes.supported[idx] &=
324 : 0 : src->link_modes.supported[idx];
325 : 0 : dst->link_modes.advertising[idx] &=
326 : 0 : src->link_modes.advertising[idx];
327 : : }
328 : 0 : }
329 : : EXPORT_SYMBOL(ethtool_intersect_link_masks);
330 : :
331 : 0 : void ethtool_convert_legacy_u32_to_link_mode(unsigned long *dst,
332 : : u32 legacy_u32)
333 : : {
334 : 0 : bitmap_zero(dst, __ETHTOOL_LINK_MODE_MASK_NBITS);
335 : 0 : dst[0] = legacy_u32;
336 : 0 : }
337 : : EXPORT_SYMBOL(ethtool_convert_legacy_u32_to_link_mode);
338 : :
339 : : /* return false if src had higher bits set. lower bits always updated. */
340 : 0 : bool ethtool_convert_link_mode_to_legacy_u32(u32 *legacy_u32,
341 : : const unsigned long *src)
342 : : {
343 : 0 : bool retval = true;
344 : :
345 : : /* TODO: following test will soon always be true */
346 : 0 : if (__ETHTOOL_LINK_MODE_MASK_NBITS > 32) {
347 : 0 : __ETHTOOL_DECLARE_LINK_MODE_MASK(ext);
348 : :
349 : 0 : bitmap_zero(ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
350 : 0 : bitmap_fill(ext, 32);
351 : 0 : bitmap_complement(ext, ext, __ETHTOOL_LINK_MODE_MASK_NBITS);
352 [ # # ]: 0 : if (bitmap_intersects(ext, src,
353 : : __ETHTOOL_LINK_MODE_MASK_NBITS)) {
354 : : /* src mask goes beyond bit 31 */
355 : 0 : retval = false;
356 : : }
357 : : }
358 : 0 : *legacy_u32 = src[0];
359 : 0 : return retval;
360 : : }
361 : : EXPORT_SYMBOL(ethtool_convert_link_mode_to_legacy_u32);
362 : :
363 : : /* return false if ksettings link modes had higher bits
364 : : * set. legacy_settings always updated (best effort)
365 : : */
366 : : static bool
367 : 0 : convert_link_ksettings_to_legacy_settings(
368 : : struct ethtool_cmd *legacy_settings,
369 : : const struct ethtool_link_ksettings *link_ksettings)
370 : : {
371 : 0 : bool retval = true;
372 : :
373 : 0 : memset(legacy_settings, 0, sizeof(*legacy_settings));
374 : : /* this also clears the deprecated fields in legacy structure:
375 : : * __u8 transceiver;
376 : : * __u32 maxtxpkt;
377 : : * __u32 maxrxpkt;
378 : : */
379 : :
380 : 0 : retval &= ethtool_convert_link_mode_to_legacy_u32(
381 : 0 : &legacy_settings->supported,
382 : 0 : link_ksettings->link_modes.supported);
383 : 0 : retval &= ethtool_convert_link_mode_to_legacy_u32(
384 : 0 : &legacy_settings->advertising,
385 : 0 : link_ksettings->link_modes.advertising);
386 : 0 : retval &= ethtool_convert_link_mode_to_legacy_u32(
387 : 0 : &legacy_settings->lp_advertising,
388 : 0 : link_ksettings->link_modes.lp_advertising);
389 : 0 : ethtool_cmd_speed_set(legacy_settings, link_ksettings->base.speed);
390 : 0 : legacy_settings->duplex
391 : 0 : = link_ksettings->base.duplex;
392 : 0 : legacy_settings->port
393 : 0 : = link_ksettings->base.port;
394 : 0 : legacy_settings->phy_address
395 : 0 : = link_ksettings->base.phy_address;
396 : 0 : legacy_settings->autoneg
397 : 0 : = link_ksettings->base.autoneg;
398 : 0 : legacy_settings->mdio_support
399 : 0 : = link_ksettings->base.mdio_support;
400 : 0 : legacy_settings->eth_tp_mdix
401 : 0 : = link_ksettings->base.eth_tp_mdix;
402 : 0 : legacy_settings->eth_tp_mdix_ctrl
403 : 0 : = link_ksettings->base.eth_tp_mdix_ctrl;
404 : 0 : legacy_settings->transceiver
405 : 0 : = link_ksettings->base.transceiver;
406 : 0 : return retval;
407 : : }
408 : :
409 : : /* number of 32-bit words to store the user's link mode bitmaps */
410 : : #define __ETHTOOL_LINK_MODE_MASK_NU32 \
411 : : DIV_ROUND_UP(__ETHTOOL_LINK_MODE_MASK_NBITS, 32)
412 : :
413 : : /* layout of the struct passed from/to userland */
414 : : struct ethtool_link_usettings {
415 : : struct ethtool_link_settings base;
416 : : struct {
417 : : __u32 supported[__ETHTOOL_LINK_MODE_MASK_NU32];
418 : : __u32 advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
419 : : __u32 lp_advertising[__ETHTOOL_LINK_MODE_MASK_NU32];
420 : : } link_modes;
421 : : };
422 : :
423 : : /* Internal kernel helper to query a device ethtool_link_settings. */
424 : 0 : int __ethtool_get_link_ksettings(struct net_device *dev,
425 : : struct ethtool_link_ksettings *link_ksettings)
426 : : {
427 [ # # # # ]: 0 : ASSERT_RTNL();
428 : :
429 [ # # ]: 0 : if (!dev->ethtool_ops->get_link_ksettings)
430 : : return -EOPNOTSUPP;
431 : :
432 : 0 : memset(link_ksettings, 0, sizeof(*link_ksettings));
433 : 0 : return dev->ethtool_ops->get_link_ksettings(dev, link_ksettings);
434 : : }
435 : : EXPORT_SYMBOL(__ethtool_get_link_ksettings);
436 : :
437 : : /* convert ethtool_link_usettings in user space to a kernel internal
438 : : * ethtool_link_ksettings. return 0 on success, errno on error.
439 : : */
440 : 0 : static int load_link_ksettings_from_user(struct ethtool_link_ksettings *to,
441 : : const void __user *from)
442 : : {
443 : 0 : struct ethtool_link_usettings link_usettings;
444 : :
445 [ # # ]: 0 : if (copy_from_user(&link_usettings, from, sizeof(link_usettings)))
446 : : return -EFAULT;
447 : :
448 : 0 : memcpy(&to->base, &link_usettings.base, sizeof(to->base));
449 : 0 : bitmap_from_arr32(to->link_modes.supported,
450 : : link_usettings.link_modes.supported,
451 : : __ETHTOOL_LINK_MODE_MASK_NBITS);
452 : 0 : bitmap_from_arr32(to->link_modes.advertising,
453 : : link_usettings.link_modes.advertising,
454 : : __ETHTOOL_LINK_MODE_MASK_NBITS);
455 : 0 : bitmap_from_arr32(to->link_modes.lp_advertising,
456 : : link_usettings.link_modes.lp_advertising,
457 : : __ETHTOOL_LINK_MODE_MASK_NBITS);
458 : :
459 : 0 : return 0;
460 : : }
461 : :
462 : : /* convert a kernel internal ethtool_link_ksettings to
463 : : * ethtool_link_usettings in user space. return 0 on success, errno on
464 : : * error.
465 : : */
466 : : static int
467 : 0 : store_link_ksettings_for_user(void __user *to,
468 : : const struct ethtool_link_ksettings *from)
469 : : {
470 : 0 : struct ethtool_link_usettings link_usettings;
471 : :
472 : 0 : memcpy(&link_usettings.base, &from->base, sizeof(link_usettings));
473 : 0 : bitmap_to_arr32(link_usettings.link_modes.supported,
474 : 0 : from->link_modes.supported,
475 : : __ETHTOOL_LINK_MODE_MASK_NBITS);
476 : 0 : bitmap_to_arr32(link_usettings.link_modes.advertising,
477 : 0 : from->link_modes.advertising,
478 : : __ETHTOOL_LINK_MODE_MASK_NBITS);
479 : 0 : bitmap_to_arr32(link_usettings.link_modes.lp_advertising,
480 : 0 : from->link_modes.lp_advertising,
481 : : __ETHTOOL_LINK_MODE_MASK_NBITS);
482 : :
483 [ # # ]: 0 : if (copy_to_user(to, &link_usettings, sizeof(link_usettings)))
484 : 0 : return -EFAULT;
485 : :
486 : : return 0;
487 : : }
488 : :
489 : : /* Query device for its ethtool_link_settings. */
490 : 0 : static int ethtool_get_link_ksettings(struct net_device *dev,
491 : : void __user *useraddr)
492 : : {
493 : 0 : int err = 0;
494 : 0 : struct ethtool_link_ksettings link_ksettings;
495 : :
496 [ # # # # ]: 0 : ASSERT_RTNL();
497 [ # # ]: 0 : if (!dev->ethtool_ops->get_link_ksettings)
498 : : return -EOPNOTSUPP;
499 : :
500 : : /* handle bitmap nbits handshake */
501 [ # # ]: 0 : if (copy_from_user(&link_ksettings.base, useraddr,
502 : : sizeof(link_ksettings.base)))
503 : : return -EFAULT;
504 : :
505 : 0 : if (__ETHTOOL_LINK_MODE_MASK_NU32
506 [ # # ]: 0 : != link_ksettings.base.link_mode_masks_nwords) {
507 : : /* wrong link mode nbits requested */
508 : 0 : memset(&link_ksettings, 0, sizeof(link_ksettings));
509 : 0 : link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
510 : : /* send back number of words required as negative val */
511 : 0 : compiletime_assert(__ETHTOOL_LINK_MODE_MASK_NU32 <= S8_MAX,
512 : : "need too many bits for link modes!");
513 : 0 : link_ksettings.base.link_mode_masks_nwords
514 : 0 : = -((s8)__ETHTOOL_LINK_MODE_MASK_NU32);
515 : :
516 : : /* copy the base fields back to user, not the link
517 : : * mode bitmaps
518 : : */
519 [ # # ]: 0 : if (copy_to_user(useraddr, &link_ksettings.base,
520 : : sizeof(link_ksettings.base)))
521 : : return -EFAULT;
522 : :
523 : 0 : return 0;
524 : : }
525 : :
526 : : /* handshake successful: user/kernel agree on
527 : : * link_mode_masks_nwords
528 : : */
529 : :
530 : 0 : memset(&link_ksettings, 0, sizeof(link_ksettings));
531 : 0 : err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
532 [ # # ]: 0 : if (err < 0)
533 : : return err;
534 : :
535 : : /* make sure we tell the right values to user */
536 : 0 : link_ksettings.base.cmd = ETHTOOL_GLINKSETTINGS;
537 : 0 : link_ksettings.base.link_mode_masks_nwords
538 : 0 : = __ETHTOOL_LINK_MODE_MASK_NU32;
539 : :
540 : 0 : return store_link_ksettings_for_user(useraddr, &link_ksettings);
541 : : }
542 : :
543 : : /* Update device ethtool_link_settings. */
544 : 0 : static int ethtool_set_link_ksettings(struct net_device *dev,
545 : : void __user *useraddr)
546 : : {
547 : 0 : int err;
548 : 0 : struct ethtool_link_ksettings link_ksettings;
549 : :
550 [ # # # # ]: 0 : ASSERT_RTNL();
551 : :
552 [ # # ]: 0 : if (!dev->ethtool_ops->set_link_ksettings)
553 : : return -EOPNOTSUPP;
554 : :
555 : : /* make sure nbits field has expected value */
556 [ # # ]: 0 : if (copy_from_user(&link_ksettings.base, useraddr,
557 : : sizeof(link_ksettings.base)))
558 : : return -EFAULT;
559 : :
560 : 0 : if (__ETHTOOL_LINK_MODE_MASK_NU32
561 [ # # ]: 0 : != link_ksettings.base.link_mode_masks_nwords)
562 : : return -EINVAL;
563 : :
564 : : /* copy the whole structure, now that we know it has expected
565 : : * format
566 : : */
567 : 0 : err = load_link_ksettings_from_user(&link_ksettings, useraddr);
568 [ # # ]: 0 : if (err)
569 : : return err;
570 : :
571 : : /* re-check nwords field, just in case */
572 : 0 : if (__ETHTOOL_LINK_MODE_MASK_NU32
573 [ # # ]: 0 : != link_ksettings.base.link_mode_masks_nwords)
574 : : return -EINVAL;
575 : :
576 : 0 : err = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
577 [ # # ]: 0 : if (err >= 0) {
578 : 0 : ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL);
579 : 0 : ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL);
580 : : }
581 : : return err;
582 : : }
583 : :
584 : : /* Query device for its ethtool_cmd settings.
585 : : *
586 : : * Backward compatibility note: for compatibility with legacy ethtool, this is
587 : : * now implemented via get_link_ksettings. When driver reports higher link mode
588 : : * bits, a kernel warning is logged once (with name of 1st driver/device) to
589 : : * recommend user to upgrade ethtool, but the command is successful (only the
590 : : * lower link mode bits reported back to user). Deprecated fields from
591 : : * ethtool_cmd (transceiver/maxrxpkt/maxtxpkt) are always set to zero.
592 : : */
593 : 0 : static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
594 : : {
595 : 0 : struct ethtool_link_ksettings link_ksettings;
596 : 0 : struct ethtool_cmd cmd;
597 : 0 : int err;
598 : :
599 [ # # # # ]: 0 : ASSERT_RTNL();
600 [ # # ]: 0 : if (!dev->ethtool_ops->get_link_ksettings)
601 : : return -EOPNOTSUPP;
602 : :
603 : 0 : memset(&link_ksettings, 0, sizeof(link_ksettings));
604 : 0 : err = dev->ethtool_ops->get_link_ksettings(dev, &link_ksettings);
605 [ # # ]: 0 : if (err < 0)
606 : : return err;
607 : 0 : convert_link_ksettings_to_legacy_settings(&cmd, &link_ksettings);
608 : :
609 : : /* send a sensible cmd tag back to user */
610 : 0 : cmd.cmd = ETHTOOL_GSET;
611 : :
612 [ # # ]: 0 : if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
613 : 0 : return -EFAULT;
614 : :
615 : : return 0;
616 : : }
617 : :
618 : : /* Update device link settings with given ethtool_cmd.
619 : : *
620 : : * Backward compatibility note: for compatibility with legacy ethtool, this is
621 : : * now always implemented via set_link_settings. When user's request updates
622 : : * deprecated ethtool_cmd fields (transceiver/maxrxpkt/maxtxpkt), a kernel
623 : : * warning is logged once (with name of 1st driver/device) to recommend user to
624 : : * upgrade ethtool, and the request is rejected.
625 : : */
626 : 0 : static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
627 : : {
628 : 0 : struct ethtool_link_ksettings link_ksettings;
629 : 0 : struct ethtool_cmd cmd;
630 : 0 : int ret;
631 : :
632 [ # # # # ]: 0 : ASSERT_RTNL();
633 : :
634 [ # # ]: 0 : if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
635 : : return -EFAULT;
636 [ # # ]: 0 : if (!dev->ethtool_ops->set_link_ksettings)
637 : : return -EOPNOTSUPP;
638 : :
639 [ # # ]: 0 : if (!convert_legacy_settings_to_link_ksettings(&link_ksettings, &cmd))
640 : : return -EINVAL;
641 : 0 : link_ksettings.base.link_mode_masks_nwords =
642 : : __ETHTOOL_LINK_MODE_MASK_NU32;
643 : 0 : ret = dev->ethtool_ops->set_link_ksettings(dev, &link_ksettings);
644 [ # # ]: 0 : if (ret >= 0) {
645 : 0 : ethtool_notify(dev, ETHTOOL_MSG_LINKINFO_NTF, NULL);
646 : 0 : ethtool_notify(dev, ETHTOOL_MSG_LINKMODES_NTF, NULL);
647 : : }
648 : : return ret;
649 : : }
650 : :
651 : 26 : static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
652 : : void __user *useraddr)
653 : : {
654 : 26 : struct ethtool_drvinfo info;
655 : 26 : const struct ethtool_ops *ops = dev->ethtool_ops;
656 : :
657 : 26 : memset(&info, 0, sizeof(info));
658 : 26 : info.cmd = ETHTOOL_GDRVINFO;
659 : 26 : strlcpy(info.version, UTS_RELEASE, sizeof(info.version));
660 [ - + ]: 26 : if (ops->get_drvinfo) {
661 : 0 : ops->get_drvinfo(dev, &info);
662 [ - + - - ]: 26 : } else if (dev->dev.parent && dev->dev.parent->driver) {
663 [ # # ]: 0 : strlcpy(info.bus_info, dev_name(dev->dev.parent),
664 : : sizeof(info.bus_info));
665 : 0 : strlcpy(info.driver, dev->dev.parent->driver->name,
666 : : sizeof(info.driver));
667 : : } else {
668 : : return -EOPNOTSUPP;
669 : : }
670 : :
671 : : /*
672 : : * this method of obtaining string set info is deprecated;
673 : : * Use ETHTOOL_GSSET_INFO instead.
674 : : */
675 [ # # ]: 0 : if (ops->get_sset_count) {
676 : 0 : int rc;
677 : :
678 : 0 : rc = ops->get_sset_count(dev, ETH_SS_TEST);
679 [ # # ]: 0 : if (rc >= 0)
680 : 0 : info.testinfo_len = rc;
681 : 0 : rc = ops->get_sset_count(dev, ETH_SS_STATS);
682 [ # # ]: 0 : if (rc >= 0)
683 : 0 : info.n_stats = rc;
684 : 0 : rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
685 [ # # ]: 0 : if (rc >= 0)
686 : 0 : info.n_priv_flags = rc;
687 : : }
688 [ # # ]: 0 : if (ops->get_regs_len) {
689 : 0 : int ret = ops->get_regs_len(dev);
690 : :
691 [ # # ]: 0 : if (ret > 0)
692 : 0 : info.regdump_len = ret;
693 : : }
694 : :
695 [ # # ]: 0 : if (ops->get_eeprom_len)
696 : 0 : info.eedump_len = ops->get_eeprom_len(dev);
697 : :
698 : 0 : if (!info.fw_version[0])
699 : : devlink_compat_running_version(dev, info.fw_version,
700 : : sizeof(info.fw_version));
701 : :
702 [ # # ]: 0 : if (copy_to_user(useraddr, &info, sizeof(info)))
703 : 0 : return -EFAULT;
704 : : return 0;
705 : : }
706 : :
707 : 26 : static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
708 : : void __user *useraddr)
709 : : {
710 : 26 : struct ethtool_sset_info info;
711 : 26 : u64 sset_mask;
712 : 26 : int i, idx = 0, n_bits = 0, ret, rc;
713 : 26 : u32 *info_buf = NULL;
714 : :
715 [ + - ]: 26 : if (copy_from_user(&info, useraddr, sizeof(info)))
716 : : return -EFAULT;
717 : :
718 : : /* store copy of mask, because we zero struct later on */
719 : 26 : sset_mask = info.sset_mask;
720 [ + - ]: 26 : if (!sset_mask)
721 : : return 0;
722 : :
723 : : /* calculate size of return buffer */
724 [ - + ]: 26 : n_bits = hweight64(sset_mask);
725 : :
726 : 26 : memset(&info, 0, sizeof(info));
727 : 26 : info.cmd = ETHTOOL_GSSET_INFO;
728 : :
729 : 26 : info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER);
730 [ + - ]: 26 : if (!info_buf)
731 : : return -ENOMEM;
732 : :
733 : : /*
734 : : * fill return buffer based on input bitmask and successful
735 : : * get_sset_count return
736 : : */
737 [ + + ]: 1690 : for (i = 0; i < 64; i++) {
738 [ + + ]: 1664 : if (!(sset_mask & (1ULL << i)))
739 : 1638 : continue;
740 : :
741 : 26 : rc = __ethtool_get_sset_count(dev, i);
742 [ + - ]: 26 : if (rc >= 0) {
743 : 26 : info.sset_mask |= (1ULL << i);
744 : 26 : info_buf[idx++] = rc;
745 : : }
746 : : }
747 : :
748 : 26 : ret = -EFAULT;
749 [ - + ]: 26 : if (copy_to_user(useraddr, &info, sizeof(info)))
750 : 0 : goto out;
751 : :
752 : 26 : useraddr += offsetof(struct ethtool_sset_info, data);
753 [ - + - + ]: 52 : if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
754 : 0 : goto out;
755 : :
756 : : ret = 0;
757 : :
758 : 26 : out:
759 : 26 : kfree(info_buf);
760 : 26 : return ret;
761 : : }
762 : :
763 : 0 : static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
764 : : u32 cmd, void __user *useraddr)
765 : : {
766 : 0 : struct ethtool_rxnfc info;
767 : 0 : size_t info_size = sizeof(info);
768 : 0 : int rc;
769 : :
770 [ # # ]: 0 : if (!dev->ethtool_ops->set_rxnfc)
771 : : return -EOPNOTSUPP;
772 : :
773 : : /* struct ethtool_rxnfc was originally defined for
774 : : * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
775 : : * members. User-space might still be using that
776 : : * definition. */
777 [ # # ]: 0 : if (cmd == ETHTOOL_SRXFH)
778 : 0 : info_size = (offsetof(struct ethtool_rxnfc, data) +
779 : : sizeof(info.data));
780 : :
781 [ # # # # ]: 0 : if (copy_from_user(&info, useraddr, info_size))
782 : : return -EFAULT;
783 : :
784 : 0 : rc = dev->ethtool_ops->set_rxnfc(dev, &info);
785 [ # # ]: 0 : if (rc)
786 : : return rc;
787 : :
788 [ # # # # ]: 0 : if (cmd == ETHTOOL_SRXCLSRLINS &&
789 : : copy_to_user(useraddr, &info, info_size))
790 : 0 : return -EFAULT;
791 : :
792 : : return 0;
793 : : }
794 : :
795 : 0 : static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
796 : : u32 cmd, void __user *useraddr)
797 : : {
798 : 0 : struct ethtool_rxnfc info;
799 : 0 : size_t info_size = sizeof(info);
800 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
801 : 0 : int ret;
802 : 0 : void *rule_buf = NULL;
803 : :
804 [ # # ]: 0 : if (!ops->get_rxnfc)
805 : : return -EOPNOTSUPP;
806 : :
807 : : /* struct ethtool_rxnfc was originally defined for
808 : : * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
809 : : * members. User-space might still be using that
810 : : * definition. */
811 [ # # ]: 0 : if (cmd == ETHTOOL_GRXFH)
812 : 0 : info_size = (offsetof(struct ethtool_rxnfc, data) +
813 : : sizeof(info.data));
814 : :
815 [ # # # # ]: 0 : if (copy_from_user(&info, useraddr, info_size))
816 : : return -EFAULT;
817 : :
818 : : /* If FLOW_RSS was requested then user-space must be using the
819 : : * new definition, as FLOW_RSS is newer.
820 : : */
821 [ # # # # ]: 0 : if (cmd == ETHTOOL_GRXFH && info.flow_type & FLOW_RSS) {
822 : 0 : info_size = sizeof(info);
823 [ # # ]: 0 : if (copy_from_user(&info, useraddr, info_size))
824 : : return -EFAULT;
825 : : /* Since malicious users may modify the original data,
826 : : * we need to check whether FLOW_RSS is still requested.
827 : : */
828 [ # # ]: 0 : if (!(info.flow_type & FLOW_RSS))
829 : : return -EINVAL;
830 : : }
831 : :
832 [ # # ]: 0 : if (info.cmd != cmd)
833 : : return -EINVAL;
834 : :
835 [ # # ]: 0 : if (info.cmd == ETHTOOL_GRXCLSRLALL) {
836 [ # # ]: 0 : if (info.rule_cnt > 0) {
837 [ # # ]: 0 : if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
838 : 0 : rule_buf = kcalloc(info.rule_cnt, sizeof(u32),
839 : : GFP_USER);
840 [ # # ]: 0 : if (!rule_buf)
841 : 0 : return -ENOMEM;
842 : : }
843 : : }
844 : :
845 : 0 : ret = ops->get_rxnfc(dev, &info, rule_buf);
846 [ # # ]: 0 : if (ret < 0)
847 : 0 : goto err_out;
848 : :
849 : 0 : ret = -EFAULT;
850 [ # # # # ]: 0 : if (copy_to_user(useraddr, &info, info_size))
851 : 0 : goto err_out;
852 : :
853 [ # # ]: 0 : if (rule_buf) {
854 : 0 : useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
855 [ # # ]: 0 : if (copy_to_user(useraddr, rule_buf,
856 [ # # ]: 0 : info.rule_cnt * sizeof(u32)))
857 : 0 : goto err_out;
858 : : }
859 : : ret = 0;
860 : :
861 : 0 : err_out:
862 : 0 : kfree(rule_buf);
863 : :
864 : 0 : return ret;
865 : : }
866 : :
867 : : static int ethtool_copy_validate_indir(u32 *indir, void __user *useraddr,
868 : : struct ethtool_rxnfc *rx_rings,
869 : : u32 size)
870 : : {
871 : : int i;
872 : :
873 : : if (copy_from_user(indir, useraddr, size * sizeof(indir[0])))
874 : : return -EFAULT;
875 : :
876 : : /* Validate ring indices */
877 : : for (i = 0; i < size; i++)
878 : : if (indir[i] >= rx_rings->data)
879 : : return -EINVAL;
880 : :
881 : : return 0;
882 : : }
883 : :
884 : : u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
885 : :
886 : 0 : void netdev_rss_key_fill(void *buffer, size_t len)
887 : : {
888 [ # # ]: 0 : BUG_ON(len > sizeof(netdev_rss_key));
889 [ # # # # : 0 : net_get_random_once(netdev_rss_key, sizeof(netdev_rss_key));
# # ]
890 : 0 : memcpy(buffer, netdev_rss_key, len);
891 : 0 : }
892 : : EXPORT_SYMBOL(netdev_rss_key_fill);
893 : :
894 : 0 : static int ethtool_get_max_rxfh_channel(struct net_device *dev, u32 *max)
895 : : {
896 : 0 : u32 dev_size, current_max = 0;
897 : 0 : u32 *indir;
898 : 0 : int ret;
899 : :
900 [ # # ]: 0 : if (!dev->ethtool_ops->get_rxfh_indir_size ||
901 [ # # ]: 0 : !dev->ethtool_ops->get_rxfh)
902 : : return -EOPNOTSUPP;
903 : 0 : dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
904 [ # # ]: 0 : if (dev_size == 0)
905 : : return -EOPNOTSUPP;
906 : :
907 : 0 : indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
908 [ # # ]: 0 : if (!indir)
909 : : return -ENOMEM;
910 : :
911 : 0 : ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
912 [ # # ]: 0 : if (ret)
913 : 0 : goto out;
914 : :
915 [ # # ]: 0 : while (dev_size--)
916 : 0 : current_max = max(current_max, indir[dev_size]);
917 : :
918 : 0 : *max = current_max;
919 : :
920 : 0 : out:
921 : 0 : kfree(indir);
922 : 0 : return ret;
923 : : }
924 : :
925 : 0 : static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
926 : : void __user *useraddr)
927 : : {
928 : 0 : u32 user_size, dev_size;
929 : 0 : u32 *indir;
930 : 0 : int ret;
931 : :
932 [ # # ]: 0 : if (!dev->ethtool_ops->get_rxfh_indir_size ||
933 [ # # ]: 0 : !dev->ethtool_ops->get_rxfh)
934 : : return -EOPNOTSUPP;
935 : 0 : dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
936 [ # # ]: 0 : if (dev_size == 0)
937 : : return -EOPNOTSUPP;
938 : :
939 [ # # ]: 0 : if (copy_from_user(&user_size,
940 : 0 : useraddr + offsetof(struct ethtool_rxfh_indir, size),
941 : : sizeof(user_size)))
942 : : return -EFAULT;
943 : :
944 [ # # ]: 0 : if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
945 : : &dev_size, sizeof(dev_size)))
946 : : return -EFAULT;
947 : :
948 : : /* If the user buffer size is 0, this is just a query for the
949 : : * device table size. Otherwise, if it's smaller than the
950 : : * device table size it's an error.
951 : : */
952 [ # # ]: 0 : if (user_size < dev_size)
953 [ # # ]: 0 : return user_size == 0 ? 0 : -EINVAL;
954 : :
955 : 0 : indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
956 [ # # ]: 0 : if (!indir)
957 : : return -ENOMEM;
958 : :
959 : 0 : ret = dev->ethtool_ops->get_rxfh(dev, indir, NULL, NULL);
960 [ # # ]: 0 : if (ret)
961 : 0 : goto out;
962 : :
963 [ # # # # ]: 0 : if (copy_to_user(useraddr +
964 : : offsetof(struct ethtool_rxfh_indir, ring_index[0]),
965 : : indir, dev_size * sizeof(indir[0])))
966 : 0 : ret = -EFAULT;
967 : :
968 : 0 : out:
969 : 0 : kfree(indir);
970 : 0 : return ret;
971 : : }
972 : :
973 : 0 : static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
974 : : void __user *useraddr)
975 : : {
976 : 0 : struct ethtool_rxnfc rx_rings;
977 : 0 : u32 user_size, dev_size, i;
978 : 0 : u32 *indir;
979 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
980 : 0 : int ret;
981 : 0 : u32 ringidx_offset = offsetof(struct ethtool_rxfh_indir, ring_index[0]);
982 : :
983 [ # # # # ]: 0 : if (!ops->get_rxfh_indir_size || !ops->set_rxfh ||
984 [ # # ]: 0 : !ops->get_rxnfc)
985 : : return -EOPNOTSUPP;
986 : :
987 : 0 : dev_size = ops->get_rxfh_indir_size(dev);
988 [ # # ]: 0 : if (dev_size == 0)
989 : : return -EOPNOTSUPP;
990 : :
991 [ # # ]: 0 : if (copy_from_user(&user_size,
992 : 0 : useraddr + offsetof(struct ethtool_rxfh_indir, size),
993 : : sizeof(user_size)))
994 : : return -EFAULT;
995 : :
996 [ # # # # ]: 0 : if (user_size != 0 && user_size != dev_size)
997 : : return -EINVAL;
998 : :
999 : 0 : indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
1000 [ # # ]: 0 : if (!indir)
1001 : : return -ENOMEM;
1002 : :
1003 : 0 : rx_rings.cmd = ETHTOOL_GRXRINGS;
1004 : 0 : ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1005 [ # # ]: 0 : if (ret)
1006 : 0 : goto out;
1007 : :
1008 [ # # ]: 0 : if (user_size == 0) {
1009 [ # # ]: 0 : for (i = 0; i < dev_size; i++)
1010 : 0 : indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1011 : : } else {
1012 : 0 : ret = ethtool_copy_validate_indir(indir,
1013 : : useraddr + ringidx_offset,
1014 : : &rx_rings,
1015 : : dev_size);
1016 [ # # ]: 0 : if (ret)
1017 : 0 : goto out;
1018 : : }
1019 : :
1020 : 0 : ret = ops->set_rxfh(dev, indir, NULL, ETH_RSS_HASH_NO_CHANGE);
1021 [ # # ]: 0 : if (ret)
1022 : 0 : goto out;
1023 : :
1024 : : /* indicate whether rxfh was set to default */
1025 [ # # ]: 0 : if (user_size == 0)
1026 : 0 : dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1027 : : else
1028 : 0 : dev->priv_flags |= IFF_RXFH_CONFIGURED;
1029 : :
1030 : 0 : out:
1031 : 0 : kfree(indir);
1032 : 0 : return ret;
1033 : : }
1034 : :
1035 : 0 : static noinline_for_stack int ethtool_get_rxfh(struct net_device *dev,
1036 : : void __user *useraddr)
1037 : : {
1038 : 0 : int ret;
1039 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1040 : 0 : u32 user_indir_size, user_key_size;
1041 : 0 : u32 dev_indir_size = 0, dev_key_size = 0;
1042 : 0 : struct ethtool_rxfh rxfh;
1043 : 0 : u32 total_size;
1044 : 0 : u32 indir_bytes;
1045 : 0 : u32 *indir = NULL;
1046 : 0 : u8 dev_hfunc = 0;
1047 : 0 : u8 *hkey = NULL;
1048 : 0 : u8 *rss_config;
1049 : :
1050 [ # # ]: 0 : if (!ops->get_rxfh)
1051 : : return -EOPNOTSUPP;
1052 : :
1053 [ # # ]: 0 : if (ops->get_rxfh_indir_size)
1054 : 0 : dev_indir_size = ops->get_rxfh_indir_size(dev);
1055 [ # # ]: 0 : if (ops->get_rxfh_key_size)
1056 : 0 : dev_key_size = ops->get_rxfh_key_size(dev);
1057 : :
1058 [ # # ]: 0 : if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1059 : : return -EFAULT;
1060 : 0 : user_indir_size = rxfh.indir_size;
1061 : 0 : user_key_size = rxfh.key_size;
1062 : :
1063 : : /* Check that reserved fields are 0 for now */
1064 [ # # # # ]: 0 : if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
1065 : : return -EINVAL;
1066 : : /* Most drivers don't handle rss_context, check it's 0 as well */
1067 [ # # # # ]: 0 : if (rxfh.rss_context && !ops->get_rxfh_context)
1068 : : return -EOPNOTSUPP;
1069 : :
1070 : 0 : rxfh.indir_size = dev_indir_size;
1071 : 0 : rxfh.key_size = dev_key_size;
1072 [ # # ]: 0 : if (copy_to_user(useraddr, &rxfh, sizeof(rxfh)))
1073 : : return -EFAULT;
1074 : :
1075 [ # # ]: 0 : if ((user_indir_size && (user_indir_size != dev_indir_size)) ||
1076 [ # # ]: 0 : (user_key_size && (user_key_size != dev_key_size)))
1077 : : return -EINVAL;
1078 : :
1079 : 0 : indir_bytes = user_indir_size * sizeof(indir[0]);
1080 : 0 : total_size = indir_bytes + user_key_size;
1081 : 0 : rss_config = kzalloc(total_size, GFP_USER);
1082 [ # # ]: 0 : if (!rss_config)
1083 : : return -ENOMEM;
1084 : :
1085 [ # # ]: 0 : if (user_indir_size)
1086 : 0 : indir = (u32 *)rss_config;
1087 : :
1088 [ # # ]: 0 : if (user_key_size)
1089 : 0 : hkey = rss_config + indir_bytes;
1090 : :
1091 [ # # ]: 0 : if (rxfh.rss_context)
1092 : 0 : ret = dev->ethtool_ops->get_rxfh_context(dev, indir, hkey,
1093 : : &dev_hfunc,
1094 : : rxfh.rss_context);
1095 : : else
1096 : 0 : ret = dev->ethtool_ops->get_rxfh(dev, indir, hkey, &dev_hfunc);
1097 [ # # ]: 0 : if (ret)
1098 : 0 : goto out;
1099 : :
1100 [ # # ]: 0 : if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, hfunc),
1101 : : &dev_hfunc, sizeof(rxfh.hfunc))) {
1102 : : ret = -EFAULT;
1103 [ # # # # ]: 0 : } else if (copy_to_user(useraddr +
1104 : : offsetof(struct ethtool_rxfh, rss_config[0]),
1105 : : rss_config, total_size)) {
1106 : 0 : ret = -EFAULT;
1107 : : }
1108 : 0 : out:
1109 : 0 : kfree(rss_config);
1110 : :
1111 : 0 : return ret;
1112 : : }
1113 : :
1114 : 0 : static noinline_for_stack int ethtool_set_rxfh(struct net_device *dev,
1115 : : void __user *useraddr)
1116 : : {
1117 : 0 : int ret;
1118 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1119 : 0 : struct ethtool_rxnfc rx_rings;
1120 : 0 : struct ethtool_rxfh rxfh;
1121 : 0 : u32 dev_indir_size = 0, dev_key_size = 0, i;
1122 : 0 : u32 *indir = NULL, indir_bytes = 0;
1123 : 0 : u8 *hkey = NULL;
1124 : 0 : u8 *rss_config;
1125 : 0 : u32 rss_cfg_offset = offsetof(struct ethtool_rxfh, rss_config[0]);
1126 : 0 : bool delete = false;
1127 : :
1128 [ # # # # ]: 0 : if (!ops->get_rxnfc || !ops->set_rxfh)
1129 : : return -EOPNOTSUPP;
1130 : :
1131 [ # # ]: 0 : if (ops->get_rxfh_indir_size)
1132 : 0 : dev_indir_size = ops->get_rxfh_indir_size(dev);
1133 [ # # ]: 0 : if (ops->get_rxfh_key_size)
1134 : 0 : dev_key_size = ops->get_rxfh_key_size(dev);
1135 : :
1136 [ # # ]: 0 : if (copy_from_user(&rxfh, useraddr, sizeof(rxfh)))
1137 : : return -EFAULT;
1138 : :
1139 : : /* Check that reserved fields are 0 for now */
1140 [ # # # # ]: 0 : if (rxfh.rsvd8[0] || rxfh.rsvd8[1] || rxfh.rsvd8[2] || rxfh.rsvd32)
1141 : : return -EINVAL;
1142 : : /* Most drivers don't handle rss_context, check it's 0 as well */
1143 [ # # # # ]: 0 : if (rxfh.rss_context && !ops->set_rxfh_context)
1144 : : return -EOPNOTSUPP;
1145 : :
1146 : : /* If either indir, hash key or function is valid, proceed further.
1147 : : * Must request at least one change: indir size, hash key or function.
1148 : : */
1149 [ # # ]: 0 : if ((rxfh.indir_size &&
1150 [ # # ]: 0 : rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE &&
1151 : 0 : rxfh.indir_size != dev_indir_size) ||
1152 [ # # # # : 0 : (rxfh.key_size && (rxfh.key_size != dev_key_size)) ||
# # ]
1153 [ # # ]: 0 : (rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE &&
1154 [ # # ]: 0 : rxfh.key_size == 0 && rxfh.hfunc == ETH_RSS_HASH_NO_CHANGE))
1155 : : return -EINVAL;
1156 : :
1157 [ # # ]: 0 : if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1158 : 0 : indir_bytes = dev_indir_size * sizeof(indir[0]);
1159 : :
1160 : 0 : rss_config = kzalloc(indir_bytes + rxfh.key_size, GFP_USER);
1161 [ # # ]: 0 : if (!rss_config)
1162 : : return -ENOMEM;
1163 : :
1164 : 0 : rx_rings.cmd = ETHTOOL_GRXRINGS;
1165 : 0 : ret = ops->get_rxnfc(dev, &rx_rings, NULL);
1166 [ # # ]: 0 : if (ret)
1167 : 0 : goto out;
1168 : :
1169 : : /* rxfh.indir_size == 0 means reset the indir table to default (master
1170 : : * context) or delete the context (other RSS contexts).
1171 : : * rxfh.indir_size == ETH_RXFH_INDIR_NO_CHANGE means leave it unchanged.
1172 : : */
1173 [ # # ]: 0 : if (rxfh.indir_size &&
1174 : : rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE) {
1175 : 0 : indir = (u32 *)rss_config;
1176 : 0 : ret = ethtool_copy_validate_indir(indir,
1177 : : useraddr + rss_cfg_offset,
1178 : : &rx_rings,
1179 : : rxfh.indir_size);
1180 [ # # ]: 0 : if (ret)
1181 : 0 : goto out;
1182 [ # # ]: 0 : } else if (rxfh.indir_size == 0) {
1183 [ # # ]: 0 : if (rxfh.rss_context == 0) {
1184 : : indir = (u32 *)rss_config;
1185 [ # # ]: 0 : for (i = 0; i < dev_indir_size; i++)
1186 : 0 : indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
1187 : : } else {
1188 : : delete = true;
1189 : : }
1190 : : }
1191 : :
1192 [ # # ]: 0 : if (rxfh.key_size) {
1193 : 0 : hkey = rss_config + indir_bytes;
1194 [ # # ]: 0 : if (copy_from_user(hkey,
1195 [ # # ]: 0 : useraddr + rss_cfg_offset + indir_bytes,
1196 : : rxfh.key_size)) {
1197 : 0 : ret = -EFAULT;
1198 : 0 : goto out;
1199 : : }
1200 : : }
1201 : :
1202 [ # # ]: 0 : if (rxfh.rss_context)
1203 : 0 : ret = ops->set_rxfh_context(dev, indir, hkey, rxfh.hfunc,
1204 : : &rxfh.rss_context, delete);
1205 : : else
1206 : 0 : ret = ops->set_rxfh(dev, indir, hkey, rxfh.hfunc);
1207 [ # # ]: 0 : if (ret)
1208 : 0 : goto out;
1209 : :
1210 [ # # ]: 0 : if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh, rss_context),
1211 : : &rxfh.rss_context, sizeof(rxfh.rss_context)))
1212 : 0 : ret = -EFAULT;
1213 : :
1214 [ # # ]: 0 : if (!rxfh.rss_context) {
1215 : : /* indicate whether rxfh was set to default */
1216 [ # # ]: 0 : if (rxfh.indir_size == 0)
1217 : 0 : dev->priv_flags &= ~IFF_RXFH_CONFIGURED;
1218 [ # # ]: 0 : else if (rxfh.indir_size != ETH_RXFH_INDIR_NO_CHANGE)
1219 : 0 : dev->priv_flags |= IFF_RXFH_CONFIGURED;
1220 : : }
1221 : :
1222 : 0 : out:
1223 : 0 : kfree(rss_config);
1224 : 0 : return ret;
1225 : : }
1226 : :
1227 : 0 : static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
1228 : : {
1229 : 0 : struct ethtool_regs regs;
1230 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1231 : 0 : void *regbuf;
1232 : 0 : int reglen, ret;
1233 : :
1234 [ # # # # ]: 0 : if (!ops->get_regs || !ops->get_regs_len)
1235 : : return -EOPNOTSUPP;
1236 : :
1237 [ # # ]: 0 : if (copy_from_user(®s, useraddr, sizeof(regs)))
1238 : : return -EFAULT;
1239 : :
1240 : 0 : reglen = ops->get_regs_len(dev);
1241 [ # # ]: 0 : if (reglen <= 0)
1242 : : return reglen;
1243 : :
1244 [ # # ]: 0 : if (regs.len > reglen)
1245 : 0 : regs.len = reglen;
1246 : :
1247 : 0 : regbuf = vzalloc(reglen);
1248 [ # # ]: 0 : if (!regbuf)
1249 : : return -ENOMEM;
1250 : :
1251 [ # # ]: 0 : if (regs.len < reglen)
1252 : 0 : reglen = regs.len;
1253 : :
1254 : 0 : ops->get_regs(dev, ®s, regbuf);
1255 : :
1256 : 0 : ret = -EFAULT;
1257 [ # # ]: 0 : if (copy_to_user(useraddr, ®s, sizeof(regs)))
1258 : 0 : goto out;
1259 : 0 : useraddr += offsetof(struct ethtool_regs, data);
1260 [ # # # # ]: 0 : if (copy_to_user(useraddr, regbuf, reglen))
1261 : 0 : goto out;
1262 : : ret = 0;
1263 : :
1264 : 0 : out:
1265 : 0 : vfree(regbuf);
1266 : 0 : return ret;
1267 : : }
1268 : :
1269 : 0 : static int ethtool_reset(struct net_device *dev, char __user *useraddr)
1270 : : {
1271 : 0 : struct ethtool_value reset;
1272 : 0 : int ret;
1273 : :
1274 [ # # ]: 0 : if (!dev->ethtool_ops->reset)
1275 : : return -EOPNOTSUPP;
1276 : :
1277 [ # # ]: 0 : if (copy_from_user(&reset, useraddr, sizeof(reset)))
1278 : : return -EFAULT;
1279 : :
1280 : 0 : ret = dev->ethtool_ops->reset(dev, &reset.data);
1281 [ # # ]: 0 : if (ret)
1282 : : return ret;
1283 : :
1284 [ # # ]: 0 : if (copy_to_user(useraddr, &reset, sizeof(reset)))
1285 : 0 : return -EFAULT;
1286 : : return 0;
1287 : : }
1288 : :
1289 : 0 : static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
1290 : : {
1291 : 0 : struct ethtool_wolinfo wol;
1292 : :
1293 [ # # ]: 0 : if (!dev->ethtool_ops->get_wol)
1294 : : return -EOPNOTSUPP;
1295 : :
1296 : 0 : memset(&wol, 0, sizeof(struct ethtool_wolinfo));
1297 : 0 : wol.cmd = ETHTOOL_GWOL;
1298 : 0 : dev->ethtool_ops->get_wol(dev, &wol);
1299 : :
1300 [ # # ]: 0 : if (copy_to_user(useraddr, &wol, sizeof(wol)))
1301 : 0 : return -EFAULT;
1302 : : return 0;
1303 : : }
1304 : :
1305 : 0 : static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
1306 : : {
1307 : 0 : struct ethtool_wolinfo wol;
1308 : 0 : int ret;
1309 : :
1310 [ # # ]: 0 : if (!dev->ethtool_ops->set_wol)
1311 : : return -EOPNOTSUPP;
1312 : :
1313 [ # # ]: 0 : if (copy_from_user(&wol, useraddr, sizeof(wol)))
1314 : : return -EFAULT;
1315 : :
1316 : 0 : ret = dev->ethtool_ops->set_wol(dev, &wol);
1317 [ # # ]: 0 : if (ret)
1318 : : return ret;
1319 : :
1320 : 0 : dev->wol_enabled = !!wol.wolopts;
1321 : 0 : ethtool_notify(dev, ETHTOOL_MSG_WOL_NTF, NULL);
1322 : :
1323 : 0 : return 0;
1324 : : }
1325 : :
1326 : 0 : static int ethtool_get_eee(struct net_device *dev, char __user *useraddr)
1327 : : {
1328 : 0 : struct ethtool_eee edata;
1329 : 0 : int rc;
1330 : :
1331 [ # # ]: 0 : if (!dev->ethtool_ops->get_eee)
1332 : : return -EOPNOTSUPP;
1333 : :
1334 : 0 : memset(&edata, 0, sizeof(struct ethtool_eee));
1335 : 0 : edata.cmd = ETHTOOL_GEEE;
1336 : 0 : rc = dev->ethtool_ops->get_eee(dev, &edata);
1337 : :
1338 [ # # ]: 0 : if (rc)
1339 : : return rc;
1340 : :
1341 [ # # ]: 0 : if (copy_to_user(useraddr, &edata, sizeof(edata)))
1342 : 0 : return -EFAULT;
1343 : :
1344 : : return 0;
1345 : : }
1346 : :
1347 : 0 : static int ethtool_set_eee(struct net_device *dev, char __user *useraddr)
1348 : : {
1349 : 0 : struct ethtool_eee edata;
1350 : :
1351 [ # # ]: 0 : if (!dev->ethtool_ops->set_eee)
1352 : : return -EOPNOTSUPP;
1353 : :
1354 [ # # ]: 0 : if (copy_from_user(&edata, useraddr, sizeof(edata)))
1355 : : return -EFAULT;
1356 : :
1357 : 0 : return dev->ethtool_ops->set_eee(dev, &edata);
1358 : : }
1359 : :
1360 : 0 : static int ethtool_nway_reset(struct net_device *dev)
1361 : : {
1362 : 0 : if (!dev->ethtool_ops->nway_reset)
1363 : : return -EOPNOTSUPP;
1364 : :
1365 : 0 : return dev->ethtool_ops->nway_reset(dev);
1366 : : }
1367 : :
1368 : 0 : static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
1369 : : {
1370 : 0 : struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
1371 : 0 : int link = __ethtool_get_link(dev);
1372 : :
1373 [ # # ]: 0 : if (link < 0)
1374 : : return link;
1375 : :
1376 : 0 : edata.data = link;
1377 [ # # ]: 0 : if (copy_to_user(useraddr, &edata, sizeof(edata)))
1378 : 0 : return -EFAULT;
1379 : : return 0;
1380 : : }
1381 : :
1382 : 0 : static int ethtool_get_any_eeprom(struct net_device *dev, void __user *useraddr,
1383 : : int (*getter)(struct net_device *,
1384 : : struct ethtool_eeprom *, u8 *),
1385 : : u32 total_len)
1386 : : {
1387 : 0 : struct ethtool_eeprom eeprom;
1388 : 0 : void __user *userbuf = useraddr + sizeof(eeprom);
1389 : 0 : u32 bytes_remaining;
1390 : 0 : u8 *data;
1391 : 0 : int ret = 0;
1392 : :
1393 [ # # ]: 0 : if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1394 : : return -EFAULT;
1395 : :
1396 : : /* Check for wrap and zero */
1397 [ # # ]: 0 : if (eeprom.offset + eeprom.len <= eeprom.offset)
1398 : : return -EINVAL;
1399 : :
1400 : : /* Check for exceeding total eeprom len */
1401 [ # # ]: 0 : if (eeprom.offset + eeprom.len > total_len)
1402 : : return -EINVAL;
1403 : :
1404 : 0 : data = kmalloc(PAGE_SIZE, GFP_USER);
1405 [ # # ]: 0 : if (!data)
1406 : : return -ENOMEM;
1407 : :
1408 : 0 : bytes_remaining = eeprom.len;
1409 [ # # ]: 0 : while (bytes_remaining > 0) {
1410 : 0 : eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1411 : :
1412 : 0 : ret = getter(dev, &eeprom, data);
1413 [ # # ]: 0 : if (ret)
1414 : : break;
1415 [ # # # # ]: 0 : if (copy_to_user(userbuf, data, eeprom.len)) {
1416 : : ret = -EFAULT;
1417 : : break;
1418 : : }
1419 : 0 : userbuf += eeprom.len;
1420 : 0 : eeprom.offset += eeprom.len;
1421 : 0 : bytes_remaining -= eeprom.len;
1422 : : }
1423 : :
1424 : 0 : eeprom.len = userbuf - (useraddr + sizeof(eeprom));
1425 : 0 : eeprom.offset -= eeprom.len;
1426 [ # # ]: 0 : if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
1427 : 0 : ret = -EFAULT;
1428 : :
1429 : 0 : kfree(data);
1430 : 0 : return ret;
1431 : : }
1432 : :
1433 : 0 : static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
1434 : : {
1435 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1436 : :
1437 [ # # # # : 0 : if (!ops->get_eeprom || !ops->get_eeprom_len ||
# # ]
1438 : 0 : !ops->get_eeprom_len(dev))
1439 : 0 : return -EOPNOTSUPP;
1440 : :
1441 : 0 : return ethtool_get_any_eeprom(dev, useraddr, ops->get_eeprom,
1442 : 0 : ops->get_eeprom_len(dev));
1443 : : }
1444 : :
1445 : 0 : static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
1446 : : {
1447 : 0 : struct ethtool_eeprom eeprom;
1448 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1449 : 0 : void __user *userbuf = useraddr + sizeof(eeprom);
1450 : 0 : u32 bytes_remaining;
1451 : 0 : u8 *data;
1452 : 0 : int ret = 0;
1453 : :
1454 [ # # # # : 0 : if (!ops->set_eeprom || !ops->get_eeprom_len ||
# # ]
1455 : 0 : !ops->get_eeprom_len(dev))
1456 : 0 : return -EOPNOTSUPP;
1457 : :
1458 [ # # ]: 0 : if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
1459 : : return -EFAULT;
1460 : :
1461 : : /* Check for wrap and zero */
1462 [ # # ]: 0 : if (eeprom.offset + eeprom.len <= eeprom.offset)
1463 : : return -EINVAL;
1464 : :
1465 : : /* Check for exceeding total eeprom len */
1466 [ # # ]: 0 : if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
1467 : : return -EINVAL;
1468 : :
1469 : 0 : data = kmalloc(PAGE_SIZE, GFP_USER);
1470 [ # # ]: 0 : if (!data)
1471 : : return -ENOMEM;
1472 : :
1473 : 0 : bytes_remaining = eeprom.len;
1474 [ # # ]: 0 : while (bytes_remaining > 0) {
1475 : 0 : eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
1476 : :
1477 [ # # # # ]: 0 : if (copy_from_user(data, userbuf, eeprom.len)) {
1478 : : ret = -EFAULT;
1479 : : break;
1480 : : }
1481 : 0 : ret = ops->set_eeprom(dev, &eeprom, data);
1482 [ # # ]: 0 : if (ret)
1483 : : break;
1484 : 0 : userbuf += eeprom.len;
1485 : 0 : eeprom.offset += eeprom.len;
1486 : 0 : bytes_remaining -= eeprom.len;
1487 : : }
1488 : :
1489 : 0 : kfree(data);
1490 : 0 : return ret;
1491 : : }
1492 : :
1493 : 0 : static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
1494 : : void __user *useraddr)
1495 : : {
1496 : 0 : struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
1497 : :
1498 [ # # ]: 0 : if (!dev->ethtool_ops->get_coalesce)
1499 : : return -EOPNOTSUPP;
1500 : :
1501 : 0 : dev->ethtool_ops->get_coalesce(dev, &coalesce);
1502 : :
1503 [ # # ]: 0 : if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
1504 : 0 : return -EFAULT;
1505 : : return 0;
1506 : : }
1507 : :
1508 : 0 : static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
1509 : : void __user *useraddr)
1510 : : {
1511 : 0 : struct ethtool_coalesce coalesce;
1512 : :
1513 [ # # ]: 0 : if (!dev->ethtool_ops->set_coalesce)
1514 : : return -EOPNOTSUPP;
1515 : :
1516 [ # # ]: 0 : if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
1517 : : return -EFAULT;
1518 : :
1519 : 0 : return dev->ethtool_ops->set_coalesce(dev, &coalesce);
1520 : : }
1521 : :
1522 : 0 : static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
1523 : : {
1524 : 0 : struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
1525 : :
1526 [ # # ]: 0 : if (!dev->ethtool_ops->get_ringparam)
1527 : : return -EOPNOTSUPP;
1528 : :
1529 : 0 : dev->ethtool_ops->get_ringparam(dev, &ringparam);
1530 : :
1531 [ # # ]: 0 : if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
1532 : 0 : return -EFAULT;
1533 : : return 0;
1534 : : }
1535 : :
1536 : 0 : static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
1537 : : {
1538 : 0 : struct ethtool_ringparam ringparam, max = { .cmd = ETHTOOL_GRINGPARAM };
1539 : :
1540 [ # # # # ]: 0 : if (!dev->ethtool_ops->set_ringparam || !dev->ethtool_ops->get_ringparam)
1541 : : return -EOPNOTSUPP;
1542 : :
1543 [ # # ]: 0 : if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
1544 : : return -EFAULT;
1545 : :
1546 : 0 : dev->ethtool_ops->get_ringparam(dev, &max);
1547 : :
1548 : : /* ensure new ring parameters are within the maximums */
1549 [ # # ]: 0 : if (ringparam.rx_pending > max.rx_max_pending ||
1550 [ # # ]: 0 : ringparam.rx_mini_pending > max.rx_mini_max_pending ||
1551 [ # # ]: 0 : ringparam.rx_jumbo_pending > max.rx_jumbo_max_pending ||
1552 [ # # ]: 0 : ringparam.tx_pending > max.tx_max_pending)
1553 : : return -EINVAL;
1554 : :
1555 : 0 : return dev->ethtool_ops->set_ringparam(dev, &ringparam);
1556 : : }
1557 : :
1558 : 0 : static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
1559 : : void __user *useraddr)
1560 : : {
1561 : 0 : struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
1562 : :
1563 [ # # ]: 0 : if (!dev->ethtool_ops->get_channels)
1564 : : return -EOPNOTSUPP;
1565 : :
1566 : 0 : dev->ethtool_ops->get_channels(dev, &channels);
1567 : :
1568 [ # # ]: 0 : if (copy_to_user(useraddr, &channels, sizeof(channels)))
1569 : 0 : return -EFAULT;
1570 : : return 0;
1571 : : }
1572 : :
1573 : 0 : static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
1574 : : void __user *useraddr)
1575 : : {
1576 : 0 : struct ethtool_channels channels, curr = { .cmd = ETHTOOL_GCHANNELS };
1577 : 0 : u16 from_channel, to_channel;
1578 : 0 : u32 max_rx_in_use = 0;
1579 : 0 : unsigned int i;
1580 : :
1581 [ # # # # ]: 0 : if (!dev->ethtool_ops->set_channels || !dev->ethtool_ops->get_channels)
1582 : : return -EOPNOTSUPP;
1583 : :
1584 [ # # ]: 0 : if (copy_from_user(&channels, useraddr, sizeof(channels)))
1585 : : return -EFAULT;
1586 : :
1587 : 0 : dev->ethtool_ops->get_channels(dev, &curr);
1588 : :
1589 : : /* ensure new counts are within the maximums */
1590 [ # # ]: 0 : if (channels.rx_count > curr.max_rx ||
1591 [ # # ]: 0 : channels.tx_count > curr.max_tx ||
1592 [ # # ]: 0 : channels.combined_count > curr.max_combined ||
1593 [ # # ]: 0 : channels.other_count > curr.max_other)
1594 : : return -EINVAL;
1595 : :
1596 : : /* ensure the new Rx count fits within the configured Rx flow
1597 : : * indirection table settings */
1598 [ # # # # ]: 0 : if (netif_is_rxfh_configured(dev) &&
1599 : 0 : !ethtool_get_max_rxfh_channel(dev, &max_rx_in_use) &&
1600 [ # # ]: 0 : (channels.combined_count + channels.rx_count) <= max_rx_in_use)
1601 : : return -EINVAL;
1602 : :
1603 : : /* Disabling channels, query zero-copy AF_XDP sockets */
1604 : 0 : from_channel = channels.combined_count +
1605 : 0 : min(channels.rx_count, channels.tx_count);
1606 : 0 : to_channel = curr.combined_count + max(curr.rx_count, curr.tx_count);
1607 : 0 : for (i = from_channel; i < to_channel; i++)
1608 : : if (xdp_get_umem_from_qid(dev, i))
1609 : : return -EINVAL;
1610 : :
1611 : 0 : return dev->ethtool_ops->set_channels(dev, &channels);
1612 : : }
1613 : :
1614 : 0 : static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
1615 : : {
1616 : 0 : struct ethtool_pauseparam pauseparam = { .cmd = ETHTOOL_GPAUSEPARAM };
1617 : :
1618 [ # # ]: 0 : if (!dev->ethtool_ops->get_pauseparam)
1619 : : return -EOPNOTSUPP;
1620 : :
1621 : 0 : dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
1622 : :
1623 [ # # ]: 0 : if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
1624 : 0 : return -EFAULT;
1625 : : return 0;
1626 : : }
1627 : :
1628 : 0 : static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
1629 : : {
1630 : 0 : struct ethtool_pauseparam pauseparam;
1631 : :
1632 [ # # ]: 0 : if (!dev->ethtool_ops->set_pauseparam)
1633 : : return -EOPNOTSUPP;
1634 : :
1635 [ # # ]: 0 : if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
1636 : : return -EFAULT;
1637 : :
1638 : 0 : return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
1639 : : }
1640 : :
1641 : 0 : static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
1642 : : {
1643 : 0 : struct ethtool_test test;
1644 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1645 : 0 : u64 *data;
1646 : 0 : int ret, test_len;
1647 : :
1648 [ # # # # ]: 0 : if (!ops->self_test || !ops->get_sset_count)
1649 : : return -EOPNOTSUPP;
1650 : :
1651 : 0 : test_len = ops->get_sset_count(dev, ETH_SS_TEST);
1652 [ # # ]: 0 : if (test_len < 0)
1653 : : return test_len;
1654 [ # # ]: 0 : WARN_ON(test_len == 0);
1655 : :
1656 [ # # ]: 0 : if (copy_from_user(&test, useraddr, sizeof(test)))
1657 : : return -EFAULT;
1658 : :
1659 : 0 : test.len = test_len;
1660 : 0 : data = kmalloc_array(test_len, sizeof(u64), GFP_USER);
1661 [ # # ]: 0 : if (!data)
1662 : : return -ENOMEM;
1663 : :
1664 : 0 : ops->self_test(dev, &test, data);
1665 : :
1666 : 0 : ret = -EFAULT;
1667 [ # # ]: 0 : if (copy_to_user(useraddr, &test, sizeof(test)))
1668 : 0 : goto out;
1669 : 0 : useraddr += sizeof(test);
1670 [ # # # # ]: 0 : if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1671 : 0 : goto out;
1672 : : ret = 0;
1673 : :
1674 : 0 : out:
1675 : 0 : kfree(data);
1676 : 0 : return ret;
1677 : : }
1678 : :
1679 : 26 : static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1680 : : {
1681 : 26 : struct ethtool_gstrings gstrings;
1682 : 26 : u8 *data;
1683 : 26 : int ret;
1684 : :
1685 [ + - ]: 26 : if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1686 : : return -EFAULT;
1687 : :
1688 : 26 : ret = __ethtool_get_sset_count(dev, gstrings.string_set);
1689 [ + - ]: 26 : if (ret < 0)
1690 : : return ret;
1691 [ + - ]: 26 : if (ret > S32_MAX / ETH_GSTRING_LEN)
1692 : : return -ENOMEM;
1693 [ - + ]: 26 : WARN_ON_ONCE(!ret);
1694 : :
1695 : 26 : gstrings.len = ret;
1696 : :
1697 [ + - ]: 26 : if (gstrings.len) {
1698 : 26 : data = vzalloc(array_size(gstrings.len, ETH_GSTRING_LEN));
1699 [ + - ]: 26 : if (!data)
1700 : : return -ENOMEM;
1701 : :
1702 : 26 : __ethtool_get_strings(dev, gstrings.string_set, data);
1703 : : } else {
1704 : : data = NULL;
1705 : : }
1706 : :
1707 : 26 : ret = -EFAULT;
1708 [ - + ]: 26 : if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1709 : 0 : goto out;
1710 : 26 : useraddr += sizeof(gstrings);
1711 [ + - - + ]: 52 : if (gstrings.len &&
1712 [ - + ]: 26 : copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1713 : 0 : goto out;
1714 : : ret = 0;
1715 : :
1716 : 26 : out:
1717 : 26 : vfree(data);
1718 : 26 : return ret;
1719 : : }
1720 : :
1721 : 0 : static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1722 : : {
1723 : 0 : struct ethtool_value id;
1724 : 0 : static bool busy;
1725 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1726 : 0 : int rc;
1727 : :
1728 [ # # ]: 0 : if (!ops->set_phys_id)
1729 : : return -EOPNOTSUPP;
1730 : :
1731 [ # # ]: 0 : if (busy)
1732 : : return -EBUSY;
1733 : :
1734 [ # # ]: 0 : if (copy_from_user(&id, useraddr, sizeof(id)))
1735 : : return -EFAULT;
1736 : :
1737 : 0 : rc = ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
1738 [ # # ]: 0 : if (rc < 0)
1739 : : return rc;
1740 : :
1741 : : /* Drop the RTNL lock while waiting, but prevent reentry or
1742 : : * removal of the device.
1743 : : */
1744 : 0 : busy = true;
1745 : 0 : dev_hold(dev);
1746 : 0 : rtnl_unlock();
1747 : :
1748 [ # # ]: 0 : if (rc == 0) {
1749 : : /* Driver will handle this itself */
1750 : 0 : schedule_timeout_interruptible(
1751 [ # # ]: 0 : id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
1752 : : } else {
1753 : : /* Driver expects to be called at twice the frequency in rc */
1754 : 0 : int n = rc * 2, i, interval = HZ / n;
1755 : :
1756 : : /* Count down seconds */
1757 : 0 : do {
1758 : : /* Count down iterations per second */
1759 : 0 : i = n;
1760 : 0 : do {
1761 : 0 : rtnl_lock();
1762 : 0 : rc = ops->set_phys_id(dev,
1763 : 0 : (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1764 : 0 : rtnl_unlock();
1765 [ # # ]: 0 : if (rc)
1766 : : break;
1767 : 0 : schedule_timeout_interruptible(interval);
1768 [ # # # # ]: 0 : } while (!signal_pending(current) && --i != 0);
1769 : 0 : } while (!signal_pending(current) &&
1770 [ # # # # : 0 : (id.data == 0 || --id.data != 0));
# # ]
1771 : : }
1772 : :
1773 : 0 : rtnl_lock();
1774 : 0 : dev_put(dev);
1775 : 0 : busy = false;
1776 : :
1777 : 0 : (void) ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
1778 : 0 : return rc;
1779 : : }
1780 : :
1781 : 0 : static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1782 : : {
1783 : 0 : struct ethtool_stats stats;
1784 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1785 : 0 : u64 *data;
1786 : 0 : int ret, n_stats;
1787 : :
1788 [ # # # # ]: 0 : if (!ops->get_ethtool_stats || !ops->get_sset_count)
1789 : : return -EOPNOTSUPP;
1790 : :
1791 : 0 : n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
1792 [ # # ]: 0 : if (n_stats < 0)
1793 : : return n_stats;
1794 [ # # ]: 0 : if (n_stats > S32_MAX / sizeof(u64))
1795 : : return -ENOMEM;
1796 [ # # ]: 0 : WARN_ON_ONCE(!n_stats);
1797 [ # # ]: 0 : if (copy_from_user(&stats, useraddr, sizeof(stats)))
1798 : : return -EFAULT;
1799 : :
1800 : 0 : stats.n_stats = n_stats;
1801 : :
1802 [ # # ]: 0 : if (n_stats) {
1803 : 0 : data = vzalloc(array_size(n_stats, sizeof(u64)));
1804 [ # # ]: 0 : if (!data)
1805 : : return -ENOMEM;
1806 : 0 : ops->get_ethtool_stats(dev, &stats, data);
1807 : : } else {
1808 : : data = NULL;
1809 : : }
1810 : :
1811 : 0 : ret = -EFAULT;
1812 [ # # ]: 0 : if (copy_to_user(useraddr, &stats, sizeof(stats)))
1813 : 0 : goto out;
1814 : 0 : useraddr += sizeof(stats);
1815 [ # # # # : 0 : if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
# # ]
1816 : 0 : goto out;
1817 : : ret = 0;
1818 : :
1819 : 0 : out:
1820 : 0 : vfree(data);
1821 : 0 : return ret;
1822 : : }
1823 : :
1824 : 0 : static int ethtool_get_phy_stats(struct net_device *dev, void __user *useraddr)
1825 : : {
1826 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1827 : 0 : struct phy_device *phydev = dev->phydev;
1828 : 0 : struct ethtool_stats stats;
1829 : 0 : u64 *data;
1830 : 0 : int ret, n_stats;
1831 : :
1832 [ # # # # : 0 : if (!phydev && (!ops->get_ethtool_phy_stats || !ops->get_sset_count))
# # ]
1833 : : return -EOPNOTSUPP;
1834 : :
1835 [ # # # # ]: 0 : if (dev->phydev && !ops->get_ethtool_phy_stats)
1836 : 0 : n_stats = phy_ethtool_get_sset_count(dev->phydev);
1837 : : else
1838 : 0 : n_stats = ops->get_sset_count(dev, ETH_SS_PHY_STATS);
1839 [ # # ]: 0 : if (n_stats < 0)
1840 : : return n_stats;
1841 [ # # ]: 0 : if (n_stats > S32_MAX / sizeof(u64))
1842 : : return -ENOMEM;
1843 [ # # ]: 0 : WARN_ON_ONCE(!n_stats);
1844 : :
1845 [ # # ]: 0 : if (copy_from_user(&stats, useraddr, sizeof(stats)))
1846 : : return -EFAULT;
1847 : :
1848 : 0 : stats.n_stats = n_stats;
1849 : :
1850 [ # # ]: 0 : if (n_stats) {
1851 : 0 : data = vzalloc(array_size(n_stats, sizeof(u64)));
1852 [ # # ]: 0 : if (!data)
1853 : : return -ENOMEM;
1854 : :
1855 [ # # # # ]: 0 : if (dev->phydev && !ops->get_ethtool_phy_stats) {
1856 : 0 : ret = phy_ethtool_get_stats(dev->phydev, &stats, data);
1857 [ # # ]: 0 : if (ret < 0)
1858 : 0 : goto out;
1859 : : } else {
1860 : 0 : ops->get_ethtool_phy_stats(dev, &stats, data);
1861 : : }
1862 : : } else {
1863 : : data = NULL;
1864 : : }
1865 : :
1866 : 0 : ret = -EFAULT;
1867 [ # # ]: 0 : if (copy_to_user(useraddr, &stats, sizeof(stats)))
1868 : 0 : goto out;
1869 : 0 : useraddr += sizeof(stats);
1870 [ # # # # : 0 : if (n_stats && copy_to_user(useraddr, data, n_stats * sizeof(u64)))
# # ]
1871 : 0 : goto out;
1872 : : ret = 0;
1873 : :
1874 : 0 : out:
1875 : 0 : vfree(data);
1876 : 0 : return ret;
1877 : : }
1878 : :
1879 : 0 : static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
1880 : : {
1881 : 0 : struct ethtool_perm_addr epaddr;
1882 : :
1883 [ # # ]: 0 : if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
1884 : : return -EFAULT;
1885 : :
1886 [ # # ]: 0 : if (epaddr.size < dev->addr_len)
1887 : : return -ETOOSMALL;
1888 : 0 : epaddr.size = dev->addr_len;
1889 : :
1890 [ # # ]: 0 : if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
1891 : : return -EFAULT;
1892 : 0 : useraddr += sizeof(epaddr);
1893 [ # # # # ]: 0 : if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1894 : 0 : return -EFAULT;
1895 : : return 0;
1896 : : }
1897 : :
1898 : 0 : static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1899 : : u32 cmd, u32 (*actor)(struct net_device *))
1900 : : {
1901 : 0 : struct ethtool_value edata = { .cmd = cmd };
1902 : :
1903 [ # # ]: 0 : if (!actor)
1904 : : return -EOPNOTSUPP;
1905 : :
1906 : 0 : edata.data = actor(dev);
1907 : :
1908 [ # # ]: 0 : if (copy_to_user(useraddr, &edata, sizeof(edata)))
1909 : 0 : return -EFAULT;
1910 : : return 0;
1911 : : }
1912 : :
1913 : 0 : static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
1914 : : void (*actor)(struct net_device *, u32))
1915 : : {
1916 : 0 : struct ethtool_value edata;
1917 : :
1918 [ # # ]: 0 : if (!actor)
1919 : : return -EOPNOTSUPP;
1920 : :
1921 [ # # ]: 0 : if (copy_from_user(&edata, useraddr, sizeof(edata)))
1922 : : return -EFAULT;
1923 : :
1924 : 0 : actor(dev, edata.data);
1925 : 0 : return 0;
1926 : : }
1927 : :
1928 : 0 : static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
1929 : : int (*actor)(struct net_device *, u32))
1930 : : {
1931 : 0 : struct ethtool_value edata;
1932 : :
1933 [ # # ]: 0 : if (!actor)
1934 : : return -EOPNOTSUPP;
1935 : :
1936 [ # # ]: 0 : if (copy_from_user(&edata, useraddr, sizeof(edata)))
1937 : : return -EFAULT;
1938 : :
1939 : 0 : return actor(dev, edata.data);
1940 : : }
1941 : :
1942 : 0 : static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
1943 : : char __user *useraddr)
1944 : : {
1945 : 0 : struct ethtool_flash efl;
1946 : :
1947 [ # # ]: 0 : if (copy_from_user(&efl, useraddr, sizeof(efl)))
1948 : : return -EFAULT;
1949 : 0 : efl.data[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0;
1950 : :
1951 [ # # ]: 0 : if (!dev->ethtool_ops->flash_device)
1952 : : return devlink_compat_flash_update(dev, efl.data);
1953 : :
1954 : 0 : return dev->ethtool_ops->flash_device(dev, &efl);
1955 : : }
1956 : :
1957 : 0 : static int ethtool_set_dump(struct net_device *dev,
1958 : : void __user *useraddr)
1959 : : {
1960 : 0 : struct ethtool_dump dump;
1961 : :
1962 [ # # ]: 0 : if (!dev->ethtool_ops->set_dump)
1963 : : return -EOPNOTSUPP;
1964 : :
1965 [ # # ]: 0 : if (copy_from_user(&dump, useraddr, sizeof(dump)))
1966 : : return -EFAULT;
1967 : :
1968 : 0 : return dev->ethtool_ops->set_dump(dev, &dump);
1969 : : }
1970 : :
1971 : 0 : static int ethtool_get_dump_flag(struct net_device *dev,
1972 : : void __user *useraddr)
1973 : : {
1974 : 0 : int ret;
1975 : 0 : struct ethtool_dump dump;
1976 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
1977 : :
1978 [ # # ]: 0 : if (!ops->get_dump_flag)
1979 : : return -EOPNOTSUPP;
1980 : :
1981 [ # # ]: 0 : if (copy_from_user(&dump, useraddr, sizeof(dump)))
1982 : : return -EFAULT;
1983 : :
1984 : 0 : ret = ops->get_dump_flag(dev, &dump);
1985 [ # # ]: 0 : if (ret)
1986 : : return ret;
1987 : :
1988 [ # # ]: 0 : if (copy_to_user(useraddr, &dump, sizeof(dump)))
1989 : 0 : return -EFAULT;
1990 : : return 0;
1991 : : }
1992 : :
1993 : 0 : static int ethtool_get_dump_data(struct net_device *dev,
1994 : : void __user *useraddr)
1995 : : {
1996 : 0 : int ret;
1997 : 0 : __u32 len;
1998 : 0 : struct ethtool_dump dump, tmp;
1999 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
2000 : 0 : void *data = NULL;
2001 : :
2002 [ # # # # ]: 0 : if (!ops->get_dump_data || !ops->get_dump_flag)
2003 : : return -EOPNOTSUPP;
2004 : :
2005 [ # # ]: 0 : if (copy_from_user(&dump, useraddr, sizeof(dump)))
2006 : : return -EFAULT;
2007 : :
2008 : 0 : memset(&tmp, 0, sizeof(tmp));
2009 : 0 : tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
2010 : 0 : ret = ops->get_dump_flag(dev, &tmp);
2011 [ # # ]: 0 : if (ret)
2012 : : return ret;
2013 : :
2014 : 0 : len = min(tmp.len, dump.len);
2015 [ # # ]: 0 : if (!len)
2016 : : return -EFAULT;
2017 : :
2018 : : /* Don't ever let the driver think there's more space available
2019 : : * than it requested with .get_dump_flag().
2020 : : */
2021 : 0 : dump.len = len;
2022 : :
2023 : : /* Always allocate enough space to hold the whole thing so that the
2024 : : * driver does not need to check the length and bother with partial
2025 : : * dumping.
2026 : : */
2027 : 0 : data = vzalloc(tmp.len);
2028 [ # # ]: 0 : if (!data)
2029 : : return -ENOMEM;
2030 : 0 : ret = ops->get_dump_data(dev, &dump, data);
2031 [ # # ]: 0 : if (ret)
2032 : 0 : goto out;
2033 : :
2034 : : /* There are two sane possibilities:
2035 : : * 1. The driver's .get_dump_data() does not touch dump.len.
2036 : : * 2. Or it may set dump.len to how much it really writes, which
2037 : : * should be tmp.len (or len if it can do a partial dump).
2038 : : * In any case respond to userspace with the actual length of data
2039 : : * it's receiving.
2040 : : */
2041 [ # # # # : 0 : WARN_ON(dump.len != len && dump.len != tmp.len);
# # ]
2042 : 0 : dump.len = len;
2043 : :
2044 [ # # ]: 0 : if (copy_to_user(useraddr, &dump, sizeof(dump))) {
2045 : 0 : ret = -EFAULT;
2046 : 0 : goto out;
2047 : : }
2048 : 0 : useraddr += offsetof(struct ethtool_dump, data);
2049 [ # # # # ]: 0 : if (copy_to_user(useraddr, data, len))
2050 : 0 : ret = -EFAULT;
2051 : 0 : out:
2052 : 0 : vfree(data);
2053 : 0 : return ret;
2054 : : }
2055 : :
2056 : 0 : static int ethtool_get_ts_info(struct net_device *dev, void __user *useraddr)
2057 : : {
2058 : 0 : int err = 0;
2059 : 0 : struct ethtool_ts_info info;
2060 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
2061 : 0 : struct phy_device *phydev = dev->phydev;
2062 : :
2063 : 0 : memset(&info, 0, sizeof(info));
2064 : 0 : info.cmd = ETHTOOL_GET_TS_INFO;
2065 : :
2066 [ # # # # ]: 0 : if (phy_has_tsinfo(phydev)) {
2067 : 0 : err = phy_ts_info(phydev, &info);
2068 [ # # ]: 0 : } else if (ops->get_ts_info) {
2069 : 0 : err = ops->get_ts_info(dev, &info);
2070 : : } else {
2071 : 0 : info.so_timestamping =
2072 : : SOF_TIMESTAMPING_RX_SOFTWARE |
2073 : : SOF_TIMESTAMPING_SOFTWARE;
2074 : 0 : info.phc_index = -1;
2075 : : }
2076 : :
2077 [ # # ]: 0 : if (err)
2078 : : return err;
2079 : :
2080 [ # # ]: 0 : if (copy_to_user(useraddr, &info, sizeof(info)))
2081 : 0 : err = -EFAULT;
2082 : :
2083 : : return err;
2084 : : }
2085 : :
2086 : 0 : static int __ethtool_get_module_info(struct net_device *dev,
2087 : : struct ethtool_modinfo *modinfo)
2088 : : {
2089 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
2090 : 0 : struct phy_device *phydev = dev->phydev;
2091 : :
2092 [ # # ]: 0 : if (dev->sfp_bus)
2093 : : return sfp_get_module_info(dev->sfp_bus, modinfo);
2094 : :
2095 [ # # # # : 0 : if (phydev && phydev->drv && phydev->drv->module_info)
# # ]
2096 : 0 : return phydev->drv->module_info(phydev, modinfo);
2097 : :
2098 [ # # ]: 0 : if (ops->get_module_info)
2099 : 0 : return ops->get_module_info(dev, modinfo);
2100 : :
2101 : : return -EOPNOTSUPP;
2102 : : }
2103 : :
2104 : 0 : static int ethtool_get_module_info(struct net_device *dev,
2105 : : void __user *useraddr)
2106 : : {
2107 : 0 : int ret;
2108 : 0 : struct ethtool_modinfo modinfo;
2109 : :
2110 [ # # ]: 0 : if (copy_from_user(&modinfo, useraddr, sizeof(modinfo)))
2111 : : return -EFAULT;
2112 : :
2113 : 0 : ret = __ethtool_get_module_info(dev, &modinfo);
2114 [ # # ]: 0 : if (ret)
2115 : : return ret;
2116 : :
2117 [ # # ]: 0 : if (copy_to_user(useraddr, &modinfo, sizeof(modinfo)))
2118 : 0 : return -EFAULT;
2119 : :
2120 : : return 0;
2121 : : }
2122 : :
2123 : 0 : static int __ethtool_get_module_eeprom(struct net_device *dev,
2124 : : struct ethtool_eeprom *ee, u8 *data)
2125 : : {
2126 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
2127 : 0 : struct phy_device *phydev = dev->phydev;
2128 : :
2129 [ # # ]: 0 : if (dev->sfp_bus)
2130 : : return sfp_get_module_eeprom(dev->sfp_bus, ee, data);
2131 : :
2132 [ # # # # : 0 : if (phydev && phydev->drv && phydev->drv->module_eeprom)
# # ]
2133 : 0 : return phydev->drv->module_eeprom(phydev, ee, data);
2134 : :
2135 [ # # ]: 0 : if (ops->get_module_eeprom)
2136 : 0 : return ops->get_module_eeprom(dev, ee, data);
2137 : :
2138 : : return -EOPNOTSUPP;
2139 : : }
2140 : :
2141 : 0 : static int ethtool_get_module_eeprom(struct net_device *dev,
2142 : : void __user *useraddr)
2143 : : {
2144 : 0 : int ret;
2145 : 0 : struct ethtool_modinfo modinfo;
2146 : :
2147 : 0 : ret = __ethtool_get_module_info(dev, &modinfo);
2148 [ # # ]: 0 : if (ret)
2149 : : return ret;
2150 : :
2151 : 0 : return ethtool_get_any_eeprom(dev, useraddr,
2152 : : __ethtool_get_module_eeprom,
2153 : : modinfo.eeprom_len);
2154 : : }
2155 : :
2156 : 0 : static int ethtool_tunable_valid(const struct ethtool_tunable *tuna)
2157 : : {
2158 : 0 : switch (tuna->id) {
2159 : 0 : case ETHTOOL_RX_COPYBREAK:
2160 : : case ETHTOOL_TX_COPYBREAK:
2161 [ # # # # ]: 0 : if (tuna->len != sizeof(u32) ||
2162 : : tuna->type_id != ETHTOOL_TUNABLE_U32)
2163 : : return -EINVAL;
2164 : : break;
2165 : 0 : case ETHTOOL_PFC_PREVENTION_TOUT:
2166 [ # # # # ]: 0 : if (tuna->len != sizeof(u16) ||
2167 : : tuna->type_id != ETHTOOL_TUNABLE_U16)
2168 : : return -EINVAL;
2169 : : break;
2170 : : default:
2171 : : return -EINVAL;
2172 : : }
2173 : :
2174 : : return 0;
2175 : : }
2176 : :
2177 : 0 : static int ethtool_get_tunable(struct net_device *dev, void __user *useraddr)
2178 : : {
2179 : 0 : int ret;
2180 : 0 : struct ethtool_tunable tuna;
2181 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
2182 : 0 : void *data;
2183 : :
2184 [ # # ]: 0 : if (!ops->get_tunable)
2185 : : return -EOPNOTSUPP;
2186 [ # # ]: 0 : if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2187 : : return -EFAULT;
2188 [ # # # ]: 0 : ret = ethtool_tunable_valid(&tuna);
2189 : : if (ret)
2190 : : return ret;
2191 [ # # ]: 0 : data = kmalloc(tuna.len, GFP_USER);
2192 [ # # ]: 0 : if (!data)
2193 : : return -ENOMEM;
2194 : 0 : ret = ops->get_tunable(dev, &tuna, data);
2195 [ # # ]: 0 : if (ret)
2196 : 0 : goto out;
2197 : 0 : useraddr += sizeof(tuna);
2198 : 0 : ret = -EFAULT;
2199 [ # # # # ]: 0 : if (copy_to_user(useraddr, data, tuna.len))
2200 : 0 : goto out;
2201 : : ret = 0;
2202 : :
2203 : 0 : out:
2204 : 0 : kfree(data);
2205 : 0 : return ret;
2206 : : }
2207 : :
2208 : 0 : static int ethtool_set_tunable(struct net_device *dev, void __user *useraddr)
2209 : : {
2210 : 0 : int ret;
2211 : 0 : struct ethtool_tunable tuna;
2212 : 0 : const struct ethtool_ops *ops = dev->ethtool_ops;
2213 : 0 : void *data;
2214 : :
2215 [ # # ]: 0 : if (!ops->set_tunable)
2216 : : return -EOPNOTSUPP;
2217 [ # # ]: 0 : if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2218 : : return -EFAULT;
2219 [ # # # ]: 0 : ret = ethtool_tunable_valid(&tuna);
2220 : : if (ret)
2221 : : return ret;
2222 : 0 : useraddr += sizeof(tuna);
2223 : 0 : data = memdup_user(useraddr, tuna.len);
2224 [ # # ]: 0 : if (IS_ERR(data))
2225 : 0 : return PTR_ERR(data);
2226 : 0 : ret = ops->set_tunable(dev, &tuna, data);
2227 : :
2228 : 0 : kfree(data);
2229 : 0 : return ret;
2230 : : }
2231 : :
2232 : : static noinline_for_stack int
2233 : 0 : ethtool_get_per_queue_coalesce(struct net_device *dev,
2234 : : void __user *useraddr,
2235 : : struct ethtool_per_queue_op *per_queue_opt)
2236 : : {
2237 : 0 : u32 bit;
2238 : 0 : int ret;
2239 : 0 : DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2240 : :
2241 [ # # ]: 0 : if (!dev->ethtool_ops->get_per_queue_coalesce)
2242 : : return -EOPNOTSUPP;
2243 : :
2244 : 0 : useraddr += sizeof(*per_queue_opt);
2245 : :
2246 : 0 : bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask,
2247 : : MAX_NUM_QUEUE);
2248 : :
2249 [ # # ]: 0 : for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2250 : 0 : struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
2251 : :
2252 : 0 : ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, &coalesce);
2253 [ # # ]: 0 : if (ret != 0)
2254 : 0 : return ret;
2255 [ # # ]: 0 : if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
2256 : : return -EFAULT;
2257 : 0 : useraddr += sizeof(coalesce);
2258 : : }
2259 : :
2260 : : return 0;
2261 : : }
2262 : :
2263 : : static noinline_for_stack int
2264 : 0 : ethtool_set_per_queue_coalesce(struct net_device *dev,
2265 : : void __user *useraddr,
2266 : : struct ethtool_per_queue_op *per_queue_opt)
2267 : : {
2268 : 0 : u32 bit;
2269 : 0 : int i, ret = 0;
2270 : 0 : int n_queue;
2271 : 0 : struct ethtool_coalesce *backup = NULL, *tmp = NULL;
2272 : 0 : DECLARE_BITMAP(queue_mask, MAX_NUM_QUEUE);
2273 : :
2274 [ # # ]: 0 : if ((!dev->ethtool_ops->set_per_queue_coalesce) ||
2275 [ # # ]: 0 : (!dev->ethtool_ops->get_per_queue_coalesce))
2276 : : return -EOPNOTSUPP;
2277 : :
2278 : 0 : useraddr += sizeof(*per_queue_opt);
2279 : :
2280 : 0 : bitmap_from_arr32(queue_mask, per_queue_opt->queue_mask, MAX_NUM_QUEUE);
2281 : 0 : n_queue = bitmap_weight(queue_mask, MAX_NUM_QUEUE);
2282 : 0 : tmp = backup = kmalloc_array(n_queue, sizeof(*backup), GFP_KERNEL);
2283 [ # # ]: 0 : if (!backup)
2284 : : return -ENOMEM;
2285 : :
2286 [ # # ]: 0 : for_each_set_bit(bit, queue_mask, MAX_NUM_QUEUE) {
2287 : 0 : struct ethtool_coalesce coalesce;
2288 : :
2289 : 0 : ret = dev->ethtool_ops->get_per_queue_coalesce(dev, bit, tmp);
2290 [ # # ]: 0 : if (ret != 0)
2291 : 0 : goto roll_back;
2292 : :
2293 : 0 : tmp++;
2294 : :
2295 [ # # ]: 0 : if (copy_from_user(&coalesce, useraddr, sizeof(coalesce))) {
2296 : 0 : ret = -EFAULT;
2297 : 0 : goto roll_back;
2298 : : }
2299 : :
2300 : 0 : ret = dev->ethtool_ops->set_per_queue_coalesce(dev, bit, &coalesce);
2301 [ # # ]: 0 : if (ret != 0)
2302 : 0 : goto roll_back;
2303 : :
2304 : 0 : useraddr += sizeof(coalesce);
2305 : : }
2306 : :
2307 : 0 : roll_back:
2308 [ # # ]: 0 : if (ret != 0) {
2309 : 0 : tmp = backup;
2310 [ # # ]: 0 : for_each_set_bit(i, queue_mask, bit) {
2311 : 0 : dev->ethtool_ops->set_per_queue_coalesce(dev, i, tmp);
2312 : 0 : tmp++;
2313 : : }
2314 : : }
2315 : 0 : kfree(backup);
2316 : :
2317 : 0 : return ret;
2318 : : }
2319 : :
2320 : 0 : static int noinline_for_stack ethtool_set_per_queue(struct net_device *dev,
2321 : : void __user *useraddr, u32 sub_cmd)
2322 : : {
2323 : 0 : struct ethtool_per_queue_op per_queue_opt;
2324 : :
2325 [ # # ]: 0 : if (copy_from_user(&per_queue_opt, useraddr, sizeof(per_queue_opt)))
2326 : : return -EFAULT;
2327 : :
2328 [ # # ]: 0 : if (per_queue_opt.sub_command != sub_cmd)
2329 : : return -EINVAL;
2330 : :
2331 [ # # # ]: 0 : switch (per_queue_opt.sub_command) {
2332 : 0 : case ETHTOOL_GCOALESCE:
2333 : 0 : return ethtool_get_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2334 : 0 : case ETHTOOL_SCOALESCE:
2335 : 0 : return ethtool_set_per_queue_coalesce(dev, useraddr, &per_queue_opt);
2336 : : default:
2337 : : return -EOPNOTSUPP;
2338 : 0 : };
2339 : : }
2340 : :
2341 : : static int ethtool_phy_tunable_valid(const struct ethtool_tunable *tuna)
2342 : : {
2343 : : switch (tuna->id) {
2344 : : case ETHTOOL_PHY_DOWNSHIFT:
2345 : : case ETHTOOL_PHY_FAST_LINK_DOWN:
2346 : : if (tuna->len != sizeof(u8) ||
2347 : : tuna->type_id != ETHTOOL_TUNABLE_U8)
2348 : : return -EINVAL;
2349 : : break;
2350 : : case ETHTOOL_PHY_EDPD:
2351 : : if (tuna->len != sizeof(u16) ||
2352 : : tuna->type_id != ETHTOOL_TUNABLE_U16)
2353 : : return -EINVAL;
2354 : : break;
2355 : : default:
2356 : : return -EINVAL;
2357 : : }
2358 : :
2359 : : return 0;
2360 : : }
2361 : :
2362 : : static int get_phy_tunable(struct net_device *dev, void __user *useraddr)
2363 : : {
2364 : : int ret;
2365 : : struct ethtool_tunable tuna;
2366 : : struct phy_device *phydev = dev->phydev;
2367 : : void *data;
2368 : :
2369 : : if (!(phydev && phydev->drv && phydev->drv->get_tunable))
2370 : : return -EOPNOTSUPP;
2371 : :
2372 : : if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2373 : : return -EFAULT;
2374 : : ret = ethtool_phy_tunable_valid(&tuna);
2375 : : if (ret)
2376 : : return ret;
2377 : : data = kmalloc(tuna.len, GFP_USER);
2378 : : if (!data)
2379 : : return -ENOMEM;
2380 : : mutex_lock(&phydev->lock);
2381 : : ret = phydev->drv->get_tunable(phydev, &tuna, data);
2382 : : mutex_unlock(&phydev->lock);
2383 : : if (ret)
2384 : : goto out;
2385 : : useraddr += sizeof(tuna);
2386 : : ret = -EFAULT;
2387 : : if (copy_to_user(useraddr, data, tuna.len))
2388 : : goto out;
2389 : : ret = 0;
2390 : :
2391 : : out:
2392 : : kfree(data);
2393 : : return ret;
2394 : : }
2395 : :
2396 : : static int set_phy_tunable(struct net_device *dev, void __user *useraddr)
2397 : : {
2398 : : int ret;
2399 : : struct ethtool_tunable tuna;
2400 : : struct phy_device *phydev = dev->phydev;
2401 : : void *data;
2402 : :
2403 : : if (!(phydev && phydev->drv && phydev->drv->set_tunable))
2404 : : return -EOPNOTSUPP;
2405 : : if (copy_from_user(&tuna, useraddr, sizeof(tuna)))
2406 : : return -EFAULT;
2407 : : ret = ethtool_phy_tunable_valid(&tuna);
2408 : : if (ret)
2409 : : return ret;
2410 : : useraddr += sizeof(tuna);
2411 : : data = memdup_user(useraddr, tuna.len);
2412 : : if (IS_ERR(data))
2413 : : return PTR_ERR(data);
2414 : : mutex_lock(&phydev->lock);
2415 : : ret = phydev->drv->set_tunable(phydev, &tuna, data);
2416 : : mutex_unlock(&phydev->lock);
2417 : :
2418 : : kfree(data);
2419 : : return ret;
2420 : : }
2421 : :
2422 : 0 : static int ethtool_get_fecparam(struct net_device *dev, void __user *useraddr)
2423 : : {
2424 : 0 : struct ethtool_fecparam fecparam = { .cmd = ETHTOOL_GFECPARAM };
2425 : 0 : int rc;
2426 : :
2427 [ # # ]: 0 : if (!dev->ethtool_ops->get_fecparam)
2428 : : return -EOPNOTSUPP;
2429 : :
2430 : 0 : rc = dev->ethtool_ops->get_fecparam(dev, &fecparam);
2431 [ # # ]: 0 : if (rc)
2432 : : return rc;
2433 : :
2434 [ # # ]: 0 : if (copy_to_user(useraddr, &fecparam, sizeof(fecparam)))
2435 : 0 : return -EFAULT;
2436 : : return 0;
2437 : : }
2438 : :
2439 : 0 : static int ethtool_set_fecparam(struct net_device *dev, void __user *useraddr)
2440 : : {
2441 : 0 : struct ethtool_fecparam fecparam;
2442 : :
2443 [ # # ]: 0 : if (!dev->ethtool_ops->set_fecparam)
2444 : : return -EOPNOTSUPP;
2445 : :
2446 [ # # ]: 0 : if (copy_from_user(&fecparam, useraddr, sizeof(fecparam)))
2447 : : return -EFAULT;
2448 : :
2449 : 0 : return dev->ethtool_ops->set_fecparam(dev, &fecparam);
2450 : : }
2451 : :
2452 : : /* The main entry point in this file. Called from net/core/dev_ioctl.c */
2453 : :
2454 : 104 : int dev_ethtool(struct net *net, struct ifreq *ifr)
2455 : : {
2456 : 104 : struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
2457 : 104 : void __user *useraddr = ifr->ifr_data;
2458 : 104 : u32 ethcmd, sub_cmd;
2459 : 104 : int rc;
2460 : 104 : netdev_features_t old_features;
2461 : :
2462 [ + - - + ]: 208 : if (!dev || !netif_device_present(dev))
2463 : 0 : return -ENODEV;
2464 : :
2465 [ + - ]: 104 : if (copy_from_user(ðcmd, useraddr, sizeof(ethcmd)))
2466 : : return -EFAULT;
2467 : :
2468 [ - + ]: 104 : if (ethcmd == ETHTOOL_PERQUEUE) {
2469 [ # # ]: 0 : if (copy_from_user(&sub_cmd, useraddr + sizeof(ethcmd), sizeof(sub_cmd)))
2470 : : return -EFAULT;
2471 : : } else {
2472 : 104 : sub_cmd = ethcmd;
2473 : : }
2474 : : /* Allow some commands to be done by anyone */
2475 [ + + ]: 104 : switch (sub_cmd) {
2476 : : case ETHTOOL_GSET:
2477 : : case ETHTOOL_GDRVINFO:
2478 : : case ETHTOOL_GMSGLVL:
2479 : : case ETHTOOL_GLINK:
2480 : : case ETHTOOL_GCOALESCE:
2481 : : case ETHTOOL_GRINGPARAM:
2482 : : case ETHTOOL_GPAUSEPARAM:
2483 : : case ETHTOOL_GRXCSUM:
2484 : : case ETHTOOL_GTXCSUM:
2485 : : case ETHTOOL_GSG:
2486 : : case ETHTOOL_GSSET_INFO:
2487 : : case ETHTOOL_GSTRINGS:
2488 : : case ETHTOOL_GSTATS:
2489 : : case ETHTOOL_GPHYSTATS:
2490 : : case ETHTOOL_GTSO:
2491 : : case ETHTOOL_GPERMADDR:
2492 : : case ETHTOOL_GUFO:
2493 : : case ETHTOOL_GGSO:
2494 : : case ETHTOOL_GGRO:
2495 : : case ETHTOOL_GFLAGS:
2496 : : case ETHTOOL_GPFLAGS:
2497 : : case ETHTOOL_GRXFH:
2498 : : case ETHTOOL_GRXRINGS:
2499 : : case ETHTOOL_GRXCLSRLCNT:
2500 : : case ETHTOOL_GRXCLSRULE:
2501 : : case ETHTOOL_GRXCLSRLALL:
2502 : : case ETHTOOL_GRXFHINDIR:
2503 : : case ETHTOOL_GRSSH:
2504 : : case ETHTOOL_GFEATURES:
2505 : : case ETHTOOL_GCHANNELS:
2506 : : case ETHTOOL_GET_TS_INFO:
2507 : : case ETHTOOL_GEEE:
2508 : : case ETHTOOL_GTUNABLE:
2509 : : case ETHTOOL_PHY_GTUNABLE:
2510 : : case ETHTOOL_GLINKSETTINGS:
2511 : : case ETHTOOL_GFECPARAM:
2512 : : break;
2513 : 26 : default:
2514 [ + - ]: 26 : if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
2515 : : return -EPERM;
2516 : : }
2517 : :
2518 [ - + ]: 104 : if (dev->ethtool_ops->begin) {
2519 : 0 : rc = dev->ethtool_ops->begin(dev);
2520 [ # # ]: 0 : if (rc < 0)
2521 : : return rc;
2522 : : }
2523 : 104 : old_features = dev->features;
2524 : :
2525 [ - - + - : 104 : switch (ethcmd) {
- - - - -
- - - - -
- - - - -
- - + - -
- - - - -
- - - - +
- - - - -
+ - - - -
- - - - -
- - - - -
- - - - -
- - ]
2526 : 0 : case ETHTOOL_GSET:
2527 : 0 : rc = ethtool_get_settings(dev, useraddr);
2528 : 0 : break;
2529 : 0 : case ETHTOOL_SSET:
2530 : 0 : rc = ethtool_set_settings(dev, useraddr);
2531 : 0 : break;
2532 : 26 : case ETHTOOL_GDRVINFO:
2533 : 26 : rc = ethtool_get_drvinfo(dev, useraddr);
2534 : 26 : break;
2535 : 0 : case ETHTOOL_GREGS:
2536 : 0 : rc = ethtool_get_regs(dev, useraddr);
2537 : 0 : break;
2538 : 0 : case ETHTOOL_GWOL:
2539 : 0 : rc = ethtool_get_wol(dev, useraddr);
2540 : 0 : break;
2541 : 0 : case ETHTOOL_SWOL:
2542 : 0 : rc = ethtool_set_wol(dev, useraddr);
2543 : 0 : break;
2544 : 0 : case ETHTOOL_GMSGLVL:
2545 : 0 : rc = ethtool_get_value(dev, useraddr, ethcmd,
2546 : 0 : dev->ethtool_ops->get_msglevel);
2547 : 0 : break;
2548 : 0 : case ETHTOOL_SMSGLVL:
2549 : 0 : rc = ethtool_set_value_void(dev, useraddr,
2550 : 0 : dev->ethtool_ops->set_msglevel);
2551 [ # # ]: 0 : if (!rc)
2552 : 0 : ethtool_notify(dev, ETHTOOL_MSG_DEBUG_NTF, NULL);
2553 : : break;
2554 : 0 : case ETHTOOL_GEEE:
2555 : 0 : rc = ethtool_get_eee(dev, useraddr);
2556 : 0 : break;
2557 : 0 : case ETHTOOL_SEEE:
2558 : 0 : rc = ethtool_set_eee(dev, useraddr);
2559 : 0 : break;
2560 : : case ETHTOOL_NWAY_RST:
2561 [ # # ]: 0 : rc = ethtool_nway_reset(dev);
2562 : : break;
2563 : 0 : case ETHTOOL_GLINK:
2564 : 0 : rc = ethtool_get_link(dev, useraddr);
2565 : 0 : break;
2566 : 0 : case ETHTOOL_GEEPROM:
2567 : 0 : rc = ethtool_get_eeprom(dev, useraddr);
2568 : 0 : break;
2569 : 0 : case ETHTOOL_SEEPROM:
2570 : 0 : rc = ethtool_set_eeprom(dev, useraddr);
2571 : 0 : break;
2572 : 0 : case ETHTOOL_GCOALESCE:
2573 : 0 : rc = ethtool_get_coalesce(dev, useraddr);
2574 : 0 : break;
2575 : 0 : case ETHTOOL_SCOALESCE:
2576 : 0 : rc = ethtool_set_coalesce(dev, useraddr);
2577 : 0 : break;
2578 : 0 : case ETHTOOL_GRINGPARAM:
2579 : 0 : rc = ethtool_get_ringparam(dev, useraddr);
2580 : 0 : break;
2581 : 0 : case ETHTOOL_SRINGPARAM:
2582 : 0 : rc = ethtool_set_ringparam(dev, useraddr);
2583 : 0 : break;
2584 : 0 : case ETHTOOL_GPAUSEPARAM:
2585 : 0 : rc = ethtool_get_pauseparam(dev, useraddr);
2586 : 0 : break;
2587 : 0 : case ETHTOOL_SPAUSEPARAM:
2588 : 0 : rc = ethtool_set_pauseparam(dev, useraddr);
2589 : 0 : break;
2590 : 0 : case ETHTOOL_TEST:
2591 : 0 : rc = ethtool_self_test(dev, useraddr);
2592 : 0 : break;
2593 : 26 : case ETHTOOL_GSTRINGS:
2594 : 26 : rc = ethtool_get_strings(dev, useraddr);
2595 : 26 : break;
2596 : 0 : case ETHTOOL_PHYS_ID:
2597 : 0 : rc = ethtool_phys_id(dev, useraddr);
2598 : 0 : break;
2599 : 0 : case ETHTOOL_GSTATS:
2600 : 0 : rc = ethtool_get_stats(dev, useraddr);
2601 : 0 : break;
2602 : 0 : case ETHTOOL_GPERMADDR:
2603 : 0 : rc = ethtool_get_perm_addr(dev, useraddr);
2604 : 0 : break;
2605 : 0 : case ETHTOOL_GFLAGS:
2606 : 0 : rc = ethtool_get_value(dev, useraddr, ethcmd,
2607 : : __ethtool_get_flags);
2608 : 0 : break;
2609 : 0 : case ETHTOOL_SFLAGS:
2610 : 0 : rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
2611 : 0 : break;
2612 : 0 : case ETHTOOL_GPFLAGS:
2613 : 0 : rc = ethtool_get_value(dev, useraddr, ethcmd,
2614 : 0 : dev->ethtool_ops->get_priv_flags);
2615 : 0 : break;
2616 : 0 : case ETHTOOL_SPFLAGS:
2617 : 0 : rc = ethtool_set_value(dev, useraddr,
2618 : 0 : dev->ethtool_ops->set_priv_flags);
2619 : 0 : break;
2620 : 0 : case ETHTOOL_GRXFH:
2621 : : case ETHTOOL_GRXRINGS:
2622 : : case ETHTOOL_GRXCLSRLCNT:
2623 : : case ETHTOOL_GRXCLSRULE:
2624 : : case ETHTOOL_GRXCLSRLALL:
2625 : 0 : rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
2626 : 0 : break;
2627 : 0 : case ETHTOOL_SRXFH:
2628 : : case ETHTOOL_SRXCLSRLDEL:
2629 : : case ETHTOOL_SRXCLSRLINS:
2630 : 0 : rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
2631 : 0 : break;
2632 : 0 : case ETHTOOL_FLASHDEV:
2633 : 0 : rc = ethtool_flash_device(dev, useraddr);
2634 : 0 : break;
2635 : 0 : case ETHTOOL_RESET:
2636 : 0 : rc = ethtool_reset(dev, useraddr);
2637 : 0 : break;
2638 : 26 : case ETHTOOL_GSSET_INFO:
2639 : 26 : rc = ethtool_get_sset_info(dev, useraddr);
2640 : 26 : break;
2641 : 0 : case ETHTOOL_GRXFHINDIR:
2642 : 0 : rc = ethtool_get_rxfh_indir(dev, useraddr);
2643 : 0 : break;
2644 : 0 : case ETHTOOL_SRXFHINDIR:
2645 : 0 : rc = ethtool_set_rxfh_indir(dev, useraddr);
2646 : 0 : break;
2647 : 0 : case ETHTOOL_GRSSH:
2648 : 0 : rc = ethtool_get_rxfh(dev, useraddr);
2649 : 0 : break;
2650 : 0 : case ETHTOOL_SRSSH:
2651 : 0 : rc = ethtool_set_rxfh(dev, useraddr);
2652 : 0 : break;
2653 : 0 : case ETHTOOL_GFEATURES:
2654 : 0 : rc = ethtool_get_features(dev, useraddr);
2655 : 0 : break;
2656 : 26 : case ETHTOOL_SFEATURES:
2657 : 26 : rc = ethtool_set_features(dev, useraddr);
2658 : 26 : break;
2659 : 0 : case ETHTOOL_GTXCSUM:
2660 : : case ETHTOOL_GRXCSUM:
2661 : : case ETHTOOL_GSG:
2662 : : case ETHTOOL_GTSO:
2663 : : case ETHTOOL_GGSO:
2664 : : case ETHTOOL_GGRO:
2665 : 0 : rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
2666 : 0 : break;
2667 : 0 : case ETHTOOL_STXCSUM:
2668 : : case ETHTOOL_SRXCSUM:
2669 : : case ETHTOOL_SSG:
2670 : : case ETHTOOL_STSO:
2671 : : case ETHTOOL_SGSO:
2672 : : case ETHTOOL_SGRO:
2673 : 0 : rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
2674 : 0 : break;
2675 : 0 : case ETHTOOL_GCHANNELS:
2676 : 0 : rc = ethtool_get_channels(dev, useraddr);
2677 : 0 : break;
2678 : 0 : case ETHTOOL_SCHANNELS:
2679 : 0 : rc = ethtool_set_channels(dev, useraddr);
2680 : 0 : break;
2681 : 0 : case ETHTOOL_SET_DUMP:
2682 : 0 : rc = ethtool_set_dump(dev, useraddr);
2683 : 0 : break;
2684 : 0 : case ETHTOOL_GET_DUMP_FLAG:
2685 : 0 : rc = ethtool_get_dump_flag(dev, useraddr);
2686 : 0 : break;
2687 : 0 : case ETHTOOL_GET_DUMP_DATA:
2688 : 0 : rc = ethtool_get_dump_data(dev, useraddr);
2689 : 0 : break;
2690 : 0 : case ETHTOOL_GET_TS_INFO:
2691 : 0 : rc = ethtool_get_ts_info(dev, useraddr);
2692 : 0 : break;
2693 : 0 : case ETHTOOL_GMODULEINFO:
2694 : 0 : rc = ethtool_get_module_info(dev, useraddr);
2695 : 0 : break;
2696 : 0 : case ETHTOOL_GMODULEEEPROM:
2697 : 0 : rc = ethtool_get_module_eeprom(dev, useraddr);
2698 : 0 : break;
2699 : 0 : case ETHTOOL_GTUNABLE:
2700 : 0 : rc = ethtool_get_tunable(dev, useraddr);
2701 : 0 : break;
2702 : 0 : case ETHTOOL_STUNABLE:
2703 : 0 : rc = ethtool_set_tunable(dev, useraddr);
2704 : 0 : break;
2705 : 0 : case ETHTOOL_GPHYSTATS:
2706 : 0 : rc = ethtool_get_phy_stats(dev, useraddr);
2707 : 0 : break;
2708 : 0 : case ETHTOOL_PERQUEUE:
2709 : 0 : rc = ethtool_set_per_queue(dev, useraddr, sub_cmd);
2710 : 0 : break;
2711 : 0 : case ETHTOOL_GLINKSETTINGS:
2712 : 0 : rc = ethtool_get_link_ksettings(dev, useraddr);
2713 : 0 : break;
2714 : 0 : case ETHTOOL_SLINKSETTINGS:
2715 : 0 : rc = ethtool_set_link_ksettings(dev, useraddr);
2716 : 0 : break;
2717 : 0 : case ETHTOOL_PHY_GTUNABLE:
2718 : 0 : rc = get_phy_tunable(dev, useraddr);
2719 : 0 : break;
2720 : 0 : case ETHTOOL_PHY_STUNABLE:
2721 : 0 : rc = set_phy_tunable(dev, useraddr);
2722 : 0 : break;
2723 : 0 : case ETHTOOL_GFECPARAM:
2724 : 0 : rc = ethtool_get_fecparam(dev, useraddr);
2725 : 0 : break;
2726 : 0 : case ETHTOOL_SFECPARAM:
2727 : 0 : rc = ethtool_set_fecparam(dev, useraddr);
2728 : 0 : break;
2729 : : default:
2730 : : rc = -EOPNOTSUPP;
2731 : : }
2732 : :
2733 [ - + ]: 104 : if (dev->ethtool_ops->complete)
2734 : 0 : dev->ethtool_ops->complete(dev);
2735 : :
2736 [ - + ]: 104 : if (old_features != dev->features)
2737 : 0 : netdev_features_change(dev);
2738 : :
2739 : : return rc;
2740 : : }
2741 : :
2742 : : struct ethtool_rx_flow_key {
2743 : : struct flow_dissector_key_basic basic;
2744 : : union {
2745 : : struct flow_dissector_key_ipv4_addrs ipv4;
2746 : : struct flow_dissector_key_ipv6_addrs ipv6;
2747 : : };
2748 : : struct flow_dissector_key_ports tp;
2749 : : struct flow_dissector_key_ip ip;
2750 : : struct flow_dissector_key_vlan vlan;
2751 : : struct flow_dissector_key_eth_addrs eth_addrs;
2752 : : } __aligned(BITS_PER_LONG / 8); /* Ensure that we can do comparisons as longs. */
2753 : :
2754 : : struct ethtool_rx_flow_match {
2755 : : struct flow_dissector dissector;
2756 : : struct ethtool_rx_flow_key key;
2757 : : struct ethtool_rx_flow_key mask;
2758 : : };
2759 : :
2760 : : struct ethtool_rx_flow_rule *
2761 : 0 : ethtool_rx_flow_rule_create(const struct ethtool_rx_flow_spec_input *input)
2762 : : {
2763 : 0 : const struct ethtool_rx_flow_spec *fs = input->fs;
2764 : 0 : static struct in6_addr zero_addr = {};
2765 : 0 : struct ethtool_rx_flow_match *match;
2766 : 0 : struct ethtool_rx_flow_rule *flow;
2767 : 0 : struct flow_action_entry *act;
2768 : :
2769 : 0 : flow = kzalloc(sizeof(struct ethtool_rx_flow_rule) +
2770 : : sizeof(struct ethtool_rx_flow_match), GFP_KERNEL);
2771 [ # # ]: 0 : if (!flow)
2772 : : return ERR_PTR(-ENOMEM);
2773 : :
2774 : : /* ethtool_rx supports only one single action per rule. */
2775 : 0 : flow->rule = flow_rule_alloc(1);
2776 [ # # ]: 0 : if (!flow->rule) {
2777 : 0 : kfree(flow);
2778 : 0 : return ERR_PTR(-ENOMEM);
2779 : : }
2780 : :
2781 : 0 : match = (struct ethtool_rx_flow_match *)flow->priv;
2782 : 0 : flow->rule->match.dissector = &match->dissector;
2783 : 0 : flow->rule->match.mask = &match->mask;
2784 : 0 : flow->rule->match.key = &match->key;
2785 : :
2786 : 0 : match->mask.basic.n_proto = htons(0xffff);
2787 : :
2788 [ # # # # ]: 0 : switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
2789 : 0 : case ETHER_FLOW: {
2790 : 0 : const struct ethhdr *ether_spec, *ether_m_spec;
2791 : :
2792 : 0 : ether_spec = &fs->h_u.ether_spec;
2793 : 0 : ether_m_spec = &fs->m_u.ether_spec;
2794 : :
2795 [ # # ]: 0 : if (!is_zero_ether_addr(ether_m_spec->h_source)) {
2796 : 0 : ether_addr_copy(match->key.eth_addrs.src,
2797 : : ether_spec->h_source);
2798 : 0 : ether_addr_copy(match->mask.eth_addrs.src,
2799 : : ether_m_spec->h_source);
2800 : : }
2801 [ # # ]: 0 : if (!is_zero_ether_addr(ether_m_spec->h_dest)) {
2802 : 0 : ether_addr_copy(match->key.eth_addrs.dst,
2803 : : ether_spec->h_dest);
2804 : 0 : ether_addr_copy(match->mask.eth_addrs.dst,
2805 : : ether_m_spec->h_dest);
2806 : : }
2807 [ # # ]: 0 : if (ether_m_spec->h_proto) {
2808 : 0 : match->key.basic.n_proto = ether_spec->h_proto;
2809 : 0 : match->mask.basic.n_proto = ether_m_spec->h_proto;
2810 : : }
2811 : : }
2812 : : break;
2813 : 0 : case TCP_V4_FLOW:
2814 : : case UDP_V4_FLOW: {
2815 : 0 : const struct ethtool_tcpip4_spec *v4_spec, *v4_m_spec;
2816 : :
2817 : 0 : match->key.basic.n_proto = htons(ETH_P_IP);
2818 : :
2819 : 0 : v4_spec = &fs->h_u.tcp_ip4_spec;
2820 : 0 : v4_m_spec = &fs->m_u.tcp_ip4_spec;
2821 : :
2822 [ # # ]: 0 : if (v4_m_spec->ip4src) {
2823 : 0 : match->key.ipv4.src = v4_spec->ip4src;
2824 : 0 : match->mask.ipv4.src = v4_m_spec->ip4src;
2825 : : }
2826 [ # # ]: 0 : if (v4_m_spec->ip4dst) {
2827 : 0 : match->key.ipv4.dst = v4_spec->ip4dst;
2828 : 0 : match->mask.ipv4.dst = v4_m_spec->ip4dst;
2829 : : }
2830 [ # # ]: 0 : if (v4_m_spec->ip4src ||
2831 [ # # ]: 0 : v4_m_spec->ip4dst) {
2832 : 0 : match->dissector.used_keys |=
2833 : : BIT(FLOW_DISSECTOR_KEY_IPV4_ADDRS);
2834 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_IPV4_ADDRS] =
2835 : : offsetof(struct ethtool_rx_flow_key, ipv4);
2836 : : }
2837 [ # # ]: 0 : if (v4_m_spec->psrc) {
2838 : 0 : match->key.tp.src = v4_spec->psrc;
2839 : 0 : match->mask.tp.src = v4_m_spec->psrc;
2840 : : }
2841 [ # # ]: 0 : if (v4_m_spec->pdst) {
2842 : 0 : match->key.tp.dst = v4_spec->pdst;
2843 : 0 : match->mask.tp.dst = v4_m_spec->pdst;
2844 : : }
2845 [ # # ]: 0 : if (v4_m_spec->psrc ||
2846 : : v4_m_spec->pdst) {
2847 : 0 : match->dissector.used_keys |=
2848 : : BIT(FLOW_DISSECTOR_KEY_PORTS);
2849 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
2850 : : offsetof(struct ethtool_rx_flow_key, tp);
2851 : : }
2852 [ # # ]: 0 : if (v4_m_spec->tos) {
2853 : 0 : match->key.ip.tos = v4_spec->tos;
2854 : 0 : match->mask.ip.tos = v4_m_spec->tos;
2855 : 0 : match->dissector.used_keys |=
2856 : : BIT(FLOW_DISSECTOR_KEY_IP);
2857 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
2858 : : offsetof(struct ethtool_rx_flow_key, ip);
2859 : : }
2860 : : }
2861 : : break;
2862 : 0 : case TCP_V6_FLOW:
2863 : : case UDP_V6_FLOW: {
2864 : 0 : const struct ethtool_tcpip6_spec *v6_spec, *v6_m_spec;
2865 : :
2866 : 0 : match->key.basic.n_proto = htons(ETH_P_IPV6);
2867 : :
2868 : 0 : v6_spec = &fs->h_u.tcp_ip6_spec;
2869 : 0 : v6_m_spec = &fs->m_u.tcp_ip6_spec;
2870 [ # # ]: 0 : if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
2871 : 0 : memcpy(&match->key.ipv6.src, v6_spec->ip6src,
2872 : : sizeof(match->key.ipv6.src));
2873 : 0 : memcpy(&match->mask.ipv6.src, v6_m_spec->ip6src,
2874 : : sizeof(match->mask.ipv6.src));
2875 : : }
2876 [ # # ]: 0 : if (memcmp(v6_m_spec->ip6dst, &zero_addr, sizeof(zero_addr))) {
2877 : 0 : memcpy(&match->key.ipv6.dst, v6_spec->ip6dst,
2878 : : sizeof(match->key.ipv6.dst));
2879 : 0 : memcpy(&match->mask.ipv6.dst, v6_m_spec->ip6dst,
2880 : : sizeof(match->mask.ipv6.dst));
2881 : : }
2882 [ # # ]: 0 : if (memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr)) ||
2883 : : memcmp(v6_m_spec->ip6src, &zero_addr, sizeof(zero_addr))) {
2884 : 0 : match->dissector.used_keys |=
2885 : : BIT(FLOW_DISSECTOR_KEY_IPV6_ADDRS);
2886 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_IPV6_ADDRS] =
2887 : : offsetof(struct ethtool_rx_flow_key, ipv6);
2888 : : }
2889 [ # # ]: 0 : if (v6_m_spec->psrc) {
2890 : 0 : match->key.tp.src = v6_spec->psrc;
2891 : 0 : match->mask.tp.src = v6_m_spec->psrc;
2892 : : }
2893 [ # # ]: 0 : if (v6_m_spec->pdst) {
2894 : 0 : match->key.tp.dst = v6_spec->pdst;
2895 : 0 : match->mask.tp.dst = v6_m_spec->pdst;
2896 : : }
2897 [ # # ]: 0 : if (v6_m_spec->psrc ||
2898 : : v6_m_spec->pdst) {
2899 : 0 : match->dissector.used_keys |=
2900 : : BIT(FLOW_DISSECTOR_KEY_PORTS);
2901 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_PORTS] =
2902 : : offsetof(struct ethtool_rx_flow_key, tp);
2903 : : }
2904 [ # # ]: 0 : if (v6_m_spec->tclass) {
2905 : 0 : match->key.ip.tos = v6_spec->tclass;
2906 : 0 : match->mask.ip.tos = v6_m_spec->tclass;
2907 : 0 : match->dissector.used_keys |=
2908 : : BIT(FLOW_DISSECTOR_KEY_IP);
2909 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_IP] =
2910 : : offsetof(struct ethtool_rx_flow_key, ip);
2911 : : }
2912 : : }
2913 : : break;
2914 : : default:
2915 : 0 : ethtool_rx_flow_rule_destroy(flow);
2916 : 0 : return ERR_PTR(-EINVAL);
2917 : : }
2918 : :
2919 [ # # # ]: 0 : switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT | FLOW_RSS)) {
2920 : 0 : case TCP_V4_FLOW:
2921 : : case TCP_V6_FLOW:
2922 : 0 : match->key.basic.ip_proto = IPPROTO_TCP;
2923 : 0 : break;
2924 : 0 : case UDP_V4_FLOW:
2925 : : case UDP_V6_FLOW:
2926 : 0 : match->key.basic.ip_proto = IPPROTO_UDP;
2927 : 0 : break;
2928 : : }
2929 : 0 : match->mask.basic.ip_proto = 0xff;
2930 : :
2931 : 0 : match->dissector.used_keys |= BIT(FLOW_DISSECTOR_KEY_BASIC);
2932 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_BASIC] =
2933 : : offsetof(struct ethtool_rx_flow_key, basic);
2934 : :
2935 [ # # ]: 0 : if (fs->flow_type & FLOW_EXT) {
2936 : 0 : const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
2937 : 0 : const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
2938 : :
2939 [ # # ]: 0 : if (ext_m_spec->vlan_etype) {
2940 : 0 : match->key.vlan.vlan_tpid = ext_h_spec->vlan_etype;
2941 : 0 : match->mask.vlan.vlan_tpid = ext_m_spec->vlan_etype;
2942 : : }
2943 : :
2944 [ # # ]: 0 : if (ext_m_spec->vlan_tci) {
2945 : 0 : match->key.vlan.vlan_id =
2946 : 0 : ntohs(ext_h_spec->vlan_tci) & 0x0fff;
2947 : 0 : match->mask.vlan.vlan_id =
2948 : 0 : ntohs(ext_m_spec->vlan_tci) & 0x0fff;
2949 : :
2950 : 0 : match->key.vlan.vlan_dei =
2951 : 0 : !!(ext_h_spec->vlan_tci & htons(0x1000));
2952 : 0 : match->mask.vlan.vlan_dei =
2953 : 0 : !!(ext_m_spec->vlan_tci & htons(0x1000));
2954 : :
2955 : 0 : match->key.vlan.vlan_priority =
2956 : 0 : (ntohs(ext_h_spec->vlan_tci) & 0xe000) >> 13;
2957 : 0 : match->mask.vlan.vlan_priority =
2958 : 0 : (ntohs(ext_m_spec->vlan_tci) & 0xe000) >> 13;
2959 : : }
2960 : :
2961 [ # # ]: 0 : if (ext_m_spec->vlan_etype ||
2962 : : ext_m_spec->vlan_tci) {
2963 : 0 : match->dissector.used_keys |=
2964 : : BIT(FLOW_DISSECTOR_KEY_VLAN);
2965 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_VLAN] =
2966 : : offsetof(struct ethtool_rx_flow_key, vlan);
2967 : : }
2968 : : }
2969 [ # # ]: 0 : if (fs->flow_type & FLOW_MAC_EXT) {
2970 : 0 : const struct ethtool_flow_ext *ext_h_spec = &fs->h_ext;
2971 : 0 : const struct ethtool_flow_ext *ext_m_spec = &fs->m_ext;
2972 : :
2973 : 0 : memcpy(match->key.eth_addrs.dst, ext_h_spec->h_dest,
2974 : : ETH_ALEN);
2975 : 0 : memcpy(match->mask.eth_addrs.dst, ext_m_spec->h_dest,
2976 : : ETH_ALEN);
2977 : :
2978 : 0 : match->dissector.used_keys |=
2979 : : BIT(FLOW_DISSECTOR_KEY_ETH_ADDRS);
2980 : 0 : match->dissector.offset[FLOW_DISSECTOR_KEY_ETH_ADDRS] =
2981 : : offsetof(struct ethtool_rx_flow_key, eth_addrs);
2982 : : }
2983 : :
2984 : 0 : act = &flow->rule->action.entries[0];
2985 [ # # # ]: 0 : switch (fs->ring_cookie) {
2986 : 0 : case RX_CLS_FLOW_DISC:
2987 : 0 : act->id = FLOW_ACTION_DROP;
2988 : 0 : break;
2989 : 0 : case RX_CLS_FLOW_WAKE:
2990 : 0 : act->id = FLOW_ACTION_WAKE;
2991 : 0 : break;
2992 : 0 : default:
2993 : 0 : act->id = FLOW_ACTION_QUEUE;
2994 [ # # ]: 0 : if (fs->flow_type & FLOW_RSS)
2995 : 0 : act->queue.ctx = input->rss_ctx;
2996 : :
2997 : 0 : act->queue.vf = ethtool_get_flow_spec_ring_vf(fs->ring_cookie);
2998 : 0 : act->queue.index = ethtool_get_flow_spec_ring(fs->ring_cookie);
2999 : 0 : break;
3000 : : }
3001 : :
3002 : : return flow;
3003 : : }
3004 : : EXPORT_SYMBOL(ethtool_rx_flow_rule_create);
3005 : :
3006 : 0 : void ethtool_rx_flow_rule_destroy(struct ethtool_rx_flow_rule *flow)
3007 : : {
3008 : 0 : kfree(flow->rule);
3009 : 0 : kfree(flow);
3010 : 0 : }
3011 : : EXPORT_SYMBOL(ethtool_rx_flow_rule_destroy);
|