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
;
854 nlh
= nlmsg_put(skb
, pid
, seq
, type
, sizeof(*ifm
), flags
);
858 ifm
= nlmsg_data(nlh
);
859 ifm
->ifi_family
= AF_UNSPEC
;
861 ifm
->ifi_type
= dev
->type
;
862 ifm
->ifi_index
= dev
->ifindex
;
863 ifm
->ifi_flags
= dev_get_flags(dev
);
864 ifm
->ifi_change
= change
;
866 NLA_PUT_STRING(skb
, IFLA_IFNAME
, dev
->name
);
867 NLA_PUT_U32(skb
, IFLA_TXQLEN
, dev
->tx_queue_len
);
868 NLA_PUT_U8(skb
, IFLA_OPERSTATE
,
869 netif_running(dev
) ? dev
->operstate
: IF_OPER_DOWN
);
870 NLA_PUT_U8(skb
, IFLA_LINKMODE
, dev
->link_mode
);
871 NLA_PUT_U32(skb
, IFLA_MTU
, dev
->mtu
);
872 NLA_PUT_U32(skb
, IFLA_GROUP
, dev
->group
);
874 if (dev
->ifindex
!= dev
->iflink
)
875 NLA_PUT_U32(skb
, IFLA_LINK
, dev
->iflink
);
878 NLA_PUT_U32(skb
, IFLA_MASTER
, dev
->master
->ifindex
);
881 NLA_PUT_STRING(skb
, IFLA_QDISC
, dev
->qdisc
->ops
->id
);
884 NLA_PUT_STRING(skb
, IFLA_IFALIAS
, dev
->ifalias
);
887 struct rtnl_link_ifmap map
= {
888 .mem_start
= dev
->mem_start
,
889 .mem_end
= dev
->mem_end
,
890 .base_addr
= dev
->base_addr
,
893 .port
= dev
->if_port
,
895 NLA_PUT(skb
, IFLA_MAP
, sizeof(map
), &map
);
899 NLA_PUT(skb
, IFLA_ADDRESS
, dev
->addr_len
, dev
->dev_addr
);
900 NLA_PUT(skb
, IFLA_BROADCAST
, dev
->addr_len
, dev
->broadcast
);
903 attr
= nla_reserve(skb
, IFLA_STATS
,
904 sizeof(struct rtnl_link_stats
));
906 goto nla_put_failure
;
908 stats
= dev_get_stats(dev
, &temp
);
909 copy_rtnl_link_stats(nla_data(attr
), stats
);
911 attr
= nla_reserve(skb
, IFLA_STATS64
,
912 sizeof(struct rtnl_link_stats64
));
914 goto nla_put_failure
;
915 copy_rtnl_link_stats64(nla_data(attr
), stats
);
918 NLA_PUT_U32(skb
, IFLA_NUM_VF
, dev_num_vf(dev
->dev
.parent
));
920 if (dev
->netdev_ops
->ndo_get_vf_config
&& dev
->dev
.parent
) {
923 struct nlattr
*vfinfo
, *vf
;
924 int num_vfs
= dev_num_vf(dev
->dev
.parent
);
926 vfinfo
= nla_nest_start(skb
, IFLA_VFINFO_LIST
);
928 goto nla_put_failure
;
929 for (i
= 0; i
< num_vfs
; i
++) {
930 struct ifla_vf_info ivi
;
931 struct ifla_vf_mac vf_mac
;
932 struct ifla_vf_vlan vf_vlan
;
933 struct ifla_vf_tx_rate vf_tx_rate
;
934 if (dev
->netdev_ops
->ndo_get_vf_config(dev
, i
, &ivi
))
936 vf_mac
.vf
= vf_vlan
.vf
= vf_tx_rate
.vf
= ivi
.vf
;
937 memcpy(vf_mac
.mac
, ivi
.mac
, sizeof(ivi
.mac
));
938 vf_vlan
.vlan
= ivi
.vlan
;
939 vf_vlan
.qos
= ivi
.qos
;
940 vf_tx_rate
.rate
= ivi
.tx_rate
;
941 vf
= nla_nest_start(skb
, IFLA_VF_INFO
);
943 nla_nest_cancel(skb
, vfinfo
);
944 goto nla_put_failure
;
946 NLA_PUT(skb
, IFLA_VF_MAC
, sizeof(vf_mac
), &vf_mac
);
947 NLA_PUT(skb
, IFLA_VF_VLAN
, sizeof(vf_vlan
), &vf_vlan
);
948 NLA_PUT(skb
, IFLA_VF_TX_RATE
, sizeof(vf_tx_rate
), &vf_tx_rate
);
949 nla_nest_end(skb
, vf
);
951 nla_nest_end(skb
, vfinfo
);
954 if (rtnl_port_fill(skb
, dev
))
955 goto nla_put_failure
;
957 if (dev
->rtnl_link_ops
) {
958 if (rtnl_link_fill(skb
, dev
) < 0)
959 goto nla_put_failure
;
962 if (!(af_spec
= nla_nest_start(skb
, IFLA_AF_SPEC
)))
963 goto nla_put_failure
;
965 list_for_each_entry(af_ops
, &rtnl_af_ops
, list
) {
966 if (af_ops
->fill_link_af
) {
970 if (!(af
= nla_nest_start(skb
, af_ops
->family
)))
971 goto nla_put_failure
;
973 err
= af_ops
->fill_link_af(skb
, dev
);
976 * Caller may return ENODATA to indicate that there
977 * was no data to be dumped. This is not an error, it
978 * means we should trim the attribute header and
982 nla_nest_cancel(skb
, af
);
984 goto nla_put_failure
;
986 nla_nest_end(skb
, af
);
990 nla_nest_end(skb
, af_spec
);
992 return nlmsg_end(skb
, nlh
);
995 nlmsg_cancel(skb
, nlh
);
999 static int rtnl_dump_ifinfo(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1001 struct net
*net
= sock_net(skb
->sk
);
1004 struct net_device
*dev
;
1005 struct hlist_head
*head
;
1006 struct hlist_node
*node
;
1009 s_idx
= cb
->args
[1];
1012 for (h
= s_h
; h
< NETDEV_HASHENTRIES
; h
++, s_idx
= 0) {
1014 head
= &net
->dev_index_head
[h
];
1015 hlist_for_each_entry_rcu(dev
, node
, head
, index_hlist
) {
1018 if (rtnl_fill_ifinfo(skb
, dev
, RTM_NEWLINK
,
1019 NETLINK_CB(cb
->skb
).pid
,
1020 cb
->nlh
->nlmsg_seq
, 0,
1035 const struct nla_policy ifla_policy
[IFLA_MAX
+1] = {
1036 [IFLA_IFNAME
] = { .type
= NLA_STRING
, .len
= IFNAMSIZ
-1 },
1037 [IFLA_ADDRESS
] = { .type
= NLA_BINARY
, .len
= MAX_ADDR_LEN
},
1038 [IFLA_BROADCAST
] = { .type
= NLA_BINARY
, .len
= MAX_ADDR_LEN
},
1039 [IFLA_MAP
] = { .len
= sizeof(struct rtnl_link_ifmap
) },
1040 [IFLA_MTU
] = { .type
= NLA_U32
},
1041 [IFLA_LINK
] = { .type
= NLA_U32
},
1042 [IFLA_MASTER
] = { .type
= NLA_U32
},
1043 [IFLA_TXQLEN
] = { .type
= NLA_U32
},
1044 [IFLA_WEIGHT
] = { .type
= NLA_U32
},
1045 [IFLA_OPERSTATE
] = { .type
= NLA_U8
},
1046 [IFLA_LINKMODE
] = { .type
= NLA_U8
},
1047 [IFLA_LINKINFO
] = { .type
= NLA_NESTED
},
1048 [IFLA_NET_NS_PID
] = { .type
= NLA_U32
},
1049 [IFLA_NET_NS_FD
] = { .type
= NLA_U32
},
1050 [IFLA_IFALIAS
] = { .type
= NLA_STRING
, .len
= IFALIASZ
-1 },
1051 [IFLA_VFINFO_LIST
] = {. type
= NLA_NESTED
},
1052 [IFLA_VF_PORTS
] = { .type
= NLA_NESTED
},
1053 [IFLA_PORT_SELF
] = { .type
= NLA_NESTED
},
1054 [IFLA_AF_SPEC
] = { .type
= NLA_NESTED
},
1056 EXPORT_SYMBOL(ifla_policy
);
1058 static const struct nla_policy ifla_info_policy
[IFLA_INFO_MAX
+1] = {
1059 [IFLA_INFO_KIND
] = { .type
= NLA_STRING
},
1060 [IFLA_INFO_DATA
] = { .type
= NLA_NESTED
},
1063 static const struct nla_policy ifla_vfinfo_policy
[IFLA_VF_INFO_MAX
+1] = {
1064 [IFLA_VF_INFO
] = { .type
= NLA_NESTED
},
1067 static const struct nla_policy ifla_vf_policy
[IFLA_VF_MAX
+1] = {
1068 [IFLA_VF_MAC
] = { .type
= NLA_BINARY
,
1069 .len
= sizeof(struct ifla_vf_mac
) },
1070 [IFLA_VF_VLAN
] = { .type
= NLA_BINARY
,
1071 .len
= sizeof(struct ifla_vf_vlan
) },
1072 [IFLA_VF_TX_RATE
] = { .type
= NLA_BINARY
,
1073 .len
= sizeof(struct ifla_vf_tx_rate
) },
1076 static const struct nla_policy ifla_port_policy
[IFLA_PORT_MAX
+1] = {
1077 [IFLA_PORT_VF
] = { .type
= NLA_U32
},
1078 [IFLA_PORT_PROFILE
] = { .type
= NLA_STRING
,
1079 .len
= PORT_PROFILE_MAX
},
1080 [IFLA_PORT_VSI_TYPE
] = { .type
= NLA_BINARY
,
1081 .len
= sizeof(struct ifla_port_vsi
)},
1082 [IFLA_PORT_INSTANCE_UUID
] = { .type
= NLA_BINARY
,
1083 .len
= PORT_UUID_MAX
},
1084 [IFLA_PORT_HOST_UUID
] = { .type
= NLA_STRING
,
1085 .len
= PORT_UUID_MAX
},
1086 [IFLA_PORT_REQUEST
] = { .type
= NLA_U8
, },
1087 [IFLA_PORT_RESPONSE
] = { .type
= NLA_U16
, },
1090 struct net
*rtnl_link_get_net(struct net
*src_net
, struct nlattr
*tb
[])
1093 /* Examine the link attributes and figure out which
1094 * network namespace we are talking about.
1096 if (tb
[IFLA_NET_NS_PID
])
1097 net
= get_net_ns_by_pid(nla_get_u32(tb
[IFLA_NET_NS_PID
]));
1098 else if (tb
[IFLA_NET_NS_FD
])
1099 net
= get_net_ns_by_fd(nla_get_u32(tb
[IFLA_NET_NS_FD
]));
1101 net
= get_net(src_net
);
1104 EXPORT_SYMBOL(rtnl_link_get_net
);
1106 static int validate_linkmsg(struct net_device
*dev
, struct nlattr
*tb
[])
1109 if (tb
[IFLA_ADDRESS
] &&
1110 nla_len(tb
[IFLA_ADDRESS
]) < dev
->addr_len
)
1113 if (tb
[IFLA_BROADCAST
] &&
1114 nla_len(tb
[IFLA_BROADCAST
]) < dev
->addr_len
)
1118 if (tb
[IFLA_AF_SPEC
]) {
1122 nla_for_each_nested(af
, tb
[IFLA_AF_SPEC
], rem
) {
1123 const struct rtnl_af_ops
*af_ops
;
1125 if (!(af_ops
= rtnl_af_lookup(nla_type(af
))))
1126 return -EAFNOSUPPORT
;
1128 if (!af_ops
->set_link_af
)
1131 if (af_ops
->validate_link_af
) {
1132 err
= af_ops
->validate_link_af(dev
, af
);
1142 static int do_setvfinfo(struct net_device
*dev
, struct nlattr
*attr
)
1144 int rem
, err
= -EINVAL
;
1146 const struct net_device_ops
*ops
= dev
->netdev_ops
;
1148 nla_for_each_nested(vf
, attr
, rem
) {
1149 switch (nla_type(vf
)) {
1151 struct ifla_vf_mac
*ivm
;
1154 if (ops
->ndo_set_vf_mac
)
1155 err
= ops
->ndo_set_vf_mac(dev
, ivm
->vf
,
1159 case IFLA_VF_VLAN
: {
1160 struct ifla_vf_vlan
*ivv
;
1163 if (ops
->ndo_set_vf_vlan
)
1164 err
= ops
->ndo_set_vf_vlan(dev
, ivv
->vf
,
1169 case IFLA_VF_TX_RATE
: {
1170 struct ifla_vf_tx_rate
*ivt
;
1173 if (ops
->ndo_set_vf_tx_rate
)
1174 err
= ops
->ndo_set_vf_tx_rate(dev
, ivt
->vf
,
1188 static int do_set_master(struct net_device
*dev
, int ifindex
)
1190 struct net_device
*master_dev
;
1191 const struct net_device_ops
*ops
;
1195 if (dev
->master
->ifindex
== ifindex
)
1197 ops
= dev
->master
->netdev_ops
;
1198 if (ops
->ndo_del_slave
) {
1199 err
= ops
->ndo_del_slave(dev
->master
, dev
);
1208 master_dev
= __dev_get_by_index(dev_net(dev
), ifindex
);
1211 ops
= master_dev
->netdev_ops
;
1212 if (ops
->ndo_add_slave
) {
1213 err
= ops
->ndo_add_slave(master_dev
, dev
);
1223 static int do_setlink(struct net_device
*dev
, struct ifinfomsg
*ifm
,
1224 struct nlattr
**tb
, char *ifname
, int modified
)
1226 const struct net_device_ops
*ops
= dev
->netdev_ops
;
1227 int send_addr_notify
= 0;
1230 if (tb
[IFLA_NET_NS_PID
] || tb
[IFLA_NET_NS_FD
]) {
1231 struct net
*net
= rtnl_link_get_net(dev_net(dev
), tb
);
1236 err
= dev_change_net_namespace(dev
, net
, ifname
);
1244 struct rtnl_link_ifmap
*u_map
;
1247 if (!ops
->ndo_set_config
) {
1252 if (!netif_device_present(dev
)) {
1257 u_map
= nla_data(tb
[IFLA_MAP
]);
1258 k_map
.mem_start
= (unsigned long) u_map
->mem_start
;
1259 k_map
.mem_end
= (unsigned long) u_map
->mem_end
;
1260 k_map
.base_addr
= (unsigned short) u_map
->base_addr
;
1261 k_map
.irq
= (unsigned char) u_map
->irq
;
1262 k_map
.dma
= (unsigned char) u_map
->dma
;
1263 k_map
.port
= (unsigned char) u_map
->port
;
1265 err
= ops
->ndo_set_config(dev
, &k_map
);
1272 if (tb
[IFLA_ADDRESS
]) {
1273 struct sockaddr
*sa
;
1276 if (!ops
->ndo_set_mac_address
) {
1281 if (!netif_device_present(dev
)) {
1286 len
= sizeof(sa_family_t
) + dev
->addr_len
;
1287 sa
= kmalloc(len
, GFP_KERNEL
);
1292 sa
->sa_family
= dev
->type
;
1293 memcpy(sa
->sa_data
, nla_data(tb
[IFLA_ADDRESS
]),
1295 err
= ops
->ndo_set_mac_address(dev
, sa
);
1299 send_addr_notify
= 1;
1304 err
= dev_set_mtu(dev
, nla_get_u32(tb
[IFLA_MTU
]));
1310 if (tb
[IFLA_GROUP
]) {
1311 dev_set_group(dev
, nla_get_u32(tb
[IFLA_GROUP
]));
1316 * Interface selected by interface index but interface
1317 * name provided implies that a name change has been
1320 if (ifm
->ifi_index
> 0 && ifname
[0]) {
1321 err
= dev_change_name(dev
, ifname
);
1327 if (tb
[IFLA_IFALIAS
]) {
1328 err
= dev_set_alias(dev
, nla_data(tb
[IFLA_IFALIAS
]),
1329 nla_len(tb
[IFLA_IFALIAS
]));
1335 if (tb
[IFLA_BROADCAST
]) {
1336 nla_memcpy(dev
->broadcast
, tb
[IFLA_BROADCAST
], dev
->addr_len
);
1337 send_addr_notify
= 1;
1340 if (ifm
->ifi_flags
|| ifm
->ifi_change
) {
1341 err
= dev_change_flags(dev
, rtnl_dev_combine_flags(dev
, ifm
));
1346 if (tb
[IFLA_MASTER
]) {
1347 err
= do_set_master(dev
, nla_get_u32(tb
[IFLA_MASTER
]));
1353 if (tb
[IFLA_TXQLEN
])
1354 dev
->tx_queue_len
= nla_get_u32(tb
[IFLA_TXQLEN
]);
1356 if (tb
[IFLA_OPERSTATE
])
1357 set_operstate(dev
, nla_get_u8(tb
[IFLA_OPERSTATE
]));
1359 if (tb
[IFLA_LINKMODE
]) {
1360 write_lock_bh(&dev_base_lock
);
1361 dev
->link_mode
= nla_get_u8(tb
[IFLA_LINKMODE
]);
1362 write_unlock_bh(&dev_base_lock
);
1365 if (tb
[IFLA_VFINFO_LIST
]) {
1366 struct nlattr
*attr
;
1368 nla_for_each_nested(attr
, tb
[IFLA_VFINFO_LIST
], rem
) {
1369 if (nla_type(attr
) != IFLA_VF_INFO
) {
1373 err
= do_setvfinfo(dev
, attr
);
1381 if (tb
[IFLA_VF_PORTS
]) {
1382 struct nlattr
*port
[IFLA_PORT_MAX
+1];
1383 struct nlattr
*attr
;
1388 if (!ops
->ndo_set_vf_port
)
1391 nla_for_each_nested(attr
, tb
[IFLA_VF_PORTS
], rem
) {
1392 if (nla_type(attr
) != IFLA_VF_PORT
)
1394 err
= nla_parse_nested(port
, IFLA_PORT_MAX
,
1395 attr
, ifla_port_policy
);
1398 if (!port
[IFLA_PORT_VF
]) {
1402 vf
= nla_get_u32(port
[IFLA_PORT_VF
]);
1403 err
= ops
->ndo_set_vf_port(dev
, vf
, port
);
1411 if (tb
[IFLA_PORT_SELF
]) {
1412 struct nlattr
*port
[IFLA_PORT_MAX
+1];
1414 err
= nla_parse_nested(port
, IFLA_PORT_MAX
,
1415 tb
[IFLA_PORT_SELF
], ifla_port_policy
);
1420 if (ops
->ndo_set_vf_port
)
1421 err
= ops
->ndo_set_vf_port(dev
, PORT_SELF_VF
, port
);
1427 if (tb
[IFLA_AF_SPEC
]) {
1431 nla_for_each_nested(af
, tb
[IFLA_AF_SPEC
], rem
) {
1432 const struct rtnl_af_ops
*af_ops
;
1434 if (!(af_ops
= rtnl_af_lookup(nla_type(af
))))
1437 err
= af_ops
->set_link_af(dev
, af
);
1447 if (err
< 0 && modified
&& net_ratelimit())
1448 printk(KERN_WARNING
"A link change request failed with "
1449 "some changes committed already. Interface %s may "
1450 "have been left with an inconsistent configuration, "
1451 "please check.\n", dev
->name
);
1453 if (send_addr_notify
)
1454 call_netdevice_notifiers(NETDEV_CHANGEADDR
, dev
);
1458 static int rtnl_setlink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1460 struct net
*net
= sock_net(skb
->sk
);
1461 struct ifinfomsg
*ifm
;
1462 struct net_device
*dev
;
1464 struct nlattr
*tb
[IFLA_MAX
+1];
1465 char ifname
[IFNAMSIZ
];
1467 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1471 if (tb
[IFLA_IFNAME
])
1472 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1477 ifm
= nlmsg_data(nlh
);
1478 if (ifm
->ifi_index
> 0)
1479 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1480 else if (tb
[IFLA_IFNAME
])
1481 dev
= __dev_get_by_name(net
, ifname
);
1490 err
= validate_linkmsg(dev
, tb
);
1494 err
= do_setlink(dev
, ifm
, tb
, ifname
, 0);
1499 static int rtnl_dellink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1501 struct net
*net
= sock_net(skb
->sk
);
1502 const struct rtnl_link_ops
*ops
;
1503 struct net_device
*dev
;
1504 struct ifinfomsg
*ifm
;
1505 char ifname
[IFNAMSIZ
];
1506 struct nlattr
*tb
[IFLA_MAX
+1];
1508 LIST_HEAD(list_kill
);
1510 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1514 if (tb
[IFLA_IFNAME
])
1515 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1517 ifm
= nlmsg_data(nlh
);
1518 if (ifm
->ifi_index
> 0)
1519 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1520 else if (tb
[IFLA_IFNAME
])
1521 dev
= __dev_get_by_name(net
, ifname
);
1528 ops
= dev
->rtnl_link_ops
;
1532 ops
->dellink(dev
, &list_kill
);
1533 unregister_netdevice_many(&list_kill
);
1534 list_del(&list_kill
);
1538 int rtnl_configure_link(struct net_device
*dev
, const struct ifinfomsg
*ifm
)
1540 unsigned int old_flags
;
1543 old_flags
= dev
->flags
;
1544 if (ifm
&& (ifm
->ifi_flags
|| ifm
->ifi_change
)) {
1545 err
= __dev_change_flags(dev
, rtnl_dev_combine_flags(dev
, ifm
));
1550 dev
->rtnl_link_state
= RTNL_LINK_INITIALIZED
;
1551 rtmsg_ifinfo(RTM_NEWLINK
, dev
, ~0U);
1553 __dev_notify_flags(dev
, old_flags
);
1556 EXPORT_SYMBOL(rtnl_configure_link
);
1558 struct net_device
*rtnl_create_link(struct net
*src_net
, struct net
*net
,
1559 char *ifname
, const struct rtnl_link_ops
*ops
, struct nlattr
*tb
[])
1562 struct net_device
*dev
;
1563 unsigned int num_queues
= 1;
1564 unsigned int real_num_queues
= 1;
1566 if (ops
->get_tx_queues
) {
1567 err
= ops
->get_tx_queues(src_net
, tb
, &num_queues
,
1573 dev
= alloc_netdev_mq(ops
->priv_size
, ifname
, ops
->setup
, num_queues
);
1577 dev_net_set(dev
, net
);
1578 dev
->rtnl_link_ops
= ops
;
1579 dev
->rtnl_link_state
= RTNL_LINK_INITIALIZING
;
1580 dev
->real_num_tx_queues
= real_num_queues
;
1583 dev
->mtu
= nla_get_u32(tb
[IFLA_MTU
]);
1584 if (tb
[IFLA_ADDRESS
])
1585 memcpy(dev
->dev_addr
, nla_data(tb
[IFLA_ADDRESS
]),
1586 nla_len(tb
[IFLA_ADDRESS
]));
1587 if (tb
[IFLA_BROADCAST
])
1588 memcpy(dev
->broadcast
, nla_data(tb
[IFLA_BROADCAST
]),
1589 nla_len(tb
[IFLA_BROADCAST
]));
1590 if (tb
[IFLA_TXQLEN
])
1591 dev
->tx_queue_len
= nla_get_u32(tb
[IFLA_TXQLEN
]);
1592 if (tb
[IFLA_OPERSTATE
])
1593 set_operstate(dev
, nla_get_u8(tb
[IFLA_OPERSTATE
]));
1594 if (tb
[IFLA_LINKMODE
])
1595 dev
->link_mode
= nla_get_u8(tb
[IFLA_LINKMODE
]);
1597 dev_set_group(dev
, nla_get_u32(tb
[IFLA_GROUP
]));
1602 return ERR_PTR(err
);
1604 EXPORT_SYMBOL(rtnl_create_link
);
1606 static int rtnl_group_changelink(struct net
*net
, int group
,
1607 struct ifinfomsg
*ifm
,
1610 struct net_device
*dev
;
1613 for_each_netdev(net
, dev
) {
1614 if (dev
->group
== group
) {
1615 err
= do_setlink(dev
, ifm
, tb
, NULL
, 0);
1624 static int rtnl_newlink(struct sk_buff
*skb
, struct nlmsghdr
*nlh
, void *arg
)
1626 struct net
*net
= sock_net(skb
->sk
);
1627 const struct rtnl_link_ops
*ops
;
1628 struct net_device
*dev
;
1629 struct ifinfomsg
*ifm
;
1630 char kind
[MODULE_NAME_LEN
];
1631 char ifname
[IFNAMSIZ
];
1632 struct nlattr
*tb
[IFLA_MAX
+1];
1633 struct nlattr
*linkinfo
[IFLA_INFO_MAX
+1];
1636 #ifdef CONFIG_MODULES
1639 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1643 if (tb
[IFLA_IFNAME
])
1644 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1648 ifm
= nlmsg_data(nlh
);
1649 if (ifm
->ifi_index
> 0)
1650 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1653 dev
= __dev_get_by_name(net
, ifname
);
1658 err
= validate_linkmsg(dev
, tb
);
1662 if (tb
[IFLA_LINKINFO
]) {
1663 err
= nla_parse_nested(linkinfo
, IFLA_INFO_MAX
,
1664 tb
[IFLA_LINKINFO
], ifla_info_policy
);
1668 memset(linkinfo
, 0, sizeof(linkinfo
));
1670 if (linkinfo
[IFLA_INFO_KIND
]) {
1671 nla_strlcpy(kind
, linkinfo
[IFLA_INFO_KIND
], sizeof(kind
));
1672 ops
= rtnl_link_ops_get(kind
);
1679 struct nlattr
*attr
[ops
? ops
->maxtype
+ 1 : 0], **data
= NULL
;
1680 struct net
*dest_net
;
1683 if (ops
->maxtype
&& linkinfo
[IFLA_INFO_DATA
]) {
1684 err
= nla_parse_nested(attr
, ops
->maxtype
,
1685 linkinfo
[IFLA_INFO_DATA
],
1691 if (ops
->validate
) {
1692 err
= ops
->validate(tb
, data
);
1701 if (nlh
->nlmsg_flags
& NLM_F_EXCL
)
1703 if (nlh
->nlmsg_flags
& NLM_F_REPLACE
)
1706 if (linkinfo
[IFLA_INFO_DATA
]) {
1707 if (!ops
|| ops
!= dev
->rtnl_link_ops
||
1711 err
= ops
->changelink(dev
, tb
, data
);
1717 return do_setlink(dev
, ifm
, tb
, ifname
, modified
);
1720 if (!(nlh
->nlmsg_flags
& NLM_F_CREATE
)) {
1721 if (ifm
->ifi_index
== 0 && tb
[IFLA_GROUP
])
1722 return rtnl_group_changelink(net
,
1723 nla_get_u32(tb
[IFLA_GROUP
]),
1730 if (tb
[IFLA_MAP
] || tb
[IFLA_MASTER
] || tb
[IFLA_PROTINFO
])
1734 #ifdef CONFIG_MODULES
1737 request_module("rtnl-link-%s", kind
);
1739 ops
= rtnl_link_ops_get(kind
);
1748 snprintf(ifname
, IFNAMSIZ
, "%s%%d", ops
->kind
);
1750 dest_net
= rtnl_link_get_net(net
, tb
);
1751 if (IS_ERR(dest_net
))
1752 return PTR_ERR(dest_net
);
1754 dev
= rtnl_create_link(net
, dest_net
, ifname
, ops
, tb
);
1758 else if (ops
->newlink
)
1759 err
= ops
->newlink(net
, dev
, tb
, data
);
1761 err
= register_netdevice(dev
);
1763 if (err
< 0 && !IS_ERR(dev
))
1768 err
= rtnl_configure_link(dev
, ifm
);
1770 unregister_netdevice(dev
);
1777 static int rtnl_getlink(struct sk_buff
*skb
, struct nlmsghdr
* nlh
, void *arg
)
1779 struct net
*net
= sock_net(skb
->sk
);
1780 struct ifinfomsg
*ifm
;
1781 char ifname
[IFNAMSIZ
];
1782 struct nlattr
*tb
[IFLA_MAX
+1];
1783 struct net_device
*dev
= NULL
;
1784 struct sk_buff
*nskb
;
1787 err
= nlmsg_parse(nlh
, sizeof(*ifm
), tb
, IFLA_MAX
, ifla_policy
);
1791 if (tb
[IFLA_IFNAME
])
1792 nla_strlcpy(ifname
, tb
[IFLA_IFNAME
], IFNAMSIZ
);
1794 ifm
= nlmsg_data(nlh
);
1795 if (ifm
->ifi_index
> 0)
1796 dev
= __dev_get_by_index(net
, ifm
->ifi_index
);
1797 else if (tb
[IFLA_IFNAME
])
1798 dev
= __dev_get_by_name(net
, ifname
);
1805 nskb
= nlmsg_new(if_nlmsg_size(dev
), GFP_KERNEL
);
1809 err
= rtnl_fill_ifinfo(nskb
, dev
, RTM_NEWLINK
, NETLINK_CB(skb
).pid
,
1810 nlh
->nlmsg_seq
, 0, 0);
1812 /* -EMSGSIZE implies BUG in if_nlmsg_size */
1813 WARN_ON(err
== -EMSGSIZE
);
1816 err
= rtnl_unicast(nskb
, net
, NETLINK_CB(skb
).pid
);
1821 static int rtnl_dump_all(struct sk_buff
*skb
, struct netlink_callback
*cb
)
1824 int s_idx
= cb
->family
;
1828 for (idx
= 1; idx
<= RTNL_FAMILY_MAX
; idx
++) {
1829 int type
= cb
->nlh
->nlmsg_type
-RTM_BASE
;
1830 if (idx
< s_idx
|| idx
== PF_PACKET
)
1832 if (rtnl_msg_handlers
[idx
] == NULL
||
1833 rtnl_msg_handlers
[idx
][type
].dumpit
== NULL
)
1836 memset(&cb
->args
[0], 0, sizeof(cb
->args
));
1837 if (rtnl_msg_handlers
[idx
][type
].dumpit(skb
, cb
))
1845 void rtmsg_ifinfo(int type
, struct net_device
*dev
, unsigned change
)
1847 struct net
*net
= dev_net(dev
);
1848 struct sk_buff
*skb
;
1851 skb
= nlmsg_new(if_nlmsg_size(dev
), GFP_KERNEL
);
1855 err
= rtnl_fill_ifinfo(skb
, dev
, type
, 0, 0, change
, 0);
1857 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
1858 WARN_ON(err
== -EMSGSIZE
);
1862 rtnl_notify(skb
, net
, 0, RTNLGRP_LINK
, NULL
, GFP_KERNEL
);
1866 rtnl_set_sk_err(net
, RTNLGRP_LINK
, err
);
1869 /* Protected by RTNL sempahore. */
1870 static struct rtattr
**rta_buf
;
1871 static int rtattr_max
;
1873 /* Process one rtnetlink message. */
1875 static int rtnetlink_rcv_msg(struct sk_buff
*skb
, struct nlmsghdr
*nlh
)
1877 struct net
*net
= sock_net(skb
->sk
);
1878 rtnl_doit_func doit
;
1885 type
= nlh
->nlmsg_type
;
1891 /* All the messages must have at least 1 byte length */
1892 if (nlh
->nlmsg_len
< NLMSG_LENGTH(sizeof(struct rtgenmsg
)))
1895 family
= ((struct rtgenmsg
*)NLMSG_DATA(nlh
))->rtgen_family
;
1899 if (kind
!= 2 && security_netlink_recv(skb
, CAP_NET_ADMIN
))
1902 if (kind
== 2 && nlh
->nlmsg_flags
&NLM_F_DUMP
) {
1904 rtnl_dumpit_func dumpit
;
1906 dumpit
= rtnl_get_dumpit(family
, type
);
1912 err
= netlink_dump_start(rtnl
, skb
, nlh
, dumpit
, NULL
);
1917 memset(rta_buf
, 0, (rtattr_max
* sizeof(struct rtattr
*)));
1919 min_len
= rtm_min
[sz_idx
];
1920 if (nlh
->nlmsg_len
< min_len
)
1923 if (nlh
->nlmsg_len
> min_len
) {
1924 int attrlen
= nlh
->nlmsg_len
- NLMSG_ALIGN(min_len
);
1925 struct rtattr
*attr
= (void *)nlh
+ NLMSG_ALIGN(min_len
);
1927 while (RTA_OK(attr
, attrlen
)) {
1928 unsigned flavor
= attr
->rta_type
;
1930 if (flavor
> rta_max
[sz_idx
])
1932 rta_buf
[flavor
-1] = attr
;
1934 attr
= RTA_NEXT(attr
, attrlen
);
1938 doit
= rtnl_get_doit(family
, type
);
1942 return doit(skb
, nlh
, (void *)&rta_buf
[0]);
1945 static void rtnetlink_rcv(struct sk_buff
*skb
)
1948 netlink_rcv_skb(skb
, &rtnetlink_rcv_msg
);
1952 static int rtnetlink_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
1954 struct net_device
*dev
= ptr
;
1960 case NETDEV_POST_INIT
:
1961 case NETDEV_REGISTER
:
1963 case NETDEV_PRE_TYPE_CHANGE
:
1964 case NETDEV_GOING_DOWN
:
1965 case NETDEV_UNREGISTER
:
1966 case NETDEV_UNREGISTER_BATCH
:
1967 case NETDEV_RELEASE
:
1971 rtmsg_ifinfo(RTM_NEWLINK
, dev
, 0);
1977 static struct notifier_block rtnetlink_dev_notifier
= {
1978 .notifier_call
= rtnetlink_event
,
1982 static int __net_init
rtnetlink_net_init(struct net
*net
)
1985 sk
= netlink_kernel_create(net
, NETLINK_ROUTE
, RTNLGRP_MAX
,
1986 rtnetlink_rcv
, &rtnl_mutex
, THIS_MODULE
);
1993 static void __net_exit
rtnetlink_net_exit(struct net
*net
)
1995 netlink_kernel_release(net
->rtnl
);
1999 static struct pernet_operations rtnetlink_net_ops
= {
2000 .init
= rtnetlink_net_init
,
2001 .exit
= rtnetlink_net_exit
,
2004 void __init
rtnetlink_init(void)
2009 for (i
= 0; i
< ARRAY_SIZE(rta_max
); i
++)
2010 if (rta_max
[i
] > rtattr_max
)
2011 rtattr_max
= rta_max
[i
];
2012 rta_buf
= kmalloc(rtattr_max
* sizeof(struct rtattr
*), GFP_KERNEL
);
2014 panic("rtnetlink_init: cannot allocate rta_buf\n");
2016 if (register_pernet_subsys(&rtnetlink_net_ops
))
2017 panic("rtnetlink_init: cannot initialize rtnetlink\n");
2019 netlink_set_nonroot(NETLINK_ROUTE
, NL_NONROOT_RECV
);
2020 register_netdevice_notifier(&rtnetlink_dev_notifier
);
2022 rtnl_register(PF_UNSPEC
, RTM_GETLINK
, rtnl_getlink
, rtnl_dump_ifinfo
);
2023 rtnl_register(PF_UNSPEC
, RTM_SETLINK
, rtnl_setlink
, NULL
);
2024 rtnl_register(PF_UNSPEC
, RTM_NEWLINK
, rtnl_newlink
, NULL
);
2025 rtnl_register(PF_UNSPEC
, RTM_DELLINK
, rtnl_dellink
, NULL
);
2027 rtnl_register(PF_UNSPEC
, RTM_GETADDR
, NULL
, rtnl_dump_all
);
2028 rtnl_register(PF_UNSPEC
, RTM_GETROUTE
, NULL
, rtnl_dump_all
);