1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kmod.h>
3 #include <linux/netdevice.h>
4 #include <linux/etherdevice.h>
5 #include <linux/rtnetlink.h>
6 #include <linux/net_tstamp.h>
7 #include <linux/wireless.h>
12 * Map an interface index to its name (SIOCGIFNAME)
16 * We need this ioctl for efficient implementation of the
17 * if_indextoname() function required by the IPv6 API. Without
18 * it, we would have to search all the interfaces to find a
22 static int dev_ifname(struct net
*net
, struct ifreq
*ifr
)
24 ifr
->ifr_name
[IFNAMSIZ
-1] = 0;
25 return netdev_get_name(net
, ifr
->ifr_name
, ifr
->ifr_ifindex
);
28 static gifconf_func_t
*gifconf_list
[NPROTO
];
31 * register_gifconf - register a SIOCGIF handler
32 * @family: Address family
33 * @gifconf: Function handler
35 * Register protocol dependent address dumping routines. The handler
36 * that is passed must not be freed or reused until it has been replaced
39 int register_gifconf(unsigned int family
, gifconf_func_t
*gifconf
)
43 gifconf_list
[family
] = gifconf
;
46 EXPORT_SYMBOL(register_gifconf
);
49 * Perform a SIOCGIFCONF call. This structure will change
50 * size eventually, and there is nothing I can do about it.
51 * Thus we will need a 'compatibility mode'.
54 int dev_ifconf(struct net
*net
, struct ifconf
*ifc
, int size
)
56 struct net_device
*dev
;
63 * Fetch the caller's info block.
70 * Loop over the interfaces, and write an info block for each.
74 for_each_netdev(net
, dev
) {
75 for (i
= 0; i
< NPROTO
; i
++) {
76 if (gifconf_list
[i
]) {
79 done
= gifconf_list
[i
](dev
, NULL
, 0, size
);
81 done
= gifconf_list
[i
](dev
, pos
+ total
,
91 * All done. Write the updated control block back to the caller.
96 * Both BSD and Solaris return 0 here, so we do too.
102 * Perform the SIOCxIFxxx calls, inside rcu_read_lock()
104 static int dev_ifsioc_locked(struct net
*net
, struct ifreq
*ifr
, unsigned int cmd
)
107 struct net_device
*dev
= dev_get_by_name_rcu(net
, ifr
->ifr_name
);
113 case SIOCGIFFLAGS
: /* Get interface flags */
114 ifr
->ifr_flags
= (short) dev_get_flags(dev
);
117 case SIOCGIFMETRIC
: /* Get the metric on the interface
118 (currently unused) */
122 case SIOCGIFMTU
: /* Get the MTU of a device */
123 ifr
->ifr_mtu
= dev
->mtu
;
128 memset(ifr
->ifr_hwaddr
.sa_data
, 0,
129 sizeof(ifr
->ifr_hwaddr
.sa_data
));
131 memcpy(ifr
->ifr_hwaddr
.sa_data
, dev
->dev_addr
,
132 min(sizeof(ifr
->ifr_hwaddr
.sa_data
),
133 (size_t)dev
->addr_len
));
134 ifr
->ifr_hwaddr
.sa_family
= dev
->type
;
142 ifr
->ifr_map
.mem_start
= dev
->mem_start
;
143 ifr
->ifr_map
.mem_end
= dev
->mem_end
;
144 ifr
->ifr_map
.base_addr
= dev
->base_addr
;
145 ifr
->ifr_map
.irq
= dev
->irq
;
146 ifr
->ifr_map
.dma
= dev
->dma
;
147 ifr
->ifr_map
.port
= dev
->if_port
;
151 ifr
->ifr_ifindex
= dev
->ifindex
;
155 ifr
->ifr_qlen
= dev
->tx_queue_len
;
159 /* dev_ioctl() should ensure this case
170 static int net_hwtstamp_validate(struct ifreq
*ifr
)
172 struct hwtstamp_config cfg
;
173 enum hwtstamp_tx_types tx_type
;
174 enum hwtstamp_rx_filters rx_filter
;
175 int tx_type_valid
= 0;
176 int rx_filter_valid
= 0;
178 if (copy_from_user(&cfg
, ifr
->ifr_data
, sizeof(cfg
)))
181 if (cfg
.flags
) /* reserved for future extensions */
184 tx_type
= cfg
.tx_type
;
185 rx_filter
= cfg
.rx_filter
;
188 case HWTSTAMP_TX_OFF
:
190 case HWTSTAMP_TX_ONESTEP_SYNC
:
191 case HWTSTAMP_TX_ONESTEP_P2P
:
194 case __HWTSTAMP_TX_CNT
:
195 /* not a real value */
200 case HWTSTAMP_FILTER_NONE
:
201 case HWTSTAMP_FILTER_ALL
:
202 case HWTSTAMP_FILTER_SOME
:
203 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT
:
204 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC
:
205 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ
:
206 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT
:
207 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC
:
208 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ
:
209 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT
:
210 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC
:
211 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ
:
212 case HWTSTAMP_FILTER_PTP_V2_EVENT
:
213 case HWTSTAMP_FILTER_PTP_V2_SYNC
:
214 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ
:
215 case HWTSTAMP_FILTER_NTP_ALL
:
218 case __HWTSTAMP_FILTER_CNT
:
219 /* not a real value */
223 if (!tx_type_valid
|| !rx_filter_valid
)
229 static int dev_do_ioctl(struct net_device
*dev
,
230 struct ifreq
*ifr
, unsigned int cmd
)
232 const struct net_device_ops
*ops
= dev
->netdev_ops
;
235 err
= dsa_ndo_do_ioctl(dev
, ifr
, cmd
);
236 if (err
== 0 || err
!= -EOPNOTSUPP
)
239 if (ops
->ndo_do_ioctl
) {
240 if (netif_device_present(dev
))
241 err
= ops
->ndo_do_ioctl(dev
, ifr
, cmd
);
250 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
252 static int dev_ifsioc(struct net
*net
, struct ifreq
*ifr
, unsigned int cmd
)
255 struct net_device
*dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
256 const struct net_device_ops
*ops
;
261 ops
= dev
->netdev_ops
;
264 case SIOCSIFFLAGS
: /* Set interface flags */
265 return dev_change_flags(dev
, ifr
->ifr_flags
, NULL
);
267 case SIOCSIFMETRIC
: /* Set the metric on the interface
268 (currently unused) */
271 case SIOCSIFMTU
: /* Set the MTU of a device */
272 return dev_set_mtu(dev
, ifr
->ifr_mtu
);
275 if (dev
->addr_len
> sizeof(struct sockaddr
))
277 return dev_set_mac_address(dev
, &ifr
->ifr_hwaddr
, NULL
);
279 case SIOCSIFHWBROADCAST
:
280 if (ifr
->ifr_hwaddr
.sa_family
!= dev
->type
)
282 memcpy(dev
->broadcast
, ifr
->ifr_hwaddr
.sa_data
,
283 min(sizeof(ifr
->ifr_hwaddr
.sa_data
),
284 (size_t)dev
->addr_len
));
285 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
289 if (ops
->ndo_set_config
) {
290 if (!netif_device_present(dev
))
292 return ops
->ndo_set_config(dev
, &ifr
->ifr_map
);
297 if (!ops
->ndo_set_rx_mode
||
298 ifr
->ifr_hwaddr
.sa_family
!= AF_UNSPEC
)
300 if (!netif_device_present(dev
))
302 return dev_mc_add_global(dev
, ifr
->ifr_hwaddr
.sa_data
);
305 if (!ops
->ndo_set_rx_mode
||
306 ifr
->ifr_hwaddr
.sa_family
!= AF_UNSPEC
)
308 if (!netif_device_present(dev
))
310 return dev_mc_del_global(dev
, ifr
->ifr_hwaddr
.sa_data
);
313 if (ifr
->ifr_qlen
< 0)
315 return dev_change_tx_queue_len(dev
, ifr
->ifr_qlen
);
318 ifr
->ifr_newname
[IFNAMSIZ
-1] = '\0';
319 return dev_change_name(dev
, ifr
->ifr_newname
);
322 err
= net_hwtstamp_validate(ifr
);
328 * Unknown or private ioctl
331 if ((cmd
>= SIOCDEVPRIVATE
&&
332 cmd
<= SIOCDEVPRIVATE
+ 15) ||
333 cmd
== SIOCBONDENSLAVE
||
334 cmd
== SIOCBONDRELEASE
||
335 cmd
== SIOCBONDSETHWADDR
||
336 cmd
== SIOCBONDSLAVEINFOQUERY
||
337 cmd
== SIOCBONDINFOQUERY
||
338 cmd
== SIOCBONDCHANGEACTIVE
||
339 cmd
== SIOCGMIIPHY
||
340 cmd
== SIOCGMIIREG
||
341 cmd
== SIOCSMIIREG
||
342 cmd
== SIOCBRADDIF
||
343 cmd
== SIOCBRDELIF
||
344 cmd
== SIOCSHWTSTAMP
||
345 cmd
== SIOCGHWTSTAMP
||
347 err
= dev_do_ioctl(dev
, ifr
, cmd
);
356 * dev_load - load a network module
357 * @net: the applicable net namespace
358 * @name: name of interface
360 * If a network interface is not present and the process has suitable
361 * privileges this function loads the module. If module loading is not
362 * available in this kernel then it becomes a nop.
365 void dev_load(struct net
*net
, const char *name
)
367 struct net_device
*dev
;
371 dev
= dev_get_by_name_rcu(net
, name
);
375 if (no_module
&& capable(CAP_NET_ADMIN
))
376 no_module
= request_module("netdev-%s", name
);
377 if (no_module
&& capable(CAP_SYS_MODULE
))
378 request_module("%s", name
);
380 EXPORT_SYMBOL(dev_load
);
383 * This function handles all "interface"-type I/O control requests. The actual
384 * 'doing' part of this is dev_ifsioc above.
388 * dev_ioctl - network device ioctl
389 * @net: the applicable net namespace
390 * @cmd: command to issue
391 * @ifr: pointer to a struct ifreq in user space
392 * @need_copyout: whether or not copy_to_user() should be called
394 * Issue ioctl functions to devices. This is normally called by the
395 * user space syscall interfaces but can sometimes be useful for
396 * other purposes. The return value is the return from the syscall if
397 * positive or a negative errno code on error.
400 int dev_ioctl(struct net
*net
, unsigned int cmd
, struct ifreq
*ifr
, bool *need_copyout
)
406 *need_copyout
= true;
407 if (cmd
== SIOCGIFNAME
)
408 return dev_ifname(net
, ifr
);
410 ifr
->ifr_name
[IFNAMSIZ
-1] = 0;
412 colon
= strchr(ifr
->ifr_name
, ':');
417 * See which interface the caller is talking about.
423 * - can be done by all.
424 * - atomic and do not require locking.
435 dev_load(net
, ifr
->ifr_name
);
437 ret
= dev_ifsioc_locked(net
, ifr
, cmd
);
444 dev_load(net
, ifr
->ifr_name
);
446 ret
= dev_ethtool(net
, ifr
);
454 * - require superuser power.
455 * - require strict serialization.
461 dev_load(net
, ifr
->ifr_name
);
462 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
465 ret
= dev_ifsioc(net
, ifr
, cmd
);
473 * - require superuser power.
474 * - require strict serialization.
475 * - do not return a value
479 if (!capable(CAP_NET_ADMIN
))
484 * - require local superuser power.
485 * - require strict serialization.
486 * - do not return a value
495 case SIOCSIFHWBROADCAST
:
497 case SIOCBONDENSLAVE
:
498 case SIOCBONDRELEASE
:
499 case SIOCBONDSETHWADDR
:
500 case SIOCBONDCHANGEACTIVE
:
504 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
507 case SIOCBONDSLAVEINFOQUERY
:
508 case SIOCBONDINFOQUERY
:
509 dev_load(net
, ifr
->ifr_name
);
511 ret
= dev_ifsioc(net
, ifr
, cmd
);
514 *need_copyout
= false;
518 /* Get the per device memory space. We can add this but
519 * currently do not support it */
521 /* Set the per device memory buffer space.
522 * Not applicable in our case */
527 * Unknown or private ioctl.
530 if (cmd
== SIOCWANDEV
||
531 cmd
== SIOCGHWTSTAMP
||
532 (cmd
>= SIOCDEVPRIVATE
&&
533 cmd
<= SIOCDEVPRIVATE
+ 15)) {
534 dev_load(net
, ifr
->ifr_name
);
536 ret
= dev_ifsioc(net
, ifr
, cmd
);