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