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 19ee5d032fSJakub Kicinski #include <linux/bitops.h> 201da177e4SLinus Torvalds #include <linux/errno.h> 211da177e4SLinus Torvalds #include <linux/module.h> 221da177e4SLinus Torvalds #include <linux/types.h> 231da177e4SLinus Torvalds #include <linux/socket.h> 241da177e4SLinus Torvalds #include <linux/kernel.h> 251da177e4SLinus Torvalds #include <linux/timer.h> 261da177e4SLinus Torvalds #include <linux/string.h> 271da177e4SLinus Torvalds #include <linux/sockios.h> 281da177e4SLinus Torvalds #include <linux/net.h> 291da177e4SLinus Torvalds #include <linux/fcntl.h> 301da177e4SLinus Torvalds #include <linux/mm.h> 311da177e4SLinus Torvalds #include <linux/slab.h> 321da177e4SLinus Torvalds #include <linux/interrupt.h> 331da177e4SLinus Torvalds #include <linux/capability.h> 341da177e4SLinus Torvalds #include <linux/skbuff.h> 351da177e4SLinus Torvalds #include <linux/init.h> 361da177e4SLinus Torvalds #include <linux/security.h> 376756ae4bSStephen Hemminger #include <linux/mutex.h> 381823730fSThomas Graf #include <linux/if_addr.h> 3977162022SJohn Fastabend #include <linux/if_bridge.h> 40f6f6424bSJiri Pirko #include <linux/if_vlan.h> 41ebc08a6fSWilliams, Mitch A #include <linux/pci.h> 4277162022SJohn Fastabend #include <linux/etherdevice.h> 4358038695SMartin KaFai Lau #include <linux/bpf.h> 441da177e4SLinus Torvalds 457c0f6ba6SLinus Torvalds #include <linux/uaccess.h> 461da177e4SLinus Torvalds 471da177e4SLinus Torvalds #include <linux/inet.h> 481da177e4SLinus Torvalds #include <linux/netdevice.h> 4982f28412SJiri Pirko #include <net/switchdev.h> 501da177e4SLinus Torvalds #include <net/ip.h> 511da177e4SLinus Torvalds #include <net/protocol.h> 521da177e4SLinus Torvalds #include <net/arp.h> 531da177e4SLinus Torvalds #include <net/route.h> 541da177e4SLinus Torvalds #include <net/udp.h> 55ea697639SDaniel Borkmann #include <net/tcp.h> 561da177e4SLinus Torvalds #include <net/sock.h> 571da177e4SLinus Torvalds #include <net/pkt_sched.h> 5814c0b97dSThomas Graf #include <net/fib_rules.h> 59e2849863SThomas Graf #include <net/rtnetlink.h> 6030ffee84SJohannes Berg #include <net/net_namespace.h> 611da177e4SLinus Torvalds 62e0d087afSEric Dumazet struct rtnl_link { 63e2849863SThomas Graf rtnl_doit_func doit; 64e2849863SThomas Graf rtnl_dumpit_func dumpit; 65e2849863SThomas Graf }; 66e2849863SThomas Graf 676756ae4bSStephen Hemminger static DEFINE_MUTEX(rtnl_mutex); 681da177e4SLinus Torvalds 691da177e4SLinus Torvalds void rtnl_lock(void) 701da177e4SLinus Torvalds { 716756ae4bSStephen Hemminger mutex_lock(&rtnl_mutex); 721da177e4SLinus Torvalds } 73e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_lock); 741da177e4SLinus Torvalds 751b5c5493SEric Dumazet static struct sk_buff *defer_kfree_skb_list; 761b5c5493SEric Dumazet void rtnl_kfree_skbs(struct sk_buff *head, struct sk_buff *tail) 771b5c5493SEric Dumazet { 781b5c5493SEric Dumazet if (head && tail) { 791b5c5493SEric Dumazet tail->next = defer_kfree_skb_list; 801b5c5493SEric Dumazet defer_kfree_skb_list = head; 811b5c5493SEric Dumazet } 821b5c5493SEric Dumazet } 831b5c5493SEric Dumazet EXPORT_SYMBOL(rtnl_kfree_skbs); 841b5c5493SEric Dumazet 856756ae4bSStephen Hemminger void __rtnl_unlock(void) 861da177e4SLinus Torvalds { 871b5c5493SEric Dumazet struct sk_buff *head = defer_kfree_skb_list; 881b5c5493SEric Dumazet 891b5c5493SEric Dumazet defer_kfree_skb_list = NULL; 901b5c5493SEric Dumazet 916756ae4bSStephen Hemminger mutex_unlock(&rtnl_mutex); 921b5c5493SEric Dumazet 931b5c5493SEric Dumazet while (head) { 941b5c5493SEric Dumazet struct sk_buff *next = head->next; 951b5c5493SEric Dumazet 961b5c5493SEric Dumazet kfree_skb(head); 971b5c5493SEric Dumazet cond_resched(); 981b5c5493SEric Dumazet head = next; 991b5c5493SEric Dumazet } 1001da177e4SLinus Torvalds } 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds void rtnl_unlock(void) 1031da177e4SLinus Torvalds { 10458ec3b4dSHerbert Xu /* This fellow will unlock it for us. */ 1051da177e4SLinus Torvalds netdev_run_todo(); 1061da177e4SLinus Torvalds } 107e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_unlock); 1081da177e4SLinus Torvalds 1096756ae4bSStephen Hemminger int rtnl_trylock(void) 1106756ae4bSStephen Hemminger { 1116756ae4bSStephen Hemminger return mutex_trylock(&rtnl_mutex); 1126756ae4bSStephen Hemminger } 113e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_trylock); 1146756ae4bSStephen Hemminger 115c9c1014bSPatrick McHardy int rtnl_is_locked(void) 116c9c1014bSPatrick McHardy { 117c9c1014bSPatrick McHardy return mutex_is_locked(&rtnl_mutex); 118c9c1014bSPatrick McHardy } 119e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_is_locked); 120c9c1014bSPatrick McHardy 121a898def2SPaul E. McKenney #ifdef CONFIG_PROVE_LOCKING 1220cbf3343SYaowei Bai bool lockdep_rtnl_is_held(void) 123a898def2SPaul E. McKenney { 124a898def2SPaul E. McKenney return lockdep_is_held(&rtnl_mutex); 125a898def2SPaul E. McKenney } 126a898def2SPaul E. McKenney EXPORT_SYMBOL(lockdep_rtnl_is_held); 127a898def2SPaul E. McKenney #endif /* #ifdef CONFIG_PROVE_LOCKING */ 128a898def2SPaul E. McKenney 129*6853dd48SFlorian Westphal static struct rtnl_link __rcu *rtnl_msg_handlers[RTNL_FAMILY_MAX + 1]; 130019a3169SFlorian Westphal static refcount_t rtnl_msg_handlers_ref[RTNL_FAMILY_MAX + 1]; 131e2849863SThomas Graf 132e2849863SThomas Graf static inline int rtm_msgindex(int msgtype) 133e2849863SThomas Graf { 134e2849863SThomas Graf int msgindex = msgtype - RTM_BASE; 135e2849863SThomas Graf 136e2849863SThomas Graf /* 137e2849863SThomas Graf * msgindex < 0 implies someone tried to register a netlink 138e2849863SThomas Graf * control code. msgindex >= RTM_NR_MSGTYPES may indicate that 139e2849863SThomas Graf * the message type has not been added to linux/rtnetlink.h 140e2849863SThomas Graf */ 141e2849863SThomas Graf BUG_ON(msgindex < 0 || msgindex >= RTM_NR_MSGTYPES); 142e2849863SThomas Graf 143e2849863SThomas Graf return msgindex; 144e2849863SThomas Graf } 145e2849863SThomas Graf 146e2849863SThomas Graf /** 147e2849863SThomas Graf * __rtnl_register - Register a rtnetlink message type 148e2849863SThomas Graf * @protocol: Protocol family or PF_UNSPEC 149e2849863SThomas Graf * @msgtype: rtnetlink message type 150e2849863SThomas Graf * @doit: Function pointer called for each request message 151e2849863SThomas Graf * @dumpit: Function pointer called for each dump request (NLM_F_DUMP) message 152b97bac64SFlorian Westphal * @flags: rtnl_link_flags to modifiy behaviour of doit/dumpit functions 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, 165c7ac8679SGreg Rose rtnl_doit_func doit, rtnl_dumpit_func dumpit, 166b97bac64SFlorian Westphal unsigned int flags) 167e2849863SThomas Graf { 168e2849863SThomas Graf struct rtnl_link *tab; 169e2849863SThomas Graf int msgindex; 170e2849863SThomas Graf 17125239ceeSPatrick McHardy BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); 172e2849863SThomas Graf msgindex = rtm_msgindex(msgtype); 173e2849863SThomas Graf 174*6853dd48SFlorian Westphal tab = rcu_dereference(rtnl_msg_handlers[protocol]); 175e2849863SThomas Graf if (tab == NULL) { 176e2849863SThomas Graf tab = kcalloc(RTM_NR_MSGTYPES, sizeof(*tab), GFP_KERNEL); 177e2849863SThomas Graf if (tab == NULL) 178e2849863SThomas Graf return -ENOBUFS; 179e2849863SThomas Graf 180*6853dd48SFlorian Westphal rcu_assign_pointer(rtnl_msg_handlers[protocol], tab); 181e2849863SThomas Graf } 182e2849863SThomas Graf 183e2849863SThomas Graf if (doit) 184e2849863SThomas Graf tab[msgindex].doit = doit; 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 19925985edcSLucas De Marchi * of memory implies no sense in continuing. 200e2849863SThomas Graf */ 201e2849863SThomas Graf void rtnl_register(int protocol, int msgtype, 202c7ac8679SGreg Rose rtnl_doit_func doit, rtnl_dumpit_func dumpit, 203b97bac64SFlorian Westphal unsigned int flags) 204e2849863SThomas Graf { 205b97bac64SFlorian Westphal if (__rtnl_register(protocol, msgtype, doit, dumpit, flags) < 0) 206e2849863SThomas Graf panic("Unable to register rtnetlink message handler, " 207e2849863SThomas Graf "protocol = %d, message type = %d\n", 208e2849863SThomas Graf protocol, msgtype); 209e2849863SThomas Graf } 210e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_register); 211e2849863SThomas Graf 212e2849863SThomas Graf /** 213e2849863SThomas Graf * rtnl_unregister - Unregister a rtnetlink message type 214e2849863SThomas Graf * @protocol: Protocol family or PF_UNSPEC 215e2849863SThomas Graf * @msgtype: rtnetlink message type 216e2849863SThomas Graf * 217e2849863SThomas Graf * Returns 0 on success or a negative error code. 218e2849863SThomas Graf */ 219e2849863SThomas Graf int rtnl_unregister(int protocol, int msgtype) 220e2849863SThomas Graf { 221*6853dd48SFlorian Westphal struct rtnl_link *handlers; 222e2849863SThomas Graf int msgindex; 223e2849863SThomas Graf 22425239ceeSPatrick McHardy BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); 225e2849863SThomas Graf msgindex = rtm_msgindex(msgtype); 226e2849863SThomas Graf 227*6853dd48SFlorian Westphal rtnl_lock(); 228*6853dd48SFlorian Westphal handlers = rtnl_dereference(rtnl_msg_handlers[protocol]); 229*6853dd48SFlorian Westphal if (!handlers) { 230*6853dd48SFlorian Westphal rtnl_unlock(); 231e2849863SThomas Graf return -ENOENT; 232*6853dd48SFlorian Westphal } 233e2849863SThomas Graf 234*6853dd48SFlorian Westphal handlers[msgindex].doit = NULL; 235*6853dd48SFlorian Westphal handlers[msgindex].dumpit = NULL; 236*6853dd48SFlorian Westphal rtnl_unlock(); 237e2849863SThomas Graf 238e2849863SThomas Graf return 0; 239e2849863SThomas Graf } 240e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_unregister); 241e2849863SThomas Graf 242e2849863SThomas Graf /** 243e2849863SThomas Graf * rtnl_unregister_all - Unregister all rtnetlink message type of a protocol 244e2849863SThomas Graf * @protocol : Protocol family or PF_UNSPEC 245e2849863SThomas Graf * 246e2849863SThomas Graf * Identical to calling rtnl_unregster() for all registered message types 247e2849863SThomas Graf * of a certain protocol family. 248e2849863SThomas Graf */ 249e2849863SThomas Graf void rtnl_unregister_all(int protocol) 250e2849863SThomas Graf { 251019a3169SFlorian Westphal struct rtnl_link *handlers; 252019a3169SFlorian Westphal 25325239ceeSPatrick McHardy BUG_ON(protocol < 0 || protocol > RTNL_FAMILY_MAX); 254e2849863SThomas Graf 255019a3169SFlorian Westphal rtnl_lock(); 256*6853dd48SFlorian Westphal handlers = rtnl_dereference(rtnl_msg_handlers[protocol]); 257*6853dd48SFlorian Westphal RCU_INIT_POINTER(rtnl_msg_handlers[protocol], NULL); 258019a3169SFlorian Westphal rtnl_unlock(); 259019a3169SFlorian Westphal 260*6853dd48SFlorian Westphal synchronize_net(); 261*6853dd48SFlorian Westphal 262019a3169SFlorian Westphal while (refcount_read(&rtnl_msg_handlers_ref[protocol]) > 0) 263019a3169SFlorian Westphal schedule(); 264019a3169SFlorian Westphal kfree(handlers); 265e2849863SThomas Graf } 266e2849863SThomas Graf EXPORT_SYMBOL_GPL(rtnl_unregister_all); 2671da177e4SLinus Torvalds 26838f7b870SPatrick McHardy static LIST_HEAD(link_ops); 26938f7b870SPatrick McHardy 270c63044f0SEric Dumazet static const struct rtnl_link_ops *rtnl_link_ops_get(const char *kind) 271c63044f0SEric Dumazet { 272c63044f0SEric Dumazet const struct rtnl_link_ops *ops; 273c63044f0SEric Dumazet 274c63044f0SEric Dumazet list_for_each_entry(ops, &link_ops, list) { 275c63044f0SEric Dumazet if (!strcmp(ops->kind, kind)) 276c63044f0SEric Dumazet return ops; 277c63044f0SEric Dumazet } 278c63044f0SEric Dumazet return NULL; 279c63044f0SEric Dumazet } 280c63044f0SEric Dumazet 28138f7b870SPatrick McHardy /** 28238f7b870SPatrick McHardy * __rtnl_link_register - Register rtnl_link_ops with rtnetlink. 28338f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to register 28438f7b870SPatrick McHardy * 28538f7b870SPatrick McHardy * The caller must hold the rtnl_mutex. This function should be used 28638f7b870SPatrick McHardy * by drivers that create devices during module initialization. It 28738f7b870SPatrick McHardy * must be called before registering the devices. 28838f7b870SPatrick McHardy * 28938f7b870SPatrick McHardy * Returns 0 on success or a negative error code. 29038f7b870SPatrick McHardy */ 29138f7b870SPatrick McHardy int __rtnl_link_register(struct rtnl_link_ops *ops) 29238f7b870SPatrick McHardy { 293c63044f0SEric Dumazet if (rtnl_link_ops_get(ops->kind)) 294c63044f0SEric Dumazet return -EEXIST; 295c63044f0SEric Dumazet 296b0ab2fabSJiri Pirko /* The check for setup is here because if ops 297b0ab2fabSJiri Pirko * does not have that filled up, it is not possible 298b0ab2fabSJiri Pirko * to use the ops for creating device. So do not 299b0ab2fabSJiri Pirko * fill up dellink as well. That disables rtnl_dellink. 300b0ab2fabSJiri Pirko */ 301b0ab2fabSJiri Pirko if (ops->setup && !ops->dellink) 30223289a37SEric Dumazet ops->dellink = unregister_netdevice_queue; 3032d85cba2SPatrick McHardy 30438f7b870SPatrick McHardy list_add_tail(&ops->list, &link_ops); 30538f7b870SPatrick McHardy return 0; 30638f7b870SPatrick McHardy } 30738f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(__rtnl_link_register); 30838f7b870SPatrick McHardy 30938f7b870SPatrick McHardy /** 31038f7b870SPatrick McHardy * rtnl_link_register - Register rtnl_link_ops with rtnetlink. 31138f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to register 31238f7b870SPatrick McHardy * 31338f7b870SPatrick McHardy * Returns 0 on success or a negative error code. 31438f7b870SPatrick McHardy */ 31538f7b870SPatrick McHardy int rtnl_link_register(struct rtnl_link_ops *ops) 31638f7b870SPatrick McHardy { 31738f7b870SPatrick McHardy int err; 31838f7b870SPatrick McHardy 31938f7b870SPatrick McHardy rtnl_lock(); 32038f7b870SPatrick McHardy err = __rtnl_link_register(ops); 32138f7b870SPatrick McHardy rtnl_unlock(); 32238f7b870SPatrick McHardy return err; 32338f7b870SPatrick McHardy } 32438f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(rtnl_link_register); 32538f7b870SPatrick McHardy 326669f87baSPavel Emelyanov static void __rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops) 327669f87baSPavel Emelyanov { 328669f87baSPavel Emelyanov struct net_device *dev; 32923289a37SEric Dumazet LIST_HEAD(list_kill); 33023289a37SEric Dumazet 331669f87baSPavel Emelyanov for_each_netdev(net, dev) { 33223289a37SEric Dumazet if (dev->rtnl_link_ops == ops) 33323289a37SEric Dumazet ops->dellink(dev, &list_kill); 334669f87baSPavel Emelyanov } 33523289a37SEric Dumazet unregister_netdevice_many(&list_kill); 336669f87baSPavel Emelyanov } 337669f87baSPavel Emelyanov 33838f7b870SPatrick McHardy /** 33938f7b870SPatrick McHardy * __rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. 34038f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to unregister 34138f7b870SPatrick McHardy * 3422d85cba2SPatrick McHardy * The caller must hold the rtnl_mutex. 34338f7b870SPatrick McHardy */ 34438f7b870SPatrick McHardy void __rtnl_link_unregister(struct rtnl_link_ops *ops) 34538f7b870SPatrick McHardy { 346881d966bSEric W. Biederman struct net *net; 3472d85cba2SPatrick McHardy 348881d966bSEric W. Biederman for_each_net(net) { 349669f87baSPavel Emelyanov __rtnl_kill_links(net, ops); 350881d966bSEric W. Biederman } 35138f7b870SPatrick McHardy list_del(&ops->list); 35238f7b870SPatrick McHardy } 35338f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(__rtnl_link_unregister); 35438f7b870SPatrick McHardy 355200b916fSCong Wang /* Return with the rtnl_lock held when there are no network 356200b916fSCong Wang * devices unregistering in any network namespace. 357200b916fSCong Wang */ 358200b916fSCong Wang static void rtnl_lock_unregistering_all(void) 359200b916fSCong Wang { 360200b916fSCong Wang struct net *net; 361200b916fSCong Wang bool unregistering; 362ff960a73SPeter Zijlstra DEFINE_WAIT_FUNC(wait, woken_wake_function); 363200b916fSCong Wang 364ff960a73SPeter Zijlstra add_wait_queue(&netdev_unregistering_wq, &wait); 365200b916fSCong Wang for (;;) { 366200b916fSCong Wang unregistering = false; 367200b916fSCong Wang rtnl_lock(); 368200b916fSCong Wang for_each_net(net) { 369200b916fSCong Wang if (net->dev_unreg_count > 0) { 370200b916fSCong Wang unregistering = true; 371200b916fSCong Wang break; 372200b916fSCong Wang } 373200b916fSCong Wang } 374200b916fSCong Wang if (!unregistering) 375200b916fSCong Wang break; 376200b916fSCong Wang __rtnl_unlock(); 377ff960a73SPeter Zijlstra 378ff960a73SPeter Zijlstra wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); 379200b916fSCong Wang } 380ff960a73SPeter Zijlstra remove_wait_queue(&netdev_unregistering_wq, &wait); 381200b916fSCong Wang } 382200b916fSCong Wang 38338f7b870SPatrick McHardy /** 38438f7b870SPatrick McHardy * rtnl_link_unregister - Unregister rtnl_link_ops from rtnetlink. 38538f7b870SPatrick McHardy * @ops: struct rtnl_link_ops * to unregister 38638f7b870SPatrick McHardy */ 38738f7b870SPatrick McHardy void rtnl_link_unregister(struct rtnl_link_ops *ops) 38838f7b870SPatrick McHardy { 389200b916fSCong Wang /* Close the race with cleanup_net() */ 390200b916fSCong Wang mutex_lock(&net_mutex); 391200b916fSCong Wang rtnl_lock_unregistering_all(); 39238f7b870SPatrick McHardy __rtnl_link_unregister(ops); 39338f7b870SPatrick McHardy rtnl_unlock(); 394200b916fSCong Wang mutex_unlock(&net_mutex); 39538f7b870SPatrick McHardy } 39638f7b870SPatrick McHardy EXPORT_SYMBOL_GPL(rtnl_link_unregister); 39738f7b870SPatrick McHardy 398ba7d49b1SJiri Pirko static size_t rtnl_link_get_slave_info_data_size(const struct net_device *dev) 399ba7d49b1SJiri Pirko { 400ba7d49b1SJiri Pirko struct net_device *master_dev; 401ba7d49b1SJiri Pirko const struct rtnl_link_ops *ops; 402ba7d49b1SJiri Pirko 403ba7d49b1SJiri Pirko master_dev = netdev_master_upper_dev_get((struct net_device *) dev); 404ba7d49b1SJiri Pirko if (!master_dev) 405ba7d49b1SJiri Pirko return 0; 406ba7d49b1SJiri Pirko ops = master_dev->rtnl_link_ops; 4076049f253SFernando Luis Vazquez Cao if (!ops || !ops->get_slave_size) 408ba7d49b1SJiri Pirko return 0; 409ba7d49b1SJiri Pirko /* IFLA_INFO_SLAVE_DATA + nested data */ 410ba7d49b1SJiri Pirko return nla_total_size(sizeof(struct nlattr)) + 411ba7d49b1SJiri Pirko ops->get_slave_size(master_dev, dev); 412ba7d49b1SJiri Pirko } 413ba7d49b1SJiri Pirko 41438f7b870SPatrick McHardy static size_t rtnl_link_get_size(const struct net_device *dev) 41538f7b870SPatrick McHardy { 41638f7b870SPatrick McHardy const struct rtnl_link_ops *ops = dev->rtnl_link_ops; 41738f7b870SPatrick McHardy size_t size; 41838f7b870SPatrick McHardy 41938f7b870SPatrick McHardy if (!ops) 42038f7b870SPatrick McHardy return 0; 42138f7b870SPatrick McHardy 422369cf77aSThomas Graf size = nla_total_size(sizeof(struct nlattr)) + /* IFLA_LINKINFO */ 423369cf77aSThomas Graf nla_total_size(strlen(ops->kind) + 1); /* IFLA_INFO_KIND */ 42438f7b870SPatrick McHardy 42538f7b870SPatrick McHardy if (ops->get_size) 42638f7b870SPatrick McHardy /* IFLA_INFO_DATA + nested data */ 427369cf77aSThomas Graf size += nla_total_size(sizeof(struct nlattr)) + 42838f7b870SPatrick McHardy ops->get_size(dev); 42938f7b870SPatrick McHardy 43038f7b870SPatrick McHardy if (ops->get_xstats_size) 431369cf77aSThomas Graf /* IFLA_INFO_XSTATS */ 432369cf77aSThomas Graf size += nla_total_size(ops->get_xstats_size(dev)); 43338f7b870SPatrick McHardy 434ba7d49b1SJiri Pirko size += rtnl_link_get_slave_info_data_size(dev); 435ba7d49b1SJiri Pirko 43638f7b870SPatrick McHardy return size; 43738f7b870SPatrick McHardy } 43838f7b870SPatrick McHardy 439f8ff182cSThomas Graf static LIST_HEAD(rtnl_af_ops); 440f8ff182cSThomas Graf 441f8ff182cSThomas Graf static const struct rtnl_af_ops *rtnl_af_lookup(const int family) 442f8ff182cSThomas Graf { 443f8ff182cSThomas Graf const struct rtnl_af_ops *ops; 444f8ff182cSThomas Graf 445f8ff182cSThomas Graf list_for_each_entry(ops, &rtnl_af_ops, list) { 446f8ff182cSThomas Graf if (ops->family == family) 447f8ff182cSThomas Graf return ops; 448f8ff182cSThomas Graf } 449f8ff182cSThomas Graf 450f8ff182cSThomas Graf return NULL; 451f8ff182cSThomas Graf } 452f8ff182cSThomas Graf 453f8ff182cSThomas Graf /** 454f8ff182cSThomas Graf * rtnl_af_register - Register rtnl_af_ops with rtnetlink. 455f8ff182cSThomas Graf * @ops: struct rtnl_af_ops * to register 456f8ff182cSThomas Graf * 457f8ff182cSThomas Graf * Returns 0 on success or a negative error code. 458f8ff182cSThomas Graf */ 4593678a9d8Sstephen hemminger void rtnl_af_register(struct rtnl_af_ops *ops) 460f8ff182cSThomas Graf { 461f8ff182cSThomas Graf rtnl_lock(); 4623678a9d8Sstephen hemminger list_add_tail(&ops->list, &rtnl_af_ops); 463f8ff182cSThomas Graf rtnl_unlock(); 464f8ff182cSThomas Graf } 465f8ff182cSThomas Graf EXPORT_SYMBOL_GPL(rtnl_af_register); 466f8ff182cSThomas Graf 467f8ff182cSThomas Graf /** 468f8ff182cSThomas Graf * __rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink. 469f8ff182cSThomas Graf * @ops: struct rtnl_af_ops * to unregister 470f8ff182cSThomas Graf * 471f8ff182cSThomas Graf * The caller must hold the rtnl_mutex. 472f8ff182cSThomas Graf */ 473f8ff182cSThomas Graf void __rtnl_af_unregister(struct rtnl_af_ops *ops) 474f8ff182cSThomas Graf { 475f8ff182cSThomas Graf list_del(&ops->list); 476f8ff182cSThomas Graf } 477f8ff182cSThomas Graf EXPORT_SYMBOL_GPL(__rtnl_af_unregister); 478f8ff182cSThomas Graf 479f8ff182cSThomas Graf /** 480f8ff182cSThomas Graf * rtnl_af_unregister - Unregister rtnl_af_ops from rtnetlink. 481f8ff182cSThomas Graf * @ops: struct rtnl_af_ops * to unregister 482f8ff182cSThomas Graf */ 483f8ff182cSThomas Graf void rtnl_af_unregister(struct rtnl_af_ops *ops) 484f8ff182cSThomas Graf { 485f8ff182cSThomas Graf rtnl_lock(); 486f8ff182cSThomas Graf __rtnl_af_unregister(ops); 487f8ff182cSThomas Graf rtnl_unlock(); 488f8ff182cSThomas Graf } 489f8ff182cSThomas Graf EXPORT_SYMBOL_GPL(rtnl_af_unregister); 490f8ff182cSThomas Graf 491b1974ed0SArad, Ronen static size_t rtnl_link_get_af_size(const struct net_device *dev, 492b1974ed0SArad, Ronen u32 ext_filter_mask) 493f8ff182cSThomas Graf { 494f8ff182cSThomas Graf struct rtnl_af_ops *af_ops; 495f8ff182cSThomas Graf size_t size; 496f8ff182cSThomas Graf 497f8ff182cSThomas Graf /* IFLA_AF_SPEC */ 498f8ff182cSThomas Graf size = nla_total_size(sizeof(struct nlattr)); 499f8ff182cSThomas Graf 500f8ff182cSThomas Graf list_for_each_entry(af_ops, &rtnl_af_ops, list) { 501f8ff182cSThomas Graf if (af_ops->get_link_af_size) { 502f8ff182cSThomas Graf /* AF_* + nested data */ 503f8ff182cSThomas Graf size += nla_total_size(sizeof(struct nlattr)) + 504b1974ed0SArad, Ronen af_ops->get_link_af_size(dev, ext_filter_mask); 505f8ff182cSThomas Graf } 506f8ff182cSThomas Graf } 507f8ff182cSThomas Graf 508f8ff182cSThomas Graf return size; 509f8ff182cSThomas Graf } 510f8ff182cSThomas Graf 511ba7d49b1SJiri Pirko static bool rtnl_have_link_slave_info(const struct net_device *dev) 512ba7d49b1SJiri Pirko { 513ba7d49b1SJiri Pirko struct net_device *master_dev; 514ba7d49b1SJiri Pirko 515ba7d49b1SJiri Pirko master_dev = netdev_master_upper_dev_get((struct net_device *) dev); 516813f020cSJiri Pirko if (master_dev && master_dev->rtnl_link_ops) 517ba7d49b1SJiri Pirko return true; 518ba7d49b1SJiri Pirko return false; 519ba7d49b1SJiri Pirko } 520ba7d49b1SJiri Pirko 521ba7d49b1SJiri Pirko static int rtnl_link_slave_info_fill(struct sk_buff *skb, 522ba7d49b1SJiri Pirko const struct net_device *dev) 523ba7d49b1SJiri Pirko { 524ba7d49b1SJiri Pirko struct net_device *master_dev; 525ba7d49b1SJiri Pirko const struct rtnl_link_ops *ops; 526ba7d49b1SJiri Pirko struct nlattr *slave_data; 527ba7d49b1SJiri Pirko int err; 528ba7d49b1SJiri Pirko 529ba7d49b1SJiri Pirko master_dev = netdev_master_upper_dev_get((struct net_device *) dev); 530ba7d49b1SJiri Pirko if (!master_dev) 531ba7d49b1SJiri Pirko return 0; 532ba7d49b1SJiri Pirko ops = master_dev->rtnl_link_ops; 533ba7d49b1SJiri Pirko if (!ops) 534ba7d49b1SJiri Pirko return 0; 535ba7d49b1SJiri Pirko if (nla_put_string(skb, IFLA_INFO_SLAVE_KIND, ops->kind) < 0) 536ba7d49b1SJiri Pirko return -EMSGSIZE; 537ba7d49b1SJiri Pirko if (ops->fill_slave_info) { 538ba7d49b1SJiri Pirko slave_data = nla_nest_start(skb, IFLA_INFO_SLAVE_DATA); 539ba7d49b1SJiri Pirko if (!slave_data) 540ba7d49b1SJiri Pirko return -EMSGSIZE; 541ba7d49b1SJiri Pirko err = ops->fill_slave_info(skb, master_dev, dev); 542ba7d49b1SJiri Pirko if (err < 0) 543ba7d49b1SJiri Pirko goto err_cancel_slave_data; 544ba7d49b1SJiri Pirko nla_nest_end(skb, slave_data); 545ba7d49b1SJiri Pirko } 546ba7d49b1SJiri Pirko return 0; 547ba7d49b1SJiri Pirko 548ba7d49b1SJiri Pirko err_cancel_slave_data: 549ba7d49b1SJiri Pirko nla_nest_cancel(skb, slave_data); 550ba7d49b1SJiri Pirko return err; 551ba7d49b1SJiri Pirko } 552ba7d49b1SJiri Pirko 553ba7d49b1SJiri Pirko static int rtnl_link_info_fill(struct sk_buff *skb, 554ba7d49b1SJiri Pirko const struct net_device *dev) 55538f7b870SPatrick McHardy { 55638f7b870SPatrick McHardy const struct rtnl_link_ops *ops = dev->rtnl_link_ops; 557ba7d49b1SJiri Pirko struct nlattr *data; 558ba7d49b1SJiri Pirko int err; 559ba7d49b1SJiri Pirko 560ba7d49b1SJiri Pirko if (!ops) 561ba7d49b1SJiri Pirko return 0; 562ba7d49b1SJiri Pirko if (nla_put_string(skb, IFLA_INFO_KIND, ops->kind) < 0) 563ba7d49b1SJiri Pirko return -EMSGSIZE; 564ba7d49b1SJiri Pirko if (ops->fill_xstats) { 565ba7d49b1SJiri Pirko err = ops->fill_xstats(skb, dev); 566ba7d49b1SJiri Pirko if (err < 0) 567ba7d49b1SJiri Pirko return err; 568ba7d49b1SJiri Pirko } 569ba7d49b1SJiri Pirko if (ops->fill_info) { 570ba7d49b1SJiri Pirko data = nla_nest_start(skb, IFLA_INFO_DATA); 571ba7d49b1SJiri Pirko if (data == NULL) 572ba7d49b1SJiri Pirko return -EMSGSIZE; 573ba7d49b1SJiri Pirko err = ops->fill_info(skb, dev); 574ba7d49b1SJiri Pirko if (err < 0) 575ba7d49b1SJiri Pirko goto err_cancel_data; 576ba7d49b1SJiri Pirko nla_nest_end(skb, data); 577ba7d49b1SJiri Pirko } 578ba7d49b1SJiri Pirko return 0; 579ba7d49b1SJiri Pirko 580ba7d49b1SJiri Pirko err_cancel_data: 581ba7d49b1SJiri Pirko nla_nest_cancel(skb, data); 582ba7d49b1SJiri Pirko return err; 583ba7d49b1SJiri Pirko } 584ba7d49b1SJiri Pirko 585ba7d49b1SJiri Pirko static int rtnl_link_fill(struct sk_buff *skb, const struct net_device *dev) 586ba7d49b1SJiri Pirko { 587ba7d49b1SJiri Pirko struct nlattr *linkinfo; 58838f7b870SPatrick McHardy int err = -EMSGSIZE; 58938f7b870SPatrick McHardy 59038f7b870SPatrick McHardy linkinfo = nla_nest_start(skb, IFLA_LINKINFO); 59138f7b870SPatrick McHardy if (linkinfo == NULL) 59238f7b870SPatrick McHardy goto out; 59338f7b870SPatrick McHardy 594ba7d49b1SJiri Pirko err = rtnl_link_info_fill(skb, dev); 59538f7b870SPatrick McHardy if (err < 0) 59638f7b870SPatrick McHardy goto err_cancel_link; 597ba7d49b1SJiri Pirko 598ba7d49b1SJiri Pirko err = rtnl_link_slave_info_fill(skb, dev); 59938f7b870SPatrick McHardy if (err < 0) 600ba7d49b1SJiri Pirko goto err_cancel_link; 60138f7b870SPatrick McHardy 60238f7b870SPatrick McHardy nla_nest_end(skb, linkinfo); 60338f7b870SPatrick McHardy return 0; 60438f7b870SPatrick McHardy 60538f7b870SPatrick McHardy err_cancel_link: 60638f7b870SPatrick McHardy nla_nest_cancel(skb, linkinfo); 60738f7b870SPatrick McHardy out: 60838f7b870SPatrick McHardy return err; 60938f7b870SPatrick McHardy } 61038f7b870SPatrick McHardy 61195c96174SEric Dumazet int rtnetlink_send(struct sk_buff *skb, struct net *net, u32 pid, unsigned int group, int echo) 6121da177e4SLinus Torvalds { 61397c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 6141da177e4SLinus Torvalds int err = 0; 6151da177e4SLinus Torvalds 616ac6d439dSPatrick McHardy NETLINK_CB(skb).dst_group = group; 6171da177e4SLinus Torvalds if (echo) 61863354797SReshetova, Elena refcount_inc(&skb->users); 6191da177e4SLinus Torvalds netlink_broadcast(rtnl, skb, pid, group, GFP_KERNEL); 6201da177e4SLinus Torvalds if (echo) 6211da177e4SLinus Torvalds err = netlink_unicast(rtnl, skb, pid, MSG_DONTWAIT); 6221da177e4SLinus Torvalds return err; 6231da177e4SLinus Torvalds } 6241da177e4SLinus Torvalds 62597c53cacSDenis V. Lunev int rtnl_unicast(struct sk_buff *skb, struct net *net, u32 pid) 6262942e900SThomas Graf { 62797c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 62897c53cacSDenis V. Lunev 6292942e900SThomas Graf return nlmsg_unicast(rtnl, skb, pid); 6302942e900SThomas Graf } 631e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_unicast); 6322942e900SThomas Graf 6331ce85fe4SPablo Neira Ayuso void rtnl_notify(struct sk_buff *skb, struct net *net, u32 pid, u32 group, 63497676b6bSThomas Graf struct nlmsghdr *nlh, gfp_t flags) 63597676b6bSThomas Graf { 63697c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 63797676b6bSThomas Graf int report = 0; 63897676b6bSThomas Graf 63997676b6bSThomas Graf if (nlh) 64097676b6bSThomas Graf report = nlmsg_report(nlh); 64197676b6bSThomas Graf 6421ce85fe4SPablo Neira Ayuso nlmsg_notify(rtnl, skb, pid, group, report, flags); 64397676b6bSThomas Graf } 644e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_notify); 64597676b6bSThomas Graf 64697c53cacSDenis V. Lunev void rtnl_set_sk_err(struct net *net, u32 group, int error) 64797676b6bSThomas Graf { 64897c53cacSDenis V. Lunev struct sock *rtnl = net->rtnl; 64997c53cacSDenis V. Lunev 65097676b6bSThomas Graf netlink_set_err(rtnl, 0, group, error); 65197676b6bSThomas Graf } 652e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_set_sk_err); 65397676b6bSThomas Graf 6541da177e4SLinus Torvalds int rtnetlink_put_metrics(struct sk_buff *skb, u32 *metrics) 6551da177e4SLinus Torvalds { 6562d7202bfSThomas Graf struct nlattr *mx; 6572d7202bfSThomas Graf int i, valid = 0; 6581da177e4SLinus Torvalds 6592d7202bfSThomas Graf mx = nla_nest_start(skb, RTA_METRICS); 6602d7202bfSThomas Graf if (mx == NULL) 6612d7202bfSThomas Graf return -ENOBUFS; 6622d7202bfSThomas Graf 6631da177e4SLinus Torvalds for (i = 0; i < RTAX_MAX; i++) { 6642d7202bfSThomas Graf if (metrics[i]) { 665ea697639SDaniel Borkmann if (i == RTAX_CC_ALGO - 1) { 666ea697639SDaniel Borkmann char tmp[TCP_CA_NAME_MAX], *name; 667ea697639SDaniel Borkmann 668ea697639SDaniel Borkmann name = tcp_ca_get_name_by_key(metrics[i], tmp); 669ea697639SDaniel Borkmann if (!name) 670ea697639SDaniel Borkmann continue; 671ea697639SDaniel Borkmann if (nla_put_string(skb, i + 1, name)) 672ea697639SDaniel Borkmann goto nla_put_failure; 673c3a8d947SDaniel Borkmann } else if (i == RTAX_FEATURES - 1) { 674c3a8d947SDaniel Borkmann u32 user_features = metrics[i] & RTAX_FEATURE_MASK; 675c3a8d947SDaniel Borkmann 676f8edcd12SPhil Sutter if (!user_features) 677f8edcd12SPhil Sutter continue; 678c3a8d947SDaniel Borkmann BUILD_BUG_ON(RTAX_FEATURE_MASK & DST_FEATURE_MASK); 679c3a8d947SDaniel Borkmann if (nla_put_u32(skb, i + 1, user_features)) 680c3a8d947SDaniel Borkmann goto nla_put_failure; 681ea697639SDaniel Borkmann } else { 682a6574349SDavid S. Miller if (nla_put_u32(skb, i + 1, metrics[i])) 683a6574349SDavid S. Miller goto nla_put_failure; 6841da177e4SLinus Torvalds } 685ea697639SDaniel Borkmann valid++; 686ea697639SDaniel Borkmann } 6872d7202bfSThomas Graf } 6881da177e4SLinus Torvalds 689a57d27fcSDavid S. Miller if (!valid) { 690a57d27fcSDavid S. Miller nla_nest_cancel(skb, mx); 691a57d27fcSDavid S. Miller return 0; 692a57d27fcSDavid S. Miller } 6932d7202bfSThomas Graf 6942d7202bfSThomas Graf return nla_nest_end(skb, mx); 6952d7202bfSThomas Graf 6962d7202bfSThomas Graf nla_put_failure: 697bc3ed28cSThomas Graf nla_nest_cancel(skb, mx); 698bc3ed28cSThomas Graf return -EMSGSIZE; 6991da177e4SLinus Torvalds } 700e0d087afSEric Dumazet EXPORT_SYMBOL(rtnetlink_put_metrics); 7011da177e4SLinus Torvalds 702e3703b3dSThomas Graf int rtnl_put_cacheinfo(struct sk_buff *skb, struct dst_entry *dst, u32 id, 70387a50699SDavid S. Miller long expires, u32 error) 704e3703b3dSThomas Graf { 705e3703b3dSThomas Graf struct rta_cacheinfo ci = { 706a399a805SEric Dumazet .rta_lastuse = jiffies_delta_to_clock_t(jiffies - dst->lastuse), 707e3703b3dSThomas Graf .rta_used = dst->__use, 708e3703b3dSThomas Graf .rta_clntref = atomic_read(&(dst->__refcnt)), 709e3703b3dSThomas Graf .rta_error = error, 710e3703b3dSThomas Graf .rta_id = id, 711e3703b3dSThomas Graf }; 712e3703b3dSThomas Graf 7138253947eSLi Wei if (expires) { 7148253947eSLi Wei unsigned long clock; 715e3703b3dSThomas Graf 7168253947eSLi Wei clock = jiffies_to_clock_t(abs(expires)); 7178253947eSLi Wei clock = min_t(unsigned long, clock, INT_MAX); 7188253947eSLi Wei ci.rta_expires = (expires > 0) ? clock : -clock; 7198253947eSLi Wei } 720e3703b3dSThomas Graf return nla_put(skb, RTA_CACHEINFO, sizeof(ci), &ci); 721e3703b3dSThomas Graf } 722e3703b3dSThomas Graf EXPORT_SYMBOL_GPL(rtnl_put_cacheinfo); 7231da177e4SLinus Torvalds 72493b2d4a2SDavid S. Miller static void set_operstate(struct net_device *dev, unsigned char transition) 725b00055aaSStefan Rompf { 726b00055aaSStefan Rompf unsigned char operstate = dev->operstate; 727b00055aaSStefan Rompf 728b00055aaSStefan Rompf switch (transition) { 729b00055aaSStefan Rompf case IF_OPER_UP: 730b00055aaSStefan Rompf if ((operstate == IF_OPER_DORMANT || 731b00055aaSStefan Rompf operstate == IF_OPER_UNKNOWN) && 732b00055aaSStefan Rompf !netif_dormant(dev)) 733b00055aaSStefan Rompf operstate = IF_OPER_UP; 734b00055aaSStefan Rompf break; 735b00055aaSStefan Rompf 736b00055aaSStefan Rompf case IF_OPER_DORMANT: 737b00055aaSStefan Rompf if (operstate == IF_OPER_UP || 738b00055aaSStefan Rompf operstate == IF_OPER_UNKNOWN) 739b00055aaSStefan Rompf operstate = IF_OPER_DORMANT; 740b00055aaSStefan Rompf break; 7413ff50b79SStephen Hemminger } 742b00055aaSStefan Rompf 743b00055aaSStefan Rompf if (dev->operstate != operstate) { 744b00055aaSStefan Rompf write_lock_bh(&dev_base_lock); 745b00055aaSStefan Rompf dev->operstate = operstate; 746b00055aaSStefan Rompf write_unlock_bh(&dev_base_lock); 747b00055aaSStefan Rompf netdev_state_change(dev); 74893b2d4a2SDavid S. Miller } 749b00055aaSStefan Rompf } 750b00055aaSStefan Rompf 751b1beb681SJiri Benc static unsigned int rtnl_dev_get_flags(const struct net_device *dev) 752b1beb681SJiri Benc { 753b1beb681SJiri Benc return (dev->flags & ~(IFF_PROMISC | IFF_ALLMULTI)) | 754b1beb681SJiri Benc (dev->gflags & (IFF_PROMISC | IFF_ALLMULTI)); 755b1beb681SJiri Benc } 756b1beb681SJiri Benc 7573729d502SPatrick McHardy static unsigned int rtnl_dev_combine_flags(const struct net_device *dev, 7583729d502SPatrick McHardy const struct ifinfomsg *ifm) 7593729d502SPatrick McHardy { 7603729d502SPatrick McHardy unsigned int flags = ifm->ifi_flags; 7613729d502SPatrick McHardy 7623729d502SPatrick McHardy /* bugwards compatibility: ifi_change == 0 is treated as ~0 */ 7633729d502SPatrick McHardy if (ifm->ifi_change) 7643729d502SPatrick McHardy flags = (flags & ifm->ifi_change) | 765b1beb681SJiri Benc (rtnl_dev_get_flags(dev) & ~ifm->ifi_change); 7663729d502SPatrick McHardy 7673729d502SPatrick McHardy return flags; 7683729d502SPatrick McHardy } 7693729d502SPatrick McHardy 770b60c5115SThomas Graf static void copy_rtnl_link_stats(struct rtnl_link_stats *a, 771be1f3c2cSBen Hutchings const struct rtnl_link_stats64 *b) 7721da177e4SLinus Torvalds { 773b60c5115SThomas Graf a->rx_packets = b->rx_packets; 774b60c5115SThomas Graf a->tx_packets = b->tx_packets; 775b60c5115SThomas Graf a->rx_bytes = b->rx_bytes; 776b60c5115SThomas Graf a->tx_bytes = b->tx_bytes; 777b60c5115SThomas Graf a->rx_errors = b->rx_errors; 778b60c5115SThomas Graf a->tx_errors = b->tx_errors; 779b60c5115SThomas Graf a->rx_dropped = b->rx_dropped; 780b60c5115SThomas Graf a->tx_dropped = b->tx_dropped; 781b60c5115SThomas Graf 782b60c5115SThomas Graf a->multicast = b->multicast; 783b60c5115SThomas Graf a->collisions = b->collisions; 784b60c5115SThomas Graf 785b60c5115SThomas Graf a->rx_length_errors = b->rx_length_errors; 786b60c5115SThomas Graf a->rx_over_errors = b->rx_over_errors; 787b60c5115SThomas Graf a->rx_crc_errors = b->rx_crc_errors; 788b60c5115SThomas Graf a->rx_frame_errors = b->rx_frame_errors; 789b60c5115SThomas Graf a->rx_fifo_errors = b->rx_fifo_errors; 790b60c5115SThomas Graf a->rx_missed_errors = b->rx_missed_errors; 791b60c5115SThomas Graf 792b60c5115SThomas Graf a->tx_aborted_errors = b->tx_aborted_errors; 793b60c5115SThomas Graf a->tx_carrier_errors = b->tx_carrier_errors; 794b60c5115SThomas Graf a->tx_fifo_errors = b->tx_fifo_errors; 795b60c5115SThomas Graf a->tx_heartbeat_errors = b->tx_heartbeat_errors; 796b60c5115SThomas Graf a->tx_window_errors = b->tx_window_errors; 797b60c5115SThomas Graf 798b60c5115SThomas Graf a->rx_compressed = b->rx_compressed; 799b60c5115SThomas Graf a->tx_compressed = b->tx_compressed; 8006e7333d3SJarod Wilson 8016e7333d3SJarod Wilson a->rx_nohandler = b->rx_nohandler; 80210708f37SJan Engelhardt } 80310708f37SJan Engelhardt 804c02db8c6SChris Wright /* All VF info */ 805115c9b81SGreg Rose static inline int rtnl_vfinfo_size(const struct net_device *dev, 806115c9b81SGreg Rose u32 ext_filter_mask) 807ebc08a6fSWilliams, Mitch A { 8089af15c38SPhil Sutter if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF)) { 809c02db8c6SChris Wright int num_vfs = dev_num_vf(dev->dev.parent); 8107e75f74aSSabrina Dubroca size_t size = nla_total_size(0); 811045de01aSScott Feldman size += num_vfs * 8127e75f74aSSabrina Dubroca (nla_total_size(0) + 8137e75f74aSSabrina Dubroca nla_total_size(sizeof(struct ifla_vf_mac)) + 8147e75f74aSSabrina Dubroca nla_total_size(sizeof(struct ifla_vf_vlan)) + 8157e75f74aSSabrina Dubroca nla_total_size(0) + /* nest IFLA_VF_VLAN_LIST */ 81679aab093SMoshe Shemesh nla_total_size(MAX_VLAN_LIST_LEN * 81779aab093SMoshe Shemesh sizeof(struct ifla_vf_vlan_info)) + 818ed616689SSucheta Chakraborty nla_total_size(sizeof(struct ifla_vf_spoofchk)) + 8197e75f74aSSabrina Dubroca nla_total_size(sizeof(struct ifla_vf_tx_rate)) + 820945a3676SJiri Benc nla_total_size(sizeof(struct ifla_vf_rate)) + 82101a3d796SVlad Zolotarov nla_total_size(sizeof(struct ifla_vf_link_state)) + 8223b766cd8SEran Ben Elisha nla_total_size(sizeof(struct ifla_vf_rss_query_en)) + 8237e75f74aSSabrina Dubroca nla_total_size(0) + /* nest IFLA_VF_STATS */ 8243b766cd8SEran Ben Elisha /* IFLA_VF_STATS_RX_PACKETS */ 825343a6d8eSNicolas Dichtel nla_total_size_64bit(sizeof(__u64)) + 8263b766cd8SEran Ben Elisha /* IFLA_VF_STATS_TX_PACKETS */ 827343a6d8eSNicolas Dichtel nla_total_size_64bit(sizeof(__u64)) + 8283b766cd8SEran Ben Elisha /* IFLA_VF_STATS_RX_BYTES */ 829343a6d8eSNicolas Dichtel nla_total_size_64bit(sizeof(__u64)) + 8303b766cd8SEran Ben Elisha /* IFLA_VF_STATS_TX_BYTES */ 831343a6d8eSNicolas Dichtel nla_total_size_64bit(sizeof(__u64)) + 8323b766cd8SEran Ben Elisha /* IFLA_VF_STATS_BROADCAST */ 833343a6d8eSNicolas Dichtel nla_total_size_64bit(sizeof(__u64)) + 8343b766cd8SEran Ben Elisha /* IFLA_VF_STATS_MULTICAST */ 835343a6d8eSNicolas Dichtel nla_total_size_64bit(sizeof(__u64)) + 836dd461d6aSHiroshi Shimamoto nla_total_size(sizeof(struct ifla_vf_trust))); 837c02db8c6SChris Wright return size; 838c02db8c6SChris Wright } else 839ebc08a6fSWilliams, Mitch A return 0; 840ebc08a6fSWilliams, Mitch A } 841ebc08a6fSWilliams, Mitch A 842c53864fdSDavid Gibson static size_t rtnl_port_size(const struct net_device *dev, 843c53864fdSDavid Gibson u32 ext_filter_mask) 84457b61080SScott Feldman { 84557b61080SScott Feldman size_t port_size = nla_total_size(4) /* PORT_VF */ 84657b61080SScott Feldman + nla_total_size(PORT_PROFILE_MAX) /* PORT_PROFILE */ 84757b61080SScott Feldman + nla_total_size(PORT_UUID_MAX) /* PORT_INSTANCE_UUID */ 84857b61080SScott Feldman + nla_total_size(PORT_UUID_MAX) /* PORT_HOST_UUID */ 84957b61080SScott Feldman + nla_total_size(1) /* PROT_VDP_REQUEST */ 85057b61080SScott Feldman + nla_total_size(2); /* PORT_VDP_RESPONSE */ 85157b61080SScott Feldman size_t vf_ports_size = nla_total_size(sizeof(struct nlattr)); 85257b61080SScott Feldman size_t vf_port_size = nla_total_size(sizeof(struct nlattr)) 85357b61080SScott Feldman + port_size; 85457b61080SScott Feldman size_t port_self_size = nla_total_size(sizeof(struct nlattr)) 85557b61080SScott Feldman + port_size; 85657b61080SScott Feldman 857c53864fdSDavid Gibson if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent || 858c53864fdSDavid Gibson !(ext_filter_mask & RTEXT_FILTER_VF)) 85957b61080SScott Feldman return 0; 86057b61080SScott Feldman if (dev_num_vf(dev->dev.parent)) 86157b61080SScott Feldman return port_self_size + vf_ports_size + 86257b61080SScott Feldman vf_port_size * dev_num_vf(dev->dev.parent); 86357b61080SScott Feldman else 86457b61080SScott Feldman return port_self_size; 86557b61080SScott Feldman } 86657b61080SScott Feldman 867b5cdae32SDavid S. Miller static size_t rtnl_xdp_size(void) 868d1fdd913SBrenden Blanco { 869b3cfaa31SSabrina Dubroca size_t xdp_size = nla_total_size(0) + /* nest IFLA_XDP */ 87058038695SMartin KaFai Lau nla_total_size(1) + /* XDP_ATTACHED */ 87158038695SMartin KaFai Lau nla_total_size(4); /* XDP_PROG_ID */ 872d1fdd913SBrenden Blanco 873d1fdd913SBrenden Blanco return xdp_size; 874d1fdd913SBrenden Blanco } 875d1fdd913SBrenden Blanco 876115c9b81SGreg Rose static noinline size_t if_nlmsg_size(const struct net_device *dev, 877115c9b81SGreg Rose u32 ext_filter_mask) 878339bf98fSThomas Graf { 879339bf98fSThomas Graf return NLMSG_ALIGN(sizeof(struct ifinfomsg)) 880339bf98fSThomas Graf + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ 8810b815a1aSStephen Hemminger + nla_total_size(IFALIASZ) /* IFLA_IFALIAS */ 882339bf98fSThomas Graf + nla_total_size(IFNAMSIZ) /* IFLA_QDISC */ 883270cb4d0SNicolas Dichtel + nla_total_size_64bit(sizeof(struct rtnl_link_ifmap)) 884339bf98fSThomas Graf + nla_total_size(sizeof(struct rtnl_link_stats)) 88535c58459SDavid S. Miller + nla_total_size_64bit(sizeof(struct rtnl_link_stats64)) 886339bf98fSThomas Graf + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ 887339bf98fSThomas Graf + nla_total_size(MAX_ADDR_LEN) /* IFLA_BROADCAST */ 888339bf98fSThomas Graf + nla_total_size(4) /* IFLA_TXQLEN */ 889339bf98fSThomas Graf + nla_total_size(4) /* IFLA_WEIGHT */ 890339bf98fSThomas Graf + nla_total_size(4) /* IFLA_MTU */ 891339bf98fSThomas Graf + nla_total_size(4) /* IFLA_LINK */ 892339bf98fSThomas Graf + nla_total_size(4) /* IFLA_MASTER */ 8939a57247fSJiri Pirko + nla_total_size(1) /* IFLA_CARRIER */ 894edbc0bb3SBen Greear + nla_total_size(4) /* IFLA_PROMISCUITY */ 89576ff5cc9SJiri Pirko + nla_total_size(4) /* IFLA_NUM_TX_QUEUES */ 89676ff5cc9SJiri Pirko + nla_total_size(4) /* IFLA_NUM_RX_QUEUES */ 8976919756cSTobias Klauser + nla_total_size(4) /* IFLA_GSO_MAX_SEGS */ 8986919756cSTobias Klauser + nla_total_size(4) /* IFLA_GSO_MAX_SIZE */ 899339bf98fSThomas Graf + nla_total_size(1) /* IFLA_OPERSTATE */ 90038f7b870SPatrick McHardy + nla_total_size(1) /* IFLA_LINKMODE */ 9012d3b479dSdavid decotigny + nla_total_size(4) /* IFLA_CARRIER_CHANGES */ 902d37512a2SNicolas Dichtel + nla_total_size(4) /* IFLA_LINK_NETNSID */ 903db833d40SSerhey Popovych + nla_total_size(4) /* IFLA_GROUP */ 904115c9b81SGreg Rose + nla_total_size(ext_filter_mask 905115c9b81SGreg Rose & RTEXT_FILTER_VF ? 4 : 0) /* IFLA_NUM_VF */ 906115c9b81SGreg Rose + rtnl_vfinfo_size(dev, ext_filter_mask) /* IFLA_VFINFO_LIST */ 907c53864fdSDavid Gibson + rtnl_port_size(dev, ext_filter_mask) /* IFLA_VF_PORTS + IFLA_PORT_SELF */ 908f8ff182cSThomas Graf + rtnl_link_get_size(dev) /* IFLA_LINKINFO */ 909b1974ed0SArad, Ronen + rtnl_link_get_af_size(dev, ext_filter_mask) /* IFLA_AF_SPEC */ 91082f28412SJiri Pirko + nla_total_size(MAX_PHYS_ITEM_ID_LEN) /* IFLA_PHYS_PORT_ID */ 91188d6378bSAnuradha Karuppiah + nla_total_size(MAX_PHYS_ITEM_ID_LEN) /* IFLA_PHYS_SWITCH_ID */ 912c57c7a95SNicolas Dichtel + nla_total_size(IFNAMSIZ) /* IFLA_PHYS_PORT_NAME */ 913b5cdae32SDavid S. Miller + rtnl_xdp_size() /* IFLA_XDP */ 9143d3ea5afSVlad Yasevich + nla_total_size(4) /* IFLA_EVENT */ 91588d6378bSAnuradha Karuppiah + nla_total_size(1); /* IFLA_PROTO_DOWN */ 91688d6378bSAnuradha Karuppiah 917339bf98fSThomas Graf } 918339bf98fSThomas Graf 91957b61080SScott Feldman static int rtnl_vf_ports_fill(struct sk_buff *skb, struct net_device *dev) 92057b61080SScott Feldman { 92157b61080SScott Feldman struct nlattr *vf_ports; 92257b61080SScott Feldman struct nlattr *vf_port; 92357b61080SScott Feldman int vf; 92457b61080SScott Feldman int err; 92557b61080SScott Feldman 92657b61080SScott Feldman vf_ports = nla_nest_start(skb, IFLA_VF_PORTS); 92757b61080SScott Feldman if (!vf_ports) 92857b61080SScott Feldman return -EMSGSIZE; 92957b61080SScott Feldman 93057b61080SScott Feldman for (vf = 0; vf < dev_num_vf(dev->dev.parent); vf++) { 93157b61080SScott Feldman vf_port = nla_nest_start(skb, IFLA_VF_PORT); 9328ca94183SScott Feldman if (!vf_port) 9338ca94183SScott Feldman goto nla_put_failure; 934a6574349SDavid S. Miller if (nla_put_u32(skb, IFLA_PORT_VF, vf)) 935a6574349SDavid S. Miller goto nla_put_failure; 93657b61080SScott Feldman err = dev->netdev_ops->ndo_get_vf_port(dev, vf, skb); 9378ca94183SScott Feldman if (err == -EMSGSIZE) 9388ca94183SScott Feldman goto nla_put_failure; 93957b61080SScott Feldman if (err) { 94057b61080SScott Feldman nla_nest_cancel(skb, vf_port); 94157b61080SScott Feldman continue; 94257b61080SScott Feldman } 94357b61080SScott Feldman nla_nest_end(skb, vf_port); 94457b61080SScott Feldman } 94557b61080SScott Feldman 94657b61080SScott Feldman nla_nest_end(skb, vf_ports); 94757b61080SScott Feldman 94857b61080SScott Feldman return 0; 9498ca94183SScott Feldman 9508ca94183SScott Feldman nla_put_failure: 9518ca94183SScott Feldman nla_nest_cancel(skb, vf_ports); 9528ca94183SScott Feldman return -EMSGSIZE; 95357b61080SScott Feldman } 95457b61080SScott Feldman 95557b61080SScott Feldman static int rtnl_port_self_fill(struct sk_buff *skb, struct net_device *dev) 95657b61080SScott Feldman { 95757b61080SScott Feldman struct nlattr *port_self; 95857b61080SScott Feldman int err; 95957b61080SScott Feldman 96057b61080SScott Feldman port_self = nla_nest_start(skb, IFLA_PORT_SELF); 96157b61080SScott Feldman if (!port_self) 96257b61080SScott Feldman return -EMSGSIZE; 96357b61080SScott Feldman 96457b61080SScott Feldman err = dev->netdev_ops->ndo_get_vf_port(dev, PORT_SELF_VF, skb); 96557b61080SScott Feldman if (err) { 96657b61080SScott Feldman nla_nest_cancel(skb, port_self); 9678ca94183SScott Feldman return (err == -EMSGSIZE) ? err : 0; 96857b61080SScott Feldman } 96957b61080SScott Feldman 97057b61080SScott Feldman nla_nest_end(skb, port_self); 97157b61080SScott Feldman 97257b61080SScott Feldman return 0; 97357b61080SScott Feldman } 97457b61080SScott Feldman 975c53864fdSDavid Gibson static int rtnl_port_fill(struct sk_buff *skb, struct net_device *dev, 976c53864fdSDavid Gibson u32 ext_filter_mask) 97757b61080SScott Feldman { 97857b61080SScott Feldman int err; 97957b61080SScott Feldman 980c53864fdSDavid Gibson if (!dev->netdev_ops->ndo_get_vf_port || !dev->dev.parent || 981c53864fdSDavid Gibson !(ext_filter_mask & RTEXT_FILTER_VF)) 98257b61080SScott Feldman return 0; 98357b61080SScott Feldman 98457b61080SScott Feldman err = rtnl_port_self_fill(skb, dev); 98557b61080SScott Feldman if (err) 98657b61080SScott Feldman return err; 98757b61080SScott Feldman 98857b61080SScott Feldman if (dev_num_vf(dev->dev.parent)) { 98957b61080SScott Feldman err = rtnl_vf_ports_fill(skb, dev); 99057b61080SScott Feldman if (err) 99157b61080SScott Feldman return err; 99257b61080SScott Feldman } 99357b61080SScott Feldman 99457b61080SScott Feldman return 0; 99557b61080SScott Feldman } 99657b61080SScott Feldman 99766cae9edSJiri Pirko static int rtnl_phys_port_id_fill(struct sk_buff *skb, struct net_device *dev) 99866cae9edSJiri Pirko { 99966cae9edSJiri Pirko int err; 100002637fceSJiri Pirko struct netdev_phys_item_id ppid; 100166cae9edSJiri Pirko 100266cae9edSJiri Pirko err = dev_get_phys_port_id(dev, &ppid); 100366cae9edSJiri Pirko if (err) { 100466cae9edSJiri Pirko if (err == -EOPNOTSUPP) 100566cae9edSJiri Pirko return 0; 100666cae9edSJiri Pirko return err; 100766cae9edSJiri Pirko } 100866cae9edSJiri Pirko 100966cae9edSJiri Pirko if (nla_put(skb, IFLA_PHYS_PORT_ID, ppid.id_len, ppid.id)) 101066cae9edSJiri Pirko return -EMSGSIZE; 101166cae9edSJiri Pirko 101266cae9edSJiri Pirko return 0; 101366cae9edSJiri Pirko } 101466cae9edSJiri Pirko 1015db24a904SDavid Ahern static int rtnl_phys_port_name_fill(struct sk_buff *skb, struct net_device *dev) 1016db24a904SDavid Ahern { 1017db24a904SDavid Ahern char name[IFNAMSIZ]; 1018db24a904SDavid Ahern int err; 1019db24a904SDavid Ahern 1020db24a904SDavid Ahern err = dev_get_phys_port_name(dev, name, sizeof(name)); 1021db24a904SDavid Ahern if (err) { 1022db24a904SDavid Ahern if (err == -EOPNOTSUPP) 1023db24a904SDavid Ahern return 0; 1024db24a904SDavid Ahern return err; 1025db24a904SDavid Ahern } 1026db24a904SDavid Ahern 102777ef033bSMichal Schmidt if (nla_put_string(skb, IFLA_PHYS_PORT_NAME, name)) 1028db24a904SDavid Ahern return -EMSGSIZE; 1029db24a904SDavid Ahern 1030db24a904SDavid Ahern return 0; 1031db24a904SDavid Ahern } 1032db24a904SDavid Ahern 103382f28412SJiri Pirko static int rtnl_phys_switch_id_fill(struct sk_buff *skb, struct net_device *dev) 103482f28412SJiri Pirko { 103582f28412SJiri Pirko int err; 1036f8e20a9fSScott Feldman struct switchdev_attr attr = { 10376ff64f6fSIdo Schimmel .orig_dev = dev, 10381f868398SJiri Pirko .id = SWITCHDEV_ATTR_ID_PORT_PARENT_ID, 1039f8e20a9fSScott Feldman .flags = SWITCHDEV_F_NO_RECURSE, 1040f8e20a9fSScott Feldman }; 104182f28412SJiri Pirko 1042f8e20a9fSScott Feldman err = switchdev_port_attr_get(dev, &attr); 104382f28412SJiri Pirko if (err) { 104482f28412SJiri Pirko if (err == -EOPNOTSUPP) 104582f28412SJiri Pirko return 0; 104682f28412SJiri Pirko return err; 104782f28412SJiri Pirko } 104882f28412SJiri Pirko 104942275bd8SScott Feldman if (nla_put(skb, IFLA_PHYS_SWITCH_ID, attr.u.ppid.id_len, 105042275bd8SScott Feldman attr.u.ppid.id)) 105182f28412SJiri Pirko return -EMSGSIZE; 105282f28412SJiri Pirko 105382f28412SJiri Pirko return 0; 105482f28412SJiri Pirko } 105582f28412SJiri Pirko 1056b22b941bSHannes Frederic Sowa static noinline_for_stack int rtnl_fill_stats(struct sk_buff *skb, 1057b22b941bSHannes Frederic Sowa struct net_device *dev) 1058b22b941bSHannes Frederic Sowa { 1059550bce59SRoopa Prabhu struct rtnl_link_stats64 *sp; 1060b22b941bSHannes Frederic Sowa struct nlattr *attr; 1061b22b941bSHannes Frederic Sowa 106258414d32SNicolas Dichtel attr = nla_reserve_64bit(skb, IFLA_STATS64, 106358414d32SNicolas Dichtel sizeof(struct rtnl_link_stats64), IFLA_PAD); 1064b22b941bSHannes Frederic Sowa if (!attr) 1065b22b941bSHannes Frederic Sowa return -EMSGSIZE; 1066b22b941bSHannes Frederic Sowa 1067550bce59SRoopa Prabhu sp = nla_data(attr); 1068550bce59SRoopa Prabhu dev_get_stats(dev, sp); 1069550bce59SRoopa Prabhu 1070550bce59SRoopa Prabhu attr = nla_reserve(skb, IFLA_STATS, 1071550bce59SRoopa Prabhu sizeof(struct rtnl_link_stats)); 1072550bce59SRoopa Prabhu if (!attr) 1073550bce59SRoopa Prabhu return -EMSGSIZE; 1074550bce59SRoopa Prabhu 1075550bce59SRoopa Prabhu copy_rtnl_link_stats(nla_data(attr), sp); 1076b22b941bSHannes Frederic Sowa 1077b22b941bSHannes Frederic Sowa return 0; 1078b22b941bSHannes Frederic Sowa } 1079b22b941bSHannes Frederic Sowa 1080b22b941bSHannes Frederic Sowa static noinline_for_stack int rtnl_fill_vfinfo(struct sk_buff *skb, 1081b22b941bSHannes Frederic Sowa struct net_device *dev, 1082b22b941bSHannes Frederic Sowa int vfs_num, 1083b22b941bSHannes Frederic Sowa struct nlattr *vfinfo) 1084b22b941bSHannes Frederic Sowa { 1085b22b941bSHannes Frederic Sowa struct ifla_vf_rss_query_en vf_rss_query_en; 108679aab093SMoshe Shemesh struct nlattr *vf, *vfstats, *vfvlanlist; 1087b22b941bSHannes Frederic Sowa struct ifla_vf_link_state vf_linkstate; 108879aab093SMoshe Shemesh struct ifla_vf_vlan_info vf_vlan_info; 1089b22b941bSHannes Frederic Sowa struct ifla_vf_spoofchk vf_spoofchk; 1090b22b941bSHannes Frederic Sowa struct ifla_vf_tx_rate vf_tx_rate; 1091b22b941bSHannes Frederic Sowa struct ifla_vf_stats vf_stats; 1092b22b941bSHannes Frederic Sowa struct ifla_vf_trust vf_trust; 1093b22b941bSHannes Frederic Sowa struct ifla_vf_vlan vf_vlan; 1094b22b941bSHannes Frederic Sowa struct ifla_vf_rate vf_rate; 1095b22b941bSHannes Frederic Sowa struct ifla_vf_mac vf_mac; 1096b22b941bSHannes Frederic Sowa struct ifla_vf_info ivi; 1097b22b941bSHannes Frederic Sowa 10980eed9cf5SMintz, Yuval memset(&ivi, 0, sizeof(ivi)); 10990eed9cf5SMintz, Yuval 1100b22b941bSHannes Frederic Sowa /* Not all SR-IOV capable drivers support the 1101b22b941bSHannes Frederic Sowa * spoofcheck and "RSS query enable" query. Preset to 1102b22b941bSHannes Frederic Sowa * -1 so the user space tool can detect that the driver 1103b22b941bSHannes Frederic Sowa * didn't report anything. 1104b22b941bSHannes Frederic Sowa */ 1105b22b941bSHannes Frederic Sowa ivi.spoofchk = -1; 1106b22b941bSHannes Frederic Sowa ivi.rss_query_en = -1; 1107b22b941bSHannes Frederic Sowa ivi.trusted = -1; 1108b22b941bSHannes Frederic Sowa /* The default value for VF link state is "auto" 1109b22b941bSHannes Frederic Sowa * IFLA_VF_LINK_STATE_AUTO which equals zero 1110b22b941bSHannes Frederic Sowa */ 1111b22b941bSHannes Frederic Sowa ivi.linkstate = 0; 111279aab093SMoshe Shemesh /* VLAN Protocol by default is 802.1Q */ 111379aab093SMoshe Shemesh ivi.vlan_proto = htons(ETH_P_8021Q); 1114b22b941bSHannes Frederic Sowa if (dev->netdev_ops->ndo_get_vf_config(dev, vfs_num, &ivi)) 1115b22b941bSHannes Frederic Sowa return 0; 1116b22b941bSHannes Frederic Sowa 1117775f4f05SDan Carpenter memset(&vf_vlan_info, 0, sizeof(vf_vlan_info)); 1118775f4f05SDan Carpenter 1119b22b941bSHannes Frederic Sowa vf_mac.vf = 1120b22b941bSHannes Frederic Sowa vf_vlan.vf = 112179aab093SMoshe Shemesh vf_vlan_info.vf = 1122b22b941bSHannes Frederic Sowa vf_rate.vf = 1123b22b941bSHannes Frederic Sowa vf_tx_rate.vf = 1124b22b941bSHannes Frederic Sowa vf_spoofchk.vf = 1125b22b941bSHannes Frederic Sowa vf_linkstate.vf = 1126b22b941bSHannes Frederic Sowa vf_rss_query_en.vf = 1127b22b941bSHannes Frederic Sowa vf_trust.vf = ivi.vf; 1128b22b941bSHannes Frederic Sowa 1129b22b941bSHannes Frederic Sowa memcpy(vf_mac.mac, ivi.mac, sizeof(ivi.mac)); 1130b22b941bSHannes Frederic Sowa vf_vlan.vlan = ivi.vlan; 1131b22b941bSHannes Frederic Sowa vf_vlan.qos = ivi.qos; 113279aab093SMoshe Shemesh vf_vlan_info.vlan = ivi.vlan; 113379aab093SMoshe Shemesh vf_vlan_info.qos = ivi.qos; 113479aab093SMoshe Shemesh vf_vlan_info.vlan_proto = ivi.vlan_proto; 1135b22b941bSHannes Frederic Sowa vf_tx_rate.rate = ivi.max_tx_rate; 1136b22b941bSHannes Frederic Sowa vf_rate.min_tx_rate = ivi.min_tx_rate; 1137b22b941bSHannes Frederic Sowa vf_rate.max_tx_rate = ivi.max_tx_rate; 1138b22b941bSHannes Frederic Sowa vf_spoofchk.setting = ivi.spoofchk; 1139b22b941bSHannes Frederic Sowa vf_linkstate.link_state = ivi.linkstate; 1140b22b941bSHannes Frederic Sowa vf_rss_query_en.setting = ivi.rss_query_en; 1141b22b941bSHannes Frederic Sowa vf_trust.setting = ivi.trusted; 1142b22b941bSHannes Frederic Sowa vf = nla_nest_start(skb, IFLA_VF_INFO); 114379aab093SMoshe Shemesh if (!vf) 114479aab093SMoshe Shemesh goto nla_put_vfinfo_failure; 1145b22b941bSHannes Frederic Sowa if (nla_put(skb, IFLA_VF_MAC, sizeof(vf_mac), &vf_mac) || 1146b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_VLAN, sizeof(vf_vlan), &vf_vlan) || 1147b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_RATE, sizeof(vf_rate), 1148b22b941bSHannes Frederic Sowa &vf_rate) || 1149b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_TX_RATE, sizeof(vf_tx_rate), 1150b22b941bSHannes Frederic Sowa &vf_tx_rate) || 1151b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_SPOOFCHK, sizeof(vf_spoofchk), 1152b22b941bSHannes Frederic Sowa &vf_spoofchk) || 1153b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_LINK_STATE, sizeof(vf_linkstate), 1154b22b941bSHannes Frederic Sowa &vf_linkstate) || 1155b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_RSS_QUERY_EN, 1156b22b941bSHannes Frederic Sowa sizeof(vf_rss_query_en), 1157b22b941bSHannes Frederic Sowa &vf_rss_query_en) || 1158b22b941bSHannes Frederic Sowa nla_put(skb, IFLA_VF_TRUST, 1159b22b941bSHannes Frederic Sowa sizeof(vf_trust), &vf_trust)) 116079aab093SMoshe Shemesh goto nla_put_vf_failure; 116179aab093SMoshe Shemesh vfvlanlist = nla_nest_start(skb, IFLA_VF_VLAN_LIST); 116279aab093SMoshe Shemesh if (!vfvlanlist) 116379aab093SMoshe Shemesh goto nla_put_vf_failure; 116479aab093SMoshe Shemesh if (nla_put(skb, IFLA_VF_VLAN_INFO, sizeof(vf_vlan_info), 116579aab093SMoshe Shemesh &vf_vlan_info)) { 116679aab093SMoshe Shemesh nla_nest_cancel(skb, vfvlanlist); 116779aab093SMoshe Shemesh goto nla_put_vf_failure; 116879aab093SMoshe Shemesh } 116979aab093SMoshe Shemesh nla_nest_end(skb, vfvlanlist); 1170b22b941bSHannes Frederic Sowa memset(&vf_stats, 0, sizeof(vf_stats)); 1171b22b941bSHannes Frederic Sowa if (dev->netdev_ops->ndo_get_vf_stats) 1172b22b941bSHannes Frederic Sowa dev->netdev_ops->ndo_get_vf_stats(dev, vfs_num, 1173b22b941bSHannes Frederic Sowa &vf_stats); 1174b22b941bSHannes Frederic Sowa vfstats = nla_nest_start(skb, IFLA_VF_STATS); 117579aab093SMoshe Shemesh if (!vfstats) 117679aab093SMoshe Shemesh goto nla_put_vf_failure; 1177343a6d8eSNicolas Dichtel if (nla_put_u64_64bit(skb, IFLA_VF_STATS_RX_PACKETS, 1178343a6d8eSNicolas Dichtel vf_stats.rx_packets, IFLA_VF_STATS_PAD) || 1179343a6d8eSNicolas Dichtel nla_put_u64_64bit(skb, IFLA_VF_STATS_TX_PACKETS, 1180343a6d8eSNicolas Dichtel vf_stats.tx_packets, IFLA_VF_STATS_PAD) || 1181343a6d8eSNicolas Dichtel nla_put_u64_64bit(skb, IFLA_VF_STATS_RX_BYTES, 1182343a6d8eSNicolas Dichtel vf_stats.rx_bytes, IFLA_VF_STATS_PAD) || 1183343a6d8eSNicolas Dichtel nla_put_u64_64bit(skb, IFLA_VF_STATS_TX_BYTES, 1184343a6d8eSNicolas Dichtel vf_stats.tx_bytes, IFLA_VF_STATS_PAD) || 1185343a6d8eSNicolas Dichtel nla_put_u64_64bit(skb, IFLA_VF_STATS_BROADCAST, 1186343a6d8eSNicolas Dichtel vf_stats.broadcast, IFLA_VF_STATS_PAD) || 1187343a6d8eSNicolas Dichtel nla_put_u64_64bit(skb, IFLA_VF_STATS_MULTICAST, 118879aab093SMoshe Shemesh vf_stats.multicast, IFLA_VF_STATS_PAD)) { 118979aab093SMoshe Shemesh nla_nest_cancel(skb, vfstats); 119079aab093SMoshe Shemesh goto nla_put_vf_failure; 119179aab093SMoshe Shemesh } 1192b22b941bSHannes Frederic Sowa nla_nest_end(skb, vfstats); 1193b22b941bSHannes Frederic Sowa nla_nest_end(skb, vf); 1194b22b941bSHannes Frederic Sowa return 0; 119579aab093SMoshe Shemesh 119679aab093SMoshe Shemesh nla_put_vf_failure: 119779aab093SMoshe Shemesh nla_nest_cancel(skb, vf); 119879aab093SMoshe Shemesh nla_put_vfinfo_failure: 119979aab093SMoshe Shemesh nla_nest_cancel(skb, vfinfo); 120079aab093SMoshe Shemesh return -EMSGSIZE; 1201b22b941bSHannes Frederic Sowa } 1202b22b941bSHannes Frederic Sowa 1203b22b941bSHannes Frederic Sowa static int rtnl_fill_link_ifmap(struct sk_buff *skb, struct net_device *dev) 1204b22b941bSHannes Frederic Sowa { 12055f8e4474SKangjie Lu struct rtnl_link_ifmap map; 12065f8e4474SKangjie Lu 12075f8e4474SKangjie Lu memset(&map, 0, sizeof(map)); 12085f8e4474SKangjie Lu map.mem_start = dev->mem_start; 12095f8e4474SKangjie Lu map.mem_end = dev->mem_end; 12105f8e4474SKangjie Lu map.base_addr = dev->base_addr; 12115f8e4474SKangjie Lu map.irq = dev->irq; 12125f8e4474SKangjie Lu map.dma = dev->dma; 12135f8e4474SKangjie Lu map.port = dev->if_port; 12145f8e4474SKangjie Lu 1215270cb4d0SNicolas Dichtel if (nla_put_64bit(skb, IFLA_MAP, sizeof(map), &map, IFLA_PAD)) 1216b22b941bSHannes Frederic Sowa return -EMSGSIZE; 1217b22b941bSHannes Frederic Sowa 1218b22b941bSHannes Frederic Sowa return 0; 1219b22b941bSHannes Frederic Sowa } 1220b22b941bSHannes Frederic Sowa 122158038695SMartin KaFai Lau static u8 rtnl_xdp_attached_mode(struct net_device *dev, u32 *prog_id) 1222d67b9cd2SDaniel Borkmann { 1223d67b9cd2SDaniel Borkmann const struct net_device_ops *ops = dev->netdev_ops; 122458038695SMartin KaFai Lau const struct bpf_prog *generic_xdp_prog; 1225d67b9cd2SDaniel Borkmann 1226d67b9cd2SDaniel Borkmann ASSERT_RTNL(); 1227d67b9cd2SDaniel Borkmann 122858038695SMartin KaFai Lau *prog_id = 0; 122958038695SMartin KaFai Lau generic_xdp_prog = rtnl_dereference(dev->xdp_prog); 123058038695SMartin KaFai Lau if (generic_xdp_prog) { 123158038695SMartin KaFai Lau *prog_id = generic_xdp_prog->aux->id; 1232d67b9cd2SDaniel Borkmann return XDP_ATTACHED_SKB; 123358038695SMartin KaFai Lau } 1234ce158e58SJakub Kicinski if (!ops->ndo_xdp) 1235d67b9cd2SDaniel Borkmann return XDP_ATTACHED_NONE; 1236ce158e58SJakub Kicinski 1237ce158e58SJakub Kicinski return __dev_xdp_attached(dev, ops->ndo_xdp, prog_id); 1238d67b9cd2SDaniel Borkmann } 1239d67b9cd2SDaniel Borkmann 1240d1fdd913SBrenden Blanco static int rtnl_xdp_fill(struct sk_buff *skb, struct net_device *dev) 1241d1fdd913SBrenden Blanco { 1242d1fdd913SBrenden Blanco struct nlattr *xdp; 124358038695SMartin KaFai Lau u32 prog_id; 1244d1fdd913SBrenden Blanco int err; 1245d1fdd913SBrenden Blanco 1246d1fdd913SBrenden Blanco xdp = nla_nest_start(skb, IFLA_XDP); 1247d1fdd913SBrenden Blanco if (!xdp) 1248d1fdd913SBrenden Blanco return -EMSGSIZE; 1249b5cdae32SDavid S. Miller 1250d67b9cd2SDaniel Borkmann err = nla_put_u8(skb, IFLA_XDP_ATTACHED, 125158038695SMartin KaFai Lau rtnl_xdp_attached_mode(dev, &prog_id)); 1252d1fdd913SBrenden Blanco if (err) 1253d1fdd913SBrenden Blanco goto err_cancel; 1254d1fdd913SBrenden Blanco 125558038695SMartin KaFai Lau if (prog_id) { 125658038695SMartin KaFai Lau err = nla_put_u32(skb, IFLA_XDP_PROG_ID, prog_id); 125758038695SMartin KaFai Lau if (err) 125858038695SMartin KaFai Lau goto err_cancel; 125958038695SMartin KaFai Lau } 126058038695SMartin KaFai Lau 1261d1fdd913SBrenden Blanco nla_nest_end(skb, xdp); 1262d1fdd913SBrenden Blanco return 0; 1263d1fdd913SBrenden Blanco 1264d1fdd913SBrenden Blanco err_cancel: 1265d1fdd913SBrenden Blanco nla_nest_cancel(skb, xdp); 1266d1fdd913SBrenden Blanco return err; 1267d1fdd913SBrenden Blanco } 1268d1fdd913SBrenden Blanco 12693d3ea5afSVlad Yasevich static u32 rtnl_get_event(unsigned long event) 12703d3ea5afSVlad Yasevich { 12713d3ea5afSVlad Yasevich u32 rtnl_event_type = IFLA_EVENT_NONE; 12723d3ea5afSVlad Yasevich 12733d3ea5afSVlad Yasevich switch (event) { 12743d3ea5afSVlad Yasevich case NETDEV_REBOOT: 12753d3ea5afSVlad Yasevich rtnl_event_type = IFLA_EVENT_REBOOT; 12763d3ea5afSVlad Yasevich break; 12773d3ea5afSVlad Yasevich case NETDEV_FEAT_CHANGE: 12783d3ea5afSVlad Yasevich rtnl_event_type = IFLA_EVENT_FEATURES; 12793d3ea5afSVlad Yasevich break; 12803d3ea5afSVlad Yasevich case NETDEV_BONDING_FAILOVER: 12813d3ea5afSVlad Yasevich rtnl_event_type = IFLA_EVENT_BONDING_FAILOVER; 12823d3ea5afSVlad Yasevich break; 12833d3ea5afSVlad Yasevich case NETDEV_NOTIFY_PEERS: 12843d3ea5afSVlad Yasevich rtnl_event_type = IFLA_EVENT_NOTIFY_PEERS; 12853d3ea5afSVlad Yasevich break; 12863d3ea5afSVlad Yasevich case NETDEV_RESEND_IGMP: 12873d3ea5afSVlad Yasevich rtnl_event_type = IFLA_EVENT_IGMP_RESEND; 12883d3ea5afSVlad Yasevich break; 12893d3ea5afSVlad Yasevich case NETDEV_CHANGEINFODATA: 12903d3ea5afSVlad Yasevich rtnl_event_type = IFLA_EVENT_BONDING_OPTIONS; 12913d3ea5afSVlad Yasevich break; 12923d3ea5afSVlad Yasevich default: 12933d3ea5afSVlad Yasevich break; 12943d3ea5afSVlad Yasevich } 12953d3ea5afSVlad Yasevich 12963d3ea5afSVlad Yasevich return rtnl_event_type; 12973d3ea5afSVlad Yasevich } 12983d3ea5afSVlad Yasevich 1299b60c5115SThomas Graf static int rtnl_fill_ifinfo(struct sk_buff *skb, struct net_device *dev, 1300575c3e2aSPatrick McHardy int type, u32 pid, u32 seq, u32 change, 13013d3ea5afSVlad Yasevich unsigned int flags, u32 ext_filter_mask, 13023d3ea5afSVlad Yasevich u32 event) 1303b60c5115SThomas Graf { 1304b60c5115SThomas Graf struct ifinfomsg *ifm; 13051da177e4SLinus Torvalds struct nlmsghdr *nlh; 1306b22b941bSHannes Frederic Sowa struct nlattr *af_spec; 1307f8ff182cSThomas Graf struct rtnl_af_ops *af_ops; 1308898e5061SJiri Pirko struct net_device *upper_dev = netdev_master_upper_dev_get(dev); 13091da177e4SLinus Torvalds 13102907c35fSEric Dumazet ASSERT_RTNL(); 1311b60c5115SThomas Graf nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifm), flags); 1312b60c5115SThomas Graf if (nlh == NULL) 131326932566SPatrick McHardy return -EMSGSIZE; 13141da177e4SLinus Torvalds 1315b60c5115SThomas Graf ifm = nlmsg_data(nlh); 1316b60c5115SThomas Graf ifm->ifi_family = AF_UNSPEC; 1317b60c5115SThomas Graf ifm->__ifi_pad = 0; 1318b60c5115SThomas Graf ifm->ifi_type = dev->type; 1319b60c5115SThomas Graf ifm->ifi_index = dev->ifindex; 1320b60c5115SThomas Graf ifm->ifi_flags = dev_get_flags(dev); 1321b60c5115SThomas Graf ifm->ifi_change = change; 13221da177e4SLinus Torvalds 1323a6574349SDavid S. Miller if (nla_put_string(skb, IFLA_IFNAME, dev->name) || 1324a6574349SDavid S. Miller nla_put_u32(skb, IFLA_TXQLEN, dev->tx_queue_len) || 1325a6574349SDavid S. Miller nla_put_u8(skb, IFLA_OPERSTATE, 1326a6574349SDavid S. Miller netif_running(dev) ? dev->operstate : IF_OPER_DOWN) || 1327a6574349SDavid S. Miller nla_put_u8(skb, IFLA_LINKMODE, dev->link_mode) || 1328a6574349SDavid S. Miller nla_put_u32(skb, IFLA_MTU, dev->mtu) || 1329a6574349SDavid S. Miller nla_put_u32(skb, IFLA_GROUP, dev->group) || 1330edbc0bb3SBen Greear nla_put_u32(skb, IFLA_PROMISCUITY, dev->promiscuity) || 133176ff5cc9SJiri Pirko nla_put_u32(skb, IFLA_NUM_TX_QUEUES, dev->num_tx_queues) || 1332c70ce028SEric Dumazet nla_put_u32(skb, IFLA_GSO_MAX_SEGS, dev->gso_max_segs) || 1333c70ce028SEric Dumazet nla_put_u32(skb, IFLA_GSO_MAX_SIZE, dev->gso_max_size) || 13341d69c2b3SMark A. Greer #ifdef CONFIG_RPS 133576ff5cc9SJiri Pirko nla_put_u32(skb, IFLA_NUM_RX_QUEUES, dev->num_rx_queues) || 13361d69c2b3SMark A. Greer #endif 1337a54acb3aSNicolas Dichtel (dev->ifindex != dev_get_iflink(dev) && 1338a54acb3aSNicolas Dichtel nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev))) || 1339898e5061SJiri Pirko (upper_dev && 1340898e5061SJiri Pirko nla_put_u32(skb, IFLA_MASTER, upper_dev->ifindex)) || 13419a57247fSJiri Pirko nla_put_u8(skb, IFLA_CARRIER, netif_carrier_ok(dev)) || 1342a6574349SDavid S. Miller (dev->qdisc && 1343a6574349SDavid S. Miller nla_put_string(skb, IFLA_QDISC, dev->qdisc->ops->id)) || 1344a6574349SDavid S. Miller (dev->ifalias && 13452d3b479dSdavid decotigny nla_put_string(skb, IFLA_IFALIAS, dev->ifalias)) || 13462d3b479dSdavid decotigny nla_put_u32(skb, IFLA_CARRIER_CHANGES, 134788d6378bSAnuradha Karuppiah atomic_read(&dev->carrier_changes)) || 134888d6378bSAnuradha Karuppiah nla_put_u8(skb, IFLA_PROTO_DOWN, dev->proto_down)) 1349a6574349SDavid S. Miller goto nla_put_failure; 13500b815a1aSStephen Hemminger 13513d3ea5afSVlad Yasevich if (event != IFLA_EVENT_NONE) { 13523d3ea5afSVlad Yasevich if (nla_put_u32(skb, IFLA_EVENT, event)) 13533d3ea5afSVlad Yasevich goto nla_put_failure; 13543d3ea5afSVlad Yasevich } 13553d3ea5afSVlad Yasevich 1356b22b941bSHannes Frederic Sowa if (rtnl_fill_link_ifmap(skb, dev)) 1357a6574349SDavid S. Miller goto nla_put_failure; 13581da177e4SLinus Torvalds 13591da177e4SLinus Torvalds if (dev->addr_len) { 1360a6574349SDavid S. Miller if (nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr) || 1361a6574349SDavid S. Miller nla_put(skb, IFLA_BROADCAST, dev->addr_len, dev->broadcast)) 1362a6574349SDavid S. Miller goto nla_put_failure; 13631da177e4SLinus Torvalds } 13641da177e4SLinus Torvalds 136566cae9edSJiri Pirko if (rtnl_phys_port_id_fill(skb, dev)) 136666cae9edSJiri Pirko goto nla_put_failure; 136766cae9edSJiri Pirko 1368db24a904SDavid Ahern if (rtnl_phys_port_name_fill(skb, dev)) 1369db24a904SDavid Ahern goto nla_put_failure; 1370db24a904SDavid Ahern 137182f28412SJiri Pirko if (rtnl_phys_switch_id_fill(skb, dev)) 137282f28412SJiri Pirko goto nla_put_failure; 137382f28412SJiri Pirko 1374b22b941bSHannes Frederic Sowa if (rtnl_fill_stats(skb, dev)) 1375b60c5115SThomas Graf goto nla_put_failure; 1376b60c5115SThomas Graf 1377a6574349SDavid S. Miller if (dev->dev.parent && (ext_filter_mask & RTEXT_FILTER_VF) && 1378a6574349SDavid S. Miller nla_put_u32(skb, IFLA_NUM_VF, dev_num_vf(dev->dev.parent))) 1379a6574349SDavid S. Miller goto nla_put_failure; 138057b61080SScott Feldman 1381b22b941bSHannes Frederic Sowa if (dev->netdev_ops->ndo_get_vf_config && dev->dev.parent && 1382b22b941bSHannes Frederic Sowa ext_filter_mask & RTEXT_FILTER_VF) { 1383ebc08a6fSWilliams, Mitch A int i; 1384b22b941bSHannes Frederic Sowa struct nlattr *vfinfo; 1385c02db8c6SChris Wright int num_vfs = dev_num_vf(dev->dev.parent); 1386c02db8c6SChris Wright 1387c02db8c6SChris Wright vfinfo = nla_nest_start(skb, IFLA_VFINFO_LIST); 1388c02db8c6SChris Wright if (!vfinfo) 1389c02db8c6SChris Wright goto nla_put_failure; 1390c02db8c6SChris Wright for (i = 0; i < num_vfs; i++) { 1391b22b941bSHannes Frederic Sowa if (rtnl_fill_vfinfo(skb, dev, i, vfinfo)) 1392b22b941bSHannes Frederic Sowa goto nla_put_failure; 1393b22b941bSHannes Frederic Sowa } 13945f8444a3SGreg Rose 1395c02db8c6SChris Wright nla_nest_end(skb, vfinfo); 1396ebc08a6fSWilliams, Mitch A } 139757b61080SScott Feldman 1398c53864fdSDavid Gibson if (rtnl_port_fill(skb, dev, ext_filter_mask)) 139957b61080SScott Feldman goto nla_put_failure; 140057b61080SScott Feldman 1401d1fdd913SBrenden Blanco if (rtnl_xdp_fill(skb, dev)) 1402d1fdd913SBrenden Blanco goto nla_put_failure; 1403d1fdd913SBrenden Blanco 1404ba7d49b1SJiri Pirko if (dev->rtnl_link_ops || rtnl_have_link_slave_info(dev)) { 140538f7b870SPatrick McHardy if (rtnl_link_fill(skb, dev) < 0) 140638f7b870SPatrick McHardy goto nla_put_failure; 140738f7b870SPatrick McHardy } 140838f7b870SPatrick McHardy 1409d37512a2SNicolas Dichtel if (dev->rtnl_link_ops && 1410d37512a2SNicolas Dichtel dev->rtnl_link_ops->get_link_net) { 1411d37512a2SNicolas Dichtel struct net *link_net = dev->rtnl_link_ops->get_link_net(dev); 1412d37512a2SNicolas Dichtel 1413d37512a2SNicolas Dichtel if (!net_eq(dev_net(dev), link_net)) { 14147a0877d4SNicolas Dichtel int id = peernet2id_alloc(dev_net(dev), link_net); 1415d37512a2SNicolas Dichtel 1416d37512a2SNicolas Dichtel if (nla_put_s32(skb, IFLA_LINK_NETNSID, id)) 1417d37512a2SNicolas Dichtel goto nla_put_failure; 1418d37512a2SNicolas Dichtel } 1419d37512a2SNicolas Dichtel } 1420d37512a2SNicolas Dichtel 1421f8ff182cSThomas Graf if (!(af_spec = nla_nest_start(skb, IFLA_AF_SPEC))) 1422f8ff182cSThomas Graf goto nla_put_failure; 1423f8ff182cSThomas Graf 1424f8ff182cSThomas Graf list_for_each_entry(af_ops, &rtnl_af_ops, list) { 1425f8ff182cSThomas Graf if (af_ops->fill_link_af) { 1426f8ff182cSThomas Graf struct nlattr *af; 1427f8ff182cSThomas Graf int err; 1428f8ff182cSThomas Graf 1429f8ff182cSThomas Graf if (!(af = nla_nest_start(skb, af_ops->family))) 1430f8ff182cSThomas Graf goto nla_put_failure; 1431f8ff182cSThomas Graf 1432d5566fd7SSowmini Varadhan err = af_ops->fill_link_af(skb, dev, ext_filter_mask); 1433f8ff182cSThomas Graf 1434f8ff182cSThomas Graf /* 1435f8ff182cSThomas Graf * Caller may return ENODATA to indicate that there 1436f8ff182cSThomas Graf * was no data to be dumped. This is not an error, it 1437f8ff182cSThomas Graf * means we should trim the attribute header and 1438f8ff182cSThomas Graf * continue. 1439f8ff182cSThomas Graf */ 1440f8ff182cSThomas Graf if (err == -ENODATA) 1441f8ff182cSThomas Graf nla_nest_cancel(skb, af); 1442f8ff182cSThomas Graf else if (err < 0) 1443f8ff182cSThomas Graf goto nla_put_failure; 1444f8ff182cSThomas Graf 1445f8ff182cSThomas Graf nla_nest_end(skb, af); 1446f8ff182cSThomas Graf } 1447f8ff182cSThomas Graf } 1448f8ff182cSThomas Graf 1449f8ff182cSThomas Graf nla_nest_end(skb, af_spec); 1450f8ff182cSThomas Graf 1451053c095aSJohannes Berg nlmsg_end(skb, nlh); 1452053c095aSJohannes Berg return 0; 1453b60c5115SThomas Graf 1454b60c5115SThomas Graf nla_put_failure: 145526932566SPatrick McHardy nlmsg_cancel(skb, nlh); 145626932566SPatrick McHardy return -EMSGSIZE; 14571da177e4SLinus Torvalds } 14581da177e4SLinus Torvalds 1459f7b12606SJiri Pirko static const struct nla_policy ifla_policy[IFLA_MAX+1] = { 1460f7b12606SJiri Pirko [IFLA_IFNAME] = { .type = NLA_STRING, .len = IFNAMSIZ-1 }, 1461f7b12606SJiri Pirko [IFLA_ADDRESS] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, 1462f7b12606SJiri Pirko [IFLA_BROADCAST] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, 1463f7b12606SJiri Pirko [IFLA_MAP] = { .len = sizeof(struct rtnl_link_ifmap) }, 1464f7b12606SJiri Pirko [IFLA_MTU] = { .type = NLA_U32 }, 1465f7b12606SJiri Pirko [IFLA_LINK] = { .type = NLA_U32 }, 1466f7b12606SJiri Pirko [IFLA_MASTER] = { .type = NLA_U32 }, 1467f7b12606SJiri Pirko [IFLA_CARRIER] = { .type = NLA_U8 }, 1468f7b12606SJiri Pirko [IFLA_TXQLEN] = { .type = NLA_U32 }, 1469f7b12606SJiri Pirko [IFLA_WEIGHT] = { .type = NLA_U32 }, 1470f7b12606SJiri Pirko [IFLA_OPERSTATE] = { .type = NLA_U8 }, 1471f7b12606SJiri Pirko [IFLA_LINKMODE] = { .type = NLA_U8 }, 1472f7b12606SJiri Pirko [IFLA_LINKINFO] = { .type = NLA_NESTED }, 1473f7b12606SJiri Pirko [IFLA_NET_NS_PID] = { .type = NLA_U32 }, 1474f7b12606SJiri Pirko [IFLA_NET_NS_FD] = { .type = NLA_U32 }, 1475f7b12606SJiri Pirko [IFLA_IFALIAS] = { .type = NLA_STRING, .len = IFALIASZ-1 }, 1476f7b12606SJiri Pirko [IFLA_VFINFO_LIST] = {. type = NLA_NESTED }, 1477f7b12606SJiri Pirko [IFLA_VF_PORTS] = { .type = NLA_NESTED }, 1478f7b12606SJiri Pirko [IFLA_PORT_SELF] = { .type = NLA_NESTED }, 1479f7b12606SJiri Pirko [IFLA_AF_SPEC] = { .type = NLA_NESTED }, 1480f7b12606SJiri Pirko [IFLA_EXT_MASK] = { .type = NLA_U32 }, 1481f7b12606SJiri Pirko [IFLA_PROMISCUITY] = { .type = NLA_U32 }, 1482f7b12606SJiri Pirko [IFLA_NUM_TX_QUEUES] = { .type = NLA_U32 }, 1483f7b12606SJiri Pirko [IFLA_NUM_RX_QUEUES] = { .type = NLA_U32 }, 148402637fceSJiri Pirko [IFLA_PHYS_PORT_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN }, 14852d3b479dSdavid decotigny [IFLA_CARRIER_CHANGES] = { .type = NLA_U32 }, /* ignored */ 148682f28412SJiri Pirko [IFLA_PHYS_SWITCH_ID] = { .type = NLA_BINARY, .len = MAX_PHYS_ITEM_ID_LEN }, 1487317f4810SNicolas Dichtel [IFLA_LINK_NETNSID] = { .type = NLA_S32 }, 148888d6378bSAnuradha Karuppiah [IFLA_PROTO_DOWN] = { .type = NLA_U8 }, 1489d1fdd913SBrenden Blanco [IFLA_XDP] = { .type = NLA_NESTED }, 14903d3ea5afSVlad Yasevich [IFLA_EVENT] = { .type = NLA_U32 }, 1491db833d40SSerhey Popovych [IFLA_GROUP] = { .type = NLA_U32 }, 1492f7b12606SJiri Pirko }; 1493f7b12606SJiri Pirko 1494f7b12606SJiri Pirko static const struct nla_policy ifla_info_policy[IFLA_INFO_MAX+1] = { 1495f7b12606SJiri Pirko [IFLA_INFO_KIND] = { .type = NLA_STRING }, 1496f7b12606SJiri Pirko [IFLA_INFO_DATA] = { .type = NLA_NESTED }, 1497f7b12606SJiri Pirko [IFLA_INFO_SLAVE_KIND] = { .type = NLA_STRING }, 1498f7b12606SJiri Pirko [IFLA_INFO_SLAVE_DATA] = { .type = NLA_NESTED }, 1499f7b12606SJiri Pirko }; 1500f7b12606SJiri Pirko 1501f7b12606SJiri Pirko static const struct nla_policy ifla_vf_policy[IFLA_VF_MAX+1] = { 1502364d5716SDaniel Borkmann [IFLA_VF_MAC] = { .len = sizeof(struct ifla_vf_mac) }, 1503364d5716SDaniel Borkmann [IFLA_VF_VLAN] = { .len = sizeof(struct ifla_vf_vlan) }, 150479aab093SMoshe Shemesh [IFLA_VF_VLAN_LIST] = { .type = NLA_NESTED }, 1505364d5716SDaniel Borkmann [IFLA_VF_TX_RATE] = { .len = sizeof(struct ifla_vf_tx_rate) }, 1506364d5716SDaniel Borkmann [IFLA_VF_SPOOFCHK] = { .len = sizeof(struct ifla_vf_spoofchk) }, 1507364d5716SDaniel Borkmann [IFLA_VF_RATE] = { .len = sizeof(struct ifla_vf_rate) }, 1508364d5716SDaniel Borkmann [IFLA_VF_LINK_STATE] = { .len = sizeof(struct ifla_vf_link_state) }, 150901a3d796SVlad Zolotarov [IFLA_VF_RSS_QUERY_EN] = { .len = sizeof(struct ifla_vf_rss_query_en) }, 15103b766cd8SEran Ben Elisha [IFLA_VF_STATS] = { .type = NLA_NESTED }, 1511dd461d6aSHiroshi Shimamoto [IFLA_VF_TRUST] = { .len = sizeof(struct ifla_vf_trust) }, 1512cc8e27ccSEli Cohen [IFLA_VF_IB_NODE_GUID] = { .len = sizeof(struct ifla_vf_guid) }, 1513cc8e27ccSEli Cohen [IFLA_VF_IB_PORT_GUID] = { .len = sizeof(struct ifla_vf_guid) }, 15143b766cd8SEran Ben Elisha }; 15153b766cd8SEran Ben Elisha 1516f7b12606SJiri Pirko static const struct nla_policy ifla_port_policy[IFLA_PORT_MAX+1] = { 1517f7b12606SJiri Pirko [IFLA_PORT_VF] = { .type = NLA_U32 }, 1518f7b12606SJiri Pirko [IFLA_PORT_PROFILE] = { .type = NLA_STRING, 1519f7b12606SJiri Pirko .len = PORT_PROFILE_MAX }, 1520f7b12606SJiri Pirko [IFLA_PORT_INSTANCE_UUID] = { .type = NLA_BINARY, 1521f7b12606SJiri Pirko .len = PORT_UUID_MAX }, 1522f7b12606SJiri Pirko [IFLA_PORT_HOST_UUID] = { .type = NLA_STRING, 1523f7b12606SJiri Pirko .len = PORT_UUID_MAX }, 1524f7b12606SJiri Pirko [IFLA_PORT_REQUEST] = { .type = NLA_U8, }, 1525f7b12606SJiri Pirko [IFLA_PORT_RESPONSE] = { .type = NLA_U16, }, 1526025331dfSDaniel Borkmann 1527025331dfSDaniel Borkmann /* Unused, but we need to keep it here since user space could 1528025331dfSDaniel Borkmann * fill it. It's also broken with regard to NLA_BINARY use in 1529025331dfSDaniel Borkmann * combination with structs. 1530025331dfSDaniel Borkmann */ 1531025331dfSDaniel Borkmann [IFLA_PORT_VSI_TYPE] = { .type = NLA_BINARY, 1532025331dfSDaniel Borkmann .len = sizeof(struct ifla_port_vsi) }, 1533f7b12606SJiri Pirko }; 1534f7b12606SJiri Pirko 1535d1fdd913SBrenden Blanco static const struct nla_policy ifla_xdp_policy[IFLA_XDP_MAX + 1] = { 1536d1fdd913SBrenden Blanco [IFLA_XDP_FD] = { .type = NLA_S32 }, 1537d1fdd913SBrenden Blanco [IFLA_XDP_ATTACHED] = { .type = NLA_U8 }, 153885de8576SDaniel Borkmann [IFLA_XDP_FLAGS] = { .type = NLA_U32 }, 153958038695SMartin KaFai Lau [IFLA_XDP_PROG_ID] = { .type = NLA_U32 }, 1540d1fdd913SBrenden Blanco }; 1541d1fdd913SBrenden Blanco 1542dc599f76SDavid Ahern static const struct rtnl_link_ops *linkinfo_to_kind_ops(const struct nlattr *nla) 1543dc599f76SDavid Ahern { 1544dc599f76SDavid Ahern const struct rtnl_link_ops *ops = NULL; 1545dc599f76SDavid Ahern struct nlattr *linfo[IFLA_INFO_MAX + 1]; 1546dc599f76SDavid Ahern 1547fceb6435SJohannes Berg if (nla_parse_nested(linfo, IFLA_INFO_MAX, nla, 1548fceb6435SJohannes Berg ifla_info_policy, NULL) < 0) 1549dc599f76SDavid Ahern return NULL; 1550dc599f76SDavid Ahern 1551dc599f76SDavid Ahern if (linfo[IFLA_INFO_KIND]) { 1552dc599f76SDavid Ahern char kind[MODULE_NAME_LEN]; 1553dc599f76SDavid Ahern 1554dc599f76SDavid Ahern nla_strlcpy(kind, linfo[IFLA_INFO_KIND], sizeof(kind)); 1555dc599f76SDavid Ahern ops = rtnl_link_ops_get(kind); 1556dc599f76SDavid Ahern } 1557dc599f76SDavid Ahern 1558dc599f76SDavid Ahern return ops; 1559dc599f76SDavid Ahern } 1560dc599f76SDavid Ahern 1561dc599f76SDavid Ahern static bool link_master_filtered(struct net_device *dev, int master_idx) 1562dc599f76SDavid Ahern { 1563dc599f76SDavid Ahern struct net_device *master; 1564dc599f76SDavid Ahern 1565dc599f76SDavid Ahern if (!master_idx) 1566dc599f76SDavid Ahern return false; 1567dc599f76SDavid Ahern 1568dc599f76SDavid Ahern master = netdev_master_upper_dev_get(dev); 1569dc599f76SDavid Ahern if (!master || master->ifindex != master_idx) 1570dc599f76SDavid Ahern return true; 1571dc599f76SDavid Ahern 1572dc599f76SDavid Ahern return false; 1573dc599f76SDavid Ahern } 1574dc599f76SDavid Ahern 1575dc599f76SDavid Ahern static bool link_kind_filtered(const struct net_device *dev, 1576dc599f76SDavid Ahern const struct rtnl_link_ops *kind_ops) 1577dc599f76SDavid Ahern { 1578dc599f76SDavid Ahern if (kind_ops && dev->rtnl_link_ops != kind_ops) 1579dc599f76SDavid Ahern return true; 1580dc599f76SDavid Ahern 1581dc599f76SDavid Ahern return false; 1582dc599f76SDavid Ahern } 1583dc599f76SDavid Ahern 1584dc599f76SDavid Ahern static bool link_dump_filtered(struct net_device *dev, 1585dc599f76SDavid Ahern int master_idx, 1586dc599f76SDavid Ahern const struct rtnl_link_ops *kind_ops) 1587dc599f76SDavid Ahern { 1588dc599f76SDavid Ahern if (link_master_filtered(dev, master_idx) || 1589dc599f76SDavid Ahern link_kind_filtered(dev, kind_ops)) 1590dc599f76SDavid Ahern return true; 1591dc599f76SDavid Ahern 1592dc599f76SDavid Ahern return false; 1593dc599f76SDavid Ahern } 1594dc599f76SDavid Ahern 1595b60c5115SThomas Graf static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) 15961da177e4SLinus Torvalds { 15973b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 15987c28bd0bSEric Dumazet int h, s_h; 15997c28bd0bSEric Dumazet int idx = 0, s_idx; 16001da177e4SLinus Torvalds struct net_device *dev; 16017c28bd0bSEric Dumazet struct hlist_head *head; 1602115c9b81SGreg Rose struct nlattr *tb[IFLA_MAX+1]; 1603115c9b81SGreg Rose u32 ext_filter_mask = 0; 1604dc599f76SDavid Ahern const struct rtnl_link_ops *kind_ops = NULL; 1605dc599f76SDavid Ahern unsigned int flags = NLM_F_MULTI; 1606dc599f76SDavid Ahern int master_idx = 0; 1607973462bbSDavid Gibson int err; 1608e5eca6d4SMichal Schmidt int hdrlen; 16091da177e4SLinus Torvalds 16107c28bd0bSEric Dumazet s_h = cb->args[0]; 16117c28bd0bSEric Dumazet s_idx = cb->args[1]; 16127c28bd0bSEric Dumazet 16134e985adaSThomas Graf cb->seq = net->dev_base_seq; 16144e985adaSThomas Graf 1615e5eca6d4SMichal Schmidt /* A hack to preserve kernel<->userspace interface. 1616e5eca6d4SMichal Schmidt * The correct header is ifinfomsg. It is consistent with rtnl_getlink. 1617e5eca6d4SMichal Schmidt * However, before Linux v3.9 the code here assumed rtgenmsg and that's 1618e5eca6d4SMichal Schmidt * what iproute2 < v3.9.0 used. 1619e5eca6d4SMichal Schmidt * We can detect the old iproute2. Even including the IFLA_EXT_MASK 1620e5eca6d4SMichal Schmidt * attribute, its netlink message is shorter than struct ifinfomsg. 1621e5eca6d4SMichal Schmidt */ 1622e5eca6d4SMichal Schmidt hdrlen = nlmsg_len(cb->nlh) < sizeof(struct ifinfomsg) ? 1623e5eca6d4SMichal Schmidt sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg); 1624e5eca6d4SMichal Schmidt 1625fceb6435SJohannes Berg if (nlmsg_parse(cb->nlh, hdrlen, tb, IFLA_MAX, 1626fceb6435SJohannes Berg ifla_policy, NULL) >= 0) { 1627115c9b81SGreg Rose if (tb[IFLA_EXT_MASK]) 1628115c9b81SGreg Rose ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); 1629dc599f76SDavid Ahern 1630dc599f76SDavid Ahern if (tb[IFLA_MASTER]) 1631dc599f76SDavid Ahern master_idx = nla_get_u32(tb[IFLA_MASTER]); 1632dc599f76SDavid Ahern 1633dc599f76SDavid Ahern if (tb[IFLA_LINKINFO]) 1634dc599f76SDavid Ahern kind_ops = linkinfo_to_kind_ops(tb[IFLA_LINKINFO]); 1635dc599f76SDavid Ahern 1636dc599f76SDavid Ahern if (master_idx || kind_ops) 1637dc599f76SDavid Ahern flags |= NLM_F_DUMP_FILTERED; 1638a4b64fbeSEric Dumazet } 1639115c9b81SGreg Rose 16407c28bd0bSEric Dumazet for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { 16417562f876SPavel Emelianov idx = 0; 16427c28bd0bSEric Dumazet head = &net->dev_index_head[h]; 1643cac5e65eSEric Dumazet hlist_for_each_entry(dev, head, index_hlist) { 1644dc599f76SDavid Ahern if (link_dump_filtered(dev, master_idx, kind_ops)) 16453f0ae05dSZhang Shengju goto cont; 16461da177e4SLinus Torvalds if (idx < s_idx) 16477562f876SPavel Emelianov goto cont; 1648973462bbSDavid Gibson err = rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, 164915e47304SEric W. Biederman NETLINK_CB(cb->skb).portid, 16507c28bd0bSEric Dumazet cb->nlh->nlmsg_seq, 0, 1651dc599f76SDavid Ahern flags, 16523d3ea5afSVlad Yasevich ext_filter_mask, 0); 1653973462bbSDavid Gibson 1654f6c5775fSDavid Ahern if (err < 0) { 1655f6c5775fSDavid Ahern if (likely(skb->len)) 16567c28bd0bSEric Dumazet goto out; 16574e985adaSThomas Graf 1658f6c5775fSDavid Ahern goto out_err; 1659f6c5775fSDavid Ahern } 1660f6c5775fSDavid Ahern 16614e985adaSThomas Graf nl_dump_check_consistent(cb, nlmsg_hdr(skb)); 16627562f876SPavel Emelianov cont: 16637562f876SPavel Emelianov idx++; 16641da177e4SLinus Torvalds } 16657c28bd0bSEric Dumazet } 16667c28bd0bSEric Dumazet out: 1667f6c5775fSDavid Ahern err = skb->len; 1668f6c5775fSDavid Ahern out_err: 16697c28bd0bSEric Dumazet cb->args[1] = idx; 16707c28bd0bSEric Dumazet cb->args[0] = h; 16711da177e4SLinus Torvalds 1672f6c5775fSDavid Ahern return err; 16731da177e4SLinus Torvalds } 16741da177e4SLinus Torvalds 1675fceb6435SJohannes Berg int rtnl_nla_parse_ifla(struct nlattr **tb, const struct nlattr *head, int len, 1676fceb6435SJohannes Berg struct netlink_ext_ack *exterr) 1677f7b12606SJiri Pirko { 1678fceb6435SJohannes Berg return nla_parse(tb, IFLA_MAX, head, len, ifla_policy, exterr); 1679f7b12606SJiri Pirko } 1680f7b12606SJiri Pirko EXPORT_SYMBOL(rtnl_nla_parse_ifla); 168157b61080SScott Feldman 168281adee47SEric W. Biederman struct net *rtnl_link_get_net(struct net *src_net, struct nlattr *tb[]) 168381adee47SEric W. Biederman { 168481adee47SEric W. Biederman struct net *net; 168581adee47SEric W. Biederman /* Examine the link attributes and figure out which 168681adee47SEric W. Biederman * network namespace we are talking about. 168781adee47SEric W. Biederman */ 168881adee47SEric W. Biederman if (tb[IFLA_NET_NS_PID]) 168981adee47SEric W. Biederman net = get_net_ns_by_pid(nla_get_u32(tb[IFLA_NET_NS_PID])); 1690f0630529SEric W. Biederman else if (tb[IFLA_NET_NS_FD]) 1691f0630529SEric W. Biederman net = get_net_ns_by_fd(nla_get_u32(tb[IFLA_NET_NS_FD])); 169281adee47SEric W. Biederman else 169381adee47SEric W. Biederman net = get_net(src_net); 169481adee47SEric W. Biederman return net; 169581adee47SEric W. Biederman } 169681adee47SEric W. Biederman EXPORT_SYMBOL(rtnl_link_get_net); 169781adee47SEric W. Biederman 16981840bb13SThomas Graf static int validate_linkmsg(struct net_device *dev, struct nlattr *tb[]) 16991840bb13SThomas Graf { 17001840bb13SThomas Graf if (dev) { 17011840bb13SThomas Graf if (tb[IFLA_ADDRESS] && 17021840bb13SThomas Graf nla_len(tb[IFLA_ADDRESS]) < dev->addr_len) 17031840bb13SThomas Graf return -EINVAL; 17041840bb13SThomas Graf 17051840bb13SThomas Graf if (tb[IFLA_BROADCAST] && 17061840bb13SThomas Graf nla_len(tb[IFLA_BROADCAST]) < dev->addr_len) 17071840bb13SThomas Graf return -EINVAL; 17081840bb13SThomas Graf } 17091840bb13SThomas Graf 1710cf7afbfeSThomas Graf if (tb[IFLA_AF_SPEC]) { 1711cf7afbfeSThomas Graf struct nlattr *af; 1712cf7afbfeSThomas Graf int rem, err; 1713cf7afbfeSThomas Graf 1714cf7afbfeSThomas Graf nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) { 1715cf7afbfeSThomas Graf const struct rtnl_af_ops *af_ops; 1716cf7afbfeSThomas Graf 1717cf7afbfeSThomas Graf if (!(af_ops = rtnl_af_lookup(nla_type(af)))) 1718cf7afbfeSThomas Graf return -EAFNOSUPPORT; 1719cf7afbfeSThomas Graf 1720cf7afbfeSThomas Graf if (!af_ops->set_link_af) 1721cf7afbfeSThomas Graf return -EOPNOTSUPP; 1722cf7afbfeSThomas Graf 1723cf7afbfeSThomas Graf if (af_ops->validate_link_af) { 17246d3a9a68SKurt Van Dijck err = af_ops->validate_link_af(dev, af); 1725cf7afbfeSThomas Graf if (err < 0) 1726cf7afbfeSThomas Graf return err; 1727cf7afbfeSThomas Graf } 1728cf7afbfeSThomas Graf } 1729cf7afbfeSThomas Graf } 1730cf7afbfeSThomas Graf 17311840bb13SThomas Graf return 0; 17321840bb13SThomas Graf } 17331840bb13SThomas Graf 1734cc8e27ccSEli Cohen static int handle_infiniband_guid(struct net_device *dev, struct ifla_vf_guid *ivt, 1735cc8e27ccSEli Cohen int guid_type) 1736cc8e27ccSEli Cohen { 1737cc8e27ccSEli Cohen const struct net_device_ops *ops = dev->netdev_ops; 1738cc8e27ccSEli Cohen 1739cc8e27ccSEli Cohen return ops->ndo_set_vf_guid(dev, ivt->vf, ivt->guid, guid_type); 1740cc8e27ccSEli Cohen } 1741cc8e27ccSEli Cohen 1742cc8e27ccSEli Cohen static int handle_vf_guid(struct net_device *dev, struct ifla_vf_guid *ivt, int guid_type) 1743cc8e27ccSEli Cohen { 1744cc8e27ccSEli Cohen if (dev->type != ARPHRD_INFINIBAND) 1745cc8e27ccSEli Cohen return -EOPNOTSUPP; 1746cc8e27ccSEli Cohen 1747cc8e27ccSEli Cohen return handle_infiniband_guid(dev, ivt, guid_type); 1748cc8e27ccSEli Cohen } 1749cc8e27ccSEli Cohen 17504f7d2cdfSDaniel Borkmann static int do_setvfinfo(struct net_device *dev, struct nlattr **tb) 1751c02db8c6SChris Wright { 1752c02db8c6SChris Wright const struct net_device_ops *ops = dev->netdev_ops; 17534f7d2cdfSDaniel Borkmann int err = -EINVAL; 1754c02db8c6SChris Wright 17554f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_MAC]) { 17564f7d2cdfSDaniel Borkmann struct ifla_vf_mac *ivm = nla_data(tb[IFLA_VF_MAC]); 17574f7d2cdfSDaniel Borkmann 1758c02db8c6SChris Wright err = -EOPNOTSUPP; 1759c02db8c6SChris Wright if (ops->ndo_set_vf_mac) 1760c02db8c6SChris Wright err = ops->ndo_set_vf_mac(dev, ivm->vf, 1761c02db8c6SChris Wright ivm->mac); 17624f7d2cdfSDaniel Borkmann if (err < 0) 17634f7d2cdfSDaniel Borkmann return err; 1764c02db8c6SChris Wright } 17654f7d2cdfSDaniel Borkmann 17664f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_VLAN]) { 17674f7d2cdfSDaniel Borkmann struct ifla_vf_vlan *ivv = nla_data(tb[IFLA_VF_VLAN]); 17684f7d2cdfSDaniel Borkmann 1769c02db8c6SChris Wright err = -EOPNOTSUPP; 1770c02db8c6SChris Wright if (ops->ndo_set_vf_vlan) 17714f7d2cdfSDaniel Borkmann err = ops->ndo_set_vf_vlan(dev, ivv->vf, ivv->vlan, 177279aab093SMoshe Shemesh ivv->qos, 177379aab093SMoshe Shemesh htons(ETH_P_8021Q)); 177479aab093SMoshe Shemesh if (err < 0) 177579aab093SMoshe Shemesh return err; 177679aab093SMoshe Shemesh } 177779aab093SMoshe Shemesh 177879aab093SMoshe Shemesh if (tb[IFLA_VF_VLAN_LIST]) { 177979aab093SMoshe Shemesh struct ifla_vf_vlan_info *ivvl[MAX_VLAN_LIST_LEN]; 178079aab093SMoshe Shemesh struct nlattr *attr; 178179aab093SMoshe Shemesh int rem, len = 0; 178279aab093SMoshe Shemesh 178379aab093SMoshe Shemesh err = -EOPNOTSUPP; 178479aab093SMoshe Shemesh if (!ops->ndo_set_vf_vlan) 178579aab093SMoshe Shemesh return err; 178679aab093SMoshe Shemesh 178779aab093SMoshe Shemesh nla_for_each_nested(attr, tb[IFLA_VF_VLAN_LIST], rem) { 178879aab093SMoshe Shemesh if (nla_type(attr) != IFLA_VF_VLAN_INFO || 178979aab093SMoshe Shemesh nla_len(attr) < NLA_HDRLEN) { 179079aab093SMoshe Shemesh return -EINVAL; 179179aab093SMoshe Shemesh } 179279aab093SMoshe Shemesh if (len >= MAX_VLAN_LIST_LEN) 179379aab093SMoshe Shemesh return -EOPNOTSUPP; 179479aab093SMoshe Shemesh ivvl[len] = nla_data(attr); 179579aab093SMoshe Shemesh 179679aab093SMoshe Shemesh len++; 179779aab093SMoshe Shemesh } 1798fa34cd94SArnd Bergmann if (len == 0) 1799fa34cd94SArnd Bergmann return -EINVAL; 1800fa34cd94SArnd Bergmann 180179aab093SMoshe Shemesh err = ops->ndo_set_vf_vlan(dev, ivvl[0]->vf, ivvl[0]->vlan, 180279aab093SMoshe Shemesh ivvl[0]->qos, ivvl[0]->vlan_proto); 18034f7d2cdfSDaniel Borkmann if (err < 0) 18044f7d2cdfSDaniel Borkmann return err; 1805c02db8c6SChris Wright } 18064f7d2cdfSDaniel Borkmann 18074f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_TX_RATE]) { 18084f7d2cdfSDaniel Borkmann struct ifla_vf_tx_rate *ivt = nla_data(tb[IFLA_VF_TX_RATE]); 1809ed616689SSucheta Chakraborty struct ifla_vf_info ivf; 18104f7d2cdfSDaniel Borkmann 1811c02db8c6SChris Wright err = -EOPNOTSUPP; 1812ed616689SSucheta Chakraborty if (ops->ndo_get_vf_config) 18134f7d2cdfSDaniel Borkmann err = ops->ndo_get_vf_config(dev, ivt->vf, &ivf); 18144f7d2cdfSDaniel Borkmann if (err < 0) 18154f7d2cdfSDaniel Borkmann return err; 18164f7d2cdfSDaniel Borkmann 1817ed616689SSucheta Chakraborty err = -EOPNOTSUPP; 1818ed616689SSucheta Chakraborty if (ops->ndo_set_vf_rate) 1819ed616689SSucheta Chakraborty err = ops->ndo_set_vf_rate(dev, ivt->vf, 1820ed616689SSucheta Chakraborty ivf.min_tx_rate, 1821c02db8c6SChris Wright ivt->rate); 18224f7d2cdfSDaniel Borkmann if (err < 0) 18234f7d2cdfSDaniel Borkmann return err; 1824c02db8c6SChris Wright } 18254f7d2cdfSDaniel Borkmann 18264f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_RATE]) { 18274f7d2cdfSDaniel Borkmann struct ifla_vf_rate *ivt = nla_data(tb[IFLA_VF_RATE]); 18284f7d2cdfSDaniel Borkmann 1829ed616689SSucheta Chakraborty err = -EOPNOTSUPP; 1830ed616689SSucheta Chakraborty if (ops->ndo_set_vf_rate) 1831ed616689SSucheta Chakraborty err = ops->ndo_set_vf_rate(dev, ivt->vf, 1832ed616689SSucheta Chakraborty ivt->min_tx_rate, 1833ed616689SSucheta Chakraborty ivt->max_tx_rate); 18344f7d2cdfSDaniel Borkmann if (err < 0) 18354f7d2cdfSDaniel Borkmann return err; 1836ed616689SSucheta Chakraborty } 18374f7d2cdfSDaniel Borkmann 18384f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_SPOOFCHK]) { 18394f7d2cdfSDaniel Borkmann struct ifla_vf_spoofchk *ivs = nla_data(tb[IFLA_VF_SPOOFCHK]); 18404f7d2cdfSDaniel Borkmann 18415f8444a3SGreg Rose err = -EOPNOTSUPP; 18425f8444a3SGreg Rose if (ops->ndo_set_vf_spoofchk) 18435f8444a3SGreg Rose err = ops->ndo_set_vf_spoofchk(dev, ivs->vf, 18445f8444a3SGreg Rose ivs->setting); 18454f7d2cdfSDaniel Borkmann if (err < 0) 18464f7d2cdfSDaniel Borkmann return err; 18475f8444a3SGreg Rose } 18484f7d2cdfSDaniel Borkmann 18494f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_LINK_STATE]) { 18504f7d2cdfSDaniel Borkmann struct ifla_vf_link_state *ivl = nla_data(tb[IFLA_VF_LINK_STATE]); 18514f7d2cdfSDaniel Borkmann 18521d8faf48SRony Efraim err = -EOPNOTSUPP; 18531d8faf48SRony Efraim if (ops->ndo_set_vf_link_state) 18541d8faf48SRony Efraim err = ops->ndo_set_vf_link_state(dev, ivl->vf, 18551d8faf48SRony Efraim ivl->link_state); 18564f7d2cdfSDaniel Borkmann if (err < 0) 18574f7d2cdfSDaniel Borkmann return err; 18581d8faf48SRony Efraim } 18594f7d2cdfSDaniel Borkmann 18604f7d2cdfSDaniel Borkmann if (tb[IFLA_VF_RSS_QUERY_EN]) { 186101a3d796SVlad Zolotarov struct ifla_vf_rss_query_en *ivrssq_en; 186201a3d796SVlad Zolotarov 186301a3d796SVlad Zolotarov err = -EOPNOTSUPP; 18644f7d2cdfSDaniel Borkmann ivrssq_en = nla_data(tb[IFLA_VF_RSS_QUERY_EN]); 186501a3d796SVlad Zolotarov if (ops->ndo_set_vf_rss_query_en) 18664f7d2cdfSDaniel Borkmann err = ops->ndo_set_vf_rss_query_en(dev, ivrssq_en->vf, 186701a3d796SVlad Zolotarov ivrssq_en->setting); 18684f7d2cdfSDaniel Borkmann if (err < 0) 18694f7d2cdfSDaniel Borkmann return err; 187001a3d796SVlad Zolotarov } 18714f7d2cdfSDaniel Borkmann 1872dd461d6aSHiroshi Shimamoto if (tb[IFLA_VF_TRUST]) { 1873dd461d6aSHiroshi Shimamoto struct ifla_vf_trust *ivt = nla_data(tb[IFLA_VF_TRUST]); 1874dd461d6aSHiroshi Shimamoto 1875dd461d6aSHiroshi Shimamoto err = -EOPNOTSUPP; 1876dd461d6aSHiroshi Shimamoto if (ops->ndo_set_vf_trust) 1877dd461d6aSHiroshi Shimamoto err = ops->ndo_set_vf_trust(dev, ivt->vf, ivt->setting); 1878dd461d6aSHiroshi Shimamoto if (err < 0) 1879dd461d6aSHiroshi Shimamoto return err; 1880dd461d6aSHiroshi Shimamoto } 1881dd461d6aSHiroshi Shimamoto 1882cc8e27ccSEli Cohen if (tb[IFLA_VF_IB_NODE_GUID]) { 1883cc8e27ccSEli Cohen struct ifla_vf_guid *ivt = nla_data(tb[IFLA_VF_IB_NODE_GUID]); 1884cc8e27ccSEli Cohen 1885cc8e27ccSEli Cohen if (!ops->ndo_set_vf_guid) 1886cc8e27ccSEli Cohen return -EOPNOTSUPP; 1887cc8e27ccSEli Cohen 1888cc8e27ccSEli Cohen return handle_vf_guid(dev, ivt, IFLA_VF_IB_NODE_GUID); 1889cc8e27ccSEli Cohen } 1890cc8e27ccSEli Cohen 1891cc8e27ccSEli Cohen if (tb[IFLA_VF_IB_PORT_GUID]) { 1892cc8e27ccSEli Cohen struct ifla_vf_guid *ivt = nla_data(tb[IFLA_VF_IB_PORT_GUID]); 1893cc8e27ccSEli Cohen 1894cc8e27ccSEli Cohen if (!ops->ndo_set_vf_guid) 1895cc8e27ccSEli Cohen return -EOPNOTSUPP; 1896cc8e27ccSEli Cohen 1897cc8e27ccSEli Cohen return handle_vf_guid(dev, ivt, IFLA_VF_IB_PORT_GUID); 1898cc8e27ccSEli Cohen } 1899cc8e27ccSEli Cohen 1900c02db8c6SChris Wright return err; 1901c02db8c6SChris Wright } 1902c02db8c6SChris Wright 1903fbaec0eaSJiri Pirko static int do_set_master(struct net_device *dev, int ifindex) 1904fbaec0eaSJiri Pirko { 1905898e5061SJiri Pirko struct net_device *upper_dev = netdev_master_upper_dev_get(dev); 1906fbaec0eaSJiri Pirko const struct net_device_ops *ops; 1907fbaec0eaSJiri Pirko int err; 1908fbaec0eaSJiri Pirko 1909898e5061SJiri Pirko if (upper_dev) { 1910898e5061SJiri Pirko if (upper_dev->ifindex == ifindex) 1911fbaec0eaSJiri Pirko return 0; 1912898e5061SJiri Pirko ops = upper_dev->netdev_ops; 1913fbaec0eaSJiri Pirko if (ops->ndo_del_slave) { 1914898e5061SJiri Pirko err = ops->ndo_del_slave(upper_dev, dev); 1915fbaec0eaSJiri Pirko if (err) 1916fbaec0eaSJiri Pirko return err; 1917fbaec0eaSJiri Pirko } else { 1918fbaec0eaSJiri Pirko return -EOPNOTSUPP; 1919fbaec0eaSJiri Pirko } 1920fbaec0eaSJiri Pirko } 1921fbaec0eaSJiri Pirko 1922fbaec0eaSJiri Pirko if (ifindex) { 1923898e5061SJiri Pirko upper_dev = __dev_get_by_index(dev_net(dev), ifindex); 1924898e5061SJiri Pirko if (!upper_dev) 1925fbaec0eaSJiri Pirko return -EINVAL; 1926898e5061SJiri Pirko ops = upper_dev->netdev_ops; 1927fbaec0eaSJiri Pirko if (ops->ndo_add_slave) { 1928898e5061SJiri Pirko err = ops->ndo_add_slave(upper_dev, dev); 1929fbaec0eaSJiri Pirko if (err) 1930fbaec0eaSJiri Pirko return err; 1931fbaec0eaSJiri Pirko } else { 1932fbaec0eaSJiri Pirko return -EOPNOTSUPP; 1933fbaec0eaSJiri Pirko } 1934fbaec0eaSJiri Pirko } 1935fbaec0eaSJiri Pirko return 0; 1936fbaec0eaSJiri Pirko } 1937fbaec0eaSJiri Pirko 193890c325e3SNicolas Dichtel #define DO_SETLINK_MODIFIED 0x01 1939ba998906SNicolas Dichtel /* notify flag means notify + modified. */ 1940ba998906SNicolas Dichtel #define DO_SETLINK_NOTIFY 0x03 194190f62cf3SEric W. Biederman static int do_setlink(const struct sk_buff *skb, 194290f62cf3SEric W. Biederman struct net_device *dev, struct ifinfomsg *ifm, 1943ddf9f970SJakub Kicinski struct netlink_ext_ack *extack, 194490c325e3SNicolas Dichtel struct nlattr **tb, char *ifname, int status) 19450157f60cSPatrick McHardy { 1946d314774cSStephen Hemminger const struct net_device_ops *ops = dev->netdev_ops; 19470157f60cSPatrick McHardy int err; 19480157f60cSPatrick McHardy 1949f0630529SEric W. Biederman if (tb[IFLA_NET_NS_PID] || tb[IFLA_NET_NS_FD]) { 195081adee47SEric W. Biederman struct net *net = rtnl_link_get_net(dev_net(dev), tb); 1951d8a5ec67SEric W. Biederman if (IS_ERR(net)) { 1952d8a5ec67SEric W. Biederman err = PTR_ERR(net); 1953d8a5ec67SEric W. Biederman goto errout; 1954d8a5ec67SEric W. Biederman } 195590f62cf3SEric W. Biederman if (!netlink_ns_capable(skb, net->user_ns, CAP_NET_ADMIN)) { 1956e0ebde0eSNicolas Dichtel put_net(net); 1957b51642f6SEric W. Biederman err = -EPERM; 1958b51642f6SEric W. Biederman goto errout; 1959b51642f6SEric W. Biederman } 1960d8a5ec67SEric W. Biederman err = dev_change_net_namespace(dev, net, ifname); 1961d8a5ec67SEric W. Biederman put_net(net); 1962d8a5ec67SEric W. Biederman if (err) 1963d8a5ec67SEric W. Biederman goto errout; 196490c325e3SNicolas Dichtel status |= DO_SETLINK_MODIFIED; 1965d8a5ec67SEric W. Biederman } 1966d8a5ec67SEric W. Biederman 19670157f60cSPatrick McHardy if (tb[IFLA_MAP]) { 19680157f60cSPatrick McHardy struct rtnl_link_ifmap *u_map; 19690157f60cSPatrick McHardy struct ifmap k_map; 19700157f60cSPatrick McHardy 1971d314774cSStephen Hemminger if (!ops->ndo_set_config) { 19720157f60cSPatrick McHardy err = -EOPNOTSUPP; 19730157f60cSPatrick McHardy goto errout; 19740157f60cSPatrick McHardy } 19750157f60cSPatrick McHardy 19760157f60cSPatrick McHardy if (!netif_device_present(dev)) { 19770157f60cSPatrick McHardy err = -ENODEV; 19780157f60cSPatrick McHardy goto errout; 19790157f60cSPatrick McHardy } 19800157f60cSPatrick McHardy 19810157f60cSPatrick McHardy u_map = nla_data(tb[IFLA_MAP]); 19820157f60cSPatrick McHardy k_map.mem_start = (unsigned long) u_map->mem_start; 19830157f60cSPatrick McHardy k_map.mem_end = (unsigned long) u_map->mem_end; 19840157f60cSPatrick McHardy k_map.base_addr = (unsigned short) u_map->base_addr; 19850157f60cSPatrick McHardy k_map.irq = (unsigned char) u_map->irq; 19860157f60cSPatrick McHardy k_map.dma = (unsigned char) u_map->dma; 19870157f60cSPatrick McHardy k_map.port = (unsigned char) u_map->port; 19880157f60cSPatrick McHardy 1989d314774cSStephen Hemminger err = ops->ndo_set_config(dev, &k_map); 19900157f60cSPatrick McHardy if (err < 0) 19910157f60cSPatrick McHardy goto errout; 19920157f60cSPatrick McHardy 1993ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 19940157f60cSPatrick McHardy } 19950157f60cSPatrick McHardy 19960157f60cSPatrick McHardy if (tb[IFLA_ADDRESS]) { 19970157f60cSPatrick McHardy struct sockaddr *sa; 19980157f60cSPatrick McHardy int len; 19990157f60cSPatrick McHardy 2000153711f9SWANG Cong len = sizeof(sa_family_t) + max_t(size_t, dev->addr_len, 2001153711f9SWANG Cong sizeof(*sa)); 20020157f60cSPatrick McHardy sa = kmalloc(len, GFP_KERNEL); 20030157f60cSPatrick McHardy if (!sa) { 20040157f60cSPatrick McHardy err = -ENOMEM; 20050157f60cSPatrick McHardy goto errout; 20060157f60cSPatrick McHardy } 20070157f60cSPatrick McHardy sa->sa_family = dev->type; 20080157f60cSPatrick McHardy memcpy(sa->sa_data, nla_data(tb[IFLA_ADDRESS]), 20090157f60cSPatrick McHardy dev->addr_len); 2010e7c3273eSJiri Pirko err = dev_set_mac_address(dev, sa); 20110157f60cSPatrick McHardy kfree(sa); 20120157f60cSPatrick McHardy if (err) 20130157f60cSPatrick McHardy goto errout; 201490c325e3SNicolas Dichtel status |= DO_SETLINK_MODIFIED; 20150157f60cSPatrick McHardy } 20160157f60cSPatrick McHardy 20170157f60cSPatrick McHardy if (tb[IFLA_MTU]) { 20180157f60cSPatrick McHardy err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU])); 20190157f60cSPatrick McHardy if (err < 0) 20200157f60cSPatrick McHardy goto errout; 202190c325e3SNicolas Dichtel status |= DO_SETLINK_MODIFIED; 20220157f60cSPatrick McHardy } 20230157f60cSPatrick McHardy 2024cbda10faSVlad Dogaru if (tb[IFLA_GROUP]) { 2025cbda10faSVlad Dogaru dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP])); 2026ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 2027cbda10faSVlad Dogaru } 2028cbda10faSVlad Dogaru 20290157f60cSPatrick McHardy /* 20300157f60cSPatrick McHardy * Interface selected by interface index but interface 20310157f60cSPatrick McHardy * name provided implies that a name change has been 20320157f60cSPatrick McHardy * requested. 20330157f60cSPatrick McHardy */ 20340157f60cSPatrick McHardy if (ifm->ifi_index > 0 && ifname[0]) { 20350157f60cSPatrick McHardy err = dev_change_name(dev, ifname); 20360157f60cSPatrick McHardy if (err < 0) 20370157f60cSPatrick McHardy goto errout; 203890c325e3SNicolas Dichtel status |= DO_SETLINK_MODIFIED; 20390157f60cSPatrick McHardy } 20400157f60cSPatrick McHardy 20410b815a1aSStephen Hemminger if (tb[IFLA_IFALIAS]) { 20420b815a1aSStephen Hemminger err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]), 20430b815a1aSStephen Hemminger nla_len(tb[IFLA_IFALIAS])); 20440b815a1aSStephen Hemminger if (err < 0) 20450b815a1aSStephen Hemminger goto errout; 2046ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 20470b815a1aSStephen Hemminger } 20480b815a1aSStephen Hemminger 20490157f60cSPatrick McHardy if (tb[IFLA_BROADCAST]) { 20500157f60cSPatrick McHardy nla_memcpy(dev->broadcast, tb[IFLA_BROADCAST], dev->addr_len); 2051e7c3273eSJiri Pirko call_netdevice_notifiers(NETDEV_CHANGEADDR, dev); 20520157f60cSPatrick McHardy } 20530157f60cSPatrick McHardy 20540157f60cSPatrick McHardy if (ifm->ifi_flags || ifm->ifi_change) { 20553729d502SPatrick McHardy err = dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); 20565f9021cfSJohannes Berg if (err < 0) 20575f9021cfSJohannes Berg goto errout; 20580157f60cSPatrick McHardy } 20590157f60cSPatrick McHardy 2060fbaec0eaSJiri Pirko if (tb[IFLA_MASTER]) { 2061fbaec0eaSJiri Pirko err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER])); 2062fbaec0eaSJiri Pirko if (err) 2063fbaec0eaSJiri Pirko goto errout; 206490c325e3SNicolas Dichtel status |= DO_SETLINK_MODIFIED; 2065fbaec0eaSJiri Pirko } 2066fbaec0eaSJiri Pirko 20679a57247fSJiri Pirko if (tb[IFLA_CARRIER]) { 20689a57247fSJiri Pirko err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER])); 20699a57247fSJiri Pirko if (err) 20709a57247fSJiri Pirko goto errout; 207190c325e3SNicolas Dichtel status |= DO_SETLINK_MODIFIED; 20729a57247fSJiri Pirko } 20739a57247fSJiri Pirko 20745d1180fcSNicolas Dichtel if (tb[IFLA_TXQLEN]) { 20750cd29503SAlexey Dobriyan unsigned int value = nla_get_u32(tb[IFLA_TXQLEN]); 20760cd29503SAlexey Dobriyan unsigned int orig_len = dev->tx_queue_len; 20775d1180fcSNicolas Dichtel 207808294a26SJason Wang if (dev->tx_queue_len ^ value) { 20795d1180fcSNicolas Dichtel dev->tx_queue_len = value; 208008294a26SJason Wang err = call_netdevice_notifiers( 208108294a26SJason Wang NETDEV_CHANGE_TX_QUEUE_LEN, dev); 208208294a26SJason Wang err = notifier_to_errno(err); 208308294a26SJason Wang if (err) { 208408294a26SJason Wang dev->tx_queue_len = orig_len; 208508294a26SJason Wang goto errout; 208608294a26SJason Wang } 208708294a26SJason Wang status |= DO_SETLINK_NOTIFY; 208808294a26SJason Wang } 20895d1180fcSNicolas Dichtel } 20900157f60cSPatrick McHardy 20910157f60cSPatrick McHardy if (tb[IFLA_OPERSTATE]) 209293b2d4a2SDavid S. Miller set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); 20930157f60cSPatrick McHardy 20940157f60cSPatrick McHardy if (tb[IFLA_LINKMODE]) { 20951889b0e7SNicolas Dichtel unsigned char value = nla_get_u8(tb[IFLA_LINKMODE]); 20961889b0e7SNicolas Dichtel 20970157f60cSPatrick McHardy write_lock_bh(&dev_base_lock); 20981889b0e7SNicolas Dichtel if (dev->link_mode ^ value) 2099ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 21001889b0e7SNicolas Dichtel dev->link_mode = value; 210193b2d4a2SDavid S. Miller write_unlock_bh(&dev_base_lock); 21020157f60cSPatrick McHardy } 21030157f60cSPatrick McHardy 2104c02db8c6SChris Wright if (tb[IFLA_VFINFO_LIST]) { 21054f7d2cdfSDaniel Borkmann struct nlattr *vfinfo[IFLA_VF_MAX + 1]; 2106c02db8c6SChris Wright struct nlattr *attr; 2107c02db8c6SChris Wright int rem; 21084f7d2cdfSDaniel Borkmann 2109c02db8c6SChris Wright nla_for_each_nested(attr, tb[IFLA_VFINFO_LIST], rem) { 21104f7d2cdfSDaniel Borkmann if (nla_type(attr) != IFLA_VF_INFO || 21114f7d2cdfSDaniel Borkmann nla_len(attr) < NLA_HDRLEN) { 2112253683bbSDavid Howells err = -EINVAL; 2113c02db8c6SChris Wright goto errout; 2114253683bbSDavid Howells } 21154f7d2cdfSDaniel Borkmann err = nla_parse_nested(vfinfo, IFLA_VF_MAX, attr, 2116fceb6435SJohannes Berg ifla_vf_policy, NULL); 21174f7d2cdfSDaniel Borkmann if (err < 0) 21184f7d2cdfSDaniel Borkmann goto errout; 21194f7d2cdfSDaniel Borkmann err = do_setvfinfo(dev, vfinfo); 2120ebc08a6fSWilliams, Mitch A if (err < 0) 2121ebc08a6fSWilliams, Mitch A goto errout; 2122ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 2123ebc08a6fSWilliams, Mitch A } 2124ebc08a6fSWilliams, Mitch A } 21250157f60cSPatrick McHardy err = 0; 21260157f60cSPatrick McHardy 212757b61080SScott Feldman if (tb[IFLA_VF_PORTS]) { 212857b61080SScott Feldman struct nlattr *port[IFLA_PORT_MAX+1]; 212957b61080SScott Feldman struct nlattr *attr; 213057b61080SScott Feldman int vf; 213157b61080SScott Feldman int rem; 213257b61080SScott Feldman 213357b61080SScott Feldman err = -EOPNOTSUPP; 213457b61080SScott Feldman if (!ops->ndo_set_vf_port) 213557b61080SScott Feldman goto errout; 213657b61080SScott Feldman 213757b61080SScott Feldman nla_for_each_nested(attr, tb[IFLA_VF_PORTS], rem) { 2138035d210fSDaniel Borkmann if (nla_type(attr) != IFLA_VF_PORT || 2139035d210fSDaniel Borkmann nla_len(attr) < NLA_HDRLEN) { 2140035d210fSDaniel Borkmann err = -EINVAL; 2141035d210fSDaniel Borkmann goto errout; 2142035d210fSDaniel Borkmann } 2143035d210fSDaniel Borkmann err = nla_parse_nested(port, IFLA_PORT_MAX, attr, 2144fceb6435SJohannes Berg ifla_port_policy, NULL); 214557b61080SScott Feldman if (err < 0) 214657b61080SScott Feldman goto errout; 214757b61080SScott Feldman if (!port[IFLA_PORT_VF]) { 214857b61080SScott Feldman err = -EOPNOTSUPP; 214957b61080SScott Feldman goto errout; 215057b61080SScott Feldman } 215157b61080SScott Feldman vf = nla_get_u32(port[IFLA_PORT_VF]); 215257b61080SScott Feldman err = ops->ndo_set_vf_port(dev, vf, port); 215357b61080SScott Feldman if (err < 0) 215457b61080SScott Feldman goto errout; 2155ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 215657b61080SScott Feldman } 215757b61080SScott Feldman } 215857b61080SScott Feldman err = 0; 215957b61080SScott Feldman 216057b61080SScott Feldman if (tb[IFLA_PORT_SELF]) { 216157b61080SScott Feldman struct nlattr *port[IFLA_PORT_MAX+1]; 216257b61080SScott Feldman 216357b61080SScott Feldman err = nla_parse_nested(port, IFLA_PORT_MAX, 2164fceb6435SJohannes Berg tb[IFLA_PORT_SELF], ifla_port_policy, 2165fceb6435SJohannes Berg NULL); 216657b61080SScott Feldman if (err < 0) 216757b61080SScott Feldman goto errout; 216857b61080SScott Feldman 216957b61080SScott Feldman err = -EOPNOTSUPP; 217057b61080SScott Feldman if (ops->ndo_set_vf_port) 217157b61080SScott Feldman err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port); 217257b61080SScott Feldman if (err < 0) 217357b61080SScott Feldman goto errout; 2174ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 217557b61080SScott Feldman } 2176f8ff182cSThomas Graf 2177f8ff182cSThomas Graf if (tb[IFLA_AF_SPEC]) { 2178f8ff182cSThomas Graf struct nlattr *af; 2179f8ff182cSThomas Graf int rem; 2180f8ff182cSThomas Graf 2181f8ff182cSThomas Graf nla_for_each_nested(af, tb[IFLA_AF_SPEC], rem) { 2182f8ff182cSThomas Graf const struct rtnl_af_ops *af_ops; 2183f8ff182cSThomas Graf 2184f8ff182cSThomas Graf if (!(af_ops = rtnl_af_lookup(nla_type(af)))) 2185cf7afbfeSThomas Graf BUG(); 2186f8ff182cSThomas Graf 2187cf7afbfeSThomas Graf err = af_ops->set_link_af(dev, af); 2188f8ff182cSThomas Graf if (err < 0) 2189f8ff182cSThomas Graf goto errout; 2190f8ff182cSThomas Graf 2191ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 2192f8ff182cSThomas Graf } 2193f8ff182cSThomas Graf } 219457b61080SScott Feldman err = 0; 219557b61080SScott Feldman 219688d6378bSAnuradha Karuppiah if (tb[IFLA_PROTO_DOWN]) { 219788d6378bSAnuradha Karuppiah err = dev_change_proto_down(dev, 219888d6378bSAnuradha Karuppiah nla_get_u8(tb[IFLA_PROTO_DOWN])); 219988d6378bSAnuradha Karuppiah if (err) 220088d6378bSAnuradha Karuppiah goto errout; 220188d6378bSAnuradha Karuppiah status |= DO_SETLINK_NOTIFY; 220288d6378bSAnuradha Karuppiah } 220388d6378bSAnuradha Karuppiah 2204d1fdd913SBrenden Blanco if (tb[IFLA_XDP]) { 2205d1fdd913SBrenden Blanco struct nlattr *xdp[IFLA_XDP_MAX + 1]; 220685de8576SDaniel Borkmann u32 xdp_flags = 0; 2207d1fdd913SBrenden Blanco 2208d1fdd913SBrenden Blanco err = nla_parse_nested(xdp, IFLA_XDP_MAX, tb[IFLA_XDP], 2209fceb6435SJohannes Berg ifla_xdp_policy, NULL); 2210d1fdd913SBrenden Blanco if (err < 0) 2211d1fdd913SBrenden Blanco goto errout; 2212d1fdd913SBrenden Blanco 221358038695SMartin KaFai Lau if (xdp[IFLA_XDP_ATTACHED] || xdp[IFLA_XDP_PROG_ID]) { 2214262d8625SBrenden Blanco err = -EINVAL; 2215262d8625SBrenden Blanco goto errout; 2216262d8625SBrenden Blanco } 221785de8576SDaniel Borkmann 221885de8576SDaniel Borkmann if (xdp[IFLA_XDP_FLAGS]) { 221985de8576SDaniel Borkmann xdp_flags = nla_get_u32(xdp[IFLA_XDP_FLAGS]); 222085de8576SDaniel Borkmann if (xdp_flags & ~XDP_FLAGS_MASK) { 222185de8576SDaniel Borkmann err = -EINVAL; 222285de8576SDaniel Borkmann goto errout; 222385de8576SDaniel Borkmann } 2224ee5d032fSJakub Kicinski if (hweight32(xdp_flags & XDP_FLAGS_MODES) > 1) { 22250489df9aSDaniel Borkmann err = -EINVAL; 22260489df9aSDaniel Borkmann goto errout; 22270489df9aSDaniel Borkmann } 222885de8576SDaniel Borkmann } 222985de8576SDaniel Borkmann 2230d1fdd913SBrenden Blanco if (xdp[IFLA_XDP_FD]) { 2231ddf9f970SJakub Kicinski err = dev_change_xdp_fd(dev, extack, 223285de8576SDaniel Borkmann nla_get_s32(xdp[IFLA_XDP_FD]), 223385de8576SDaniel Borkmann xdp_flags); 2234d1fdd913SBrenden Blanco if (err) 2235d1fdd913SBrenden Blanco goto errout; 2236d1fdd913SBrenden Blanco status |= DO_SETLINK_NOTIFY; 2237d1fdd913SBrenden Blanco } 2238d1fdd913SBrenden Blanco } 2239d1fdd913SBrenden Blanco 22400157f60cSPatrick McHardy errout: 2241ba998906SNicolas Dichtel if (status & DO_SETLINK_MODIFIED) { 2242ba998906SNicolas Dichtel if (status & DO_SETLINK_NOTIFY) 2243ba998906SNicolas Dichtel netdev_state_change(dev); 2244ba998906SNicolas Dichtel 2245ba998906SNicolas Dichtel if (err < 0) 2246e87cc472SJoe Perches 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", 2247e87cc472SJoe Perches dev->name); 2248ba998906SNicolas Dichtel } 22490157f60cSPatrick McHardy 22500157f60cSPatrick McHardy return err; 22510157f60cSPatrick McHardy } 22520157f60cSPatrick McHardy 2253c21ef3e3SDavid Ahern static int rtnl_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, 2254c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 2255da5e0494SThomas Graf { 22563b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 2257da5e0494SThomas Graf struct ifinfomsg *ifm; 2258da5e0494SThomas Graf struct net_device *dev; 22590157f60cSPatrick McHardy int err; 2260da5e0494SThomas Graf struct nlattr *tb[IFLA_MAX+1]; 22611da177e4SLinus Torvalds char ifname[IFNAMSIZ]; 22621da177e4SLinus Torvalds 2263c21ef3e3SDavid Ahern err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, 2264c21ef3e3SDavid Ahern extack); 2265da5e0494SThomas Graf if (err < 0) 2266da5e0494SThomas Graf goto errout; 22671da177e4SLinus Torvalds 22685176f91eSThomas Graf if (tb[IFLA_IFNAME]) 22695176f91eSThomas Graf nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 227078e5b891SPatrick McHardy else 227178e5b891SPatrick McHardy ifname[0] = '\0'; 22721da177e4SLinus Torvalds 22731da177e4SLinus Torvalds err = -EINVAL; 2274da5e0494SThomas Graf ifm = nlmsg_data(nlh); 227551055be8SPatrick McHardy if (ifm->ifi_index > 0) 2276a3d12891SEric Dumazet dev = __dev_get_by_index(net, ifm->ifi_index); 2277da5e0494SThomas Graf else if (tb[IFLA_IFNAME]) 2278a3d12891SEric Dumazet dev = __dev_get_by_name(net, ifname); 2279da5e0494SThomas Graf else 2280da5e0494SThomas Graf goto errout; 22811da177e4SLinus Torvalds 2282da5e0494SThomas Graf if (dev == NULL) { 2283da5e0494SThomas Graf err = -ENODEV; 2284da5e0494SThomas Graf goto errout; 2285da5e0494SThomas Graf } 22861da177e4SLinus Torvalds 2287e0d087afSEric Dumazet err = validate_linkmsg(dev, tb); 2288e0d087afSEric Dumazet if (err < 0) 2289a3d12891SEric Dumazet goto errout; 2290da5e0494SThomas Graf 2291ddf9f970SJakub Kicinski err = do_setlink(skb, dev, ifm, extack, tb, ifname, 0); 2292da5e0494SThomas Graf errout: 22931da177e4SLinus Torvalds return err; 22941da177e4SLinus Torvalds } 22951da177e4SLinus Torvalds 229666400d54SWANG Cong static int rtnl_group_dellink(const struct net *net, int group) 229766400d54SWANG Cong { 229866400d54SWANG Cong struct net_device *dev, *aux; 229966400d54SWANG Cong LIST_HEAD(list_kill); 230066400d54SWANG Cong bool found = false; 230166400d54SWANG Cong 230266400d54SWANG Cong if (!group) 230366400d54SWANG Cong return -EPERM; 230466400d54SWANG Cong 230566400d54SWANG Cong for_each_netdev(net, dev) { 230666400d54SWANG Cong if (dev->group == group) { 230766400d54SWANG Cong const struct rtnl_link_ops *ops; 230866400d54SWANG Cong 230966400d54SWANG Cong found = true; 231066400d54SWANG Cong ops = dev->rtnl_link_ops; 231166400d54SWANG Cong if (!ops || !ops->dellink) 231266400d54SWANG Cong return -EOPNOTSUPP; 231366400d54SWANG Cong } 231466400d54SWANG Cong } 231566400d54SWANG Cong 231666400d54SWANG Cong if (!found) 231766400d54SWANG Cong return -ENODEV; 231866400d54SWANG Cong 231966400d54SWANG Cong for_each_netdev_safe(net, dev, aux) { 232066400d54SWANG Cong if (dev->group == group) { 232166400d54SWANG Cong const struct rtnl_link_ops *ops; 232266400d54SWANG Cong 232366400d54SWANG Cong ops = dev->rtnl_link_ops; 232466400d54SWANG Cong ops->dellink(dev, &list_kill); 232566400d54SWANG Cong } 232666400d54SWANG Cong } 232766400d54SWANG Cong unregister_netdevice_many(&list_kill); 232866400d54SWANG Cong 232966400d54SWANG Cong return 0; 233066400d54SWANG Cong } 233166400d54SWANG Cong 2332614732eaSThomas Graf int rtnl_delete_link(struct net_device *dev) 2333614732eaSThomas Graf { 2334614732eaSThomas Graf const struct rtnl_link_ops *ops; 2335614732eaSThomas Graf LIST_HEAD(list_kill); 2336614732eaSThomas Graf 2337614732eaSThomas Graf ops = dev->rtnl_link_ops; 2338614732eaSThomas Graf if (!ops || !ops->dellink) 2339614732eaSThomas Graf return -EOPNOTSUPP; 2340614732eaSThomas Graf 2341614732eaSThomas Graf ops->dellink(dev, &list_kill); 2342614732eaSThomas Graf unregister_netdevice_many(&list_kill); 2343614732eaSThomas Graf 2344614732eaSThomas Graf return 0; 2345614732eaSThomas Graf } 2346614732eaSThomas Graf EXPORT_SYMBOL_GPL(rtnl_delete_link); 2347614732eaSThomas Graf 2348c21ef3e3SDavid Ahern static int rtnl_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, 2349c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 235038f7b870SPatrick McHardy { 23513b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 235238f7b870SPatrick McHardy struct net_device *dev; 235338f7b870SPatrick McHardy struct ifinfomsg *ifm; 235438f7b870SPatrick McHardy char ifname[IFNAMSIZ]; 235538f7b870SPatrick McHardy struct nlattr *tb[IFLA_MAX+1]; 235638f7b870SPatrick McHardy int err; 235738f7b870SPatrick McHardy 2358c21ef3e3SDavid Ahern err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, extack); 235938f7b870SPatrick McHardy if (err < 0) 236038f7b870SPatrick McHardy return err; 236138f7b870SPatrick McHardy 236238f7b870SPatrick McHardy if (tb[IFLA_IFNAME]) 236338f7b870SPatrick McHardy nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 236438f7b870SPatrick McHardy 236538f7b870SPatrick McHardy ifm = nlmsg_data(nlh); 236638f7b870SPatrick McHardy if (ifm->ifi_index > 0) 2367881d966bSEric W. Biederman dev = __dev_get_by_index(net, ifm->ifi_index); 236838f7b870SPatrick McHardy else if (tb[IFLA_IFNAME]) 2369881d966bSEric W. Biederman dev = __dev_get_by_name(net, ifname); 237066400d54SWANG Cong else if (tb[IFLA_GROUP]) 237166400d54SWANG Cong return rtnl_group_dellink(net, nla_get_u32(tb[IFLA_GROUP])); 237238f7b870SPatrick McHardy else 237338f7b870SPatrick McHardy return -EINVAL; 237438f7b870SPatrick McHardy 237538f7b870SPatrick McHardy if (!dev) 237638f7b870SPatrick McHardy return -ENODEV; 237738f7b870SPatrick McHardy 2378614732eaSThomas Graf return rtnl_delete_link(dev); 237938f7b870SPatrick McHardy } 238038f7b870SPatrick McHardy 23813729d502SPatrick McHardy int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm) 23823729d502SPatrick McHardy { 23833729d502SPatrick McHardy unsigned int old_flags; 23843729d502SPatrick McHardy int err; 23853729d502SPatrick McHardy 23863729d502SPatrick McHardy old_flags = dev->flags; 23873729d502SPatrick McHardy if (ifm && (ifm->ifi_flags || ifm->ifi_change)) { 23883729d502SPatrick McHardy err = __dev_change_flags(dev, rtnl_dev_combine_flags(dev, ifm)); 23893729d502SPatrick McHardy if (err < 0) 23903729d502SPatrick McHardy return err; 23913729d502SPatrick McHardy } 23923729d502SPatrick McHardy 23933729d502SPatrick McHardy dev->rtnl_link_state = RTNL_LINK_INITIALIZED; 23943729d502SPatrick McHardy 2395a528c219SNicolas Dichtel __dev_notify_flags(dev, old_flags, ~0U); 23963729d502SPatrick McHardy return 0; 23973729d502SPatrick McHardy } 23983729d502SPatrick McHardy EXPORT_SYMBOL(rtnl_configure_link); 23993729d502SPatrick McHardy 2400c0713563SRami Rosen struct net_device *rtnl_create_link(struct net *net, 240178ebb0d0SThomas Graf const char *ifname, unsigned char name_assign_type, 24025517750fSTom Gundersen const struct rtnl_link_ops *ops, struct nlattr *tb[]) 2403e7199288SPavel Emelianov { 2404e7199288SPavel Emelianov struct net_device *dev; 2405d40156aaSJiri Pirko unsigned int num_tx_queues = 1; 2406d40156aaSJiri Pirko unsigned int num_rx_queues = 1; 2407e7199288SPavel Emelianov 240876ff5cc9SJiri Pirko if (tb[IFLA_NUM_TX_QUEUES]) 240976ff5cc9SJiri Pirko num_tx_queues = nla_get_u32(tb[IFLA_NUM_TX_QUEUES]); 241076ff5cc9SJiri Pirko else if (ops->get_num_tx_queues) 2411d40156aaSJiri Pirko num_tx_queues = ops->get_num_tx_queues(); 241276ff5cc9SJiri Pirko 241376ff5cc9SJiri Pirko if (tb[IFLA_NUM_RX_QUEUES]) 241476ff5cc9SJiri Pirko num_rx_queues = nla_get_u32(tb[IFLA_NUM_RX_QUEUES]); 241576ff5cc9SJiri Pirko else if (ops->get_num_rx_queues) 2416d40156aaSJiri Pirko num_rx_queues = ops->get_num_rx_queues(); 2417efacb309Sstephen hemminger 24185517750fSTom Gundersen dev = alloc_netdev_mqs(ops->priv_size, ifname, name_assign_type, 2419c835a677STom Gundersen ops->setup, num_tx_queues, num_rx_queues); 2420e7199288SPavel Emelianov if (!dev) 2421d1892e4eSTobias Klauser return ERR_PTR(-ENOMEM); 2422e7199288SPavel Emelianov 242381adee47SEric W. Biederman dev_net_set(dev, net); 242481adee47SEric W. Biederman dev->rtnl_link_ops = ops; 24253729d502SPatrick McHardy dev->rtnl_link_state = RTNL_LINK_INITIALIZING; 242681adee47SEric W. Biederman 2427e7199288SPavel Emelianov if (tb[IFLA_MTU]) 2428e7199288SPavel Emelianov dev->mtu = nla_get_u32(tb[IFLA_MTU]); 24292afb9b53SJiri Pirko if (tb[IFLA_ADDRESS]) { 2430e7199288SPavel Emelianov memcpy(dev->dev_addr, nla_data(tb[IFLA_ADDRESS]), 2431e7199288SPavel Emelianov nla_len(tb[IFLA_ADDRESS])); 24322afb9b53SJiri Pirko dev->addr_assign_type = NET_ADDR_SET; 24332afb9b53SJiri Pirko } 2434e7199288SPavel Emelianov if (tb[IFLA_BROADCAST]) 2435e7199288SPavel Emelianov memcpy(dev->broadcast, nla_data(tb[IFLA_BROADCAST]), 2436e7199288SPavel Emelianov nla_len(tb[IFLA_BROADCAST])); 2437e7199288SPavel Emelianov if (tb[IFLA_TXQLEN]) 2438e7199288SPavel Emelianov dev->tx_queue_len = nla_get_u32(tb[IFLA_TXQLEN]); 2439e7199288SPavel Emelianov if (tb[IFLA_OPERSTATE]) 244093b2d4a2SDavid S. Miller set_operstate(dev, nla_get_u8(tb[IFLA_OPERSTATE])); 2441e7199288SPavel Emelianov if (tb[IFLA_LINKMODE]) 2442e7199288SPavel Emelianov dev->link_mode = nla_get_u8(tb[IFLA_LINKMODE]); 2443ffa934f1SPatrick McHardy if (tb[IFLA_GROUP]) 2444ffa934f1SPatrick McHardy dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP])); 2445e7199288SPavel Emelianov 2446e7199288SPavel Emelianov return dev; 2447e7199288SPavel Emelianov } 2448e0d087afSEric Dumazet EXPORT_SYMBOL(rtnl_create_link); 2449e7199288SPavel Emelianov 245090f62cf3SEric W. Biederman static int rtnl_group_changelink(const struct sk_buff *skb, 245190f62cf3SEric W. Biederman struct net *net, int group, 2452e7ed828fSVlad Dogaru struct ifinfomsg *ifm, 2453ddf9f970SJakub Kicinski struct netlink_ext_ack *extack, 2454e7ed828fSVlad Dogaru struct nlattr **tb) 2455e7ed828fSVlad Dogaru { 2456d079535dSWANG Cong struct net_device *dev, *aux; 2457e7ed828fSVlad Dogaru int err; 2458e7ed828fSVlad Dogaru 2459d079535dSWANG Cong for_each_netdev_safe(net, dev, aux) { 2460e7ed828fSVlad Dogaru if (dev->group == group) { 2461ddf9f970SJakub Kicinski err = do_setlink(skb, dev, ifm, extack, tb, NULL, 0); 2462e7ed828fSVlad Dogaru if (err < 0) 2463e7ed828fSVlad Dogaru return err; 2464e7ed828fSVlad Dogaru } 2465e7ed828fSVlad Dogaru } 2466e7ed828fSVlad Dogaru 2467e7ed828fSVlad Dogaru return 0; 2468e7ed828fSVlad Dogaru } 2469e7ed828fSVlad Dogaru 2470c21ef3e3SDavid Ahern static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh, 2471c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 247238f7b870SPatrick McHardy { 24733b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 247438f7b870SPatrick McHardy const struct rtnl_link_ops *ops; 2475ba7d49b1SJiri Pirko const struct rtnl_link_ops *m_ops = NULL; 247638f7b870SPatrick McHardy struct net_device *dev; 2477ba7d49b1SJiri Pirko struct net_device *master_dev = NULL; 247838f7b870SPatrick McHardy struct ifinfomsg *ifm; 247938f7b870SPatrick McHardy char kind[MODULE_NAME_LEN]; 248038f7b870SPatrick McHardy char ifname[IFNAMSIZ]; 248138f7b870SPatrick McHardy struct nlattr *tb[IFLA_MAX+1]; 248238f7b870SPatrick McHardy struct nlattr *linkinfo[IFLA_INFO_MAX+1]; 24835517750fSTom Gundersen unsigned char name_assign_type = NET_NAME_USER; 248438f7b870SPatrick McHardy int err; 248538f7b870SPatrick McHardy 248695a5afcaSJohannes Berg #ifdef CONFIG_MODULES 248738f7b870SPatrick McHardy replay: 24888072f085SThomas Graf #endif 2489c21ef3e3SDavid Ahern err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, extack); 249038f7b870SPatrick McHardy if (err < 0) 249138f7b870SPatrick McHardy return err; 249238f7b870SPatrick McHardy 249338f7b870SPatrick McHardy if (tb[IFLA_IFNAME]) 249438f7b870SPatrick McHardy nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 249538f7b870SPatrick McHardy else 249638f7b870SPatrick McHardy ifname[0] = '\0'; 249738f7b870SPatrick McHardy 249838f7b870SPatrick McHardy ifm = nlmsg_data(nlh); 249938f7b870SPatrick McHardy if (ifm->ifi_index > 0) 2500881d966bSEric W. Biederman dev = __dev_get_by_index(net, ifm->ifi_index); 2501e7ed828fSVlad Dogaru else { 2502e7ed828fSVlad Dogaru if (ifname[0]) 2503881d966bSEric W. Biederman dev = __dev_get_by_name(net, ifname); 250438f7b870SPatrick McHardy else 250538f7b870SPatrick McHardy dev = NULL; 2506e7ed828fSVlad Dogaru } 250738f7b870SPatrick McHardy 2508ba7d49b1SJiri Pirko if (dev) { 2509ba7d49b1SJiri Pirko master_dev = netdev_master_upper_dev_get(dev); 2510ba7d49b1SJiri Pirko if (master_dev) 2511ba7d49b1SJiri Pirko m_ops = master_dev->rtnl_link_ops; 2512ba7d49b1SJiri Pirko } 2513ba7d49b1SJiri Pirko 2514e0d087afSEric Dumazet err = validate_linkmsg(dev, tb); 2515e0d087afSEric Dumazet if (err < 0) 25161840bb13SThomas Graf return err; 25171840bb13SThomas Graf 251838f7b870SPatrick McHardy if (tb[IFLA_LINKINFO]) { 251938f7b870SPatrick McHardy err = nla_parse_nested(linkinfo, IFLA_INFO_MAX, 2520fceb6435SJohannes Berg tb[IFLA_LINKINFO], ifla_info_policy, 2521fceb6435SJohannes Berg NULL); 252238f7b870SPatrick McHardy if (err < 0) 252338f7b870SPatrick McHardy return err; 252438f7b870SPatrick McHardy } else 252538f7b870SPatrick McHardy memset(linkinfo, 0, sizeof(linkinfo)); 252638f7b870SPatrick McHardy 252738f7b870SPatrick McHardy if (linkinfo[IFLA_INFO_KIND]) { 252838f7b870SPatrick McHardy nla_strlcpy(kind, linkinfo[IFLA_INFO_KIND], sizeof(kind)); 252938f7b870SPatrick McHardy ops = rtnl_link_ops_get(kind); 253038f7b870SPatrick McHardy } else { 253138f7b870SPatrick McHardy kind[0] = '\0'; 253238f7b870SPatrick McHardy ops = NULL; 253338f7b870SPatrick McHardy } 253438f7b870SPatrick McHardy 253538f7b870SPatrick McHardy if (1) { 25364e10fd5bSSasha Levin struct nlattr *attr[ops ? ops->maxtype + 1 : 1]; 25374e10fd5bSSasha Levin struct nlattr *slave_attr[m_ops ? m_ops->slave_maxtype + 1 : 1]; 2538ba7d49b1SJiri Pirko struct nlattr **data = NULL; 2539ba7d49b1SJiri Pirko struct nlattr **slave_data = NULL; 2540317f4810SNicolas Dichtel struct net *dest_net, *link_net = NULL; 254138f7b870SPatrick McHardy 254238f7b870SPatrick McHardy if (ops) { 254338f7b870SPatrick McHardy if (ops->maxtype && linkinfo[IFLA_INFO_DATA]) { 254438f7b870SPatrick McHardy err = nla_parse_nested(attr, ops->maxtype, 254538f7b870SPatrick McHardy linkinfo[IFLA_INFO_DATA], 2546fceb6435SJohannes Berg ops->policy, NULL); 254738f7b870SPatrick McHardy if (err < 0) 254838f7b870SPatrick McHardy return err; 254938f7b870SPatrick McHardy data = attr; 255038f7b870SPatrick McHardy } 255138f7b870SPatrick McHardy if (ops->validate) { 2552a8b8a889SMatthias Schiffer err = ops->validate(tb, data, extack); 255338f7b870SPatrick McHardy if (err < 0) 255438f7b870SPatrick McHardy return err; 255538f7b870SPatrick McHardy } 255638f7b870SPatrick McHardy } 255738f7b870SPatrick McHardy 2558ba7d49b1SJiri Pirko if (m_ops) { 2559ba7d49b1SJiri Pirko if (m_ops->slave_maxtype && 2560ba7d49b1SJiri Pirko linkinfo[IFLA_INFO_SLAVE_DATA]) { 2561ba7d49b1SJiri Pirko err = nla_parse_nested(slave_attr, 2562ba7d49b1SJiri Pirko m_ops->slave_maxtype, 2563ba7d49b1SJiri Pirko linkinfo[IFLA_INFO_SLAVE_DATA], 2564fceb6435SJohannes Berg m_ops->slave_policy, 2565fceb6435SJohannes Berg NULL); 2566ba7d49b1SJiri Pirko if (err < 0) 2567ba7d49b1SJiri Pirko return err; 2568ba7d49b1SJiri Pirko slave_data = slave_attr; 2569ba7d49b1SJiri Pirko } 2570ba7d49b1SJiri Pirko if (m_ops->slave_validate) { 2571d116ffc7SMatthias Schiffer err = m_ops->slave_validate(tb, slave_data, 2572d116ffc7SMatthias Schiffer extack); 2573ba7d49b1SJiri Pirko if (err < 0) 2574ba7d49b1SJiri Pirko return err; 2575ba7d49b1SJiri Pirko } 2576ba7d49b1SJiri Pirko } 2577ba7d49b1SJiri Pirko 257838f7b870SPatrick McHardy if (dev) { 257990c325e3SNicolas Dichtel int status = 0; 258038f7b870SPatrick McHardy 258138f7b870SPatrick McHardy if (nlh->nlmsg_flags & NLM_F_EXCL) 258238f7b870SPatrick McHardy return -EEXIST; 258338f7b870SPatrick McHardy if (nlh->nlmsg_flags & NLM_F_REPLACE) 258438f7b870SPatrick McHardy return -EOPNOTSUPP; 258538f7b870SPatrick McHardy 258638f7b870SPatrick McHardy if (linkinfo[IFLA_INFO_DATA]) { 258738f7b870SPatrick McHardy if (!ops || ops != dev->rtnl_link_ops || 258838f7b870SPatrick McHardy !ops->changelink) 258938f7b870SPatrick McHardy return -EOPNOTSUPP; 259038f7b870SPatrick McHardy 2591ad744b22SMatthias Schiffer err = ops->changelink(dev, tb, data, extack); 259238f7b870SPatrick McHardy if (err < 0) 259338f7b870SPatrick McHardy return err; 2594ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 259538f7b870SPatrick McHardy } 259638f7b870SPatrick McHardy 2597ba7d49b1SJiri Pirko if (linkinfo[IFLA_INFO_SLAVE_DATA]) { 2598ba7d49b1SJiri Pirko if (!m_ops || !m_ops->slave_changelink) 2599ba7d49b1SJiri Pirko return -EOPNOTSUPP; 2600ba7d49b1SJiri Pirko 2601ba7d49b1SJiri Pirko err = m_ops->slave_changelink(master_dev, dev, 260217dd0ec4SMatthias Schiffer tb, slave_data, 260317dd0ec4SMatthias Schiffer extack); 2604ba7d49b1SJiri Pirko if (err < 0) 2605ba7d49b1SJiri Pirko return err; 2606ba998906SNicolas Dichtel status |= DO_SETLINK_NOTIFY; 2607ba7d49b1SJiri Pirko } 2608ba7d49b1SJiri Pirko 2609ddf9f970SJakub Kicinski return do_setlink(skb, dev, ifm, extack, tb, ifname, 2610ddf9f970SJakub Kicinski status); 261138f7b870SPatrick McHardy } 261238f7b870SPatrick McHardy 2613ffa934f1SPatrick McHardy if (!(nlh->nlmsg_flags & NLM_F_CREATE)) { 2614ffa934f1SPatrick McHardy if (ifm->ifi_index == 0 && tb[IFLA_GROUP]) 261590f62cf3SEric W. Biederman return rtnl_group_changelink(skb, net, 2616ffa934f1SPatrick McHardy nla_get_u32(tb[IFLA_GROUP]), 2617ddf9f970SJakub Kicinski ifm, extack, tb); 261838f7b870SPatrick McHardy return -ENODEV; 2619ffa934f1SPatrick McHardy } 262038f7b870SPatrick McHardy 2621160ca014STheuns Verwoerd if (tb[IFLA_MAP] || tb[IFLA_PROTINFO]) 262238f7b870SPatrick McHardy return -EOPNOTSUPP; 262338f7b870SPatrick McHardy 262438f7b870SPatrick McHardy if (!ops) { 262595a5afcaSJohannes Berg #ifdef CONFIG_MODULES 262638f7b870SPatrick McHardy if (kind[0]) { 262738f7b870SPatrick McHardy __rtnl_unlock(); 262838f7b870SPatrick McHardy request_module("rtnl-link-%s", kind); 262938f7b870SPatrick McHardy rtnl_lock(); 263038f7b870SPatrick McHardy ops = rtnl_link_ops_get(kind); 263138f7b870SPatrick McHardy if (ops) 263238f7b870SPatrick McHardy goto replay; 263338f7b870SPatrick McHardy } 263438f7b870SPatrick McHardy #endif 263538f7b870SPatrick McHardy return -EOPNOTSUPP; 263638f7b870SPatrick McHardy } 263738f7b870SPatrick McHardy 2638b0ab2fabSJiri Pirko if (!ops->setup) 2639b0ab2fabSJiri Pirko return -EOPNOTSUPP; 2640b0ab2fabSJiri Pirko 26415517750fSTom Gundersen if (!ifname[0]) { 264238f7b870SPatrick McHardy snprintf(ifname, IFNAMSIZ, "%s%%d", ops->kind); 26435517750fSTom Gundersen name_assign_type = NET_NAME_ENUM; 26445517750fSTom Gundersen } 264538f7b870SPatrick McHardy 264681adee47SEric W. Biederman dest_net = rtnl_link_get_net(net, tb); 264713ad1774SEric W. Biederman if (IS_ERR(dest_net)) 264813ad1774SEric W. Biederman return PTR_ERR(dest_net); 264913ad1774SEric W. Biederman 2650505ce415SEric W. Biederman err = -EPERM; 2651505ce415SEric W. Biederman if (!netlink_ns_capable(skb, dest_net->user_ns, CAP_NET_ADMIN)) 2652505ce415SEric W. Biederman goto out; 2653505ce415SEric W. Biederman 2654317f4810SNicolas Dichtel if (tb[IFLA_LINK_NETNSID]) { 2655317f4810SNicolas Dichtel int id = nla_get_s32(tb[IFLA_LINK_NETNSID]); 2656317f4810SNicolas Dichtel 2657317f4810SNicolas Dichtel link_net = get_net_ns_by_id(dest_net, id); 2658317f4810SNicolas Dichtel if (!link_net) { 2659317f4810SNicolas Dichtel err = -EINVAL; 2660317f4810SNicolas Dichtel goto out; 2661317f4810SNicolas Dichtel } 266206615bedSEric W. Biederman err = -EPERM; 266306615bedSEric W. Biederman if (!netlink_ns_capable(skb, link_net->user_ns, CAP_NET_ADMIN)) 266406615bedSEric W. Biederman goto out; 2665317f4810SNicolas Dichtel } 2666317f4810SNicolas Dichtel 2667317f4810SNicolas Dichtel dev = rtnl_create_link(link_net ? : dest_net, ifname, 2668317f4810SNicolas Dichtel name_assign_type, ops, tb); 26699c7dafbfSPavel Emelyanov if (IS_ERR(dev)) { 2670e7199288SPavel Emelianov err = PTR_ERR(dev); 26719c7dafbfSPavel Emelyanov goto out; 26729c7dafbfSPavel Emelyanov } 26739c7dafbfSPavel Emelyanov 26749c7dafbfSPavel Emelyanov dev->ifindex = ifm->ifi_index; 26759c7dafbfSPavel Emelyanov 26760e0eee24SCong Wang if (ops->newlink) { 26777a3f4a18SMatthias Schiffer err = ops->newlink(link_net ? : net, dev, tb, data, 26787a3f4a18SMatthias Schiffer extack); 26790e0eee24SCong Wang /* Drivers should call free_netdev() in ->destructor 2680e51fb152SCong Wang * and unregister it on failure after registration 2681e51fb152SCong Wang * so that device could be finally freed in rtnl_unlock. 26820e0eee24SCong Wang */ 2683e51fb152SCong Wang if (err < 0) { 2684e51fb152SCong Wang /* If device is not registered at all, free it now */ 2685e51fb152SCong Wang if (dev->reg_state == NETREG_UNINITIALIZED) 2686e51fb152SCong Wang free_netdev(dev); 26870e0eee24SCong Wang goto out; 2688e51fb152SCong Wang } 26890e0eee24SCong Wang } else { 26902d85cba2SPatrick McHardy err = register_netdevice(dev); 2691fce9b9beSDan Carpenter if (err < 0) { 269238f7b870SPatrick McHardy free_netdev(dev); 26933729d502SPatrick McHardy goto out; 2694fce9b9beSDan Carpenter } 26950e0eee24SCong Wang } 26963729d502SPatrick McHardy err = rtnl_configure_link(dev, ifm); 269743638900SDavid S. Miller if (err < 0) 269843638900SDavid S. Miller goto out_unregister; 269943638900SDavid S. Miller if (link_net) { 270043638900SDavid S. Miller err = dev_change_net_namespace(dev, dest_net, ifname); 270143638900SDavid S. Miller if (err < 0) 270243638900SDavid S. Miller goto out_unregister; 270343638900SDavid S. Miller } 2704160ca014STheuns Verwoerd if (tb[IFLA_MASTER]) { 2705160ca014STheuns Verwoerd err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER])); 2706160ca014STheuns Verwoerd if (err) 2707160ca014STheuns Verwoerd goto out_unregister; 2708160ca014STheuns Verwoerd } 270943638900SDavid S. Miller out: 271043638900SDavid S. Miller if (link_net) 271143638900SDavid S. Miller put_net(link_net); 271243638900SDavid S. Miller put_net(dest_net); 271343638900SDavid S. Miller return err; 271443638900SDavid S. Miller out_unregister: 27157afb8886SWANG Cong if (ops->newlink) { 27167afb8886SWANG Cong LIST_HEAD(list_kill); 27177afb8886SWANG Cong 27187afb8886SWANG Cong ops->dellink(dev, &list_kill); 27197afb8886SWANG Cong unregister_netdevice_many(&list_kill); 27207afb8886SWANG Cong } else { 27213729d502SPatrick McHardy unregister_netdevice(dev); 27227afb8886SWANG Cong } 2723317f4810SNicolas Dichtel goto out; 2724317f4810SNicolas Dichtel } 272538f7b870SPatrick McHardy } 272638f7b870SPatrick McHardy 2727c21ef3e3SDavid Ahern static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr *nlh, 2728c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 2729711e2c33SJean Tourrilhes { 27303b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 2731b60c5115SThomas Graf struct ifinfomsg *ifm; 2732a3d12891SEric Dumazet char ifname[IFNAMSIZ]; 2733b60c5115SThomas Graf struct nlattr *tb[IFLA_MAX+1]; 2734b60c5115SThomas Graf struct net_device *dev = NULL; 2735b60c5115SThomas Graf struct sk_buff *nskb; 2736339bf98fSThomas Graf int err; 2737115c9b81SGreg Rose u32 ext_filter_mask = 0; 2738711e2c33SJean Tourrilhes 2739c21ef3e3SDavid Ahern err = nlmsg_parse(nlh, sizeof(*ifm), tb, IFLA_MAX, ifla_policy, extack); 2740b60c5115SThomas Graf if (err < 0) 27419918f230SEric Sesterhenn return err; 2742b60c5115SThomas Graf 2743a3d12891SEric Dumazet if (tb[IFLA_IFNAME]) 2744a3d12891SEric Dumazet nla_strlcpy(ifname, tb[IFLA_IFNAME], IFNAMSIZ); 2745a3d12891SEric Dumazet 2746115c9b81SGreg Rose if (tb[IFLA_EXT_MASK]) 2747115c9b81SGreg Rose ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); 2748115c9b81SGreg Rose 2749b60c5115SThomas Graf ifm = nlmsg_data(nlh); 2750a3d12891SEric Dumazet if (ifm->ifi_index > 0) 2751a3d12891SEric Dumazet dev = __dev_get_by_index(net, ifm->ifi_index); 2752a3d12891SEric Dumazet else if (tb[IFLA_IFNAME]) 2753a3d12891SEric Dumazet dev = __dev_get_by_name(net, ifname); 2754a3d12891SEric Dumazet else 2755b60c5115SThomas Graf return -EINVAL; 2756b60c5115SThomas Graf 2757a3d12891SEric Dumazet if (dev == NULL) 2758a3d12891SEric Dumazet return -ENODEV; 2759a3d12891SEric Dumazet 2760115c9b81SGreg Rose nskb = nlmsg_new(if_nlmsg_size(dev, ext_filter_mask), GFP_KERNEL); 2761a3d12891SEric Dumazet if (nskb == NULL) 2762a3d12891SEric Dumazet return -ENOBUFS; 2763711e2c33SJean Tourrilhes 276415e47304SEric W. Biederman err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid, 27653d3ea5afSVlad Yasevich nlh->nlmsg_seq, 0, 0, ext_filter_mask, 0); 276626932566SPatrick McHardy if (err < 0) { 276726932566SPatrick McHardy /* -EMSGSIZE implies BUG in if_nlmsg_size */ 276826932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 276926932566SPatrick McHardy kfree_skb(nskb); 2770a3d12891SEric Dumazet } else 277115e47304SEric W. Biederman err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid); 2772b60c5115SThomas Graf 2773711e2c33SJean Tourrilhes return err; 2774711e2c33SJean Tourrilhes } 2775711e2c33SJean Tourrilhes 2776115c9b81SGreg Rose static u16 rtnl_calcit(struct sk_buff *skb, struct nlmsghdr *nlh) 2777c7ac8679SGreg Rose { 2778115c9b81SGreg Rose struct net *net = sock_net(skb->sk); 2779115c9b81SGreg Rose struct net_device *dev; 2780115c9b81SGreg Rose struct nlattr *tb[IFLA_MAX+1]; 2781115c9b81SGreg Rose u32 ext_filter_mask = 0; 2782115c9b81SGreg Rose u16 min_ifinfo_dump_size = 0; 2783e5eca6d4SMichal Schmidt int hdrlen; 2784115c9b81SGreg Rose 2785e5eca6d4SMichal Schmidt /* Same kernel<->userspace interface hack as in rtnl_dump_ifinfo. */ 2786e5eca6d4SMichal Schmidt hdrlen = nlmsg_len(nlh) < sizeof(struct ifinfomsg) ? 2787e5eca6d4SMichal Schmidt sizeof(struct rtgenmsg) : sizeof(struct ifinfomsg); 2788e5eca6d4SMichal Schmidt 2789fceb6435SJohannes Berg if (nlmsg_parse(nlh, hdrlen, tb, IFLA_MAX, ifla_policy, NULL) >= 0) { 2790115c9b81SGreg Rose if (tb[IFLA_EXT_MASK]) 2791115c9b81SGreg Rose ext_filter_mask = nla_get_u32(tb[IFLA_EXT_MASK]); 2792a4b64fbeSEric Dumazet } 2793115c9b81SGreg Rose 2794115c9b81SGreg Rose if (!ext_filter_mask) 2795115c9b81SGreg Rose return NLMSG_GOODSIZE; 2796115c9b81SGreg Rose /* 2797115c9b81SGreg Rose * traverse the list of net devices and compute the minimum 2798115c9b81SGreg Rose * buffer size based upon the filter mask. 2799115c9b81SGreg Rose */ 2800*6853dd48SFlorian Westphal rcu_read_lock(); 2801*6853dd48SFlorian Westphal for_each_netdev_rcu(net, dev) { 2802115c9b81SGreg Rose min_ifinfo_dump_size = max_t(u16, min_ifinfo_dump_size, 2803115c9b81SGreg Rose if_nlmsg_size(dev, 2804115c9b81SGreg Rose ext_filter_mask)); 2805115c9b81SGreg Rose } 2806*6853dd48SFlorian Westphal rcu_read_unlock(); 2807115c9b81SGreg Rose 280893af2056SZhang Shengju return nlmsg_total_size(min_ifinfo_dump_size); 2809c7ac8679SGreg Rose } 2810c7ac8679SGreg Rose 281142bad1daSAdrian Bunk static int rtnl_dump_all(struct sk_buff *skb, struct netlink_callback *cb) 28121da177e4SLinus Torvalds { 28131da177e4SLinus Torvalds int idx; 28141da177e4SLinus Torvalds int s_idx = cb->family; 28151da177e4SLinus Torvalds 28161da177e4SLinus Torvalds if (s_idx == 0) 28171da177e4SLinus Torvalds s_idx = 1; 2818*6853dd48SFlorian Westphal 281925239ceeSPatrick McHardy for (idx = 1; idx <= RTNL_FAMILY_MAX; idx++) { 28201da177e4SLinus Torvalds int type = cb->nlh->nlmsg_type-RTM_BASE; 2821*6853dd48SFlorian Westphal struct rtnl_link *handlers; 2822*6853dd48SFlorian Westphal rtnl_dumpit_func dumpit; 2823*6853dd48SFlorian Westphal 28241da177e4SLinus Torvalds if (idx < s_idx || idx == PF_PACKET) 28251da177e4SLinus Torvalds continue; 2826*6853dd48SFlorian Westphal 2827*6853dd48SFlorian Westphal handlers = rtnl_dereference(rtnl_msg_handlers[idx]); 2828*6853dd48SFlorian Westphal if (!handlers) 28291da177e4SLinus Torvalds continue; 2830*6853dd48SFlorian Westphal 2831*6853dd48SFlorian Westphal dumpit = READ_ONCE(handlers[type].dumpit); 2832*6853dd48SFlorian Westphal if (!dumpit) 2833*6853dd48SFlorian Westphal continue; 2834*6853dd48SFlorian Westphal 28350465277fSNicolas Dichtel if (idx > s_idx) { 28361da177e4SLinus Torvalds memset(&cb->args[0], 0, sizeof(cb->args)); 28370465277fSNicolas Dichtel cb->prev_seq = 0; 28380465277fSNicolas Dichtel cb->seq = 0; 28390465277fSNicolas Dichtel } 2840*6853dd48SFlorian Westphal if (dumpit(skb, cb)) 28411da177e4SLinus Torvalds break; 28421da177e4SLinus Torvalds } 28431da177e4SLinus Torvalds cb->family = idx; 28441da177e4SLinus Torvalds 28451da177e4SLinus Torvalds return skb->len; 28461da177e4SLinus Torvalds } 28471da177e4SLinus Torvalds 2848395eea6cSMahesh Bandewar struct sk_buff *rtmsg_ifinfo_build_skb(int type, struct net_device *dev, 28493d3ea5afSVlad Yasevich unsigned int change, 28503d3ea5afSVlad Yasevich u32 event, gfp_t flags) 28511da177e4SLinus Torvalds { 2852c346dca1SYOSHIFUJI Hideaki struct net *net = dev_net(dev); 28531da177e4SLinus Torvalds struct sk_buff *skb; 28540ec6d3f4SThomas Graf int err = -ENOBUFS; 2855c7ac8679SGreg Rose size_t if_info_size; 28561da177e4SLinus Torvalds 28577f294054SAlexei Starovoitov skb = nlmsg_new((if_info_size = if_nlmsg_size(dev, 0)), flags); 28580ec6d3f4SThomas Graf if (skb == NULL) 28590ec6d3f4SThomas Graf goto errout; 28601da177e4SLinus Torvalds 28613d3ea5afSVlad Yasevich err = rtnl_fill_ifinfo(skb, dev, type, 0, 0, change, 0, 0, event); 286226932566SPatrick McHardy if (err < 0) { 286326932566SPatrick McHardy /* -EMSGSIZE implies BUG in if_nlmsg_size() */ 286426932566SPatrick McHardy WARN_ON(err == -EMSGSIZE); 286526932566SPatrick McHardy kfree_skb(skb); 286626932566SPatrick McHardy goto errout; 286726932566SPatrick McHardy } 2868395eea6cSMahesh Bandewar return skb; 28690ec6d3f4SThomas Graf errout: 28700ec6d3f4SThomas Graf if (err < 0) 28714b3da706SEric W. Biederman rtnl_set_sk_err(net, RTNLGRP_LINK, err); 2872395eea6cSMahesh Bandewar return NULL; 2873395eea6cSMahesh Bandewar } 2874395eea6cSMahesh Bandewar 2875395eea6cSMahesh Bandewar void rtmsg_ifinfo_send(struct sk_buff *skb, struct net_device *dev, gfp_t flags) 2876395eea6cSMahesh Bandewar { 2877395eea6cSMahesh Bandewar struct net *net = dev_net(dev); 2878395eea6cSMahesh Bandewar 2879395eea6cSMahesh Bandewar rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, flags); 2880395eea6cSMahesh Bandewar } 2881395eea6cSMahesh Bandewar 28823d3ea5afSVlad Yasevich static void rtmsg_ifinfo_event(int type, struct net_device *dev, 28833d3ea5afSVlad Yasevich unsigned int change, u32 event, 2884395eea6cSMahesh Bandewar gfp_t flags) 2885395eea6cSMahesh Bandewar { 2886395eea6cSMahesh Bandewar struct sk_buff *skb; 2887395eea6cSMahesh Bandewar 2888ed2a80abSNicolas Dichtel if (dev->reg_state != NETREG_REGISTERED) 2889ed2a80abSNicolas Dichtel return; 2890ed2a80abSNicolas Dichtel 28913d3ea5afSVlad Yasevich skb = rtmsg_ifinfo_build_skb(type, dev, change, event, flags); 2892395eea6cSMahesh Bandewar if (skb) 2893395eea6cSMahesh Bandewar rtmsg_ifinfo_send(skb, dev, flags); 28941da177e4SLinus Torvalds } 28953d3ea5afSVlad Yasevich 28963d3ea5afSVlad Yasevich void rtmsg_ifinfo(int type, struct net_device *dev, unsigned int change, 28973d3ea5afSVlad Yasevich gfp_t flags) 28983d3ea5afSVlad Yasevich { 28998c6c918dSVlad Yasevich rtmsg_ifinfo_event(type, dev, change, rtnl_get_event(0), flags); 29003d3ea5afSVlad Yasevich } 2901471cb5a3SJiri Pirko EXPORT_SYMBOL(rtmsg_ifinfo); 29021da177e4SLinus Torvalds 2903d83b0603SJohn Fastabend static int nlmsg_populate_fdb_fill(struct sk_buff *skb, 2904d83b0603SJohn Fastabend struct net_device *dev, 29051e53d5bbSHubert Sokolowski u8 *addr, u16 vid, u32 pid, u32 seq, 29061c104a6bSNicolas Dichtel int type, unsigned int flags, 2907b3379041SHubert Sokolowski int nlflags, u16 ndm_state) 2908d83b0603SJohn Fastabend { 2909d83b0603SJohn Fastabend struct nlmsghdr *nlh; 2910d83b0603SJohn Fastabend struct ndmsg *ndm; 2911d83b0603SJohn Fastabend 29121c104a6bSNicolas Dichtel nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ndm), nlflags); 2913d83b0603SJohn Fastabend if (!nlh) 2914d83b0603SJohn Fastabend return -EMSGSIZE; 2915d83b0603SJohn Fastabend 2916d83b0603SJohn Fastabend ndm = nlmsg_data(nlh); 2917d83b0603SJohn Fastabend ndm->ndm_family = AF_BRIDGE; 2918d83b0603SJohn Fastabend ndm->ndm_pad1 = 0; 2919d83b0603SJohn Fastabend ndm->ndm_pad2 = 0; 2920d83b0603SJohn Fastabend ndm->ndm_flags = flags; 2921d83b0603SJohn Fastabend ndm->ndm_type = 0; 2922d83b0603SJohn Fastabend ndm->ndm_ifindex = dev->ifindex; 2923b3379041SHubert Sokolowski ndm->ndm_state = ndm_state; 2924d83b0603SJohn Fastabend 2925d83b0603SJohn Fastabend if (nla_put(skb, NDA_LLADDR, ETH_ALEN, addr)) 2926d83b0603SJohn Fastabend goto nla_put_failure; 29271e53d5bbSHubert Sokolowski if (vid) 29281e53d5bbSHubert Sokolowski if (nla_put(skb, NDA_VLAN, sizeof(u16), &vid)) 29291e53d5bbSHubert Sokolowski goto nla_put_failure; 2930d83b0603SJohn Fastabend 2931053c095aSJohannes Berg nlmsg_end(skb, nlh); 2932053c095aSJohannes Berg return 0; 2933d83b0603SJohn Fastabend 2934d83b0603SJohn Fastabend nla_put_failure: 2935d83b0603SJohn Fastabend nlmsg_cancel(skb, nlh); 2936d83b0603SJohn Fastabend return -EMSGSIZE; 2937d83b0603SJohn Fastabend } 2938d83b0603SJohn Fastabend 29393ff661c3SJohn Fastabend static inline size_t rtnl_fdb_nlmsg_size(void) 29403ff661c3SJohn Fastabend { 2941f82ef3e1SSabrina Dubroca return NLMSG_ALIGN(sizeof(struct ndmsg)) + 2942f82ef3e1SSabrina Dubroca nla_total_size(ETH_ALEN) + /* NDA_LLADDR */ 2943f82ef3e1SSabrina Dubroca nla_total_size(sizeof(u16)) + /* NDA_VLAN */ 2944f82ef3e1SSabrina Dubroca 0; 29453ff661c3SJohn Fastabend } 29463ff661c3SJohn Fastabend 2947b3379041SHubert Sokolowski static void rtnl_fdb_notify(struct net_device *dev, u8 *addr, u16 vid, int type, 2948b3379041SHubert Sokolowski u16 ndm_state) 29493ff661c3SJohn Fastabend { 29503ff661c3SJohn Fastabend struct net *net = dev_net(dev); 29513ff661c3SJohn Fastabend struct sk_buff *skb; 29523ff661c3SJohn Fastabend int err = -ENOBUFS; 29533ff661c3SJohn Fastabend 29543ff661c3SJohn Fastabend skb = nlmsg_new(rtnl_fdb_nlmsg_size(), GFP_ATOMIC); 29553ff661c3SJohn Fastabend if (!skb) 29563ff661c3SJohn Fastabend goto errout; 29573ff661c3SJohn Fastabend 29581e53d5bbSHubert Sokolowski err = nlmsg_populate_fdb_fill(skb, dev, addr, vid, 2959b3379041SHubert Sokolowski 0, 0, type, NTF_SELF, 0, ndm_state); 29603ff661c3SJohn Fastabend if (err < 0) { 29613ff661c3SJohn Fastabend kfree_skb(skb); 29623ff661c3SJohn Fastabend goto errout; 29633ff661c3SJohn Fastabend } 29643ff661c3SJohn Fastabend 29653ff661c3SJohn Fastabend rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC); 29663ff661c3SJohn Fastabend return; 29673ff661c3SJohn Fastabend errout: 29683ff661c3SJohn Fastabend rtnl_set_sk_err(net, RTNLGRP_NEIGH, err); 29693ff661c3SJohn Fastabend } 29703ff661c3SJohn Fastabend 2971090096bfSVlad Yasevich /** 2972090096bfSVlad Yasevich * ndo_dflt_fdb_add - default netdevice operation to add an FDB entry 2973090096bfSVlad Yasevich */ 2974090096bfSVlad Yasevich int ndo_dflt_fdb_add(struct ndmsg *ndm, 2975090096bfSVlad Yasevich struct nlattr *tb[], 2976090096bfSVlad Yasevich struct net_device *dev, 2977f6f6424bSJiri Pirko const unsigned char *addr, u16 vid, 2978090096bfSVlad Yasevich u16 flags) 2979090096bfSVlad Yasevich { 2980090096bfSVlad Yasevich int err = -EINVAL; 2981090096bfSVlad Yasevich 2982090096bfSVlad Yasevich /* If aging addresses are supported device will need to 2983090096bfSVlad Yasevich * implement its own handler for this. 2984090096bfSVlad Yasevich */ 2985090096bfSVlad Yasevich if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) { 2986090096bfSVlad Yasevich pr_info("%s: FDB only supports static addresses\n", dev->name); 2987090096bfSVlad Yasevich return err; 2988090096bfSVlad Yasevich } 2989090096bfSVlad Yasevich 299065891feaSOr Gerlitz if (vid) { 299165891feaSOr Gerlitz pr_info("%s: vlans aren't supported yet for dev_uc|mc_add()\n", dev->name); 299265891feaSOr Gerlitz return err; 299365891feaSOr Gerlitz } 299465891feaSOr Gerlitz 2995090096bfSVlad Yasevich if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) 2996090096bfSVlad Yasevich err = dev_uc_add_excl(dev, addr); 2997090096bfSVlad Yasevich else if (is_multicast_ether_addr(addr)) 2998090096bfSVlad Yasevich err = dev_mc_add_excl(dev, addr); 2999090096bfSVlad Yasevich 3000090096bfSVlad Yasevich /* Only return duplicate errors if NLM_F_EXCL is set */ 3001090096bfSVlad Yasevich if (err == -EEXIST && !(flags & NLM_F_EXCL)) 3002090096bfSVlad Yasevich err = 0; 3003090096bfSVlad Yasevich 3004090096bfSVlad Yasevich return err; 3005090096bfSVlad Yasevich } 3006090096bfSVlad Yasevich EXPORT_SYMBOL(ndo_dflt_fdb_add); 3007090096bfSVlad Yasevich 3008f6f6424bSJiri Pirko static int fdb_vid_parse(struct nlattr *vlan_attr, u16 *p_vid) 3009f6f6424bSJiri Pirko { 3010f6f6424bSJiri Pirko u16 vid = 0; 3011f6f6424bSJiri Pirko 3012f6f6424bSJiri Pirko if (vlan_attr) { 3013f6f6424bSJiri Pirko if (nla_len(vlan_attr) != sizeof(u16)) { 3014f6f6424bSJiri Pirko pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid vlan\n"); 3015f6f6424bSJiri Pirko return -EINVAL; 3016f6f6424bSJiri Pirko } 3017f6f6424bSJiri Pirko 3018f6f6424bSJiri Pirko vid = nla_get_u16(vlan_attr); 3019f6f6424bSJiri Pirko 3020f6f6424bSJiri Pirko if (!vid || vid >= VLAN_VID_MASK) { 3021f6f6424bSJiri Pirko pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid vlan id %d\n", 3022f6f6424bSJiri Pirko vid); 3023f6f6424bSJiri Pirko return -EINVAL; 3024f6f6424bSJiri Pirko } 3025f6f6424bSJiri Pirko } 3026f6f6424bSJiri Pirko *p_vid = vid; 3027f6f6424bSJiri Pirko return 0; 3028f6f6424bSJiri Pirko } 3029f6f6424bSJiri Pirko 3030c21ef3e3SDavid Ahern static int rtnl_fdb_add(struct sk_buff *skb, struct nlmsghdr *nlh, 3031c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 303277162022SJohn Fastabend { 303377162022SJohn Fastabend struct net *net = sock_net(skb->sk); 303477162022SJohn Fastabend struct ndmsg *ndm; 303577162022SJohn Fastabend struct nlattr *tb[NDA_MAX+1]; 303677162022SJohn Fastabend struct net_device *dev; 303777162022SJohn Fastabend u8 *addr; 3038f6f6424bSJiri Pirko u16 vid; 303977162022SJohn Fastabend int err; 304077162022SJohn Fastabend 3041c21ef3e3SDavid Ahern err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL, extack); 304277162022SJohn Fastabend if (err < 0) 304377162022SJohn Fastabend return err; 304477162022SJohn Fastabend 304577162022SJohn Fastabend ndm = nlmsg_data(nlh); 304677162022SJohn Fastabend if (ndm->ndm_ifindex == 0) { 304777162022SJohn Fastabend pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid ifindex\n"); 304877162022SJohn Fastabend return -EINVAL; 304977162022SJohn Fastabend } 305077162022SJohn Fastabend 305177162022SJohn Fastabend dev = __dev_get_by_index(net, ndm->ndm_ifindex); 305277162022SJohn Fastabend if (dev == NULL) { 305377162022SJohn Fastabend pr_info("PF_BRIDGE: RTM_NEWNEIGH with unknown ifindex\n"); 305477162022SJohn Fastabend return -ENODEV; 305577162022SJohn Fastabend } 305677162022SJohn Fastabend 305777162022SJohn Fastabend if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) { 305877162022SJohn Fastabend pr_info("PF_BRIDGE: RTM_NEWNEIGH with invalid address\n"); 305977162022SJohn Fastabend return -EINVAL; 306077162022SJohn Fastabend } 306177162022SJohn Fastabend 306277162022SJohn Fastabend addr = nla_data(tb[NDA_LLADDR]); 306377162022SJohn Fastabend 3064f6f6424bSJiri Pirko err = fdb_vid_parse(tb[NDA_VLAN], &vid); 3065f6f6424bSJiri Pirko if (err) 3066f6f6424bSJiri Pirko return err; 3067f6f6424bSJiri Pirko 306877162022SJohn Fastabend err = -EOPNOTSUPP; 306977162022SJohn Fastabend 307077162022SJohn Fastabend /* Support fdb on master device the net/bridge default case */ 307177162022SJohn Fastabend if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && 307277162022SJohn Fastabend (dev->priv_flags & IFF_BRIDGE_PORT)) { 3073898e5061SJiri Pirko struct net_device *br_dev = netdev_master_upper_dev_get(dev); 3074898e5061SJiri Pirko const struct net_device_ops *ops = br_dev->netdev_ops; 3075898e5061SJiri Pirko 3076f6f6424bSJiri Pirko err = ops->ndo_fdb_add(ndm, tb, dev, addr, vid, 3077f6f6424bSJiri Pirko nlh->nlmsg_flags); 307877162022SJohn Fastabend if (err) 307977162022SJohn Fastabend goto out; 308077162022SJohn Fastabend else 308177162022SJohn Fastabend ndm->ndm_flags &= ~NTF_MASTER; 308277162022SJohn Fastabend } 308377162022SJohn Fastabend 308477162022SJohn Fastabend /* Embedded bridge, macvlan, and any other device support */ 3085090096bfSVlad Yasevich if ((ndm->ndm_flags & NTF_SELF)) { 3086090096bfSVlad Yasevich if (dev->netdev_ops->ndo_fdb_add) 3087090096bfSVlad Yasevich err = dev->netdev_ops->ndo_fdb_add(ndm, tb, dev, addr, 3088f6f6424bSJiri Pirko vid, 3089090096bfSVlad Yasevich nlh->nlmsg_flags); 3090090096bfSVlad Yasevich else 3091f6f6424bSJiri Pirko err = ndo_dflt_fdb_add(ndm, tb, dev, addr, vid, 309277162022SJohn Fastabend nlh->nlmsg_flags); 309377162022SJohn Fastabend 30943ff661c3SJohn Fastabend if (!err) { 3095b3379041SHubert Sokolowski rtnl_fdb_notify(dev, addr, vid, RTM_NEWNEIGH, 3096b3379041SHubert Sokolowski ndm->ndm_state); 309777162022SJohn Fastabend ndm->ndm_flags &= ~NTF_SELF; 309877162022SJohn Fastabend } 30993ff661c3SJohn Fastabend } 310077162022SJohn Fastabend out: 310177162022SJohn Fastabend return err; 310277162022SJohn Fastabend } 310377162022SJohn Fastabend 3104090096bfSVlad Yasevich /** 3105090096bfSVlad Yasevich * ndo_dflt_fdb_del - default netdevice operation to delete an FDB entry 3106090096bfSVlad Yasevich */ 3107090096bfSVlad Yasevich int ndo_dflt_fdb_del(struct ndmsg *ndm, 3108090096bfSVlad Yasevich struct nlattr *tb[], 3109090096bfSVlad Yasevich struct net_device *dev, 3110f6f6424bSJiri Pirko const unsigned char *addr, u16 vid) 3111090096bfSVlad Yasevich { 3112c8a89c4aSAlexander Duyck int err = -EINVAL; 3113090096bfSVlad Yasevich 3114090096bfSVlad Yasevich /* If aging addresses are supported device will need to 3115090096bfSVlad Yasevich * implement its own handler for this. 3116090096bfSVlad Yasevich */ 311764535993SSridhar Samudrala if (!(ndm->ndm_state & NUD_PERMANENT)) { 3118090096bfSVlad Yasevich pr_info("%s: FDB only supports static addresses\n", dev->name); 3119c8a89c4aSAlexander Duyck return err; 3120090096bfSVlad Yasevich } 3121090096bfSVlad Yasevich 3122090096bfSVlad Yasevich if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr)) 3123090096bfSVlad Yasevich err = dev_uc_del(dev, addr); 3124090096bfSVlad Yasevich else if (is_multicast_ether_addr(addr)) 3125090096bfSVlad Yasevich err = dev_mc_del(dev, addr); 3126090096bfSVlad Yasevich 3127090096bfSVlad Yasevich return err; 3128090096bfSVlad Yasevich } 3129090096bfSVlad Yasevich EXPORT_SYMBOL(ndo_dflt_fdb_del); 3130090096bfSVlad Yasevich 3131c21ef3e3SDavid Ahern static int rtnl_fdb_del(struct sk_buff *skb, struct nlmsghdr *nlh, 3132c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 313377162022SJohn Fastabend { 313477162022SJohn Fastabend struct net *net = sock_net(skb->sk); 313577162022SJohn Fastabend struct ndmsg *ndm; 31361690be63SVlad Yasevich struct nlattr *tb[NDA_MAX+1]; 313777162022SJohn Fastabend struct net_device *dev; 313877162022SJohn Fastabend int err = -EINVAL; 313977162022SJohn Fastabend __u8 *addr; 3140f6f6424bSJiri Pirko u16 vid; 314177162022SJohn Fastabend 314290f62cf3SEric W. Biederman if (!netlink_capable(skb, CAP_NET_ADMIN)) 31431690be63SVlad Yasevich return -EPERM; 31441690be63SVlad Yasevich 3145c21ef3e3SDavid Ahern err = nlmsg_parse(nlh, sizeof(*ndm), tb, NDA_MAX, NULL, extack); 31461690be63SVlad Yasevich if (err < 0) 31471690be63SVlad Yasevich return err; 314877162022SJohn Fastabend 314977162022SJohn Fastabend ndm = nlmsg_data(nlh); 315077162022SJohn Fastabend if (ndm->ndm_ifindex == 0) { 315177162022SJohn Fastabend pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid ifindex\n"); 315277162022SJohn Fastabend return -EINVAL; 315377162022SJohn Fastabend } 315477162022SJohn Fastabend 315577162022SJohn Fastabend dev = __dev_get_by_index(net, ndm->ndm_ifindex); 315677162022SJohn Fastabend if (dev == NULL) { 315777162022SJohn Fastabend pr_info("PF_BRIDGE: RTM_DELNEIGH with unknown ifindex\n"); 315877162022SJohn Fastabend return -ENODEV; 315977162022SJohn Fastabend } 316077162022SJohn Fastabend 31611690be63SVlad Yasevich if (!tb[NDA_LLADDR] || nla_len(tb[NDA_LLADDR]) != ETH_ALEN) { 31621690be63SVlad Yasevich pr_info("PF_BRIDGE: RTM_DELNEIGH with invalid address\n"); 316377162022SJohn Fastabend return -EINVAL; 316477162022SJohn Fastabend } 316577162022SJohn Fastabend 31661690be63SVlad Yasevich addr = nla_data(tb[NDA_LLADDR]); 31671690be63SVlad Yasevich 3168f6f6424bSJiri Pirko err = fdb_vid_parse(tb[NDA_VLAN], &vid); 3169f6f6424bSJiri Pirko if (err) 3170f6f6424bSJiri Pirko return err; 3171f6f6424bSJiri Pirko 317277162022SJohn Fastabend err = -EOPNOTSUPP; 317377162022SJohn Fastabend 317477162022SJohn Fastabend /* Support fdb on master device the net/bridge default case */ 317577162022SJohn Fastabend if ((!ndm->ndm_flags || ndm->ndm_flags & NTF_MASTER) && 317677162022SJohn Fastabend (dev->priv_flags & IFF_BRIDGE_PORT)) { 3177898e5061SJiri Pirko struct net_device *br_dev = netdev_master_upper_dev_get(dev); 3178898e5061SJiri Pirko const struct net_device_ops *ops = br_dev->netdev_ops; 317977162022SJohn Fastabend 3180898e5061SJiri Pirko if (ops->ndo_fdb_del) 3181f6f6424bSJiri Pirko err = ops->ndo_fdb_del(ndm, tb, dev, addr, vid); 318277162022SJohn Fastabend 318377162022SJohn Fastabend if (err) 318477162022SJohn Fastabend goto out; 318577162022SJohn Fastabend else 318677162022SJohn Fastabend ndm->ndm_flags &= ~NTF_MASTER; 318777162022SJohn Fastabend } 318877162022SJohn Fastabend 318977162022SJohn Fastabend /* Embedded bridge, macvlan, and any other device support */ 3190090096bfSVlad Yasevich if (ndm->ndm_flags & NTF_SELF) { 3191090096bfSVlad Yasevich if (dev->netdev_ops->ndo_fdb_del) 3192f6f6424bSJiri Pirko err = dev->netdev_ops->ndo_fdb_del(ndm, tb, dev, addr, 3193f6f6424bSJiri Pirko vid); 3194090096bfSVlad Yasevich else 3195f6f6424bSJiri Pirko err = ndo_dflt_fdb_del(ndm, tb, dev, addr, vid); 319677162022SJohn Fastabend 31973ff661c3SJohn Fastabend if (!err) { 3198b3379041SHubert Sokolowski rtnl_fdb_notify(dev, addr, vid, RTM_DELNEIGH, 3199b3379041SHubert Sokolowski ndm->ndm_state); 320077162022SJohn Fastabend ndm->ndm_flags &= ~NTF_SELF; 320177162022SJohn Fastabend } 32023ff661c3SJohn Fastabend } 320377162022SJohn Fastabend out: 320477162022SJohn Fastabend return err; 320577162022SJohn Fastabend } 320677162022SJohn Fastabend 3207d83b0603SJohn Fastabend static int nlmsg_populate_fdb(struct sk_buff *skb, 3208d83b0603SJohn Fastabend struct netlink_callback *cb, 3209d83b0603SJohn Fastabend struct net_device *dev, 3210d83b0603SJohn Fastabend int *idx, 3211d83b0603SJohn Fastabend struct netdev_hw_addr_list *list) 3212d83b0603SJohn Fastabend { 3213d83b0603SJohn Fastabend struct netdev_hw_addr *ha; 3214d83b0603SJohn Fastabend int err; 321515e47304SEric W. Biederman u32 portid, seq; 3216d83b0603SJohn Fastabend 321715e47304SEric W. Biederman portid = NETLINK_CB(cb->skb).portid; 3218d83b0603SJohn Fastabend seq = cb->nlh->nlmsg_seq; 3219d83b0603SJohn Fastabend 3220d83b0603SJohn Fastabend list_for_each_entry(ha, &list->list, list) { 3221d297653dSRoopa Prabhu if (*idx < cb->args[2]) 3222d83b0603SJohn Fastabend goto skip; 3223d83b0603SJohn Fastabend 32241e53d5bbSHubert Sokolowski err = nlmsg_populate_fdb_fill(skb, dev, ha->addr, 0, 3225a7a558feSJohn Fastabend portid, seq, 32261c104a6bSNicolas Dichtel RTM_NEWNEIGH, NTF_SELF, 3227b3379041SHubert Sokolowski NLM_F_MULTI, NUD_PERMANENT); 3228d83b0603SJohn Fastabend if (err < 0) 3229d83b0603SJohn Fastabend return err; 3230d83b0603SJohn Fastabend skip: 3231d83b0603SJohn Fastabend *idx += 1; 3232d83b0603SJohn Fastabend } 3233d83b0603SJohn Fastabend return 0; 3234d83b0603SJohn Fastabend } 3235d83b0603SJohn Fastabend 3236d83b0603SJohn Fastabend /** 32372c53040fSBen Hutchings * ndo_dflt_fdb_dump - default netdevice operation to dump an FDB table. 3238d83b0603SJohn Fastabend * @nlh: netlink message header 3239d83b0603SJohn Fastabend * @dev: netdevice 3240d83b0603SJohn Fastabend * 3241d83b0603SJohn Fastabend * Default netdevice operation to dump the existing unicast address list. 324291f3e7b1SJohn Fastabend * Returns number of addresses from list put in skb. 3243d83b0603SJohn Fastabend */ 3244d83b0603SJohn Fastabend int ndo_dflt_fdb_dump(struct sk_buff *skb, 3245d83b0603SJohn Fastabend struct netlink_callback *cb, 3246d83b0603SJohn Fastabend struct net_device *dev, 32475d5eacb3SJamal Hadi Salim struct net_device *filter_dev, 3248d297653dSRoopa Prabhu int *idx) 3249d83b0603SJohn Fastabend { 3250d83b0603SJohn Fastabend int err; 3251d83b0603SJohn Fastabend 3252d83b0603SJohn Fastabend netif_addr_lock_bh(dev); 3253d297653dSRoopa Prabhu err = nlmsg_populate_fdb(skb, cb, dev, idx, &dev->uc); 3254d83b0603SJohn Fastabend if (err) 3255d83b0603SJohn Fastabend goto out; 32562934c9dbSZhang Shengju err = nlmsg_populate_fdb(skb, cb, dev, idx, &dev->mc); 3257d83b0603SJohn Fastabend out: 3258d83b0603SJohn Fastabend netif_addr_unlock_bh(dev); 3259d297653dSRoopa Prabhu return err; 3260d83b0603SJohn Fastabend } 3261d83b0603SJohn Fastabend EXPORT_SYMBOL(ndo_dflt_fdb_dump); 3262d83b0603SJohn Fastabend 326377162022SJohn Fastabend static int rtnl_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb) 326477162022SJohn Fastabend { 326577162022SJohn Fastabend struct net_device *dev; 32665e6d2435SJamal Hadi Salim struct nlattr *tb[IFLA_MAX+1]; 32675e6d2435SJamal Hadi Salim struct net_device *br_dev = NULL; 32685e6d2435SJamal Hadi Salim const struct net_device_ops *ops = NULL; 32695e6d2435SJamal Hadi Salim const struct net_device_ops *cops = NULL; 32705e6d2435SJamal Hadi Salim struct ifinfomsg *ifm = nlmsg_data(cb->nlh); 32715e6d2435SJamal Hadi Salim struct net *net = sock_net(skb->sk); 3272d297653dSRoopa Prabhu struct hlist_head *head; 32735e6d2435SJamal Hadi Salim int brport_idx = 0; 32745e6d2435SJamal Hadi Salim int br_idx = 0; 3275d297653dSRoopa Prabhu int h, s_h; 3276d297653dSRoopa Prabhu int idx = 0, s_idx; 3277d297653dSRoopa Prabhu int err = 0; 3278d297653dSRoopa Prabhu int fidx = 0; 327977162022SJohn Fastabend 32800ff50e83SAlexander Potapenko err = nlmsg_parse(cb->nlh, sizeof(struct ifinfomsg), tb, 32810ff50e83SAlexander Potapenko IFLA_MAX, ifla_policy, NULL); 32820ff50e83SAlexander Potapenko if (err < 0) { 32830ff50e83SAlexander Potapenko return -EINVAL; 32840ff50e83SAlexander Potapenko } else if (err == 0) { 32855e6d2435SJamal Hadi Salim if (tb[IFLA_MASTER]) 32865e6d2435SJamal Hadi Salim br_idx = nla_get_u32(tb[IFLA_MASTER]); 32875e6d2435SJamal Hadi Salim } 328877162022SJohn Fastabend 32895e6d2435SJamal Hadi Salim brport_idx = ifm->ifi_index; 32905e6d2435SJamal Hadi Salim 32915e6d2435SJamal Hadi Salim if (br_idx) { 32925e6d2435SJamal Hadi Salim br_dev = __dev_get_by_index(net, br_idx); 32935e6d2435SJamal Hadi Salim if (!br_dev) 32945e6d2435SJamal Hadi Salim return -ENODEV; 32955e6d2435SJamal Hadi Salim 3296898e5061SJiri Pirko ops = br_dev->netdev_ops; 32975e6d2435SJamal Hadi Salim } 32985e6d2435SJamal Hadi Salim 3299d297653dSRoopa Prabhu s_h = cb->args[0]; 3300d297653dSRoopa Prabhu s_idx = cb->args[1]; 3301d297653dSRoopa Prabhu 3302d297653dSRoopa Prabhu for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { 3303d297653dSRoopa Prabhu idx = 0; 3304d297653dSRoopa Prabhu head = &net->dev_index_head[h]; 3305d297653dSRoopa Prabhu hlist_for_each_entry(dev, head, index_hlist) { 3306d297653dSRoopa Prabhu 33075e6d2435SJamal Hadi Salim if (brport_idx && (dev->ifindex != brport_idx)) 33085e6d2435SJamal Hadi Salim continue; 33095e6d2435SJamal Hadi Salim 33105e6d2435SJamal Hadi Salim if (!br_idx) { /* user did not specify a specific bridge */ 33115e6d2435SJamal Hadi Salim if (dev->priv_flags & IFF_BRIDGE_PORT) { 33125e6d2435SJamal Hadi Salim br_dev = netdev_master_upper_dev_get(dev); 33135e6d2435SJamal Hadi Salim cops = br_dev->netdev_ops; 33145e6d2435SJamal Hadi Salim } 33155e6d2435SJamal Hadi Salim } else { 33165e6d2435SJamal Hadi Salim if (dev != br_dev && 33175e6d2435SJamal Hadi Salim !(dev->priv_flags & IFF_BRIDGE_PORT)) 33185e6d2435SJamal Hadi Salim continue; 33195e6d2435SJamal Hadi Salim 33205e6d2435SJamal Hadi Salim if (br_dev != netdev_master_upper_dev_get(dev) && 33215e6d2435SJamal Hadi Salim !(dev->priv_flags & IFF_EBRIDGE)) 33225e6d2435SJamal Hadi Salim continue; 33235e6d2435SJamal Hadi Salim cops = ops; 33245e6d2435SJamal Hadi Salim } 33255e6d2435SJamal Hadi Salim 3326d297653dSRoopa Prabhu if (idx < s_idx) 3327d297653dSRoopa Prabhu goto cont; 3328d297653dSRoopa Prabhu 33295e6d2435SJamal Hadi Salim if (dev->priv_flags & IFF_BRIDGE_PORT) { 3330d297653dSRoopa Prabhu if (cops && cops->ndo_fdb_dump) { 3331d297653dSRoopa Prabhu err = cops->ndo_fdb_dump(skb, cb, 3332d297653dSRoopa Prabhu br_dev, dev, 3333d297653dSRoopa Prabhu &fidx); 3334d297653dSRoopa Prabhu if (err == -EMSGSIZE) 3335d297653dSRoopa Prabhu goto out; 333677162022SJohn Fastabend } 3337d297653dSRoopa Prabhu } 333877162022SJohn Fastabend 33395e6d2435SJamal Hadi Salim if (dev->netdev_ops->ndo_fdb_dump) 3340d297653dSRoopa Prabhu err = dev->netdev_ops->ndo_fdb_dump(skb, cb, 3341d297653dSRoopa Prabhu dev, NULL, 3342d297653dSRoopa Prabhu &fidx); 33436cb69742SHubert Sokolowski else 3344d297653dSRoopa Prabhu err = ndo_dflt_fdb_dump(skb, cb, dev, NULL, 3345d297653dSRoopa Prabhu &fidx); 3346d297653dSRoopa Prabhu if (err == -EMSGSIZE) 3347d297653dSRoopa Prabhu goto out; 33485e6d2435SJamal Hadi Salim 33495e6d2435SJamal Hadi Salim cops = NULL; 3350d297653dSRoopa Prabhu 3351d297653dSRoopa Prabhu /* reset fdb offset to 0 for rest of the interfaces */ 3352d297653dSRoopa Prabhu cb->args[2] = 0; 3353d297653dSRoopa Prabhu fidx = 0; 3354d297653dSRoopa Prabhu cont: 3355d297653dSRoopa Prabhu idx++; 3356d297653dSRoopa Prabhu } 335777162022SJohn Fastabend } 335877162022SJohn Fastabend 3359d297653dSRoopa Prabhu out: 3360d297653dSRoopa Prabhu cb->args[0] = h; 3361d297653dSRoopa Prabhu cb->args[1] = idx; 3362d297653dSRoopa Prabhu cb->args[2] = fidx; 3363d297653dSRoopa Prabhu 336477162022SJohn Fastabend return skb->len; 336577162022SJohn Fastabend } 336677162022SJohn Fastabend 33672c3c031cSScott Feldman static int brport_nla_put_flag(struct sk_buff *skb, u32 flags, u32 mask, 33682c3c031cSScott Feldman unsigned int attrnum, unsigned int flag) 33692c3c031cSScott Feldman { 33702c3c031cSScott Feldman if (mask & flag) 33712c3c031cSScott Feldman return nla_put_u8(skb, attrnum, !!(flags & flag)); 33722c3c031cSScott Feldman return 0; 33732c3c031cSScott Feldman } 33742c3c031cSScott Feldman 3375815cccbfSJohn Fastabend int ndo_dflt_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq, 33762c3c031cSScott Feldman struct net_device *dev, u16 mode, 33777d4f8d87SScott Feldman u32 flags, u32 mask, int nlflags, 33787d4f8d87SScott Feldman u32 filter_mask, 33797d4f8d87SScott Feldman int (*vlan_fill)(struct sk_buff *skb, 33807d4f8d87SScott Feldman struct net_device *dev, 33817d4f8d87SScott Feldman u32 filter_mask)) 3382815cccbfSJohn Fastabend { 3383815cccbfSJohn Fastabend struct nlmsghdr *nlh; 3384815cccbfSJohn Fastabend struct ifinfomsg *ifm; 3385815cccbfSJohn Fastabend struct nlattr *br_afspec; 33862c3c031cSScott Feldman struct nlattr *protinfo; 3387815cccbfSJohn Fastabend u8 operstate = netif_running(dev) ? dev->operstate : IF_OPER_DOWN; 3388898e5061SJiri Pirko struct net_device *br_dev = netdev_master_upper_dev_get(dev); 33897d4f8d87SScott Feldman int err = 0; 3390815cccbfSJohn Fastabend 339146c264daSNicolas Dichtel nlh = nlmsg_put(skb, pid, seq, RTM_NEWLINK, sizeof(*ifm), nlflags); 3392815cccbfSJohn Fastabend if (nlh == NULL) 3393815cccbfSJohn Fastabend return -EMSGSIZE; 3394815cccbfSJohn Fastabend 3395815cccbfSJohn Fastabend ifm = nlmsg_data(nlh); 3396815cccbfSJohn Fastabend ifm->ifi_family = AF_BRIDGE; 3397815cccbfSJohn Fastabend ifm->__ifi_pad = 0; 3398815cccbfSJohn Fastabend ifm->ifi_type = dev->type; 3399815cccbfSJohn Fastabend ifm->ifi_index = dev->ifindex; 3400815cccbfSJohn Fastabend ifm->ifi_flags = dev_get_flags(dev); 3401815cccbfSJohn Fastabend ifm->ifi_change = 0; 3402815cccbfSJohn Fastabend 3403815cccbfSJohn Fastabend 3404815cccbfSJohn Fastabend if (nla_put_string(skb, IFLA_IFNAME, dev->name) || 3405815cccbfSJohn Fastabend nla_put_u32(skb, IFLA_MTU, dev->mtu) || 3406815cccbfSJohn Fastabend nla_put_u8(skb, IFLA_OPERSTATE, operstate) || 3407898e5061SJiri Pirko (br_dev && 3408898e5061SJiri Pirko nla_put_u32(skb, IFLA_MASTER, br_dev->ifindex)) || 3409815cccbfSJohn Fastabend (dev->addr_len && 3410815cccbfSJohn Fastabend nla_put(skb, IFLA_ADDRESS, dev->addr_len, dev->dev_addr)) || 3411a54acb3aSNicolas Dichtel (dev->ifindex != dev_get_iflink(dev) && 3412a54acb3aSNicolas Dichtel nla_put_u32(skb, IFLA_LINK, dev_get_iflink(dev)))) 3413815cccbfSJohn Fastabend goto nla_put_failure; 3414815cccbfSJohn Fastabend 3415815cccbfSJohn Fastabend br_afspec = nla_nest_start(skb, IFLA_AF_SPEC); 3416815cccbfSJohn Fastabend if (!br_afspec) 3417815cccbfSJohn Fastabend goto nla_put_failure; 3418815cccbfSJohn Fastabend 34191d460b98SRoopa Prabhu if (nla_put_u16(skb, IFLA_BRIDGE_FLAGS, BRIDGE_FLAGS_SELF)) { 3420815cccbfSJohn Fastabend nla_nest_cancel(skb, br_afspec); 3421815cccbfSJohn Fastabend goto nla_put_failure; 3422815cccbfSJohn Fastabend } 34231d460b98SRoopa Prabhu 34241d460b98SRoopa Prabhu if (mode != BRIDGE_MODE_UNDEF) { 34251d460b98SRoopa Prabhu if (nla_put_u16(skb, IFLA_BRIDGE_MODE, mode)) { 34261d460b98SRoopa Prabhu nla_nest_cancel(skb, br_afspec); 34271d460b98SRoopa Prabhu goto nla_put_failure; 34281d460b98SRoopa Prabhu } 34291d460b98SRoopa Prabhu } 34307d4f8d87SScott Feldman if (vlan_fill) { 34317d4f8d87SScott Feldman err = vlan_fill(skb, dev, filter_mask); 34327d4f8d87SScott Feldman if (err) { 34337d4f8d87SScott Feldman nla_nest_cancel(skb, br_afspec); 34347d4f8d87SScott Feldman goto nla_put_failure; 34357d4f8d87SScott Feldman } 34367d4f8d87SScott Feldman } 3437815cccbfSJohn Fastabend nla_nest_end(skb, br_afspec); 3438815cccbfSJohn Fastabend 34392c3c031cSScott Feldman protinfo = nla_nest_start(skb, IFLA_PROTINFO | NLA_F_NESTED); 34402c3c031cSScott Feldman if (!protinfo) 34412c3c031cSScott Feldman goto nla_put_failure; 34422c3c031cSScott Feldman 34432c3c031cSScott Feldman if (brport_nla_put_flag(skb, flags, mask, 34442c3c031cSScott Feldman IFLA_BRPORT_MODE, BR_HAIRPIN_MODE) || 34452c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34462c3c031cSScott Feldman IFLA_BRPORT_GUARD, BR_BPDU_GUARD) || 34472c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34482c3c031cSScott Feldman IFLA_BRPORT_FAST_LEAVE, 34492c3c031cSScott Feldman BR_MULTICAST_FAST_LEAVE) || 34502c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34512c3c031cSScott Feldman IFLA_BRPORT_PROTECT, BR_ROOT_BLOCK) || 34522c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34532c3c031cSScott Feldman IFLA_BRPORT_LEARNING, BR_LEARNING) || 34542c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34552c3c031cSScott Feldman IFLA_BRPORT_LEARNING_SYNC, BR_LEARNING_SYNC) || 34562c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34572c3c031cSScott Feldman IFLA_BRPORT_UNICAST_FLOOD, BR_FLOOD) || 34582c3c031cSScott Feldman brport_nla_put_flag(skb, flags, mask, 34592c3c031cSScott Feldman IFLA_BRPORT_PROXYARP, BR_PROXYARP)) { 34602c3c031cSScott Feldman nla_nest_cancel(skb, protinfo); 34612c3c031cSScott Feldman goto nla_put_failure; 34622c3c031cSScott Feldman } 34632c3c031cSScott Feldman 34642c3c031cSScott Feldman nla_nest_end(skb, protinfo); 34652c3c031cSScott Feldman 3466053c095aSJohannes Berg nlmsg_end(skb, nlh); 3467053c095aSJohannes Berg return 0; 3468815cccbfSJohn Fastabend nla_put_failure: 3469815cccbfSJohn Fastabend nlmsg_cancel(skb, nlh); 34707d4f8d87SScott Feldman return err ? err : -EMSGSIZE; 3471815cccbfSJohn Fastabend } 34727d4f8d87SScott Feldman EXPORT_SYMBOL_GPL(ndo_dflt_bridge_getlink); 3473815cccbfSJohn Fastabend 3474e5a55a89SJohn Fastabend static int rtnl_bridge_getlink(struct sk_buff *skb, struct netlink_callback *cb) 3475e5a55a89SJohn Fastabend { 3476e5a55a89SJohn Fastabend struct net *net = sock_net(skb->sk); 3477e5a55a89SJohn Fastabend struct net_device *dev; 3478e5a55a89SJohn Fastabend int idx = 0; 3479e5a55a89SJohn Fastabend u32 portid = NETLINK_CB(cb->skb).portid; 3480e5a55a89SJohn Fastabend u32 seq = cb->nlh->nlmsg_seq; 34816cbdceebSVlad Yasevich u32 filter_mask = 0; 3482d64f69b0SRoopa Prabhu int err; 34836cbdceebSVlad Yasevich 3484aa68c20fSThomas Graf if (nlmsg_len(cb->nlh) > sizeof(struct ifinfomsg)) { 3485aa68c20fSThomas Graf struct nlattr *extfilt; 3486aa68c20fSThomas Graf 34873e805ad2SAsbjoern Sloth Toennesen extfilt = nlmsg_find_attr(cb->nlh, sizeof(struct ifinfomsg), 34886cbdceebSVlad Yasevich IFLA_EXT_MASK); 3489aa68c20fSThomas Graf if (extfilt) { 3490aa68c20fSThomas Graf if (nla_len(extfilt) < sizeof(filter_mask)) 3491aa68c20fSThomas Graf return -EINVAL; 3492aa68c20fSThomas Graf 34936cbdceebSVlad Yasevich filter_mask = nla_get_u32(extfilt); 3494aa68c20fSThomas Graf } 3495aa68c20fSThomas Graf } 3496e5a55a89SJohn Fastabend 3497e5a55a89SJohn Fastabend rcu_read_lock(); 3498e5a55a89SJohn Fastabend for_each_netdev_rcu(net, dev) { 3499e5a55a89SJohn Fastabend const struct net_device_ops *ops = dev->netdev_ops; 3500898e5061SJiri Pirko struct net_device *br_dev = netdev_master_upper_dev_get(dev); 3501e5a55a89SJohn Fastabend 3502898e5061SJiri Pirko if (br_dev && br_dev->netdev_ops->ndo_bridge_getlink) { 3503d64f69b0SRoopa Prabhu if (idx >= cb->args[0]) { 3504d64f69b0SRoopa Prabhu err = br_dev->netdev_ops->ndo_bridge_getlink( 3505d64f69b0SRoopa Prabhu skb, portid, seq, dev, 3506d64f69b0SRoopa Prabhu filter_mask, NLM_F_MULTI); 3507f6c5775fSDavid Ahern if (err < 0 && err != -EOPNOTSUPP) { 3508f6c5775fSDavid Ahern if (likely(skb->len)) 3509e5a55a89SJohn Fastabend break; 3510f6c5775fSDavid Ahern 3511f6c5775fSDavid Ahern goto out_err; 3512f6c5775fSDavid Ahern } 3513d64f69b0SRoopa Prabhu } 3514e5a55a89SJohn Fastabend idx++; 3515e5a55a89SJohn Fastabend } 3516e5a55a89SJohn Fastabend 3517e5a55a89SJohn Fastabend if (ops->ndo_bridge_getlink) { 3518d64f69b0SRoopa Prabhu if (idx >= cb->args[0]) { 3519d64f69b0SRoopa Prabhu err = ops->ndo_bridge_getlink(skb, portid, 3520d64f69b0SRoopa Prabhu seq, dev, 352146c264daSNicolas Dichtel filter_mask, 3522d64f69b0SRoopa Prabhu NLM_F_MULTI); 3523f6c5775fSDavid Ahern if (err < 0 && err != -EOPNOTSUPP) { 3524f6c5775fSDavid Ahern if (likely(skb->len)) 3525e5a55a89SJohn Fastabend break; 3526f6c5775fSDavid Ahern 3527f6c5775fSDavid Ahern goto out_err; 3528f6c5775fSDavid Ahern } 3529d64f69b0SRoopa Prabhu } 3530e5a55a89SJohn Fastabend idx++; 3531e5a55a89SJohn Fastabend } 3532e5a55a89SJohn Fastabend } 3533f6c5775fSDavid Ahern err = skb->len; 3534f6c5775fSDavid Ahern out_err: 3535e5a55a89SJohn Fastabend rcu_read_unlock(); 3536e5a55a89SJohn Fastabend cb->args[0] = idx; 3537e5a55a89SJohn Fastabend 3538f6c5775fSDavid Ahern return err; 3539e5a55a89SJohn Fastabend } 3540e5a55a89SJohn Fastabend 35412469ffd7SJohn Fastabend static inline size_t bridge_nlmsg_size(void) 35422469ffd7SJohn Fastabend { 35432469ffd7SJohn Fastabend return NLMSG_ALIGN(sizeof(struct ifinfomsg)) 35442469ffd7SJohn Fastabend + nla_total_size(IFNAMSIZ) /* IFLA_IFNAME */ 35452469ffd7SJohn Fastabend + nla_total_size(MAX_ADDR_LEN) /* IFLA_ADDRESS */ 35462469ffd7SJohn Fastabend + nla_total_size(sizeof(u32)) /* IFLA_MASTER */ 35472469ffd7SJohn Fastabend + nla_total_size(sizeof(u32)) /* IFLA_MTU */ 35482469ffd7SJohn Fastabend + nla_total_size(sizeof(u32)) /* IFLA_LINK */ 35492469ffd7SJohn Fastabend + nla_total_size(sizeof(u32)) /* IFLA_OPERSTATE */ 35502469ffd7SJohn Fastabend + nla_total_size(sizeof(u8)) /* IFLA_PROTINFO */ 35512469ffd7SJohn Fastabend + nla_total_size(sizeof(struct nlattr)) /* IFLA_AF_SPEC */ 35522469ffd7SJohn Fastabend + nla_total_size(sizeof(u16)) /* IFLA_BRIDGE_FLAGS */ 35532469ffd7SJohn Fastabend + nla_total_size(sizeof(u16)); /* IFLA_BRIDGE_MODE */ 35542469ffd7SJohn Fastabend } 35552469ffd7SJohn Fastabend 355602dba438SRoopa Prabhu static int rtnl_bridge_notify(struct net_device *dev) 35572469ffd7SJohn Fastabend { 35582469ffd7SJohn Fastabend struct net *net = dev_net(dev); 35592469ffd7SJohn Fastabend struct sk_buff *skb; 35602469ffd7SJohn Fastabend int err = -EOPNOTSUPP; 35612469ffd7SJohn Fastabend 356202dba438SRoopa Prabhu if (!dev->netdev_ops->ndo_bridge_getlink) 356302dba438SRoopa Prabhu return 0; 356402dba438SRoopa Prabhu 35652469ffd7SJohn Fastabend skb = nlmsg_new(bridge_nlmsg_size(), GFP_ATOMIC); 35662469ffd7SJohn Fastabend if (!skb) { 35672469ffd7SJohn Fastabend err = -ENOMEM; 35682469ffd7SJohn Fastabend goto errout; 35692469ffd7SJohn Fastabend } 35702469ffd7SJohn Fastabend 357146c264daSNicolas Dichtel err = dev->netdev_ops->ndo_bridge_getlink(skb, 0, 0, dev, 0, 0); 3572c38e01b8SJohn Fastabend if (err < 0) 3573c38e01b8SJohn Fastabend goto errout; 35742469ffd7SJohn Fastabend 357559ccaaaaSRoopa Prabhu if (!skb->len) 357659ccaaaaSRoopa Prabhu goto errout; 357759ccaaaaSRoopa Prabhu 35782469ffd7SJohn Fastabend rtnl_notify(skb, net, 0, RTNLGRP_LINK, NULL, GFP_ATOMIC); 35792469ffd7SJohn Fastabend return 0; 35802469ffd7SJohn Fastabend errout: 35812469ffd7SJohn Fastabend WARN_ON(err == -EMSGSIZE); 35822469ffd7SJohn Fastabend kfree_skb(skb); 358359ccaaaaSRoopa Prabhu if (err) 35842469ffd7SJohn Fastabend rtnl_set_sk_err(net, RTNLGRP_LINK, err); 35852469ffd7SJohn Fastabend return err; 35862469ffd7SJohn Fastabend } 35872469ffd7SJohn Fastabend 3588c21ef3e3SDavid Ahern static int rtnl_bridge_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, 3589c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 3590e5a55a89SJohn Fastabend { 3591e5a55a89SJohn Fastabend struct net *net = sock_net(skb->sk); 3592e5a55a89SJohn Fastabend struct ifinfomsg *ifm; 3593e5a55a89SJohn Fastabend struct net_device *dev; 35942469ffd7SJohn Fastabend struct nlattr *br_spec, *attr = NULL; 35952469ffd7SJohn Fastabend int rem, err = -EOPNOTSUPP; 35964de8b413SRosen, Rami u16 flags = 0; 3597c38e01b8SJohn Fastabend bool have_flags = false; 3598e5a55a89SJohn Fastabend 3599e5a55a89SJohn Fastabend if (nlmsg_len(nlh) < sizeof(*ifm)) 3600e5a55a89SJohn Fastabend return -EINVAL; 3601e5a55a89SJohn Fastabend 3602e5a55a89SJohn Fastabend ifm = nlmsg_data(nlh); 3603e5a55a89SJohn Fastabend if (ifm->ifi_family != AF_BRIDGE) 3604e5a55a89SJohn Fastabend return -EPFNOSUPPORT; 3605e5a55a89SJohn Fastabend 3606e5a55a89SJohn Fastabend dev = __dev_get_by_index(net, ifm->ifi_index); 3607e5a55a89SJohn Fastabend if (!dev) { 3608e5a55a89SJohn Fastabend pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n"); 3609e5a55a89SJohn Fastabend return -ENODEV; 3610e5a55a89SJohn Fastabend } 3611e5a55a89SJohn Fastabend 36122469ffd7SJohn Fastabend br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); 36132469ffd7SJohn Fastabend if (br_spec) { 36142469ffd7SJohn Fastabend nla_for_each_nested(attr, br_spec, rem) { 36152469ffd7SJohn Fastabend if (nla_type(attr) == IFLA_BRIDGE_FLAGS) { 36166e8d1c55SThomas Graf if (nla_len(attr) < sizeof(flags)) 36176e8d1c55SThomas Graf return -EINVAL; 36186e8d1c55SThomas Graf 3619c38e01b8SJohn Fastabend have_flags = true; 36202469ffd7SJohn Fastabend flags = nla_get_u16(attr); 36212469ffd7SJohn Fastabend break; 36222469ffd7SJohn Fastabend } 36232469ffd7SJohn Fastabend } 36242469ffd7SJohn Fastabend } 36252469ffd7SJohn Fastabend 36262469ffd7SJohn Fastabend if (!flags || (flags & BRIDGE_FLAGS_MASTER)) { 3627898e5061SJiri Pirko struct net_device *br_dev = netdev_master_upper_dev_get(dev); 3628898e5061SJiri Pirko 3629898e5061SJiri Pirko if (!br_dev || !br_dev->netdev_ops->ndo_bridge_setlink) { 36302469ffd7SJohn Fastabend err = -EOPNOTSUPP; 3631e5a55a89SJohn Fastabend goto out; 3632e5a55a89SJohn Fastabend } 3633e5a55a89SJohn Fastabend 3634add511b3SRoopa Prabhu err = br_dev->netdev_ops->ndo_bridge_setlink(dev, nlh, flags); 36352469ffd7SJohn Fastabend if (err) 36362469ffd7SJohn Fastabend goto out; 36372469ffd7SJohn Fastabend 36382469ffd7SJohn Fastabend flags &= ~BRIDGE_FLAGS_MASTER; 36392469ffd7SJohn Fastabend } 36402469ffd7SJohn Fastabend 36412469ffd7SJohn Fastabend if ((flags & BRIDGE_FLAGS_SELF)) { 36422469ffd7SJohn Fastabend if (!dev->netdev_ops->ndo_bridge_setlink) 36432469ffd7SJohn Fastabend err = -EOPNOTSUPP; 36442469ffd7SJohn Fastabend else 3645add511b3SRoopa Prabhu err = dev->netdev_ops->ndo_bridge_setlink(dev, nlh, 3646add511b3SRoopa Prabhu flags); 364702dba438SRoopa Prabhu if (!err) { 36482469ffd7SJohn Fastabend flags &= ~BRIDGE_FLAGS_SELF; 364902dba438SRoopa Prabhu 365002dba438SRoopa Prabhu /* Generate event to notify upper layer of bridge 365102dba438SRoopa Prabhu * change 365202dba438SRoopa Prabhu */ 365302dba438SRoopa Prabhu err = rtnl_bridge_notify(dev); 365402dba438SRoopa Prabhu } 36552469ffd7SJohn Fastabend } 36562469ffd7SJohn Fastabend 3657c38e01b8SJohn Fastabend if (have_flags) 36582469ffd7SJohn Fastabend memcpy(nla_data(attr), &flags, sizeof(flags)); 3659e5a55a89SJohn Fastabend out: 3660e5a55a89SJohn Fastabend return err; 3661e5a55a89SJohn Fastabend } 3662e5a55a89SJohn Fastabend 3663c21ef3e3SDavid Ahern static int rtnl_bridge_dellink(struct sk_buff *skb, struct nlmsghdr *nlh, 3664c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 3665407af329SVlad Yasevich { 3666407af329SVlad Yasevich struct net *net = sock_net(skb->sk); 3667407af329SVlad Yasevich struct ifinfomsg *ifm; 3668407af329SVlad Yasevich struct net_device *dev; 3669407af329SVlad Yasevich struct nlattr *br_spec, *attr = NULL; 3670407af329SVlad Yasevich int rem, err = -EOPNOTSUPP; 36714de8b413SRosen, Rami u16 flags = 0; 3672407af329SVlad Yasevich bool have_flags = false; 3673407af329SVlad Yasevich 3674407af329SVlad Yasevich if (nlmsg_len(nlh) < sizeof(*ifm)) 3675407af329SVlad Yasevich return -EINVAL; 3676407af329SVlad Yasevich 3677407af329SVlad Yasevich ifm = nlmsg_data(nlh); 3678407af329SVlad Yasevich if (ifm->ifi_family != AF_BRIDGE) 3679407af329SVlad Yasevich return -EPFNOSUPPORT; 3680407af329SVlad Yasevich 3681407af329SVlad Yasevich dev = __dev_get_by_index(net, ifm->ifi_index); 3682407af329SVlad Yasevich if (!dev) { 3683407af329SVlad Yasevich pr_info("PF_BRIDGE: RTM_SETLINK with unknown ifindex\n"); 3684407af329SVlad Yasevich return -ENODEV; 3685407af329SVlad Yasevich } 3686407af329SVlad Yasevich 3687407af329SVlad Yasevich br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC); 3688407af329SVlad Yasevich if (br_spec) { 3689407af329SVlad Yasevich nla_for_each_nested(attr, br_spec, rem) { 3690407af329SVlad Yasevich if (nla_type(attr) == IFLA_BRIDGE_FLAGS) { 36916e8d1c55SThomas Graf if (nla_len(attr) < sizeof(flags)) 36926e8d1c55SThomas Graf return -EINVAL; 36936e8d1c55SThomas Graf 3694407af329SVlad Yasevich have_flags = true; 3695407af329SVlad Yasevich flags = nla_get_u16(attr); 3696407af329SVlad Yasevich break; 3697407af329SVlad Yasevich } 3698407af329SVlad Yasevich } 3699407af329SVlad Yasevich } 3700407af329SVlad Yasevich 3701407af329SVlad Yasevich if (!flags || (flags & BRIDGE_FLAGS_MASTER)) { 3702407af329SVlad Yasevich struct net_device *br_dev = netdev_master_upper_dev_get(dev); 3703407af329SVlad Yasevich 3704407af329SVlad Yasevich if (!br_dev || !br_dev->netdev_ops->ndo_bridge_dellink) { 3705407af329SVlad Yasevich err = -EOPNOTSUPP; 3706407af329SVlad Yasevich goto out; 3707407af329SVlad Yasevich } 3708407af329SVlad Yasevich 3709add511b3SRoopa Prabhu err = br_dev->netdev_ops->ndo_bridge_dellink(dev, nlh, flags); 3710407af329SVlad Yasevich if (err) 3711407af329SVlad Yasevich goto out; 3712407af329SVlad Yasevich 3713407af329SVlad Yasevich flags &= ~BRIDGE_FLAGS_MASTER; 3714407af329SVlad Yasevich } 3715407af329SVlad Yasevich 3716407af329SVlad Yasevich if ((flags & BRIDGE_FLAGS_SELF)) { 3717407af329SVlad Yasevich if (!dev->netdev_ops->ndo_bridge_dellink) 3718407af329SVlad Yasevich err = -EOPNOTSUPP; 3719407af329SVlad Yasevich else 3720add511b3SRoopa Prabhu err = dev->netdev_ops->ndo_bridge_dellink(dev, nlh, 3721add511b3SRoopa Prabhu flags); 3722407af329SVlad Yasevich 372302dba438SRoopa Prabhu if (!err) { 3724407af329SVlad Yasevich flags &= ~BRIDGE_FLAGS_SELF; 372502dba438SRoopa Prabhu 372602dba438SRoopa Prabhu /* Generate event to notify upper layer of bridge 372702dba438SRoopa Prabhu * change 372802dba438SRoopa Prabhu */ 372902dba438SRoopa Prabhu err = rtnl_bridge_notify(dev); 373002dba438SRoopa Prabhu } 3731407af329SVlad Yasevich } 3732407af329SVlad Yasevich 3733407af329SVlad Yasevich if (have_flags) 3734407af329SVlad Yasevich memcpy(nla_data(attr), &flags, sizeof(flags)); 3735407af329SVlad Yasevich out: 3736407af329SVlad Yasevich return err; 3737407af329SVlad Yasevich } 3738407af329SVlad Yasevich 3739e8872a25SNikolay Aleksandrov static bool stats_attr_valid(unsigned int mask, int attrid, int idxattr) 3740e8872a25SNikolay Aleksandrov { 3741e8872a25SNikolay Aleksandrov return (mask & IFLA_STATS_FILTER_BIT(attrid)) && 3742e8872a25SNikolay Aleksandrov (!idxattr || idxattr == attrid); 3743e8872a25SNikolay Aleksandrov } 3744e8872a25SNikolay Aleksandrov 374569ae6ad2SNogah Frankel #define IFLA_OFFLOAD_XSTATS_FIRST (IFLA_OFFLOAD_XSTATS_UNSPEC + 1) 374669ae6ad2SNogah Frankel static int rtnl_get_offload_stats_attr_size(int attr_id) 374769ae6ad2SNogah Frankel { 374869ae6ad2SNogah Frankel switch (attr_id) { 374969ae6ad2SNogah Frankel case IFLA_OFFLOAD_XSTATS_CPU_HIT: 375069ae6ad2SNogah Frankel return sizeof(struct rtnl_link_stats64); 375169ae6ad2SNogah Frankel } 375269ae6ad2SNogah Frankel 375369ae6ad2SNogah Frankel return 0; 375469ae6ad2SNogah Frankel } 375569ae6ad2SNogah Frankel 375669ae6ad2SNogah Frankel static int rtnl_get_offload_stats(struct sk_buff *skb, struct net_device *dev, 375769ae6ad2SNogah Frankel int *prividx) 375869ae6ad2SNogah Frankel { 375969ae6ad2SNogah Frankel struct nlattr *attr = NULL; 376069ae6ad2SNogah Frankel int attr_id, size; 376169ae6ad2SNogah Frankel void *attr_data; 376269ae6ad2SNogah Frankel int err; 376369ae6ad2SNogah Frankel 376469ae6ad2SNogah Frankel if (!(dev->netdev_ops && dev->netdev_ops->ndo_has_offload_stats && 376569ae6ad2SNogah Frankel dev->netdev_ops->ndo_get_offload_stats)) 376669ae6ad2SNogah Frankel return -ENODATA; 376769ae6ad2SNogah Frankel 376869ae6ad2SNogah Frankel for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST; 376969ae6ad2SNogah Frankel attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) { 377069ae6ad2SNogah Frankel if (attr_id < *prividx) 377169ae6ad2SNogah Frankel continue; 377269ae6ad2SNogah Frankel 377369ae6ad2SNogah Frankel size = rtnl_get_offload_stats_attr_size(attr_id); 377469ae6ad2SNogah Frankel if (!size) 377569ae6ad2SNogah Frankel continue; 377669ae6ad2SNogah Frankel 37773df5b3c6SOr Gerlitz if (!dev->netdev_ops->ndo_has_offload_stats(dev, attr_id)) 377869ae6ad2SNogah Frankel continue; 377969ae6ad2SNogah Frankel 378069ae6ad2SNogah Frankel attr = nla_reserve_64bit(skb, attr_id, size, 378169ae6ad2SNogah Frankel IFLA_OFFLOAD_XSTATS_UNSPEC); 378269ae6ad2SNogah Frankel if (!attr) 378369ae6ad2SNogah Frankel goto nla_put_failure; 378469ae6ad2SNogah Frankel 378569ae6ad2SNogah Frankel attr_data = nla_data(attr); 378669ae6ad2SNogah Frankel memset(attr_data, 0, size); 378769ae6ad2SNogah Frankel err = dev->netdev_ops->ndo_get_offload_stats(attr_id, dev, 378869ae6ad2SNogah Frankel attr_data); 378969ae6ad2SNogah Frankel if (err) 379069ae6ad2SNogah Frankel goto get_offload_stats_failure; 379169ae6ad2SNogah Frankel } 379269ae6ad2SNogah Frankel 379369ae6ad2SNogah Frankel if (!attr) 379469ae6ad2SNogah Frankel return -ENODATA; 379569ae6ad2SNogah Frankel 379669ae6ad2SNogah Frankel *prividx = 0; 379769ae6ad2SNogah Frankel return 0; 379869ae6ad2SNogah Frankel 379969ae6ad2SNogah Frankel nla_put_failure: 380069ae6ad2SNogah Frankel err = -EMSGSIZE; 380169ae6ad2SNogah Frankel get_offload_stats_failure: 380269ae6ad2SNogah Frankel *prividx = attr_id; 380369ae6ad2SNogah Frankel return err; 380469ae6ad2SNogah Frankel } 380569ae6ad2SNogah Frankel 380669ae6ad2SNogah Frankel static int rtnl_get_offload_stats_size(const struct net_device *dev) 380769ae6ad2SNogah Frankel { 380869ae6ad2SNogah Frankel int nla_size = 0; 380969ae6ad2SNogah Frankel int attr_id; 381069ae6ad2SNogah Frankel int size; 381169ae6ad2SNogah Frankel 381269ae6ad2SNogah Frankel if (!(dev->netdev_ops && dev->netdev_ops->ndo_has_offload_stats && 381369ae6ad2SNogah Frankel dev->netdev_ops->ndo_get_offload_stats)) 381469ae6ad2SNogah Frankel return 0; 381569ae6ad2SNogah Frankel 381669ae6ad2SNogah Frankel for (attr_id = IFLA_OFFLOAD_XSTATS_FIRST; 381769ae6ad2SNogah Frankel attr_id <= IFLA_OFFLOAD_XSTATS_MAX; attr_id++) { 38183df5b3c6SOr Gerlitz if (!dev->netdev_ops->ndo_has_offload_stats(dev, attr_id)) 381969ae6ad2SNogah Frankel continue; 382069ae6ad2SNogah Frankel size = rtnl_get_offload_stats_attr_size(attr_id); 382169ae6ad2SNogah Frankel nla_size += nla_total_size_64bit(size); 382269ae6ad2SNogah Frankel } 382369ae6ad2SNogah Frankel 382469ae6ad2SNogah Frankel if (nla_size != 0) 382569ae6ad2SNogah Frankel nla_size += nla_total_size(0); 382669ae6ad2SNogah Frankel 382769ae6ad2SNogah Frankel return nla_size; 382869ae6ad2SNogah Frankel } 382969ae6ad2SNogah Frankel 383010c9ead9SRoopa Prabhu static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev, 383110c9ead9SRoopa Prabhu int type, u32 pid, u32 seq, u32 change, 3832e8872a25SNikolay Aleksandrov unsigned int flags, unsigned int filter_mask, 3833e8872a25SNikolay Aleksandrov int *idxattr, int *prividx) 383410c9ead9SRoopa Prabhu { 383510c9ead9SRoopa Prabhu struct if_stats_msg *ifsm; 383610c9ead9SRoopa Prabhu struct nlmsghdr *nlh; 383710c9ead9SRoopa Prabhu struct nlattr *attr; 3838e8872a25SNikolay Aleksandrov int s_prividx = *prividx; 383969ae6ad2SNogah Frankel int err; 384010c9ead9SRoopa Prabhu 384110c9ead9SRoopa Prabhu ASSERT_RTNL(); 384210c9ead9SRoopa Prabhu 384310c9ead9SRoopa Prabhu nlh = nlmsg_put(skb, pid, seq, type, sizeof(*ifsm), flags); 384410c9ead9SRoopa Prabhu if (!nlh) 384510c9ead9SRoopa Prabhu return -EMSGSIZE; 384610c9ead9SRoopa Prabhu 384710c9ead9SRoopa Prabhu ifsm = nlmsg_data(nlh); 384810c9ead9SRoopa Prabhu ifsm->ifindex = dev->ifindex; 384910c9ead9SRoopa Prabhu ifsm->filter_mask = filter_mask; 385010c9ead9SRoopa Prabhu 3851e8872a25SNikolay Aleksandrov if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, *idxattr)) { 385210c9ead9SRoopa Prabhu struct rtnl_link_stats64 *sp; 385310c9ead9SRoopa Prabhu 385458414d32SNicolas Dichtel attr = nla_reserve_64bit(skb, IFLA_STATS_LINK_64, 385558414d32SNicolas Dichtel sizeof(struct rtnl_link_stats64), 385658414d32SNicolas Dichtel IFLA_STATS_UNSPEC); 385710c9ead9SRoopa Prabhu if (!attr) 385810c9ead9SRoopa Prabhu goto nla_put_failure; 385910c9ead9SRoopa Prabhu 386010c9ead9SRoopa Prabhu sp = nla_data(attr); 386110c9ead9SRoopa Prabhu dev_get_stats(dev, sp); 386210c9ead9SRoopa Prabhu } 386310c9ead9SRoopa Prabhu 386497a47facSNikolay Aleksandrov if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS, *idxattr)) { 386597a47facSNikolay Aleksandrov const struct rtnl_link_ops *ops = dev->rtnl_link_ops; 386697a47facSNikolay Aleksandrov 386797a47facSNikolay Aleksandrov if (ops && ops->fill_linkxstats) { 386897a47facSNikolay Aleksandrov *idxattr = IFLA_STATS_LINK_XSTATS; 386997a47facSNikolay Aleksandrov attr = nla_nest_start(skb, 387097a47facSNikolay Aleksandrov IFLA_STATS_LINK_XSTATS); 387197a47facSNikolay Aleksandrov if (!attr) 387297a47facSNikolay Aleksandrov goto nla_put_failure; 387397a47facSNikolay Aleksandrov 387480e73cc5SNikolay Aleksandrov err = ops->fill_linkxstats(skb, dev, prividx, *idxattr); 387580e73cc5SNikolay Aleksandrov nla_nest_end(skb, attr); 387680e73cc5SNikolay Aleksandrov if (err) 387780e73cc5SNikolay Aleksandrov goto nla_put_failure; 387880e73cc5SNikolay Aleksandrov *idxattr = 0; 387980e73cc5SNikolay Aleksandrov } 388080e73cc5SNikolay Aleksandrov } 388180e73cc5SNikolay Aleksandrov 388280e73cc5SNikolay Aleksandrov if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS_SLAVE, 388380e73cc5SNikolay Aleksandrov *idxattr)) { 388480e73cc5SNikolay Aleksandrov const struct rtnl_link_ops *ops = NULL; 388580e73cc5SNikolay Aleksandrov const struct net_device *master; 388680e73cc5SNikolay Aleksandrov 388780e73cc5SNikolay Aleksandrov master = netdev_master_upper_dev_get(dev); 388880e73cc5SNikolay Aleksandrov if (master) 388980e73cc5SNikolay Aleksandrov ops = master->rtnl_link_ops; 389080e73cc5SNikolay Aleksandrov if (ops && ops->fill_linkxstats) { 389180e73cc5SNikolay Aleksandrov *idxattr = IFLA_STATS_LINK_XSTATS_SLAVE; 389280e73cc5SNikolay Aleksandrov attr = nla_nest_start(skb, 389380e73cc5SNikolay Aleksandrov IFLA_STATS_LINK_XSTATS_SLAVE); 389480e73cc5SNikolay Aleksandrov if (!attr) 389580e73cc5SNikolay Aleksandrov goto nla_put_failure; 389680e73cc5SNikolay Aleksandrov 389780e73cc5SNikolay Aleksandrov err = ops->fill_linkxstats(skb, dev, prividx, *idxattr); 389897a47facSNikolay Aleksandrov nla_nest_end(skb, attr); 389997a47facSNikolay Aleksandrov if (err) 390097a47facSNikolay Aleksandrov goto nla_put_failure; 390197a47facSNikolay Aleksandrov *idxattr = 0; 390297a47facSNikolay Aleksandrov } 390397a47facSNikolay Aleksandrov } 390497a47facSNikolay Aleksandrov 390569ae6ad2SNogah Frankel if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS, 390669ae6ad2SNogah Frankel *idxattr)) { 390769ae6ad2SNogah Frankel *idxattr = IFLA_STATS_LINK_OFFLOAD_XSTATS; 390869ae6ad2SNogah Frankel attr = nla_nest_start(skb, IFLA_STATS_LINK_OFFLOAD_XSTATS); 390969ae6ad2SNogah Frankel if (!attr) 391069ae6ad2SNogah Frankel goto nla_put_failure; 391169ae6ad2SNogah Frankel 391269ae6ad2SNogah Frankel err = rtnl_get_offload_stats(skb, dev, prividx); 391369ae6ad2SNogah Frankel if (err == -ENODATA) 391469ae6ad2SNogah Frankel nla_nest_cancel(skb, attr); 391569ae6ad2SNogah Frankel else 391669ae6ad2SNogah Frankel nla_nest_end(skb, attr); 391769ae6ad2SNogah Frankel 391869ae6ad2SNogah Frankel if (err && err != -ENODATA) 391969ae6ad2SNogah Frankel goto nla_put_failure; 392069ae6ad2SNogah Frankel *idxattr = 0; 392169ae6ad2SNogah Frankel } 392269ae6ad2SNogah Frankel 3923aefb4d4aSRobert Shearman if (stats_attr_valid(filter_mask, IFLA_STATS_AF_SPEC, *idxattr)) { 3924aefb4d4aSRobert Shearman struct rtnl_af_ops *af_ops; 3925aefb4d4aSRobert Shearman 3926aefb4d4aSRobert Shearman *idxattr = IFLA_STATS_AF_SPEC; 3927aefb4d4aSRobert Shearman attr = nla_nest_start(skb, IFLA_STATS_AF_SPEC); 3928aefb4d4aSRobert Shearman if (!attr) 3929aefb4d4aSRobert Shearman goto nla_put_failure; 3930aefb4d4aSRobert Shearman 3931aefb4d4aSRobert Shearman list_for_each_entry(af_ops, &rtnl_af_ops, list) { 3932aefb4d4aSRobert Shearman if (af_ops->fill_stats_af) { 3933aefb4d4aSRobert Shearman struct nlattr *af; 3934aefb4d4aSRobert Shearman int err; 3935aefb4d4aSRobert Shearman 3936aefb4d4aSRobert Shearman af = nla_nest_start(skb, af_ops->family); 3937aefb4d4aSRobert Shearman if (!af) 3938aefb4d4aSRobert Shearman goto nla_put_failure; 3939aefb4d4aSRobert Shearman 3940aefb4d4aSRobert Shearman err = af_ops->fill_stats_af(skb, dev); 3941aefb4d4aSRobert Shearman 3942aefb4d4aSRobert Shearman if (err == -ENODATA) 3943aefb4d4aSRobert Shearman nla_nest_cancel(skb, af); 3944aefb4d4aSRobert Shearman else if (err < 0) 3945aefb4d4aSRobert Shearman goto nla_put_failure; 3946aefb4d4aSRobert Shearman 3947aefb4d4aSRobert Shearman nla_nest_end(skb, af); 3948aefb4d4aSRobert Shearman } 3949aefb4d4aSRobert Shearman } 3950aefb4d4aSRobert Shearman 3951aefb4d4aSRobert Shearman nla_nest_end(skb, attr); 3952aefb4d4aSRobert Shearman 3953aefb4d4aSRobert Shearman *idxattr = 0; 3954aefb4d4aSRobert Shearman } 3955aefb4d4aSRobert Shearman 395610c9ead9SRoopa Prabhu nlmsg_end(skb, nlh); 395710c9ead9SRoopa Prabhu 395810c9ead9SRoopa Prabhu return 0; 395910c9ead9SRoopa Prabhu 396010c9ead9SRoopa Prabhu nla_put_failure: 3961e8872a25SNikolay Aleksandrov /* not a multi message or no progress mean a real error */ 3962e8872a25SNikolay Aleksandrov if (!(flags & NLM_F_MULTI) || s_prividx == *prividx) 396310c9ead9SRoopa Prabhu nlmsg_cancel(skb, nlh); 3964e8872a25SNikolay Aleksandrov else 3965e8872a25SNikolay Aleksandrov nlmsg_end(skb, nlh); 396610c9ead9SRoopa Prabhu 396710c9ead9SRoopa Prabhu return -EMSGSIZE; 396810c9ead9SRoopa Prabhu } 396910c9ead9SRoopa Prabhu 397010c9ead9SRoopa Prabhu static size_t if_nlmsg_stats_size(const struct net_device *dev, 397110c9ead9SRoopa Prabhu u32 filter_mask) 397210c9ead9SRoopa Prabhu { 397310c9ead9SRoopa Prabhu size_t size = 0; 397410c9ead9SRoopa Prabhu 3975e8872a25SNikolay Aleksandrov if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_64, 0)) 397610c9ead9SRoopa Prabhu size += nla_total_size_64bit(sizeof(struct rtnl_link_stats64)); 397710c9ead9SRoopa Prabhu 397897a47facSNikolay Aleksandrov if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS, 0)) { 397997a47facSNikolay Aleksandrov const struct rtnl_link_ops *ops = dev->rtnl_link_ops; 398080e73cc5SNikolay Aleksandrov int attr = IFLA_STATS_LINK_XSTATS; 398197a47facSNikolay Aleksandrov 398297a47facSNikolay Aleksandrov if (ops && ops->get_linkxstats_size) { 398380e73cc5SNikolay Aleksandrov size += nla_total_size(ops->get_linkxstats_size(dev, 398480e73cc5SNikolay Aleksandrov attr)); 398597a47facSNikolay Aleksandrov /* for IFLA_STATS_LINK_XSTATS */ 398697a47facSNikolay Aleksandrov size += nla_total_size(0); 398797a47facSNikolay Aleksandrov } 398897a47facSNikolay Aleksandrov } 398997a47facSNikolay Aleksandrov 399080e73cc5SNikolay Aleksandrov if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_XSTATS_SLAVE, 0)) { 399180e73cc5SNikolay Aleksandrov struct net_device *_dev = (struct net_device *)dev; 399280e73cc5SNikolay Aleksandrov const struct rtnl_link_ops *ops = NULL; 399380e73cc5SNikolay Aleksandrov const struct net_device *master; 399480e73cc5SNikolay Aleksandrov 399580e73cc5SNikolay Aleksandrov /* netdev_master_upper_dev_get can't take const */ 399680e73cc5SNikolay Aleksandrov master = netdev_master_upper_dev_get(_dev); 399780e73cc5SNikolay Aleksandrov if (master) 399880e73cc5SNikolay Aleksandrov ops = master->rtnl_link_ops; 399980e73cc5SNikolay Aleksandrov if (ops && ops->get_linkxstats_size) { 400080e73cc5SNikolay Aleksandrov int attr = IFLA_STATS_LINK_XSTATS_SLAVE; 400180e73cc5SNikolay Aleksandrov 400280e73cc5SNikolay Aleksandrov size += nla_total_size(ops->get_linkxstats_size(dev, 400380e73cc5SNikolay Aleksandrov attr)); 400480e73cc5SNikolay Aleksandrov /* for IFLA_STATS_LINK_XSTATS_SLAVE */ 400580e73cc5SNikolay Aleksandrov size += nla_total_size(0); 400680e73cc5SNikolay Aleksandrov } 400780e73cc5SNikolay Aleksandrov } 400880e73cc5SNikolay Aleksandrov 400969ae6ad2SNogah Frankel if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS, 0)) 401069ae6ad2SNogah Frankel size += rtnl_get_offload_stats_size(dev); 401169ae6ad2SNogah Frankel 4012aefb4d4aSRobert Shearman if (stats_attr_valid(filter_mask, IFLA_STATS_AF_SPEC, 0)) { 4013aefb4d4aSRobert Shearman struct rtnl_af_ops *af_ops; 4014aefb4d4aSRobert Shearman 4015aefb4d4aSRobert Shearman /* for IFLA_STATS_AF_SPEC */ 4016aefb4d4aSRobert Shearman size += nla_total_size(0); 4017aefb4d4aSRobert Shearman 4018aefb4d4aSRobert Shearman list_for_each_entry(af_ops, &rtnl_af_ops, list) { 4019aefb4d4aSRobert Shearman if (af_ops->get_stats_af_size) { 4020aefb4d4aSRobert Shearman size += nla_total_size( 4021aefb4d4aSRobert Shearman af_ops->get_stats_af_size(dev)); 4022aefb4d4aSRobert Shearman 4023aefb4d4aSRobert Shearman /* for AF_* */ 4024aefb4d4aSRobert Shearman size += nla_total_size(0); 4025aefb4d4aSRobert Shearman } 4026aefb4d4aSRobert Shearman } 4027aefb4d4aSRobert Shearman } 4028aefb4d4aSRobert Shearman 402910c9ead9SRoopa Prabhu return size; 403010c9ead9SRoopa Prabhu } 403110c9ead9SRoopa Prabhu 4032c21ef3e3SDavid Ahern static int rtnl_stats_get(struct sk_buff *skb, struct nlmsghdr *nlh, 4033c21ef3e3SDavid Ahern struct netlink_ext_ack *extack) 403410c9ead9SRoopa Prabhu { 403510c9ead9SRoopa Prabhu struct net *net = sock_net(skb->sk); 403610c9ead9SRoopa Prabhu struct net_device *dev = NULL; 4037e8872a25SNikolay Aleksandrov int idxattr = 0, prividx = 0; 4038e8872a25SNikolay Aleksandrov struct if_stats_msg *ifsm; 403910c9ead9SRoopa Prabhu struct sk_buff *nskb; 404010c9ead9SRoopa Prabhu u32 filter_mask; 404110c9ead9SRoopa Prabhu int err; 404210c9ead9SRoopa Prabhu 40434775cc1fSMathias Krause if (nlmsg_len(nlh) < sizeof(*ifsm)) 40444775cc1fSMathias Krause return -EINVAL; 40454775cc1fSMathias Krause 404610c9ead9SRoopa Prabhu ifsm = nlmsg_data(nlh); 404710c9ead9SRoopa Prabhu if (ifsm->ifindex > 0) 404810c9ead9SRoopa Prabhu dev = __dev_get_by_index(net, ifsm->ifindex); 404910c9ead9SRoopa Prabhu else 405010c9ead9SRoopa Prabhu return -EINVAL; 405110c9ead9SRoopa Prabhu 405210c9ead9SRoopa Prabhu if (!dev) 405310c9ead9SRoopa Prabhu return -ENODEV; 405410c9ead9SRoopa Prabhu 405510c9ead9SRoopa Prabhu filter_mask = ifsm->filter_mask; 405610c9ead9SRoopa Prabhu if (!filter_mask) 405710c9ead9SRoopa Prabhu return -EINVAL; 405810c9ead9SRoopa Prabhu 405910c9ead9SRoopa Prabhu nskb = nlmsg_new(if_nlmsg_stats_size(dev, filter_mask), GFP_KERNEL); 406010c9ead9SRoopa Prabhu if (!nskb) 406110c9ead9SRoopa Prabhu return -ENOBUFS; 406210c9ead9SRoopa Prabhu 406310c9ead9SRoopa Prabhu err = rtnl_fill_statsinfo(nskb, dev, RTM_NEWSTATS, 406410c9ead9SRoopa Prabhu NETLINK_CB(skb).portid, nlh->nlmsg_seq, 0, 4065e8872a25SNikolay Aleksandrov 0, filter_mask, &idxattr, &prividx); 406610c9ead9SRoopa Prabhu if (err < 0) { 406710c9ead9SRoopa Prabhu /* -EMSGSIZE implies BUG in if_nlmsg_stats_size */ 406810c9ead9SRoopa Prabhu WARN_ON(err == -EMSGSIZE); 406910c9ead9SRoopa Prabhu kfree_skb(nskb); 407010c9ead9SRoopa Prabhu } else { 407110c9ead9SRoopa Prabhu err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid); 407210c9ead9SRoopa Prabhu } 407310c9ead9SRoopa Prabhu 407410c9ead9SRoopa Prabhu return err; 407510c9ead9SRoopa Prabhu } 407610c9ead9SRoopa Prabhu 407710c9ead9SRoopa Prabhu static int rtnl_stats_dump(struct sk_buff *skb, struct netlink_callback *cb) 407810c9ead9SRoopa Prabhu { 4079e8872a25SNikolay Aleksandrov int h, s_h, err, s_idx, s_idxattr, s_prividx; 408010c9ead9SRoopa Prabhu struct net *net = sock_net(skb->sk); 408110c9ead9SRoopa Prabhu unsigned int flags = NLM_F_MULTI; 4082e8872a25SNikolay Aleksandrov struct if_stats_msg *ifsm; 4083e8872a25SNikolay Aleksandrov struct hlist_head *head; 4084e8872a25SNikolay Aleksandrov struct net_device *dev; 408510c9ead9SRoopa Prabhu u32 filter_mask = 0; 4086e8872a25SNikolay Aleksandrov int idx = 0; 408710c9ead9SRoopa Prabhu 408810c9ead9SRoopa Prabhu s_h = cb->args[0]; 408910c9ead9SRoopa Prabhu s_idx = cb->args[1]; 4090e8872a25SNikolay Aleksandrov s_idxattr = cb->args[2]; 4091e8872a25SNikolay Aleksandrov s_prividx = cb->args[3]; 409210c9ead9SRoopa Prabhu 409310c9ead9SRoopa Prabhu cb->seq = net->dev_base_seq; 409410c9ead9SRoopa Prabhu 40954775cc1fSMathias Krause if (nlmsg_len(cb->nlh) < sizeof(*ifsm)) 40964775cc1fSMathias Krause return -EINVAL; 40974775cc1fSMathias Krause 409810c9ead9SRoopa Prabhu ifsm = nlmsg_data(cb->nlh); 409910c9ead9SRoopa Prabhu filter_mask = ifsm->filter_mask; 410010c9ead9SRoopa Prabhu if (!filter_mask) 410110c9ead9SRoopa Prabhu return -EINVAL; 410210c9ead9SRoopa Prabhu 410310c9ead9SRoopa Prabhu for (h = s_h; h < NETDEV_HASHENTRIES; h++, s_idx = 0) { 410410c9ead9SRoopa Prabhu idx = 0; 410510c9ead9SRoopa Prabhu head = &net->dev_index_head[h]; 410610c9ead9SRoopa Prabhu hlist_for_each_entry(dev, head, index_hlist) { 410710c9ead9SRoopa Prabhu if (idx < s_idx) 410810c9ead9SRoopa Prabhu goto cont; 410910c9ead9SRoopa Prabhu err = rtnl_fill_statsinfo(skb, dev, RTM_NEWSTATS, 411010c9ead9SRoopa Prabhu NETLINK_CB(cb->skb).portid, 411110c9ead9SRoopa Prabhu cb->nlh->nlmsg_seq, 0, 4112e8872a25SNikolay Aleksandrov flags, filter_mask, 4113e8872a25SNikolay Aleksandrov &s_idxattr, &s_prividx); 411410c9ead9SRoopa Prabhu /* If we ran out of room on the first message, 411510c9ead9SRoopa Prabhu * we're in trouble 411610c9ead9SRoopa Prabhu */ 411710c9ead9SRoopa Prabhu WARN_ON((err == -EMSGSIZE) && (skb->len == 0)); 411810c9ead9SRoopa Prabhu 411910c9ead9SRoopa Prabhu if (err < 0) 412010c9ead9SRoopa Prabhu goto out; 4121e8872a25SNikolay Aleksandrov s_prividx = 0; 4122e8872a25SNikolay Aleksandrov s_idxattr = 0; 412310c9ead9SRoopa Prabhu nl_dump_check_consistent(cb, nlmsg_hdr(skb)); 412410c9ead9SRoopa Prabhu cont: 412510c9ead9SRoopa Prabhu idx++; 412610c9ead9SRoopa Prabhu } 412710c9ead9SRoopa Prabhu } 412810c9ead9SRoopa Prabhu out: 4129e8872a25SNikolay Aleksandrov cb->args[3] = s_prividx; 4130e8872a25SNikolay Aleksandrov cb->args[2] = s_idxattr; 413110c9ead9SRoopa Prabhu cb->args[1] = idx; 413210c9ead9SRoopa Prabhu cb->args[0] = h; 413310c9ead9SRoopa Prabhu 413410c9ead9SRoopa Prabhu return skb->len; 413510c9ead9SRoopa Prabhu } 413610c9ead9SRoopa Prabhu 41371da177e4SLinus Torvalds /* Process one rtnetlink message. */ 41381da177e4SLinus Torvalds 41392d4bc933SJohannes Berg static int rtnetlink_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, 41402d4bc933SJohannes Berg struct netlink_ext_ack *extack) 41411da177e4SLinus Torvalds { 41423b1e0a65SYOSHIFUJI Hideaki struct net *net = sock_net(skb->sk); 4143*6853dd48SFlorian Westphal struct rtnl_link *handlers; 4144*6853dd48SFlorian Westphal int err = -EOPNOTSUPP; 4145e2849863SThomas Graf rtnl_doit_func doit; 4146617cfc75SAlexander Kuleshov int kind; 41471da177e4SLinus Torvalds int family; 41481da177e4SLinus Torvalds int type; 41491da177e4SLinus Torvalds 41501da177e4SLinus Torvalds type = nlh->nlmsg_type; 41511da177e4SLinus Torvalds if (type > RTM_MAX) 4152038890feSThomas Graf return -EOPNOTSUPP; 41531da177e4SLinus Torvalds 41541da177e4SLinus Torvalds type -= RTM_BASE; 41551da177e4SLinus Torvalds 41561da177e4SLinus Torvalds /* All the messages must have at least 1 byte length */ 4157573ce260SHong zhi guo if (nlmsg_len(nlh) < sizeof(struct rtgenmsg)) 41581da177e4SLinus Torvalds return 0; 41591da177e4SLinus Torvalds 4160573ce260SHong zhi guo family = ((struct rtgenmsg *)nlmsg_data(nlh))->rtgen_family; 41611da177e4SLinus Torvalds kind = type&3; 41621da177e4SLinus Torvalds 416390f62cf3SEric W. Biederman if (kind != 2 && !netlink_net_capable(skb, CAP_NET_ADMIN)) 41641d00a4ebSThomas Graf return -EPERM; 41651da177e4SLinus Torvalds 4166*6853dd48SFlorian Westphal if (family > ARRAY_SIZE(rtnl_msg_handlers)) 4167*6853dd48SFlorian Westphal family = PF_UNSPEC; 4168*6853dd48SFlorian Westphal 4169*6853dd48SFlorian Westphal rcu_read_lock(); 4170*6853dd48SFlorian Westphal handlers = rcu_dereference(rtnl_msg_handlers[family]); 4171*6853dd48SFlorian Westphal if (!handlers) { 4172*6853dd48SFlorian Westphal family = PF_UNSPEC; 4173*6853dd48SFlorian Westphal handlers = rcu_dereference(rtnl_msg_handlers[family]); 4174*6853dd48SFlorian Westphal } 4175*6853dd48SFlorian Westphal 4176b8f3ab42SDavid S. Miller if (kind == 2 && nlh->nlmsg_flags&NLM_F_DUMP) { 417797c53cacSDenis V. Lunev struct sock *rtnl; 4178e2849863SThomas Graf rtnl_dumpit_func dumpit; 4179c7ac8679SGreg Rose u16 min_dump_alloc = 0; 41801da177e4SLinus Torvalds 4181*6853dd48SFlorian Westphal dumpit = READ_ONCE(handlers[type].dumpit); 4182*6853dd48SFlorian Westphal if (!dumpit) { 4183*6853dd48SFlorian Westphal family = PF_UNSPEC; 4184*6853dd48SFlorian Westphal handlers = rcu_dereference(rtnl_msg_handlers[PF_UNSPEC]); 4185*6853dd48SFlorian Westphal if (!handlers) 41860cc09020SFlorian Westphal goto err_unlock; 4187e1fa6d21SFlorian Westphal 4188*6853dd48SFlorian Westphal dumpit = READ_ONCE(handlers[type].dumpit); 4189*6853dd48SFlorian Westphal if (!dumpit) 4190*6853dd48SFlorian Westphal goto err_unlock; 4191*6853dd48SFlorian Westphal } 4192*6853dd48SFlorian Westphal 4193019a3169SFlorian Westphal refcount_inc(&rtnl_msg_handlers_ref[family]); 4194019a3169SFlorian Westphal 4195e1fa6d21SFlorian Westphal if (type == RTM_GETLINK) 4196e1fa6d21SFlorian Westphal min_dump_alloc = rtnl_calcit(skb, nlh); 41971da177e4SLinus Torvalds 4198*6853dd48SFlorian Westphal rcu_read_unlock(); 4199*6853dd48SFlorian Westphal 420097c53cacSDenis V. Lunev rtnl = net->rtnl; 420180d326faSPablo Neira Ayuso { 420280d326faSPablo Neira Ayuso struct netlink_dump_control c = { 420380d326faSPablo Neira Ayuso .dump = dumpit, 420480d326faSPablo Neira Ayuso .min_dump_alloc = min_dump_alloc, 420580d326faSPablo Neira Ayuso }; 420680d326faSPablo Neira Ayuso err = netlink_dump_start(rtnl, skb, nlh, &c); 420780d326faSPablo Neira Ayuso } 4208019a3169SFlorian Westphal refcount_dec(&rtnl_msg_handlers_ref[family]); 42092907c35fSEric Dumazet return err; 42101da177e4SLinus Torvalds } 42111da177e4SLinus Torvalds 4212*6853dd48SFlorian Westphal rcu_read_unlock(); 4213*6853dd48SFlorian Westphal 42140cc09020SFlorian Westphal rtnl_lock(); 4215*6853dd48SFlorian Westphal handlers = rtnl_dereference(rtnl_msg_handlers[family]); 4216*6853dd48SFlorian Westphal if (handlers) { 4217*6853dd48SFlorian Westphal doit = READ_ONCE(handlers[type].doit); 4218*6853dd48SFlorian Westphal if (doit) 42190cc09020SFlorian Westphal err = doit(skb, nlh, extack); 4220*6853dd48SFlorian Westphal } 42210cc09020SFlorian Westphal rtnl_unlock(); 42220cc09020SFlorian Westphal return err; 42230cc09020SFlorian Westphal 42240cc09020SFlorian Westphal err_unlock: 4225*6853dd48SFlorian Westphal rcu_read_unlock(); 42260cc09020SFlorian Westphal return -EOPNOTSUPP; 42271da177e4SLinus Torvalds } 42281da177e4SLinus Torvalds 4229cd40b7d3SDenis V. Lunev static void rtnetlink_rcv(struct sk_buff *skb) 42301da177e4SLinus Torvalds { 4231cd40b7d3SDenis V. Lunev netlink_rcv_skb(skb, &rtnetlink_rcv_msg); 42321da177e4SLinus Torvalds } 42331da177e4SLinus Torvalds 42345f729eaaSJulien Gomes static int rtnetlink_bind(struct net *net, int group) 42355f729eaaSJulien Gomes { 42365f729eaaSJulien Gomes switch (group) { 42375f729eaaSJulien Gomes case RTNLGRP_IPV4_MROUTE_R: 42385f729eaaSJulien Gomes case RTNLGRP_IPV6_MROUTE_R: 42395f729eaaSJulien Gomes if (!ns_capable(net->user_ns, CAP_NET_ADMIN)) 42405f729eaaSJulien Gomes return -EPERM; 42415f729eaaSJulien Gomes break; 42425f729eaaSJulien Gomes } 42435f729eaaSJulien Gomes return 0; 42445f729eaaSJulien Gomes } 42455f729eaaSJulien Gomes 42461da177e4SLinus Torvalds static int rtnetlink_event(struct notifier_block *this, unsigned long event, void *ptr) 42471da177e4SLinus Torvalds { 4248351638e7SJiri Pirko struct net_device *dev = netdev_notifier_info_to_dev(ptr); 4249e9dc8653SEric W. Biederman 42501da177e4SLinus Torvalds switch (event) { 42515138e86fSVlad Yasevich case NETDEV_REBOOT: 42523753654eSDavid Ahern case NETDEV_CHANGEADDR: 42535138e86fSVlad Yasevich case NETDEV_CHANGENAME: 42545138e86fSVlad Yasevich case NETDEV_FEAT_CHANGE: 42555138e86fSVlad Yasevich case NETDEV_BONDING_FAILOVER: 42565138e86fSVlad Yasevich case NETDEV_NOTIFY_PEERS: 42575138e86fSVlad Yasevich case NETDEV_RESEND_IGMP: 42585138e86fSVlad Yasevich case NETDEV_CHANGEINFODATA: 42593d3ea5afSVlad Yasevich rtmsg_ifinfo_event(RTM_NEWLINK, dev, 0, rtnl_get_event(event), 42603d3ea5afSVlad Yasevich GFP_KERNEL); 42611da177e4SLinus Torvalds break; 42621da177e4SLinus Torvalds default: 42631da177e4SLinus Torvalds break; 42641da177e4SLinus Torvalds } 42651da177e4SLinus Torvalds return NOTIFY_DONE; 42661da177e4SLinus Torvalds } 42671da177e4SLinus Torvalds 42681da177e4SLinus Torvalds static struct notifier_block rtnetlink_dev_notifier = { 42691da177e4SLinus Torvalds .notifier_call = rtnetlink_event, 42701da177e4SLinus Torvalds }; 42711da177e4SLinus Torvalds 427297c53cacSDenis V. Lunev 42732c8c1e72SAlexey Dobriyan static int __net_init rtnetlink_net_init(struct net *net) 427497c53cacSDenis V. Lunev { 427597c53cacSDenis V. Lunev struct sock *sk; 4276a31f2d17SPablo Neira Ayuso struct netlink_kernel_cfg cfg = { 4277a31f2d17SPablo Neira Ayuso .groups = RTNLGRP_MAX, 4278a31f2d17SPablo Neira Ayuso .input = rtnetlink_rcv, 4279a31f2d17SPablo Neira Ayuso .cb_mutex = &rtnl_mutex, 42809785e10aSPablo Neira Ayuso .flags = NL_CFG_F_NONROOT_RECV, 42815f729eaaSJulien Gomes .bind = rtnetlink_bind, 4282a31f2d17SPablo Neira Ayuso }; 4283a31f2d17SPablo Neira Ayuso 42849f00d977SPablo Neira Ayuso sk = netlink_kernel_create(net, NETLINK_ROUTE, &cfg); 428597c53cacSDenis V. Lunev if (!sk) 428697c53cacSDenis V. Lunev return -ENOMEM; 428797c53cacSDenis V. Lunev net->rtnl = sk; 428897c53cacSDenis V. Lunev return 0; 428997c53cacSDenis V. Lunev } 429097c53cacSDenis V. Lunev 42912c8c1e72SAlexey Dobriyan static void __net_exit rtnetlink_net_exit(struct net *net) 429297c53cacSDenis V. Lunev { 4293b7c6ba6eSDenis V. Lunev netlink_kernel_release(net->rtnl); 429497c53cacSDenis V. Lunev net->rtnl = NULL; 429597c53cacSDenis V. Lunev } 429697c53cacSDenis V. Lunev 429797c53cacSDenis V. Lunev static struct pernet_operations rtnetlink_net_ops = { 429897c53cacSDenis V. Lunev .init = rtnetlink_net_init, 429997c53cacSDenis V. Lunev .exit = rtnetlink_net_exit, 430097c53cacSDenis V. Lunev }; 430197c53cacSDenis V. Lunev 43021da177e4SLinus Torvalds void __init rtnetlink_init(void) 43031da177e4SLinus Torvalds { 430497c53cacSDenis V. Lunev if (register_pernet_subsys(&rtnetlink_net_ops)) 43051da177e4SLinus Torvalds panic("rtnetlink_init: cannot initialize rtnetlink\n"); 430697c53cacSDenis V. Lunev 43071da177e4SLinus Torvalds register_netdevice_notifier(&rtnetlink_dev_notifier); 4308340d17fcSThomas Graf 4309c7ac8679SGreg Rose rtnl_register(PF_UNSPEC, RTM_GETLINK, rtnl_getlink, 4310b97bac64SFlorian Westphal rtnl_dump_ifinfo, 0); 4311b97bac64SFlorian Westphal rtnl_register(PF_UNSPEC, RTM_SETLINK, rtnl_setlink, NULL, 0); 4312b97bac64SFlorian Westphal rtnl_register(PF_UNSPEC, RTM_NEWLINK, rtnl_newlink, NULL, 0); 4313b97bac64SFlorian Westphal rtnl_register(PF_UNSPEC, RTM_DELLINK, rtnl_dellink, NULL, 0); 4314687ad8ccSThomas Graf 4315b97bac64SFlorian Westphal rtnl_register(PF_UNSPEC, RTM_GETADDR, NULL, rtnl_dump_all, 0); 4316b97bac64SFlorian Westphal rtnl_register(PF_UNSPEC, RTM_GETROUTE, NULL, rtnl_dump_all, 0); 4317b97bac64SFlorian Westphal rtnl_register(PF_UNSPEC, RTM_GETNETCONF, NULL, rtnl_dump_all, 0); 431877162022SJohn Fastabend 4319b97bac64SFlorian Westphal rtnl_register(PF_BRIDGE, RTM_NEWNEIGH, rtnl_fdb_add, NULL, 0); 4320b97bac64SFlorian Westphal rtnl_register(PF_BRIDGE, RTM_DELNEIGH, rtnl_fdb_del, NULL, 0); 4321b97bac64SFlorian Westphal rtnl_register(PF_BRIDGE, RTM_GETNEIGH, NULL, rtnl_fdb_dump, 0); 4322e5a55a89SJohn Fastabend 4323b97bac64SFlorian Westphal rtnl_register(PF_BRIDGE, RTM_GETLINK, NULL, rtnl_bridge_getlink, 0); 4324b97bac64SFlorian Westphal rtnl_register(PF_BRIDGE, RTM_DELLINK, rtnl_bridge_dellink, NULL, 0); 4325b97bac64SFlorian Westphal rtnl_register(PF_BRIDGE, RTM_SETLINK, rtnl_bridge_setlink, NULL, 0); 432610c9ead9SRoopa Prabhu 432710c9ead9SRoopa Prabhu rtnl_register(PF_UNSPEC, RTM_GETSTATS, rtnl_stats_get, rtnl_stats_dump, 4328b97bac64SFlorian Westphal 0); 43291da177e4SLinus Torvalds } 4330