xref: /linux/net/core/dev_ioctl.c (revision 8e621c9a337555c914cf1664605edfaa6f839774)
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/ptp_clock_kernel.h>
10 #include <linux/wireless.h>
11 #include <linux/if_bridge.h>
12 #include <net/dsa_stubs.h>
13 #include <net/netdev_lock.h>
14 #include <net/wext.h>
15 
16 #include "dev.h"
17 
18 /*
19  *	Map an interface index to its name (SIOCGIFNAME)
20  */
21 
22 /*
23  *	We need this ioctl for efficient implementation of the
24  *	if_indextoname() function required by the IPv6 API.  Without
25  *	it, we would have to search all the interfaces to find a
26  *	match.  --pb
27  */
28 
dev_ifname(struct net * net,struct ifreq * ifr)29 static int dev_ifname(struct net *net, struct ifreq *ifr)
30 {
31 	ifr->ifr_name[IFNAMSIZ-1] = 0;
32 	return netdev_get_name(net, ifr->ifr_name, ifr->ifr_ifindex);
33 }
34 
35 /*
36  *	Perform a SIOCGIFCONF call. This structure will change
37  *	size eventually, and there is nothing I can do about it.
38  *	Thus we will need a 'compatibility mode'.
39  */
dev_ifconf(struct net * net,struct ifconf __user * uifc)40 int dev_ifconf(struct net *net, struct ifconf __user *uifc)
41 {
42 	struct net_device *dev;
43 	void __user *pos;
44 	size_t size;
45 	int len, total = 0, done;
46 
47 	/* both the ifconf and the ifreq structures are slightly different */
48 	if (in_compat_syscall()) {
49 		struct compat_ifconf ifc32;
50 
51 		if (copy_from_user(&ifc32, uifc, sizeof(struct compat_ifconf)))
52 			return -EFAULT;
53 
54 		pos = compat_ptr(ifc32.ifcbuf);
55 		len = ifc32.ifc_len;
56 		size = sizeof(struct compat_ifreq);
57 	} else {
58 		struct ifconf ifc;
59 
60 		if (copy_from_user(&ifc, uifc, sizeof(struct ifconf)))
61 			return -EFAULT;
62 
63 		pos = ifc.ifc_buf;
64 		len = ifc.ifc_len;
65 		size = sizeof(struct ifreq);
66 	}
67 
68 	/* Loop over the interfaces, and write an info block for each. */
69 	rtnl_net_lock(net);
70 	for_each_netdev(net, dev) {
71 		if (!pos)
72 			done = inet_gifconf(dev, NULL, 0, size);
73 		else
74 			done = inet_gifconf(dev, pos + total,
75 					    len - total, size);
76 		if (done < 0) {
77 			rtnl_net_unlock(net);
78 			return -EFAULT;
79 		}
80 		total += done;
81 	}
82 	rtnl_net_unlock(net);
83 
84 	return put_user(total, &uifc->ifc_len);
85 }
86 
dev_getifmap(struct net_device * dev,struct ifreq * ifr)87 static int dev_getifmap(struct net_device *dev, struct ifreq *ifr)
88 {
89 	struct ifmap *ifmap = &ifr->ifr_map;
90 
91 	if (in_compat_syscall()) {
92 		struct compat_ifmap *cifmap = (struct compat_ifmap *)ifmap;
93 
94 		cifmap->mem_start = dev->mem_start;
95 		cifmap->mem_end   = dev->mem_end;
96 		cifmap->base_addr = dev->base_addr;
97 		cifmap->irq       = dev->irq;
98 		cifmap->dma       = dev->dma;
99 		cifmap->port      = dev->if_port;
100 
101 		return 0;
102 	}
103 
104 	ifmap->mem_start  = dev->mem_start;
105 	ifmap->mem_end    = dev->mem_end;
106 	ifmap->base_addr  = dev->base_addr;
107 	ifmap->irq        = dev->irq;
108 	ifmap->dma        = dev->dma;
109 	ifmap->port       = dev->if_port;
110 
111 	return 0;
112 }
113 
netif_setifmap(struct net_device * dev,struct ifreq * ifr)114 static int netif_setifmap(struct net_device *dev, struct ifreq *ifr)
115 {
116 	struct compat_ifmap *cifmap = (struct compat_ifmap *)&ifr->ifr_map;
117 
118 	if (!dev->netdev_ops->ndo_set_config)
119 		return -EOPNOTSUPP;
120 
121 	if (in_compat_syscall()) {
122 		struct ifmap ifmap = {
123 			.mem_start  = cifmap->mem_start,
124 			.mem_end    = cifmap->mem_end,
125 			.base_addr  = cifmap->base_addr,
126 			.irq        = cifmap->irq,
127 			.dma        = cifmap->dma,
128 			.port       = cifmap->port,
129 		};
130 
131 		return dev->netdev_ops->ndo_set_config(dev, &ifmap);
132 	}
133 
134 	return dev->netdev_ops->ndo_set_config(dev, &ifr->ifr_map);
135 }
136 
137 /*
138  *	Perform the SIOCxIFxxx calls, inside rcu_read_lock()
139  */
dev_ifsioc_locked(struct net * net,struct ifreq * ifr,unsigned int cmd)140 static int dev_ifsioc_locked(struct net *net, struct ifreq *ifr, unsigned int cmd)
141 {
142 	int err;
143 	struct net_device *dev = dev_get_by_name_rcu(net, ifr->ifr_name);
144 
145 	if (!dev)
146 		return -ENODEV;
147 
148 	switch (cmd) {
149 	case SIOCGIFFLAGS:	/* Get interface flags */
150 		ifr->ifr_flags = (short)netif_get_flags(dev);
151 		return 0;
152 
153 	case SIOCGIFMETRIC:	/* Get the metric on the interface
154 				   (currently unused) */
155 		ifr->ifr_metric = 0;
156 		return 0;
157 
158 	case SIOCGIFMTU:	/* Get the MTU of a device */
159 		ifr->ifr_mtu = dev->mtu;
160 		return 0;
161 
162 	case SIOCGIFSLAVE:
163 		err = -EINVAL;
164 		break;
165 
166 	case SIOCGIFMAP:
167 		return dev_getifmap(dev, ifr);
168 
169 	case SIOCGIFINDEX:
170 		ifr->ifr_ifindex = dev->ifindex;
171 		return 0;
172 
173 	case SIOCGIFTXQLEN:
174 		ifr->ifr_qlen = dev->tx_queue_len;
175 		return 0;
176 
177 	default:
178 		/* dev_ioctl() should ensure this case
179 		 * is never reached
180 		 */
181 		WARN_ON(1);
182 		err = -ENOTTY;
183 		break;
184 
185 	}
186 	return err;
187 }
188 
net_hwtstamp_validate(const struct kernel_hwtstamp_config * cfg)189 int net_hwtstamp_validate(const struct kernel_hwtstamp_config *cfg)
190 {
191 	enum hwtstamp_tx_types tx_type;
192 	enum hwtstamp_rx_filters rx_filter;
193 	int tx_type_valid = 0;
194 	int rx_filter_valid = 0;
195 
196 	if (cfg->flags & ~HWTSTAMP_FLAG_MASK)
197 		return -EINVAL;
198 
199 	tx_type = cfg->tx_type;
200 	rx_filter = cfg->rx_filter;
201 
202 	switch (tx_type) {
203 	case HWTSTAMP_TX_OFF:
204 	case HWTSTAMP_TX_ON:
205 	case HWTSTAMP_TX_ONESTEP_SYNC:
206 	case HWTSTAMP_TX_ONESTEP_P2P:
207 		tx_type_valid = 1;
208 		break;
209 	case __HWTSTAMP_TX_CNT:
210 		/* not a real value */
211 		break;
212 	}
213 
214 	switch (rx_filter) {
215 	case HWTSTAMP_FILTER_NONE:
216 	case HWTSTAMP_FILTER_ALL:
217 	case HWTSTAMP_FILTER_SOME:
218 	case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
219 	case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
220 	case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
221 	case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
222 	case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
223 	case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
224 	case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
225 	case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
226 	case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
227 	case HWTSTAMP_FILTER_PTP_V2_EVENT:
228 	case HWTSTAMP_FILTER_PTP_V2_SYNC:
229 	case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
230 	case HWTSTAMP_FILTER_NTP_ALL:
231 		rx_filter_valid = 1;
232 		break;
233 	case __HWTSTAMP_FILTER_CNT:
234 		/* not a real value */
235 		break;
236 	}
237 
238 	if (!tx_type_valid || !rx_filter_valid)
239 		return -ERANGE;
240 
241 	return 0;
242 }
243 
244 /**
245  * dev_get_hwtstamp_phylib() - Get hardware timestamping settings of NIC
246  *	or of attached phylib PHY
247  * @dev: Network device
248  * @cfg: Timestamping configuration structure
249  *
250  * Helper for calling the default hardware provider timestamping.
251  *
252  * Note: phy_mii_ioctl() only handles SIOCSHWTSTAMP (not SIOCGHWTSTAMP), and
253  * there only exists a phydev->mii_ts->hwtstamp() method. So this will return
254  * -EOPNOTSUPP for phylib for now, which is still more accurate than letting
255  * the netdev handle the GET request.
256  */
dev_get_hwtstamp_phylib(struct net_device * dev,struct kernel_hwtstamp_config * cfg)257 int dev_get_hwtstamp_phylib(struct net_device *dev,
258 			    struct kernel_hwtstamp_config *cfg)
259 {
260 	struct hwtstamp_provider *hwprov;
261 
262 	hwprov = rtnl_dereference(dev->hwprov);
263 	if (hwprov) {
264 		cfg->qualifier = hwprov->desc.qualifier;
265 		if (hwprov->source == HWTSTAMP_SOURCE_PHYLIB &&
266 		    hwprov->phydev)
267 			return phy_hwtstamp_get(hwprov->phydev, cfg);
268 
269 		if (hwprov->source == HWTSTAMP_SOURCE_NETDEV)
270 			return dev->netdev_ops->ndo_hwtstamp_get(dev, cfg);
271 
272 		return -EOPNOTSUPP;
273 	}
274 
275 	if (phy_is_default_hwtstamp(dev->phydev))
276 		return phy_hwtstamp_get(dev->phydev, cfg);
277 
278 	return dev->netdev_ops->ndo_hwtstamp_get(dev, cfg);
279 }
280 
dev_get_hwtstamp(struct net_device * dev,struct ifreq * ifr)281 static int dev_get_hwtstamp(struct net_device *dev, struct ifreq *ifr)
282 {
283 	const struct net_device_ops *ops = dev->netdev_ops;
284 	struct kernel_hwtstamp_config kernel_cfg = {};
285 	struct hwtstamp_config cfg;
286 	int err;
287 
288 	if (!ops->ndo_hwtstamp_get)
289 		return dev_eth_ioctl(dev, ifr, SIOCGHWTSTAMP); /* legacy */
290 
291 	if (!netif_device_present(dev))
292 		return -ENODEV;
293 
294 	kernel_cfg.ifr = ifr;
295 	netdev_lock_ops(dev);
296 	err = dev_get_hwtstamp_phylib(dev, &kernel_cfg);
297 	netdev_unlock_ops(dev);
298 	if (err)
299 		return err;
300 
301 	/* If the request was resolved through an unconverted driver, omit
302 	 * the copy_to_user(), since the implementation has already done that
303 	 */
304 	if (!kernel_cfg.copied_to_user) {
305 		hwtstamp_config_from_kernel(&cfg, &kernel_cfg);
306 
307 		if (copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)))
308 			return -EFAULT;
309 	}
310 
311 	return 0;
312 }
313 
314 /**
315  * dev_set_hwtstamp_phylib() - Change hardware timestamping of NIC
316  *	or of attached phylib PHY
317  * @dev: Network device
318  * @cfg: Timestamping configuration structure
319  * @extack: Netlink extended ack message structure, for error reporting
320  *
321  * Helper for enforcing a common policy that phylib timestamping, if available,
322  * should take precedence in front of hardware timestamping provided by the
323  * netdev. If the netdev driver needs to perform specific actions even for PHY
324  * timestamping to work properly (a switch port must trap the timestamped
325  * frames and not forward them), it must set dev->see_all_hwtstamp_requests.
326  */
dev_set_hwtstamp_phylib(struct net_device * dev,struct kernel_hwtstamp_config * cfg,struct netlink_ext_ack * extack)327 int dev_set_hwtstamp_phylib(struct net_device *dev,
328 			    struct kernel_hwtstamp_config *cfg,
329 			    struct netlink_ext_ack *extack)
330 {
331 	const struct net_device_ops *ops = dev->netdev_ops;
332 	struct kernel_hwtstamp_config old_cfg = {};
333 	struct hwtstamp_provider *hwprov;
334 	struct phy_device *phydev;
335 	bool changed = false;
336 	bool phy_ts;
337 	int err;
338 
339 	hwprov = rtnl_dereference(dev->hwprov);
340 	if (hwprov) {
341 		if (hwprov->source == HWTSTAMP_SOURCE_PHYLIB &&
342 		    hwprov->phydev) {
343 			phy_ts = true;
344 			phydev = hwprov->phydev;
345 		} else if (hwprov->source == HWTSTAMP_SOURCE_NETDEV) {
346 			phy_ts = false;
347 		} else {
348 			return -EOPNOTSUPP;
349 		}
350 
351 		cfg->qualifier = hwprov->desc.qualifier;
352 	} else {
353 		phy_ts = phy_is_default_hwtstamp(dev->phydev);
354 		if (phy_ts)
355 			phydev = dev->phydev;
356 	}
357 
358 	cfg->source = phy_ts ? HWTSTAMP_SOURCE_PHYLIB : HWTSTAMP_SOURCE_NETDEV;
359 
360 	if (phy_ts && dev->see_all_hwtstamp_requests) {
361 		err = ops->ndo_hwtstamp_get(dev, &old_cfg);
362 		if (err)
363 			return err;
364 	}
365 
366 	if (!phy_ts || dev->see_all_hwtstamp_requests) {
367 		err = ops->ndo_hwtstamp_set(dev, cfg, extack);
368 		if (err) {
369 			if (extack->_msg)
370 				netdev_err(dev, "%s\n", extack->_msg);
371 			return err;
372 		}
373 	}
374 
375 	if (phy_ts && dev->see_all_hwtstamp_requests)
376 		changed = kernel_hwtstamp_config_changed(&old_cfg, cfg);
377 
378 	if (phy_ts) {
379 		err = phy_hwtstamp_set(phydev, cfg, extack);
380 		if (err) {
381 			if (changed)
382 				ops->ndo_hwtstamp_set(dev, &old_cfg, NULL);
383 			return err;
384 		}
385 	}
386 
387 	return 0;
388 }
389 
dev_set_hwtstamp(struct net_device * dev,struct ifreq * ifr)390 static int dev_set_hwtstamp(struct net_device *dev, struct ifreq *ifr)
391 {
392 	const struct net_device_ops *ops = dev->netdev_ops;
393 	struct kernel_hwtstamp_config kernel_cfg = {};
394 	struct netlink_ext_ack extack = {};
395 	struct hwtstamp_config cfg;
396 	int err;
397 
398 	if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
399 		return -EFAULT;
400 
401 	hwtstamp_config_to_kernel(&kernel_cfg, &cfg);
402 	kernel_cfg.ifr = ifr;
403 
404 	err = net_hwtstamp_validate(&kernel_cfg);
405 	if (err)
406 		return err;
407 
408 	err = dsa_conduit_hwtstamp_validate(dev, &kernel_cfg, &extack);
409 	if (err) {
410 		if (extack._msg)
411 			netdev_err(dev, "%s\n", extack._msg);
412 		return err;
413 	}
414 
415 	if (!ops->ndo_hwtstamp_set)
416 		return dev_eth_ioctl(dev, ifr, SIOCSHWTSTAMP); /* legacy */
417 
418 	if (!netif_device_present(dev))
419 		return -ENODEV;
420 
421 	netdev_lock_ops(dev);
422 	err = dev_set_hwtstamp_phylib(dev, &kernel_cfg, &extack);
423 	netdev_unlock_ops(dev);
424 	if (err)
425 		return err;
426 
427 	/* The driver may have modified the configuration, so copy the
428 	 * updated version of it back to user space
429 	 */
430 	if (!kernel_cfg.copied_to_user) {
431 		hwtstamp_config_from_kernel(&cfg, &kernel_cfg);
432 
433 		if (copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)))
434 			return -EFAULT;
435 	}
436 
437 	return 0;
438 }
439 
generic_hwtstamp_ioctl_lower(struct net_device * dev,int cmd,struct kernel_hwtstamp_config * kernel_cfg)440 static int generic_hwtstamp_ioctl_lower(struct net_device *dev, int cmd,
441 					struct kernel_hwtstamp_config *kernel_cfg)
442 {
443 	struct ifreq ifrr;
444 	int err;
445 
446 	if (!kernel_cfg->ifr)
447 		return -EINVAL;
448 
449 	strscpy_pad(ifrr.ifr_name, dev->name, IFNAMSIZ);
450 	ifrr.ifr_ifru = kernel_cfg->ifr->ifr_ifru;
451 
452 	err = dev_eth_ioctl(dev, &ifrr, cmd);
453 	if (err)
454 		return err;
455 
456 	kernel_cfg->ifr->ifr_ifru = ifrr.ifr_ifru;
457 	kernel_cfg->copied_to_user = true;
458 
459 	return 0;
460 }
461 
generic_hwtstamp_get_lower(struct net_device * dev,struct kernel_hwtstamp_config * kernel_cfg)462 int generic_hwtstamp_get_lower(struct net_device *dev,
463 			       struct kernel_hwtstamp_config *kernel_cfg)
464 {
465 	const struct net_device_ops *ops = dev->netdev_ops;
466 
467 	if (!netif_device_present(dev))
468 		return -ENODEV;
469 
470 	if (ops->ndo_hwtstamp_get) {
471 		int err;
472 
473 		netdev_lock_ops(dev);
474 		err = dev_get_hwtstamp_phylib(dev, kernel_cfg);
475 		netdev_unlock_ops(dev);
476 
477 		return err;
478 	}
479 
480 	/* Legacy path: unconverted lower driver */
481 	return generic_hwtstamp_ioctl_lower(dev, SIOCGHWTSTAMP, kernel_cfg);
482 }
483 EXPORT_SYMBOL(generic_hwtstamp_get_lower);
484 
generic_hwtstamp_set_lower(struct net_device * dev,struct kernel_hwtstamp_config * kernel_cfg,struct netlink_ext_ack * extack)485 int generic_hwtstamp_set_lower(struct net_device *dev,
486 			       struct kernel_hwtstamp_config *kernel_cfg,
487 			       struct netlink_ext_ack *extack)
488 {
489 	const struct net_device_ops *ops = dev->netdev_ops;
490 
491 	if (!netif_device_present(dev))
492 		return -ENODEV;
493 
494 	if (ops->ndo_hwtstamp_set) {
495 		int err;
496 
497 		netdev_lock_ops(dev);
498 		err = dev_set_hwtstamp_phylib(dev, kernel_cfg, extack);
499 		netdev_unlock_ops(dev);
500 
501 		return err;
502 	}
503 
504 	/* Legacy path: unconverted lower driver */
505 	return generic_hwtstamp_ioctl_lower(dev, SIOCSHWTSTAMP, kernel_cfg);
506 }
507 EXPORT_SYMBOL(generic_hwtstamp_set_lower);
508 
dev_siocbond(struct net_device * dev,struct ifreq * ifr,unsigned int cmd)509 static int dev_siocbond(struct net_device *dev,
510 			struct ifreq *ifr, unsigned int cmd)
511 {
512 	const struct net_device_ops *ops = dev->netdev_ops;
513 
514 	if (ops->ndo_siocbond) {
515 		int ret = -ENODEV;
516 
517 		netdev_lock_ops(dev);
518 		if (netif_device_present(dev))
519 			ret = ops->ndo_siocbond(dev, ifr, cmd);
520 		netdev_unlock_ops(dev);
521 
522 		return ret;
523 	}
524 
525 	return -EOPNOTSUPP;
526 }
527 
dev_siocdevprivate(struct net_device * dev,struct ifreq * ifr,void __user * data,unsigned int cmd)528 static int dev_siocdevprivate(struct net_device *dev, struct ifreq *ifr,
529 			      void __user *data, unsigned int cmd)
530 {
531 	const struct net_device_ops *ops = dev->netdev_ops;
532 
533 	if (ops->ndo_siocdevprivate) {
534 		int ret = -ENODEV;
535 
536 		netdev_lock_ops(dev);
537 		if (netif_device_present(dev))
538 			ret = ops->ndo_siocdevprivate(dev, ifr, data, cmd);
539 		netdev_unlock_ops(dev);
540 
541 		return ret;
542 	}
543 
544 	return -EOPNOTSUPP;
545 }
546 
dev_siocwandev(struct net_device * dev,struct if_settings * ifs)547 static int dev_siocwandev(struct net_device *dev, struct if_settings *ifs)
548 {
549 	const struct net_device_ops *ops = dev->netdev_ops;
550 
551 	if (ops->ndo_siocwandev) {
552 		int ret = -ENODEV;
553 
554 		netdev_lock_ops(dev);
555 		if (netif_device_present(dev))
556 			ret = ops->ndo_siocwandev(dev, ifs);
557 		netdev_unlock_ops(dev);
558 
559 		return ret;
560 	}
561 
562 	return -EOPNOTSUPP;
563 }
564 
565 /*
566  *	Perform the SIOCxIFxxx calls, inside rtnl_net_lock()
567  */
dev_ifsioc(struct net * net,struct ifreq * ifr,void __user * data,unsigned int cmd)568 static int dev_ifsioc(struct net *net, struct ifreq *ifr, void __user *data,
569 		      unsigned int cmd)
570 {
571 	int err;
572 	struct net_device *dev = __dev_get_by_name(net, ifr->ifr_name);
573 	const struct net_device_ops *ops;
574 
575 	if (!dev)
576 		return -ENODEV;
577 
578 	ops = dev->netdev_ops;
579 
580 	switch (cmd) {
581 	case SIOCSIFFLAGS:	/* Set interface flags */
582 		return dev_change_flags(dev, ifr->ifr_flags, NULL);
583 
584 	case SIOCSIFMETRIC:	/* Set the metric on the interface
585 				   (currently unused) */
586 		return -EOPNOTSUPP;
587 
588 	case SIOCSIFMTU:	/* Set the MTU of a device */
589 		return dev_set_mtu(dev, ifr->ifr_mtu);
590 
591 	case SIOCSIFHWADDR:
592 		if (dev->addr_len > sizeof(ifr->ifr_hwaddr))
593 			return -EINVAL;
594 		return dev_set_mac_address_user(dev,
595 						(struct sockaddr_storage *)&ifr->ifr_hwaddr,
596 						NULL);
597 
598 	case SIOCSIFHWBROADCAST:
599 		if (ifr->ifr_hwaddr.sa_family != dev->type)
600 			return -EINVAL;
601 		memcpy(dev->broadcast, ifr->ifr_hwaddr.sa_data,
602 		       min(sizeof(ifr->ifr_hwaddr.sa_data_min),
603 			   (size_t)dev->addr_len));
604 		netdev_lock_ops(dev);
605 		call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
606 		netdev_unlock_ops(dev);
607 		return 0;
608 
609 	case SIOCSIFMAP:
610 		netdev_lock_ops(dev);
611 		err = netif_setifmap(dev, ifr);
612 		netdev_unlock_ops(dev);
613 		return err;
614 
615 	case SIOCADDMULTI:
616 		if (!ops->ndo_set_rx_mode ||
617 		    ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
618 			return -EINVAL;
619 		if (!netif_device_present(dev))
620 			return -ENODEV;
621 		netdev_lock_ops(dev);
622 		err = dev_mc_add_global(dev, ifr->ifr_hwaddr.sa_data);
623 		netdev_unlock_ops(dev);
624 		return err;
625 
626 	case SIOCDELMULTI:
627 		if (!ops->ndo_set_rx_mode ||
628 		    ifr->ifr_hwaddr.sa_family != AF_UNSPEC)
629 			return -EINVAL;
630 		if (!netif_device_present(dev))
631 			return -ENODEV;
632 		netdev_lock_ops(dev);
633 		err = dev_mc_del_global(dev, ifr->ifr_hwaddr.sa_data);
634 		netdev_unlock_ops(dev);
635 		return err;
636 
637 	case SIOCSIFTXQLEN:
638 		if (ifr->ifr_qlen < 0)
639 			return -EINVAL;
640 		return dev_change_tx_queue_len(dev, ifr->ifr_qlen);
641 
642 	case SIOCSIFNAME:
643 		ifr->ifr_newname[IFNAMSIZ-1] = '\0';
644 		return dev_change_name(dev, ifr->ifr_newname);
645 
646 	case SIOCWANDEV:
647 		return dev_siocwandev(dev, &ifr->ifr_settings);
648 
649 	case SIOCDEVPRIVATE ... SIOCDEVPRIVATE + 15:
650 		return dev_siocdevprivate(dev, ifr, data, cmd);
651 
652 	case SIOCSHWTSTAMP:
653 		return dev_set_hwtstamp(dev, ifr);
654 
655 	case SIOCGHWTSTAMP:
656 		return dev_get_hwtstamp(dev, ifr);
657 
658 	case SIOCGMIIPHY:
659 	case SIOCGMIIREG:
660 	case SIOCSMIIREG:
661 		return dev_eth_ioctl(dev, ifr, cmd);
662 
663 	case SIOCBONDENSLAVE:
664 	case SIOCBONDRELEASE:
665 	case SIOCBONDSETHWADDR:
666 	case SIOCBONDSLAVEINFOQUERY:
667 	case SIOCBONDINFOQUERY:
668 	case SIOCBONDCHANGEACTIVE:
669 		return dev_siocbond(dev, ifr, cmd);
670 
671 	/* Unknown ioctl */
672 	default:
673 		err = -EINVAL;
674 	}
675 	return err;
676 }
677 
678 /**
679  *	dev_load 	- load a network module
680  *	@net: the applicable net namespace
681  *	@name: name of interface
682  *
683  *	If a network interface is not present and the process has suitable
684  *	privileges this function loads the module. If module loading is not
685  *	available in this kernel then it becomes a nop.
686  */
687 
dev_load(struct net * net,const char * name)688 void dev_load(struct net *net, const char *name)
689 {
690 	struct net_device *dev;
691 	int no_module;
692 
693 	rcu_read_lock();
694 	dev = dev_get_by_name_rcu(net, name);
695 	rcu_read_unlock();
696 
697 	no_module = !dev;
698 	if (no_module && capable(CAP_NET_ADMIN))
699 		no_module = request_module("netdev-%s", name);
700 	if (no_module && capable(CAP_SYS_MODULE))
701 		request_module("%s", name);
702 }
703 EXPORT_SYMBOL(dev_load);
704 
705 /*
706  *	This function handles all "interface"-type I/O control requests. The actual
707  *	'doing' part of this is dev_ifsioc above.
708  */
709 
710 /**
711  *	dev_ioctl	-	network device ioctl
712  *	@net: the applicable net namespace
713  *	@cmd: command to issue
714  *	@ifr: pointer to a struct ifreq in user space
715  *	@data: data exchanged with userspace
716  *	@need_copyout: whether or not copy_to_user() should be called
717  *
718  *	Issue ioctl functions to devices. This is normally called by the
719  *	user space syscall interfaces but can sometimes be useful for
720  *	other purposes. The return value is the return from the syscall if
721  *	positive or a negative errno code on error.
722  */
723 
dev_ioctl(struct net * net,unsigned int cmd,struct ifreq * ifr,void __user * data,bool * need_copyout)724 int dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr,
725 	      void __user *data, bool *need_copyout)
726 {
727 	int ret;
728 	char *colon;
729 
730 	if (need_copyout)
731 		*need_copyout = true;
732 	if (cmd == SIOCGIFNAME)
733 		return dev_ifname(net, ifr);
734 
735 	ifr->ifr_name[IFNAMSIZ-1] = 0;
736 
737 	colon = strchr(ifr->ifr_name, ':');
738 	if (colon)
739 		*colon = 0;
740 
741 	/*
742 	 *	See which interface the caller is talking about.
743 	 */
744 
745 	switch (cmd) {
746 	case SIOCGIFHWADDR:
747 		dev_load(net, ifr->ifr_name);
748 		ret = netif_get_mac_address(&ifr->ifr_hwaddr, net,
749 					    ifr->ifr_name);
750 		if (colon)
751 			*colon = ':';
752 		return ret;
753 	/*
754 	 *	These ioctl calls:
755 	 *	- can be done by all.
756 	 *	- atomic and do not require locking.
757 	 *	- return a value
758 	 */
759 	case SIOCGIFFLAGS:
760 	case SIOCGIFMETRIC:
761 	case SIOCGIFMTU:
762 	case SIOCGIFSLAVE:
763 	case SIOCGIFMAP:
764 	case SIOCGIFINDEX:
765 	case SIOCGIFTXQLEN:
766 		dev_load(net, ifr->ifr_name);
767 		rcu_read_lock();
768 		ret = dev_ifsioc_locked(net, ifr, cmd);
769 		rcu_read_unlock();
770 		if (colon)
771 			*colon = ':';
772 		return ret;
773 
774 	case SIOCETHTOOL:
775 		dev_load(net, ifr->ifr_name);
776 		ret = dev_ethtool(net, ifr, data);
777 		if (colon)
778 			*colon = ':';
779 		return ret;
780 
781 	/*
782 	 *	These ioctl calls:
783 	 *	- require superuser power.
784 	 *	- require strict serialization.
785 	 *	- return a value
786 	 */
787 	case SIOCGMIIPHY:
788 	case SIOCGMIIREG:
789 	case SIOCSIFNAME:
790 		dev_load(net, ifr->ifr_name);
791 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
792 			return -EPERM;
793 
794 		rtnl_net_lock(net);
795 		ret = dev_ifsioc(net, ifr, data, cmd);
796 		rtnl_net_unlock(net);
797 
798 		if (colon)
799 			*colon = ':';
800 		return ret;
801 
802 	/*
803 	 *	These ioctl calls:
804 	 *	- require superuser power.
805 	 *	- require strict serialization.
806 	 *	- do not return a value
807 	 */
808 	case SIOCSIFMAP:
809 	case SIOCSIFTXQLEN:
810 		if (!capable(CAP_NET_ADMIN))
811 			return -EPERM;
812 		fallthrough;
813 	/*
814 	 *	These ioctl calls:
815 	 *	- require local superuser power.
816 	 *	- require strict serialization.
817 	 *	- do not return a value
818 	 */
819 	case SIOCSIFFLAGS:
820 	case SIOCSIFMETRIC:
821 	case SIOCSIFMTU:
822 	case SIOCSIFHWADDR:
823 	case SIOCSIFSLAVE:
824 	case SIOCADDMULTI:
825 	case SIOCDELMULTI:
826 	case SIOCSIFHWBROADCAST:
827 	case SIOCSMIIREG:
828 	case SIOCBONDENSLAVE:
829 	case SIOCBONDRELEASE:
830 	case SIOCBONDSETHWADDR:
831 	case SIOCBONDCHANGEACTIVE:
832 	case SIOCSHWTSTAMP:
833 		if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
834 			return -EPERM;
835 		fallthrough;
836 	case SIOCBONDSLAVEINFOQUERY:
837 	case SIOCBONDINFOQUERY:
838 		dev_load(net, ifr->ifr_name);
839 
840 		rtnl_net_lock(net);
841 		ret = dev_ifsioc(net, ifr, data, cmd);
842 		rtnl_net_unlock(net);
843 
844 		if (need_copyout)
845 			*need_copyout = false;
846 		return ret;
847 
848 	case SIOCGIFMEM:
849 		/* Get the per device memory space. We can add this but
850 		 * currently do not support it */
851 	case SIOCSIFMEM:
852 		/* Set the per device memory buffer space.
853 		 * Not applicable in our case */
854 	case SIOCSIFLINK:
855 		return -ENOTTY;
856 
857 	/*
858 	 *	Unknown or private ioctl.
859 	 */
860 	default:
861 		if (cmd == SIOCWANDEV ||
862 		    cmd == SIOCGHWTSTAMP ||
863 		    (cmd >= SIOCDEVPRIVATE &&
864 		     cmd <= SIOCDEVPRIVATE + 15)) {
865 			dev_load(net, ifr->ifr_name);
866 
867 			rtnl_net_lock(net);
868 			ret = dev_ifsioc(net, ifr, data, cmd);
869 			rtnl_net_unlock(net);
870 			return ret;
871 		}
872 		return -ENOTTY;
873 	}
874 }
875