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/if_bridge.h>
39 #include <linux/pci.h>
40 #include <linux/etherdevice.h>
42 #include <asm/uaccess.h>
44 #include <linux/inet.h>
45 #include <linux/netdevice.h>
47 #include <net/protocol.h>
49 #include <net/route.h>
52 #include <net/pkt_sched.h>
53 #include <net/fib_rules.h>
54 #include <net/rtnetlink.h>
55 #include <net/net_namespace.h>
59 rtnl_dumpit_func dumpit;
60 rtnl_calcit_func calcit;
63 static DEFINE_MUTEX(rtnl_mutex);
67 mutex_lock(&rtnl_mutex);
69 EXPORT_SYMBOL(rtnl_lock);
71 void __rtnl_unlock(void)
73 mutex_unlock(&rtnl_mutex);
76 void rtnl_unlock(void)
78 /* This fellow will unlock it for us. */
81 EXPORT_SYMBOL(rtnl_unlock);
83 int rtnl_trylock(void)
85 return mutex_trylock(&rtnl_mutex);
87 EXPORT_SYMBOL(rtnl_trylock);
89 int rtnl_is_locked(void)
91 return mutex_is_locked(&rtnl_mutex);
93 EXPORT_SYMBOL(rtnl_is_locked);
95 #ifdef CONFIG_PROVE_LOCKING
96 int lockdep_rtnl_is_held(void)
98 return lockdep_is_held(&rtnl_mutex);
100 EXPORT_SYMBOL(lockdep_rtnl_is_held);
101 #endif /* #ifdef CONFIG_PROVE_LOCKING */
103 static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1];
105 static inline int rtm_msgindex(int msgtype)
107 int msgindex = msgtype - RTM_BASE;
110 * msgindex < 0 implies someone tried to register a netlink
111 * control code. msgindex >= RTM_NR_MSGTYPES may indicate that
112 * the message type has not been added to linux/rtnetlink.h
114 BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES);
119 static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex)
121 struct rtnl_link *tab;
123 if (protocol <= RTNL_FAMILY_MAX)
124 tab = rtnl_msg_handlers[protocol];
128 if (tab == NULL || tab[msgindex].doit == NULL)
129 tab = rtnl_msg_handlers[PF_UNSPEC];
131 return tab[msgindex].doit;
134 static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex)
136 struct rtnl_link *tab;
138 if (protocol <= RTNL_FAMILY_MAX)
139 tab = rtnl_msg_handlers[protocol];
143 if (tab == NULL || tab[msgindex].dumpit == NULL)
144 tab = rtnl_msg_handlers[PF_UNSPEC];
146 return tab[msgindex].dumpit;
149 static rtnl_calcit_func rtnl_get_calcit(int protocol, int msgindex)
151 struct rtnl_link *tab;
153 if (protocol <= RTNL_FAMILY_MAX)
154 tab = rtnl_msg_handlers[protocol];
158 if (tab == NULL || tab[msgindex].calcit == NULL)
159 tab = rtnl_msg_handlers[PF_UNSPEC];
161 return tab[msgindex].calcit;
165 * __rtnl_register - Register a rtnetlink message type
166 * @protocol: Protocol family or PF_UNSPEC
167 * @msgtype: rtnetlink message type
168 * @doit: Function pointer called for each request message
169 * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message
170 * @calcit: Function pointer to calc size of dump message
172 * Registers the specified function pointers (at least one of them has
173 * to be non-NULL) to be called whenever a request message for the
174 * specified protocol family and message type is received.
176 * The special protocol family PF_UNSPEC may be used to define fallback
177 * function pointers for the case when no entry for the specific protocol
180 * Returns 0 on success or a negative error code.
182 int __rtnl_register(int protocol, int msgtype,
183 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
184 rtnl_calcit_func calcit)
186 struct rtnl_link *tab;
189 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
190 msgindex = rtm_msgindex(msgtype);
192 tab = rtnl_msg_handlers[protocol];
194 tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL);
198 rtnl_msg_handlers[protocol] = tab;
202 tab[msgindex].doit = doit;
205 tab[msgindex].dumpit = dumpit;
208 tab[msgindex].calcit = calcit;
212 EXPORT_SYMBOL_GPL(__rtnl_register);
215 * rtnl_register - Register a rtnetlink message type
217 * Identical to __rtnl_register() but panics on failure. This is useful
218 * as failure of this function is very unlikely, it can only happen due
219 * to lack of memory when allocating the chain to store all message
220 * handlers for a protocol. Meant for use in init functions where lack
221 * of memory implies no sense in continuing.
223 void rtnl_register(int protocol, int msgtype,
224 rtnl_doit_func doit, rtnl_dumpit_func dumpit,
225 rtnl_calcit_func calcit)
227 if (__rtnl_register(protocol, msgtype, doit, dumpit, calcit) < 0)
228 panic("Unable to register rtnetlink message handler, "
229 "protocol = %d, message type = %d\n",
232 EXPORT_SYMBOL_GPL(rtnl_register);
235 * rtnl_unregister - Unregister a rtnetlink message type
236 * @protocol: Protocol family or PF_UNSPEC
237 * @msgtype: rtnetlink message type
239 * Returns 0 on success or a negative error code.
241 int rtnl_unregister(int protocol, int msgtype)
245 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
246 msgindex = rtm_msgindex(msgtype);
248 if (rtnl_msg_handlers[protocol] == NULL)
251 rtnl_msg_handlers[protocol][msgindex].doit = NULL;
252 rtnl_msg_handlers[protocol][msgindex].dumpit = NULL;
256 EXPORT_SYMBOL_GPL(rtnl_unregister);
259 * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol
260 * @protocol : Protocol family or PF_UNSPEC
262 * Identical to calling rtnl_unregster() for all registered message types
263 * of a certain protocol family.
265 void rtnl_unregister_all(int protocol)
267 BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX);
269 kfree(rtnl_msg_handlers[protocol]);
270 rtnl_msg_handlers[protocol] = NULL;
272 EXPORT_SYMBOL_GPL(rtnl_unregister_all);
274 static LIST_HEAD(link_ops);
276 static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind)
278 const struct rtnl_link_ops *ops;
280 list_for_each_entry(ops, &link_ops, list) {
281 if (!strcmp(ops->kind, kind))
288 * __rtnl_link_register - Register rtnl_link_ops with rtnetlink.
289 * @ops: struct rtnl_link_ops * to register
291 * The caller must hold the rtnl_mutex. This function should be used
292 * by drivers that create devices during module initialization. It
293 * must be called before registering the devices.
295 * Returns 0 on success or a negative error code.
297 int __rtnl_link_register(struct rtnl_link_ops *ops)
299 if (rtnl_link_ops_get(ops->kind))
303 ops->dellink = unregister_netdevice_queue;
305 list_add_tail(&ops->list, &link_ops);
308 EXPORT_SYMBOL_GPL(__rtnl_link_register);
311 * rtnl_link_register - Register rtnl_link_ops with rtnetlink.
312 * @ops: struct rtnl_link_ops * to register
314 * Returns 0 on success or a negative error code.
316 int rtnl_link_register(struct rtnl_link_ops *ops)
321 err = __rtnl_link_register(ops);
325 EXPORT_SYMBOL_GPL(rtnl_link_register);
327 static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops)
329 struct net_device *dev;
330 LIST_HEAD(list_kill);
332 for_each_netdev(net, dev) {
333 if (dev->rtnl_link_ops == ops)
334 ops->dellink(dev, &list_kill);
336 unregister_netdevice_many(&list_kill);
340 * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
341 * @ops: struct rtnl_link_ops * to unregister
343 * The caller must hold the rtnl_mutex.
345 void __rtnl_link_unregister(struct rtnl_link_ops *ops)
350 __rtnl_kill_links(net, ops);
352 list_del(&ops->list);
354 EXPORT_SYMBOL_GPL(__rtnl_link_unregister);
356 /* Return with the rtnl_lock held when there are no network
357 * devices unregistering in any network namespace.
359 static void rtnl_lock_unregistering_all(void)
366 prepare_to_wait(&netdev_unregistering_wq, &wait,
367 TASK_UNINTERRUPTIBLE);
368 unregistering = false;
371 if (net->dev_unreg_count > 0) {
372 unregistering = true;
381 finish_wait(&netdev_unregistering_wq, &wait);
385 * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink.
386 * @ops: struct rtnl_link_ops * to unregister
388 void rtnl_link_unregister(struct rtnl_link_ops *ops)
390 /* Close the race with cleanup_net() */
391 mutex_lock(&net_mutex);
392 rtnl_lock_unregistering_all();
393 __rtnl_link_unregister(ops);
395 mutex_unlock(&net_mutex);
397 EXPORT_SYMBOL_GPL(rtnl_link_unregister);
399 static size_t rtnl_link_get_slave_info_data_size(const struct net_device *dev)
401 struct net_device *master_dev;
402 const struct rtnl_link_ops *ops;
404 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
407 ops = master_dev->rtnl_link_ops;
408 if (!ops || !ops->get_slave_size)
410 /* IFLA_INFO_SLAVE_DATA + nested data */
411 return nla_total_size(sizeof(struct nlattr)) +
412 ops->get_slave_size(master_dev, dev);
415 static size_t rtnl_link_get_size(const struct net_device *dev)
417 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
423 size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */
424 nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */
427 /* IFLA_INFO_DATA + nested data */
428 size += nla_total_size(sizeof(struct nlattr)) +
431 if (ops->get_xstats_size)
432 /* IFLA_INFO_XSTATS */
433 size += nla_total_size(ops->get_xstats_size(dev));
435 size += rtnl_link_get_slave_info_data_size(dev);
440 static LIST_HEAD(rtnl_af_ops);
442 static const struct rtnl_af_ops *rtnl_af_lookup(const int family)
444 const struct rtnl_af_ops *ops;
446 list_for_each_entry(ops, &rtnl_af_ops, list) {
447 if (ops->family == family)
455 * rtnl_af_register - Register rtnl_af_ops with rtnetlink.
456 * @ops: struct rtnl_af_ops * to register
458 * Returns 0 on success or a negative error code.
460 void rtnl_af_register(struct rtnl_af_ops *ops)
463 list_add_tail(&ops->list, &rtnl_af_ops);
466 EXPORT_SYMBOL_GPL(rtnl_af_register);
469 * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
470 * @ops: struct rtnl_af_ops * to unregister
472 * The caller must hold the rtnl_mutex.
474 void __rtnl_af_unregister(struct rtnl_af_ops *ops)
476 list_del(&ops->list);
478 EXPORT_SYMBOL_GPL(__rtnl_af_unregister);
481 * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink.
482 * @ops: struct rtnl_af_ops * to unregister
484 void rtnl_af_unregister(struct rtnl_af_ops *ops)
487 __rtnl_af_unregister(ops);
490 EXPORT_SYMBOL_GPL(rtnl_af_unregister);
492 static size_t rtnl_link_get_af_size(const struct net_device *dev)
494 struct rtnl_af_ops *af_ops;
498 size = nla_total_size(sizeof(struct nlattr));
500 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
501 if (af_ops->get_link_af_size) {
502 /* AF_* + nested data */
503 size += nla_total_size(sizeof(struct nlattr)) +
504 af_ops->get_link_af_size(dev);
511 static bool rtnl_have_link_slave_info(const struct net_device *dev)
513 struct net_device *master_dev;
515 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
516 if (master_dev && master_dev->rtnl_link_ops)
521 static int rtnl_link_slave_info_fill(struct sk_buff *skb,
522 const struct net_device *dev)
524 struct net_device *master_dev;
525 const struct rtnl_link_ops *ops;
526 struct nlattr *slave_data;
529 master_dev = netdev_master_upper_dev_get((struct net_device *) dev);
532 ops = master_dev->rtnl_link_ops;
535 if (nla_put_string(skb, IFLA_INFO_SLAVE_KIND, ops->kind) < 0)
537 if (ops->fill_slave_info) {
538 slave_data = nla_nest_start(skb, IFLA_INFO_SLAVE_DATA);
541 err = ops->fill_slave_info(skb, master_dev, dev);
543 goto err_cancel_slave_data;
544 nla_nest_end(skb, slave_data);
548 err_cancel_slave_data:
549 nla_nest_cancel(skb, slave_data);
553 static int rtnl_link_info_fill(struct sk_buff *skb,
554 const struct net_device *dev)
556 const struct rtnl_link_ops *ops = dev->rtnl_link_ops;
562 if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0)
564 if (ops->fill_xstats) {
565 err = ops->fill_xstats(skb, dev);
569 if (ops->fill_info) {
570 data = nla_nest_start(skb, IFLA_INFO_DATA);
573 err = ops->fill_info(skb, dev);
575 goto err_cancel_data;
576 nla_nest_end(skb, data);
581 nla_nest_cancel(skb, data);
585 static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev)
587 struct nlattr *linkinfo;
590 linkinfo = nla_nest_start(skb, IFLA_LINKINFO);
591 if (linkinfo == NULL)
594 err = rtnl_link_info_fill(skb, dev);
596 goto err_cancel_link;
598 err = rtnl_link_slave_info_fill(skb, dev);
600 goto err_cancel_link;
602 nla_nest_end(skb, linkinfo);
606 nla_nest_cancel(skb, linkinfo);
611 int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo)
613 struct sock *rtnl = net->rtnl;
616 NETLINK_CB(skb).dst_group = group;
618 atomic_inc(&skb->users);
619 netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL);
621 err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT);
625 int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid)
627 struct sock *rtnl = net->rtnl;
629 return nlmsg_unicast(rtnl, skb, pid);
631 EXPORT_SYMBOL(rtnl_unicast);
633 void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group,
634 struct nlmsghdr *nlh, gfp_t flags)
636 struct sock *rtnl = net->rtnl;
640 report = nlmsg_report(nlh);
642 nlmsg_notify(rtnl, skb, pid, group, report, flags);
644 EXPORT_SYMBOL(rtnl_notify);
646 void rtnl_set_sk_err(struct net *net, u32 group, int error)
648 struct sock *rtnl = net->rtnl;
650 netlink_set_err(rtnl, 0, group, error);
652 EXPORT_SYMBOL(rtnl_set_sk_err);
654 int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics)
659 mx = nla_nest_start(skb, RTA_METRICS);
663 for (i = 0; i < RTAX_MAX; i++) {
666 if (nla_put_u32(skb, i+1, metrics[i]))
667 goto nla_put_failure;
672 nla_nest_cancel(skb, mx);
676 return nla_nest_end(skb, mx);
679 nla_nest_cancel(skb, mx);
682 EXPORT_SYMBOL(rtnetlink_put_metrics);
684 int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id,
685 long expires, u32 error)
687 struct rta_cacheinfo ci = {
688 .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse),
689 .rta_used = dst->__use,
690 .rta_clntref = atomic_read(&(dst->__refcnt)),
698 clock = jiffies_to_clock_t(abs(expires));
699 clock = min_t(unsigned long, clock, INT_MAX);
700 ci.rta_expires = (expires > 0) ? clock : -clock;
702 return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci);
704 EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo);
706 static void set_operstate(struct net_device *dev, unsigned char transition)
708 unsigned char operstate = dev->operstate;
710 switch (transition) {
712 if ((operstate == IF_OPER_DORMANT ||
713 operstate == IF_OPER_UNKNOWN) &&
715 operstate = IF_OPER_UP;
718 case IF_OPER_DORMANT:
719 if (operstate == IF_OPER_UP ||
720 operstate == IF_OPER_UNKNOWN)
721 operstate = IF_OPER_DORMANT;
725 if (dev->operstate != operstate) {
726 write_lock_bh(&dev_base_lock);
727 dev->operstate = operstate;
728 write_unlock_bh(&dev_base_lock);
729 netdev_state_change(dev);
733 static unsigned int rtnl_dev_get_flags(const struct net_device *dev)
735 return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) |
736 (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI));
739 static unsigned int rtnl_dev_combine_flags(const struct net_device *dev,
740 const struct ifinfomsg *ifm)
742 unsigned int flags = ifm->ifi_flags;
744 /* bugwards compatibility: ifi_change == 0 is treated as ~0 */
746 flags = (flags & ifm->ifi_change) |
747 (rtnl_dev_get_flags(dev) & ~ifm->ifi_change);
752 static void copy_rtnl_link_stats(struct rtnl_link_stats *a,
753 const struct rtnl_link_stats64 *b)
755 a->rx_packets = b->rx_packets;
756 a->tx_packets = b->tx_packets;
757 a->rx_bytes = b->rx_bytes;
758 a->tx_bytes = b->tx_bytes;
759 a->rx_errors = b->rx_errors;
760 a->tx_errors = b->tx_errors;
761 a->rx_dropped = b->rx_dropped;
762 a->tx_dropped = b->tx_dropped;
764 a->multicast = b->multicast;
765 a->collisions = b->collisions;
767 a->rx_length_errors = b->rx_length_errors;
768 a->rx_over_errors = b->rx_over_errors;
769 a->rx_crc_errors = b->rx_crc_errors;
770 a->rx_frame_errors = b->rx_frame_errors;
771 a->rx_fifo_errors = b->rx_fifo_errors;
772 a->rx_missed_errors = b->rx_missed_errors;
774 a->tx_aborted_errors = b->tx_aborted_errors;
775 a->tx_carrier_errors = b->tx_carrier_errors;
776 a->tx_fifo_errors = b->tx_fifo_errors;
777 a->tx_heartbeat_errors = b->tx_heartbeat_errors;
778 a->tx_window_errors = b->tx_window_errors;
780 a->rx_compressed = b->rx_compressed;
781 a->tx_compressed = b->tx_compressed;
784 static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b)
786 memcpy(v, b, sizeof(*b));
790 static inline int rtnl_vfinfo_size(const struct net_device *dev,
793 if (dev->dev.parent && dev_is_pci(dev->dev.parent) &&
794 (ext_filter_mask & RTEXT_FILTER_VF)) {
795 int num_vfs = dev_num_vf(dev->dev.parent);
796 size_t size = nla_total_size(sizeof(struct nlattr));
797 size += nla_total_size(num_vfs * sizeof(struct nlattr));
799 (nla_total_size(sizeof(struct ifla_vf_mac)) +
800 nla_total_size(sizeof(struct ifla_vf_vlan)) +
801 nla_total_size(sizeof(struct ifla_vf_tx_rate)) +
802 nla_total_size(sizeof(struct ifla_vf_spoofchk)) +
803 nla_total_size(sizeof(struct ifla_vf_link_state)));
809 static size_t rtnl_port_size(const struct net_device *dev,
812 size_t port_size = nla_total_size(4) /* PORT_VF */
813 + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */
814 + nla_total_size(sizeof(struct ifla_port_vsi))
816 + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */
817 + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */
818 + nla_total_size(1) /* PROT_VDP_REQUEST */
819 + nla_total_size(2); /* PORT_VDP_RESPONSE */
820 size_t vf_ports_size = nla_total_size(sizeof(struct nlattr));
821 size_t vf_port_size = nla_total_size(sizeof(struct nlattr))
823 size_t port_self_size = nla_total_size(sizeof(struct nlattr))
826 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
827 !(ext_filter_mask & RTEXT_FILTER_VF))
829 if (dev_num_vf(dev->dev.parent))
830 return port_self_size + vf_ports_size +
831 vf_port_size * dev_num_vf(dev->dev.parent);
833 return port_self_size;
836 static noinline size_t if_nlmsg_size(const struct net_device *dev,
839 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
840 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
841 + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */
842 + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */
843 + nla_total_size(sizeof(struct rtnl_link_ifmap))
844 + nla_total_size(sizeof(struct rtnl_link_stats))
845 + nla_total_size(sizeof(struct rtnl_link_stats64))
846 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
847 + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */
848 + nla_total_size(4) /* IFLA_TXQLEN */
849 + nla_total_size(4) /* IFLA_WEIGHT */
850 + nla_total_size(4) /* IFLA_MTU */
851 + nla_total_size(4) /* IFLA_LINK */
852 + nla_total_size(4) /* IFLA_MASTER */
853 + nla_total_size(1) /* IFLA_CARRIER */
854 + nla_total_size(4) /* IFLA_PROMISCUITY */
855 + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */
856 + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */
857 + nla_total_size(1) /* IFLA_OPERSTATE */
858 + nla_total_size(1) /* IFLA_LINKMODE */
859 + nla_total_size(ext_filter_mask
860 & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */
861 + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */
862 + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */
863 + rtnl_link_get_size(dev) /* IFLA_LINKINFO */
864 + rtnl_link_get_af_size(dev) /* IFLA_AF_SPEC */
865 + nla_total_size(MAX_PHYS_PORT_ID_LEN); /* IFLA_PHYS_PORT_ID */
868 static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev)
870 struct nlattr *vf_ports;
871 struct nlattr *vf_port;
875 vf_ports = nla_nest_start(skb, IFLA_VF_PORTS);
879 for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) {
880 vf_port = nla_nest_start(skb, IFLA_VF_PORT);
882 goto nla_put_failure;
883 if (nla_put_u32(skb, IFLA_PORT_VF, vf))
884 goto nla_put_failure;
885 err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb);
886 if (err == -EMSGSIZE)
887 goto nla_put_failure;
889 nla_nest_cancel(skb, vf_port);
892 nla_nest_end(skb, vf_port);
895 nla_nest_end(skb, vf_ports);
900 nla_nest_cancel(skb, vf_ports);
904 static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev)
906 struct nlattr *port_self;
909 port_self = nla_nest_start(skb, IFLA_PORT_SELF);
913 err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb);
915 nla_nest_cancel(skb, port_self);
916 return (err == -EMSGSIZE) ? err : 0;
919 nla_nest_end(skb, port_self);
924 static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev,
929 if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent ||
930 !(ext_filter_mask & RTEXT_FILTER_VF))
933 err = rtnl_port_self_fill(skb, dev);
937 if (dev_num_vf(dev->dev.parent)) {
938 err = rtnl_vf_ports_fill(skb, dev);
946 static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev)
949 struct netdev_phys_port_id ppid;
951 err = dev_get_phys_port_id(dev, &ppid);
953 if (err == -EOPNOTSUPP)
958 if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id))
964 static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev,
965 int type, u32 pid, u32 seq, u32 change,
966 unsigned int flags, u32 ext_filter_mask)
968 struct ifinfomsg *ifm;
969 struct nlmsghdr *nlh;
970 struct rtnl_link_stats64 temp;
971 const struct rtnl_link_stats64 *stats;
972 struct nlattr *attr, *af_spec;
973 struct rtnl_af_ops *af_ops;
974 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
977 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags);
981 ifm = nlmsg_data(nlh);
982 ifm->ifi_family = AF_UNSPEC;
984 ifm->ifi_type = dev->type;
985 ifm->ifi_index = dev->ifindex;
986 ifm->ifi_flags = dev_get_flags(dev);
987 ifm->ifi_change = change;
989 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
990 nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) ||
991 nla_put_u8(skb, IFLA_OPERSTATE,
992 netif_running(dev) ? dev->operstate : IF_OPER_DOWN) ||
993 nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) ||
994 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
995 nla_put_u32(skb, IFLA_GROUP, dev->group) ||
996 nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) ||
997 nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) ||
999 nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) ||
1001 (dev->ifindex != dev->iflink &&
1002 nla_put_u32(skb, IFLA_LINK, dev->iflink)) ||
1004 nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) ||
1005 nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) ||
1007 nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) ||
1009 nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)))
1010 goto nla_put_failure;
1013 struct rtnl_link_ifmap map = {
1014 .mem_start = dev->mem_start,
1015 .mem_end = dev->mem_end,
1016 .base_addr = dev->base_addr,
1019 .port = dev->if_port,
1021 if (nla_put(skb, IFLA_MAP, sizeof(map), &map))
1022 goto nla_put_failure;
1025 if (dev->addr_len) {
1026 if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) ||
1027 nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast))
1028 goto nla_put_failure;
1031 if (rtnl_phys_port_id_fill(skb, dev))
1032 goto nla_put_failure;
1034 attr = nla_reserve(skb, IFLA_STATS,
1035 sizeof(struct rtnl_link_stats));
1037 goto nla_put_failure;
1039 stats = dev_get_stats(dev, &temp);
1040 copy_rtnl_link_stats(nla_data(attr), stats);
1042 attr = nla_reserve(skb, IFLA_STATS64,
1043 sizeof(struct rtnl_link_stats64));
1045 goto nla_put_failure;
1046 copy_rtnl_link_stats64(nla_data(attr), stats);
1048 if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) &&
1049 nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent)))
1050 goto nla_put_failure;
1052 if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent
1053 && (ext_filter_mask & RTEXT_FILTER_VF)) {
1056 struct nlattr *vfinfo, *vf;
1057 int num_vfs = dev_num_vf(dev->dev.parent);
1059 vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST);
1061 goto nla_put_failure;
1062 for (i = 0; i < num_vfs; i++) {
1063 struct ifla_vf_info ivi;
1064 struct ifla_vf_mac vf_mac;
1065 struct ifla_vf_vlan vf_vlan;
1066 struct ifla_vf_tx_rate vf_tx_rate;
1067 struct ifla_vf_spoofchk vf_spoofchk;
1068 struct ifla_vf_link_state vf_linkstate;
1071 * Not all SR-IOV capable drivers support the
1072 * spoofcheck query. Preset to -1 so the user
1073 * space tool can detect that the driver didn't
1077 memset(ivi.mac, 0, sizeof(ivi.mac));
1078 /* The default value for VF link state is "auto"
1079 * IFLA_VF_LINK_STATE_AUTO which equals zero
1082 if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi))
1088 vf_linkstate.vf = ivi.vf;
1090 memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac));
1091 vf_vlan.vlan = ivi.vlan;
1092 vf_vlan.qos = ivi.qos;
1093 vf_tx_rate.rate = ivi.tx_rate;
1094 vf_spoofchk.setting = ivi.spoofchk;
1095 vf_linkstate.link_state = ivi.linkstate;
1096 vf = nla_nest_start(skb, IFLA_VF_INFO);
1098 nla_nest_cancel(skb, vfinfo);
1099 goto nla_put_failure;
1101 if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) ||
1102 nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) ||
1103 nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate),
1105 nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk),
1107 nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate),
1109 goto nla_put_failure;
1110 nla_nest_end(skb, vf);
1112 nla_nest_end(skb, vfinfo);
1115 if (rtnl_port_fill(skb, dev, ext_filter_mask))
1116 goto nla_put_failure;
1118 if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) {
1119 if (rtnl_link_fill(skb, dev) < 0)
1120 goto nla_put_failure;
1123 if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC)))
1124 goto nla_put_failure;
1126 list_for_each_entry(af_ops, &rtnl_af_ops, list) {
1127 if (af_ops->fill_link_af) {
1131 if (!(af = nla_nest_start(skb, af_ops->family)))
1132 goto nla_put_failure;
1134 err = af_ops->fill_link_af(skb, dev);
1137 * Caller may return ENODATA to indicate that there
1138 * was no data to be dumped. This is not an error, it
1139 * means we should trim the attribute header and
1142 if (err == -ENODATA)
1143 nla_nest_cancel(skb, af);
1145 goto nla_put_failure;
1147 nla_nest_end(skb, af);
1151 nla_nest_end(skb, af_spec);
1153 return nlmsg_end(skb, nlh);
1156 nlmsg_cancel(skb, nlh);
1160 static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
1162 struct net *net = sock_net(skb->sk);
1165 struct net_device *dev;
1166 struct hlist_head *head;
1167 struct nlattr *tb[IFLA_MAX+1];
1168 u32 ext_filter_mask = 0;
1173 s_idx = cb->args[1];
1176 cb->seq = net->dev_base_seq;
1178 /* A hack to preserve kernel<->userspace interface.
1179 * The correct header is ifinfomsg. It is consistent with rtnl_getlink.
1180 * However, before Linux v3.9 the code here assumed rtgenmsg and that's
1181 * what iproute2 < v3.9.0 used.
1182 * We can detect the old iproute2. Even including the IFLA_EXT_MASK
1183 * attribute, its netlink message is shorter than struct ifinfomsg.
1185 hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ?
1186 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
1188 if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) {
1190 if (tb[IFLA_EXT_MASK])
1191 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
1194 for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) {
1196 head = &net->dev_index_head[h];
1197 hlist_for_each_entry_rcu(dev, head, index_hlist) {
1200 err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK,
1201 NETLINK_CB(cb->skb).portid,
1202 cb->nlh->nlmsg_seq, 0,
1205 /* If we ran out of room on the first message,
1208 WARN_ON((err == -EMSGSIZE) && (skb->len == 0));
1213 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1226 const struct nla_policy ifla_policy[IFLA_MAX+1] = {
1227 [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 },
1228 [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1229 [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN },
1230 [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) },
1231 [IFLA_MTU] = { .type = NLA_U32 },
1232 [IFLA_LINK] = { .type = NLA_U32 },
1233 [IFLA_MASTER] = { .type = NLA_U32 },
1234 [IFLA_CARRIER] = { .type = NLA_U8 },
1235 [IFLA_TXQLEN] = { .type = NLA_U32 },
1236 [IFLA_WEIGHT] = { .type = NLA_U32 },
1237 [IFLA_OPERSTATE] = { .type = NLA_U8 },
1238 [IFLA_LINKMODE] = { .type = NLA_U8 },
1239 [IFLA_LINKINFO] = { .type = NLA_NESTED },
1240 [IFLA_NET_NS_PID] = { .type = NLA_U32 },
1241 [IFLA_NET_NS_FD] = { .type = NLA_U32 },
1242 [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 },
1243 [IFLA_VFINFO_LIST] = {. type = NLA_NESTED },
1244 [IFLA_VF_PORTS] = { .type = NLA_NESTED },
1245 [IFLA_PORT_SELF] = { .type = NLA_NESTED },
1246 [IFLA_AF_SPEC] = { .type = NLA_NESTED },
1247 [IFLA_EXT_MASK] = { .type = NLA_U32 },
1248 [IFLA_PROMISCUITY] = { .type = NLA_U32 },
1249 [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 },
1250 [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 },
1251 [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_PORT_ID_LEN },
1253 EXPORT_SYMBOL(ifla_policy);
1255 static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = {
1256 [IFLA_INFO_KIND] = { .type = NLA_STRING },
1257 [IFLA_INFO_DATA] = { .type = NLA_NESTED },
1258 [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING },
1259 [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED },
1262 static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = {
1263 [IFLA_VF_INFO] = { .type = NLA_NESTED },
1266 static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = {
1267 [IFLA_VF_MAC] = { .type = NLA_BINARY,
1268 .len = sizeof(struct ifla_vf_mac) },
1269 [IFLA_VF_VLAN] = { .type = NLA_BINARY,
1270 .len = sizeof(struct ifla_vf_vlan) },
1271 [IFLA_VF_TX_RATE] = { .type = NLA_BINARY,
1272 .len = sizeof(struct ifla_vf_tx_rate) },
1273 [IFLA_VF_SPOOFCHK] = { .type = NLA_BINARY,
1274 .len = sizeof(struct ifla_vf_spoofchk) },
1277 static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = {
1278 [IFLA_PORT_VF] = { .type = NLA_U32 },
1279 [IFLA_PORT_PROFILE] = { .type = NLA_STRING,
1280 .len = PORT_PROFILE_MAX },
1281 [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY,
1282 .len = sizeof(struct ifla_port_vsi)},
1283 [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY,
1284 .len = PORT_UUID_MAX },
1285 [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING,
1286 .len = PORT_UUID_MAX },
1287 [IFLA_PORT_REQUEST] = { .type = NLA_U8, },
1288 [IFLA_PORT_RESPONSE] = { .type = NLA_U16, },
1291 struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[])
1294 /* Examine the link attributes and figure out which
1295 * network namespace we are talking about.
1297 if (tb[IFLA_NET_NS_PID])
1298 net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID]));
1299 else if (tb[IFLA_NET_NS_FD])
1300 net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD]));
1302 net = get_net(src_net);
1305 EXPORT_SYMBOL(rtnl_link_get_net);
1307 static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[])
1310 if (tb[IFLA_ADDRESS] &&
1311 nla_len(tb[IFLA_ADDRESS]) < dev->addr_len)
1314 if (tb[IFLA_BROADCAST] &&
1315 nla_len(tb[IFLA_BROADCAST]) < dev->addr_len)
1319 if (tb[IFLA_AF_SPEC]) {
1323 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1324 const struct rtnl_af_ops *af_ops;
1326 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1327 return -EAFNOSUPPORT;
1329 if (!af_ops->set_link_af)
1332 if (af_ops->validate_link_af) {
1333 err = af_ops->validate_link_af(dev, af);
1343 static int do_setvfinfo(struct net_device *dev, struct nlattr *attr)
1345 int rem, err = -EINVAL;
1347 const struct net_device_ops *ops = dev->netdev_ops;
1349 nla_for_each_nested(vf, attr, rem) {
1350 switch (nla_type(vf)) {
1352 struct ifla_vf_mac *ivm;
1355 if (ops->ndo_set_vf_mac)
1356 err = ops->ndo_set_vf_mac(dev, ivm->vf,
1360 case IFLA_VF_VLAN: {
1361 struct ifla_vf_vlan *ivv;
1364 if (ops->ndo_set_vf_vlan)
1365 err = ops->ndo_set_vf_vlan(dev, ivv->vf,
1370 case IFLA_VF_TX_RATE: {
1371 struct ifla_vf_tx_rate *ivt;
1374 if (ops->ndo_set_vf_tx_rate)
1375 err = ops->ndo_set_vf_tx_rate(dev, ivt->vf,
1379 case IFLA_VF_SPOOFCHK: {
1380 struct ifla_vf_spoofchk *ivs;
1383 if (ops->ndo_set_vf_spoofchk)
1384 err = ops->ndo_set_vf_spoofchk(dev, ivs->vf,
1388 case IFLA_VF_LINK_STATE: {
1389 struct ifla_vf_link_state *ivl;
1392 if (ops->ndo_set_vf_link_state)
1393 err = ops->ndo_set_vf_link_state(dev, ivl->vf,
1407 static int do_set_master(struct net_device *dev, int ifindex)
1409 struct net_device *upper_dev = netdev_master_upper_dev_get(dev);
1410 const struct net_device_ops *ops;
1414 if (upper_dev->ifindex == ifindex)
1416 ops = upper_dev->netdev_ops;
1417 if (ops->ndo_del_slave) {
1418 err = ops->ndo_del_slave(upper_dev, dev);
1427 upper_dev = __dev_get_by_index(dev_net(dev), ifindex);
1430 ops = upper_dev->netdev_ops;
1431 if (ops->ndo_add_slave) {
1432 err = ops->ndo_add_slave(upper_dev, dev);
1442 static int do_setlink(const struct sk_buff *skb,
1443 struct net_device *dev, struct ifinfomsg *ifm,
1444 struct nlattr **tb, char *ifname, int modified)
1446 const struct net_device_ops *ops = dev->netdev_ops;
1449 if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) {
1450 struct net *net = rtnl_link_get_net(dev_net(dev), tb);
1455 if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) {
1459 err = dev_change_net_namespace(dev, net, ifname);
1467 struct rtnl_link_ifmap *u_map;
1470 if (!ops->ndo_set_config) {
1475 if (!netif_device_present(dev)) {
1480 u_map = nla_data(tb[IFLA_MAP]);
1481 k_map.mem_start = (unsigned long) u_map->mem_start;
1482 k_map.mem_end = (unsigned long) u_map->mem_end;
1483 k_map.base_addr = (unsigned short) u_map->base_addr;
1484 k_map.irq = (unsigned char) u_map->irq;
1485 k_map.dma = (unsigned char) u_map->dma;
1486 k_map.port = (unsigned char) u_map->port;
1488 err = ops->ndo_set_config(dev, &k_map);
1495 if (tb[IFLA_ADDRESS]) {
1496 struct sockaddr *sa;
1499 len = sizeof(sa_family_t) + dev->addr_len;
1500 sa = kmalloc(len, GFP_KERNEL);
1505 sa->sa_family = dev->type;
1506 memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]),
1508 err = dev_set_mac_address(dev, sa);
1516 err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
1522 if (tb[IFLA_GROUP]) {
1523 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1528 * Interface selected by interface index but interface
1529 * name provided implies that a name change has been
1532 if (ifm->ifi_index > 0 && ifname[0]) {
1533 err = dev_change_name(dev, ifname);
1539 if (tb[IFLA_IFALIAS]) {
1540 err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
1541 nla_len(tb[IFLA_IFALIAS]));
1547 if (tb[IFLA_BROADCAST]) {
1548 nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len);
1549 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
1552 if (ifm->ifi_flags || ifm->ifi_change) {
1553 err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1558 if (tb[IFLA_MASTER]) {
1559 err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
1565 if (tb[IFLA_CARRIER]) {
1566 err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER]));
1572 if (tb[IFLA_TXQLEN])
1573 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1575 if (tb[IFLA_OPERSTATE])
1576 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
1578 if (tb[IFLA_LINKMODE]) {
1579 write_lock_bh(&dev_base_lock);
1580 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1581 write_unlock_bh(&dev_base_lock);
1584 if (tb[IFLA_VFINFO_LIST]) {
1585 struct nlattr *attr;
1587 nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) {
1588 if (nla_type(attr) != IFLA_VF_INFO) {
1592 err = do_setvfinfo(dev, attr);
1600 if (tb[IFLA_VF_PORTS]) {
1601 struct nlattr *port[IFLA_PORT_MAX+1];
1602 struct nlattr *attr;
1607 if (!ops->ndo_set_vf_port)
1610 nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) {
1611 if (nla_type(attr) != IFLA_VF_PORT)
1613 err = nla_parse_nested(port, IFLA_PORT_MAX,
1614 attr, ifla_port_policy);
1617 if (!port[IFLA_PORT_VF]) {
1621 vf = nla_get_u32(port[IFLA_PORT_VF]);
1622 err = ops->ndo_set_vf_port(dev, vf, port);
1630 if (tb[IFLA_PORT_SELF]) {
1631 struct nlattr *port[IFLA_PORT_MAX+1];
1633 err = nla_parse_nested(port, IFLA_PORT_MAX,
1634 tb[IFLA_PORT_SELF], ifla_port_policy);
1639 if (ops->ndo_set_vf_port)
1640 err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
1646 if (tb[IFLA_AF_SPEC]) {
1650 nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) {
1651 const struct rtnl_af_ops *af_ops;
1653 if (!(af_ops = rtnl_af_lookup(nla_type(af))))
1656 err = af_ops->set_link_af(dev, af);
1666 if (err < 0 && modified)
1667 net_warn_ratelimited("A link change request failed with some changes committed already. Interface %s may have been left with an inconsistent configuration, please check.\n",
1673 static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
1675 struct net *net = sock_net(skb->sk);
1676 struct ifinfomsg *ifm;
1677 struct net_device *dev;
1679 struct nlattr *tb[IFLA_MAX+1];
1680 char ifname[IFNAMSIZ];
1682 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1686 if (tb[IFLA_IFNAME])
1687 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1692 ifm = nlmsg_data(nlh);
1693 if (ifm->ifi_index > 0)
1694 dev = __dev_get_by_index(net, ifm->ifi_index);
1695 else if (tb[IFLA_IFNAME])
1696 dev = __dev_get_by_name(net, ifname);
1705 err = validate_linkmsg(dev, tb);
1709 err = do_setlink(skb, dev, ifm, tb, ifname, 0);
1714 static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
1716 struct net *net = sock_net(skb->sk);
1717 const struct rtnl_link_ops *ops;
1718 struct net_device *dev;
1719 struct ifinfomsg *ifm;
1720 char ifname[IFNAMSIZ];
1721 struct nlattr *tb[IFLA_MAX+1];
1723 LIST_HEAD(list_kill);
1725 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1729 if (tb[IFLA_IFNAME])
1730 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1732 ifm = nlmsg_data(nlh);
1733 if (ifm->ifi_index > 0)
1734 dev = __dev_get_by_index(net, ifm->ifi_index);
1735 else if (tb[IFLA_IFNAME])
1736 dev = __dev_get_by_name(net, ifname);
1743 ops = dev->rtnl_link_ops;
1747 ops->dellink(dev, &list_kill);
1748 unregister_netdevice_many(&list_kill);
1752 int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
1754 unsigned int old_flags;
1757 old_flags = dev->flags;
1758 if (ifm && (ifm->ifi_flags || ifm->ifi_change)) {
1759 err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm));
1764 dev->rtnl_link_state = RTNL_LINK_INITIALIZED;
1766 __dev_notify_flags(dev, old_flags, ~0U);
1769 EXPORT_SYMBOL(rtnl_configure_link);
1771 struct net_device *rtnl_create_link(struct net *net,
1772 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[])
1775 struct net_device *dev;
1776 unsigned int num_tx_queues = 1;
1777 unsigned int num_rx_queues = 1;
1779 if (tb[IFLA_NUM_TX_QUEUES])
1780 num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]);
1781 else if (ops->get_num_tx_queues)
1782 num_tx_queues = ops->get_num_tx_queues();
1784 if (tb[IFLA_NUM_RX_QUEUES])
1785 num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]);
1786 else if (ops->get_num_rx_queues)
1787 num_rx_queues = ops->get_num_rx_queues();
1790 dev = alloc_netdev_mqs(ops->priv_size, ifname, ops->setup,
1791 num_tx_queues, num_rx_queues);
1795 dev_net_set(dev, net);
1796 dev->rtnl_link_ops = ops;
1797 dev->rtnl_link_state = RTNL_LINK_INITIALIZING;
1800 dev->mtu = nla_get_u32(tb[IFLA_MTU]);
1801 if (tb[IFLA_ADDRESS]) {
1802 memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]),
1803 nla_len(tb[IFLA_ADDRESS]));
1804 dev->addr_assign_type = NET_ADDR_SET;
1806 if (tb[IFLA_BROADCAST])
1807 memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]),
1808 nla_len(tb[IFLA_BROADCAST]));
1809 if (tb[IFLA_TXQLEN])
1810 dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]);
1811 if (tb[IFLA_OPERSTATE])
1812 set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE]));
1813 if (tb[IFLA_LINKMODE])
1814 dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]);
1816 dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
1821 return ERR_PTR(err);
1823 EXPORT_SYMBOL(rtnl_create_link);
1825 static int rtnl_group_changelink(const struct sk_buff *skb,
1826 struct net *net, int group,
1827 struct ifinfomsg *ifm,
1830 struct net_device *dev;
1833 for_each_netdev(net, dev) {
1834 if (dev->group == group) {
1835 err = do_setlink(skb, dev, ifm, tb, NULL, 0);
1844 static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
1846 struct net *net = sock_net(skb->sk);
1847 const struct rtnl_link_ops *ops;
1848 const struct rtnl_link_ops *m_ops = NULL;
1849 struct net_device *dev;
1850 struct net_device *master_dev = NULL;
1851 struct ifinfomsg *ifm;
1852 char kind[MODULE_NAME_LEN];
1853 char ifname[IFNAMSIZ];
1854 struct nlattr *tb[IFLA_MAX+1];
1855 struct nlattr *linkinfo[IFLA_INFO_MAX+1];
1858 #ifdef CONFIG_MODULES
1861 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
1865 if (tb[IFLA_IFNAME])
1866 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
1870 ifm = nlmsg_data(nlh);
1871 if (ifm->ifi_index > 0)
1872 dev = __dev_get_by_index(net, ifm->ifi_index);
1875 dev = __dev_get_by_name(net, ifname);
1881 master_dev = netdev_master_upper_dev_get(dev);
1883 m_ops = master_dev->rtnl_link_ops;
1886 err = validate_linkmsg(dev, tb);
1890 if (tb[IFLA_LINKINFO]) {
1891 err = nla_parse_nested(linkinfo, IFLA_INFO_MAX,
1892 tb[IFLA_LINKINFO], ifla_info_policy);
1896 memset(linkinfo, 0, sizeof(linkinfo));
1898 if (linkinfo[IFLA_INFO_KIND]) {
1899 nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind));
1900 ops = rtnl_link_ops_get(kind);
1907 struct nlattr *attr[ops ? ops->maxtype + 1 : 0];
1908 struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 0];
1909 struct nlattr **data = NULL;
1910 struct nlattr **slave_data = NULL;
1911 struct net *dest_net;
1914 if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) {
1915 err = nla_parse_nested(attr, ops->maxtype,
1916 linkinfo[IFLA_INFO_DATA],
1922 if (ops->validate) {
1923 err = ops->validate(tb, data);
1930 if (m_ops->slave_maxtype &&
1931 linkinfo[IFLA_INFO_SLAVE_DATA]) {
1932 err = nla_parse_nested(slave_attr,
1933 m_ops->slave_maxtype,
1934 linkinfo[IFLA_INFO_SLAVE_DATA],
1935 m_ops->slave_policy);
1938 slave_data = slave_attr;
1940 if (m_ops->slave_validate) {
1941 err = m_ops->slave_validate(tb, slave_data);
1950 if (nlh->nlmsg_flags & NLM_F_EXCL)
1952 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1955 if (linkinfo[IFLA_INFO_DATA]) {
1956 if (!ops || ops != dev->rtnl_link_ops ||
1960 err = ops->changelink(dev, tb, data);
1966 if (linkinfo[IFLA_INFO_SLAVE_DATA]) {
1967 if (!m_ops || !m_ops->slave_changelink)
1970 err = m_ops->slave_changelink(master_dev, dev,
1977 return do_setlink(skb, dev, ifm, tb, ifname, modified);
1980 if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
1981 if (ifm->ifi_index == 0 && tb[IFLA_GROUP])
1982 return rtnl_group_changelink(skb, net,
1983 nla_get_u32(tb[IFLA_GROUP]),
1988 if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO])
1992 #ifdef CONFIG_MODULES
1995 request_module("rtnl-link-%s", kind);
1997 ops = rtnl_link_ops_get(kind);
2006 snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind);
2008 dest_net = rtnl_link_get_net(net, tb);
2009 if (IS_ERR(dest_net))
2010 return PTR_ERR(dest_net);
2012 dev = rtnl_create_link(dest_net, ifname, ops, tb);
2018 dev->ifindex = ifm->ifi_index;
2021 err = ops->newlink(net, dev, tb, data);
2022 /* Drivers should call free_netdev() in ->destructor
2023 * and unregister it on failure so that device could be
2024 * finally freed in rtnl_unlock.
2029 err = register_netdevice(dev);
2035 err = rtnl_configure_link(dev, ifm);
2037 unregister_netdevice(dev);
2044 static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh)
2046 struct net *net = sock_net(skb->sk);
2047 struct ifinfomsg *ifm;
2048 char ifname[IFNAMSIZ];
2049 struct nlattr *tb[IFLA_MAX+1];
2050 struct net_device *dev = NULL;
2051 struct sk_buff *nskb;
2053 u32 ext_filter_mask = 0;
2055 err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy);
2059 if (tb[IFLA_IFNAME])
2060 nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ);
2062 if (tb[IFLA_EXT_MASK])
2063 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2065 ifm = nlmsg_data(nlh);
2066 if (ifm->ifi_index > 0)
2067 dev = __dev_get_by_index(net, ifm->ifi_index);
2068 else if (tb[IFLA_IFNAME])
2069 dev = __dev_get_by_name(net, ifname);
2076 nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL);
2080 err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid,
2081 nlh->nlmsg_seq, 0, 0, ext_filter_mask);
2083 /* -EMSGSIZE implies BUG in if_nlmsg_size */
2084 WARN_ON(err == -EMSGSIZE);
2087 err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid);
2092 static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh)
2094 struct net *net = sock_net(skb->sk);
2095 struct net_device *dev;
2096 struct nlattr *tb[IFLA_MAX+1];
2097 u32 ext_filter_mask = 0;
2098 u16 min_ifinfo_dump_size = 0;
2101 /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */
2102 hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ?
2103 sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg);
2105 if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy) >= 0) {
2106 if (tb[IFLA_EXT_MASK])
2107 ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]);
2110 if (!ext_filter_mask)
2111 return NLMSG_GOODSIZE;
2113 * traverse the list of net devices and compute the minimum
2114 * buffer size based upon the filter mask.
2116 list_for_each_entry(dev, &net->dev_base_head, dev_list) {
2117 min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size,
2122 return min_ifinfo_dump_size;
2125 static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb)
2128 int s_idx = cb->family;
2132 for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) {
2133 int type = cb->nlh->nlmsg_type-RTM_BASE;
2134 if (idx < s_idx || idx == PF_PACKET)
2136 if (rtnl_msg_handlers[idx] == NULL ||
2137 rtnl_msg_handlers[idx][type].dumpit == NULL)
2140 memset(&cb->args[0], 0, sizeof(cb->args));
2144 if (rtnl_msg_handlers[idx][type].dumpit(skb, cb))
2152 void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change,
2155 struct net *net = dev_net(dev);
2156 struct sk_buff *skb;
2158 size_t if_info_size;
2160 skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags);
2164 err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0);
2166 /* -EMSGSIZE implies BUG in if_nlmsg_size() */
2167 WARN_ON(err == -EMSGSIZE);
2171 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags);
2175 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
2177 EXPORT_SYMBOL(rtmsg_ifinfo);
2179 static int nlmsg_populate_fdb_fill(struct sk_buff *skb,
2180 struct net_device *dev,
2181 u8 *addr, u32 pid, u32 seq,
2182 int type, unsigned int flags,
2185 struct nlmsghdr *nlh;
2188 nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags);
2192 ndm = nlmsg_data(nlh);
2193 ndm->ndm_family = AF_BRIDGE;
2196 ndm->ndm_flags = flags;
2198 ndm->ndm_ifindex = dev->ifindex;
2199 ndm->ndm_state = NUD_PERMANENT;
2201 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr))
2202 goto nla_put_failure;
2204 return nlmsg_end(skb, nlh);
2207 nlmsg_cancel(skb, nlh);
2211 static inline size_t rtnl_fdb_nlmsg_size(void)
2213 return NLMSG_ALIGN(sizeof(struct ndmsg)) + nla_total_size(ETH_ALEN);
2216 static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, int type)
2218 struct net *net = dev_net(dev);
2219 struct sk_buff *skb;
2222 skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC);
2226 err = nlmsg_populate_fdb_fill(skb, dev, addr, 0, 0, type, NTF_SELF, 0);
2232 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
2235 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
2239 * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry
2241 int ndo_dflt_fdb_add(struct ndmsg *ndm,
2242 struct nlattr *tb[],
2243 struct net_device *dev,
2244 const unsigned char *addr,
2249 /* If aging addresses are supported device will need to
2250 * implement its own handler for this.
2252 if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
2253 pr_info("%s: FDB only supports static addresses\n", dev->name);
2257 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2258 err = dev_uc_add_excl(dev, addr);
2259 else if (is_multicast_ether_addr(addr))
2260 err = dev_mc_add_excl(dev, addr);
2262 /* Only return duplicate errors if NLM_F_EXCL is set */
2263 if (err == -EEXIST && !(flags & NLM_F_EXCL))
2268 EXPORT_SYMBOL(ndo_dflt_fdb_add);
2270 static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh)
2272 struct net *net = sock_net(skb->sk);
2274 struct nlattr *tb[NDA_MAX+1];
2275 struct net_device *dev;
2279 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2283 ndm = nlmsg_data(nlh);
2284 if (ndm->ndm_ifindex == 0) {
2285 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n");
2289 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2291 pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n");
2295 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2296 pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n");
2300 addr = nla_data(tb[NDA_LLADDR]);
2304 /* Support fdb on master device the net/bridge default case */
2305 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2306 (dev->priv_flags & IFF_BRIDGE_PORT)) {
2307 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2308 const struct net_device_ops *ops = br_dev->netdev_ops;
2310 err = ops->ndo_fdb_add(ndm, tb, dev, addr, nlh->nlmsg_flags);
2314 ndm->ndm_flags &= ~NTF_MASTER;
2317 /* Embedded bridge, macvlan, and any other device support */
2318 if ((ndm->ndm_flags & NTF_SELF)) {
2319 if (dev->netdev_ops->ndo_fdb_add)
2320 err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr,
2323 err = ndo_dflt_fdb_add(ndm, tb, dev, addr,
2327 rtnl_fdb_notify(dev, addr, RTM_NEWNEIGH);
2328 ndm->ndm_flags &= ~NTF_SELF;
2336 * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry
2338 int ndo_dflt_fdb_del(struct ndmsg *ndm,
2339 struct nlattr *tb[],
2340 struct net_device *dev,
2341 const unsigned char *addr)
2343 int err = -EOPNOTSUPP;
2345 /* If aging addresses are supported device will need to
2346 * implement its own handler for this.
2348 if (!(ndm->ndm_state & NUD_PERMANENT)) {
2349 pr_info("%s: FDB only supports static addresses\n", dev->name);
2353 if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
2354 err = dev_uc_del(dev, addr);
2355 else if (is_multicast_ether_addr(addr))
2356 err = dev_mc_del(dev, addr);
2362 EXPORT_SYMBOL(ndo_dflt_fdb_del);
2364 static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh)
2366 struct net *net = sock_net(skb->sk);
2368 struct nlattr *tb[NDA_MAX+1];
2369 struct net_device *dev;
2373 if (!netlink_capable(skb, CAP_NET_ADMIN))
2376 err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL);
2380 ndm = nlmsg_data(nlh);
2381 if (ndm->ndm_ifindex == 0) {
2382 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n");
2386 dev = __dev_get_by_index(net, ndm->ndm_ifindex);
2388 pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n");
2392 if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) {
2393 pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n");
2397 addr = nla_data(tb[NDA_LLADDR]);
2401 /* Support fdb on master device the net/bridge default case */
2402 if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) &&
2403 (dev->priv_flags & IFF_BRIDGE_PORT)) {
2404 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2405 const struct net_device_ops *ops = br_dev->netdev_ops;
2407 if (ops->ndo_fdb_del)
2408 err = ops->ndo_fdb_del(ndm, tb, dev, addr);
2413 ndm->ndm_flags &= ~NTF_MASTER;
2416 /* Embedded bridge, macvlan, and any other device support */
2417 if (ndm->ndm_flags & NTF_SELF) {
2418 if (dev->netdev_ops->ndo_fdb_del)
2419 err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr);
2421 err = ndo_dflt_fdb_del(ndm, tb, dev, addr);
2424 rtnl_fdb_notify(dev, addr, RTM_DELNEIGH);
2425 ndm->ndm_flags &= ~NTF_SELF;
2432 static int nlmsg_populate_fdb(struct sk_buff *skb,
2433 struct netlink_callback *cb,
2434 struct net_device *dev,
2436 struct netdev_hw_addr_list *list)
2438 struct netdev_hw_addr *ha;
2442 portid = NETLINK_CB(cb->skb).portid;
2443 seq = cb->nlh->nlmsg_seq;
2445 list_for_each_entry(ha, &list->list, list) {
2446 if (*idx < cb->args[0])
2449 err = nlmsg_populate_fdb_fill(skb, dev, ha->addr,
2451 RTM_NEWNEIGH, NTF_SELF,
2462 * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table.
2463 * @nlh: netlink message header
2466 * Default netdevice operation to dump the existing unicast address list.
2467 * Returns number of addresses from list put in skb.
2469 int ndo_dflt_fdb_dump(struct sk_buff *skb,
2470 struct netlink_callback *cb,
2471 struct net_device *dev,
2476 netif_addr_lock_bh(dev);
2477 err = nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->uc);
2480 nlmsg_populate_fdb(skb, cb, dev, &idx, &dev->mc);
2482 netif_addr_unlock_bh(dev);
2485 EXPORT_SYMBOL(ndo_dflt_fdb_dump);
2487 static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb)
2490 struct net *net = sock_net(skb->sk);
2491 struct net_device *dev;
2494 for_each_netdev_rcu(net, dev) {
2495 if (dev->priv_flags & IFF_BRIDGE_PORT) {
2496 struct net_device *br_dev;
2497 const struct net_device_ops *ops;
2499 br_dev = netdev_master_upper_dev_get(dev);
2500 ops = br_dev->netdev_ops;
2501 if (ops->ndo_fdb_dump)
2502 idx = ops->ndo_fdb_dump(skb, cb, dev, idx);
2505 if (dev->netdev_ops->ndo_fdb_dump)
2506 idx = dev->netdev_ops->ndo_fdb_dump(skb, cb, dev, idx);
2508 idx = ndo_dflt_fdb_dump(skb, cb, dev, idx);
2516 int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
2517 struct net_device *dev, u16 mode)
2519 struct nlmsghdr *nlh;
2520 struct ifinfomsg *ifm;
2521 struct nlattr *br_afspec;
2522 u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN;
2523 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2525 nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), NLM_F_MULTI);
2529 ifm = nlmsg_data(nlh);
2530 ifm->ifi_family = AF_BRIDGE;
2532 ifm->ifi_type = dev->type;
2533 ifm->ifi_index = dev->ifindex;
2534 ifm->ifi_flags = dev_get_flags(dev);
2535 ifm->ifi_change = 0;
2538 if (nla_put_string(skb, IFLA_IFNAME, dev->name) ||
2539 nla_put_u32(skb, IFLA_MTU, dev->mtu) ||
2540 nla_put_u8(skb, IFLA_OPERSTATE, operstate) ||
2542 nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) ||
2544 nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) ||
2545 (dev->ifindex != dev->iflink &&
2546 nla_put_u32(skb, IFLA_LINK, dev->iflink)))
2547 goto nla_put_failure;
2549 br_afspec = nla_nest_start(skb, IFLA_AF_SPEC);
2551 goto nla_put_failure;
2553 if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF) ||
2554 nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) {
2555 nla_nest_cancel(skb, br_afspec);
2556 goto nla_put_failure;
2558 nla_nest_end(skb, br_afspec);
2560 return nlmsg_end(skb, nlh);
2562 nlmsg_cancel(skb, nlh);
2565 EXPORT_SYMBOL(ndo_dflt_bridge_getlink);
2567 static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb)
2569 struct net *net = sock_net(skb->sk);
2570 struct net_device *dev;
2572 u32 portid = NETLINK_CB(cb->skb).portid;
2573 u32 seq = cb->nlh->nlmsg_seq;
2574 struct nlattr *extfilt;
2575 u32 filter_mask = 0;
2577 extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg),
2580 filter_mask = nla_get_u32(extfilt);
2583 for_each_netdev_rcu(net, dev) {
2584 const struct net_device_ops *ops = dev->netdev_ops;
2585 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2587 if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
2588 if (idx >= cb->args[0] &&
2589 br_dev->netdev_ops->ndo_bridge_getlink(
2590 skb, portid, seq, dev, filter_mask) < 0)
2595 if (ops->ndo_bridge_getlink) {
2596 if (idx >= cb->args[0] &&
2597 ops->ndo_bridge_getlink(skb, portid, seq, dev,
2609 static inline size_t bridge_nlmsg_size(void)
2611 return NLMSG_ALIGN(sizeof(struct ifinfomsg))
2612 + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */
2613 + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */
2614 + nla_total_size(sizeof(u32)) /* IFLA_MASTER */
2615 + nla_total_size(sizeof(u32)) /* IFLA_MTU */
2616 + nla_total_size(sizeof(u32)) /* IFLA_LINK */
2617 + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */
2618 + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */
2619 + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */
2620 + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */
2621 + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */
2624 static int rtnl_bridge_notify(struct net_device *dev, u16 flags)
2626 struct net *net = dev_net(dev);
2627 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2628 struct sk_buff *skb;
2629 int err = -EOPNOTSUPP;
2631 skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC);
2637 if ((!flags || (flags & BRIDGE_FLAGS_MASTER)) &&
2638 br_dev && br_dev->netdev_ops->ndo_bridge_getlink) {
2639 err = br_dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
2644 if ((flags & BRIDGE_FLAGS_SELF) &&
2645 dev->netdev_ops->ndo_bridge_getlink) {
2646 err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0);
2651 rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC);
2654 WARN_ON(err == -EMSGSIZE);
2656 rtnl_set_sk_err(net, RTNLGRP_LINK, err);
2660 static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh)
2662 struct net *net = sock_net(skb->sk);
2663 struct ifinfomsg *ifm;
2664 struct net_device *dev;
2665 struct nlattr *br_spec, *attr = NULL;
2666 int rem, err = -EOPNOTSUPP;
2667 u16 oflags, flags = 0;
2668 bool have_flags = false;
2670 if (nlmsg_len(nlh) < sizeof(*ifm))
2673 ifm = nlmsg_data(nlh);
2674 if (ifm->ifi_family != AF_BRIDGE)
2675 return -EPFNOSUPPORT;
2677 dev = __dev_get_by_index(net, ifm->ifi_index);
2679 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2683 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2685 nla_for_each_nested(attr, br_spec, rem) {
2686 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
2688 flags = nla_get_u16(attr);
2696 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
2697 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2699 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) {
2704 err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
2708 flags &= ~BRIDGE_FLAGS_MASTER;
2711 if ((flags & BRIDGE_FLAGS_SELF)) {
2712 if (!dev->netdev_ops->ndo_bridge_setlink)
2715 err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh);
2718 flags &= ~BRIDGE_FLAGS_SELF;
2722 memcpy(nla_data(attr), &flags, sizeof(flags));
2723 /* Generate event to notify upper layer of bridge change */
2725 err = rtnl_bridge_notify(dev, oflags);
2730 static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh)
2732 struct net *net = sock_net(skb->sk);
2733 struct ifinfomsg *ifm;
2734 struct net_device *dev;
2735 struct nlattr *br_spec, *attr = NULL;
2736 int rem, err = -EOPNOTSUPP;
2737 u16 oflags, flags = 0;
2738 bool have_flags = false;
2740 if (nlmsg_len(nlh) < sizeof(*ifm))
2743 ifm = nlmsg_data(nlh);
2744 if (ifm->ifi_family != AF_BRIDGE)
2745 return -EPFNOSUPPORT;
2747 dev = __dev_get_by_index(net, ifm->ifi_index);
2749 pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n");
2753 br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
2755 nla_for_each_nested(attr, br_spec, rem) {
2756 if (nla_type(attr) == IFLA_BRIDGE_FLAGS) {
2758 flags = nla_get_u16(attr);
2766 if (!flags || (flags & BRIDGE_FLAGS_MASTER)) {
2767 struct net_device *br_dev = netdev_master_upper_dev_get(dev);
2769 if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) {
2774 err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2778 flags &= ~BRIDGE_FLAGS_MASTER;
2781 if ((flags & BRIDGE_FLAGS_SELF)) {
2782 if (!dev->netdev_ops->ndo_bridge_dellink)
2785 err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh);
2788 flags &= ~BRIDGE_FLAGS_SELF;
2792 memcpy(nla_data(attr), &flags, sizeof(flags));
2793 /* Generate event to notify upper layer of bridge change */
2795 err = rtnl_bridge_notify(dev, oflags);
2800 /* Process one rtnetlink message. */
2802 static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
2804 struct net *net = sock_net(skb->sk);
2805 rtnl_doit_func doit;
2811 type = nlh->nlmsg_type;
2817 /* All the messages must have at least 1 byte length */
2818 if (nlmsg_len(nlh) < sizeof(struct rtgenmsg))
2821 family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family;
2825 if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN))
2828 if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) {
2830 rtnl_dumpit_func dumpit;
2831 rtnl_calcit_func calcit;
2832 u16 min_dump_alloc = 0;
2834 dumpit = rtnl_get_dumpit(family, type);
2837 calcit = rtnl_get_calcit(family, type);
2839 min_dump_alloc = calcit(skb, nlh);
2844 struct netlink_dump_control c = {
2846 .min_dump_alloc = min_dump_alloc,
2848 err = netlink_dump_start(rtnl, skb, nlh, &c);
2854 doit = rtnl_get_doit(family, type);
2858 return doit(skb, nlh);
2861 static void rtnetlink_rcv(struct sk_buff *skb)
2864 netlink_rcv_skb(skb, &rtnetlink_rcv_msg);
2868 static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr)
2870 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2876 case NETDEV_POST_INIT:
2877 case NETDEV_REGISTER:
2879 case NETDEV_PRE_TYPE_CHANGE:
2880 case NETDEV_GOING_DOWN:
2881 case NETDEV_UNREGISTER:
2882 case NETDEV_UNREGISTER_FINAL:
2883 case NETDEV_RELEASE:
2887 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
2893 static struct notifier_block rtnetlink_dev_notifier = {
2894 .notifier_call = rtnetlink_event,
2898 static int __net_init rtnetlink_net_init(struct net *net)
2901 struct netlink_kernel_cfg cfg = {
2902 .groups = RTNLGRP_MAX,
2903 .input = rtnetlink_rcv,
2904 .cb_mutex = &rtnl_mutex,
2905 .flags = NL_CFG_F_NONROOT_RECV,
2908 sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg);
2915 static void __net_exit rtnetlink_net_exit(struct net *net)
2917 netlink_kernel_release(net->rtnl);
2921 static struct pernet_operations rtnetlink_net_ops = {
2922 .init = rtnetlink_net_init,
2923 .exit = rtnetlink_net_exit,
2926 void __init rtnetlink_init(void)
2928 if (register_pernet_subsys(&rtnetlink_net_ops))
2929 panic("rtnetlink_init: cannot initialize rtnetlink\n");
2931 register_netdevice_notifier(&rtnetlink_dev_notifier);
2933 rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink,
2934 rtnl_dump_ifinfo, rtnl_calcit);
2935 rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, NULL);
2936 rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, NULL);
2937 rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, NULL);
2939 rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, NULL);
2940 rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, NULL);
2942 rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, NULL);
2943 rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, NULL);
2944 rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, NULL);
2946 rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, NULL);
2947 rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, NULL);
2948 rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, NULL);