11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * INET An implementation of the TCP/IP protocol suite for the LINUX 31da177e4SLinus Torvalds * operating system. INET is implemented using the BSD Socket 41da177e4SLinus Torvalds * interface as the means of communication with the user level. 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * Routing netlink socket interface: protocol independent part. 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> 91da177e4SLinus Torvalds * 101da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or 111da177e4SLinus Torvalds * modify it under the terms of the GNU General Public License 121da177e4SLinus Torvalds * as published by the Free Software Foundation; either version 131da177e4SLinus Torvalds * 2 of the License, or (at your option) any later version. 141da177e4SLinus Torvalds * 151da177e4SLinus Torvalds * Fixes: 161da177e4SLinus Torvalds * Vitaly E. Lavrov RTA_OK arithmetics was wrong. 171da177e4SLinus Torvalds */ 181da177e4SLinus Torvalds 191da177e4SLinus Torvalds #include <linux/errno.h> 201da177e4SLinus Torvalds #include <linux/module.h> 211da177e4SLinus Torvalds #include <linux/types.h> 221da177e4SLinus Torvalds #include <linux/socket.h> 231da177e4SLinus Torvalds #include <linux/kernel.h> 241da177e4SLinus Torvalds #include <linux/timer.h> 251da177e4SLinus Torvalds #include <linux/string.h> 261da177e4SLinus Torvalds #include <linux/sockios.h> 271da177e4SLinus Torvalds #include <linux/net.h> 281da177e4SLinus Torvalds #include <linux/fcntl.h> 291da177e4SLinus Torvalds #include <linux/mm.h> 301da177e4SLinus Torvalds #include <linux/slab.h> 311da177e4SLinus Torvalds #include <linux/interrupt.h> 321da177e4SLinus Torvalds #include <linux/capability.h> 331da177e4SLinus Torvalds #include <linux/skbuff.h> 341da177e4SLinus Torvalds #include <linux/init.h> 351da177e4SLinus Torvalds #include <linux/security.h> 366756ae4bSStephen Hemminger #include <linux/mutex.h> 371823730fSThomas Graf #include <linux/if_addr.h> 38ebc08a6fSWilliams, Mitch A #include <linux/pci.h> 391da177e4SLinus Torvalds 401da177e4SLinus Torvalds #include <asm/uaccess.h> 411da177e4SLinus Torvalds #include <asm/system.h> 421da177e4SLinus Torvalds 431da177e4SLinus Torvalds #include <linux/inet.h> 441da177e4SLinus Torvalds #include <linux/netdevice.h> 451da177e4SLinus Torvalds #include <net/ip.h> 461da177e4SLinus Torvalds #include <net/protocol.h> 471da177e4SLinus Torvalds #include <net/arp.h> 481da177e4SLinus Torvalds #include <net/route.h> 491da177e4SLinus Torvalds #include <net/udp.h> 501da177e4SLinus Torvalds #include <net/sock.h> 511da177e4SLinus Torvalds #include <net/pkt_sched.h> 5214c0b97dSThomas Graf #include <net/fib_rules.h> 53e2849863SThomas Graf #include <net/rtnetlink.h> 5430ffee84SJohannes Berg #include <net/net_namespace.h> 551da177e4SLinus Torvalds 56e0d087afSEric Dumazet struct rtnl_link { 57e2849863SThomas Graf rtnl_doit_func doit; 58e2849863SThomas Graf rtnl_dumpit_func dumpit; 59e2849863SThomas Graf }; 60e2849863SThomas Graf 616756ae4bSStephen Hemminger static DEFINE_MUTEX(rtnl_mutex); 621da177e4SLinus Torvalds 631da177e4SLinus Torvalds void rtnl_lock(void) 641da177e4SLinus Torvalds { 656756ae4bSStephen Hemminger mutex_lock(&rtnl_mutex); 661da177e4SLinus Torvalds } 67e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_lock); 681da177e4SLinus Torvalds 696756ae4bSStephen Hemminger void __rtnl_unlock(void) 701da177e4SLinus Torvalds { 716756ae4bSStephen Hemminger mutex_unlock(&rtnl_mutex); 721da177e4SLinus Torvalds } 731da177e4SLinus Torvalds 741da177e4SLinus Torvalds void rtnl_unlock(void) 751da177e4SLinus Torvalds { 7658ec3b4dSHerbert Xu /* This fellow will unlock it for us. */ 771da177e4SLinus Torvalds netdev_run_todo(); 781da177e4SLinus Torvalds } 79e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_unlock); 801da177e4SLinus Torvalds 816756ae4bSStephen Hemminger int rtnl_trylock(void) 826756ae4bSStephen Hemminger { 836756ae4bSStephen Hemminger return mutex_trylock(&rtnl_mutex); 846756ae4bSStephen Hemminger } 85e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_trylock); 866756ae4bSStephen Hemminger 87c9c1014bSPatrick McHardy int rtnl_is_locked(void) 88c9c1014bSPatrick McHardy { 89c9c1014bSPatrick McHardy return mutex_is_locked(&rtnl_mutex); 90c9c1014bSPatrick McHardy } 91e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_is_locked); 92c9c1014bSPatrick McHardy 93a898def2SPaul E. McKenney #ifdef CONFIG_PROVE_LOCKING 94a898def2SPaul E. McKenney int lockdep_rtnl_is_held(void) 95a898def2SPaul E. McKenney { 96a898def2SPaul E. McKenney return lockdep_is_held(&rtnl_mutex); 97a898def2SPaul E. McKenney } 98a898def2SPaul E. McKenney EXPORT_SYMBOL(lockdep_rtnl_is_held); 99a898def2SPaul E. McKenney #endif /* #ifdef CONFIG_PROVE_LOCKING */ 100a898def2SPaul E. McKenney 10125239ceeSPatrick McHardy static struct rtnl_link *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1]; 102e2849863SThomas Graf 103e2849863SThomas Graf static inline int rtm_msgindex(int msgtype) 104e2849863SThomas Graf { 105e2849863SThomas Graf int msgindex = msgtype - RTM_BASE; 106e2849863SThomas Graf 107e2849863SThomas Graf /* 108e2849863SThomas Graf * msgindex < 0 implies someone tried to register a netlink 109e2849863SThomas Graf * control code. msgindex >= RTM_NR_MSGTYPES may indicate that 110e2849863SThomas Graf * the message type has not been added to linux/rtnetlink.h 111e2849863SThomas Graf */ 112e2849863SThomas Graf BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES); 113e2849863SThomas Graf 114e2849863SThomas Graf return msgindex; 115e2849863SThomas Graf } 116e2849863SThomas Graf 117e2849863SThomas Graf static rtnl_doit_func rtnl_get_doit(int protocol, int msgindex) 118e2849863SThomas Graf { 119e2849863SThomas Graf struct rtnl_link *tab; 120e2849863SThomas Graf 12125239ceeSPatrick McHardy if (protocol <= RTNL_FAMILY_MAX) 122e2849863SThomas Graf tab = rtnl_msg_handlers[protocol]; 1230f87b1ddSPatrick McHardy else 1240f87b1ddSPatrick McHardy tab = NULL; 1250f87b1ddSPatrick McHardy 12651057f2fSThomas Graf if (tab == NULL || tab[msgindex].doit == NULL) 127e2849863SThomas Graf tab = rtnl_msg_handlers[PF_UNSPEC]; 128e2849863SThomas Graf 12951057f2fSThomas Graf return tab ? tab[msgindex].doit : NULL; 130e2849863SThomas Graf } 131e2849863SThomas Graf 132e2849863SThomas Graf static rtnl_dumpit_func rtnl_get_dumpit(int protocol, int msgindex) 133e2849863SThomas Graf { 134e2849863SThomas Graf struct rtnl_link *tab; 135e2849863SThomas Graf 13625239ceeSPatrick McHardy if (protocol <= RTNL_FAMILY_MAX) 137e2849863SThomas Graf tab = rtnl_msg_handlers[protocol]; 1380f87b1ddSPatrick McHardy else 1390f87b1ddSPatrick McHardy tab = NULL; 1400f87b1ddSPatrick McHardy 14151057f2fSThomas Graf if (tab == NULL || tab[msgindex].dumpit == NULL) 142e2849863SThomas Graf tab = rtnl_msg_handlers[PF_UNSPEC]; 143e2849863SThomas Graf 14451057f2fSThomas Graf return tab ? tab[msgindex].dumpit : NULL; 145e2849863SThomas Graf } 146e2849863SThomas Graf 147e2849863SThomas Graf /** 148e2849863SThomas Graf * __rtnl_register - Register a rtnetlink message type 149e2849863SThomas Graf * @protocol: Protocol family or PF_UNSPEC 150e2849863SThomas Graf * @msgtype: rtnetlink message type 151e2849863SThomas Graf * @doit: Function pointer called for each request message 152e2849863SThomas Graf * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message 153e2849863SThomas Graf * 154e2849863SThomas Graf * Registers the specified function pointers (at least one of them has 155e2849863SThomas Graf * to be non-NULL) to be called whenever a request message for the 156e2849863SThomas Graf * specified protocol family and message type is received. 157e2849863SThomas Graf * 158e2849863SThomas Graf * The special protocol family PF_UNSPEC may be used to define fallback 159e2849863SThomas Graf * function pointers for the case when no entry for the specific protocol 160e2849863SThomas Graf * family exists. 161e2849863SThomas Graf * 162e2849863SThomas Graf * Returns 0 on success or a negative error code. 163e2849863SThomas Graf */ 164e2849863SThomas Graf int __rtnl_register(int protocol, int msgtype, 165e2849863SThomas Graf rtnl_doit_func doit, rtnl_dumpit_func dumpit) 166e2849863SThomas Graf { 167e2849863SThomas Graf struct rtnl_link *tab; 168e2849863SThomas Graf int msgindex; 169e2849863SThomas Graf 17025239ceeSPatrick McHardy BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); 171e2849863SThomas Graf msgindex = rtm_msgindex(msgtype); 172e2849863SThomas Graf 173e2849863SThomas Graf tab = rtnl_msg_handlers[protocol]; 174e2849863SThomas Graf if (tab == NULL) { 175e2849863SThomas Graf tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL); 176e2849863SThomas Graf if (tab == NULL) 177e2849863SThomas Graf return -ENOBUFS; 178e2849863SThomas Graf 179e2849863SThomas Graf rtnl_msg_handlers[protocol] = tab; 180e2849863SThomas Graf } 181e2849863SThomas Graf 182e2849863SThomas Graf if (doit) 183e2849863SThomas Graf tab[msgindex].doit = doit; 184e2849863SThomas Graf 185e2849863SThomas Graf if (dumpit) 186e2849863SThomas Graf tab[msgindex].dumpit = dumpit; 187e2849863SThomas Graf 188e2849863SThomas Graf return 0; 189e2849863SThomas Graf } 190e2849863SThomas Graf EXPORT_SYMBOL_GPL(__rtnl_register); 191e2849863SThomas Graf 192e2849863SThomas Graf /** 193e2849863SThomas Graf * rtnl_register - Register a rtnetlink message type 194e2849863SThomas Graf * 195e2849863SThomas Graf * Identical to __rtnl_register() but panics on failure. This is useful 196e2849863SThomas Graf * as failure of this function is very unlikely, it can only happen due 197e2849863SThomas Graf * to lack of memory when allocating the chain to store all message 198e2849863SThomas Graf * handlers for a protocol. Meant for use in init functions where lack 199e2849863SThomas Graf * of memory implies no sense in continueing. 200e2849863SThomas Graf */ 201e2849863SThomas Graf void rtnl_register(int protocol, int msgtype, 202e2849863SThomas Graf rtnl_doit_func doit, rtnl_dumpit_func dumpit) 203e2849863SThomas Graf { 204e2849863SThomas Graf if (__rtnl_register(protocol, msgtype, doit, dumpit) < 0) 205e2849863SThomas Graf panic("Unable to register rtnetlink message handler, " 206e2849863SThomas Graf "protocol = %d, message type = %d\n", 207e2849863SThomas Graf protocol, msgtype); 208e2849863SThomas Graf } 209e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_register); 210e2849863SThomas Graf 211e2849863SThomas Graf /** 212e2849863SThomas Graf * rtnl_unregister - Unregister a rtnetlink message type 213e2849863SThomas Graf * @protocol: Protocol family or PF_UNSPEC 214e2849863SThomas Graf * @msgtype: rtnetlink message type 215e2849863SThomas Graf * 216e2849863SThomas Graf * Returns 0 on success or a negative error code. 217e2849863SThomas Graf */ 218e2849863SThomas Graf int rtnl_unregister(int protocol, int msgtype) 219e2849863SThomas Graf { 220e2849863SThomas Graf int msgindex; 221e2849863SThomas Graf 22225239ceeSPatrick McHardy BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); 223e2849863SThomas Graf msgindex = rtm_msgindex(msgtype); 224e2849863SThomas Graf 225e2849863SThomas Graf if (rtnl_msg_handlers[protocol] == NULL) 226e2849863SThomas Graf return -ENOENT; 227e2849863SThomas Graf 228e2849863SThomas Graf rtnl_msg_handlers[protocol][msgindex].doit = NULL; 229e2849863SThomas Graf rtnl_msg_handlers[protocol][msgindex].dumpit = NULL; 230e2849863SThomas Graf 231e2849863SThomas Graf return 0; 232e2849863SThomas Graf } 233e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_unregister); 234e2849863SThomas Graf 235e2849863SThomas Graf /** 236e2849863SThomas Graf * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol 237e2849863SThomas Graf * @protocol : Protocol family or PF_UNSPEC 238e2849863SThomas Graf * 239e2849863SThomas Graf * Identical to calling rtnl_unregster() for all registered message types 240e2849863SThomas Graf * of a certain protocol family. 241e2849863SThomas Graf */ 242e2849863SThomas Graf void rtnl_unregister_all(int protocol) 243e2849863SThomas Graf { 24425239ceeSPatrick McHardy BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); 245e2849863SThomas Graf 246e2849863SThomas Graf kfree(rtnl_msg_handlers[protocol]); 247e2849863SThomas Graf rtnl_msg_handlers[protocol] = NULL; 248e2849863SThomas Graf } 249e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_unregister_all); 2501da177e4SLinus Torvalds 25138f7b870SPatrick McHardy static LIST_HEAD(link_ops); 25238f7b870SPatrick McHardy 25338f7b870SPatrick McHardy /** 25438f7b870SPatrick McHardy * __rtnl_link_register - Register rtnl_link_ops with rtnetlink. 25538f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to register 25638f7b870SPatrick McHardy * 25738f7b870SPatrick McHardy * The caller must hold the rtnl_mutex. This function should be used 25838f7b870SPatrick McHardy * by drivers that create devices during module initialization. It 25938f7b870SPatrick McHardy * must be called before registering the devices. 26038f7b870SPatrick McHardy * 26138f7b870SPatrick McHardy * Returns 0 on success or a negative error code. 26238f7b870SPatrick McHardy */ 26338f7b870SPatrick McHardy int __rtnl_link_register(struct rtnl_link_ops *ops) 26438f7b870SPatrick McHardy { 2652d85cba2SPatrick McHardy if (!ops->dellink) 26623289a37SEric Dumazet ops->dellink = unregister_netdevice_queue; 2672d85cba2SPatrick McHardy 26838f7b870SPatrick McHardy list_add_tail(&ops->list, &link_ops); 26938f7b870SPatrick McHardy return 0; 27038f7b870SPatrick McHardy } 27138f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(__rtnl_link_register); 27238f7b870SPatrick McHardy 27338f7b870SPatrick McHardy /** 27438f7b870SPatrick McHardy * rtnl_link_register - Register rtnl_link_ops with rtnetlink. 27538f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to register 27638f7b870SPatrick McHardy * 27738f7b870SPatrick McHardy * Returns 0 on success or a negative error code. 27838f7b870SPatrick McHardy */ 27938f7b870SPatrick McHardy int rtnl_link_register(struct rtnl_link_ops *ops) 28038f7b870SPatrick McHardy { 28138f7b870SPatrick McHardy int err; 28238f7b870SPatrick McHardy 28338f7b870SPatrick McHardy rtnl_lock(); 28438f7b870SPatrick McHardy err = __rtnl_link_register(ops); 28538f7b870SPatrick McHardy rtnl_unlock(); 28638f7b870SPatrick McHardy return err; 28738f7b870SPatrick McHardy } 28838f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(rtnl_link_register); 28938f7b870SPatrick McHardy 290669f87baSPavel Emelyanov static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops) 291669f87baSPavel Emelyanov { 292669f87baSPavel Emelyanov struct net_device *dev; 29323289a37SEric Dumazet LIST_HEAD(list_kill); 29423289a37SEric Dumazet 295669f87baSPavel Emelyanov for_each_netdev(net, dev) { 29623289a37SEric Dumazet if (dev->rtnl_link_ops == ops) 29723289a37SEric Dumazet ops->dellink(dev, &list_kill); 298669f87baSPavel Emelyanov } 29923289a37SEric Dumazet unregister_netdevice_many(&list_kill); 300669f87baSPavel Emelyanov } 301669f87baSPavel Emelyanov 302669f87baSPavel Emelyanov void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops) 303669f87baSPavel Emelyanov { 304669f87baSPavel Emelyanov rtnl_lock(); 305669f87baSPavel Emelyanov __rtnl_kill_links(net, ops); 306669f87baSPavel Emelyanov rtnl_unlock(); 307669f87baSPavel Emelyanov } 308669f87baSPavel Emelyanov EXPORT_SYMBOL_GPL(rtnl_kill_links); 309669f87baSPavel Emelyanov 31038f7b870SPatrick McHardy /** 31138f7b870SPatrick McHardy * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. 31238f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to unregister 31338f7b870SPatrick McHardy * 3142d85cba2SPatrick McHardy * The caller must hold the rtnl_mutex. 31538f7b870SPatrick McHardy */ 31638f7b870SPatrick McHardy void __rtnl_link_unregister(struct rtnl_link_ops *ops) 31738f7b870SPatrick McHardy { 318881d966bSEric W. Biederman struct net *net; 3192d85cba2SPatrick McHardy 320881d966bSEric W. Biederman for_each_net(net) { 321669f87baSPavel Emelyanov __rtnl_kill_links(net, ops); 322881d966bSEric W. Biederman } 32338f7b870SPatrick McHardy list_del(&ops->list); 32438f7b870SPatrick McHardy } 32538f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(__rtnl_link_unregister); 32638f7b870SPatrick McHardy 32738f7b870SPatrick McHardy /** 32838f7b870SPatrick McHardy * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. 32938f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to unregister 33038f7b870SPatrick McHardy */ 33138f7b870SPatrick McHardy void rtnl_link_unregister(struct rtnl_link_ops *ops) 33238f7b870SPatrick McHardy { 33338f7b870SPatrick McHardy rtnl_lock(); 33438f7b870SPatrick McHardy __rtnl_link_unregister(ops); 33538f7b870SPatrick McHardy rtnl_unlock(); 33638f7b870SPatrick McHardy } 33738f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(rtnl_link_unregister); 33838f7b870SPatrick McHardy 33938f7b870SPatrick McHardy static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind) 34038f7b870SPatrick McHardy { 34138f7b870SPatrick McHardy const struct rtnl_link_ops *ops; 34238f7b870SPatrick McHardy 34338f7b870SPatrick McHardy list_for_each_entry(ops, &link_ops, list) { 34438f7b870SPatrick McHardy if (!strcmp(ops->kind, kind)) 34538f7b870SPatrick McHardy return ops; 34638f7b870SPatrick McHardy } 34738f7b870SPatrick McHardy return NULL; 34838f7b870SPatrick McHardy } 34938f7b870SPatrick McHardy 35038f7b870SPatrick McHardy static size_t rtnl_link_get_size(const struct net_device *dev) 35138f7b870SPatrick McHardy { 35238f7b870SPatrick McHardy const struct rtnl_link_ops *ops = dev->rtnl_link_ops; 35338f7b870SPatrick McHardy size_t size; 35438f7b870SPatrick McHardy 35538f7b870SPatrick McHardy if (!ops) 35638f7b870SPatrick McHardy return 0; 35738f7b870SPatrick McHardy 35838f7b870SPatrick McHardy size = nlmsg_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */ 35938f7b870SPatrick McHardy nlmsg_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */ 36038f7b870SPatrick McHardy 36138f7b870SPatrick McHardy if (ops->get_size) 36238f7b870SPatrick McHardy /* IFLA_INFO_DATA + nested data */ 36338f7b870SPatrick McHardy size += nlmsg_total_size(sizeof(struct nlattr)) + 36438f7b870SPatrick McHardy ops->get_size(dev); 36538f7b870SPatrick McHardy 36638f7b870SPatrick McHardy if (ops->get_xstats_size) 36738f7b870SPatrick McHardy size += ops->get_xstats_size(dev); /* IFLA_INFO_XSTATS */ 36838f7b870SPatrick McHardy 36938f7b870SPatrick McHardy return size; 37038f7b870SPatrick McHardy } 37138f7b870SPatrick McHardy 37238f7b870SPatrick McHardy static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev) 37338f7b870SPatrick McHardy { 37438f7b870SPatrick McHardy const struct rtnl_link_ops *ops = dev->rtnl_link_ops; 37538f7b870SPatrick McHardy struct nlattr *linkinfo, *data; 37638f7b870SPatrick McHardy int err = -EMSGSIZE; 37738f7b870SPatrick McHardy 37838f7b870SPatrick McHardy linkinfo = nla_nest_start(skb, IFLA_LINKINFO); 37938f7b870SPatrick McHardy if (linkinfo == NULL) 38038f7b870SPatrick McHardy goto out; 38138f7b870SPatrick McHardy 38238f7b870SPatrick McHardy if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0) 38338f7b870SPatrick McHardy goto err_cancel_link; 38438f7b870SPatrick McHardy if (ops->fill_xstats) { 38538f7b870SPatrick McHardy err = ops->fill_xstats(skb, dev); 38638f7b870SPatrick McHardy if (err < 0) 38738f7b870SPatrick McHardy goto err_cancel_link; 38838f7b870SPatrick McHardy } 38938f7b870SPatrick McHardy if (ops->fill_info) { 39038f7b870SPatrick McHardy data = nla_nest_start(skb, IFLA_INFO_DATA); 39138f7b870SPatrick McHardy if (data == NULL) 39238f7b870SPatrick McHardy goto err_cancel_link; 39338f7b870SPatrick McHardy err = ops->fill_info(skb, dev); 39438f7b870SPatrick McHardy if (err < 0) 39538f7b870SPatrick McHardy goto err_cancel_data; 39638f7b870SPatrick McHardy nla_nest_end(skb, data); 39738f7b870SPatrick McHardy } 39838f7b870SPatrick McHardy 39938f7b870SPatrick McHardy nla_nest_end(skb, linkinfo); 40038f7b870SPatrick McHardy return 0; 40138f7b870SPatrick McHardy 40238f7b870SPatrick McHardy err_cancel_data: 40338f7b870SPatrick McHardy nla_nest_cancel(skb, data); 40438f7b870SPatrick McHardy err_cancel_link: 40538f7b870SPatrick McHardy nla_nest_cancel(skb, linkinfo); 40638f7b870SPatrick McHardy out: 40738f7b870SPatrick McHardy return err; 40838f7b870SPatrick McHardy } 40938f7b870SPatrick McHardy 410db46edc6SThomas Graf static const int rtm_min[RTM_NR_FAMILIES] = 4111da177e4SLinus Torvalds { 412f90a0a74SThomas Graf [RTM_FAM(RTM_NEWLINK)] = NLMSG_LENGTH(sizeof(struct ifinfomsg)), 413f90a0a74SThomas Graf [RTM_FAM(RTM_NEWADDR)] = NLMSG_LENGTH(sizeof(struct ifaddrmsg)), 414f90a0a74SThomas Graf [RTM_FAM(RTM_NEWROUTE)] = NLMSG_LENGTH(sizeof(struct rtmsg)), 41514c0b97dSThomas Graf [RTM_FAM(RTM_NEWRULE)] = NLMSG_LENGTH(sizeof(struct fib_rule_hdr)), 416f90a0a74SThomas Graf [RTM_FAM(RTM_NEWQDISC)] = NLMSG_LENGTH(sizeof(struct tcmsg)), 417f90a0a74SThomas Graf [RTM_FAM(RTM_NEWTCLASS)] = NLMSG_LENGTH(sizeof(struct tcmsg)), 418f90a0a74SThomas Graf [RTM_FAM(RTM_NEWTFILTER)] = NLMSG_LENGTH(sizeof(struct tcmsg)), 419f90a0a74SThomas Graf [RTM_FAM(RTM_NEWACTION)] = NLMSG_LENGTH(sizeof(struct tcamsg)), 420f90a0a74SThomas Graf [RTM_FAM(RTM_GETMULTICAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)), 421f90a0a74SThomas Graf [RTM_FAM(RTM_GETANYCAST)] = NLMSG_LENGTH(sizeof(struct rtgenmsg)), 4221da177e4SLinus Torvalds }; 4231da177e4SLinus Torvalds 424db46edc6SThomas Graf static const int rta_max[RTM_NR_FAMILIES] = 4251da177e4SLinus Torvalds { 426f90a0a74SThomas Graf [RTM_FAM(RTM_NEWLINK)] = IFLA_MAX, 427f90a0a74SThomas Graf [RTM_FAM(RTM_NEWADDR)] = IFA_MAX, 428f90a0a74SThomas Graf [RTM_FAM(RTM_NEWROUTE)] = RTA_MAX, 42914c0b97dSThomas Graf [RTM_FAM(RTM_NEWRULE)] = FRA_MAX, 430f90a0a74SThomas Graf [RTM_FAM(RTM_NEWQDISC)] = TCA_MAX, 431f90a0a74SThomas Graf [RTM_FAM(RTM_NEWTCLASS)] = TCA_MAX, 432f90a0a74SThomas Graf [RTM_FAM(RTM_NEWTFILTER)] = TCA_MAX, 433f90a0a74SThomas Graf [RTM_FAM(RTM_NEWACTION)] = TCAA_MAX, 4341da177e4SLinus Torvalds }; 4351da177e4SLinus Torvalds 4361da177e4SLinus Torvalds void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const void *data) 4371da177e4SLinus Torvalds { 4381da177e4SLinus Torvalds struct rtattr *rta; 4391da177e4SLinus Torvalds int size = RTA_LENGTH(attrlen); 4401da177e4SLinus Torvalds 4411da177e4SLinus Torvalds rta = (struct rtattr *)skb_put(skb, RTA_ALIGN(size)); 4421da177e4SLinus Torvalds rta->rta_type = attrtype; 4431da177e4SLinus Torvalds rta->rta_len = size; 4441da177e4SLinus Torvalds memcpy(RTA_DATA(rta), data, attrlen); 445b3563c4fSPatrick McHardy memset(RTA_DATA(rta) + attrlen, 0, RTA_ALIGN(size) - size); 4461da177e4SLinus Torvalds } 447e0d087afSEric Dumazet EXPORT_SYMBOL(__rta_fill); 4481da177e4SLinus Torvalds 44997c53cacSDenis V. Lunev int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned group, int echo) 4501da177e4SLinus Torvalds { 45197c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 4521da177e4SLinus Torvalds int err = 0; 4531da177e4SLinus Torvalds 454ac6d439dSPatrick McHardy NETLINK_CB(skb).dst_group = group; 4551da177e4SLinus Torvalds if (echo) 4561da177e4SLinus Torvalds atomic_inc(&skb->users); 4571da177e4SLinus Torvalds netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL); 4581da177e4SLinus Torvalds if (echo) 4591da177e4SLinus Torvalds err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT); 4601da177e4SLinus Torvalds return err; 4611da177e4SLinus Torvalds } 4621da177e4SLinus Torvalds 46397c53cacSDenis V. Lunev int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid) 4642942e900SThomas Graf { 46597c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 46697c53cacSDenis V. Lunev 4672942e900SThomas Graf return nlmsg_unicast(rtnl, skb, pid); 4682942e900SThomas Graf } 469e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_unicast); 4702942e900SThomas Graf 4711ce85fe4SPablo Neira Ayuso void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group, 47297676b6bSThomas Graf struct nlmsghdr *nlh, gfp_t flags) 47397676b6bSThomas Graf { 47497c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 47597676b6bSThomas Graf int report = 0; 47697676b6bSThomas Graf 47797676b6bSThomas Graf if (nlh) 47897676b6bSThomas Graf report = nlmsg_report(nlh); 47997676b6bSThomas Graf 4801ce85fe4SPablo Neira Ayuso nlmsg_notify(rtnl, skb, pid, group, report, flags); 48197676b6bSThomas Graf } 482e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_notify); 48397676b6bSThomas Graf 48497c53cacSDenis V. Lunev void rtnl_set_sk_err(struct net *net, u32 group, int error) 48597676b6bSThomas Graf { 48697c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 48797c53cacSDenis V. Lunev 48897676b6bSThomas Graf netlink_set_err(rtnl, 0, group, error); 48997676b6bSThomas Graf } 490e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_set_sk_err); 49197676b6bSThomas Graf 4921da177e4SLinus Torvalds int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics) 4931da177e4SLinus Torvalds { 4942d7202bfSThomas Graf struct nlattr *mx; 4952d7202bfSThomas Graf int i, valid = 0; 4961da177e4SLinus Torvalds 4972d7202bfSThomas Graf mx = nla_nest_start(skb, RTA_METRICS); 4982d7202bfSThomas Graf if (mx == NULL) 4992d7202bfSThomas Graf return -ENOBUFS; 5002d7202bfSThomas Graf 5011da177e4SLinus Torvalds for (i = 0; i < RTAX_MAX; i++) { 5022d7202bfSThomas Graf if (metrics[i]) { 5032d7202bfSThomas Graf valid++; 5042d7202bfSThomas Graf NLA_PUT_U32(skb, i+1, metrics[i]); 5051da177e4SLinus Torvalds } 5062d7202bfSThomas Graf } 5071da177e4SLinus Torvalds 508a57d27fcSDavid S. Miller if (!valid) { 509a57d27fcSDavid S. Miller nla_nest_cancel(skb, mx); 510a57d27fcSDavid S. Miller return 0; 511a57d27fcSDavid S. Miller } 5122d7202bfSThomas Graf 5132d7202bfSThomas Graf return nla_nest_end(skb, mx); 5142d7202bfSThomas Graf 5152d7202bfSThomas Graf nla_put_failure: 516bc3ed28cSThomas Graf nla_nest_cancel(skb, mx); 517bc3ed28cSThomas Graf return -EMSGSIZE; 5181da177e4SLinus Torvalds } 519e0d087afSEric Dumazet EXPORT_SYMBOL(rtnetlink_put_metrics); 5201da177e4SLinus Torvalds 521e3703b3dSThomas Graf int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id, 522e3703b3dSThomas Graf u32 ts, u32 tsage, long expires, u32 error) 523e3703b3dSThomas Graf { 524e3703b3dSThomas Graf struct rta_cacheinfo ci = { 525e3703b3dSThomas Graf .rta_lastuse = jiffies_to_clock_t(jiffies - dst->lastuse), 526e3703b3dSThomas Graf .rta_used = dst->__use, 527e3703b3dSThomas Graf .rta_clntref = atomic_read(&(dst->__refcnt)), 528e3703b3dSThomas Graf .rta_error = error, 529e3703b3dSThomas Graf .rta_id = id, 530e3703b3dSThomas Graf .rta_ts = ts, 531e3703b3dSThomas Graf .rta_tsage = tsage, 532e3703b3dSThomas Graf }; 533e3703b3dSThomas Graf 534e3703b3dSThomas Graf if (expires) 535e3703b3dSThomas Graf ci.rta_expires = jiffies_to_clock_t(expires); 536e3703b3dSThomas Graf 537e3703b3dSThomas Graf return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci); 538e3703b3dSThomas Graf } 539e3703b3dSThomas Graf EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo); 5401da177e4SLinus Torvalds 54193b2d4a2SDavid S. Miller static void set_operstate(struct net_device *dev, unsigned char transition) 542b00055aaSStefan Rompf { 543b00055aaSStefan Rompf unsigned char operstate = dev->operstate; 544b00055aaSStefan Rompf 545b00055aaSStefan Rompf switch (transition) { 546b00055aaSStefan Rompf case IF_OPER_UP: 547b00055aaSStefan Rompf if ((operstate == IF_OPER_DORMANT || 548b00055aaSStefan Rompf operstate == IF_OPER_UNKNOWN) && 549b00055aaSStefan Rompf !netif_dormant(dev)) 550b00055aaSStefan Rompf operstate = IF_OPER_UP; 551b00055aaSStefan Rompf break; 552b00055aaSStefan Rompf 553b00055aaSStefan Rompf case IF_OPER_DORMANT: 554b00055aaSStefan Rompf if (operstate == IF_OPER_UP || 555b00055aaSStefan Rompf operstate == IF_OPER_UNKNOWN) 556b00055aaSStefan Rompf operstate = IF_OPER_DORMANT; 557b00055aaSStefan Rompf break; 5583ff50b79SStephen Hemminger } 559b00055aaSStefan Rompf 560b00055aaSStefan Rompf if (dev->operstate != operstate) { 561b00055aaSStefan Rompf write_lock_bh(&dev_base_lock); 562b00055aaSStefan Rompf dev->operstate = operstate; 563b00055aaSStefan Rompf write_unlock_bh(&dev_base_lock); 564b00055aaSStefan Rompf netdev_state_change(dev); 56593b2d4a2SDavid S. Miller } 566b00055aaSStefan Rompf } 567b00055aaSStefan Rompf 5683729d502SPatrick McHardy static unsigned int rtnl_dev_combine_flags(const struct net_device *dev, 5693729d502SPatrick McHardy const struct ifinfomsg *ifm) 5703729d502SPatrick McHardy { 5713729d502SPatrick McHardy unsigned int flags = ifm->ifi_flags; 5723729d502SPatrick McHardy 5733729d502SPatrick McHardy /* bugwards compatibility: ifi_change == 0 is treated as ~0 */ 5743729d502SPatrick McHardy if (ifm->ifi_change) 5753729d502SPatrick McHardy flags = (flags & ifm->ifi_change) | 5763729d502SPatrick McHardy (dev->flags & ~ifm->ifi_change); 5773729d502SPatrick McHardy 5783729d502SPatrick McHardy return flags; 5793729d502SPatrick McHardy } 5803729d502SPatrick McHardy 581b60c5115SThomas Graf static void copy_rtnl_link_stats(struct rtnl_link_stats *a, 582be1f3c2cSBen Hutchings const struct rtnl_link_stats64 *b) 5831da177e4SLinus Torvalds { 584b60c5115SThomas Graf a->rx_packets = b->rx_packets; 585b60c5115SThomas Graf a->tx_packets = b->tx_packets; 586b60c5115SThomas Graf a->rx_bytes = b->rx_bytes; 587b60c5115SThomas Graf a->tx_bytes = b->tx_bytes; 588b60c5115SThomas Graf a->rx_errors = b->rx_errors; 589b60c5115SThomas Graf a->tx_errors = b->tx_errors; 590b60c5115SThomas Graf a->rx_dropped = b->rx_dropped; 591b60c5115SThomas Graf a->tx_dropped = b->tx_dropped; 592b60c5115SThomas Graf 593b60c5115SThomas Graf a->multicast = b->multicast; 594b60c5115SThomas Graf a->collisions = b->collisions; 595b60c5115SThomas Graf 596b60c5115SThomas Graf a->rx_length_errors = b->rx_length_errors; 597b60c5115SThomas Graf a->rx_over_errors = b->rx_over_errors; 598b60c5115SThomas Graf a->rx_crc_errors = b->rx_crc_errors; 599b60c5115SThomas Graf a->rx_frame_errors = b->rx_frame_errors; 600b60c5115SThomas Graf a->rx_fifo_errors = b->rx_fifo_errors; 601b60c5115SThomas Graf a->rx_missed_errors = b->rx_missed_errors; 602b60c5115SThomas Graf 603b60c5115SThomas Graf a->tx_aborted_errors = b->tx_aborted_errors; 604b60c5115SThomas Graf a->tx_carrier_errors = b->tx_carrier_errors; 605b60c5115SThomas Graf a->tx_fifo_errors = b->tx_fifo_errors; 606b60c5115SThomas Graf a->tx_heartbeat_errors = b->tx_heartbeat_errors; 607b60c5115SThomas Graf a->tx_window_errors = b->tx_window_errors; 608b60c5115SThomas Graf 609b60c5115SThomas Graf a->rx_compressed = b->rx_compressed; 610b60c5115SThomas Graf a->tx_compressed = b->tx_compressed; 61110708f37SJan Engelhardt } 61210708f37SJan Engelhardt 613be1f3c2cSBen Hutchings static void copy_rtnl_link_stats64(void *v, const struct rtnl_link_stats64 *b) 61410708f37SJan Engelhardt { 615*afdcba37SEric Dumazet memcpy(v, b, sizeof(*b)); 61610708f37SJan Engelhardt } 617b60c5115SThomas Graf 618c02db8c6SChris Wright /* All VF info */ 619ebc08a6fSWilliams, Mitch A static inline int rtnl_vfinfo_size(const struct net_device *dev) 620ebc08a6fSWilliams, Mitch A { 621c02db8c6SChris Wright if (dev->dev.parent && dev_is_pci(dev->dev.parent)) { 622c02db8c6SChris Wright 623c02db8c6SChris Wright int num_vfs = dev_num_vf(dev->dev.parent); 624045de01aSScott Feldman size_t size = nla_total_size(sizeof(struct nlattr)); 625045de01aSScott Feldman size += nla_total_size(num_vfs * sizeof(struct nlattr)); 626045de01aSScott Feldman size += num_vfs * 627045de01aSScott Feldman (nla_total_size(sizeof(struct ifla_vf_mac)) + 628045de01aSScott Feldman nla_total_size(sizeof(struct ifla_vf_vlan)) + 629045de01aSScott Feldman nla_total_size(sizeof(struct ifla_vf_tx_rate))); 630c02db8c6SChris Wright return size; 631c02db8c6SChris Wright } else 632ebc08a6fSWilliams, Mitch A return 0; 633ebc08a6fSWilliams, Mitch A } 634ebc08a6fSWilliams, Mitch A 63557b61080SScott Feldman static size_t rtnl_port_size(const struct net_device *dev) 63657b61080SScott Feldman { 63757b61080SScott Feldman size_t port_size = nla_total_size(4) /* PORT_VF */ 63857b61080SScott Feldman + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */ 63957b61080SScott Feldman + nla_total_size(sizeof(struct ifla_port_vsi)) 64057b61080SScott Feldman /* PORT_VSI_TYPE */ 64157b61080SScott Feldman + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */ 64257b61080SScott Feldman + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */ 64357b61080SScott Feldman + nla_total_size(1) /* PROT_VDP_REQUEST */ 64457b61080SScott Feldman + nla_total_size(2); /* PORT_VDP_RESPONSE */ 64557b61080SScott Feldman size_t vf_ports_size = nla_total_size(sizeof(struct nlattr)); 64657b61080SScott Feldman size_t vf_port_size = nla_total_size(sizeof(struct nlattr)) 64757b61080SScott Feldman + port_size; 64857b61080SScott Feldman size_t port_self_size = nla_total_size(sizeof(struct nlattr)) 64957b61080SScott Feldman + port_size; 65057b61080SScott Feldman 65157b61080SScott Feldman if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent) 65257b61080SScott Feldman return 0; 65357b61080SScott Feldman if (dev_num_vf(dev->dev.parent)) 65457b61080SScott Feldman return port_self_size + vf_ports_size + 65557b61080SScott Feldman vf_port_size * dev_num_vf(dev->dev.parent); 65657b61080SScott Feldman else 65757b61080SScott Feldman return port_self_size; 65857b61080SScott Feldman } 65957b61080SScott Feldman 6609e34a5b5SEric Dumazet static noinline size_t if_nlmsg_size(const struct net_device *dev) 661339bf98fSThomas Graf { 662339bf98fSThomas Graf return NLMSG_ALIGN(sizeof(struct ifinfomsg)) 663339bf98fSThomas Graf + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ 6640b815a1aSStephen Hemminger + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */ 665339bf98fSThomas Graf + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */ 666339bf98fSThomas Graf + nla_total_size(sizeof(struct rtnl_link_ifmap)) 667339bf98fSThomas Graf + nla_total_size(sizeof(struct rtnl_link_stats)) 668adcfe196SJan Engelhardt + nla_total_size(sizeof(struct rtnl_link_stats64)) 669339bf98fSThomas Graf + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ 670339bf98fSThomas Graf + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */ 671339bf98fSThomas Graf + nla_total_size(4) /* IFLA_TXQLEN */ 672339bf98fSThomas Graf + nla_total_size(4) /* IFLA_WEIGHT */ 673339bf98fSThomas Graf + nla_total_size(4) /* IFLA_MTU */ 674339bf98fSThomas Graf + nla_total_size(4) /* IFLA_LINK */ 675339bf98fSThomas Graf + nla_total_size(4) /* IFLA_MASTER */ 676339bf98fSThomas Graf + nla_total_size(1) /* IFLA_OPERSTATE */ 67738f7b870SPatrick McHardy + nla_total_size(1) /* IFLA_LINKMODE */ 678ebc08a6fSWilliams, Mitch A + nla_total_size(4) /* IFLA_NUM_VF */ 679c02db8c6SChris Wright + rtnl_vfinfo_size(dev) /* IFLA_VFINFO_LIST */ 68057b61080SScott Feldman + rtnl_port_size(dev) /* IFLA_VF_PORTS + IFLA_PORT_SELF */ 68138f7b870SPatrick McHardy + rtnl_link_get_size(dev); /* IFLA_LINKINFO */ 682339bf98fSThomas Graf } 683339bf98fSThomas Graf 68457b61080SScott Feldman static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev) 68557b61080SScott Feldman { 68657b61080SScott Feldman struct nlattr *vf_ports; 68757b61080SScott Feldman struct nlattr *vf_port; 68857b61080SScott Feldman int vf; 68957b61080SScott Feldman int err; 69057b61080SScott Feldman 69157b61080SScott Feldman vf_ports = nla_nest_start(skb, IFLA_VF_PORTS); 69257b61080SScott Feldman if (!vf_ports) 69357b61080SScott Feldman return -EMSGSIZE; 69457b61080SScott Feldman 69557b61080SScott Feldman for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) { 69657b61080SScott Feldman vf_port = nla_nest_start(skb, IFLA_VF_PORT); 6978ca94183SScott Feldman if (!vf_port) 6988ca94183SScott Feldman goto nla_put_failure; 69957b61080SScott Feldman NLA_PUT_U32(skb, IFLA_PORT_VF, vf); 70057b61080SScott Feldman err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb); 7018ca94183SScott Feldman if (err == -EMSGSIZE) 7028ca94183SScott Feldman goto nla_put_failure; 70357b61080SScott Feldman if (err) { 70457b61080SScott Feldman nla_nest_cancel(skb, vf_port); 70557b61080SScott Feldman continue; 70657b61080SScott Feldman } 70757b61080SScott Feldman nla_nest_end(skb, vf_port); 70857b61080SScott Feldman } 70957b61080SScott Feldman 71057b61080SScott Feldman nla_nest_end(skb, vf_ports); 71157b61080SScott Feldman 71257b61080SScott Feldman return 0; 7138ca94183SScott Feldman 7148ca94183SScott Feldman nla_put_failure: 7158ca94183SScott Feldman nla_nest_cancel(skb, vf_ports); 7168ca94183SScott Feldman return -EMSGSIZE; 71757b61080SScott Feldman } 71857b61080SScott Feldman 71957b61080SScott Feldman static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev) 72057b61080SScott Feldman { 72157b61080SScott Feldman struct nlattr *port_self; 72257b61080SScott Feldman int err; 72357b61080SScott Feldman 72457b61080SScott Feldman port_self = nla_nest_start(skb, IFLA_PORT_SELF); 72557b61080SScott Feldman if (!port_self) 72657b61080SScott Feldman return -EMSGSIZE; 72757b61080SScott Feldman 72857b61080SScott Feldman err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb); 72957b61080SScott Feldman if (err) { 73057b61080SScott Feldman nla_nest_cancel(skb, port_self); 7318ca94183SScott Feldman return (err == -EMSGSIZE) ? err : 0; 73257b61080SScott Feldman } 73357b61080SScott Feldman 73457b61080SScott Feldman nla_nest_end(skb, port_self); 73557b61080SScott Feldman 73657b61080SScott Feldman return 0; 73757b61080SScott Feldman } 73857b61080SScott Feldman 73957b61080SScott Feldman static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev) 74057b61080SScott Feldman { 74157b61080SScott Feldman int err; 74257b61080SScott Feldman 74357b61080SScott Feldman if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent) 74457b61080SScott Feldman return 0; 74557b61080SScott Feldman 74657b61080SScott Feldman err = rtnl_port_self_fill(skb, dev); 74757b61080SScott Feldman if (err) 74857b61080SScott Feldman return err; 74957b61080SScott Feldman 75057b61080SScott Feldman if (dev_num_vf(dev->dev.parent)) { 75157b61080SScott Feldman err = rtnl_vf_ports_fill(skb, dev); 75257b61080SScott Feldman if (err) 75357b61080SScott Feldman return err; 75457b61080SScott Feldman } 75557b61080SScott Feldman 75657b61080SScott Feldman return 0; 75757b61080SScott Feldman } 75857b61080SScott Feldman 759b60c5115SThomas Graf static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev, 760575c3e2aSPatrick McHardy int type, u32 pid, u32 seq, u32 change, 761575c3e2aSPatrick McHardy unsigned int flags) 762b60c5115SThomas Graf { 763b60c5115SThomas Graf struct ifinfomsg *ifm; 7641da177e4SLinus Torvalds struct nlmsghdr *nlh; 76528172739SEric Dumazet struct rtnl_link_stats64 temp; 766be1f3c2cSBen Hutchings const struct rtnl_link_stats64 *stats; 76796e74088SPavel Emelyanov struct nlattr *attr; 7681da177e4SLinus Torvalds 769b60c5115SThomas Graf nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags); 770b60c5115SThomas Graf if (nlh == NULL) 77126932566SPatrick McHardy return -EMSGSIZE; 7721da177e4SLinus Torvalds 773b60c5115SThomas Graf ifm = nlmsg_data(nlh); 774b60c5115SThomas Graf ifm->ifi_family = AF_UNSPEC; 775b60c5115SThomas Graf ifm->__ifi_pad = 0; 776b60c5115SThomas Graf ifm->ifi_type = dev->type; 777b60c5115SThomas Graf ifm->ifi_index = dev->ifindex; 778b60c5115SThomas Graf ifm->ifi_flags = dev_get_flags(dev); 779b60c5115SThomas Graf ifm->ifi_change = change; 7801da177e4SLinus Torvalds 781b60c5115SThomas Graf NLA_PUT_STRING(skb, IFLA_IFNAME, dev->name); 782b60c5115SThomas Graf NLA_PUT_U32(skb, IFLA_TXQLEN, dev->tx_queue_len); 783b60c5115SThomas Graf NLA_PUT_U8(skb, IFLA_OPERSTATE, 784b60c5115SThomas Graf netif_running(dev) ? dev->operstate : IF_OPER_DOWN); 785b60c5115SThomas Graf NLA_PUT_U8(skb, IFLA_LINKMODE, dev->link_mode); 786b60c5115SThomas Graf NLA_PUT_U32(skb, IFLA_MTU, dev->mtu); 7871da177e4SLinus Torvalds 788b60c5115SThomas Graf if (dev->ifindex != dev->iflink) 789b60c5115SThomas Graf NLA_PUT_U32(skb, IFLA_LINK, dev->iflink); 7901da177e4SLinus Torvalds 791b60c5115SThomas Graf if (dev->master) 792b60c5115SThomas Graf NLA_PUT_U32(skb, IFLA_MASTER, dev->master->ifindex); 793b60c5115SThomas Graf 794af356afaSPatrick McHardy if (dev->qdisc) 795af356afaSPatrick McHardy NLA_PUT_STRING(skb, IFLA_QDISC, dev->qdisc->ops->id); 796b00055aaSStefan Rompf 7970b815a1aSStephen Hemminger if (dev->ifalias) 7980b815a1aSStephen Hemminger NLA_PUT_STRING(skb, IFLA_IFALIAS, dev->ifalias); 7990b815a1aSStephen Hemminger 800b00055aaSStefan Rompf if (1) { 8011da177e4SLinus Torvalds struct rtnl_link_ifmap map = { 8021da177e4SLinus Torvalds .mem_start = dev->mem_start, 8031da177e4SLinus Torvalds .mem_end = dev->mem_end, 8041da177e4SLinus Torvalds .base_addr = dev->base_addr, 8051da177e4SLinus Torvalds .irq = dev->irq, 8061da177e4SLinus Torvalds .dma = dev->dma, 8071da177e4SLinus Torvalds .port = dev->if_port, 8081da177e4SLinus Torvalds }; 809b60c5115SThomas Graf NLA_PUT(skb, IFLA_MAP, sizeof(map), &map); 8101da177e4SLinus Torvalds } 8111da177e4SLinus Torvalds 8121da177e4SLinus Torvalds if (dev->addr_len) { 813b60c5115SThomas Graf NLA_PUT(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr); 814b60c5115SThomas Graf NLA_PUT(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast); 8151da177e4SLinus Torvalds } 8161da177e4SLinus Torvalds 817b60c5115SThomas Graf attr = nla_reserve(skb, IFLA_STATS, 818b60c5115SThomas Graf sizeof(struct rtnl_link_stats)); 819b60c5115SThomas Graf if (attr == NULL) 820b60c5115SThomas Graf goto nla_put_failure; 821b60c5115SThomas Graf 82228172739SEric Dumazet stats = dev_get_stats(dev, &temp); 823b60c5115SThomas Graf copy_rtnl_link_stats(nla_data(attr), stats); 8241da177e4SLinus Torvalds 82510708f37SJan Engelhardt attr = nla_reserve(skb, IFLA_STATS64, 82610708f37SJan Engelhardt sizeof(struct rtnl_link_stats64)); 82710708f37SJan Engelhardt if (attr == NULL) 82810708f37SJan Engelhardt goto nla_put_failure; 82910708f37SJan Engelhardt copy_rtnl_link_stats64(nla_data(attr), stats); 83010708f37SJan Engelhardt 83157b61080SScott Feldman if (dev->dev.parent) 83257b61080SScott Feldman NLA_PUT_U32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent)); 83357b61080SScott Feldman 834ebc08a6fSWilliams, Mitch A if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent) { 835ebc08a6fSWilliams, Mitch A int i; 836ebc08a6fSWilliams, Mitch A 837c02db8c6SChris Wright struct nlattr *vfinfo, *vf; 838c02db8c6SChris Wright int num_vfs = dev_num_vf(dev->dev.parent); 839c02db8c6SChris Wright 840c02db8c6SChris Wright vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST); 841c02db8c6SChris Wright if (!vfinfo) 842c02db8c6SChris Wright goto nla_put_failure; 843c02db8c6SChris Wright for (i = 0; i < num_vfs; i++) { 844c02db8c6SChris Wright struct ifla_vf_info ivi; 845c02db8c6SChris Wright struct ifla_vf_mac vf_mac; 846c02db8c6SChris Wright struct ifla_vf_vlan vf_vlan; 847c02db8c6SChris Wright struct ifla_vf_tx_rate vf_tx_rate; 848ebc08a6fSWilliams, Mitch A if (dev->netdev_ops->ndo_get_vf_config(dev, i, &ivi)) 849ebc08a6fSWilliams, Mitch A break; 850c02db8c6SChris Wright vf_mac.vf = vf_vlan.vf = vf_tx_rate.vf = ivi.vf; 851c02db8c6SChris Wright memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac)); 852c02db8c6SChris Wright vf_vlan.vlan = ivi.vlan; 853c02db8c6SChris Wright vf_vlan.qos = ivi.qos; 854c02db8c6SChris Wright vf_tx_rate.rate = ivi.tx_rate; 855c02db8c6SChris Wright vf = nla_nest_start(skb, IFLA_VF_INFO); 856c02db8c6SChris Wright if (!vf) { 857c02db8c6SChris Wright nla_nest_cancel(skb, vfinfo); 858c02db8c6SChris Wright goto nla_put_failure; 859ebc08a6fSWilliams, Mitch A } 860c02db8c6SChris Wright NLA_PUT(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac); 861c02db8c6SChris Wright NLA_PUT(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan); 862c02db8c6SChris Wright NLA_PUT(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), &vf_tx_rate); 863c02db8c6SChris Wright nla_nest_end(skb, vf); 864c02db8c6SChris Wright } 865c02db8c6SChris Wright nla_nest_end(skb, vfinfo); 866ebc08a6fSWilliams, Mitch A } 86757b61080SScott Feldman 86857b61080SScott Feldman if (rtnl_port_fill(skb, dev)) 86957b61080SScott Feldman goto nla_put_failure; 87057b61080SScott Feldman 87138f7b870SPatrick McHardy if (dev->rtnl_link_ops) { 87238f7b870SPatrick McHardy if (rtnl_link_fill(skb, dev) < 0) 87338f7b870SPatrick McHardy goto nla_put_failure; 87438f7b870SPatrick McHardy } 87538f7b870SPatrick McHardy 876b60c5115SThomas Graf return nlmsg_end(skb, nlh); 877b60c5115SThomas Graf 878b60c5115SThomas Graf nla_put_failure: 87926932566SPatrick McHardy nlmsg_cancel(skb, nlh); 88026932566SPatrick McHardy return -EMSGSIZE; 8811da177e4SLinus Torvalds } 8821da177e4SLinus Torvalds 883b60c5115SThomas Graf static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) 8841da177e4SLinus Torvalds { 8853b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 8867c28bd0bSEric Dumazet int h, s_h; 8877c28bd0bSEric Dumazet int idx = 0, s_idx; 8881da177e4SLinus Torvalds struct net_device *dev; 8897c28bd0bSEric Dumazet struct hlist_head *head; 8907c28bd0bSEric Dumazet struct hlist_node *node; 8911da177e4SLinus Torvalds 8927c28bd0bSEric Dumazet s_h = cb->args[0]; 8937c28bd0bSEric Dumazet s_idx = cb->args[1]; 8947c28bd0bSEric Dumazet 8957c28bd0bSEric Dumazet for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { 8967562f876SPavel Emelianov idx = 0; 8977c28bd0bSEric Dumazet head = &net->dev_index_head[h]; 8987c28bd0bSEric Dumazet hlist_for_each_entry(dev, node, head, index_hlist) { 8991da177e4SLinus Torvalds if (idx < s_idx) 9007562f876SPavel Emelianov goto cont; 901575c3e2aSPatrick McHardy if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, 902b6544c0bSJamal Hadi Salim NETLINK_CB(cb->skb).pid, 9037c28bd0bSEric Dumazet cb->nlh->nlmsg_seq, 0, 9047c28bd0bSEric Dumazet NLM_F_MULTI) <= 0) 9057c28bd0bSEric Dumazet goto out; 9067562f876SPavel Emelianov cont: 9077562f876SPavel Emelianov idx++; 9081da177e4SLinus Torvalds } 9097c28bd0bSEric Dumazet } 9107c28bd0bSEric Dumazet out: 9117c28bd0bSEric Dumazet cb->args[1] = idx; 9127c28bd0bSEric Dumazet cb->args[0] = h; 9131da177e4SLinus Torvalds 9141da177e4SLinus Torvalds return skb->len; 9151da177e4SLinus Torvalds } 9161da177e4SLinus Torvalds 917e7199288SPavel Emelianov const struct nla_policy ifla_policy[IFLA_MAX+1] = { 9185176f91eSThomas Graf [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 }, 91938f7b870SPatrick McHardy [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, 92038f7b870SPatrick McHardy [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, 9215176f91eSThomas Graf [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) }, 922da5e0494SThomas Graf [IFLA_MTU] = { .type = NLA_U32 }, 92376e87306SThomas Graf [IFLA_LINK] = { .type = NLA_U32 }, 924da5e0494SThomas Graf [IFLA_TXQLEN] = { .type = NLA_U32 }, 925da5e0494SThomas Graf [IFLA_WEIGHT] = { .type = NLA_U32 }, 926da5e0494SThomas Graf [IFLA_OPERSTATE] = { .type = NLA_U8 }, 927da5e0494SThomas Graf [IFLA_LINKMODE] = { .type = NLA_U8 }, 92876e87306SThomas Graf [IFLA_LINKINFO] = { .type = NLA_NESTED }, 929d8a5ec67SEric W. Biederman [IFLA_NET_NS_PID] = { .type = NLA_U32 }, 9300b815a1aSStephen Hemminger [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 }, 931c02db8c6SChris Wright [IFLA_VFINFO_LIST] = {. type = NLA_NESTED }, 93257b61080SScott Feldman [IFLA_VF_PORTS] = { .type = NLA_NESTED }, 93357b61080SScott Feldman [IFLA_PORT_SELF] = { .type = NLA_NESTED }, 934da5e0494SThomas Graf }; 935e0d087afSEric Dumazet EXPORT_SYMBOL(ifla_policy); 9361da177e4SLinus Torvalds 93738f7b870SPatrick McHardy static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = { 93838f7b870SPatrick McHardy [IFLA_INFO_KIND] = { .type = NLA_STRING }, 93938f7b870SPatrick McHardy [IFLA_INFO_DATA] = { .type = NLA_NESTED }, 94038f7b870SPatrick McHardy }; 94138f7b870SPatrick McHardy 942c02db8c6SChris Wright static const struct nla_policy ifla_vfinfo_policy[IFLA_VF_INFO_MAX+1] = { 943c02db8c6SChris Wright [IFLA_VF_INFO] = { .type = NLA_NESTED }, 944c02db8c6SChris Wright }; 945c02db8c6SChris Wright 946c02db8c6SChris Wright static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = { 947c02db8c6SChris Wright [IFLA_VF_MAC] = { .type = NLA_BINARY, 948c02db8c6SChris Wright .len = sizeof(struct ifla_vf_mac) }, 949c02db8c6SChris Wright [IFLA_VF_VLAN] = { .type = NLA_BINARY, 950c02db8c6SChris Wright .len = sizeof(struct ifla_vf_vlan) }, 951c02db8c6SChris Wright [IFLA_VF_TX_RATE] = { .type = NLA_BINARY, 952c02db8c6SChris Wright .len = sizeof(struct ifla_vf_tx_rate) }, 953c02db8c6SChris Wright }; 954c02db8c6SChris Wright 95557b61080SScott Feldman static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = { 95657b61080SScott Feldman [IFLA_PORT_VF] = { .type = NLA_U32 }, 95757b61080SScott Feldman [IFLA_PORT_PROFILE] = { .type = NLA_STRING, 95857b61080SScott Feldman .len = PORT_PROFILE_MAX }, 95957b61080SScott Feldman [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY, 96057b61080SScott Feldman .len = sizeof(struct ifla_port_vsi)}, 96157b61080SScott Feldman [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY, 96257b61080SScott Feldman .len = PORT_UUID_MAX }, 96357b61080SScott Feldman [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING, 96457b61080SScott Feldman .len = PORT_UUID_MAX }, 96557b61080SScott Feldman [IFLA_PORT_REQUEST] = { .type = NLA_U8, }, 96657b61080SScott Feldman [IFLA_PORT_RESPONSE] = { .type = NLA_U16, }, 96757b61080SScott Feldman }; 96857b61080SScott Feldman 96981adee47SEric W. Biederman struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[]) 97081adee47SEric W. Biederman { 97181adee47SEric W. Biederman struct net *net; 97281adee47SEric W. Biederman /* Examine the link attributes and figure out which 97381adee47SEric W. Biederman * network namespace we are talking about. 97481adee47SEric W. Biederman */ 97581adee47SEric W. Biederman if (tb[IFLA_NET_NS_PID]) 97681adee47SEric W. Biederman net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID])); 97781adee47SEric W. Biederman else 97881adee47SEric W. Biederman net = get_net(src_net); 97981adee47SEric W. Biederman return net; 98081adee47SEric W. Biederman } 98181adee47SEric W. Biederman EXPORT_SYMBOL(rtnl_link_get_net); 98281adee47SEric W. Biederman 9831840bb13SThomas Graf static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[]) 9841840bb13SThomas Graf { 9851840bb13SThomas Graf if (dev) { 9861840bb13SThomas Graf if (tb[IFLA_ADDRESS] && 9871840bb13SThomas Graf nla_len(tb[IFLA_ADDRESS]) < dev->addr_len) 9881840bb13SThomas Graf return -EINVAL; 9891840bb13SThomas Graf 9901840bb13SThomas Graf if (tb[IFLA_BROADCAST] && 9911840bb13SThomas Graf nla_len(tb[IFLA_BROADCAST]) < dev->addr_len) 9921840bb13SThomas Graf return -EINVAL; 9931840bb13SThomas Graf } 9941840bb13SThomas Graf 9951840bb13SThomas Graf return 0; 9961840bb13SThomas Graf } 9971840bb13SThomas Graf 998c02db8c6SChris Wright static int do_setvfinfo(struct net_device *dev, struct nlattr *attr) 999c02db8c6SChris Wright { 1000c02db8c6SChris Wright int rem, err = -EINVAL; 1001c02db8c6SChris Wright struct nlattr *vf; 1002c02db8c6SChris Wright const struct net_device_ops *ops = dev->netdev_ops; 1003c02db8c6SChris Wright 1004c02db8c6SChris Wright nla_for_each_nested(vf, attr, rem) { 1005c02db8c6SChris Wright switch (nla_type(vf)) { 1006c02db8c6SChris Wright case IFLA_VF_MAC: { 1007c02db8c6SChris Wright struct ifla_vf_mac *ivm; 1008c02db8c6SChris Wright ivm = nla_data(vf); 1009c02db8c6SChris Wright err = -EOPNOTSUPP; 1010c02db8c6SChris Wright if (ops->ndo_set_vf_mac) 1011c02db8c6SChris Wright err = ops->ndo_set_vf_mac(dev, ivm->vf, 1012c02db8c6SChris Wright ivm->mac); 1013c02db8c6SChris Wright break; 1014c02db8c6SChris Wright } 1015c02db8c6SChris Wright case IFLA_VF_VLAN: { 1016c02db8c6SChris Wright struct ifla_vf_vlan *ivv; 1017c02db8c6SChris Wright ivv = nla_data(vf); 1018c02db8c6SChris Wright err = -EOPNOTSUPP; 1019c02db8c6SChris Wright if (ops->ndo_set_vf_vlan) 1020c02db8c6SChris Wright err = ops->ndo_set_vf_vlan(dev, ivv->vf, 1021c02db8c6SChris Wright ivv->vlan, 1022c02db8c6SChris Wright ivv->qos); 1023c02db8c6SChris Wright break; 1024c02db8c6SChris Wright } 1025c02db8c6SChris Wright case IFLA_VF_TX_RATE: { 1026c02db8c6SChris Wright struct ifla_vf_tx_rate *ivt; 1027c02db8c6SChris Wright ivt = nla_data(vf); 1028c02db8c6SChris Wright err = -EOPNOTSUPP; 1029c02db8c6SChris Wright if (ops->ndo_set_vf_tx_rate) 1030c02db8c6SChris Wright err = ops->ndo_set_vf_tx_rate(dev, ivt->vf, 1031c02db8c6SChris Wright ivt->rate); 1032c02db8c6SChris Wright break; 1033c02db8c6SChris Wright } 1034c02db8c6SChris Wright default: 1035c02db8c6SChris Wright err = -EINVAL; 1036c02db8c6SChris Wright break; 1037c02db8c6SChris Wright } 1038c02db8c6SChris Wright if (err) 1039c02db8c6SChris Wright break; 1040c02db8c6SChris Wright } 1041c02db8c6SChris Wright return err; 1042c02db8c6SChris Wright } 1043c02db8c6SChris Wright 10440157f60cSPatrick McHardy static int do_setlink(struct net_device *dev, struct ifinfomsg *ifm, 104538f7b870SPatrick McHardy struct nlattr **tb, char *ifname, int modified) 10460157f60cSPatrick McHardy { 1047d314774cSStephen Hemminger const struct net_device_ops *ops = dev->netdev_ops; 104838f7b870SPatrick McHardy int send_addr_notify = 0; 10490157f60cSPatrick McHardy int err; 10500157f60cSPatrick McHardy 1051d8a5ec67SEric W. Biederman if (tb[IFLA_NET_NS_PID]) { 105281adee47SEric W. Biederman struct net *net = rtnl_link_get_net(dev_net(dev), tb); 1053d8a5ec67SEric W. Biederman if (IS_ERR(net)) { 1054d8a5ec67SEric W. Biederman err = PTR_ERR(net); 1055d8a5ec67SEric W. Biederman goto errout; 1056d8a5ec67SEric W. Biederman } 1057d8a5ec67SEric W. Biederman err = dev_change_net_namespace(dev, net, ifname); 1058d8a5ec67SEric W. Biederman put_net(net); 1059d8a5ec67SEric W. Biederman if (err) 1060d8a5ec67SEric W. Biederman goto errout; 1061d8a5ec67SEric W. Biederman modified = 1; 1062d8a5ec67SEric W. Biederman } 1063d8a5ec67SEric W. Biederman 10640157f60cSPatrick McHardy if (tb[IFLA_MAP]) { 10650157f60cSPatrick McHardy struct rtnl_link_ifmap *u_map; 10660157f60cSPatrick McHardy struct ifmap k_map; 10670157f60cSPatrick McHardy 1068d314774cSStephen Hemminger if (!ops->ndo_set_config) { 10690157f60cSPatrick McHardy err = -EOPNOTSUPP; 10700157f60cSPatrick McHardy goto errout; 10710157f60cSPatrick McHardy } 10720157f60cSPatrick McHardy 10730157f60cSPatrick McHardy if (!netif_device_present(dev)) { 10740157f60cSPatrick McHardy err = -ENODEV; 10750157f60cSPatrick McHardy goto errout; 10760157f60cSPatrick McHardy } 10770157f60cSPatrick McHardy 10780157f60cSPatrick McHardy u_map = nla_data(tb[IFLA_MAP]); 10790157f60cSPatrick McHardy k_map.mem_start = (unsigned long) u_map->mem_start; 10800157f60cSPatrick McHardy k_map.mem_end = (unsigned long) u_map->mem_end; 10810157f60cSPatrick McHardy k_map.base_addr = (unsigned short) u_map->base_addr; 10820157f60cSPatrick McHardy k_map.irq = (unsigned char) u_map->irq; 10830157f60cSPatrick McHardy k_map.dma = (unsigned char) u_map->dma; 10840157f60cSPatrick McHardy k_map.port = (unsigned char) u_map->port; 10850157f60cSPatrick McHardy 1086d314774cSStephen Hemminger err = ops->ndo_set_config(dev, &k_map); 10870157f60cSPatrick McHardy if (err < 0) 10880157f60cSPatrick McHardy goto errout; 10890157f60cSPatrick McHardy 10900157f60cSPatrick McHardy modified = 1; 10910157f60cSPatrick McHardy } 10920157f60cSPatrick McHardy 10930157f60cSPatrick McHardy if (tb[IFLA_ADDRESS]) { 10940157f60cSPatrick McHardy struct sockaddr *sa; 10950157f60cSPatrick McHardy int len; 10960157f60cSPatrick McHardy 1097d314774cSStephen Hemminger if (!ops->ndo_set_mac_address) { 10980157f60cSPatrick McHardy err = -EOPNOTSUPP; 10990157f60cSPatrick McHardy goto errout; 11000157f60cSPatrick McHardy } 11010157f60cSPatrick McHardy 11020157f60cSPatrick McHardy if (!netif_device_present(dev)) { 11030157f60cSPatrick McHardy err = -ENODEV; 11040157f60cSPatrick McHardy goto errout; 11050157f60cSPatrick McHardy } 11060157f60cSPatrick McHardy 11070157f60cSPatrick McHardy len = sizeof(sa_family_t) + dev->addr_len; 11080157f60cSPatrick McHardy sa = kmalloc(len, GFP_KERNEL); 11090157f60cSPatrick McHardy if (!sa) { 11100157f60cSPatrick McHardy err = -ENOMEM; 11110157f60cSPatrick McHardy goto errout; 11120157f60cSPatrick McHardy } 11130157f60cSPatrick McHardy sa->sa_family = dev->type; 11140157f60cSPatrick McHardy memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]), 11150157f60cSPatrick McHardy dev->addr_len); 1116d314774cSStephen Hemminger err = ops->ndo_set_mac_address(dev, sa); 11170157f60cSPatrick McHardy kfree(sa); 11180157f60cSPatrick McHardy if (err) 11190157f60cSPatrick McHardy goto errout; 11200157f60cSPatrick McHardy send_addr_notify = 1; 11210157f60cSPatrick McHardy modified = 1; 11220157f60cSPatrick McHardy } 11230157f60cSPatrick McHardy 11240157f60cSPatrick McHardy if (tb[IFLA_MTU]) { 11250157f60cSPatrick McHardy err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU])); 11260157f60cSPatrick McHardy if (err < 0) 11270157f60cSPatrick McHardy goto errout; 11280157f60cSPatrick McHardy modified = 1; 11290157f60cSPatrick McHardy } 11300157f60cSPatrick McHardy 11310157f60cSPatrick McHardy /* 11320157f60cSPatrick McHardy * Interface selected by interface index but interface 11330157f60cSPatrick McHardy * name provided implies that a name change has been 11340157f60cSPatrick McHardy * requested. 11350157f60cSPatrick McHardy */ 11360157f60cSPatrick McHardy if (ifm->ifi_index > 0 && ifname[0]) { 11370157f60cSPatrick McHardy err = dev_change_name(dev, ifname); 11380157f60cSPatrick McHardy if (err < 0) 11390157f60cSPatrick McHardy goto errout; 11400157f60cSPatrick McHardy modified = 1; 11410157f60cSPatrick McHardy } 11420157f60cSPatrick McHardy 11430b815a1aSStephen Hemminger if (tb[IFLA_IFALIAS]) { 11440b815a1aSStephen Hemminger err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]), 11450b815a1aSStephen Hemminger nla_len(tb[IFLA_IFALIAS])); 11460b815a1aSStephen Hemminger if (err < 0) 11470b815a1aSStephen Hemminger goto errout; 11480b815a1aSStephen Hemminger modified = 1; 11490b815a1aSStephen Hemminger } 11500b815a1aSStephen Hemminger 11510157f60cSPatrick McHardy if (tb[IFLA_BROADCAST]) { 11520157f60cSPatrick McHardy nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len); 11530157f60cSPatrick McHardy send_addr_notify = 1; 11540157f60cSPatrick McHardy } 11550157f60cSPatrick McHardy 11560157f60cSPatrick McHardy if (ifm->ifi_flags || ifm->ifi_change) { 11573729d502SPatrick McHardy err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); 11585f9021cfSJohannes Berg if (err < 0) 11595f9021cfSJohannes Berg goto errout; 11600157f60cSPatrick McHardy } 11610157f60cSPatrick McHardy 116293b2d4a2SDavid S. Miller if (tb[IFLA_TXQLEN]) 11630157f60cSPatrick McHardy dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); 11640157f60cSPatrick McHardy 11650157f60cSPatrick McHardy if (tb[IFLA_OPERSTATE]) 116693b2d4a2SDavid S. Miller set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); 11670157f60cSPatrick McHardy 11680157f60cSPatrick McHardy if (tb[IFLA_LINKMODE]) { 11690157f60cSPatrick McHardy write_lock_bh(&dev_base_lock); 11700157f60cSPatrick McHardy dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); 117193b2d4a2SDavid S. Miller write_unlock_bh(&dev_base_lock); 11720157f60cSPatrick McHardy } 11730157f60cSPatrick McHardy 1174c02db8c6SChris Wright if (tb[IFLA_VFINFO_LIST]) { 1175c02db8c6SChris Wright struct nlattr *attr; 1176c02db8c6SChris Wright int rem; 1177c02db8c6SChris Wright nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) { 1178253683bbSDavid Howells if (nla_type(attr) != IFLA_VF_INFO) { 1179253683bbSDavid Howells err = -EINVAL; 1180c02db8c6SChris Wright goto errout; 1181253683bbSDavid Howells } 1182c02db8c6SChris Wright err = do_setvfinfo(dev, attr); 1183ebc08a6fSWilliams, Mitch A if (err < 0) 1184ebc08a6fSWilliams, Mitch A goto errout; 1185ebc08a6fSWilliams, Mitch A modified = 1; 1186ebc08a6fSWilliams, Mitch A } 1187ebc08a6fSWilliams, Mitch A } 11880157f60cSPatrick McHardy err = 0; 11890157f60cSPatrick McHardy 119057b61080SScott Feldman if (tb[IFLA_VF_PORTS]) { 119157b61080SScott Feldman struct nlattr *port[IFLA_PORT_MAX+1]; 119257b61080SScott Feldman struct nlattr *attr; 119357b61080SScott Feldman int vf; 119457b61080SScott Feldman int rem; 119557b61080SScott Feldman 119657b61080SScott Feldman err = -EOPNOTSUPP; 119757b61080SScott Feldman if (!ops->ndo_set_vf_port) 119857b61080SScott Feldman goto errout; 119957b61080SScott Feldman 120057b61080SScott Feldman nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) { 120157b61080SScott Feldman if (nla_type(attr) != IFLA_VF_PORT) 120257b61080SScott Feldman continue; 120357b61080SScott Feldman err = nla_parse_nested(port, IFLA_PORT_MAX, 120457b61080SScott Feldman attr, ifla_port_policy); 120557b61080SScott Feldman if (err < 0) 120657b61080SScott Feldman goto errout; 120757b61080SScott Feldman if (!port[IFLA_PORT_VF]) { 120857b61080SScott Feldman err = -EOPNOTSUPP; 120957b61080SScott Feldman goto errout; 121057b61080SScott Feldman } 121157b61080SScott Feldman vf = nla_get_u32(port[IFLA_PORT_VF]); 121257b61080SScott Feldman err = ops->ndo_set_vf_port(dev, vf, port); 121357b61080SScott Feldman if (err < 0) 121457b61080SScott Feldman goto errout; 121557b61080SScott Feldman modified = 1; 121657b61080SScott Feldman } 121757b61080SScott Feldman } 121857b61080SScott Feldman err = 0; 121957b61080SScott Feldman 122057b61080SScott Feldman if (tb[IFLA_PORT_SELF]) { 122157b61080SScott Feldman struct nlattr *port[IFLA_PORT_MAX+1]; 122257b61080SScott Feldman 122357b61080SScott Feldman err = nla_parse_nested(port, IFLA_PORT_MAX, 122457b61080SScott Feldman tb[IFLA_PORT_SELF], ifla_port_policy); 122557b61080SScott Feldman if (err < 0) 122657b61080SScott Feldman goto errout; 122757b61080SScott Feldman 122857b61080SScott Feldman err = -EOPNOTSUPP; 122957b61080SScott Feldman if (ops->ndo_set_vf_port) 123057b61080SScott Feldman err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port); 123157b61080SScott Feldman if (err < 0) 123257b61080SScott Feldman goto errout; 123357b61080SScott Feldman modified = 1; 123457b61080SScott Feldman } 123557b61080SScott Feldman err = 0; 123657b61080SScott Feldman 12370157f60cSPatrick McHardy errout: 12380157f60cSPatrick McHardy if (err < 0 && modified && net_ratelimit()) 12390157f60cSPatrick McHardy printk(KERN_WARNING "A link change request failed with " 12400157f60cSPatrick McHardy "some changes comitted already. Interface %s may " 12410157f60cSPatrick McHardy "have been left with an inconsistent configuration, " 12420157f60cSPatrick McHardy "please check.\n", dev->name); 12430157f60cSPatrick McHardy 12440157f60cSPatrick McHardy if (send_addr_notify) 12450157f60cSPatrick McHardy call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); 12460157f60cSPatrick McHardy return err; 12470157f60cSPatrick McHardy } 12480157f60cSPatrick McHardy 1249da5e0494SThomas Graf static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) 1250da5e0494SThomas Graf { 12513b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 1252da5e0494SThomas Graf struct ifinfomsg *ifm; 1253da5e0494SThomas Graf struct net_device *dev; 12540157f60cSPatrick McHardy int err; 1255da5e0494SThomas Graf struct nlattr *tb[IFLA_MAX+1]; 12561da177e4SLinus Torvalds char ifname[IFNAMSIZ]; 12571da177e4SLinus Torvalds 1258da5e0494SThomas Graf err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); 1259da5e0494SThomas Graf if (err < 0) 1260da5e0494SThomas Graf goto errout; 12611da177e4SLinus Torvalds 12625176f91eSThomas Graf if (tb[IFLA_IFNAME]) 12635176f91eSThomas Graf nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 126478e5b891SPatrick McHardy else 126578e5b891SPatrick McHardy ifname[0] = '\0'; 12661da177e4SLinus Torvalds 12671da177e4SLinus Torvalds err = -EINVAL; 1268da5e0494SThomas Graf ifm = nlmsg_data(nlh); 126951055be8SPatrick McHardy if (ifm->ifi_index > 0) 1270a3d12891SEric Dumazet dev = __dev_get_by_index(net, ifm->ifi_index); 1271da5e0494SThomas Graf else if (tb[IFLA_IFNAME]) 1272a3d12891SEric Dumazet dev = __dev_get_by_name(net, ifname); 1273da5e0494SThomas Graf else 1274da5e0494SThomas Graf goto errout; 12751da177e4SLinus Torvalds 1276da5e0494SThomas Graf if (dev == NULL) { 1277da5e0494SThomas Graf err = -ENODEV; 1278da5e0494SThomas Graf goto errout; 1279da5e0494SThomas Graf } 12801da177e4SLinus Torvalds 1281e0d087afSEric Dumazet err = validate_linkmsg(dev, tb); 1282e0d087afSEric Dumazet if (err < 0) 1283a3d12891SEric Dumazet goto errout; 1284da5e0494SThomas Graf 128538f7b870SPatrick McHardy err = do_setlink(dev, ifm, tb, ifname, 0); 1286da5e0494SThomas Graf errout: 12871da177e4SLinus Torvalds return err; 12881da177e4SLinus Torvalds } 12891da177e4SLinus Torvalds 129038f7b870SPatrick McHardy static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) 129138f7b870SPatrick McHardy { 12923b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 129338f7b870SPatrick McHardy const struct rtnl_link_ops *ops; 129438f7b870SPatrick McHardy struct net_device *dev; 129538f7b870SPatrick McHardy struct ifinfomsg *ifm; 129638f7b870SPatrick McHardy char ifname[IFNAMSIZ]; 129738f7b870SPatrick McHardy struct nlattr *tb[IFLA_MAX+1]; 129838f7b870SPatrick McHardy int err; 129938f7b870SPatrick McHardy 130038f7b870SPatrick McHardy err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); 130138f7b870SPatrick McHardy if (err < 0) 130238f7b870SPatrick McHardy return err; 130338f7b870SPatrick McHardy 130438f7b870SPatrick McHardy if (tb[IFLA_IFNAME]) 130538f7b870SPatrick McHardy nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 130638f7b870SPatrick McHardy 130738f7b870SPatrick McHardy ifm = nlmsg_data(nlh); 130838f7b870SPatrick McHardy if (ifm->ifi_index > 0) 1309881d966bSEric W. Biederman dev = __dev_get_by_index(net, ifm->ifi_index); 131038f7b870SPatrick McHardy else if (tb[IFLA_IFNAME]) 1311881d966bSEric W. Biederman dev = __dev_get_by_name(net, ifname); 131238f7b870SPatrick McHardy else 131338f7b870SPatrick McHardy return -EINVAL; 131438f7b870SPatrick McHardy 131538f7b870SPatrick McHardy if (!dev) 131638f7b870SPatrick McHardy return -ENODEV; 131738f7b870SPatrick McHardy 131838f7b870SPatrick McHardy ops = dev->rtnl_link_ops; 131938f7b870SPatrick McHardy if (!ops) 132038f7b870SPatrick McHardy return -EOPNOTSUPP; 132138f7b870SPatrick McHardy 132223289a37SEric Dumazet ops->dellink(dev, NULL); 132338f7b870SPatrick McHardy return 0; 132438f7b870SPatrick McHardy } 132538f7b870SPatrick McHardy 13263729d502SPatrick McHardy int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm) 13273729d502SPatrick McHardy { 13283729d502SPatrick McHardy unsigned int old_flags; 13293729d502SPatrick McHardy int err; 13303729d502SPatrick McHardy 13313729d502SPatrick McHardy old_flags = dev->flags; 13323729d502SPatrick McHardy if (ifm && (ifm->ifi_flags || ifm->ifi_change)) { 13333729d502SPatrick McHardy err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); 13343729d502SPatrick McHardy if (err < 0) 13353729d502SPatrick McHardy return err; 13363729d502SPatrick McHardy } 13373729d502SPatrick McHardy 13383729d502SPatrick McHardy dev->rtnl_link_state = RTNL_LINK_INITIALIZED; 13393729d502SPatrick McHardy rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U); 13403729d502SPatrick McHardy 13413729d502SPatrick McHardy __dev_notify_flags(dev, old_flags); 13423729d502SPatrick McHardy return 0; 13433729d502SPatrick McHardy } 13443729d502SPatrick McHardy EXPORT_SYMBOL(rtnl_configure_link); 13453729d502SPatrick McHardy 134681adee47SEric W. Biederman struct net_device *rtnl_create_link(struct net *src_net, struct net *net, 134781adee47SEric W. Biederman char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[]) 1348e7199288SPavel Emelianov { 1349e7199288SPavel Emelianov int err; 1350e7199288SPavel Emelianov struct net_device *dev; 13512e59af3dSEric Dumazet unsigned int num_queues = 1; 13522e59af3dSEric Dumazet unsigned int real_num_queues = 1; 1353e7199288SPavel Emelianov 13542e59af3dSEric Dumazet if (ops->get_tx_queues) { 135581adee47SEric W. Biederman err = ops->get_tx_queues(src_net, tb, &num_queues, 1356e0d087afSEric Dumazet &real_num_queues); 13572e59af3dSEric Dumazet if (err) 13582e59af3dSEric Dumazet goto err; 13592e59af3dSEric Dumazet } 1360e7199288SPavel Emelianov err = -ENOMEM; 13612e59af3dSEric Dumazet dev = alloc_netdev_mq(ops->priv_size, ifname, ops->setup, num_queues); 1362e7199288SPavel Emelianov if (!dev) 1363e7199288SPavel Emelianov goto err; 1364e7199288SPavel Emelianov 136581adee47SEric W. Biederman dev_net_set(dev, net); 136681adee47SEric W. Biederman dev->rtnl_link_ops = ops; 13673729d502SPatrick McHardy dev->rtnl_link_state = RTNL_LINK_INITIALIZING; 13682e59af3dSEric Dumazet dev->real_num_tx_queues = real_num_queues; 136981adee47SEric W. Biederman 1370e7199288SPavel Emelianov if (strchr(dev->name, '%')) { 1371e7199288SPavel Emelianov err = dev_alloc_name(dev, dev->name); 1372e7199288SPavel Emelianov if (err < 0) 1373e7199288SPavel Emelianov goto err_free; 1374e7199288SPavel Emelianov } 1375e7199288SPavel Emelianov 1376e7199288SPavel Emelianov if (tb[IFLA_MTU]) 1377e7199288SPavel Emelianov dev->mtu = nla_get_u32(tb[IFLA_MTU]); 1378e7199288SPavel Emelianov if (tb[IFLA_ADDRESS]) 1379e7199288SPavel Emelianov memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]), 1380e7199288SPavel Emelianov nla_len(tb[IFLA_ADDRESS])); 1381e7199288SPavel Emelianov if (tb[IFLA_BROADCAST]) 1382e7199288SPavel Emelianov memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]), 1383e7199288SPavel Emelianov nla_len(tb[IFLA_BROADCAST])); 1384e7199288SPavel Emelianov if (tb[IFLA_TXQLEN]) 1385e7199288SPavel Emelianov dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); 1386e7199288SPavel Emelianov if (tb[IFLA_OPERSTATE]) 138793b2d4a2SDavid S. Miller set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); 1388e7199288SPavel Emelianov if (tb[IFLA_LINKMODE]) 1389e7199288SPavel Emelianov dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); 1390e7199288SPavel Emelianov 1391e7199288SPavel Emelianov return dev; 1392e7199288SPavel Emelianov 1393e7199288SPavel Emelianov err_free: 1394e7199288SPavel Emelianov free_netdev(dev); 1395e7199288SPavel Emelianov err: 1396e7199288SPavel Emelianov return ERR_PTR(err); 1397e7199288SPavel Emelianov } 1398e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_create_link); 1399e7199288SPavel Emelianov 140038f7b870SPatrick McHardy static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) 140138f7b870SPatrick McHardy { 14023b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 140338f7b870SPatrick McHardy const struct rtnl_link_ops *ops; 140438f7b870SPatrick McHardy struct net_device *dev; 140538f7b870SPatrick McHardy struct ifinfomsg *ifm; 140638f7b870SPatrick McHardy char kind[MODULE_NAME_LEN]; 140738f7b870SPatrick McHardy char ifname[IFNAMSIZ]; 140838f7b870SPatrick McHardy struct nlattr *tb[IFLA_MAX+1]; 140938f7b870SPatrick McHardy struct nlattr *linkinfo[IFLA_INFO_MAX+1]; 141038f7b870SPatrick McHardy int err; 141138f7b870SPatrick McHardy 141295a5afcaSJohannes Berg #ifdef CONFIG_MODULES 141338f7b870SPatrick McHardy replay: 14148072f085SThomas Graf #endif 141538f7b870SPatrick McHardy err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); 141638f7b870SPatrick McHardy if (err < 0) 141738f7b870SPatrick McHardy return err; 141838f7b870SPatrick McHardy 141938f7b870SPatrick McHardy if (tb[IFLA_IFNAME]) 142038f7b870SPatrick McHardy nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 142138f7b870SPatrick McHardy else 142238f7b870SPatrick McHardy ifname[0] = '\0'; 142338f7b870SPatrick McHardy 142438f7b870SPatrick McHardy ifm = nlmsg_data(nlh); 142538f7b870SPatrick McHardy if (ifm->ifi_index > 0) 1426881d966bSEric W. Biederman dev = __dev_get_by_index(net, ifm->ifi_index); 142738f7b870SPatrick McHardy else if (ifname[0]) 1428881d966bSEric W. Biederman dev = __dev_get_by_name(net, ifname); 142938f7b870SPatrick McHardy else 143038f7b870SPatrick McHardy dev = NULL; 143138f7b870SPatrick McHardy 1432e0d087afSEric Dumazet err = validate_linkmsg(dev, tb); 1433e0d087afSEric Dumazet if (err < 0) 14341840bb13SThomas Graf return err; 14351840bb13SThomas Graf 143638f7b870SPatrick McHardy if (tb[IFLA_LINKINFO]) { 143738f7b870SPatrick McHardy err = nla_parse_nested(linkinfo, IFLA_INFO_MAX, 143838f7b870SPatrick McHardy tb[IFLA_LINKINFO], ifla_info_policy); 143938f7b870SPatrick McHardy if (err < 0) 144038f7b870SPatrick McHardy return err; 144138f7b870SPatrick McHardy } else 144238f7b870SPatrick McHardy memset(linkinfo, 0, sizeof(linkinfo)); 144338f7b870SPatrick McHardy 144438f7b870SPatrick McHardy if (linkinfo[IFLA_INFO_KIND]) { 144538f7b870SPatrick McHardy nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind)); 144638f7b870SPatrick McHardy ops = rtnl_link_ops_get(kind); 144738f7b870SPatrick McHardy } else { 144838f7b870SPatrick McHardy kind[0] = '\0'; 144938f7b870SPatrick McHardy ops = NULL; 145038f7b870SPatrick McHardy } 145138f7b870SPatrick McHardy 145238f7b870SPatrick McHardy if (1) { 145338f7b870SPatrick McHardy struct nlattr *attr[ops ? ops->maxtype + 1 : 0], **data = NULL; 145481adee47SEric W. Biederman struct net *dest_net; 145538f7b870SPatrick McHardy 145638f7b870SPatrick McHardy if (ops) { 145738f7b870SPatrick McHardy if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) { 145838f7b870SPatrick McHardy err = nla_parse_nested(attr, ops->maxtype, 145938f7b870SPatrick McHardy linkinfo[IFLA_INFO_DATA], 146038f7b870SPatrick McHardy ops->policy); 146138f7b870SPatrick McHardy if (err < 0) 146238f7b870SPatrick McHardy return err; 146338f7b870SPatrick McHardy data = attr; 146438f7b870SPatrick McHardy } 146538f7b870SPatrick McHardy if (ops->validate) { 146638f7b870SPatrick McHardy err = ops->validate(tb, data); 146738f7b870SPatrick McHardy if (err < 0) 146838f7b870SPatrick McHardy return err; 146938f7b870SPatrick McHardy } 147038f7b870SPatrick McHardy } 147138f7b870SPatrick McHardy 147238f7b870SPatrick McHardy if (dev) { 147338f7b870SPatrick McHardy int modified = 0; 147438f7b870SPatrick McHardy 147538f7b870SPatrick McHardy if (nlh->nlmsg_flags & NLM_F_EXCL) 147638f7b870SPatrick McHardy return -EEXIST; 147738f7b870SPatrick McHardy if (nlh->nlmsg_flags & NLM_F_REPLACE) 147838f7b870SPatrick McHardy return -EOPNOTSUPP; 147938f7b870SPatrick McHardy 148038f7b870SPatrick McHardy if (linkinfo[IFLA_INFO_DATA]) { 148138f7b870SPatrick McHardy if (!ops || ops != dev->rtnl_link_ops || 148238f7b870SPatrick McHardy !ops->changelink) 148338f7b870SPatrick McHardy return -EOPNOTSUPP; 148438f7b870SPatrick McHardy 148538f7b870SPatrick McHardy err = ops->changelink(dev, tb, data); 148638f7b870SPatrick McHardy if (err < 0) 148738f7b870SPatrick McHardy return err; 148838f7b870SPatrick McHardy modified = 1; 148938f7b870SPatrick McHardy } 149038f7b870SPatrick McHardy 149138f7b870SPatrick McHardy return do_setlink(dev, ifm, tb, ifname, modified); 149238f7b870SPatrick McHardy } 149338f7b870SPatrick McHardy 149438f7b870SPatrick McHardy if (!(nlh->nlmsg_flags & NLM_F_CREATE)) 149538f7b870SPatrick McHardy return -ENODEV; 149638f7b870SPatrick McHardy 14973729d502SPatrick McHardy if (ifm->ifi_index) 149838f7b870SPatrick McHardy return -EOPNOTSUPP; 14990e06877cSPatrick McHardy if (tb[IFLA_MAP] || tb[IFLA_MASTER] || tb[IFLA_PROTINFO]) 150038f7b870SPatrick McHardy return -EOPNOTSUPP; 150138f7b870SPatrick McHardy 150238f7b870SPatrick McHardy if (!ops) { 150395a5afcaSJohannes Berg #ifdef CONFIG_MODULES 150438f7b870SPatrick McHardy if (kind[0]) { 150538f7b870SPatrick McHardy __rtnl_unlock(); 150638f7b870SPatrick McHardy request_module("rtnl-link-%s", kind); 150738f7b870SPatrick McHardy rtnl_lock(); 150838f7b870SPatrick McHardy ops = rtnl_link_ops_get(kind); 150938f7b870SPatrick McHardy if (ops) 151038f7b870SPatrick McHardy goto replay; 151138f7b870SPatrick McHardy } 151238f7b870SPatrick McHardy #endif 151338f7b870SPatrick McHardy return -EOPNOTSUPP; 151438f7b870SPatrick McHardy } 151538f7b870SPatrick McHardy 151638f7b870SPatrick McHardy if (!ifname[0]) 151738f7b870SPatrick McHardy snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind); 151838f7b870SPatrick McHardy 151981adee47SEric W. Biederman dest_net = rtnl_link_get_net(net, tb); 152081adee47SEric W. Biederman dev = rtnl_create_link(net, dest_net, ifname, ops, tb); 152138f7b870SPatrick McHardy 1522e7199288SPavel Emelianov if (IS_ERR(dev)) 1523e7199288SPavel Emelianov err = PTR_ERR(dev); 1524e7199288SPavel Emelianov else if (ops->newlink) 152581adee47SEric W. Biederman err = ops->newlink(net, dev, tb, data); 15262d85cba2SPatrick McHardy else 15272d85cba2SPatrick McHardy err = register_netdevice(dev); 152880032cffSDan Carpenter 152980032cffSDan Carpenter if (err < 0 && !IS_ERR(dev)) 153038f7b870SPatrick McHardy free_netdev(dev); 153180032cffSDan Carpenter if (err < 0) 15323729d502SPatrick McHardy goto out; 153381adee47SEric W. Biederman 15343729d502SPatrick McHardy err = rtnl_configure_link(dev, ifm); 15353729d502SPatrick McHardy if (err < 0) 15363729d502SPatrick McHardy unregister_netdevice(dev); 15373729d502SPatrick McHardy out: 153881adee47SEric W. Biederman put_net(dest_net); 153938f7b870SPatrick McHardy return err; 154038f7b870SPatrick McHardy } 154138f7b870SPatrick McHardy } 154238f7b870SPatrick McHardy 1543b60c5115SThomas Graf static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) 1544711e2c33SJean Tourrilhes { 15453b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 1546b60c5115SThomas Graf struct ifinfomsg *ifm; 1547a3d12891SEric Dumazet char ifname[IFNAMSIZ]; 1548b60c5115SThomas Graf struct nlattr *tb[IFLA_MAX+1]; 1549b60c5115SThomas Graf struct net_device *dev = NULL; 1550b60c5115SThomas Graf struct sk_buff *nskb; 1551339bf98fSThomas Graf int err; 1552711e2c33SJean Tourrilhes 1553b60c5115SThomas Graf err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy); 1554b60c5115SThomas Graf if (err < 0) 15559918f230SEric Sesterhenn return err; 1556b60c5115SThomas Graf 1557a3d12891SEric Dumazet if (tb[IFLA_IFNAME]) 1558a3d12891SEric Dumazet nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 1559a3d12891SEric Dumazet 1560b60c5115SThomas Graf ifm = nlmsg_data(nlh); 1561a3d12891SEric Dumazet if (ifm->ifi_index > 0) 1562a3d12891SEric Dumazet dev = __dev_get_by_index(net, ifm->ifi_index); 1563a3d12891SEric Dumazet else if (tb[IFLA_IFNAME]) 1564a3d12891SEric Dumazet dev = __dev_get_by_name(net, ifname); 1565a3d12891SEric Dumazet else 1566b60c5115SThomas Graf return -EINVAL; 1567b60c5115SThomas Graf 1568a3d12891SEric Dumazet if (dev == NULL) 1569a3d12891SEric Dumazet return -ENODEV; 1570a3d12891SEric Dumazet 157138f7b870SPatrick McHardy nskb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL); 1572a3d12891SEric Dumazet if (nskb == NULL) 1573a3d12891SEric Dumazet return -ENOBUFS; 1574711e2c33SJean Tourrilhes 1575575c3e2aSPatrick McHardy err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid, 1576575c3e2aSPatrick McHardy nlh->nlmsg_seq, 0, 0); 157726932566SPatrick McHardy if (err < 0) { 157826932566SPatrick McHardy /* -EMSGSIZE implies BUG in if_nlmsg_size */ 157926932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 158026932566SPatrick McHardy kfree_skb(nskb); 1581a3d12891SEric Dumazet } else 158297c53cacSDenis V. Lunev err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid); 1583b60c5115SThomas Graf 1584711e2c33SJean Tourrilhes return err; 1585711e2c33SJean Tourrilhes } 1586711e2c33SJean Tourrilhes 158742bad1daSAdrian Bunk static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb) 15881da177e4SLinus Torvalds { 15891da177e4SLinus Torvalds int idx; 15901da177e4SLinus Torvalds int s_idx = cb->family; 15911da177e4SLinus Torvalds 15921da177e4SLinus Torvalds if (s_idx == 0) 15931da177e4SLinus Torvalds s_idx = 1; 159425239ceeSPatrick McHardy for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) { 15951da177e4SLinus Torvalds int type = cb->nlh->nlmsg_type-RTM_BASE; 15961da177e4SLinus Torvalds if (idx < s_idx || idx == PF_PACKET) 15971da177e4SLinus Torvalds continue; 1598e2849863SThomas Graf if (rtnl_msg_handlers[idx] == NULL || 1599e2849863SThomas Graf rtnl_msg_handlers[idx][type].dumpit == NULL) 16001da177e4SLinus Torvalds continue; 16011da177e4SLinus Torvalds if (idx > s_idx) 16021da177e4SLinus Torvalds memset(&cb->args[0], 0, sizeof(cb->args)); 1603e2849863SThomas Graf if (rtnl_msg_handlers[idx][type].dumpit(skb, cb)) 16041da177e4SLinus Torvalds break; 16051da177e4SLinus Torvalds } 16061da177e4SLinus Torvalds cb->family = idx; 16071da177e4SLinus Torvalds 16081da177e4SLinus Torvalds return skb->len; 16091da177e4SLinus Torvalds } 16101da177e4SLinus Torvalds 16111da177e4SLinus Torvalds void rtmsg_ifinfo(int type, struct net_device *dev, unsigned change) 16121da177e4SLinus Torvalds { 1613c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 16141da177e4SLinus Torvalds struct sk_buff *skb; 16150ec6d3f4SThomas Graf int err = -ENOBUFS; 16161da177e4SLinus Torvalds 161738f7b870SPatrick McHardy skb = nlmsg_new(if_nlmsg_size(dev), GFP_KERNEL); 16180ec6d3f4SThomas Graf if (skb == NULL) 16190ec6d3f4SThomas Graf goto errout; 16201da177e4SLinus Torvalds 1621575c3e2aSPatrick McHardy err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0); 162226932566SPatrick McHardy if (err < 0) { 162326932566SPatrick McHardy /* -EMSGSIZE implies BUG in if_nlmsg_size() */ 162426932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 162526932566SPatrick McHardy kfree_skb(skb); 162626932566SPatrick McHardy goto errout; 162726932566SPatrick McHardy } 16281ce85fe4SPablo Neira Ayuso rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_KERNEL); 16291ce85fe4SPablo Neira Ayuso return; 16300ec6d3f4SThomas Graf errout: 16310ec6d3f4SThomas Graf if (err < 0) 16324b3da706SEric W. Biederman rtnl_set_sk_err(net, RTNLGRP_LINK, err); 16331da177e4SLinus Torvalds } 16341da177e4SLinus Torvalds 16351da177e4SLinus Torvalds /* Protected by RTNL sempahore. */ 16361da177e4SLinus Torvalds static struct rtattr **rta_buf; 16371da177e4SLinus Torvalds static int rtattr_max; 16381da177e4SLinus Torvalds 16391da177e4SLinus Torvalds /* Process one rtnetlink message. */ 16401da177e4SLinus Torvalds 16411d00a4ebSThomas Graf static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) 16421da177e4SLinus Torvalds { 16433b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 1644e2849863SThomas Graf rtnl_doit_func doit; 16451da177e4SLinus Torvalds int sz_idx, kind; 16461da177e4SLinus Torvalds int min_len; 16471da177e4SLinus Torvalds int family; 16481da177e4SLinus Torvalds int type; 16491c2d670fSPatrick McHardy int err; 16501da177e4SLinus Torvalds 16511da177e4SLinus Torvalds type = nlh->nlmsg_type; 16521da177e4SLinus Torvalds if (type > RTM_MAX) 1653038890feSThomas Graf return -EOPNOTSUPP; 16541da177e4SLinus Torvalds 16551da177e4SLinus Torvalds type -= RTM_BASE; 16561da177e4SLinus Torvalds 16571da177e4SLinus Torvalds /* All the messages must have at least 1 byte length */ 16581da177e4SLinus Torvalds if (nlh->nlmsg_len < NLMSG_LENGTH(sizeof(struct rtgenmsg))) 16591da177e4SLinus Torvalds return 0; 16601da177e4SLinus Torvalds 16611da177e4SLinus Torvalds family = ((struct rtgenmsg *)NLMSG_DATA(nlh))->rtgen_family; 16621da177e4SLinus Torvalds sz_idx = type>>2; 16631da177e4SLinus Torvalds kind = type&3; 16641da177e4SLinus Torvalds 16651d00a4ebSThomas Graf if (kind != 2 && security_netlink_recv(skb, CAP_NET_ADMIN)) 16661d00a4ebSThomas Graf return -EPERM; 16671da177e4SLinus Torvalds 16681da177e4SLinus Torvalds if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) { 166997c53cacSDenis V. Lunev struct sock *rtnl; 1670e2849863SThomas Graf rtnl_dumpit_func dumpit; 16711da177e4SLinus Torvalds 1672e2849863SThomas Graf dumpit = rtnl_get_dumpit(family, type); 1673e2849863SThomas Graf if (dumpit == NULL) 1674038890feSThomas Graf return -EOPNOTSUPP; 16751da177e4SLinus Torvalds 16761c2d670fSPatrick McHardy __rtnl_unlock(); 167797c53cacSDenis V. Lunev rtnl = net->rtnl; 16781c2d670fSPatrick McHardy err = netlink_dump_start(rtnl, skb, nlh, dumpit, NULL); 16791c2d670fSPatrick McHardy rtnl_lock(); 16801c2d670fSPatrick McHardy return err; 16811da177e4SLinus Torvalds } 16821da177e4SLinus Torvalds 16831da177e4SLinus Torvalds memset(rta_buf, 0, (rtattr_max * sizeof(struct rtattr *))); 16841da177e4SLinus Torvalds 16851da177e4SLinus Torvalds min_len = rtm_min[sz_idx]; 16861da177e4SLinus Torvalds if (nlh->nlmsg_len < min_len) 16871d00a4ebSThomas Graf return -EINVAL; 16881da177e4SLinus Torvalds 16891da177e4SLinus Torvalds if (nlh->nlmsg_len > min_len) { 16901da177e4SLinus Torvalds int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len); 16911da177e4SLinus Torvalds struct rtattr *attr = (void *)nlh + NLMSG_ALIGN(min_len); 16921da177e4SLinus Torvalds 16931da177e4SLinus Torvalds while (RTA_OK(attr, attrlen)) { 16941da177e4SLinus Torvalds unsigned flavor = attr->rta_type; 16951da177e4SLinus Torvalds if (flavor) { 16961da177e4SLinus Torvalds if (flavor > rta_max[sz_idx]) 16971d00a4ebSThomas Graf return -EINVAL; 16981da177e4SLinus Torvalds rta_buf[flavor-1] = attr; 16991da177e4SLinus Torvalds } 17001da177e4SLinus Torvalds attr = RTA_NEXT(attr, attrlen); 17011da177e4SLinus Torvalds } 17021da177e4SLinus Torvalds } 17031da177e4SLinus Torvalds 1704e2849863SThomas Graf doit = rtnl_get_doit(family, type); 1705e2849863SThomas Graf if (doit == NULL) 1706038890feSThomas Graf return -EOPNOTSUPP; 17071da177e4SLinus Torvalds 17081d00a4ebSThomas Graf return doit(skb, nlh, (void *)&rta_buf[0]); 17091da177e4SLinus Torvalds } 17101da177e4SLinus Torvalds 1711cd40b7d3SDenis V. Lunev static void rtnetlink_rcv(struct sk_buff *skb) 17121da177e4SLinus Torvalds { 17131536cc0dSDenis V. Lunev rtnl_lock(); 1714cd40b7d3SDenis V. Lunev netlink_rcv_skb(skb, &rtnetlink_rcv_msg); 17151536cc0dSDenis V. Lunev rtnl_unlock(); 17161da177e4SLinus Torvalds } 17171da177e4SLinus Torvalds 17181da177e4SLinus Torvalds static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr) 17191da177e4SLinus Torvalds { 17201da177e4SLinus Torvalds struct net_device *dev = ptr; 1721e9dc8653SEric W. Biederman 17221da177e4SLinus Torvalds switch (event) { 17231da177e4SLinus Torvalds case NETDEV_UP: 17241da177e4SLinus Torvalds case NETDEV_DOWN: 172510de05afSPatrick McHardy case NETDEV_PRE_UP: 1726d90a909eSEric W. Biederman case NETDEV_POST_INIT: 1727d90a909eSEric W. Biederman case NETDEV_REGISTER: 17281da177e4SLinus Torvalds case NETDEV_CHANGE: 1729755d0e77SPatrick McHardy case NETDEV_PRE_TYPE_CHANGE: 17301da177e4SLinus Torvalds case NETDEV_GOING_DOWN: 1731a2835763SPatrick McHardy case NETDEV_UNREGISTER: 1732d90a909eSEric W. Biederman case NETDEV_UNREGISTER_BATCH: 17331da177e4SLinus Torvalds break; 17341da177e4SLinus Torvalds default: 17351da177e4SLinus Torvalds rtmsg_ifinfo(RTM_NEWLINK, dev, 0); 17361da177e4SLinus Torvalds break; 17371da177e4SLinus Torvalds } 17381da177e4SLinus Torvalds return NOTIFY_DONE; 17391da177e4SLinus Torvalds } 17401da177e4SLinus Torvalds 17411da177e4SLinus Torvalds static struct notifier_block rtnetlink_dev_notifier = { 17421da177e4SLinus Torvalds .notifier_call = rtnetlink_event, 17431da177e4SLinus Torvalds }; 17441da177e4SLinus Torvalds 174597c53cacSDenis V. Lunev 17462c8c1e72SAlexey Dobriyan static int __net_init rtnetlink_net_init(struct net *net) 174797c53cacSDenis V. Lunev { 174897c53cacSDenis V. Lunev struct sock *sk; 174997c53cacSDenis V. Lunev sk = netlink_kernel_create(net, NETLINK_ROUTE, RTNLGRP_MAX, 175097c53cacSDenis V. Lunev rtnetlink_rcv, &rtnl_mutex, THIS_MODULE); 175197c53cacSDenis V. Lunev if (!sk) 175297c53cacSDenis V. Lunev return -ENOMEM; 175397c53cacSDenis V. Lunev net->rtnl = sk; 175497c53cacSDenis V. Lunev return 0; 175597c53cacSDenis V. Lunev } 175697c53cacSDenis V. Lunev 17572c8c1e72SAlexey Dobriyan static void __net_exit rtnetlink_net_exit(struct net *net) 175897c53cacSDenis V. Lunev { 1759b7c6ba6eSDenis V. Lunev netlink_kernel_release(net->rtnl); 176097c53cacSDenis V. Lunev net->rtnl = NULL; 176197c53cacSDenis V. Lunev } 176297c53cacSDenis V. Lunev 176397c53cacSDenis V. Lunev static struct pernet_operations rtnetlink_net_ops = { 176497c53cacSDenis V. Lunev .init = rtnetlink_net_init, 176597c53cacSDenis V. Lunev .exit = rtnetlink_net_exit, 176697c53cacSDenis V. Lunev }; 176797c53cacSDenis V. Lunev 17681da177e4SLinus Torvalds void __init rtnetlink_init(void) 17691da177e4SLinus Torvalds { 17701da177e4SLinus Torvalds int i; 17711da177e4SLinus Torvalds 17721da177e4SLinus Torvalds rtattr_max = 0; 17731da177e4SLinus Torvalds for (i = 0; i < ARRAY_SIZE(rta_max); i++) 17741da177e4SLinus Torvalds if (rta_max[i] > rtattr_max) 17751da177e4SLinus Torvalds rtattr_max = rta_max[i]; 17761da177e4SLinus Torvalds rta_buf = kmalloc(rtattr_max * sizeof(struct rtattr *), GFP_KERNEL); 17771da177e4SLinus Torvalds if (!rta_buf) 17781da177e4SLinus Torvalds panic("rtnetlink_init: cannot allocate rta_buf\n"); 17791da177e4SLinus Torvalds 178097c53cacSDenis V. Lunev if (register_pernet_subsys(&rtnetlink_net_ops)) 17811da177e4SLinus Torvalds panic("rtnetlink_init: cannot initialize rtnetlink\n"); 178297c53cacSDenis V. Lunev 17831da177e4SLinus Torvalds netlink_set_nonroot(NETLINK_ROUTE, NL_NONROOT_RECV); 17841da177e4SLinus Torvalds register_netdevice_notifier(&rtnetlink_dev_notifier); 1785340d17fcSThomas Graf 1786340d17fcSThomas Graf rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, rtnl_dump_ifinfo); 1787340d17fcSThomas Graf rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL); 178838f7b870SPatrick McHardy rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL); 178938f7b870SPatrick McHardy rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL); 1790687ad8ccSThomas Graf 1791687ad8ccSThomas Graf rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all); 1792687ad8ccSThomas Graf rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all); 17931da177e4SLinus Torvalds } 17941da177e4SLinus Torvalds 1795