2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * Routing netlink socket interface: protocol independent part.
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 * Vitaly E. Lavrov RTA_OK arithmetics was wrong.
19 #include <linux/errno.h>
20 #include <linux/module.h>
21 #include <linux/types.h>
22 #include <linux/socket.h>
23 #include <linux/kernel.h>
24 #include <linux/timer.h>
25 #include <linux/string.h>
26 #include <linux/sockios.h>
27 #include <linux/net.h>
28 #include <linux/fcntl.h>
30 #include <linux/slab.h>
31 #include <linux/interrupt.h>
32 #include <linux/capability.h>
33 #include <linux/skbuff.h>
34 #include <linux/init.h>
35 #include <linux/security.h>
36 #include <linux/mutex.h>
37 #include <linux/if_addr.h>
38 #include <linux/pci.h>
40 #include <asm/uaccess.h>
41 #include <asm/system.h>
43 #include <linux/inet.h>
44 #include <linux/netdevice.h>
46 #include <net/protocol.h>
48 #include <net/route.h>
51 #include <net/pkt_sched.h>
52 #include <net/fib_rules.h>
53 #include <net/rtnetlink.h>
54 #include <net/net_namespace.h>
58 rtnl_dumpit_func dumpit
;
61 static DEFINE_MUTEX(rtnl_mutex
);
65 mutex_lock(&rtnl_mutex
);
67 EXPORT_SYMBOL(rtnl_lock
);
69 void __rtnl_unlock(void)
71 mutex_unlock(&rtnl_mutex
);
74 void rtnl_unlock(void)
76 /* This fellow will unlock it for us. */
79 EXPORT_SYMBOL(rtnl_unlock
);
81 int rtnl_trylock(void)
83 return mutex_trylock(&rtnl_mutex
);
85 EXPORT_SYMBOL(rtnl_trylock
);
87 int rtnl_is_locked(void)
89 return mutex_is_locked(&rtnl_mutex
);
91 EXPORT_SYMBOL(rtnl_is_locked
);
93 #ifdef CONFIG_PROVE_LOCKING
94 int lockdep_rtnl_is_held(void)
96 return lockdep_is_held(&rtnl_mutex
);
98 EXPORT_SYMBOL(lockdep_rtnl_is_held
);
99 #endif /* #ifdef CONFIG_PROVE_LOCKING */
101 static struct rtnl_link
*rtnl_msg_handlers
[RTNL_FAMILY_MAX
+ 1];
103 static inline int rtm_msgindex(int msgtype
)
105 int msgindex
= msgtype
- RTM_BASE
;
108 * msgindex < 0 implies someone tried to register a netlink
109 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
110 * the message type has not been added to linux/rtnetlink.h
112 BUG_ON(msgindex
< 0 || msgindex
>= RTM_NR_MSGTYPES
);
117 static rtnl_doit_func
rtnl_get_doit(int protocol
, int msgindex
)
119 struct rtnl_link
*tab
;
121 if (protocol
<= RTNL_FAMILY_MAX
)
122 tab
= rtnl_msg_handlers
[protocol
];
126 if (tab
== NULL
|| tab
[msgindex
].doit
== NULL
)
127 tab
= rtnl_msg_handlers
[PF_UNSPEC
];
129 return tab
? tab
[msgindex
].doit
: NULL
;
132 static rtnl_dumpit_func
rtnl_get_dumpit(int protocol
, int msgindex
)
134 struct rtnl_link
*tab
;
136 if (protocol
<= RTNL_FAMILY_MAX
)
137 tab
= rtnl_msg_handlers
[protocol
];
141 if (tab
== NULL
|| tab
[msgindex
].dumpit
== NULL
)
142 tab
= rtnl_msg_handlers
[PF_UNSPEC
];
144 return tab
? tab
[msgindex
].dumpit
: NULL
;
148 * __rtnl_register - Register a rtnetlink message type
149 * @protocol: Protocol family or PF_UNSPEC
150 * @msgtype: rtnetlink message type
151 * @doit: Function pointer called for each request message
152 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
154 * Registers the specified function pointers (at least one of them has
155 * to be non-NULL) to be called whenever a request message for the
156 * specified protocol family and message type is received.
158 * The special protocol family PF_UNSPEC may be used to define fallback
159 * function pointers for the case when no entry for the specific protocol
162 * Returns 0 on success or a negative error code.
164 int __rtnl_register(int protocol
, int msgtype
,
165 rtnl_doit_func doit
, rtnl_dumpit_func dumpit
)
167 struct rtnl_link
*tab
;
170 BUG_ON(protocol
< 0 || protocol
> RTNL_FAMILY_MAX
);
171 msgindex
= rtm_msgindex(msgtype
);
173 tab
= rtnl_msg_handlers
[protocol
];
175 tab
= kcalloc(RTM_NR_MSGTYPES
, sizeof(*tab
), GFP_KERNEL
);
179 rtnl_msg_handlers
[protocol
] = tab
;
183 tab
[msgindex
].doit
= doit
;
186 tab
[msgindex
].dumpit
= dumpit
;
190 EXPORT_SYMBOL_GPL(__rtnl_register
);
193 * rtnl_register - Register a rtnetlink message type
195 * Identical to __rtnl_register() but panics on failure. This is useful
196 * as failure of this function is very unlikely, it can only happen due
197 * to lack of memory when allocating the chain to store all message
198 * handlers for a protocol. Meant for use in init functions where lack
199 * of memory implies no sense in continuing.
201 void rtnl_register(int protocol
, int msgtype
,
202 rtnl_doit_func doit
, rtnl_dumpit_func dumpit
)
204 if (__rtnl_register(protocol
, msgtype
, doit
, dumpit
) < 0)
205 panic("Unable to register rtnetlink message handler, "
206 "protocol = %d, message type = %d\n",
209 EXPORT_SYMBOL_GPL(rtnl_register
);
212 * rtnl_unregister - Unregister a rtnetlink message type
213 * @protocol: Protocol family or PF_UNSPEC
214 * @msgtype: rtnetlink message type
216 * Returns 0 on success or a negative error code.
218 int rtnl_unregister(int protocol
, int msgtype
)
222 BUG_ON(protocol
< 0 || protocol
> RTNL_FAMILY_MAX
);
223 msgindex
= rtm_msgindex(msgtype
);
225 if (rtnl_msg_handlers
[protocol
] == NULL
)
228 rtnl_msg_handlers
[protocol
][msgindex
].doit
= NULL
;
229 rtnl_msg_handlers
[protocol
][msgindex
].dumpit
= NULL
;
233 EXPORT_SYMBOL_GPL(rtnl_unregister
);
236 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
237 * @protocol : Protocol family or PF_UNSPEC
239 * Identical to calling rtnl_unregster() for all registered message types
240 * of a certain protocol family.
242 void rtnl_unregister_all(int protocol
)
244 BUG_ON(protocol
< 0 || protocol
> RTNL_FAMILY_MAX
);
246 kfree(rtnl_msg_handlers
[protocol
]);
247 rtnl_msg_handlers
[protocol
] = NULL
;
249 EXPORT_SYMBOL_GPL(rtnl_unregister_all
);
251 static LIST_HEAD(link_ops
);
254 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
255 * @ops: struct rtnl_link_ops * to register
257 * The caller must hold the rtnl_mutex. This function should be used
258 * by drivers that create devices during module initialization. It
259 * must be called before registering the devices.
261 * Returns 0 on success or a negative error code.
263 int __rtnl_link_register(struct rtnl_link_ops
*ops
)
266 ops
->dellink
= unregister_netdevice_queue
;
268 list_add_tail(&ops
->list
, &link_ops
);
271 EXPORT_SYMBOL_GPL(__rtnl_link_register
);
274 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
275 * @ops: struct rtnl_link_ops * to register
277 * Returns 0 on success or a negative error code.
279 int rtnl_link_register(struct rtnl_link_ops
*ops
)
284 err
= __rtnl_link_register(ops
);
288 EXPORT_SYMBOL_GPL(rtnl_link_register
);
290 static void __rtnl_kill_links(struct net
*net
, struct rtnl_link_ops
*ops
)
292 struct net_device
*dev
;
293 LIST_HEAD(list_kill
);
295 for_each_netdev(net
, dev
) {
296 if (dev
->rtnl_link_ops
== ops
)
297 ops
->dellink(dev
, &list_kill
);
299 unregister_netdevice_many(&list_kill
);
303 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
304 * @ops: struct rtnl_link_ops * to unregister
306 * The caller must hold the rtnl_mutex.
308 void __rtnl_link_unregister(struct rtnl_link_ops
*ops
)
313 __rtnl_kill_links(net
, ops
);
315 list_del(&ops
->list
);
317 EXPORT_SYMBOL_GPL(__rtnl_link_unregister
);
320 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
321 * @ops: struct rtnl_link_ops * to unregister
323 void rtnl_link_unregister(struct rtnl_link_ops
*ops
)
326 __rtnl_link_unregister(ops
);
329 EXPORT_SYMBOL_GPL(rtnl_link_unregister
);
331 static const struct rtnl_link_ops
*rtnl_link_ops_get(const char *kind
)
333 const struct rtnl_link_ops
*ops
;
335 list_for_each_entry(ops
, &link_ops
, list
) {
336 if (!strcmp(ops
->kind
, kind
))
342 static size_t rtnl_link_get_size(const struct net_device
*dev
)
344 const struct rtnl_link_ops
*ops
= dev
->rtnl_link_ops
;
350 size
= nla_total_size(sizeof(struct nlattr
)) + /* IFLA_LINKINFO */
351 nla_total_size(strlen(ops
->kind
) + 1); /* IFLA_INFO_KIND */
354 /* IFLA_INFO_DATA + nested data */
355 size
+= nla_total_size(sizeof(struct nlattr
)) +
358 if (ops
->get_xstats_size
)
359 /* IFLA_INFO_XSTATS */
360 size
+= nla_total_size(ops
->get_xstats_size(dev
));
365 static LIST_HEAD(rtnl_af_ops
);
367 static const struct rtnl_af_ops
*rtnl_af_lookup(const int family
)
369 const struct rtnl_af_ops
*ops
;
371 list_for_each_entry(ops
, &rtnl_af_ops
, list
) {
372 if (ops
->family
== family
)
380 * __rtnl_af_register - Register rtnl_af_ops with rtnetlink.
381 * @ops: struct rtnl_af_ops * to register
383 * The caller must hold the rtnl_mutex.
385 * Returns 0 on success or a negative error code.
387 int __rtnl_af_register(struct rtnl_af_ops
*ops
)
389 list_add_tail(&ops
->list
, &rtnl_af_ops
);
392 EXPORT_SYMBOL_GPL(__rtnl_af_register
);
395 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
396 * @ops: struct rtnl_af_ops * to register
398 * Returns 0 on success or a negative error code.
400 int rtnl_af_register(struct rtnl_af_ops
*ops
)
405 err
= __rtnl_af_register(ops
);
409 EXPORT_SYMBOL_GPL(rtnl_af_register
);
412 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
413 * @ops: struct rtnl_af_ops * to unregister
415 * The caller must hold the rtnl_mutex.
417 void __rtnl_af_unregister(struct rtnl_af_ops
*ops
)
419 list_del(&ops
->list
);
421 EXPORT_SYMBOL_GPL(__rtnl_af_unregister
);
424 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
425 * @ops: struct rtnl_af_ops * to unregister
427 void rtnl_af_unregister(struct rtnl_af_ops
*ops
)
430 __rtnl_af_unregister(ops
);
433 EXPORT_SYMBOL_GPL(rtnl_af_unregister
);
435 static size_t rtnl_link_get_af_size(const struct net_device
*dev
)
437 struct rtnl_af_ops
*af_ops
;
441 size
= nla_total_size(sizeof(struct nlattr
));
443 list_for_each_entry(af_ops
, &rtnl_af_ops
, list
) {
444 if (af_ops
->get_link_af_size
) {
445 /* AF_* + nested data */
446 size
+= nla_total_size(sizeof(struct nlattr
)) +
447 af_ops
->get_link_af_size(dev
);
454 static int rtnl_link_fill(struct sk_buff
*skb
, const struct net_device
*dev
)
456 const struct rtnl_link_ops
*ops
= dev
->rtnl_link_ops
;
457 struct nlattr
*linkinfo
, *data
;
460 linkinfo
= nla_nest_start(skb
, IFLA_LINKINFO
);
461 if (linkinfo
== NULL
)
464 if (nla_put_string(skb
, IFLA_INFO_KIND
, ops
->kind
) < 0)
465 goto err_cancel_link
;
466 if (ops
->fill_xstats
) {
467 err
= ops
->fill_xstats(skb
, dev
);
469 goto err_cancel_link
;
471 if (ops
->fill_info
) {
472 data
= nla_nest_start(skb
, IFLA_INFO_DATA
);
474 goto err_cancel_link
;
475 err
= ops
->fill_info(skb
, dev
);
477 goto err_cancel_data
;
478 nla_nest_end(skb
, data
);
481 nla_nest_end(skb
, linkinfo
);
485 nla_nest_cancel(skb
, data
);
487 nla_nest_cancel(skb
, linkinfo
);
492 static const int rtm_min
[RTM_NR_FAMILIES
] =
494 [RTM_FAM(RTM_NEWLINK
)] = NLMSG_LENGTH(sizeof(struct ifinfomsg
)),
495 [RTM_FAM(RTM_NEWADDR
)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg
)),
496 [RTM_FAM(RTM_NEWROUTE
)] = NLMSG_LENGTH(sizeof(struct rtmsg
)),
497 [RTM_FAM(RTM_NEWRULE
)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr
)),
498 [RTM_FAM(RTM_NEWQDISC
)] = NLMSG_LENGTH(sizeof(struct tcmsg
)),
499 [RTM_FAM(RTM_NEWTCLASS
)] = NLMSG_LENGTH(sizeof(struct tcmsg
)),
500 [RTM_FAM(RTM_NEWTFILTER
)] = NLMSG_LENGTH(sizeof(struct tcmsg
)),
501 [RTM_FAM(RTM_NEWACTION
)] = NLMSG_LENGTH(sizeof(struct tcamsg
)),
502 [RTM_FAM(RTM_GETMULTICAST
)] = NLMSG_LENGTH(sizeof(struct rtgenmsg
)),
503 [RTM_FAM(RTM_GETANYCAST
)] = NLMSG_LENGTH(sizeof(struct rtgenmsg
)),
506 static const int rta_max
[RTM_NR_FAMILIES
] =
508 [RTM_FAM(RTM_NEWLINK
)] = IFLA_MAX
,
509 [RTM_FAM(RTM_NEWADDR
)] = IFA_MAX
,
510 [RTM_FAM(RTM_NEWROUTE
)] = RTA_MAX
,
511 [RTM_FAM(RTM_NEWRULE
)] = FRA_MAX
,
512 [RTM_FAM(RTM_NEWQDISC
)] = TCA_MAX
,
513 [RTM_FAM(RTM_NEWTCLASS
)] = TCA_MAX
,
514 [RTM_FAM(RTM_NEWTFILTER
)] = TCA_MAX
,
515 [RTM_FAM(RTM_NEWACTION
)] = TCAA_MAX
,
518 void __rta_fill(struct sk_buff
*skb
, int attrtype
, int attrlen
, const void *data
)
521 int size
= RTA_LENGTH(attrlen
);
523 rta
= (struct rtattr
*)skb_put(skb
, RTA_ALIGN(size
));
524 rta
->rta_type
= attrtype
;
526 memcpy(RTA_DATA(rta
), data
, attrlen
);
527 memset(RTA_DATA(rta
) + attrlen
, 0, RTA_ALIGN(size
) - size
);
529 EXPORT_SYMBOL(__rta_fill
);
531 int rtnetlink_send(struct sk_buff
*skb
, struct net
*net
, u32 pid
, unsigned group
, int echo
)
533 struct sock
*rtnl
= net
->rtnl
;
536 NETLINK_CB(skb
).dst_group
= group
;
538 atomic_inc(&skb
->users
);
539 netlink_broadcast(rtnl
, skb
, pid
, group
, GFP_KERNEL
);
541 err
= netlink_unicast(rtnl
, skb
, pid
, MSG_DONTWAIT
);
545 int rtnl_unicast(struct sk_buff
*skb
, struct net
*net
, u32 pid
)
547 struct sock
*rtnl
= net
->rtnl
;
549 return nlmsg_unicast(rtnl
, skb
, pid
);
551 EXPORT_SYMBOL(rtnl_unicast
);
553 void rtnl_notify(struct sk_buff
*skb
, struct net
*net
, u32 pid
, u32 group
,
554 struct nlmsghdr
*nlh
, gfp_t flags
)
556 struct sock
*rtnl
= net
->rtnl
;
560 report
= nlmsg_report(nlh
);
562 nlmsg_notify(rtnl
, skb
, pid
, group
, report
, flags
);
564 EXPORT_SYMBOL(rtnl_notify
);
566 void rtnl_set_sk_err(struct net
*net
, u32 group
, int error
)
568 struct sock
*rtnl
= net
->rtnl
;
570 netlink_set_err(rtnl
, 0, group
, error
);
572 EXPORT_SYMBOL(rtnl_set_sk_err
);
574 int rtnetlink_put_metrics(struct sk_buff
*skb
, u32
*metrics
)
579 mx
= nla_nest_start(skb
, RTA_METRICS
);
583 for (i
= 0; i
< RTAX_MAX
; i
++) {
586 NLA_PUT_U32(skb
, i
+1, metrics
[i
]);
591 nla_nest_cancel(skb
, mx
);
595 return nla_nest_end(skb
, mx
);
598 nla_nest_cancel(skb
, mx
);
601 EXPORT_SYMBOL(rtnetlink_put_metrics
);
603 int rtnl_put_cacheinfo(struct sk_buff
*skb
, struct dst_entry
*dst
, u32 id
,
604 u32 ts
, u32 tsage
, long expires
, u32 error
)
606 struct rta_cacheinfo ci
= {
607 .rta_lastuse
= jiffies_to_clock_t(jiffies
- dst
->lastuse
),
608 .rta_used
= dst
->__use
,
609 .rta_clntref
= atomic_read(&(dst
->__refcnt
)),
617 ci
.rta_expires
= jiffies_to_clock_t(expires
);
619 return nla_put(skb
, RTA_CACHEINFO
, sizeof(ci
), &ci
);
621 EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo
);
623 static void set_operstate(struct net_device
*dev
, unsigned char transition
)
625 unsigned char operstate
= dev
->operstate
;
627 switch (transition
) {
629 if ((operstate
== IF_OPER_DORMANT
||
630 operstate
== IF_OPER_UNKNOWN
) &&
632 operstate
= IF_OPER_UP
;
635 case IF_OPER_DORMANT
:
636 if (operstate
== IF_OPER_UP
||
637 operstate
== IF_OPER_UNKNOWN
)
638 operstate
= IF_OPER_DORMANT
;
642 if (dev
->operstate
!= operstate
) {
643 write_lock_bh(&dev_base_lock
);
644 dev
->operstate
= operstate
;
645 write_unlock_bh(&dev_base_lock
);
646 netdev_state_change(dev
);
650 static unsigned int rtnl_dev_combine_flags(const struct net_device
*dev
,
651 const struct ifinfomsg
*ifm
)
653 unsigned int flags
= ifm
->ifi_flags
;
655 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
657 flags
= (flags
& ifm
->ifi_change
) |
658 (dev
->flags
& ~ifm
->ifi_change
);
663 static void copy_rtnl_link_stats(struct rtnl_link_stats
*a
,
664 const struct rtnl_link_stats64
*b
)
666 a
->rx_packets
= b
->rx_packets
;
667 a
->tx_packets
= b
->tx_packets
;
668 a
->rx_bytes
= b
->rx_bytes
;
669 a
->tx_bytes
= b
->tx_bytes
;
670 a
->rx_errors
= b
->rx_errors
;
671 a
->tx_errors
= b
->tx_errors
;
672 a
->rx_dropped
= b
->rx_dropped
;
673 a
->tx_dropped
= b
->tx_dropped
;
675 a
->multicast
= b
->multicast
;
676 a
->collisions
= b
->collisions
;
678 a
->rx_length_errors
= b
->rx_length_errors
;
679 a
->rx_over_errors
= b
->rx_over_errors
;
680 a
->rx_crc_errors
= b
->rx_crc_errors
;
681 a
->rx_frame_errors
= b
->rx_frame_errors
;
682 a
->rx_fifo_errors
= b
->rx_fifo_errors
;
683 a
->rx_missed_errors
= b
->rx_missed_errors
;
685 a
->tx_aborted_errors
= b
->tx_aborted_errors
;
686 a
->tx_carrier_errors
= b
->tx_carrier_errors
;
687 a
->tx_fifo_errors
= b
->tx_fifo_errors
;
688 a
->tx_heartbeat_errors
= b
->tx_heartbeat_errors
;
689 a
->tx_window_errors
= b
->tx_window_errors
;
691 a
->rx_compressed
= b
->rx_compressed
;
692 a
->tx_compressed
= b
->tx_compressed
;
695 static void copy_rtnl_link_stats64(void *v
, const struct rtnl_link_stats64
*b
)
697 memcpy(v
, b
, sizeof(*b
));
701 static inline int rtnl_vfinfo_size(const struct net_device
*dev
)
703 if (dev
->dev
.parent
&& dev_is_pci(dev
->dev
.parent
)) {
705 int num_vfs
= dev_num_vf(dev
->dev
.parent
);
706 size_t size
= nla_total_size(sizeof(struct nlattr
));
707 size
+= nla_total_size(num_vfs
* sizeof(struct nlattr
));
709 (nla_total_size(sizeof(struct ifla_vf_mac
)) +
710 nla_total_size(sizeof(struct ifla_vf_vlan
)) +
711 nla_total_size(sizeof(struct ifla_vf_tx_rate
)));
717 static size_t rtnl_port_size(const struct net_device
*dev
)
719 size_t port_size
= nla_total_size(4) /* PORT_VF */
720 + nla_total_size(PORT_PROFILE_MAX
) /* PORT_PROFILE */
721 + nla_total_size(sizeof(struct ifla_port_vsi
))
723 + nla_total_size(PORT_UUID_MAX
) /* PORT_INSTANCE_UUID */
724 + nla_total_size(PORT_UUID_MAX
) /* PORT_HOST_UUID */
725 + nla_total_size(1) /* PROT_VDP_REQUEST */
726 + nla_total_size(2); /* PORT_VDP_RESPONSE */
727 size_t vf_ports_size
= nla_total_size(sizeof(struct nlattr
));
728 size_t vf_port_size
= nla_total_size(sizeof(struct nlattr
))
730 size_t port_self_size
= nla_total_size(sizeof(struct nlattr
))
733 if (!dev
->netdev_ops
->ndo_get_vf_port
|| !dev
->dev
.parent
)
735 if (dev_num_vf(dev
->dev
.parent
))
736 return port_self_size
+ vf_ports_size
+
737 vf_port_size
* dev_num_vf(dev
->dev
.parent
);
739 return port_self_size
;
742 static noinline
size_t if_nlmsg_size(const struct net_device
*dev
)
744 return NLMSG_ALIGN(sizeof(struct ifinfomsg
))
745 + nla_total_size(IFNAMSIZ
) /* IFLA_IFNAME */
746 + nla_total_size(IFALIASZ
) /* IFLA_IFALIAS */
747 + nla_total_size(IFNAMSIZ
) /* IFLA_QDISC */
748 + nla_total_size(sizeof(struct rtnl_link_ifmap
))
749 + nla_total_size(sizeof(struct rtnl_link_stats
))
750 + nla_total_size(sizeof(struct rtnl_link_stats64
))
751 + nla_total_size(MAX_ADDR_LEN
) /* IFLA_ADDRESS */
752 + nla_total_size(MAX_ADDR_LEN
) /* IFLA_BROADCAST */
753 + nla_total_size(4) /* IFLA_TXQLEN */
754 + nla_total_size(4) /* IFLA_WEIGHT */
755 + nla_total_size(4) /* IFLA_MTU */
756 + nla_total_size(4) /* IFLA_LINK */
757 + nla_total_size(4) /* IFLA_MASTER */
758 + nla_total_size(1) /* IFLA_OPERSTATE */
759 + nla_total_size(1) /* IFLA_LINKMODE */
760 + nla_total_size(4) /* IFLA_NUM_VF */
761 + rtnl_vfinfo_size(dev
) /* IFLA_VFINFO_LIST */
762 + rtnl_port_size(dev
) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
763 + rtnl_link_get_size(dev
) /* IFLA_LINKINFO */
764 + rtnl_link_get_af_size(dev
); /* IFLA_AF_SPEC */
767 static int rtnl_vf_ports_fill(struct sk_buff
*skb
, struct net_device
*dev
)
769 struct nlattr
*vf_ports
;
770 struct nlattr
*vf_port
;
774 vf_ports
= nla_nest_start(skb
, IFLA_VF_PORTS
);
778 for (vf
= 0; vf
< dev_num_vf(dev
->dev
.parent
); vf
++) {
779 vf_port
= nla_nest_start(skb
, IFLA_VF_PORT
);
781 goto nla_put_failure
;
782 NLA_PUT_U32(skb
, IFLA_PORT_VF
, vf
);
783 err
= dev
->netdev_ops
->ndo_get_vf_port(dev
, vf
, skb
);
784 if (err
== -EMSGSIZE
)
785 goto nla_put_failure
;
787 nla_nest_cancel(skb
, vf_port
);
790 nla_nest_end(skb
, vf_port
);
793 nla_nest_end(skb
, vf_ports
);
798 nla_nest_cancel(skb
, vf_ports
);
802 static int rtnl_port_self_fill(struct sk_buff
*skb
, struct net_device
*dev
)
804 struct nlattr
*port_self
;
807 port_self
= nla_nest_start(skb
, IFLA_PORT_SELF
);
811 err
= dev
->netdev_ops
->ndo_get_vf_port(dev
, PORT_SELF_VF
, skb
);
813 nla_nest_cancel(skb
, port_self
);
814 return (err
== -EMSGSIZE
) ? err
: 0;
817 nla_nest_end(skb
, port_self
);
822 static int rtnl_port_fill(struct sk_buff
*skb
, struct net_device
*dev
)
826 if (!dev
->netdev_ops
->ndo_get_vf_port
|| !dev
->dev
.parent
)
829 err
= rtnl_port_self_fill(skb
, dev
);
833 if (dev_num_vf(dev
->dev
.parent
)) {
834 err
= rtnl_vf_ports_fill(skb
, dev
);
842 static int rtnl_fill_ifinfo(struct sk_buff
*skb
, struct net_device
*dev
,
843 int type
, u32 pid
, u32 seq
, u32 change
,
846 struct ifinfomsg
*ifm
;
847 struct nlmsghdr
*nlh
;
848 struct rtnl_link_stats64 temp
;
849 const struct rtnl_link_stats64
*stats
;
850 struct nlattr
*attr
, *af_spec
;
851 struct rtnl_af_ops
*af_ops
;
853 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ifm
), flags
);
857 ifm
= nlmsg_data(nlh
);
858 ifm
->ifi_family
= AF_UNSPEC
;
860 ifm
->ifi_type
= dev
->type
;
861 ifm
->ifi_index
= dev
->ifindex
;
862 ifm
->ifi_flags
= dev_get_flags(dev
);
863 ifm
->ifi_change
= change
;
865 NLA_PUT_STRING(skb
, IFLA_IFNAME
, dev
->name
);
866 NLA_PUT_U32(skb
, IFLA_TXQLEN
, dev
->tx_queue_len
);
867 NLA_PUT_U8(skb
, IFLA_OPERSTATE
,
868 netif_running(dev
) ? dev
->operstate
: IF_OPER_DOWN
);
869 NLA_PUT_U8(skb
, IFLA_LINKMODE
, dev
->link_mode
);
870 NLA_PUT_U32(skb
, IFLA_MTU
, dev
->mtu
);
871 NLA_PUT_U32(skb
, IFLA_GROUP
, dev
->group
);
873 if (dev
->ifindex
!= dev
->iflink
)
874 NLA_PUT_U32(skb
, IFLA_LINK
, dev
->iflink
);
877 NLA_PUT_U32(skb
, IFLA_MASTER
, dev
->master
->ifindex
);
880 NLA_PUT_STRING(skb
, IFLA_QDISC
, dev
->qdisc
->ops
->id
);
883 NLA_PUT_STRING(skb
, IFLA_IFALIAS
, dev
->ifalias
);
886 struct rtnl_link_ifmap map
= {
887 .mem_start
= dev
->mem_start
,
888 .mem_end
= dev
->mem_end
,
889 .base_addr
= dev
->base_addr
,
892 .port
= dev
->if_port
,
894 NLA_PUT(skb
, IFLA_MAP
, sizeof(map
), &map
);
898 NLA_PUT(skb
, IFLA_ADDRESS
, dev
->addr_len
, dev
->dev_addr
);
899 NLA_PUT(skb
, IFLA_BROADCAST
, dev
->addr_len
, dev
->broadcast
);
902 attr
= nla_reserve(skb
, IFLA_STATS
,
903 sizeof(struct rtnl_link_stats
));
905 goto nla_put_failure
;
907 stats
= dev_get_stats(dev
, &temp
);
908 copy_rtnl_link_stats(nla_data(attr
), stats
);
910 attr
= nla_reserve(skb
, IFLA_STATS64
,
911 sizeof(struct rtnl_link_stats64
));
913 goto nla_put_failure
;
914 copy_rtnl_link_stats64(nla_data(attr
), stats
);
917 NLA_PUT_U32(skb
, IFLA_NUM_VF
, dev_num_vf(dev
->dev
.parent
));
919 if (dev
->netdev_ops
->ndo_get_vf_config
&& dev
->dev
.parent
) {
922 struct nlattr
*vfinfo
, *vf
;
923 int num_vfs
= dev_num_vf(dev
->dev
.parent
);
925 vfinfo
= nla_nest_start(skb
, IFLA_VFINFO_LIST
);
927 goto nla_put_failure
;
928 for (i
= 0; i
< num_vfs
; i
++) {
929 struct ifla_vf_info ivi
;
930 struct ifla_vf_mac vf_mac
;
931 struct ifla_vf_vlan vf_vlan
;
932 struct ifla_vf_tx_rate vf_tx_rate
;
933 if (dev
->netdev_ops
->ndo_get_vf_config(dev
, i
, &ivi
))
935 vf_mac
.vf
= vf_vlan
.vf
= vf_tx_rate
.vf
= ivi
.vf
;
936 memcpy(vf_mac
.mac
, ivi
.mac
, sizeof(ivi
.mac
));
937 vf_vlan
.vlan
= ivi
.vlan
;
938 vf_vlan
.qos
= ivi
.qos
;
939 vf_tx_rate
.rate
= ivi
.tx_rate
;
940 vf
= nla_nest_start(skb
, IFLA_VF_INFO
);
942 nla_nest_cancel(skb
, vfinfo
);
943 goto nla_put_failure
;
945 NLA_PUT(skb
, IFLA_VF_MAC
, sizeof(vf_mac
), &vf_mac
);
946 NLA_PUT(skb
, IFLA_VF_VLAN
, sizeof(vf_vlan
), &vf_vlan
);
947 NLA_PUT(skb
, IFLA_VF_TX_RATE
, sizeof(vf_tx_rate
), &vf_tx_rate
);
948 nla_nest_end(skb
, vf
);
950 nla_nest_end(skb
, vfinfo
);
953 if (rtnl_port_fill(skb
, dev
))
954 goto nla_put_failure
;
956 if (dev
->rtnl_link_ops
) {
957 if (rtnl_link_fill(skb
, dev
) < 0)
958 goto nla_put_failure
;
961 if (!(af_spec
= nla_nest_start(skb
, IFLA_AF_SPEC
)))
962 goto nla_put_failure
;
964 list_for_each_entry(af_ops
, &rtnl_af_ops
, list
) {
965 if (af_ops
->fill_link_af
) {
969 if (!(af
= nla_nest_start(skb
, af_ops
->family
)))
970 goto nla_put_failure
;
972 err
= af_ops
->fill_link_af(skb
, dev
);
975 * Caller may return ENODATA to indicate that there
976 * was no data to be dumped. This is not an error, it
977 * means we should trim the attribute header and
981 nla_nest_cancel(skb
, af
);
983 goto nla_put_failure
;
985 nla_nest_end(skb
, af
);
989 nla_nest_end(skb
, af_spec
);
991 return nlmsg_end(skb
, nlh
);
994 nlmsg_cancel(skb
, nlh
);
998 static int rtnl_dump_ifinfo(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1000 struct net
*net
= sock_net(skb
->sk
);
1003 struct net_device
*dev
;
1004 struct hlist_head
*head
;
1005 struct hlist_node
*node
;
1008 s_idx
= cb
->args
[1];
1011 for (h
= s_h
; h
< NETDEV_HASHENTRIES
; h
++, s_idx
= 0) {
1013 head
= &net
->dev_index_head
[h
];
1014 hlist_for_each_entry_rcu(dev
, node
, head
, index_hlist
) {
1017 if (rtnl_fill_ifinfo(skb
, dev
, RTM_NEWLINK
,
1018 NETLINK_CB(cb
->skb
).pid
,
1019 cb
->nlh
->nlmsg_seq
, 0,
1034 const struct nla_policy ifla_policy
[IFLA_MAX
+1] = {
1035 [IFLA_IFNAME
] = { .type
= NLA_STRING
, .len
= IFNAMSIZ
-1 },
1036 [IFLA_ADDRESS
] = { .type
= NLA_BINARY
, .len
= MAX_ADDR_LEN
},
1037 [IFLA_BROADCAST
] = { .type
= NLA_BINARY
, .len
= MAX_ADDR_LEN
},
1038 [IFLA_MAP
] = { .len
= sizeof(struct rtnl_link_ifmap
) },
1039 [IFLA_MTU
] = { .type
= NLA_U32
},
1040 [IFLA_LINK
] = { .type
= NLA_U32
},
1041 [IFLA_MASTER
] = { .type
= NLA_U32
},
1042 [IFLA_TXQLEN
] = { .type
= NLA_U32
},
1043 [IFLA_WEIGHT
] = { .type
= NLA_U32
},
1044 [IFLA_OPERSTATE
] = { .type
= NLA_U8
},
1045 [IFLA_LINKMODE
] = { .type
= NLA_U8
},
1046 [IFLA_LINKINFO
] = { .type
= NLA_NESTED
},
1047 [IFLA_NET_NS_PID
] = { .type
= NLA_U32
},
1048 [IFLA_IFALIAS
] = { .type
= NLA_STRING
, .len
= IFALIASZ
-1 },
1049 [IFLA_VFINFO_LIST
] = {. type
= NLA_NESTED
},
1050 [IFLA_VF_PORTS
] = { .type
= NLA_NESTED
},
1051 [IFLA_PORT_SELF
] = { .type
= NLA_NESTED
},
1052 [IFLA_AF_SPEC
] = { .type
= NLA_NESTED
},
1054 EXPORT_SYMBOL(ifla_policy
);
1056 static const struct nla_policy ifla_info_policy
[IFLA_INFO_MAX
+1] = {
1057 [IFLA_INFO_KIND
] = { .type
= NLA_STRING
},
1058 [IFLA_INFO_DATA
] = { .type
= NLA_NESTED
},
1061 static const struct nla_policy ifla_vfinfo_policy
[IFLA_VF_INFO_MAX
+1] = {
1062 [IFLA_VF_INFO
] = { .type
= NLA_NESTED
},
1065 static const struct nla_policy ifla_vf_policy
[IFLA_VF_MAX
+1] = {
1066 [IFLA_VF_MAC
] = { .type
= NLA_BINARY
,
1067 .len
= sizeof(struct ifla_vf_mac
) },
1068 [IFLA_VF_VLAN
] = { .type
= NLA_BINARY
,
1069 .len
= sizeof(struct ifla_vf_vlan
) },
1070 [IFLA_VF_TX_RATE
] = { .type
= NLA_BINARY
,
1071 .len
= sizeof(struct ifla_vf_tx_rate
) },
1074 static const struct nla_policy ifla_port_policy
[IFLA_PORT_MAX
+1] = {
1075 [IFLA_PORT_VF
] = { .type
= NLA_U32
},
1076 [IFLA_PORT_PROFILE
] = { .type
= NLA_STRING
,
1077 .len
= PORT_PROFILE_MAX
},
1078 [IFLA_PORT_VSI_TYPE
] = { .type
= NLA_BINARY
,
1079 .len
= sizeof(struct ifla_port_vsi
)},
1080 [IFLA_PORT_INSTANCE_UUID
] = { .type
= NLA_BINARY
,
1081 .len
= PORT_UUID_MAX
},
1082 [IFLA_PORT_HOST_UUID
] = { .type
= NLA_STRING
,
1083 .len
= PORT_UUID_MAX
},
1084 [IFLA_PORT_REQUEST
] = { .type
= NLA_U8
, },
1085 [IFLA_PORT_RESPONSE
] = { .type
= NLA_U16
, },
1088 struct net
*rtnl_link_get_net(struct net
*src_net
, struct nlattr
*tb
[])
1091 /* Examine the link attributes and figure out which
1092 * network namespace we are talking about.
1094 if (tb
[IFLA_NET_NS_PID
])
1095 net
= get_net_ns_by_pid(nla_get_u32(tb
[IFLA_NET_NS_PID
]));
1097 net
= get_net(src_net
);
1100 EXPORT_SYMBOL(rtnl_link_get_net
);
1102 static int validate_linkmsg(struct net_device
*dev
, struct nlattr
*tb
[])
1105 if (tb
[IFLA_ADDRESS
] &&
1106 nla_len(tb
[IFLA_ADDRESS
]) < dev
->addr_len
)
1109 if (tb
[IFLA_BROADCAST
] &&
1110 nla_len(tb
[IFLA_BROADCAST
]) < dev
->addr_len
)
1114 if (tb
[IFLA_AF_SPEC
]) {
1118 nla_for_each_nested(af
, tb
[IFLA_AF_SPEC
], rem
) {
1119 const struct rtnl_af_ops
*af_ops
;
1121 if (!(af_ops
= rtnl_af_lookup(nla_type(af
))))
1122 return -EAFNOSUPPORT
;
1124 if (!af_ops
->set_link_af
)
1127 if (af_ops
->validate_link_af
) {
1128 err
= af_ops
->validate_link_af(dev
, af
);
1138 static int do_setvfinfo(struct net_device
*dev
, struct nlattr
*attr
)
1140 int rem
, err
= -EINVAL
;
1142 const struct net_device_ops
*ops
= dev
->netdev_ops
;
1144 nla_for_each_nested(vf
, attr
, rem
) {
1145 switch (nla_type(vf
)) {
1147 struct ifla_vf_mac
*ivm
;
1150 if (ops
->ndo_set_vf_mac
)
1151 err
= ops
->ndo_set_vf_mac(dev
, ivm
->vf
,
1155 case IFLA_VF_VLAN
: {
1156 struct ifla_vf_vlan
*ivv
;
1159 if (ops
->ndo_set_vf_vlan
)
1160 err
= ops
->ndo_set_vf_vlan(dev
, ivv
->vf
,
1165 case IFLA_VF_TX_RATE
: {
1166 struct ifla_vf_tx_rate
*ivt
;
1169 if (ops
->ndo_set_vf_tx_rate
)
1170 err
= ops
->ndo_set_vf_tx_rate(dev
, ivt
->vf
,
1184 static int do_set_master(struct net_device
*dev
, int ifindex
)
1186 struct net_device
*master_dev
;
1187 const struct net_device_ops
*ops
;
1191 if (dev
->master
->ifindex
== ifindex
)
1193 ops
= dev
->master
->netdev_ops
;
1194 if (ops
->ndo_del_slave
) {
1195 err
= ops
->ndo_del_slave(dev
->master
, dev
);
1204 master_dev
= __dev_get_by_index(dev_net(dev
), ifindex
);
1207 ops
= master_dev
->netdev_ops
;
1208 if (ops
->ndo_add_slave
) {
1209 err
= ops
->ndo_add_slave(master_dev
, dev
);
1219 static int do_setlink(struct net_device
*dev
, struct ifinfomsg
*ifm
,
1220 struct nlattr
**tb
, char *ifname
, int modified
)
1222 const struct net_device_ops
*ops
= dev
->netdev_ops
;
1223 int send_addr_notify
= 0;
1226 if (tb
[IFLA_NET_NS_PID
]) {
1227 struct net
*net
= rtnl_link_get_net(dev_net(dev
), tb
);
1232 err
= dev_change_net_namespace(dev
, net
, ifname
);
1240 struct rtnl_link_ifmap
*u_map
;
1243 if (!ops
->ndo_set_config
) {
1248 if (!netif_device_present(dev
)) {
1253 u_map
= nla_data(tb
[IFLA_MAP
]);
1254 k_map
.mem_start
= (unsigned long) u_map
->mem_start
;
1255 k_map
.mem_end
= (unsigned long) u_map
->mem_end
;
1256 k_map
.base_addr
= (unsigned short) u_map
->base_addr
;
1257 k_map
.irq
= (unsigned char) u_map
->irq
;
1258 k_map
.dma
= (unsigned char) u_map
->dma
;
1259 k_map
.port
= (unsigned char) u_map
->port
;
1261 err
= ops
->ndo_set_config(dev
, &k_map
);
1268 if (tb
[IFLA_ADDRESS
]) {
1269 struct sockaddr
*sa
;
1272 if (!ops
->ndo_set_mac_address
) {
1277 if (!netif_device_present(dev
)) {
1282 len
= sizeof(sa_family_t
) + dev
->addr_len
;
1283 sa
= kmalloc(len
, GFP_KERNEL
);
1288 sa
->sa_family
= dev
->type
;
1289 memcpy(sa
->sa_data
, nla_data(tb
[IFLA_ADDRESS
]),
1291 err
= ops
->ndo_set_mac_address(dev
, sa
);
1295 send_addr_notify
= 1;
1300 err
= dev_set_mtu(dev
, nla_get_u32(tb
[IFLA_MTU
]));
1306 if (tb
[IFLA_GROUP
]) {
1307 dev_set_group(dev
, nla_get_u32(tb
[IFLA_GROUP
]));
1312 * Interface selected by interface index but interface
1313 * name provided implies that a name change has been
1316 if (ifm
->ifi_index
> 0 && ifname
[0]) {
1317 err
= dev_change_name(dev
, ifname
);
1323 if (tb
[IFLA_IFALIAS
]) {
1324 err
= dev_set_alias(dev
, nla_data(tb
[IFLA_IFALIAS
]),
1325 nla_len(tb
[IFLA_IFALIAS
]));
1331 if (tb
[IFLA_BROADCAST
]) {
1332 nla_memcpy(dev
->broadcast
, tb
[IFLA_BROADCAST
], dev
->addr_len
);
1333 send_addr_notify
= 1;
1336 if (ifm
->ifi_flags
|| ifm
->ifi_change
) {
1337 err
= dev_change_flags(dev
, rtnl_dev_combine_flags(dev
, ifm
));
1342 if (tb
[IFLA_MASTER
]) {
1343 err
= do_set_master(dev
, nla_get_u32(tb
[IFLA_MASTER
]));
1349 if (tb
[IFLA_TXQLEN
])
1350 dev
->tx_queue_len
= nla_get_u32(tb
[IFLA_TXQLEN
]);
1352 if (tb
[IFLA_OPERSTATE
])
1353 set_operstate(dev
, nla_get_u8(tb
[IFLA_OPERSTATE
]));
1355 if (tb
[IFLA_LINKMODE
]) {
1356 write_lock_bh(&dev_base_lock
);
1357 dev
->link_mode
= nla_get_u8(tb
[IFLA_LINKMODE
]);
1358 write_unlock_bh(&dev_base_lock
);
1361 if (tb
[IFLA_VFINFO_LIST
]) {
1362 struct nlattr
*attr
;
1364 nla_for_each_nested(attr
, tb
[IFLA_VFINFO_LIST
], rem
) {
1365 if (nla_type(attr
) != IFLA_VF_INFO
) {
1369 err
= do_setvfinfo(dev
, attr
);
1377 if (tb
[IFLA_VF_PORTS
]) {
1378 struct nlattr
*port
[IFLA_PORT_MAX
+1];
1379 struct nlattr
*attr
;
1384 if (!ops
->ndo_set_vf_port
)
1387 nla_for_each_nested(attr
, tb
[IFLA_VF_PORTS
], rem
) {
1388 if (nla_type(attr
) != IFLA_VF_PORT
)
1390 err
= nla_parse_nested(port
, IFLA_PORT_MAX
,
1391 attr
, ifla_port_policy
);
1394 if (!port
[IFLA_PORT_VF
]) {
1398 vf
= nla_get_u32(port
[IFLA_PORT_VF
]);
1399 err
= ops
->ndo_set_vf_port(dev
, vf
, port
);
1407 if (tb
[IFLA_PORT_SELF
]) {
1408 struct nlattr
*port
[IFLA_PORT_MAX
+1];
1410 err
= nla_parse_nested(port
, IFLA_PORT_MAX
,
1411 tb
[IFLA_PORT_SELF
], ifla_port_policy
);
1416 if (ops
->ndo_set_vf_port
)
1417 err
= ops
->ndo_set_vf_port(dev
, PORT_SELF_VF
, port
);
1423 if (tb
[IFLA_AF_SPEC
]) {
1427 nla_for_each_nested(af
, tb
[IFLA_AF_SPEC
], rem
) {
1428 const struct rtnl_af_ops
*af_ops
;
1430 if (!(af_ops
= rtnl_af_lookup(nla_type(af
))))
1433 err
= af_ops
->set_link_af(dev
, af
);
1443 if (err
< 0 && modified
&& net_ratelimit())
1444 printk(KERN_WARNING
"A link change request failed with "
1445 "some changes committed already. Interface %s may "
1446 "have been left with an inconsistent configuration, "
1447 "please check.\n", dev
->name
);
1449 if (send_addr_notify
)
1450 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
1454 static int rtnl_setlink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1456 struct net
*net
= sock_net(skb
->sk
);
1457 struct ifinfomsg
*ifm
;
1458 struct net_device
*dev
;
1460 struct nlattr
*tb
[IFLA_MAX
+1];
1461 char ifname
[IFNAMSIZ
];
1463 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1467 if (tb
[IFLA_IFNAME
])
1468 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1473 ifm
= nlmsg_data(nlh
);
1474 if (ifm
->ifi_index
> 0)
1475 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1476 else if (tb
[IFLA_IFNAME
])
1477 dev
= __dev_get_by_name(net
, ifname
);
1486 err
= validate_linkmsg(dev
, tb
);
1490 err
= do_setlink(dev
, ifm
, tb
, ifname
, 0);
1495 static int rtnl_dellink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1497 struct net
*net
= sock_net(skb
->sk
);
1498 const struct rtnl_link_ops
*ops
;
1499 struct net_device
*dev
;
1500 struct ifinfomsg
*ifm
;
1501 char ifname
[IFNAMSIZ
];
1502 struct nlattr
*tb
[IFLA_MAX
+1];
1504 LIST_HEAD(list_kill
);
1506 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1510 if (tb
[IFLA_IFNAME
])
1511 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1513 ifm
= nlmsg_data(nlh
);
1514 if (ifm
->ifi_index
> 0)
1515 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1516 else if (tb
[IFLA_IFNAME
])
1517 dev
= __dev_get_by_name(net
, ifname
);
1524 ops
= dev
->rtnl_link_ops
;
1528 ops
->dellink(dev
, &list_kill
);
1529 unregister_netdevice_many(&list_kill
);
1530 list_del(&list_kill
);
1534 int rtnl_configure_link(struct net_device
*dev
, const struct ifinfomsg
*ifm
)
1536 unsigned int old_flags
;
1539 old_flags
= dev
->flags
;
1540 if (ifm
&& (ifm
->ifi_flags
|| ifm
->ifi_change
)) {
1541 err
= __dev_change_flags(dev
, rtnl_dev_combine_flags(dev
, ifm
));
1546 dev
->rtnl_link_state
= RTNL_LINK_INITIALIZED
;
1547 rtmsg_ifinfo(RTM_NEWLINK
, dev
, ~0U);
1549 __dev_notify_flags(dev
, old_flags
);
1552 EXPORT_SYMBOL(rtnl_configure_link
);
1554 struct net_device
*rtnl_create_link(struct net
*src_net
, struct net
*net
,
1555 char *ifname
, const struct rtnl_link_ops
*ops
, struct nlattr
*tb
[])
1558 struct net_device
*dev
;
1559 unsigned int num_queues
= 1;
1560 unsigned int real_num_queues
= 1;
1562 if (ops
->get_tx_queues
) {
1563 err
= ops
->get_tx_queues(src_net
, tb
, &num_queues
,
1569 dev
= alloc_netdev_mq(ops
->priv_size
, ifname
, ops
->setup
, num_queues
);
1573 dev_net_set(dev
, net
);
1574 dev
->rtnl_link_ops
= ops
;
1575 dev
->rtnl_link_state
= RTNL_LINK_INITIALIZING
;
1576 dev
->real_num_tx_queues
= real_num_queues
;
1579 dev
->mtu
= nla_get_u32(tb
[IFLA_MTU
]);
1580 if (tb
[IFLA_ADDRESS
])
1581 memcpy(dev
->dev_addr
, nla_data(tb
[IFLA_ADDRESS
]),
1582 nla_len(tb
[IFLA_ADDRESS
]));
1583 if (tb
[IFLA_BROADCAST
])
1584 memcpy(dev
->broadcast
, nla_data(tb
[IFLA_BROADCAST
]),
1585 nla_len(tb
[IFLA_BROADCAST
]));
1586 if (tb
[IFLA_TXQLEN
])
1587 dev
->tx_queue_len
= nla_get_u32(tb
[IFLA_TXQLEN
]);
1588 if (tb
[IFLA_OPERSTATE
])
1589 set_operstate(dev
, nla_get_u8(tb
[IFLA_OPERSTATE
]));
1590 if (tb
[IFLA_LINKMODE
])
1591 dev
->link_mode
= nla_get_u8(tb
[IFLA_LINKMODE
]);
1593 dev_set_group(dev
, nla_get_u32(tb
[IFLA_GROUP
]));
1598 return ERR_PTR(err
);
1600 EXPORT_SYMBOL(rtnl_create_link
);
1602 static int rtnl_group_changelink(struct net
*net
, int group
,
1603 struct ifinfomsg
*ifm
,
1606 struct net_device
*dev
;
1609 for_each_netdev(net
, dev
) {
1610 if (dev
->group
== group
) {
1611 err
= do_setlink(dev
, ifm
, tb
, NULL
, 0);
1620 static int rtnl_newlink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1622 struct net
*net
= sock_net(skb
->sk
);
1623 const struct rtnl_link_ops
*ops
;
1624 struct net_device
*dev
;
1625 struct ifinfomsg
*ifm
;
1626 char kind
[MODULE_NAME_LEN
];
1627 char ifname
[IFNAMSIZ
];
1628 struct nlattr
*tb
[IFLA_MAX
+1];
1629 struct nlattr
*linkinfo
[IFLA_INFO_MAX
+1];
1632 #ifdef CONFIG_MODULES
1635 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1639 if (tb
[IFLA_IFNAME
])
1640 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1644 ifm
= nlmsg_data(nlh
);
1645 if (ifm
->ifi_index
> 0)
1646 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1649 dev
= __dev_get_by_name(net
, ifname
);
1654 err
= validate_linkmsg(dev
, tb
);
1658 if (tb
[IFLA_LINKINFO
]) {
1659 err
= nla_parse_nested(linkinfo
, IFLA_INFO_MAX
,
1660 tb
[IFLA_LINKINFO
], ifla_info_policy
);
1664 memset(linkinfo
, 0, sizeof(linkinfo
));
1666 if (linkinfo
[IFLA_INFO_KIND
]) {
1667 nla_strlcpy(kind
, linkinfo
[IFLA_INFO_KIND
], sizeof(kind
));
1668 ops
= rtnl_link_ops_get(kind
);
1675 struct nlattr
*attr
[ops
? ops
->maxtype
+ 1 : 0], **data
= NULL
;
1676 struct net
*dest_net
;
1679 if (ops
->maxtype
&& linkinfo
[IFLA_INFO_DATA
]) {
1680 err
= nla_parse_nested(attr
, ops
->maxtype
,
1681 linkinfo
[IFLA_INFO_DATA
],
1687 if (ops
->validate
) {
1688 err
= ops
->validate(tb
, data
);
1697 if (nlh
->nlmsg_flags
& NLM_F_EXCL
)
1699 if (nlh
->nlmsg_flags
& NLM_F_REPLACE
)
1702 if (linkinfo
[IFLA_INFO_DATA
]) {
1703 if (!ops
|| ops
!= dev
->rtnl_link_ops
||
1707 err
= ops
->changelink(dev
, tb
, data
);
1713 return do_setlink(dev
, ifm
, tb
, ifname
, modified
);
1716 if (!(nlh
->nlmsg_flags
& NLM_F_CREATE
)) {
1717 if (ifm
->ifi_index
== 0 && tb
[IFLA_GROUP
])
1718 return rtnl_group_changelink(net
,
1719 nla_get_u32(tb
[IFLA_GROUP
]),
1726 if (tb
[IFLA_MAP
] || tb
[IFLA_MASTER
] || tb
[IFLA_PROTINFO
])
1730 #ifdef CONFIG_MODULES
1733 request_module("rtnl-link-%s", kind
);
1735 ops
= rtnl_link_ops_get(kind
);
1744 snprintf(ifname
, IFNAMSIZ
, "%s%%d", ops
->kind
);
1746 dest_net
= rtnl_link_get_net(net
, tb
);
1747 if (IS_ERR(dest_net
))
1748 return PTR_ERR(dest_net
);
1750 dev
= rtnl_create_link(net
, dest_net
, ifname
, ops
, tb
);
1754 else if (ops
->newlink
)
1755 err
= ops
->newlink(net
, dev
, tb
, data
);
1757 err
= register_netdevice(dev
);
1759 if (err
< 0 && !IS_ERR(dev
))
1764 err
= rtnl_configure_link(dev
, ifm
);
1766 unregister_netdevice(dev
);
1773 static int rtnl_getlink(struct sk_buff
*skb
, struct nlmsghdr
* nlh
, void *arg
)
1775 struct net
*net
= sock_net(skb
->sk
);
1776 struct ifinfomsg
*ifm
;
1777 char ifname
[IFNAMSIZ
];
1778 struct nlattr
*tb
[IFLA_MAX
+1];
1779 struct net_device
*dev
= NULL
;
1780 struct sk_buff
*nskb
;
1783 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1787 if (tb
[IFLA_IFNAME
])
1788 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1790 ifm
= nlmsg_data(nlh
);
1791 if (ifm
->ifi_index
> 0)
1792 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1793 else if (tb
[IFLA_IFNAME
])
1794 dev
= __dev_get_by_name(net
, ifname
);
1801 nskb
= nlmsg_new(if_nlmsg_size(dev
), GFP_KERNEL
);
1805 err
= rtnl_fill_ifinfo(nskb
, dev
, RTM_NEWLINK
, NETLINK_CB(skb
).pid
,
1806 nlh
->nlmsg_seq
, 0, 0);
1808 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1809 WARN_ON(err
== -EMSGSIZE
);
1812 err
= rtnl_unicast(nskb
, net
, NETLINK_CB(skb
).pid
);
1817 static int rtnl_dump_all(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1820 int s_idx
= cb
->family
;
1824 for (idx
= 1; idx
<= RTNL_FAMILY_MAX
; idx
++) {
1825 int type
= cb
->nlh
->nlmsg_type
-RTM_BASE
;
1826 if (idx
< s_idx
|| idx
== PF_PACKET
)
1828 if (rtnl_msg_handlers
[idx
] == NULL
||
1829 rtnl_msg_handlers
[idx
][type
].dumpit
== NULL
)
1832 memset(&cb
->args
[0], 0, sizeof(cb
->args
));
1833 if (rtnl_msg_handlers
[idx
][type
].dumpit(skb
, cb
))
1841 void rtmsg_ifinfo(int type
, struct net_device
*dev
, unsigned change
)
1843 struct net
*net
= dev_net(dev
);
1844 struct sk_buff
*skb
;
1847 skb
= nlmsg_new(if_nlmsg_size(dev
), GFP_KERNEL
);
1851 err
= rtnl_fill_ifinfo(skb
, dev
, type
, 0, 0, change
, 0);
1853 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1854 WARN_ON(err
== -EMSGSIZE
);
1858 rtnl_notify(skb
, net
, 0, RTNLGRP_LINK
, NULL
, GFP_KERNEL
);
1862 rtnl_set_sk_err(net
, RTNLGRP_LINK
, err
);
1865 /* Protected by RTNL sempahore. */
1866 static struct rtattr
**rta_buf
;
1867 static int rtattr_max
;
1869 /* Process one rtnetlink message. */
1871 static int rtnetlink_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
1873 struct net
*net
= sock_net(skb
->sk
);
1874 rtnl_doit_func doit
;
1880 type
= nlh
->nlmsg_type
;
1886 /* All the messages must have at least 1 byte length */
1887 if (nlh
->nlmsg_len
< NLMSG_LENGTH(sizeof(struct rtgenmsg
)))
1890 family
= ((struct rtgenmsg
*)NLMSG_DATA(nlh
))->rtgen_family
;
1894 if (kind
!= 2 && security_netlink_recv(skb
, CAP_NET_ADMIN
))
1897 if (kind
== 2 && nlh
->nlmsg_flags
&NLM_F_DUMP
) {
1899 rtnl_dumpit_func dumpit
;
1901 dumpit
= rtnl_get_dumpit(family
, type
);
1906 return netlink_dump_start(rtnl
, skb
, nlh
, dumpit
, NULL
);
1909 memset(rta_buf
, 0, (rtattr_max
* sizeof(struct rtattr
*)));
1911 min_len
= rtm_min
[sz_idx
];
1912 if (nlh
->nlmsg_len
< min_len
)
1915 if (nlh
->nlmsg_len
> min_len
) {
1916 int attrlen
= nlh
->nlmsg_len
- NLMSG_ALIGN(min_len
);
1917 struct rtattr
*attr
= (void *)nlh
+ NLMSG_ALIGN(min_len
);
1919 while (RTA_OK(attr
, attrlen
)) {
1920 unsigned flavor
= attr
->rta_type
;
1922 if (flavor
> rta_max
[sz_idx
])
1924 rta_buf
[flavor
-1] = attr
;
1926 attr
= RTA_NEXT(attr
, attrlen
);
1930 doit
= rtnl_get_doit(family
, type
);
1934 return doit(skb
, nlh
, (void *)&rta_buf
[0]);
1937 static void rtnetlink_rcv(struct sk_buff
*skb
)
1940 netlink_rcv_skb(skb
, &rtnetlink_rcv_msg
);
1944 static int rtnetlink_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
1946 struct net_device
*dev
= ptr
;
1952 case NETDEV_POST_INIT
:
1953 case NETDEV_REGISTER
:
1955 case NETDEV_PRE_TYPE_CHANGE
:
1956 case NETDEV_GOING_DOWN
:
1957 case NETDEV_UNREGISTER
:
1958 case NETDEV_UNREGISTER_BATCH
:
1959 case NETDEV_RELEASE
:
1963 rtmsg_ifinfo(RTM_NEWLINK
, dev
, 0);
1969 static struct notifier_block rtnetlink_dev_notifier
= {
1970 .notifier_call
= rtnetlink_event
,
1974 static int __net_init
rtnetlink_net_init(struct net
*net
)
1977 sk
= netlink_kernel_create(net
, NETLINK_ROUTE
, RTNLGRP_MAX
,
1978 rtnetlink_rcv
, NULL
, THIS_MODULE
);
1985 static void __net_exit
rtnetlink_net_exit(struct net
*net
)
1987 netlink_kernel_release(net
->rtnl
);
1991 static struct pernet_operations rtnetlink_net_ops
= {
1992 .init
= rtnetlink_net_init
,
1993 .exit
= rtnetlink_net_exit
,
1996 void __init
rtnetlink_init(void)
2001 for (i
= 0; i
< ARRAY_SIZE(rta_max
); i
++)
2002 if (rta_max
[i
] > rtattr_max
)
2003 rtattr_max
= rta_max
[i
];
2004 rta_buf
= kmalloc(rtattr_max
* sizeof(struct rtattr
*), GFP_KERNEL
);
2006 panic("rtnetlink_init: cannot allocate rta_buf\n");
2008 if (register_pernet_subsys(&rtnetlink_net_ops
))
2009 panic("rtnetlink_init: cannot initialize rtnetlink\n");
2011 netlink_set_nonroot(NETLINK_ROUTE
, NL_NONROOT_RECV
);
2012 register_netdevice_notifier(&rtnetlink_dev_notifier
);
2014 rtnl_register(PF_UNSPEC
, RTM_GETLINK
, rtnl_getlink
, rtnl_dump_ifinfo
);
2015 rtnl_register(PF_UNSPEC
, RTM_SETLINK
, rtnl_setlink
, NULL
);
2016 rtnl_register(PF_UNSPEC
, RTM_NEWLINK
, rtnl_newlink
, NULL
);
2017 rtnl_register(PF_UNSPEC
, RTM_DELLINK
, rtnl_dellink
, NULL
);
2019 rtnl_register(PF_UNSPEC
, RTM_GETADDR
, NULL
, rtnl_dump_all
);
2020 rtnl_register(PF_UNSPEC
, RTM_GETROUTE
, NULL
, rtnl_dump_all
);