597732c989ca9deddcbe0788237514ceb2db9eb0
[firefly-linux-kernel-4.4.55.git] / net / core / ethtool.c
1 /*
2  * net/core/ethtool.c - Ethtool ioctl handler
3  * Copyright (c) 2003 Matthew Wilcox <matthew@wil.cx>
4  *
5  * This file is where we call all the ethtool_ops commands to get
6  * the information ethtool needs.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  */
13
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/capability.h>
17 #include <linux/errno.h>
18 #include <linux/ethtool.h>
19 #include <linux/netdevice.h>
20 #include <linux/bitops.h>
21 #include <linux/uaccess.h>
22 #include <linux/vmalloc.h>
23 #include <linux/slab.h>
24 #include <linux/rtnetlink.h>
25 #include <linux/sched.h>
26
27 /*
28  * Some useful ethtool_ops methods that're device independent.
29  * If we find that all drivers want to do the same thing here,
30  * we can turn these into dev_() function calls.
31  */
32
33 u32 ethtool_op_get_link(struct net_device *dev)
34 {
35         return netif_carrier_ok(dev) ? 1 : 0;
36 }
37 EXPORT_SYMBOL(ethtool_op_get_link);
38
39 /* Handlers for each ethtool command */
40
41 #define ETHTOOL_DEV_FEATURE_WORDS       ((NETDEV_FEATURE_COUNT + 31) / 32)
42
43 static const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
44         [NETIF_F_SG_BIT] =               "tx-scatter-gather",
45         [NETIF_F_IP_CSUM_BIT] =          "tx-checksum-ipv4",
46         [NETIF_F_HW_CSUM_BIT] =          "tx-checksum-ip-generic",
47         [NETIF_F_IPV6_CSUM_BIT] =        "tx-checksum-ipv6",
48         [NETIF_F_HIGHDMA_BIT] =          "highdma",
49         [NETIF_F_FRAGLIST_BIT] =         "tx-scatter-gather-fraglist",
50         [NETIF_F_HW_VLAN_TX_BIT] =       "tx-vlan-hw-insert",
51
52         [NETIF_F_HW_VLAN_RX_BIT] =       "rx-vlan-hw-parse",
53         [NETIF_F_HW_VLAN_FILTER_BIT] =   "rx-vlan-filter",
54         [NETIF_F_VLAN_CHALLENGED_BIT] =  "vlan-challenged",
55         [NETIF_F_GSO_BIT] =              "tx-generic-segmentation",
56         [NETIF_F_LLTX_BIT] =             "tx-lockless",
57         [NETIF_F_NETNS_LOCAL_BIT] =      "netns-local",
58         [NETIF_F_GRO_BIT] =              "rx-gro",
59         [NETIF_F_LRO_BIT] =              "rx-lro",
60
61         [NETIF_F_TSO_BIT] =              "tx-tcp-segmentation",
62         [NETIF_F_UFO_BIT] =              "tx-udp-fragmentation",
63         [NETIF_F_GSO_ROBUST_BIT] =       "tx-gso-robust",
64         [NETIF_F_TSO_ECN_BIT] =          "tx-tcp-ecn-segmentation",
65         [NETIF_F_TSO6_BIT] =             "tx-tcp6-segmentation",
66         [NETIF_F_FSO_BIT] =              "tx-fcoe-segmentation",
67
68         [NETIF_F_FCOE_CRC_BIT] =         "tx-checksum-fcoe-crc",
69         [NETIF_F_SCTP_CSUM_BIT] =        "tx-checksum-sctp",
70         [NETIF_F_FCOE_MTU_BIT] =         "fcoe-mtu",
71         [NETIF_F_NTUPLE_BIT] =           "rx-ntuple-filter",
72         [NETIF_F_RXHASH_BIT] =           "rx-hashing",
73         [NETIF_F_RXCSUM_BIT] =           "rx-checksum",
74         [NETIF_F_NOCACHE_COPY_BIT] =     "tx-nocache-copy",
75         [NETIF_F_LOOPBACK_BIT] =         "loopback",
76 };
77
78 static int ethtool_get_features(struct net_device *dev, void __user *useraddr)
79 {
80         struct ethtool_gfeatures cmd = {
81                 .cmd = ETHTOOL_GFEATURES,
82                 .size = ETHTOOL_DEV_FEATURE_WORDS,
83         };
84         struct ethtool_get_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
85         u32 __user *sizeaddr;
86         u32 copy_size;
87         int i;
88
89         /* in case feature bits run out again */
90         BUILD_BUG_ON(ETHTOOL_DEV_FEATURE_WORDS * sizeof(u32) > sizeof(netdev_features_t));
91
92         for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
93                 features[i].available = (u32)(dev->hw_features >> (32 * i));
94                 features[i].requested = (u32)(dev->wanted_features >> (32 * i));
95                 features[i].active = (u32)(dev->features >> (32 * i));
96                 features[i].never_changed =
97                         (u32)(NETIF_F_NEVER_CHANGE >> (32 * i));
98         }
99
100         sizeaddr = useraddr + offsetof(struct ethtool_gfeatures, size);
101         if (get_user(copy_size, sizeaddr))
102                 return -EFAULT;
103
104         if (copy_size > ETHTOOL_DEV_FEATURE_WORDS)
105                 copy_size = ETHTOOL_DEV_FEATURE_WORDS;
106
107         if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
108                 return -EFAULT;
109         useraddr += sizeof(cmd);
110         if (copy_to_user(useraddr, features, copy_size * sizeof(*features)))
111                 return -EFAULT;
112
113         return 0;
114 }
115
116 static int ethtool_set_features(struct net_device *dev, void __user *useraddr)
117 {
118         struct ethtool_sfeatures cmd;
119         struct ethtool_set_features_block features[ETHTOOL_DEV_FEATURE_WORDS];
120         netdev_features_t wanted = 0, valid = 0;
121         int i, ret = 0;
122
123         if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
124                 return -EFAULT;
125         useraddr += sizeof(cmd);
126
127         if (cmd.size != ETHTOOL_DEV_FEATURE_WORDS)
128                 return -EINVAL;
129
130         if (copy_from_user(features, useraddr, sizeof(features)))
131                 return -EFAULT;
132
133         for (i = 0; i < ETHTOOL_DEV_FEATURE_WORDS; ++i) {
134                 valid |= (netdev_features_t)features[i].valid << (32 * i);
135                 wanted |= (netdev_features_t)features[i].requested << (32 * i);
136         }
137
138         if (valid & ~NETIF_F_ETHTOOL_BITS)
139                 return -EINVAL;
140
141         if (valid & ~dev->hw_features) {
142                 valid &= dev->hw_features;
143                 ret |= ETHTOOL_F_UNSUPPORTED;
144         }
145
146         dev->wanted_features &= ~valid;
147         dev->wanted_features |= wanted & valid;
148         __netdev_update_features(dev);
149
150         if ((dev->wanted_features ^ dev->features) & valid)
151                 ret |= ETHTOOL_F_WISH;
152
153         return ret;
154 }
155
156 static int __ethtool_get_sset_count(struct net_device *dev, int sset)
157 {
158         const struct ethtool_ops *ops = dev->ethtool_ops;
159
160         if (sset == ETH_SS_FEATURES)
161                 return ARRAY_SIZE(netdev_features_strings);
162
163         if (ops && ops->get_sset_count && ops->get_strings)
164                 return ops->get_sset_count(dev, sset);
165         else
166                 return -EOPNOTSUPP;
167 }
168
169 static void __ethtool_get_strings(struct net_device *dev,
170         u32 stringset, u8 *data)
171 {
172         const struct ethtool_ops *ops = dev->ethtool_ops;
173
174         if (stringset == ETH_SS_FEATURES)
175                 memcpy(data, netdev_features_strings,
176                         sizeof(netdev_features_strings));
177         else
178                 /* ops->get_strings is valid because checked earlier */
179                 ops->get_strings(dev, stringset, data);
180 }
181
182 static netdev_features_t ethtool_get_feature_mask(u32 eth_cmd)
183 {
184         /* feature masks of legacy discrete ethtool ops */
185
186         switch (eth_cmd) {
187         case ETHTOOL_GTXCSUM:
188         case ETHTOOL_STXCSUM:
189                 return NETIF_F_ALL_CSUM | NETIF_F_SCTP_CSUM;
190         case ETHTOOL_GRXCSUM:
191         case ETHTOOL_SRXCSUM:
192                 return NETIF_F_RXCSUM;
193         case ETHTOOL_GSG:
194         case ETHTOOL_SSG:
195                 return NETIF_F_SG;
196         case ETHTOOL_GTSO:
197         case ETHTOOL_STSO:
198                 return NETIF_F_ALL_TSO;
199         case ETHTOOL_GUFO:
200         case ETHTOOL_SUFO:
201                 return NETIF_F_UFO;
202         case ETHTOOL_GGSO:
203         case ETHTOOL_SGSO:
204                 return NETIF_F_GSO;
205         case ETHTOOL_GGRO:
206         case ETHTOOL_SGRO:
207                 return NETIF_F_GRO;
208         default:
209                 BUG();
210         }
211 }
212
213 static int ethtool_get_one_feature(struct net_device *dev,
214         char __user *useraddr, u32 ethcmd)
215 {
216         netdev_features_t mask = ethtool_get_feature_mask(ethcmd);
217         struct ethtool_value edata = {
218                 .cmd = ethcmd,
219                 .data = !!(dev->features & mask),
220         };
221
222         if (copy_to_user(useraddr, &edata, sizeof(edata)))
223                 return -EFAULT;
224         return 0;
225 }
226
227 static int ethtool_set_one_feature(struct net_device *dev,
228         void __user *useraddr, u32 ethcmd)
229 {
230         struct ethtool_value edata;
231         netdev_features_t mask;
232
233         if (copy_from_user(&edata, useraddr, sizeof(edata)))
234                 return -EFAULT;
235
236         mask = ethtool_get_feature_mask(ethcmd);
237         mask &= dev->hw_features;
238         if (!mask)
239                 return -EOPNOTSUPP;
240
241         if (edata.data)
242                 dev->wanted_features |= mask;
243         else
244                 dev->wanted_features &= ~mask;
245
246         __netdev_update_features(dev);
247
248         return 0;
249 }
250
251 #define ETH_ALL_FLAGS    (ETH_FLAG_LRO | ETH_FLAG_RXVLAN | ETH_FLAG_TXVLAN | \
252                           ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)
253 #define ETH_ALL_FEATURES (NETIF_F_LRO | NETIF_F_HW_VLAN_RX | \
254                           NETIF_F_HW_VLAN_TX | NETIF_F_NTUPLE | NETIF_F_RXHASH)
255
256 static u32 __ethtool_get_flags(struct net_device *dev)
257 {
258         u32 flags = 0;
259
260         if (dev->features & NETIF_F_LRO)        flags |= ETH_FLAG_LRO;
261         if (dev->features & NETIF_F_HW_VLAN_RX) flags |= ETH_FLAG_RXVLAN;
262         if (dev->features & NETIF_F_HW_VLAN_TX) flags |= ETH_FLAG_TXVLAN;
263         if (dev->features & NETIF_F_NTUPLE)     flags |= ETH_FLAG_NTUPLE;
264         if (dev->features & NETIF_F_RXHASH)     flags |= ETH_FLAG_RXHASH;
265
266         return flags;
267 }
268
269 static int __ethtool_set_flags(struct net_device *dev, u32 data)
270 {
271         netdev_features_t features = 0, changed;
272
273         if (data & ~ETH_ALL_FLAGS)
274                 return -EINVAL;
275
276         if (data & ETH_FLAG_LRO)        features |= NETIF_F_LRO;
277         if (data & ETH_FLAG_RXVLAN)     features |= NETIF_F_HW_VLAN_RX;
278         if (data & ETH_FLAG_TXVLAN)     features |= NETIF_F_HW_VLAN_TX;
279         if (data & ETH_FLAG_NTUPLE)     features |= NETIF_F_NTUPLE;
280         if (data & ETH_FLAG_RXHASH)     features |= NETIF_F_RXHASH;
281
282         /* allow changing only bits set in hw_features */
283         changed = (features ^ dev->features) & ETH_ALL_FEATURES;
284         if (changed & ~dev->hw_features)
285                 return (changed & dev->hw_features) ? -EINVAL : -EOPNOTSUPP;
286
287         dev->wanted_features =
288                 (dev->wanted_features & ~changed) | (features & changed);
289
290         __netdev_update_features(dev);
291
292         return 0;
293 }
294
295 int __ethtool_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
296 {
297         ASSERT_RTNL();
298
299         if (!dev->ethtool_ops || !dev->ethtool_ops->get_settings)
300                 return -EOPNOTSUPP;
301
302         memset(cmd, 0, sizeof(struct ethtool_cmd));
303         cmd->cmd = ETHTOOL_GSET;
304         return dev->ethtool_ops->get_settings(dev, cmd);
305 }
306 EXPORT_SYMBOL(__ethtool_get_settings);
307
308 static int ethtool_get_settings(struct net_device *dev, void __user *useraddr)
309 {
310         int err;
311         struct ethtool_cmd cmd;
312
313         err = __ethtool_get_settings(dev, &cmd);
314         if (err < 0)
315                 return err;
316
317         if (copy_to_user(useraddr, &cmd, sizeof(cmd)))
318                 return -EFAULT;
319         return 0;
320 }
321
322 static int ethtool_set_settings(struct net_device *dev, void __user *useraddr)
323 {
324         struct ethtool_cmd cmd;
325
326         if (!dev->ethtool_ops->set_settings)
327                 return -EOPNOTSUPP;
328
329         if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
330                 return -EFAULT;
331
332         return dev->ethtool_ops->set_settings(dev, &cmd);
333 }
334
335 static noinline_for_stack int ethtool_get_drvinfo(struct net_device *dev,
336                                                   void __user *useraddr)
337 {
338         struct ethtool_drvinfo info;
339         const struct ethtool_ops *ops = dev->ethtool_ops;
340
341         memset(&info, 0, sizeof(info));
342         info.cmd = ETHTOOL_GDRVINFO;
343         if (ops && ops->get_drvinfo) {
344                 ops->get_drvinfo(dev, &info);
345         } else if (dev->dev.parent && dev->dev.parent->driver) {
346                 strlcpy(info.bus_info, dev_name(dev->dev.parent),
347                         sizeof(info.bus_info));
348                 strlcpy(info.driver, dev->dev.parent->driver->name,
349                         sizeof(info.driver));
350         } else {
351                 return -EOPNOTSUPP;
352         }
353
354         /*
355          * this method of obtaining string set info is deprecated;
356          * Use ETHTOOL_GSSET_INFO instead.
357          */
358         if (ops && ops->get_sset_count) {
359                 int rc;
360
361                 rc = ops->get_sset_count(dev, ETH_SS_TEST);
362                 if (rc >= 0)
363                         info.testinfo_len = rc;
364                 rc = ops->get_sset_count(dev, ETH_SS_STATS);
365                 if (rc >= 0)
366                         info.n_stats = rc;
367                 rc = ops->get_sset_count(dev, ETH_SS_PRIV_FLAGS);
368                 if (rc >= 0)
369                         info.n_priv_flags = rc;
370         }
371         if (ops && ops->get_regs_len)
372                 info.regdump_len = ops->get_regs_len(dev);
373         if (ops && ops->get_eeprom_len)
374                 info.eedump_len = ops->get_eeprom_len(dev);
375
376         if (copy_to_user(useraddr, &info, sizeof(info)))
377                 return -EFAULT;
378         return 0;
379 }
380
381 static noinline_for_stack int ethtool_get_sset_info(struct net_device *dev,
382                                                     void __user *useraddr)
383 {
384         struct ethtool_sset_info info;
385         u64 sset_mask;
386         int i, idx = 0, n_bits = 0, ret, rc;
387         u32 *info_buf = NULL;
388
389         if (copy_from_user(&info, useraddr, sizeof(info)))
390                 return -EFAULT;
391
392         /* store copy of mask, because we zero struct later on */
393         sset_mask = info.sset_mask;
394         if (!sset_mask)
395                 return 0;
396
397         /* calculate size of return buffer */
398         n_bits = hweight64(sset_mask);
399
400         memset(&info, 0, sizeof(info));
401         info.cmd = ETHTOOL_GSSET_INFO;
402
403         info_buf = kzalloc(n_bits * sizeof(u32), GFP_USER);
404         if (!info_buf)
405                 return -ENOMEM;
406
407         /*
408          * fill return buffer based on input bitmask and successful
409          * get_sset_count return
410          */
411         for (i = 0; i < 64; i++) {
412                 if (!(sset_mask & (1ULL << i)))
413                         continue;
414
415                 rc = __ethtool_get_sset_count(dev, i);
416                 if (rc >= 0) {
417                         info.sset_mask |= (1ULL << i);
418                         info_buf[idx++] = rc;
419                 }
420         }
421
422         ret = -EFAULT;
423         if (copy_to_user(useraddr, &info, sizeof(info)))
424                 goto out;
425
426         useraddr += offsetof(struct ethtool_sset_info, data);
427         if (copy_to_user(useraddr, info_buf, idx * sizeof(u32)))
428                 goto out;
429
430         ret = 0;
431
432 out:
433         kfree(info_buf);
434         return ret;
435 }
436
437 static noinline_for_stack int ethtool_set_rxnfc(struct net_device *dev,
438                                                 u32 cmd, void __user *useraddr)
439 {
440         struct ethtool_rxnfc info;
441         size_t info_size = sizeof(info);
442
443         if (!dev->ethtool_ops->set_rxnfc)
444                 return -EOPNOTSUPP;
445
446         /* struct ethtool_rxnfc was originally defined for
447          * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
448          * members.  User-space might still be using that
449          * definition. */
450         if (cmd == ETHTOOL_SRXFH)
451                 info_size = (offsetof(struct ethtool_rxnfc, data) +
452                              sizeof(info.data));
453
454         if (copy_from_user(&info, useraddr, info_size))
455                 return -EFAULT;
456
457         return dev->ethtool_ops->set_rxnfc(dev, &info);
458 }
459
460 static noinline_for_stack int ethtool_get_rxnfc(struct net_device *dev,
461                                                 u32 cmd, void __user *useraddr)
462 {
463         struct ethtool_rxnfc info;
464         size_t info_size = sizeof(info);
465         const struct ethtool_ops *ops = dev->ethtool_ops;
466         int ret;
467         void *rule_buf = NULL;
468
469         if (!ops->get_rxnfc)
470                 return -EOPNOTSUPP;
471
472         /* struct ethtool_rxnfc was originally defined for
473          * ETHTOOL_{G,S}RXFH with only the cmd, flow_type and data
474          * members.  User-space might still be using that
475          * definition. */
476         if (cmd == ETHTOOL_GRXFH)
477                 info_size = (offsetof(struct ethtool_rxnfc, data) +
478                              sizeof(info.data));
479
480         if (copy_from_user(&info, useraddr, info_size))
481                 return -EFAULT;
482
483         if (info.cmd == ETHTOOL_GRXCLSRLALL) {
484                 if (info.rule_cnt > 0) {
485                         if (info.rule_cnt <= KMALLOC_MAX_SIZE / sizeof(u32))
486                                 rule_buf = kzalloc(info.rule_cnt * sizeof(u32),
487                                                    GFP_USER);
488                         if (!rule_buf)
489                                 return -ENOMEM;
490                 }
491         }
492
493         ret = ops->get_rxnfc(dev, &info, rule_buf);
494         if (ret < 0)
495                 goto err_out;
496
497         ret = -EFAULT;
498         if (copy_to_user(useraddr, &info, info_size))
499                 goto err_out;
500
501         if (rule_buf) {
502                 useraddr += offsetof(struct ethtool_rxnfc, rule_locs);
503                 if (copy_to_user(useraddr, rule_buf,
504                                  info.rule_cnt * sizeof(u32)))
505                         goto err_out;
506         }
507         ret = 0;
508
509 err_out:
510         kfree(rule_buf);
511
512         return ret;
513 }
514
515 static noinline_for_stack int ethtool_get_rxfh_indir(struct net_device *dev,
516                                                      void __user *useraddr)
517 {
518         u32 user_size, dev_size;
519         u32 *indir;
520         int ret;
521
522         if (!dev->ethtool_ops->get_rxfh_indir_size ||
523             !dev->ethtool_ops->get_rxfh_indir)
524                 return -EOPNOTSUPP;
525         dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
526         if (dev_size == 0)
527                 return -EOPNOTSUPP;
528
529         if (copy_from_user(&user_size,
530                            useraddr + offsetof(struct ethtool_rxfh_indir, size),
531                            sizeof(user_size)))
532                 return -EFAULT;
533
534         if (copy_to_user(useraddr + offsetof(struct ethtool_rxfh_indir, size),
535                          &dev_size, sizeof(dev_size)))
536                 return -EFAULT;
537
538         /* If the user buffer size is 0, this is just a query for the
539          * device table size.  Otherwise, if it's smaller than the
540          * device table size it's an error.
541          */
542         if (user_size < dev_size)
543                 return user_size == 0 ? 0 : -EINVAL;
544
545         indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
546         if (!indir)
547                 return -ENOMEM;
548
549         ret = dev->ethtool_ops->get_rxfh_indir(dev, indir);
550         if (ret)
551                 goto out;
552
553         if (copy_to_user(useraddr +
554                          offsetof(struct ethtool_rxfh_indir, ring_index[0]),
555                          indir, dev_size * sizeof(indir[0])))
556                 ret = -EFAULT;
557
558 out:
559         kfree(indir);
560         return ret;
561 }
562
563 static noinline_for_stack int ethtool_set_rxfh_indir(struct net_device *dev,
564                                                      void __user *useraddr)
565 {
566         struct ethtool_rxnfc rx_rings;
567         u32 user_size, dev_size, i;
568         u32 *indir;
569         int ret;
570
571         if (!dev->ethtool_ops->get_rxfh_indir_size ||
572             !dev->ethtool_ops->set_rxfh_indir ||
573             !dev->ethtool_ops->get_rxnfc)
574                 return -EOPNOTSUPP;
575         dev_size = dev->ethtool_ops->get_rxfh_indir_size(dev);
576         if (dev_size == 0)
577                 return -EOPNOTSUPP;
578
579         if (copy_from_user(&user_size,
580                            useraddr + offsetof(struct ethtool_rxfh_indir, size),
581                            sizeof(user_size)))
582                 return -EFAULT;
583
584         if (user_size != 0 && user_size != dev_size)
585                 return -EINVAL;
586
587         indir = kcalloc(dev_size, sizeof(indir[0]), GFP_USER);
588         if (!indir)
589                 return -ENOMEM;
590
591         rx_rings.cmd = ETHTOOL_GRXRINGS;
592         ret = dev->ethtool_ops->get_rxnfc(dev, &rx_rings, NULL);
593         if (ret)
594                 goto out;
595
596         if (user_size == 0) {
597                 for (i = 0; i < dev_size; i++)
598                         indir[i] = ethtool_rxfh_indir_default(i, rx_rings.data);
599         } else {
600                 if (copy_from_user(indir,
601                                   useraddr +
602                                   offsetof(struct ethtool_rxfh_indir,
603                                            ring_index[0]),
604                                   dev_size * sizeof(indir[0]))) {
605                         ret = -EFAULT;
606                         goto out;
607                 }
608
609                 /* Validate ring indices */
610                 for (i = 0; i < dev_size; i++) {
611                         if (indir[i] >= rx_rings.data) {
612                                 ret = -EINVAL;
613                                 goto out;
614                         }
615                 }
616         }
617
618         ret = dev->ethtool_ops->set_rxfh_indir(dev, indir);
619
620 out:
621         kfree(indir);
622         return ret;
623 }
624
625 /*
626  * ethtool does not (or did not) set masks for flow parameters that are
627  * not specified, so if both value and mask are 0 then this must be
628  * treated as equivalent to a mask with all bits set.  Implement that
629  * here rather than in drivers.
630  */
631 static void rx_ntuple_fix_masks(struct ethtool_rx_ntuple_flow_spec *fs)
632 {
633         struct ethtool_tcpip4_spec *entry = &fs->h_u.tcp_ip4_spec;
634         struct ethtool_tcpip4_spec *mask = &fs->m_u.tcp_ip4_spec;
635
636         if (fs->flow_type != TCP_V4_FLOW &&
637             fs->flow_type != UDP_V4_FLOW &&
638             fs->flow_type != SCTP_V4_FLOW)
639                 return;
640
641         if (!(entry->ip4src | mask->ip4src))
642                 mask->ip4src = htonl(0xffffffff);
643         if (!(entry->ip4dst | mask->ip4dst))
644                 mask->ip4dst = htonl(0xffffffff);
645         if (!(entry->psrc | mask->psrc))
646                 mask->psrc = htons(0xffff);
647         if (!(entry->pdst | mask->pdst))
648                 mask->pdst = htons(0xffff);
649         if (!(entry->tos | mask->tos))
650                 mask->tos = 0xff;
651         if (!(fs->vlan_tag | fs->vlan_tag_mask))
652                 fs->vlan_tag_mask = 0xffff;
653         if (!(fs->data | fs->data_mask))
654                 fs->data_mask = 0xffffffffffffffffULL;
655 }
656
657 static noinline_for_stack int ethtool_set_rx_ntuple(struct net_device *dev,
658                                                     void __user *useraddr)
659 {
660         struct ethtool_rx_ntuple cmd;
661         const struct ethtool_ops *ops = dev->ethtool_ops;
662
663         if (!ops->set_rx_ntuple)
664                 return -EOPNOTSUPP;
665
666         if (!(dev->features & NETIF_F_NTUPLE))
667                 return -EINVAL;
668
669         if (copy_from_user(&cmd, useraddr, sizeof(cmd)))
670                 return -EFAULT;
671
672         rx_ntuple_fix_masks(&cmd.fs);
673
674         return ops->set_rx_ntuple(dev, &cmd);
675 }
676
677 static int ethtool_get_regs(struct net_device *dev, char __user *useraddr)
678 {
679         struct ethtool_regs regs;
680         const struct ethtool_ops *ops = dev->ethtool_ops;
681         void *regbuf;
682         int reglen, ret;
683
684         if (!ops->get_regs || !ops->get_regs_len)
685                 return -EOPNOTSUPP;
686
687         if (copy_from_user(&regs, useraddr, sizeof(regs)))
688                 return -EFAULT;
689
690         reglen = ops->get_regs_len(dev);
691         if (regs.len > reglen)
692                 regs.len = reglen;
693
694         regbuf = vzalloc(reglen);
695         if (reglen && !regbuf)
696                 return -ENOMEM;
697
698         ops->get_regs(dev, &regs, regbuf);
699
700         ret = -EFAULT;
701         if (copy_to_user(useraddr, &regs, sizeof(regs)))
702                 goto out;
703         useraddr += offsetof(struct ethtool_regs, data);
704         if (regbuf && copy_to_user(useraddr, regbuf, regs.len))
705                 goto out;
706         ret = 0;
707
708  out:
709         vfree(regbuf);
710         return ret;
711 }
712
713 static int ethtool_reset(struct net_device *dev, char __user *useraddr)
714 {
715         struct ethtool_value reset;
716         int ret;
717
718         if (!dev->ethtool_ops->reset)
719                 return -EOPNOTSUPP;
720
721         if (copy_from_user(&reset, useraddr, sizeof(reset)))
722                 return -EFAULT;
723
724         ret = dev->ethtool_ops->reset(dev, &reset.data);
725         if (ret)
726                 return ret;
727
728         if (copy_to_user(useraddr, &reset, sizeof(reset)))
729                 return -EFAULT;
730         return 0;
731 }
732
733 static int ethtool_get_wol(struct net_device *dev, char __user *useraddr)
734 {
735         struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
736
737         if (!dev->ethtool_ops->get_wol)
738                 return -EOPNOTSUPP;
739
740         dev->ethtool_ops->get_wol(dev, &wol);
741
742         if (copy_to_user(useraddr, &wol, sizeof(wol)))
743                 return -EFAULT;
744         return 0;
745 }
746
747 static int ethtool_set_wol(struct net_device *dev, char __user *useraddr)
748 {
749         struct ethtool_wolinfo wol;
750
751         if (!dev->ethtool_ops->set_wol)
752                 return -EOPNOTSUPP;
753
754         if (copy_from_user(&wol, useraddr, sizeof(wol)))
755                 return -EFAULT;
756
757         return dev->ethtool_ops->set_wol(dev, &wol);
758 }
759
760 static int ethtool_nway_reset(struct net_device *dev)
761 {
762         if (!dev->ethtool_ops->nway_reset)
763                 return -EOPNOTSUPP;
764
765         return dev->ethtool_ops->nway_reset(dev);
766 }
767
768 static int ethtool_get_link(struct net_device *dev, char __user *useraddr)
769 {
770         struct ethtool_value edata = { .cmd = ETHTOOL_GLINK };
771
772         if (!dev->ethtool_ops->get_link)
773                 return -EOPNOTSUPP;
774
775         edata.data = netif_running(dev) && dev->ethtool_ops->get_link(dev);
776
777         if (copy_to_user(useraddr, &edata, sizeof(edata)))
778                 return -EFAULT;
779         return 0;
780 }
781
782 static int ethtool_get_eeprom(struct net_device *dev, void __user *useraddr)
783 {
784         struct ethtool_eeprom eeprom;
785         const struct ethtool_ops *ops = dev->ethtool_ops;
786         void __user *userbuf = useraddr + sizeof(eeprom);
787         u32 bytes_remaining;
788         u8 *data;
789         int ret = 0;
790
791         if (!ops->get_eeprom || !ops->get_eeprom_len)
792                 return -EOPNOTSUPP;
793
794         if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
795                 return -EFAULT;
796
797         /* Check for wrap and zero */
798         if (eeprom.offset + eeprom.len <= eeprom.offset)
799                 return -EINVAL;
800
801         /* Check for exceeding total eeprom len */
802         if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
803                 return -EINVAL;
804
805         data = kmalloc(PAGE_SIZE, GFP_USER);
806         if (!data)
807                 return -ENOMEM;
808
809         bytes_remaining = eeprom.len;
810         while (bytes_remaining > 0) {
811                 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
812
813                 ret = ops->get_eeprom(dev, &eeprom, data);
814                 if (ret)
815                         break;
816                 if (copy_to_user(userbuf, data, eeprom.len)) {
817                         ret = -EFAULT;
818                         break;
819                 }
820                 userbuf += eeprom.len;
821                 eeprom.offset += eeprom.len;
822                 bytes_remaining -= eeprom.len;
823         }
824
825         eeprom.len = userbuf - (useraddr + sizeof(eeprom));
826         eeprom.offset -= eeprom.len;
827         if (copy_to_user(useraddr, &eeprom, sizeof(eeprom)))
828                 ret = -EFAULT;
829
830         kfree(data);
831         return ret;
832 }
833
834 static int ethtool_set_eeprom(struct net_device *dev, void __user *useraddr)
835 {
836         struct ethtool_eeprom eeprom;
837         const struct ethtool_ops *ops = dev->ethtool_ops;
838         void __user *userbuf = useraddr + sizeof(eeprom);
839         u32 bytes_remaining;
840         u8 *data;
841         int ret = 0;
842
843         if (!ops->set_eeprom || !ops->get_eeprom_len)
844                 return -EOPNOTSUPP;
845
846         if (copy_from_user(&eeprom, useraddr, sizeof(eeprom)))
847                 return -EFAULT;
848
849         /* Check for wrap and zero */
850         if (eeprom.offset + eeprom.len <= eeprom.offset)
851                 return -EINVAL;
852
853         /* Check for exceeding total eeprom len */
854         if (eeprom.offset + eeprom.len > ops->get_eeprom_len(dev))
855                 return -EINVAL;
856
857         data = kmalloc(PAGE_SIZE, GFP_USER);
858         if (!data)
859                 return -ENOMEM;
860
861         bytes_remaining = eeprom.len;
862         while (bytes_remaining > 0) {
863                 eeprom.len = min(bytes_remaining, (u32)PAGE_SIZE);
864
865                 if (copy_from_user(data, userbuf, eeprom.len)) {
866                         ret = -EFAULT;
867                         break;
868                 }
869                 ret = ops->set_eeprom(dev, &eeprom, data);
870                 if (ret)
871                         break;
872                 userbuf += eeprom.len;
873                 eeprom.offset += eeprom.len;
874                 bytes_remaining -= eeprom.len;
875         }
876
877         kfree(data);
878         return ret;
879 }
880
881 static noinline_for_stack int ethtool_get_coalesce(struct net_device *dev,
882                                                    void __user *useraddr)
883 {
884         struct ethtool_coalesce coalesce = { .cmd = ETHTOOL_GCOALESCE };
885
886         if (!dev->ethtool_ops->get_coalesce)
887                 return -EOPNOTSUPP;
888
889         dev->ethtool_ops->get_coalesce(dev, &coalesce);
890
891         if (copy_to_user(useraddr, &coalesce, sizeof(coalesce)))
892                 return -EFAULT;
893         return 0;
894 }
895
896 static noinline_for_stack int ethtool_set_coalesce(struct net_device *dev,
897                                                    void __user *useraddr)
898 {
899         struct ethtool_coalesce coalesce;
900
901         if (!dev->ethtool_ops->set_coalesce)
902                 return -EOPNOTSUPP;
903
904         if (copy_from_user(&coalesce, useraddr, sizeof(coalesce)))
905                 return -EFAULT;
906
907         return dev->ethtool_ops->set_coalesce(dev, &coalesce);
908 }
909
910 static int ethtool_get_ringparam(struct net_device *dev, void __user *useraddr)
911 {
912         struct ethtool_ringparam ringparam = { .cmd = ETHTOOL_GRINGPARAM };
913
914         if (!dev->ethtool_ops->get_ringparam)
915                 return -EOPNOTSUPP;
916
917         dev->ethtool_ops->get_ringparam(dev, &ringparam);
918
919         if (copy_to_user(useraddr, &ringparam, sizeof(ringparam)))
920                 return -EFAULT;
921         return 0;
922 }
923
924 static int ethtool_set_ringparam(struct net_device *dev, void __user *useraddr)
925 {
926         struct ethtool_ringparam ringparam;
927
928         if (!dev->ethtool_ops->set_ringparam)
929                 return -EOPNOTSUPP;
930
931         if (copy_from_user(&ringparam, useraddr, sizeof(ringparam)))
932                 return -EFAULT;
933
934         return dev->ethtool_ops->set_ringparam(dev, &ringparam);
935 }
936
937 static noinline_for_stack int ethtool_get_channels(struct net_device *dev,
938                                                    void __user *useraddr)
939 {
940         struct ethtool_channels channels = { .cmd = ETHTOOL_GCHANNELS };
941
942         if (!dev->ethtool_ops->get_channels)
943                 return -EOPNOTSUPP;
944
945         dev->ethtool_ops->get_channels(dev, &channels);
946
947         if (copy_to_user(useraddr, &channels, sizeof(channels)))
948                 return -EFAULT;
949         return 0;
950 }
951
952 static noinline_for_stack int ethtool_set_channels(struct net_device *dev,
953                                                    void __user *useraddr)
954 {
955         struct ethtool_channels channels;
956
957         if (!dev->ethtool_ops->set_channels)
958                 return -EOPNOTSUPP;
959
960         if (copy_from_user(&channels, useraddr, sizeof(channels)))
961                 return -EFAULT;
962
963         return dev->ethtool_ops->set_channels(dev, &channels);
964 }
965
966 static int ethtool_get_pauseparam(struct net_device *dev, void __user *useraddr)
967 {
968         struct ethtool_pauseparam pauseparam = { ETHTOOL_GPAUSEPARAM };
969
970         if (!dev->ethtool_ops->get_pauseparam)
971                 return -EOPNOTSUPP;
972
973         dev->ethtool_ops->get_pauseparam(dev, &pauseparam);
974
975         if (copy_to_user(useraddr, &pauseparam, sizeof(pauseparam)))
976                 return -EFAULT;
977         return 0;
978 }
979
980 static int ethtool_set_pauseparam(struct net_device *dev, void __user *useraddr)
981 {
982         struct ethtool_pauseparam pauseparam;
983
984         if (!dev->ethtool_ops->set_pauseparam)
985                 return -EOPNOTSUPP;
986
987         if (copy_from_user(&pauseparam, useraddr, sizeof(pauseparam)))
988                 return -EFAULT;
989
990         return dev->ethtool_ops->set_pauseparam(dev, &pauseparam);
991 }
992
993 static int ethtool_self_test(struct net_device *dev, char __user *useraddr)
994 {
995         struct ethtool_test test;
996         const struct ethtool_ops *ops = dev->ethtool_ops;
997         u64 *data;
998         int ret, test_len;
999
1000         if (!ops->self_test || !ops->get_sset_count)
1001                 return -EOPNOTSUPP;
1002
1003         test_len = ops->get_sset_count(dev, ETH_SS_TEST);
1004         if (test_len < 0)
1005                 return test_len;
1006         WARN_ON(test_len == 0);
1007
1008         if (copy_from_user(&test, useraddr, sizeof(test)))
1009                 return -EFAULT;
1010
1011         test.len = test_len;
1012         data = kmalloc(test_len * sizeof(u64), GFP_USER);
1013         if (!data)
1014                 return -ENOMEM;
1015
1016         ops->self_test(dev, &test, data);
1017
1018         ret = -EFAULT;
1019         if (copy_to_user(useraddr, &test, sizeof(test)))
1020                 goto out;
1021         useraddr += sizeof(test);
1022         if (copy_to_user(useraddr, data, test.len * sizeof(u64)))
1023                 goto out;
1024         ret = 0;
1025
1026  out:
1027         kfree(data);
1028         return ret;
1029 }
1030
1031 static int ethtool_get_strings(struct net_device *dev, void __user *useraddr)
1032 {
1033         struct ethtool_gstrings gstrings;
1034         u8 *data;
1035         int ret;
1036
1037         if (copy_from_user(&gstrings, useraddr, sizeof(gstrings)))
1038                 return -EFAULT;
1039
1040         ret = __ethtool_get_sset_count(dev, gstrings.string_set);
1041         if (ret < 0)
1042                 return ret;
1043
1044         gstrings.len = ret;
1045
1046         data = kmalloc(gstrings.len * ETH_GSTRING_LEN, GFP_USER);
1047         if (!data)
1048                 return -ENOMEM;
1049
1050         __ethtool_get_strings(dev, gstrings.string_set, data);
1051
1052         ret = -EFAULT;
1053         if (copy_to_user(useraddr, &gstrings, sizeof(gstrings)))
1054                 goto out;
1055         useraddr += sizeof(gstrings);
1056         if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN))
1057                 goto out;
1058         ret = 0;
1059
1060 out:
1061         kfree(data);
1062         return ret;
1063 }
1064
1065 static int ethtool_phys_id(struct net_device *dev, void __user *useraddr)
1066 {
1067         struct ethtool_value id;
1068         static bool busy;
1069         int rc;
1070
1071         if (!dev->ethtool_ops->set_phys_id)
1072                 return -EOPNOTSUPP;
1073
1074         if (busy)
1075                 return -EBUSY;
1076
1077         if (copy_from_user(&id, useraddr, sizeof(id)))
1078                 return -EFAULT;
1079
1080         rc = dev->ethtool_ops->set_phys_id(dev, ETHTOOL_ID_ACTIVE);
1081         if (rc < 0)
1082                 return rc;
1083
1084         /* Drop the RTNL lock while waiting, but prevent reentry or
1085          * removal of the device.
1086          */
1087         busy = true;
1088         dev_hold(dev);
1089         rtnl_unlock();
1090
1091         if (rc == 0) {
1092                 /* Driver will handle this itself */
1093                 schedule_timeout_interruptible(
1094                         id.data ? (id.data * HZ) : MAX_SCHEDULE_TIMEOUT);
1095         } else {
1096                 /* Driver expects to be called at twice the frequency in rc */
1097                 int n = rc * 2, i, interval = HZ / n;
1098
1099                 /* Count down seconds */
1100                 do {
1101                         /* Count down iterations per second */
1102                         i = n;
1103                         do {
1104                                 rtnl_lock();
1105                                 rc = dev->ethtool_ops->set_phys_id(dev,
1106                                     (i & 1) ? ETHTOOL_ID_OFF : ETHTOOL_ID_ON);
1107                                 rtnl_unlock();
1108                                 if (rc)
1109                                         break;
1110                                 schedule_timeout_interruptible(interval);
1111                         } while (!signal_pending(current) && --i != 0);
1112                 } while (!signal_pending(current) &&
1113                          (id.data == 0 || --id.data != 0));
1114         }
1115
1116         rtnl_lock();
1117         dev_put(dev);
1118         busy = false;
1119
1120         (void)dev->ethtool_ops->set_phys_id(dev, ETHTOOL_ID_INACTIVE);
1121         return rc;
1122 }
1123
1124 static int ethtool_get_stats(struct net_device *dev, void __user *useraddr)
1125 {
1126         struct ethtool_stats stats;
1127         const struct ethtool_ops *ops = dev->ethtool_ops;
1128         u64 *data;
1129         int ret, n_stats;
1130
1131         if (!ops->get_ethtool_stats || !ops->get_sset_count)
1132                 return -EOPNOTSUPP;
1133
1134         n_stats = ops->get_sset_count(dev, ETH_SS_STATS);
1135         if (n_stats < 0)
1136                 return n_stats;
1137         WARN_ON(n_stats == 0);
1138
1139         if (copy_from_user(&stats, useraddr, sizeof(stats)))
1140                 return -EFAULT;
1141
1142         stats.n_stats = n_stats;
1143         data = kmalloc(n_stats * sizeof(u64), GFP_USER);
1144         if (!data)
1145                 return -ENOMEM;
1146
1147         ops->get_ethtool_stats(dev, &stats, data);
1148
1149         ret = -EFAULT;
1150         if (copy_to_user(useraddr, &stats, sizeof(stats)))
1151                 goto out;
1152         useraddr += sizeof(stats);
1153         if (copy_to_user(useraddr, data, stats.n_stats * sizeof(u64)))
1154                 goto out;
1155         ret = 0;
1156
1157  out:
1158         kfree(data);
1159         return ret;
1160 }
1161
1162 static int ethtool_get_perm_addr(struct net_device *dev, void __user *useraddr)
1163 {
1164         struct ethtool_perm_addr epaddr;
1165
1166         if (copy_from_user(&epaddr, useraddr, sizeof(epaddr)))
1167                 return -EFAULT;
1168
1169         if (epaddr.size < dev->addr_len)
1170                 return -ETOOSMALL;
1171         epaddr.size = dev->addr_len;
1172
1173         if (copy_to_user(useraddr, &epaddr, sizeof(epaddr)))
1174                 return -EFAULT;
1175         useraddr += sizeof(epaddr);
1176         if (copy_to_user(useraddr, dev->perm_addr, epaddr.size))
1177                 return -EFAULT;
1178         return 0;
1179 }
1180
1181 static int ethtool_get_value(struct net_device *dev, char __user *useraddr,
1182                              u32 cmd, u32 (*actor)(struct net_device *))
1183 {
1184         struct ethtool_value edata = { .cmd = cmd };
1185
1186         if (!actor)
1187                 return -EOPNOTSUPP;
1188
1189         edata.data = actor(dev);
1190
1191         if (copy_to_user(useraddr, &edata, sizeof(edata)))
1192                 return -EFAULT;
1193         return 0;
1194 }
1195
1196 static int ethtool_set_value_void(struct net_device *dev, char __user *useraddr,
1197                              void (*actor)(struct net_device *, u32))
1198 {
1199         struct ethtool_value edata;
1200
1201         if (!actor)
1202                 return -EOPNOTSUPP;
1203
1204         if (copy_from_user(&edata, useraddr, sizeof(edata)))
1205                 return -EFAULT;
1206
1207         actor(dev, edata.data);
1208         return 0;
1209 }
1210
1211 static int ethtool_set_value(struct net_device *dev, char __user *useraddr,
1212                              int (*actor)(struct net_device *, u32))
1213 {
1214         struct ethtool_value edata;
1215
1216         if (!actor)
1217                 return -EOPNOTSUPP;
1218
1219         if (copy_from_user(&edata, useraddr, sizeof(edata)))
1220                 return -EFAULT;
1221
1222         return actor(dev, edata.data);
1223 }
1224
1225 static noinline_for_stack int ethtool_flash_device(struct net_device *dev,
1226                                                    char __user *useraddr)
1227 {
1228         struct ethtool_flash efl;
1229
1230         if (copy_from_user(&efl, useraddr, sizeof(efl)))
1231                 return -EFAULT;
1232
1233         if (!dev->ethtool_ops->flash_device)
1234                 return -EOPNOTSUPP;
1235
1236         return dev->ethtool_ops->flash_device(dev, &efl);
1237 }
1238
1239 static int ethtool_set_dump(struct net_device *dev,
1240                         void __user *useraddr)
1241 {
1242         struct ethtool_dump dump;
1243
1244         if (!dev->ethtool_ops->set_dump)
1245                 return -EOPNOTSUPP;
1246
1247         if (copy_from_user(&dump, useraddr, sizeof(dump)))
1248                 return -EFAULT;
1249
1250         return dev->ethtool_ops->set_dump(dev, &dump);
1251 }
1252
1253 static int ethtool_get_dump_flag(struct net_device *dev,
1254                                 void __user *useraddr)
1255 {
1256         int ret;
1257         struct ethtool_dump dump;
1258         const struct ethtool_ops *ops = dev->ethtool_ops;
1259
1260         if (!dev->ethtool_ops->get_dump_flag)
1261                 return -EOPNOTSUPP;
1262
1263         if (copy_from_user(&dump, useraddr, sizeof(dump)))
1264                 return -EFAULT;
1265
1266         ret = ops->get_dump_flag(dev, &dump);
1267         if (ret)
1268                 return ret;
1269
1270         if (copy_to_user(useraddr, &dump, sizeof(dump)))
1271                 return -EFAULT;
1272         return 0;
1273 }
1274
1275 static int ethtool_get_dump_data(struct net_device *dev,
1276                                 void __user *useraddr)
1277 {
1278         int ret;
1279         __u32 len;
1280         struct ethtool_dump dump, tmp;
1281         const struct ethtool_ops *ops = dev->ethtool_ops;
1282         void *data = NULL;
1283
1284         if (!dev->ethtool_ops->get_dump_data ||
1285                 !dev->ethtool_ops->get_dump_flag)
1286                 return -EOPNOTSUPP;
1287
1288         if (copy_from_user(&dump, useraddr, sizeof(dump)))
1289                 return -EFAULT;
1290
1291         memset(&tmp, 0, sizeof(tmp));
1292         tmp.cmd = ETHTOOL_GET_DUMP_FLAG;
1293         ret = ops->get_dump_flag(dev, &tmp);
1294         if (ret)
1295                 return ret;
1296
1297         len = (tmp.len > dump.len) ? dump.len : tmp.len;
1298         if (!len)
1299                 return -EFAULT;
1300
1301         data = vzalloc(tmp.len);
1302         if (!data)
1303                 return -ENOMEM;
1304         ret = ops->get_dump_data(dev, &dump, data);
1305         if (ret)
1306                 goto out;
1307
1308         if (copy_to_user(useraddr, &dump, sizeof(dump))) {
1309                 ret = -EFAULT;
1310                 goto out;
1311         }
1312         useraddr += offsetof(struct ethtool_dump, data);
1313         if (copy_to_user(useraddr, data, len))
1314                 ret = -EFAULT;
1315 out:
1316         vfree(data);
1317         return ret;
1318 }
1319
1320 /* The main entry point in this file.  Called from net/core/dev.c */
1321
1322 int dev_ethtool(struct net *net, struct ifreq *ifr)
1323 {
1324         struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
1325         void __user *useraddr = ifr->ifr_data;
1326         u32 ethcmd;
1327         int rc;
1328         u32 old_features;
1329
1330         if (!dev || !netif_device_present(dev))
1331                 return -ENODEV;
1332
1333         if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
1334                 return -EFAULT;
1335
1336         if (!dev->ethtool_ops) {
1337                 /* ETHTOOL_GDRVINFO does not require any driver support.
1338                  * It is also unprivileged and does not change anything,
1339                  * so we can take a shortcut to it. */
1340                 if (ethcmd == ETHTOOL_GDRVINFO)
1341                         return ethtool_get_drvinfo(dev, useraddr);
1342                 else
1343                         return -EOPNOTSUPP;
1344         }
1345
1346         /* Allow some commands to be done by anyone */
1347         switch (ethcmd) {
1348         case ETHTOOL_GSET:
1349         case ETHTOOL_GDRVINFO:
1350         case ETHTOOL_GMSGLVL:
1351         case ETHTOOL_GCOALESCE:
1352         case ETHTOOL_GRINGPARAM:
1353         case ETHTOOL_GPAUSEPARAM:
1354         case ETHTOOL_GRXCSUM:
1355         case ETHTOOL_GTXCSUM:
1356         case ETHTOOL_GSG:
1357         case ETHTOOL_GSTRINGS:
1358         case ETHTOOL_GTSO:
1359         case ETHTOOL_GPERMADDR:
1360         case ETHTOOL_GUFO:
1361         case ETHTOOL_GGSO:
1362         case ETHTOOL_GGRO:
1363         case ETHTOOL_GFLAGS:
1364         case ETHTOOL_GPFLAGS:
1365         case ETHTOOL_GRXFH:
1366         case ETHTOOL_GRXRINGS:
1367         case ETHTOOL_GRXCLSRLCNT:
1368         case ETHTOOL_GRXCLSRULE:
1369         case ETHTOOL_GRXCLSRLALL:
1370         case ETHTOOL_GFEATURES:
1371                 break;
1372         default:
1373                 if (!capable(CAP_NET_ADMIN))
1374                         return -EPERM;
1375         }
1376
1377         if (dev->ethtool_ops->begin) {
1378                 rc = dev->ethtool_ops->begin(dev);
1379                 if (rc  < 0)
1380                         return rc;
1381         }
1382         old_features = dev->features;
1383
1384         switch (ethcmd) {
1385         case ETHTOOL_GSET:
1386                 rc = ethtool_get_settings(dev, useraddr);
1387                 break;
1388         case ETHTOOL_SSET:
1389                 rc = ethtool_set_settings(dev, useraddr);
1390                 break;
1391         case ETHTOOL_GDRVINFO:
1392                 rc = ethtool_get_drvinfo(dev, useraddr);
1393                 break;
1394         case ETHTOOL_GREGS:
1395                 rc = ethtool_get_regs(dev, useraddr);
1396                 break;
1397         case ETHTOOL_GWOL:
1398                 rc = ethtool_get_wol(dev, useraddr);
1399                 break;
1400         case ETHTOOL_SWOL:
1401                 rc = ethtool_set_wol(dev, useraddr);
1402                 break;
1403         case ETHTOOL_GMSGLVL:
1404                 rc = ethtool_get_value(dev, useraddr, ethcmd,
1405                                        dev->ethtool_ops->get_msglevel);
1406                 break;
1407         case ETHTOOL_SMSGLVL:
1408                 rc = ethtool_set_value_void(dev, useraddr,
1409                                        dev->ethtool_ops->set_msglevel);
1410                 break;
1411         case ETHTOOL_NWAY_RST:
1412                 rc = ethtool_nway_reset(dev);
1413                 break;
1414         case ETHTOOL_GLINK:
1415                 rc = ethtool_get_link(dev, useraddr);
1416                 break;
1417         case ETHTOOL_GEEPROM:
1418                 rc = ethtool_get_eeprom(dev, useraddr);
1419                 break;
1420         case ETHTOOL_SEEPROM:
1421                 rc = ethtool_set_eeprom(dev, useraddr);
1422                 break;
1423         case ETHTOOL_GCOALESCE:
1424                 rc = ethtool_get_coalesce(dev, useraddr);
1425                 break;
1426         case ETHTOOL_SCOALESCE:
1427                 rc = ethtool_set_coalesce(dev, useraddr);
1428                 break;
1429         case ETHTOOL_GRINGPARAM:
1430                 rc = ethtool_get_ringparam(dev, useraddr);
1431                 break;
1432         case ETHTOOL_SRINGPARAM:
1433                 rc = ethtool_set_ringparam(dev, useraddr);
1434                 break;
1435         case ETHTOOL_GPAUSEPARAM:
1436                 rc = ethtool_get_pauseparam(dev, useraddr);
1437                 break;
1438         case ETHTOOL_SPAUSEPARAM:
1439                 rc = ethtool_set_pauseparam(dev, useraddr);
1440                 break;
1441         case ETHTOOL_TEST:
1442                 rc = ethtool_self_test(dev, useraddr);
1443                 break;
1444         case ETHTOOL_GSTRINGS:
1445                 rc = ethtool_get_strings(dev, useraddr);
1446                 break;
1447         case ETHTOOL_PHYS_ID:
1448                 rc = ethtool_phys_id(dev, useraddr);
1449                 break;
1450         case ETHTOOL_GSTATS:
1451                 rc = ethtool_get_stats(dev, useraddr);
1452                 break;
1453         case ETHTOOL_GPERMADDR:
1454                 rc = ethtool_get_perm_addr(dev, useraddr);
1455                 break;
1456         case ETHTOOL_GFLAGS:
1457                 rc = ethtool_get_value(dev, useraddr, ethcmd,
1458                                         __ethtool_get_flags);
1459                 break;
1460         case ETHTOOL_SFLAGS:
1461                 rc = ethtool_set_value(dev, useraddr, __ethtool_set_flags);
1462                 break;
1463         case ETHTOOL_GPFLAGS:
1464                 rc = ethtool_get_value(dev, useraddr, ethcmd,
1465                                        dev->ethtool_ops->get_priv_flags);
1466                 break;
1467         case ETHTOOL_SPFLAGS:
1468                 rc = ethtool_set_value(dev, useraddr,
1469                                        dev->ethtool_ops->set_priv_flags);
1470                 break;
1471         case ETHTOOL_GRXFH:
1472         case ETHTOOL_GRXRINGS:
1473         case ETHTOOL_GRXCLSRLCNT:
1474         case ETHTOOL_GRXCLSRULE:
1475         case ETHTOOL_GRXCLSRLALL:
1476                 rc = ethtool_get_rxnfc(dev, ethcmd, useraddr);
1477                 break;
1478         case ETHTOOL_SRXFH:
1479         case ETHTOOL_SRXCLSRLDEL:
1480         case ETHTOOL_SRXCLSRLINS:
1481                 rc = ethtool_set_rxnfc(dev, ethcmd, useraddr);
1482                 break;
1483         case ETHTOOL_FLASHDEV:
1484                 rc = ethtool_flash_device(dev, useraddr);
1485                 break;
1486         case ETHTOOL_RESET:
1487                 rc = ethtool_reset(dev, useraddr);
1488                 break;
1489         case ETHTOOL_SRXNTUPLE:
1490                 rc = ethtool_set_rx_ntuple(dev, useraddr);
1491                 break;
1492         case ETHTOOL_GSSET_INFO:
1493                 rc = ethtool_get_sset_info(dev, useraddr);
1494                 break;
1495         case ETHTOOL_GRXFHINDIR:
1496                 rc = ethtool_get_rxfh_indir(dev, useraddr);
1497                 break;
1498         case ETHTOOL_SRXFHINDIR:
1499                 rc = ethtool_set_rxfh_indir(dev, useraddr);
1500                 break;
1501         case ETHTOOL_GFEATURES:
1502                 rc = ethtool_get_features(dev, useraddr);
1503                 break;
1504         case ETHTOOL_SFEATURES:
1505                 rc = ethtool_set_features(dev, useraddr);
1506                 break;
1507         case ETHTOOL_GTXCSUM:
1508         case ETHTOOL_GRXCSUM:
1509         case ETHTOOL_GSG:
1510         case ETHTOOL_GTSO:
1511         case ETHTOOL_GUFO:
1512         case ETHTOOL_GGSO:
1513         case ETHTOOL_GGRO:
1514                 rc = ethtool_get_one_feature(dev, useraddr, ethcmd);
1515                 break;
1516         case ETHTOOL_STXCSUM:
1517         case ETHTOOL_SRXCSUM:
1518         case ETHTOOL_SSG:
1519         case ETHTOOL_STSO:
1520         case ETHTOOL_SUFO:
1521         case ETHTOOL_SGSO:
1522         case ETHTOOL_SGRO:
1523                 rc = ethtool_set_one_feature(dev, useraddr, ethcmd);
1524                 break;
1525         case ETHTOOL_GCHANNELS:
1526                 rc = ethtool_get_channels(dev, useraddr);
1527                 break;
1528         case ETHTOOL_SCHANNELS:
1529                 rc = ethtool_set_channels(dev, useraddr);
1530                 break;
1531         case ETHTOOL_SET_DUMP:
1532                 rc = ethtool_set_dump(dev, useraddr);
1533                 break;
1534         case ETHTOOL_GET_DUMP_FLAG:
1535                 rc = ethtool_get_dump_flag(dev, useraddr);
1536                 break;
1537         case ETHTOOL_GET_DUMP_DATA:
1538                 rc = ethtool_get_dump_data(dev, useraddr);
1539                 break;
1540         default:
1541                 rc = -EOPNOTSUPP;
1542         }
1543
1544         if (dev->ethtool_ops->complete)
1545                 dev->ethtool_ops->complete(dev);
1546
1547         if (old_features != dev->features)
1548                 netdev_features_change(dev);
1549
1550         return rc;
1551 }