1 #include <linux/kmod.h>
2 #include <linux/netdevice.h>
3 #include <linux/etherdevice.h>
4 #include <linux/rtnetlink.h>
5 #include <linux/net_tstamp.h>
6 #include <linux/wireless.h>
10 * Map an interface index to its name (SIOCGIFNAME)
14 * We need this ioctl for efficient implementation of the
15 * if_indextoname() function required by the IPv6 API. Without
16 * it, we would have to search all the interfaces to find a
20 static int dev_ifname(struct net
*net
, struct ifreq __user
*arg
)
26 * Fetch the caller's info block.
29 if (copy_from_user(&ifr
, arg
, sizeof(struct ifreq
)))
32 error
= netdev_get_name(net
, ifr
.ifr_name
, ifr
.ifr_ifindex
);
36 if (copy_to_user(arg
, &ifr
, sizeof(struct ifreq
)))
41 static gifconf_func_t
*gifconf_list
[NPROTO
];
44 * register_gifconf - register a SIOCGIF handler
45 * @family: Address family
46 * @gifconf: Function handler
48 * Register protocol dependent address dumping routines. The handler
49 * that is passed must not be freed or reused until it has been replaced
52 int register_gifconf(unsigned int family
, gifconf_func_t
*gifconf
)
56 gifconf_list
[family
] = gifconf
;
59 EXPORT_SYMBOL(register_gifconf
);
62 * Perform a SIOCGIFCONF call. This structure will change
63 * size eventually, and there is nothing I can do about it.
64 * Thus we will need a 'compatibility mode'.
67 static int dev_ifconf(struct net
*net
, char __user
*arg
)
70 struct net_device
*dev
;
77 * Fetch the caller's info block.
80 if (copy_from_user(&ifc
, arg
, sizeof(struct ifconf
)))
87 * Loop over the interfaces, and write an info block for each.
91 for_each_netdev(net
, dev
) {
92 for (i
= 0; i
< NPROTO
; i
++) {
93 if (gifconf_list
[i
]) {
96 done
= gifconf_list
[i
](dev
, NULL
, 0);
98 done
= gifconf_list
[i
](dev
, pos
+ total
,
108 * All done. Write the updated control block back to the caller.
113 * Both BSD and Solaris return 0 here, so we do too.
115 return copy_to_user(arg
, &ifc
, sizeof(struct ifconf
)) ? -EFAULT
: 0;
119 * Perform the SIOCxIFxxx calls, inside rcu_read_lock()
121 static int dev_ifsioc_locked(struct net
*net
, struct ifreq
*ifr
, unsigned int cmd
)
124 struct net_device
*dev
= dev_get_by_name_rcu(net
, ifr
->ifr_name
);
130 case SIOCGIFFLAGS
: /* Get interface flags */
131 ifr
->ifr_flags
= (short) dev_get_flags(dev
);
134 case SIOCGIFMETRIC
: /* Get the metric on the interface
135 (currently unused) */
139 case SIOCGIFMTU
: /* Get the MTU of a device */
140 ifr
->ifr_mtu
= dev
->mtu
;
145 memset(ifr
->ifr_hwaddr
.sa_data
, 0, sizeof ifr
->ifr_hwaddr
.sa_data
);
147 memcpy(ifr
->ifr_hwaddr
.sa_data
, dev
->dev_addr
,
148 min(sizeof ifr
->ifr_hwaddr
.sa_data
, (size_t) dev
->addr_len
));
149 ifr
->ifr_hwaddr
.sa_family
= dev
->type
;
157 ifr
->ifr_map
.mem_start
= dev
->mem_start
;
158 ifr
->ifr_map
.mem_end
= dev
->mem_end
;
159 ifr
->ifr_map
.base_addr
= dev
->base_addr
;
160 ifr
->ifr_map
.irq
= dev
->irq
;
161 ifr
->ifr_map
.dma
= dev
->dma
;
162 ifr
->ifr_map
.port
= dev
->if_port
;
166 ifr
->ifr_ifindex
= dev
->ifindex
;
170 ifr
->ifr_qlen
= dev
->tx_queue_len
;
174 /* dev_ioctl() should ensure this case
185 static int net_hwtstamp_validate(struct ifreq
*ifr
)
187 struct hwtstamp_config cfg
;
188 enum hwtstamp_tx_types tx_type
;
189 enum hwtstamp_rx_filters rx_filter
;
190 int tx_type_valid
= 0;
191 int rx_filter_valid
= 0;
193 if (copy_from_user(&cfg
, ifr
->ifr_data
, sizeof(cfg
)))
196 if (cfg
.flags
) /* reserved for future extensions */
199 tx_type
= cfg
.tx_type
;
200 rx_filter
= cfg
.rx_filter
;
203 case HWTSTAMP_TX_OFF
:
205 case HWTSTAMP_TX_ONESTEP_SYNC
:
211 case HWTSTAMP_FILTER_NONE
:
212 case HWTSTAMP_FILTER_ALL
:
213 case HWTSTAMP_FILTER_SOME
:
214 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT
:
215 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC
:
216 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ
:
217 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT
:
218 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC
:
219 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ
:
220 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT
:
221 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC
:
222 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ
:
223 case HWTSTAMP_FILTER_PTP_V2_EVENT
:
224 case HWTSTAMP_FILTER_PTP_V2_SYNC
:
225 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ
:
230 if (!tx_type_valid
|| !rx_filter_valid
)
237 * Perform the SIOCxIFxxx calls, inside rtnl_lock()
239 static int dev_ifsioc(struct net
*net
, struct ifreq
*ifr
, unsigned int cmd
)
242 struct net_device
*dev
= __dev_get_by_name(net
, ifr
->ifr_name
);
243 const struct net_device_ops
*ops
;
248 ops
= dev
->netdev_ops
;
251 case SIOCSIFFLAGS
: /* Set interface flags */
252 return dev_change_flags(dev
, ifr
->ifr_flags
);
254 case SIOCSIFMETRIC
: /* Set the metric on the interface
255 (currently unused) */
258 case SIOCSIFMTU
: /* Set the MTU of a device */
259 return dev_set_mtu(dev
, ifr
->ifr_mtu
);
262 return dev_set_mac_address(dev
, &ifr
->ifr_hwaddr
);
264 case SIOCSIFHWBROADCAST
:
265 if (ifr
->ifr_hwaddr
.sa_family
!= dev
->type
)
267 memcpy(dev
->broadcast
, ifr
->ifr_hwaddr
.sa_data
,
268 min(sizeof ifr
->ifr_hwaddr
.sa_data
, (size_t) dev
->addr_len
));
269 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
273 if (ops
->ndo_set_config
) {
274 if (!netif_device_present(dev
))
276 return ops
->ndo_set_config(dev
, &ifr
->ifr_map
);
281 if (!ops
->ndo_set_rx_mode
||
282 ifr
->ifr_hwaddr
.sa_family
!= AF_UNSPEC
)
284 if (!netif_device_present(dev
))
286 return dev_mc_add_global(dev
, ifr
->ifr_hwaddr
.sa_data
);
289 if (!ops
->ndo_set_rx_mode
||
290 ifr
->ifr_hwaddr
.sa_family
!= AF_UNSPEC
)
292 if (!netif_device_present(dev
))
294 return dev_mc_del_global(dev
, ifr
->ifr_hwaddr
.sa_data
);
297 if (ifr
->ifr_qlen
< 0)
299 dev
->tx_queue_len
= ifr
->ifr_qlen
;
303 ifr
->ifr_newname
[IFNAMSIZ
-1] = '\0';
304 return dev_change_name(dev
, ifr
->ifr_newname
);
307 err
= net_hwtstamp_validate(ifr
);
313 * Unknown or private ioctl
316 if ((cmd
>= SIOCDEVPRIVATE
&&
317 cmd
<= SIOCDEVPRIVATE
+ 15) ||
318 cmd
== SIOCBONDENSLAVE
||
319 cmd
== SIOCBONDRELEASE
||
320 cmd
== SIOCBONDSETHWADDR
||
321 cmd
== SIOCBONDSLAVEINFOQUERY
||
322 cmd
== SIOCBONDINFOQUERY
||
323 cmd
== SIOCBONDCHANGEACTIVE
||
324 cmd
== SIOCGMIIPHY
||
325 cmd
== SIOCGMIIREG
||
326 cmd
== SIOCSMIIREG
||
327 cmd
== SIOCBRADDIF
||
328 cmd
== SIOCBRDELIF
||
329 cmd
== SIOCSHWTSTAMP
||
332 if (ops
->ndo_do_ioctl
) {
333 if (netif_device_present(dev
))
334 err
= ops
->ndo_do_ioctl(dev
, ifr
, cmd
);
346 * dev_load - load a network module
347 * @net: the applicable net namespace
348 * @name: name of interface
350 * If a network interface is not present and the process has suitable
351 * privileges this function loads the module. If module loading is not
352 * available in this kernel then it becomes a nop.
355 void dev_load(struct net
*net
, const char *name
)
357 struct net_device
*dev
;
361 dev
= dev_get_by_name_rcu(net
, name
);
365 if (no_module
&& capable(CAP_NET_ADMIN
))
366 no_module
= request_module("netdev-%s", name
);
367 if (no_module
&& capable(CAP_SYS_MODULE
)) {
368 if (!request_module("%s", name
))
369 pr_warn("Loading kernel module for a network device with CAP_SYS_MODULE (deprecated). Use CAP_NET_ADMIN and alias netdev-%s instead.\n",
373 EXPORT_SYMBOL(dev_load
);
376 * This function handles all "interface"-type I/O control requests. The actual
377 * 'doing' part of this is dev_ifsioc above.
381 * dev_ioctl - network device ioctl
382 * @net: the applicable net namespace
383 * @cmd: command to issue
384 * @arg: pointer to a struct ifreq in user space
386 * Issue ioctl functions to devices. This is normally called by the
387 * user space syscall interfaces but can sometimes be useful for
388 * other purposes. The return value is the return from the syscall if
389 * positive or a negative errno code on error.
392 int dev_ioctl(struct net
*net
, unsigned int cmd
, void __user
*arg
)
398 /* One special case: SIOCGIFCONF takes ifconf argument
399 and requires shared lock, because it sleeps writing
403 if (cmd
== SIOCGIFCONF
) {
405 ret
= dev_ifconf(net
, (char __user
*) arg
);
409 if (cmd
== SIOCGIFNAME
)
410 return dev_ifname(net
, (struct ifreq __user
*)arg
);
412 if (copy_from_user(&ifr
, arg
, sizeof(struct ifreq
)))
415 ifr
.ifr_name
[IFNAMSIZ
-1] = 0;
417 colon
= strchr(ifr
.ifr_name
, ':');
422 * See which interface the caller is talking about.
428 * - can be done by all.
429 * - atomic and do not require locking.
440 dev_load(net
, ifr
.ifr_name
);
442 ret
= dev_ifsioc_locked(net
, &ifr
, cmd
);
447 if (copy_to_user(arg
, &ifr
,
448 sizeof(struct ifreq
)))
454 dev_load(net
, ifr
.ifr_name
);
456 ret
= dev_ethtool(net
, &ifr
);
461 if (copy_to_user(arg
, &ifr
,
462 sizeof(struct ifreq
)))
469 * - require superuser power.
470 * - require strict serialization.
476 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
478 dev_load(net
, ifr
.ifr_name
);
480 ret
= dev_ifsioc(net
, &ifr
, cmd
);
485 if (copy_to_user(arg
, &ifr
,
486 sizeof(struct ifreq
)))
493 * - require superuser power.
494 * - require strict serialization.
495 * - do not return a value
499 if (!capable(CAP_NET_ADMIN
))
504 * - require local superuser power.
505 * - require strict serialization.
506 * - do not return a value
515 case SIOCSIFHWBROADCAST
:
517 case SIOCBONDENSLAVE
:
518 case SIOCBONDRELEASE
:
519 case SIOCBONDSETHWADDR
:
520 case SIOCBONDCHANGEACTIVE
:
524 if (!ns_capable(net
->user_ns
, CAP_NET_ADMIN
))
527 case SIOCBONDSLAVEINFOQUERY
:
528 case SIOCBONDINFOQUERY
:
529 dev_load(net
, ifr
.ifr_name
);
531 ret
= dev_ifsioc(net
, &ifr
, cmd
);
536 /* Get the per device memory space. We can add this but
537 * currently do not support it */
539 /* Set the per device memory buffer space.
540 * Not applicable in our case */
545 * Unknown or private ioctl.
548 if (cmd
== SIOCWANDEV
||
549 (cmd
>= SIOCDEVPRIVATE
&&
550 cmd
<= SIOCDEVPRIVATE
+ 15)) {
551 dev_load(net
, ifr
.ifr_name
);
553 ret
= dev_ifsioc(net
, &ifr
, cmd
);
555 if (!ret
&& copy_to_user(arg
, &ifr
,
556 sizeof(struct ifreq
)))
560 /* Take care of Wireless Extensions */
561 if (cmd
>= SIOCIWFIRST
&& cmd
<= SIOCIWLAST
)
562 return wext_handle_ioctl(net
, &ifr
, cmd
, arg
);