1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kmod.h>
3 #include <linux/netdevice.h>
4 #include <linux/inetdevice.h>
5 #include <linux/etherdevice.h>
6 #include <linux/rtnetlink.h>
7 #include <linux/net_tstamp.h>
8 #include <linux/phylib_stubs.h>
9 #include <linux/wireless.h>
10 #include <linux/if_bridge.h>
11 #include <net/dsa_stubs.h>
17 * Map an interface index to its name (SIOCGIFNAME)
21 * We need this ioctl for efficient implementation of the
22 * if_indextoname() function required by the IPv6 API. Without
23 * it, we would have to search all the interfaces to find a
27 static int dev_ifname(struct net *net, struct ifreq *ifr)
29 ifr->ifr_name[IFNAMSIZ-1] = 0;
30 return netdev_get_name(net, ifr->ifr_name, ifr->ifr_ifindex);
34 * Perform a SIOCGIFCONF call. This structure will change
35 * size eventually, and there is nothing I can do about it.
36 * Thus we will need a 'compatibility mode'.
38 int dev_ifconf(struct net *net, struct ifconf __user *uifc)
40 struct net_device *dev;
43 int len, total = 0, done;
45 /* both the ifconf and the ifreq structures are slightly different */
46 if (in_compat_syscall()) {
47 struct compat_ifconf ifc32;
49 if (copy_from_user(&ifc32, uifc, sizeof(struct compat_ifconf)))
52 pos = compat_ptr(ifc32.ifcbuf);
54 size = sizeof(struct compat_ifreq);
58 if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
63 size = sizeof(struct ifreq);
66 /* Loop over the interfaces, and write an info block for each. */
68 for_each_netdev(net, dev) {
70 done = inet_gifconf(dev, NULL, 0, size);
72 done = inet_gifconf(dev, pos + total,
82 return put_user(total, &uifc->ifc_len);
85 static int dev_getifmap(struct net_device *dev, struct ifreq *ifr)
87 struct ifmap *ifmap = &ifr->ifr_map;
89 if (in_compat_syscall()) {
90 struct compat_ifmap *cifmap = (struct compat_ifmap *)ifmap;
92 cifmap->mem_start = dev->mem_start;
93 cifmap->mem_end = dev->mem_end;
94 cifmap->base_addr = dev->base_addr;
95 cifmap->irq = dev->irq;
96 cifmap->dma = dev->dma;
97 cifmap->port = dev->if_port;
102 ifmap->mem_start = dev->mem_start;
103 ifmap->mem_end = dev->mem_end;
104 ifmap->base_addr = dev->base_addr;
105 ifmap->irq = dev->irq;
106 ifmap->dma = dev->dma;
107 ifmap->port = dev->if_port;
112 static int dev_setifmap(struct net_device *dev, struct ifreq *ifr)
114 struct compat_ifmap *cifmap = (struct compat_ifmap *)&ifr->ifr_map;
116 if (!dev->netdev_ops->ndo_set_config)
119 if (in_compat_syscall()) {
120 struct ifmap ifmap = {
121 .mem_start = cifmap->mem_start,
122 .mem_end = cifmap->mem_end,
123 .base_addr = cifmap->base_addr,
126 .port = cifmap->port,
129 return dev->netdev_ops->ndo_set_config(dev, &ifmap);
132 return dev->netdev_ops->ndo_set_config(dev, &ifr->ifr_map);
136 * Perform the SIOCxIFxxx calls, inside rcu_read_lock()
138 static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd)
141 struct net_device *dev = dev_get_by_name_rcu(net, ifr->ifr_name);
147 case SIOCGIFFLAGS: /* Get interface flags */
148 ifr->ifr_flags = (short) dev_get_flags(dev);
151 case SIOCGIFMETRIC: /* Get the metric on the interface
152 (currently unused) */
156 case SIOCGIFMTU: /* Get the MTU of a device */
157 ifr->ifr_mtu = dev->mtu;
165 return dev_getifmap(dev, ifr);
168 ifr->ifr_ifindex = dev->ifindex;
172 ifr->ifr_qlen = dev->tx_queue_len;
176 /* dev_ioctl() should ensure this case
187 static int net_hwtstamp_validate(const struct kernel_hwtstamp_config *cfg)
189 enum hwtstamp_tx_types tx_type;
190 enum hwtstamp_rx_filters rx_filter;
191 int tx_type_valid = 0;
192 int rx_filter_valid = 0;
194 if (cfg->flags & ~HWTSTAMP_FLAG_MASK)
197 tx_type = cfg->tx_type;
198 rx_filter = cfg->rx_filter;
201 case HWTSTAMP_TX_OFF:
203 case HWTSTAMP_TX_ONESTEP_SYNC:
204 case HWTSTAMP_TX_ONESTEP_P2P:
207 case __HWTSTAMP_TX_CNT:
208 /* not a real value */
213 case HWTSTAMP_FILTER_NONE:
214 case HWTSTAMP_FILTER_ALL:
215 case HWTSTAMP_FILTER_SOME:
216 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
217 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
218 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
219 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
220 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
221 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
222 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
223 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
224 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
225 case HWTSTAMP_FILTER_PTP_V2_EVENT:
226 case HWTSTAMP_FILTER_PTP_V2_SYNC:
227 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
228 case HWTSTAMP_FILTER_NTP_ALL:
231 case __HWTSTAMP_FILTER_CNT:
232 /* not a real value */
236 if (!tx_type_valid || !rx_filter_valid)
242 static int dev_eth_ioctl(struct net_device *dev,
243 struct ifreq *ifr, unsigned int cmd)
245 const struct net_device_ops *ops = dev->netdev_ops;
247 if (!ops->ndo_eth_ioctl)
250 if (!netif_device_present(dev))
253 return ops->ndo_eth_ioctl(dev, ifr, cmd);
257 * dev_get_hwtstamp_phylib() - Get hardware timestamping settings of NIC
258 * or of attached phylib PHY
259 * @dev: Network device
260 * @cfg: Timestamping configuration structure
262 * Helper for calling the default hardware provider timestamping.
264 * Note: phy_mii_ioctl() only handles SIOCSHWTSTAMP (not SIOCGHWTSTAMP), and
265 * there only exists a phydev->mii_ts->hwtstamp() method. So this will return
266 * -EOPNOTSUPP for phylib for now, which is still more accurate than letting
267 * the netdev handle the GET request.
269 static int dev_get_hwtstamp_phylib(struct net_device *dev,
270 struct kernel_hwtstamp_config *cfg)
272 if (phy_is_default_hwtstamp(dev->phydev))
273 return phy_hwtstamp_get(dev->phydev, cfg);
275 return dev->netdev_ops->ndo_hwtstamp_get(dev, cfg);
278 static int dev_get_hwtstamp(struct net_device *dev, struct ifreq *ifr)
280 const struct net_device_ops *ops = dev->netdev_ops;
281 struct kernel_hwtstamp_config kernel_cfg = {};
282 struct hwtstamp_config cfg;
285 if (!ops->ndo_hwtstamp_get)
286 return dev_eth_ioctl(dev, ifr, SIOCGHWTSTAMP); /* legacy */
288 if (!netif_device_present(dev))
291 kernel_cfg.ifr = ifr;
292 err = dev_get_hwtstamp_phylib(dev, &kernel_cfg);
296 /* If the request was resolved through an unconverted driver, omit
297 * the copy_to_user(), since the implementation has already done that
299 if (!kernel_cfg.copied_to_user) {
300 hwtstamp_config_from_kernel(&cfg, &kernel_cfg);
302 if (copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)))
310 * dev_set_hwtstamp_phylib() - Change hardware timestamping of NIC
311 * or of attached phylib PHY
312 * @dev: Network device
313 * @cfg: Timestamping configuration structure
314 * @extack: Netlink extended ack message structure, for error reporting
316 * Helper for enforcing a common policy that phylib timestamping, if available,
317 * should take precedence in front of hardware timestamping provided by the
318 * netdev. If the netdev driver needs to perform specific actions even for PHY
319 * timestamping to work properly (a switch port must trap the timestamped
320 * frames and not forward them), it must set dev->see_all_hwtstamp_requests.
322 int dev_set_hwtstamp_phylib(struct net_device *dev,
323 struct kernel_hwtstamp_config *cfg,
324 struct netlink_ext_ack *extack)
326 const struct net_device_ops *ops = dev->netdev_ops;
327 bool phy_ts = phy_is_default_hwtstamp(dev->phydev);
328 struct kernel_hwtstamp_config old_cfg = {};
329 bool changed = false;
332 cfg->source = phy_ts ? HWTSTAMP_SOURCE_PHYLIB : HWTSTAMP_SOURCE_NETDEV;
334 if (phy_ts && dev->see_all_hwtstamp_requests) {
335 err = ops->ndo_hwtstamp_get(dev, &old_cfg);
340 if (!phy_ts || dev->see_all_hwtstamp_requests) {
341 err = ops->ndo_hwtstamp_set(dev, cfg, extack);
344 netdev_err(dev, "%s\n", extack->_msg);
349 if (phy_ts && dev->see_all_hwtstamp_requests)
350 changed = kernel_hwtstamp_config_changed(&old_cfg, cfg);
353 err = phy_hwtstamp_set(dev->phydev, cfg, extack);
356 ops->ndo_hwtstamp_set(dev, &old_cfg, NULL);
364 static int dev_set_hwtstamp(struct net_device *dev, struct ifreq *ifr)
366 const struct net_device_ops *ops = dev->netdev_ops;
367 struct kernel_hwtstamp_config kernel_cfg = {};
368 struct netlink_ext_ack extack = {};
369 struct hwtstamp_config cfg;
372 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
375 hwtstamp_config_to_kernel(&kernel_cfg, &cfg);
376 kernel_cfg.ifr = ifr;
378 err = net_hwtstamp_validate(&kernel_cfg);
382 err = dsa_conduit_hwtstamp_validate(dev, &kernel_cfg, &extack);
385 netdev_err(dev, "%s\n", extack._msg);
389 if (!ops->ndo_hwtstamp_set)
390 return dev_eth_ioctl(dev, ifr, SIOCSHWTSTAMP); /* legacy */
392 if (!netif_device_present(dev))
395 err = dev_set_hwtstamp_phylib(dev, &kernel_cfg, &extack);
399 /* The driver may have modified the configuration, so copy the
400 * updated version of it back to user space
402 if (!kernel_cfg.copied_to_user) {
403 hwtstamp_config_from_kernel(&cfg, &kernel_cfg);
405 if (copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)))
412 static int generic_hwtstamp_ioctl_lower(struct net_device *dev, int cmd,
413 struct kernel_hwtstamp_config *kernel_cfg)
418 strscpy_pad(ifrr.ifr_name, dev->name, IFNAMSIZ);
419 ifrr.ifr_ifru = kernel_cfg->ifr->ifr_ifru;
421 err = dev_eth_ioctl(dev, &ifrr, cmd);
425 kernel_cfg->ifr->ifr_ifru = ifrr.ifr_ifru;
426 kernel_cfg->copied_to_user = true;
431 int generic_hwtstamp_get_lower(struct net_device *dev,
432 struct kernel_hwtstamp_config *kernel_cfg)
434 const struct net_device_ops *ops = dev->netdev_ops;
436 if (!netif_device_present(dev))
439 if (ops->ndo_hwtstamp_get)
440 return dev_get_hwtstamp_phylib(dev, kernel_cfg);
442 /* Legacy path: unconverted lower driver */
443 return generic_hwtstamp_ioctl_lower(dev, SIOCGHWTSTAMP, kernel_cfg);
445 EXPORT_SYMBOL(generic_hwtstamp_get_lower);
447 int generic_hwtstamp_set_lower(struct net_device *dev,
448 struct kernel_hwtstamp_config *kernel_cfg,
449 struct netlink_ext_ack *extack)
451 const struct net_device_ops *ops = dev->netdev_ops;
453 if (!netif_device_present(dev))
456 if (ops->ndo_hwtstamp_set)
457 return dev_set_hwtstamp_phylib(dev, kernel_cfg, extack);
459 /* Legacy path: unconverted lower driver */
460 return generic_hwtstamp_ioctl_lower(dev, SIOCSHWTSTAMP, kernel_cfg);
462 EXPORT_SYMBOL(generic_hwtstamp_set_lower);
464 static int dev_siocbond(struct net_device *dev,
465 struct ifreq *ifr, unsigned int cmd)
467 const struct net_device_ops *ops = dev->netdev_ops;
469 if (ops->ndo_siocbond) {
470 if (netif_device_present(dev))
471 return ops->ndo_siocbond(dev, ifr, cmd);
479 static int dev_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
480 void __user *data, unsigned int cmd)
482 const struct net_device_ops *ops = dev->netdev_ops;
484 if (ops->ndo_siocdevprivate) {
485 if (netif_device_present(dev))
486 return ops->ndo_siocdevprivate(dev, ifr, data, cmd);
494 static int dev_siocwandev(struct net_device *dev, struct if_settings *ifs)
496 const struct net_device_ops *ops = dev->netdev_ops;
498 if (ops->ndo_siocwandev) {
499 if (netif_device_present(dev))
500 return ops->ndo_siocwandev(dev, ifs);
509 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
511 static int dev_ifsioc(struct net *net, struct ifreq *ifr, void __user *data,
515 struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
516 const struct net_device_ops *ops;
517 netdevice_tracker dev_tracker;
522 ops = dev->netdev_ops;
525 case SIOCSIFFLAGS: /* Set interface flags */
526 return dev_change_flags(dev, ifr->ifr_flags, NULL);
528 case SIOCSIFMETRIC: /* Set the metric on the interface
529 (currently unused) */
532 case SIOCSIFMTU: /* Set the MTU of a device */
533 return dev_set_mtu(dev, ifr->ifr_mtu);
536 if (dev->addr_len > sizeof(struct sockaddr))
538 return dev_set_mac_address_user(dev, &ifr->ifr_hwaddr, NULL);
540 case SIOCSIFHWBROADCAST:
541 if (ifr->ifr_hwaddr.sa_family != dev->type)
543 memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
544 min(sizeof(ifr->ifr_hwaddr.sa_data_min),
545 (size_t)dev->addr_len));
546 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
550 return dev_setifmap(dev, ifr);
553 if (!ops->ndo_set_rx_mode ||
554 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
556 if (!netif_device_present(dev))
558 return dev_mc_add_global(dev, ifr->ifr_hwaddr.sa_data);
561 if (!ops->ndo_set_rx_mode ||
562 ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
564 if (!netif_device_present(dev))
566 return dev_mc_del_global(dev, ifr->ifr_hwaddr.sa_data);
569 if (ifr->ifr_qlen < 0)
571 return dev_change_tx_queue_len(dev, ifr->ifr_qlen);
574 ifr->ifr_newname[IFNAMSIZ-1] = '\0';
575 return dev_change_name(dev, ifr->ifr_newname);
578 return dev_siocwandev(dev, &ifr->ifr_settings);
582 if (!netif_device_present(dev))
584 if (!netif_is_bridge_master(dev))
586 netdev_hold(dev, &dev_tracker, GFP_KERNEL);
588 err = br_ioctl_call(net, netdev_priv(dev), cmd, ifr, NULL);
589 netdev_put(dev, &dev_tracker);
593 case SIOCDEVPRIVATE ... SIOCDEVPRIVATE + 15:
594 return dev_siocdevprivate(dev, ifr, data, cmd);
597 return dev_set_hwtstamp(dev, ifr);
600 return dev_get_hwtstamp(dev, ifr);
605 return dev_eth_ioctl(dev, ifr, cmd);
607 case SIOCBONDENSLAVE:
608 case SIOCBONDRELEASE:
609 case SIOCBONDSETHWADDR:
610 case SIOCBONDSLAVEINFOQUERY:
611 case SIOCBONDINFOQUERY:
612 case SIOCBONDCHANGEACTIVE:
613 return dev_siocbond(dev, ifr, cmd);
623 * dev_load - load a network module
624 * @net: the applicable net namespace
625 * @name: name of interface
627 * If a network interface is not present and the process has suitable
628 * privileges this function loads the module. If module loading is not
629 * available in this kernel then it becomes a nop.
632 void dev_load(struct net *net, const char *name)
634 struct net_device *dev;
638 dev = dev_get_by_name_rcu(net, name);
642 if (no_module && capable(CAP_NET_ADMIN))
643 no_module = request_module("netdev-%s", name);
644 if (no_module && capable(CAP_SYS_MODULE))
645 request_module("%s", name);
647 EXPORT_SYMBOL(dev_load);
650 * This function handles all "interface"-type I/O control requests. The actual
651 * 'doing' part of this is dev_ifsioc above.
655 * dev_ioctl - network device ioctl
656 * @net: the applicable net namespace
657 * @cmd: command to issue
658 * @ifr: pointer to a struct ifreq in user space
659 * @data: data exchanged with userspace
660 * @need_copyout: whether or not copy_to_user() should be called
662 * Issue ioctl functions to devices. This is normally called by the
663 * user space syscall interfaces but can sometimes be useful for
664 * other purposes. The return value is the return from the syscall if
665 * positive or a negative errno code on error.
668 int dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr,
669 void __user *data, bool *need_copyout)
675 *need_copyout = true;
676 if (cmd == SIOCGIFNAME)
677 return dev_ifname(net, ifr);
679 ifr->ifr_name[IFNAMSIZ-1] = 0;
681 colon = strchr(ifr->ifr_name, ':');
686 * See which interface the caller is talking about.
691 dev_load(net, ifr->ifr_name);
692 ret = dev_get_mac_address(&ifr->ifr_hwaddr, net, ifr->ifr_name);
698 * - can be done by all.
699 * - atomic and do not require locking.
709 dev_load(net, ifr->ifr_name);
711 ret = dev_ifsioc_locked(net, ifr, cmd);
718 dev_load(net, ifr->ifr_name);
719 ret = dev_ethtool(net, ifr, data);
726 * - require superuser power.
727 * - require strict serialization.
733 dev_load(net, ifr->ifr_name);
734 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
737 ret = dev_ifsioc(net, ifr, data, cmd);
745 * - require superuser power.
746 * - require strict serialization.
747 * - do not return a value
751 if (!capable(CAP_NET_ADMIN))
756 * - require local superuser power.
757 * - require strict serialization.
758 * - do not return a value
767 case SIOCSIFHWBROADCAST:
769 case SIOCBONDENSLAVE:
770 case SIOCBONDRELEASE:
771 case SIOCBONDSETHWADDR:
772 case SIOCBONDCHANGEACTIVE:
776 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
779 case SIOCBONDSLAVEINFOQUERY:
780 case SIOCBONDINFOQUERY:
781 dev_load(net, ifr->ifr_name);
783 ret = dev_ifsioc(net, ifr, data, cmd);
786 *need_copyout = false;
790 /* Get the per device memory space. We can add this but
791 * currently do not support it */
793 /* Set the per device memory buffer space.
794 * Not applicable in our case */
799 * Unknown or private ioctl.
802 if (cmd == SIOCWANDEV ||
803 cmd == SIOCGHWTSTAMP ||
804 (cmd >= SIOCDEVPRIVATE &&
805 cmd <= SIOCDEVPRIVATE + 15)) {
806 dev_load(net, ifr->ifr_name);
808 ret = dev_ifsioc(net, ifr, data, cmd);