blob: c883b17ee0fe2c8a7ca2f2867560ba74004790a7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
tcharding722c9a02017-02-09 17:56:04 +11002 * NET3 Protocol independent device support routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Derived from the non IP parts of dev.c 1.0.19
tcharding722c9a02017-02-09 17:56:04 +110010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 *
14 * Additional Authors:
15 * Florian la Roche <rzsfl@rz.uni-sb.de>
16 * Alan Cox <gw4pts@gw4pts.ampr.org>
17 * David Hinds <dahinds@users.sourceforge.net>
18 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19 * Adam Sulmicki <adam@cfar.umd.edu>
20 * Pekka Riikonen <priikone@poesidon.pspt.fi>
21 *
22 * Changes:
23 * D.J. Barrow : Fixed bug where dev->refcnt gets set
tcharding722c9a02017-02-09 17:56:04 +110024 * to 2 if register_netdev gets called
25 * before net_dev_init & also removed a
26 * few lines of code in the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * Alan Cox : device private ioctl copies fields back.
28 * Alan Cox : Transmit queue code does relevant
29 * stunts to keep the queue safe.
30 * Alan Cox : Fixed double lock.
31 * Alan Cox : Fixed promisc NULL pointer trap
32 * ???????? : Support the full private ioctl range
33 * Alan Cox : Moved ioctl permission check into
34 * drivers
35 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
36 * Alan Cox : 100 backlog just doesn't cut it when
37 * you start doing multicast video 8)
38 * Alan Cox : Rewrote net_bh and list manager.
tcharding722c9a02017-02-09 17:56:04 +110039 * Alan Cox : Fix ETH_P_ALL echoback lengths.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * Alan Cox : Took out transmit every packet pass
41 * Saved a few bytes in the ioctl handler
42 * Alan Cox : Network driver sets packet type before
43 * calling netif_rx. Saves a function
44 * call a packet.
45 * Alan Cox : Hashed net_bh()
46 * Richard Kooijman: Timestamp fixes.
47 * Alan Cox : Wrong field in SIOCGIFDSTADDR
48 * Alan Cox : Device lock protection.
tcharding722c9a02017-02-09 17:56:04 +110049 * Alan Cox : Fixed nasty side effect of device close
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * changes.
51 * Rudi Cilibrasi : Pass the right thing to
52 * set_mac_address()
53 * Dave Miller : 32bit quantity for the device lock to
54 * make it work out on a Sparc.
55 * Bjorn Ekwall : Added KERNELD hack.
56 * Alan Cox : Cleaned up the backlog initialise.
57 * Craig Metz : SIOCGIFCONF fix if space for under
58 * 1 device.
59 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
60 * is no device open function.
61 * Andi Kleen : Fix error reporting for SIOCGIFCONF
62 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
63 * Cyrus Durgin : Cleaned for KMOD
64 * Adam Sulmicki : Bug Fix : Network Device Unload
65 * A network device unload needs to purge
66 * the backlog queue.
67 * Paul Rusty Russell : SIOCSIFNAME
68 * Pekka Riikonen : Netdev boot-time settings code
69 * Andrew Morton : Make unregister_netdevice wait
tcharding722c9a02017-02-09 17:56:04 +110070 * indefinitely on dev->refcnt
71 * J Hadi Salim : - Backlog queue sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * - netif_rx() feedback
73 */
74
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080075#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080077#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/cpu.h>
79#include <linux/types.h>
80#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000081#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090082#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070084#include <linux/sched/mm.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080085#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <linux/string.h>
87#include <linux/mm.h>
88#include <linux/socket.h>
89#include <linux/sockios.h>
90#include <linux/errno.h>
91#include <linux/interrupt.h>
92#include <linux/if_ether.h>
93#include <linux/netdevice.h>
94#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070095#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <linux/notifier.h>
97#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070098#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040099#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200100#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -0800102#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700106#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200108#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000110#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <linux/highmem.h>
112#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <linux/netpoll.h>
115#include <linux/rcupdate.h>
116#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500119#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700120#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700121#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700122#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700123#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700124#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700126#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700127#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700128#include <linux/ipv6.h>
129#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700130#include <linux/jhash.h>
131#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700132#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900133#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900134#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000135#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700136#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000137#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100138#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300139#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700140#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100141#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400142#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800143#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200144#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530145#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200146#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200147#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200148#include <linux/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700150#include "net-sysfs.h"
151
Herbert Xud565b0a2008-12-15 23:38:52 -0800152#define MAX_GRO_SKBS 8
153
Herbert Xu5d38a072009-01-04 16:13:40 -0800154/* This should be increased if a protocol with a bigger head is added. */
155#define GRO_MAX_HEAD (MAX_HEADER + 128)
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000158static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000159struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
160struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000161static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000163static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700164static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700165 struct netdev_notifier_info *info);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200166static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700169 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 * semaphore.
171 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800172 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 *
174 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700175 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * actual updates. This allows pure readers to access the list even
177 * while a writer is preparing to update it.
178 *
179 * To put it another way, dev_base_lock is held for writing only to
180 * protect against pure readers; the rtnl semaphore provides the
181 * protection against other writers.
182 *
183 * See, for example usages, register_netdevice() and
184 * unregister_netdevice(), which must be called with the rtnl
185 * semaphore held.
186 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188EXPORT_SYMBOL(dev_base_lock);
189
Florian Westphal6c557002017-10-02 23:50:05 +0200190static DEFINE_MUTEX(ifalias_mutex);
191
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300192/* protects napi_hash addition/deletion and napi_gen_id */
193static DEFINE_SPINLOCK(napi_hash_lock);
194
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800195static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800196static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300197
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200198static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000199
Thomas Graf4e985ad2011-06-21 03:11:20 +0000200static inline void dev_base_seq_inc(struct net *net)
201{
tcharding643aa9c2017-02-09 17:56:05 +1100202 while (++net->dev_base_seq == 0)
203 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000204}
205
Eric W. Biederman881d9662007-09-17 11:56:21 -0700206static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700208 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000209
stephen hemminger08e98972009-11-10 07:20:34 +0000210 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Eric W. Biederman881d9662007-09-17 11:56:21 -0700213static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700215 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000218static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000219{
220#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000221 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000222#endif
223}
224
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000225static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000226{
227#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000228 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000229#endif
230}
231
Eric W. Biedermance286d32007-09-12 13:53:49 +0200232/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000233static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200234{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900235 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200236
237 ASSERT_RTNL();
238
239 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800240 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000241 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000242 hlist_add_head_rcu(&dev->index_hlist,
243 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200244 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000245
246 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200247}
248
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000249/* Device list removal
250 * caller must respect a RCU grace period before freeing/reusing dev
251 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200252static void unlist_netdevice(struct net_device *dev)
253{
254 ASSERT_RTNL();
255
256 /* Unlink dev from the device chain */
257 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800258 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000259 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000260 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200261 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000262
263 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/*
267 * Our notifier list
268 */
269
Alan Sternf07d5b92006-05-09 15:23:03 -0700270static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272/*
273 * Device drivers call our routines to queue packets here. We empty the
274 * queue in the local softnet handler.
275 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700276
Eric Dumazet9958da02010-04-17 04:17:02 +0000277DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700278EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
David S. Millercf508b12008-07-22 14:16:42 -0700280#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700281/*
David S. Millerc773e842008-07-08 23:13:53 -0700282 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700283 * according to dev->type
284 */
tcharding643aa9c2017-02-09 17:56:05 +1100285static const unsigned short netdev_lock_type[] = {
286 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700287 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
288 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
289 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
290 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
291 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
292 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
293 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
294 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
295 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
296 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
297 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400298 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
299 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
300 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700301
tcharding643aa9c2017-02-09 17:56:05 +1100302static const char *const netdev_lock_name[] = {
303 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
304 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
305 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
306 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
307 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
308 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
309 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
310 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
311 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
312 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
313 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
314 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
315 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
316 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
317 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700318
319static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700320static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700321
322static inline unsigned short netdev_lock_pos(unsigned short dev_type)
323{
324 int i;
325
326 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
327 if (netdev_lock_type[i] == dev_type)
328 return i;
329 /* the last key is used by default */
330 return ARRAY_SIZE(netdev_lock_type) - 1;
331}
332
David S. Millercf508b12008-07-22 14:16:42 -0700333static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
334 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700335{
336 int i;
337
338 i = netdev_lock_pos(dev_type);
339 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
340 netdev_lock_name[i]);
341}
David S. Millercf508b12008-07-22 14:16:42 -0700342
343static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
344{
345 int i;
346
347 i = netdev_lock_pos(dev->type);
348 lockdep_set_class_and_name(&dev->addr_list_lock,
349 &netdev_addr_lock_key[i],
350 netdev_lock_name[i]);
351}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700352#else
David S. Millercf508b12008-07-22 14:16:42 -0700353static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
354 unsigned short dev_type)
355{
356}
357static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700358{
359}
360#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100363 *
364 * Protocol management and registration routines
365 *
366 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * Add a protocol ID to the list. Now that the input handler is
371 * smarter we can dispense with all the messy stuff that used to be
372 * here.
373 *
374 * BEWARE!!! Protocol handlers, mangling input packets,
375 * MUST BE last in hash buckets and checking protocol handlers
376 * MUST start from promiscuous ptype_all chain in net_bh.
377 * It is true now, do not change it.
378 * Explanation follows: if protocol handler, mangling packet, will
379 * be the first on list, it is not able to sense, that packet
380 * is cloned and should be copied-on-write, so that it will
381 * change it and subsequent readers will get broken packet.
382 * --ANK (980803)
383 */
384
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000385static inline struct list_head *ptype_head(const struct packet_type *pt)
386{
387 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800388 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000389 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800390 return pt->dev ? &pt->dev->ptype_specific :
391 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000392}
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394/**
395 * dev_add_pack - add packet handler
396 * @pt: packet type declaration
397 *
398 * Add a protocol handler to the networking stack. The passed &packet_type
399 * is linked into kernel lists and may not be freed until it has been
400 * removed from the kernel lists.
401 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900402 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 * guarantee all CPU's that are in middle of receiving packets
404 * will see the new packet type (until the next received packet).
405 */
406
407void dev_add_pack(struct packet_type *pt)
408{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000409 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000411 spin_lock(&ptype_lock);
412 list_add_rcu(&pt->list, head);
413 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700415EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/**
418 * __dev_remove_pack - remove packet handler
419 * @pt: packet type declaration
420 *
421 * Remove a protocol handler that was previously added to the kernel
422 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
423 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900424 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 *
426 * The packet type might still be in use by receivers
427 * and must not be freed until after all the CPU's have gone
428 * through a quiescent state.
429 */
430void __dev_remove_pack(struct packet_type *pt)
431{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000432 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct packet_type *pt1;
434
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000435 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 list_for_each_entry(pt1, head, list) {
438 if (pt == pt1) {
439 list_del_rcu(&pt->list);
440 goto out;
441 }
442 }
443
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000444 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000446 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700448EXPORT_SYMBOL(__dev_remove_pack);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450/**
451 * dev_remove_pack - remove packet handler
452 * @pt: packet type declaration
453 *
454 * Remove a protocol handler that was previously added to the kernel
455 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
456 * from the kernel lists and can be freed or reused once this function
457 * returns.
458 *
459 * This call sleeps to guarantee that no CPU is looking at the packet
460 * type after return.
461 */
462void dev_remove_pack(struct packet_type *pt)
463{
464 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 synchronize_net();
467}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700468EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Vlad Yasevich62532da2012-11-15 08:49:10 +0000470
471/**
472 * dev_add_offload - register offload handlers
473 * @po: protocol offload declaration
474 *
475 * Add protocol offload handlers to the networking stack. The passed
476 * &proto_offload is linked into kernel lists and may not be freed until
477 * it has been removed from the kernel lists.
478 *
479 * This call does not sleep therefore it can not
480 * guarantee all CPU's that are in middle of receiving packets
481 * will see the new offload handlers (until the next received packet).
482 */
483void dev_add_offload(struct packet_offload *po)
484{
David S. Millerbdef7de2015-06-01 14:56:09 -0700485 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000486
487 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700488 list_for_each_entry(elem, &offload_base, list) {
489 if (po->priority < elem->priority)
490 break;
491 }
492 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000493 spin_unlock(&offload_lock);
494}
495EXPORT_SYMBOL(dev_add_offload);
496
497/**
498 * __dev_remove_offload - remove offload handler
499 * @po: packet offload declaration
500 *
501 * Remove a protocol offload handler that was previously added to the
502 * kernel offload handlers by dev_add_offload(). The passed &offload_type
503 * is removed from the kernel lists and can be freed or reused once this
504 * function returns.
505 *
506 * The packet type might still be in use by receivers
507 * and must not be freed until after all the CPU's have gone
508 * through a quiescent state.
509 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800510static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000511{
512 struct list_head *head = &offload_base;
513 struct packet_offload *po1;
514
Eric Dumazetc53aa502012-11-16 08:08:23 +0000515 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000516
517 list_for_each_entry(po1, head, list) {
518 if (po == po1) {
519 list_del_rcu(&po->list);
520 goto out;
521 }
522 }
523
524 pr_warn("dev_remove_offload: %p not found\n", po);
525out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000526 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000527}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000528
529/**
530 * dev_remove_offload - remove packet offload handler
531 * @po: packet offload declaration
532 *
533 * Remove a packet offload handler that was previously added to the kernel
534 * offload handlers by dev_add_offload(). The passed &offload_type is
535 * removed from the kernel lists and can be freed or reused once this
536 * function returns.
537 *
538 * This call sleeps to guarantee that no CPU is looking at the packet
539 * type after return.
540 */
541void dev_remove_offload(struct packet_offload *po)
542{
543 __dev_remove_offload(po);
544
545 synchronize_net();
546}
547EXPORT_SYMBOL(dev_remove_offload);
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100550 *
551 * Device Boot-time Settings Routines
552 *
553 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555/* Boot time configuration table */
556static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
557
558/**
559 * netdev_boot_setup_add - add new setup entry
560 * @name: name of the device
561 * @map: configured settings for the device
562 *
563 * Adds new setup entry to the dev_boot_setup list. The function
564 * returns 0 on error and 1 on success. This is a generic routine to
565 * all netdevices.
566 */
567static int netdev_boot_setup_add(char *name, struct ifmap *map)
568{
569 struct netdev_boot_setup *s;
570 int i;
571
572 s = dev_boot_setup;
573 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
574 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
575 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700576 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 memcpy(&s[i].map, map, sizeof(s[i].map));
578 break;
579 }
580 }
581
582 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
583}
584
585/**
tcharding722c9a02017-02-09 17:56:04 +1100586 * netdev_boot_setup_check - check boot time settings
587 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
tcharding722c9a02017-02-09 17:56:04 +1100589 * Check boot time settings for the device.
590 * The found settings are set for the device to be used
591 * later in the device probing.
592 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594int netdev_boot_setup_check(struct net_device *dev)
595{
596 struct netdev_boot_setup *s = dev_boot_setup;
597 int i;
598
599 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
600 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700601 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100602 dev->irq = s[i].map.irq;
603 dev->base_addr = s[i].map.base_addr;
604 dev->mem_start = s[i].map.mem_start;
605 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 1;
607 }
608 }
609 return 0;
610}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700611EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613
614/**
tcharding722c9a02017-02-09 17:56:04 +1100615 * netdev_boot_base - get address from boot time settings
616 * @prefix: prefix for network device
617 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 *
tcharding722c9a02017-02-09 17:56:04 +1100619 * Check boot time settings for the base address of device.
620 * The found settings are set for the device to be used
621 * later in the device probing.
622 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
624unsigned long netdev_boot_base(const char *prefix, int unit)
625{
626 const struct netdev_boot_setup *s = dev_boot_setup;
627 char name[IFNAMSIZ];
628 int i;
629
630 sprintf(name, "%s%d", prefix, unit);
631
632 /*
633 * If device already registered then return base of 1
634 * to indicate not to probe for this interface
635 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700636 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 1;
638
639 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
640 if (!strcmp(name, s[i].name))
641 return s[i].map.base_addr;
642 return 0;
643}
644
645/*
646 * Saves at boot time configured settings for any netdevice.
647 */
648int __init netdev_boot_setup(char *str)
649{
650 int ints[5];
651 struct ifmap map;
652
653 str = get_options(str, ARRAY_SIZE(ints), ints);
654 if (!str || !*str)
655 return 0;
656
657 /* Save settings */
658 memset(&map, 0, sizeof(map));
659 if (ints[0] > 0)
660 map.irq = ints[1];
661 if (ints[0] > 1)
662 map.base_addr = ints[2];
663 if (ints[0] > 2)
664 map.mem_start = ints[3];
665 if (ints[0] > 3)
666 map.mem_end = ints[4];
667
668 /* Add new entry to the list */
669 return netdev_boot_setup_add(str, &map);
670}
671
672__setup("netdev=", netdev_boot_setup);
673
674/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100675 *
676 * Device Interface Subroutines
677 *
678 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200681 * dev_get_iflink - get 'iflink' value of a interface
682 * @dev: targeted interface
683 *
684 * Indicates the ifindex the interface is linked to.
685 * Physical interfaces have the same 'ifindex' and 'iflink' values.
686 */
687
688int dev_get_iflink(const struct net_device *dev)
689{
690 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
691 return dev->netdev_ops->ndo_get_iflink(dev);
692
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200693 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200694}
695EXPORT_SYMBOL(dev_get_iflink);
696
697/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700698 * dev_fill_metadata_dst - Retrieve tunnel egress information.
699 * @dev: targeted interface
700 * @skb: The packet.
701 *
702 * For better visibility of tunnel traffic OVS needs to retrieve
703 * egress tunnel information for a packet. Following API allows
704 * user to get this info.
705 */
706int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
707{
708 struct ip_tunnel_info *info;
709
710 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
711 return -EINVAL;
712
713 info = skb_tunnel_info_unclone(skb);
714 if (!info)
715 return -ENOMEM;
716 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
717 return -EINVAL;
718
719 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
720}
721EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
722
723/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700725 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * @name: name to find
727 *
728 * Find an interface by name. Must be called under RTNL semaphore
729 * or @dev_base_lock. If the name is found a pointer to the device
730 * is returned. If the name is not found then %NULL is returned. The
731 * reference counters are not incremented so the caller must be
732 * careful with locks.
733 */
734
Eric W. Biederman881d9662007-09-17 11:56:21 -0700735struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700737 struct net_device *dev;
738 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Sasha Levinb67bfe02013-02-27 17:06:00 -0800740 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (!strncmp(dev->name, name, IFNAMSIZ))
742 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return NULL;
745}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700746EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748/**
tcharding722c9a02017-02-09 17:56:04 +1100749 * dev_get_by_name_rcu - find a device by its name
750 * @net: the applicable net namespace
751 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000752 *
tcharding722c9a02017-02-09 17:56:04 +1100753 * Find an interface by name.
754 * If the name is found a pointer to the device is returned.
755 * If the name is not found then %NULL is returned.
756 * The reference counters are not incremented so the caller must be
757 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000758 */
759
760struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
761{
Eric Dumazet72c95282009-10-30 07:11:27 +0000762 struct net_device *dev;
763 struct hlist_head *head = dev_name_hash(net, name);
764
Sasha Levinb67bfe02013-02-27 17:06:00 -0800765 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000766 if (!strncmp(dev->name, name, IFNAMSIZ))
767 return dev;
768
769 return NULL;
770}
771EXPORT_SYMBOL(dev_get_by_name_rcu);
772
773/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700775 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * @name: name to find
777 *
778 * Find an interface by name. This can be called from any
779 * context and does its own locking. The returned handle has
780 * the usage count incremented and the caller must use dev_put() to
781 * release it when it is no longer needed. %NULL is returned if no
782 * matching device is found.
783 */
784
Eric W. Biederman881d9662007-09-17 11:56:21 -0700785struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 struct net_device *dev;
788
Eric Dumazet72c95282009-10-30 07:11:27 +0000789 rcu_read_lock();
790 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (dev)
792 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000793 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return dev;
795}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700796EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798/**
799 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700800 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * @ifindex: index of device
802 *
803 * Search for an interface by index. Returns %NULL if the device
804 * is not found or a pointer to the device. The device has not
805 * had its reference counter increased so the caller must be careful
806 * about locking. The caller must hold either the RTNL semaphore
807 * or @dev_base_lock.
808 */
809
Eric W. Biederman881d9662007-09-17 11:56:21 -0700810struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700812 struct net_device *dev;
813 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Sasha Levinb67bfe02013-02-27 17:06:00 -0800815 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (dev->ifindex == ifindex)
817 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return NULL;
820}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700821EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000823/**
824 * dev_get_by_index_rcu - find a device by its ifindex
825 * @net: the applicable net namespace
826 * @ifindex: index of device
827 *
828 * Search for an interface by index. Returns %NULL if the device
829 * is not found or a pointer to the device. The device has not
830 * had its reference counter increased so the caller must be careful
831 * about locking. The caller must hold RCU lock.
832 */
833
834struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
835{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000836 struct net_device *dev;
837 struct hlist_head *head = dev_index_hash(net, ifindex);
838
Sasha Levinb67bfe02013-02-27 17:06:00 -0800839 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000840 if (dev->ifindex == ifindex)
841 return dev;
842
843 return NULL;
844}
845EXPORT_SYMBOL(dev_get_by_index_rcu);
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848/**
849 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700850 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * @ifindex: index of device
852 *
853 * Search for an interface by index. Returns NULL if the device
854 * is not found or a pointer to the device. The device returned has
855 * had a reference added and the pointer is safe until the user calls
856 * dev_put to indicate they have finished with it.
857 */
858
Eric W. Biederman881d9662007-09-17 11:56:21 -0700859struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 struct net_device *dev;
862
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000863 rcu_read_lock();
864 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (dev)
866 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000867 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return dev;
869}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700870EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200873 * dev_get_by_napi_id - find a device by napi_id
874 * @napi_id: ID of the NAPI struct
875 *
876 * Search for an interface by NAPI ID. Returns %NULL if the device
877 * is not found or a pointer to the device. The device has not had
878 * its reference counter increased so the caller must be careful
879 * about locking. The caller must hold RCU lock.
880 */
881
882struct net_device *dev_get_by_napi_id(unsigned int napi_id)
883{
884 struct napi_struct *napi;
885
886 WARN_ON_ONCE(!rcu_read_lock_held());
887
888 if (napi_id < MIN_NAPI_ID)
889 return NULL;
890
891 napi = napi_by_id(napi_id);
892
893 return napi ? napi->dev : NULL;
894}
895EXPORT_SYMBOL(dev_get_by_napi_id);
896
897/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200898 * netdev_get_name - get a netdevice name, knowing its ifindex.
899 * @net: network namespace
900 * @name: a pointer to the buffer where the name will be stored.
901 * @ifindex: the ifindex of the interface to get the name from.
902 *
903 * The use of raw_seqcount_begin() and cond_resched() before
904 * retrying is required as we want to give the writers a chance
905 * to complete when CONFIG_PREEMPT is not set.
906 */
907int netdev_get_name(struct net *net, char *name, int ifindex)
908{
909 struct net_device *dev;
910 unsigned int seq;
911
912retry:
913 seq = raw_seqcount_begin(&devnet_rename_seq);
914 rcu_read_lock();
915 dev = dev_get_by_index_rcu(net, ifindex);
916 if (!dev) {
917 rcu_read_unlock();
918 return -ENODEV;
919 }
920
921 strcpy(name, dev->name);
922 rcu_read_unlock();
923 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
924 cond_resched();
925 goto retry;
926 }
927
928 return 0;
929}
930
931/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000932 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700933 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 * @type: media type of device
935 * @ha: hardware address
936 *
937 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800938 * is not found or a pointer to the device.
939 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000940 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 * and the caller must therefore be careful about locking
942 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
944
Eric Dumazet941666c2010-12-05 01:23:53 +0000945struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
946 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 struct net_device *dev;
949
Eric Dumazet941666c2010-12-05 01:23:53 +0000950 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (dev->type == type &&
952 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700953 return dev;
954
955 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
Eric Dumazet941666c2010-12-05 01:23:53 +0000957EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300958
Eric W. Biederman881d9662007-09-17 11:56:21 -0700959struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700960{
961 struct net_device *dev;
962
963 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700964 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700965 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700966 return dev;
967
968 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700969}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700970EXPORT_SYMBOL(__dev_getfirstbyhwtype);
971
Eric W. Biederman881d9662007-09-17 11:56:21 -0700972struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000974 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000976 rcu_read_lock();
977 for_each_netdev_rcu(net, dev)
978 if (dev->type == type) {
979 dev_hold(dev);
980 ret = dev;
981 break;
982 }
983 rcu_read_unlock();
984 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986EXPORT_SYMBOL(dev_getfirstbyhwtype);
987
988/**
WANG Cong6c555492014-09-11 15:35:09 -0700989 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700990 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 * @if_flags: IFF_* values
992 * @mask: bitmask of bits in if_flags to check
993 *
994 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000995 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700996 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 */
998
WANG Cong6c555492014-09-11 15:35:09 -0700999struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1000 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001002 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
WANG Cong6c555492014-09-11 15:35:09 -07001004 ASSERT_RTNL();
1005
Pavel Emelianov7562f872007-05-03 15:13:45 -07001006 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001007 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001009 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 break;
1011 }
1012 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001013 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
WANG Cong6c555492014-09-11 15:35:09 -07001015EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017/**
1018 * dev_valid_name - check if name is okay for network device
1019 * @name: name string
1020 *
1021 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -07001022 * to allow sysfs to work. We also disallow any kind of
1023 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 */
David S. Miller95f050b2012-03-06 16:12:15 -05001025bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001027 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001028 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001029 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001030 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001031 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001032 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001033
1034 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001035 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001036 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001037 name++;
1038 }
David S. Miller95f050b2012-03-06 16:12:15 -05001039 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001041EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001044 * __dev_alloc_name - allocate a name for a device
1045 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001047 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 *
1049 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001050 * id. It scans list of devices to build up a free map, then chooses
1051 * the first empty slot. The caller must hold the dev_base or rtnl lock
1052 * while allocating the name and adding the device in order to avoid
1053 * duplicates.
1054 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1055 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
1057
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001058static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 const char *p;
1062 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001063 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct net_device *d;
1065
Rasmus Villemoes93809102017-11-13 00:15:08 +01001066 if (!dev_valid_name(name))
1067 return -EINVAL;
1068
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001069 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (p) {
1071 /*
1072 * Verify the string as this thing may have come from
1073 * the user. There must be either one "%d" and no other "%"
1074 * characters.
1075 */
1076 if (p[1] != 'd' || strchr(p + 2, '%'))
1077 return -EINVAL;
1078
1079 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001080 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (!inuse)
1082 return -ENOMEM;
1083
Eric W. Biederman881d9662007-09-17 11:56:21 -07001084 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (!sscanf(d->name, name, &i))
1086 continue;
1087 if (i < 0 || i >= max_netdevices)
1088 continue;
1089
1090 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001091 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (!strncmp(buf, d->name, IFNAMSIZ))
1093 set_bit(i, inuse);
1094 }
1095
1096 i = find_first_zero_bit(inuse, max_netdevices);
1097 free_page((unsigned long) inuse);
1098 }
1099
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001100 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001101 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* It is possible to run out of possible slots
1105 * when the name is long and there isn't enough space left
1106 * for the digits, or if all bits are used.
1107 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001108 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001111static int dev_alloc_name_ns(struct net *net,
1112 struct net_device *dev,
1113 const char *name)
1114{
1115 char buf[IFNAMSIZ];
1116 int ret;
1117
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001118 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001119 ret = __dev_alloc_name(net, name, buf);
1120 if (ret >= 0)
1121 strlcpy(dev->name, buf, IFNAMSIZ);
1122 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001125/**
1126 * dev_alloc_name - allocate a name for a device
1127 * @dev: device
1128 * @name: name format string
1129 *
1130 * Passed a format string - eg "lt%d" it will try and find a suitable
1131 * id. It scans list of devices to build up a free map, then chooses
1132 * the first empty slot. The caller must hold the dev_base or rtnl lock
1133 * while allocating the name and adding the device in order to avoid
1134 * duplicates.
1135 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1136 * Returns the number of the unit assigned or a negative errno code.
1137 */
1138
1139int dev_alloc_name(struct net_device *dev, const char *name)
1140{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001141 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001142}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001143EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001144
Cong Wang0ad646c2017-10-13 11:58:53 -07001145int dev_get_valid_name(struct net *net, struct net_device *dev,
1146 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001147{
David S. Miller55a5ec92018-01-02 11:45:07 -05001148 BUG_ON(!net);
1149
1150 if (!dev_valid_name(name))
1151 return -EINVAL;
1152
1153 if (strchr(name, '%'))
1154 return dev_alloc_name_ns(net, dev, name);
1155 else if (__dev_get_by_name(net, name))
1156 return -EEXIST;
1157 else if (dev->name != name)
1158 strlcpy(dev->name, name, IFNAMSIZ);
1159
1160 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001161}
Cong Wang0ad646c2017-10-13 11:58:53 -07001162EXPORT_SYMBOL(dev_get_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164/**
1165 * dev_change_name - change name of a device
1166 * @dev: device
1167 * @newname: name (or format string) must be at least IFNAMSIZ
1168 *
1169 * Change name of a device, can pass format strings "eth%d".
1170 * for wildcarding.
1171 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001172int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
Tom Gundersen238fa362014-07-14 16:37:23 +02001174 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001175 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001177 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001178 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001181 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001183 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (dev->flags & IFF_UP)
1185 return -EBUSY;
1186
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001187 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001188
1189 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001190 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001191 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001192 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001193
Herbert Xufcc5a032007-07-30 17:03:38 -07001194 memcpy(oldname, dev->name, IFNAMSIZ);
1195
Gao feng828de4f2012-09-13 20:58:27 +00001196 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001197 if (err < 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001198 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001199 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001202 if (oldname[0] && !strchr(oldname, '%'))
1203 netdev_info(dev, "renamed from %s\n", oldname);
1204
Tom Gundersen238fa362014-07-14 16:37:23 +02001205 old_assign_type = dev->name_assign_type;
1206 dev->name_assign_type = NET_NAME_RENAMED;
1207
Herbert Xufcc5a032007-07-30 17:03:38 -07001208rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001209 ret = device_rename(&dev->dev, dev->name);
1210 if (ret) {
1211 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001212 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001213 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001214 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001215 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001216
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001217 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001218
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001219 netdev_adjacent_rename_links(dev, oldname);
1220
Herbert Xu7f988ea2007-07-30 16:35:46 -07001221 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001222 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001223 write_unlock_bh(&dev_base_lock);
1224
1225 synchronize_rcu();
1226
1227 write_lock_bh(&dev_base_lock);
1228 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001229 write_unlock_bh(&dev_base_lock);
1230
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001231 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001232 ret = notifier_to_errno(ret);
1233
1234 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001235 /* err >= 0 after dev_alloc_name() or stores the first errno */
1236 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001237 err = ret;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001238 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001239 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001240 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001241 dev->name_assign_type = old_assign_type;
1242 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001243 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001244 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001245 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001246 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001247 }
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 return err;
1251}
1252
1253/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001254 * dev_set_alias - change ifalias of a device
1255 * @dev: device
1256 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001257 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001258 *
1259 * Set ifalias for a device,
1260 */
1261int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1262{
Florian Westphal6c557002017-10-02 23:50:05 +02001263 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001264
1265 if (len >= IFALIASZ)
1266 return -EINVAL;
1267
Florian Westphal6c557002017-10-02 23:50:05 +02001268 if (len) {
1269 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1270 if (!new_alias)
1271 return -ENOMEM;
1272
1273 memcpy(new_alias->ifalias, alias, len);
1274 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001275 }
1276
Florian Westphal6c557002017-10-02 23:50:05 +02001277 mutex_lock(&ifalias_mutex);
1278 rcu_swap_protected(dev->ifalias, new_alias,
1279 mutex_is_locked(&ifalias_mutex));
1280 mutex_unlock(&ifalias_mutex);
1281
1282 if (new_alias)
1283 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001284
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001285 return len;
1286}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001287EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001288
Florian Westphal6c557002017-10-02 23:50:05 +02001289/**
1290 * dev_get_alias - get ifalias of a device
1291 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001292 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001293 * @len: size of buffer
1294 *
1295 * get ifalias for a device. Caller must make sure dev cannot go
1296 * away, e.g. rcu read lock or own a reference count to device.
1297 */
1298int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1299{
1300 const struct dev_ifalias *alias;
1301 int ret = 0;
1302
1303 rcu_read_lock();
1304 alias = rcu_dereference(dev->ifalias);
1305 if (alias)
1306 ret = snprintf(name, len, "%s", alias->ifalias);
1307 rcu_read_unlock();
1308
1309 return ret;
1310}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001311
1312/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001313 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001314 * @dev: device to cause notification
1315 *
1316 * Called to indicate a device has changed features.
1317 */
1318void netdev_features_change(struct net_device *dev)
1319{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001320 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001321}
1322EXPORT_SYMBOL(netdev_features_change);
1323
1324/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 * netdev_state_change - device changes state
1326 * @dev: device to cause notification
1327 *
1328 * Called to indicate a device has changed state. This function calls
1329 * the notifier chains for netdev_chain and sends a NEWLINK message
1330 * to the routing socket.
1331 */
1332void netdev_state_change(struct net_device *dev)
1333{
1334 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001335 struct netdev_notifier_change_info change_info = {
1336 .info.dev = dev,
1337 };
Loic Prylli54951192014-07-01 21:39:43 -07001338
David Ahern51d0c0472017-10-04 17:48:45 -07001339 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001340 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001341 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
1343}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001344EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Amerigo Wangee89bab2012-08-09 22:14:56 +00001346/**
tcharding722c9a02017-02-09 17:56:04 +11001347 * netdev_notify_peers - notify network peers about existence of @dev
1348 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001349 *
1350 * Generate traffic such that interested network peers are aware of
1351 * @dev, such as by generating a gratuitous ARP. This may be used when
1352 * a device wants to inform the rest of the network about some sort of
1353 * reconfiguration such as a failover event or virtual machine
1354 * migration.
1355 */
1356void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001357{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001358 rtnl_lock();
1359 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001360 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001361 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001362}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001363EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001364
Patrick McHardybd380812010-02-26 06:34:53 +00001365static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001367 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001368 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001370 ASSERT_RTNL();
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (!netif_device_present(dev))
1373 return -ENODEV;
1374
Neil Hormanca99ca12013-02-05 08:05:43 +00001375 /* Block netpoll from trying to do any rx path servicing.
1376 * If we don't do this there is a chance ndo_poll_controller
1377 * or ndo_poll may be running while we open the device
1378 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001379 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001380
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001381 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1382 ret = notifier_to_errno(ret);
1383 if (ret)
1384 return ret;
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001387
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001388 if (ops->ndo_validate_addr)
1389 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001390
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001391 if (!ret && ops->ndo_open)
1392 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Eric W. Biederman66b55522014-03-27 15:39:03 -07001394 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001395
Jeff Garzikbada3392007-10-23 20:19:37 -07001396 if (ret)
1397 clear_bit(__LINK_STATE_START, &dev->state);
1398 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001400 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001402 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return ret;
1406}
Patrick McHardybd380812010-02-26 06:34:53 +00001407
1408/**
1409 * dev_open - prepare an interface for use.
1410 * @dev: device to open
1411 *
1412 * Takes a device from down to up state. The device's private open
1413 * function is invoked and then the multicast lists are loaded. Finally
1414 * the device is moved into the up state and a %NETDEV_UP message is
1415 * sent to the netdev notifier chain.
1416 *
1417 * Calling this function on an active interface is a nop. On a failure
1418 * a negative errno code is returned.
1419 */
1420int dev_open(struct net_device *dev)
1421{
1422 int ret;
1423
Patrick McHardybd380812010-02-26 06:34:53 +00001424 if (dev->flags & IFF_UP)
1425 return 0;
1426
Patrick McHardybd380812010-02-26 06:34:53 +00001427 ret = __dev_open(dev);
1428 if (ret < 0)
1429 return ret;
1430
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001431 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001432 call_netdevice_notifiers(NETDEV_UP, dev);
1433
1434 return ret;
1435}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001436EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
stephen hemminger7051b882017-07-18 15:59:27 -07001438static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439{
Octavian Purdila44345722010-12-13 12:44:07 +00001440 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001441
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001442 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001443 might_sleep();
1444
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001445 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001446 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001447 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001448
Octavian Purdila44345722010-12-13 12:44:07 +00001449 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Octavian Purdila44345722010-12-13 12:44:07 +00001451 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Octavian Purdila44345722010-12-13 12:44:07 +00001453 /* Synchronize to scheduled poll. We cannot touch poll list, it
1454 * can be even on different cpu. So just clear netif_running().
1455 *
1456 * dev->stop() will invoke napi_disable() on all of it's
1457 * napi_struct instances on this device.
1458 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001459 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Octavian Purdila44345722010-12-13 12:44:07 +00001462 dev_deactivate_many(head);
1463
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001464 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001465 const struct net_device_ops *ops = dev->netdev_ops;
1466
1467 /*
1468 * Call the device specific close. This cannot fail.
1469 * Only if device is UP
1470 *
1471 * We allow it to be called even after a DETACH hot-plug
1472 * event.
1473 */
1474 if (ops->ndo_stop)
1475 ops->ndo_stop(dev);
1476
Octavian Purdila44345722010-12-13 12:44:07 +00001477 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001478 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001479 }
Octavian Purdila44345722010-12-13 12:44:07 +00001480}
1481
stephen hemminger7051b882017-07-18 15:59:27 -07001482static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001483{
1484 LIST_HEAD(single);
1485
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001486 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001487 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001488 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001489}
1490
stephen hemminger7051b882017-07-18 15:59:27 -07001491void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001492{
1493 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001494
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001495 /* Remove the devices that don't need to be closed */
1496 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001497 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001498 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001499
1500 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001501
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001502 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001503 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001504 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001505 if (unlink)
1506 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
David S. Miller99c4a262015-03-18 22:52:33 -04001509EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001510
1511/**
1512 * dev_close - shutdown an interface.
1513 * @dev: device to shutdown
1514 *
1515 * This function moves an active device into down state. A
1516 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1517 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1518 * chain.
1519 */
stephen hemminger7051b882017-07-18 15:59:27 -07001520void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001521{
Eric Dumazete14a5992011-05-10 12:26:06 -07001522 if (dev->flags & IFF_UP) {
1523 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001524
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001525 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001526 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001527 list_del(&single);
1528 }
Patrick McHardybd380812010-02-26 06:34:53 +00001529}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001530EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001533/**
1534 * dev_disable_lro - disable Large Receive Offload on a device
1535 * @dev: device
1536 *
1537 * Disable Large Receive Offload (LRO) on a net device. Must be
1538 * called under RTNL. This is needed if received packets may be
1539 * forwarded to another interface.
1540 */
1541void dev_disable_lro(struct net_device *dev)
1542{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001543 struct net_device *lower_dev;
1544 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001545
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001546 dev->wanted_features &= ~NETIF_F_LRO;
1547 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001548
Michał Mirosław22d59692011-04-21 12:42:15 +00001549 if (unlikely(dev->features & NETIF_F_LRO))
1550 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001551
1552 netdev_for_each_lower_dev(dev, lower_dev, iter)
1553 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001554}
1555EXPORT_SYMBOL(dev_disable_lro);
1556
Michael Chan56f5aa72017-12-16 03:09:41 -05001557/**
1558 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1559 * @dev: device
1560 *
1561 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1562 * called under RTNL. This is needed if Generic XDP is installed on
1563 * the device.
1564 */
1565static void dev_disable_gro_hw(struct net_device *dev)
1566{
1567 dev->wanted_features &= ~NETIF_F_GRO_HW;
1568 netdev_update_features(dev);
1569
1570 if (unlikely(dev->features & NETIF_F_GRO_HW))
1571 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1572}
1573
Kirill Tkhaiede27622018-03-23 19:47:19 +03001574const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1575{
1576#define N(val) \
1577 case NETDEV_##val: \
1578 return "NETDEV_" __stringify(val);
1579 switch (cmd) {
1580 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1581 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1582 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1583 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1584 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1585 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1586 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001587 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1588 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001589 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001590#undef N
1591 return "UNKNOWN_NETDEV_EVENT";
1592}
1593EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1594
Jiri Pirko351638e2013-05-28 01:30:21 +00001595static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1596 struct net_device *dev)
1597{
David Ahern51d0c0472017-10-04 17:48:45 -07001598 struct netdev_notifier_info info = {
1599 .dev = dev,
1600 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001601
Jiri Pirko351638e2013-05-28 01:30:21 +00001602 return nb->notifier_call(nb, val, &info);
1603}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001604
Eric W. Biederman881d9662007-09-17 11:56:21 -07001605static int dev_boot_phase = 1;
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607/**
tcharding722c9a02017-02-09 17:56:04 +11001608 * register_netdevice_notifier - register a network notifier block
1609 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 *
tcharding722c9a02017-02-09 17:56:04 +11001611 * Register a notifier to be called when network device events occur.
1612 * The notifier passed is linked into the kernel structures and must
1613 * not be reused until it has been unregistered. A negative errno code
1614 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 *
tcharding722c9a02017-02-09 17:56:04 +11001616 * When registered all registration and up events are replayed
1617 * to the new notifier to allow device to have a race free
1618 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 */
1620
1621int register_netdevice_notifier(struct notifier_block *nb)
1622{
1623 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001624 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001625 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int err;
1627
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001628 /* Close race with setup_net() and cleanup_net() */
1629 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001631 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001632 if (err)
1633 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001634 if (dev_boot_phase)
1635 goto unlock;
1636 for_each_net(net) {
1637 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001638 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001639 err = notifier_to_errno(err);
1640 if (err)
1641 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Eric W. Biederman881d9662007-09-17 11:56:21 -07001643 if (!(dev->flags & IFF_UP))
1644 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001645
Jiri Pirko351638e2013-05-28 01:30:21 +00001646 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001649
1650unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001652 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001654
1655rollback:
1656 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001657 for_each_net(net) {
1658 for_each_netdev(net, dev) {
1659 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001660 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001661
Eric W. Biederman881d9662007-09-17 11:56:21 -07001662 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001663 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1664 dev);
1665 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001666 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001667 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001668 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001669 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001670
RongQing.Li8f891482011-11-30 23:43:07 -05001671outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001672 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001673 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001675EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677/**
tcharding722c9a02017-02-09 17:56:04 +11001678 * unregister_netdevice_notifier - unregister a network notifier block
1679 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 *
tcharding722c9a02017-02-09 17:56:04 +11001681 * Unregister a notifier previously registered by
1682 * register_netdevice_notifier(). The notifier is unlinked into the
1683 * kernel structures and may then be reused. A negative errno code
1684 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001685 *
tcharding722c9a02017-02-09 17:56:04 +11001686 * After unregistering unregister and down device events are synthesized
1687 * for all devices on the device list to the removed notifier to remove
1688 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 */
1690
1691int unregister_netdevice_notifier(struct notifier_block *nb)
1692{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001693 struct net_device *dev;
1694 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001695 int err;
1696
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001697 /* Close race with setup_net() and cleanup_net() */
1698 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001699 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001700 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001701 if (err)
1702 goto unlock;
1703
1704 for_each_net(net) {
1705 for_each_netdev(net, dev) {
1706 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001707 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1708 dev);
1709 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001710 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001711 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001712 }
1713 }
1714unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001715 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001716 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001717 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001719EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001722 * call_netdevice_notifiers_info - call all network notifier blocks
1723 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00001724 * @info: notifier information data
1725 *
1726 * Call all network notifier blocks. Parameters and return value
1727 * are as for raw_notifier_call_chain().
1728 */
1729
stephen hemminger1d143d92013-12-29 14:01:29 -08001730static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08001731 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001732{
1733 ASSERT_RTNL();
Jiri Pirko351638e2013-05-28 01:30:21 +00001734 return raw_notifier_call_chain(&netdev_chain, val, info);
1735}
Jiri Pirko351638e2013-05-28 01:30:21 +00001736
1737/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 * call_netdevice_notifiers - call all network notifier blocks
1739 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001740 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 *
1742 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001743 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 */
1745
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001746int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
David Ahern51d0c0472017-10-04 17:48:45 -07001748 struct netdev_notifier_info info = {
1749 .dev = dev,
1750 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001751
David Ahern51d0c0472017-10-04 17:48:45 -07001752 return call_netdevice_notifiers_info(val, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001754EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Pablo Neira1cf519002015-05-13 18:19:37 +02001756#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001757static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001758
1759void net_inc_ingress_queue(void)
1760{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001761 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001762}
1763EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1764
1765void net_dec_ingress_queue(void)
1766{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001767 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001768}
1769EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1770#endif
1771
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001772#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001773static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001774
1775void net_inc_egress_queue(void)
1776{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001777 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001778}
1779EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1780
1781void net_dec_egress_queue(void)
1782{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001783 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001784}
1785EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1786#endif
1787
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001788static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001789#ifdef HAVE_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001790static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08001791static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001792static void netstamp_clear(struct work_struct *work)
1793{
1794 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08001795 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001796
Eric Dumazet13baa002017-03-01 14:28:39 -08001797 wanted = atomic_add_return(deferred, &netstamp_wanted);
1798 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001799 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001800 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001801 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001802}
1803static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001804#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806void net_enable_timestamp(void)
1807{
Eric Dumazet13baa002017-03-01 14:28:39 -08001808#ifdef HAVE_JUMP_LABEL
1809 int wanted;
1810
1811 while (1) {
1812 wanted = atomic_read(&netstamp_wanted);
1813 if (wanted <= 0)
1814 break;
1815 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1816 return;
1817 }
1818 atomic_inc(&netstamp_needed_deferred);
1819 schedule_work(&netstamp_work);
1820#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001821 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001822#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001824EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826void net_disable_timestamp(void)
1827{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001828#ifdef HAVE_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08001829 int wanted;
1830
1831 while (1) {
1832 wanted = atomic_read(&netstamp_wanted);
1833 if (wanted <= 1)
1834 break;
1835 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1836 return;
1837 }
1838 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001839 schedule_work(&netstamp_work);
1840#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001841 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001842#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001844EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Eric Dumazet3b098e22010-05-15 23:57:10 -07001846static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
Thomas Gleixner2456e852016-12-25 11:38:40 +01001848 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001849 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001850 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001853#define net_timestamp_check(COND, SKB) \
1854 if (static_branch_unlikely(&netstamp_needed_key)) { \
1855 if ((COND) && !(SKB)->tstamp) \
1856 __net_timestamp(SKB); \
1857 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001858
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001859bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001860{
1861 unsigned int len;
1862
1863 if (!(dev->flags & IFF_UP))
1864 return false;
1865
1866 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1867 if (skb->len <= len)
1868 return true;
1869
1870 /* if TSO is enabled, we don't care about the length as the packet
1871 * could be forwarded without being segmented before
1872 */
1873 if (skb_is_gso(skb))
1874 return true;
1875
1876 return false;
1877}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001878EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001879
Herbert Xua0265d22014-04-17 13:45:03 +08001880int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1881{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001882 int ret = ____dev_forward_skb(dev, skb);
1883
1884 if (likely(!ret)) {
1885 skb->protocol = eth_type_trans(skb, dev);
1886 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001887 }
1888
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001889 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001890}
1891EXPORT_SYMBOL_GPL(__dev_forward_skb);
1892
Arnd Bergmann44540962009-11-26 06:07:08 +00001893/**
1894 * dev_forward_skb - loopback an skb to another netif
1895 *
1896 * @dev: destination network device
1897 * @skb: buffer to forward
1898 *
1899 * return values:
1900 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001901 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001902 *
1903 * dev_forward_skb can be used for injecting an skb from the
1904 * start_xmit function of one device into the receive queue
1905 * of another device.
1906 *
1907 * The receiving device may be in another namespace, so
1908 * we have to clear all information in the skb that could
1909 * impact namespace isolation.
1910 */
1911int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1912{
Herbert Xua0265d22014-04-17 13:45:03 +08001913 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001914}
1915EXPORT_SYMBOL_GPL(dev_forward_skb);
1916
Changli Gao71d9dec2010-12-15 19:57:25 +00001917static inline int deliver_skb(struct sk_buff *skb,
1918 struct packet_type *pt_prev,
1919 struct net_device *orig_dev)
1920{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001921 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001922 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03001923 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00001924 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1925}
1926
Salam Noureddine7866a622015-01-27 11:35:48 -08001927static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1928 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001929 struct net_device *orig_dev,
1930 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001931 struct list_head *ptype_list)
1932{
1933 struct packet_type *ptype, *pt_prev = *pt;
1934
1935 list_for_each_entry_rcu(ptype, ptype_list, list) {
1936 if (ptype->type != type)
1937 continue;
1938 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001939 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001940 pt_prev = ptype;
1941 }
1942 *pt = pt_prev;
1943}
1944
Eric Leblondc0de08d2012-08-16 22:02:58 +00001945static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1946{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001947 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001948 return false;
1949
1950 if (ptype->id_match)
1951 return ptype->id_match(ptype, skb->sk);
1952 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1953 return true;
1954
1955 return false;
1956}
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958/*
1959 * Support routine. Sends outgoing frames to any network
1960 * taps currently in use.
1961 */
1962
David Ahern74b20582016-05-10 11:19:50 -07001963void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
1965 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001966 struct sk_buff *skb2 = NULL;
1967 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001968 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001971again:
1972 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 /* Never send packets back to the socket
1974 * they originated from - MvS (miquels@drinkel.ow.org)
1975 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001976 if (skb_loop_sk(ptype, skb))
1977 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001978
Salam Noureddine7866a622015-01-27 11:35:48 -08001979 if (pt_prev) {
1980 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00001981 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08001982 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001984
1985 /* need to clone skb, done only once */
1986 skb2 = skb_clone(skb, GFP_ATOMIC);
1987 if (!skb2)
1988 goto out_unlock;
1989
1990 net_timestamp_set(skb2);
1991
1992 /* skb->nh should be correctly
1993 * set by sender, so that the second statement is
1994 * just protection against buggy protocols.
1995 */
1996 skb_reset_mac_header(skb2);
1997
1998 if (skb_network_header(skb2) < skb2->data ||
1999 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2000 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2001 ntohs(skb2->protocol),
2002 dev->name);
2003 skb_reset_network_header(skb2);
2004 }
2005
2006 skb2->transport_header = skb2->network_header;
2007 skb2->pkt_type = PACKET_OUTGOING;
2008 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002010
2011 if (ptype_list == &ptype_all) {
2012 ptype_list = &dev->ptype_all;
2013 goto again;
2014 }
2015out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002016 if (pt_prev) {
2017 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2018 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2019 else
2020 kfree_skb(skb2);
2021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 rcu_read_unlock();
2023}
David Ahern74b20582016-05-10 11:19:50 -07002024EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Ben Hutchings2c530402012-07-10 10:55:09 +00002026/**
2027 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002028 * @dev: Network device
2029 * @txq: number of queues available
2030 *
2031 * If real_num_tx_queues is changed the tc mappings may no longer be
2032 * valid. To resolve this verify the tc mapping remains valid and if
2033 * not NULL the mapping. With no priorities mapping to this
2034 * offset/count pair it will no longer be used. In the worst case TC0
2035 * is invalid nothing can be done so disable priority mappings. If is
2036 * expected that drivers will fix this mapping if they can before
2037 * calling netif_set_real_num_tx_queues.
2038 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002039static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002040{
2041 int i;
2042 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2043
2044 /* If TC0 is invalidated disable TC mapping */
2045 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002046 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002047 dev->num_tc = 0;
2048 return;
2049 }
2050
2051 /* Invalidated prio to tc mappings set to TC0 */
2052 for (i = 1; i < TC_BITMASK + 1; i++) {
2053 int q = netdev_get_prio_tc_map(dev, i);
2054
2055 tc = &dev->tc_to_txq[q];
2056 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002057 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2058 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002059 netdev_set_prio_tc_map(dev, i, 0);
2060 }
2061 }
2062}
2063
Alexander Duyck8d059b02016-10-28 11:43:49 -04002064int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2065{
2066 if (dev->num_tc) {
2067 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2068 int i;
2069
Alexander Duyckffcfe252018-07-09 12:19:38 -04002070 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002071 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2072 if ((txq - tc->offset) < tc->count)
2073 return i;
2074 }
2075
Alexander Duyckffcfe252018-07-09 12:19:38 -04002076 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002077 return -1;
2078 }
2079
2080 return 0;
2081}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002082EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002083
Alexander Duyck537c00d2013-01-10 08:57:02 +00002084#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002085struct static_key xps_needed __read_mostly;
2086EXPORT_SYMBOL(xps_needed);
2087struct static_key xps_rxqs_needed __read_mostly;
2088EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002089static DEFINE_MUTEX(xps_map_mutex);
2090#define xmap_dereference(P) \
2091 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2092
Alexander Duyck6234f872016-10-28 11:46:49 -04002093static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2094 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002095{
2096 struct xps_map *map = NULL;
2097 int pos;
2098
2099 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002100 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002101 if (!map)
2102 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002103
Alexander Duyck6234f872016-10-28 11:46:49 -04002104 for (pos = map->len; pos--;) {
2105 if (map->queues[pos] != index)
2106 continue;
2107
2108 if (map->len > 1) {
2109 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002110 break;
2111 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002112
Amritha Nambiar80d19662018-06-29 21:26:41 -07002113 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002114 kfree_rcu(map, rcu);
2115 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002116 }
2117
Alexander Duyck6234f872016-10-28 11:46:49 -04002118 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002119}
2120
Alexander Duyck6234f872016-10-28 11:46:49 -04002121static bool remove_xps_queue_cpu(struct net_device *dev,
2122 struct xps_dev_maps *dev_maps,
2123 int cpu, u16 offset, u16 count)
2124{
Alexander Duyck184c4492016-10-28 11:50:13 -04002125 int num_tc = dev->num_tc ? : 1;
2126 bool active = false;
2127 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002128
Alexander Duyck184c4492016-10-28 11:50:13 -04002129 for (tci = cpu * num_tc; num_tc--; tci++) {
2130 int i, j;
2131
2132 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002133 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002134 break;
2135 }
2136
2137 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002138 }
2139
Alexander Duyck184c4492016-10-28 11:50:13 -04002140 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002141}
2142
Amritha Nambiar80d19662018-06-29 21:26:41 -07002143static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2144 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2145 u16 offset, u16 count, bool is_rxqs_map)
2146{
2147 bool active = false;
2148 int i, j;
2149
2150 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2151 j < nr_ids;)
2152 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2153 count);
2154 if (!active) {
2155 if (is_rxqs_map) {
2156 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2157 } else {
2158 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2159
2160 for (i = offset + (count - 1); count--; i--)
2161 netdev_queue_numa_node_write(
2162 netdev_get_tx_queue(dev, i),
2163 NUMA_NO_NODE);
2164 }
2165 kfree_rcu(dev_maps, rcu);
2166 }
2167}
2168
Alexander Duyck6234f872016-10-28 11:46:49 -04002169static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2170 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002171{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002172 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002173 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002174 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002175
Amritha Nambiar04157462018-06-29 21:26:46 -07002176 if (!static_key_false(&xps_needed))
2177 return;
2178
Alexander Duyck537c00d2013-01-10 08:57:02 +00002179 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002180
Amritha Nambiar04157462018-06-29 21:26:46 -07002181 if (static_key_false(&xps_rxqs_needed)) {
2182 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2183 if (dev_maps) {
2184 nr_ids = dev->num_rx_queues;
2185 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2186 offset, count, true);
2187 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002188 }
2189
2190 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002191 if (!dev_maps)
2192 goto out_no_maps;
2193
Amritha Nambiar80d19662018-06-29 21:26:41 -07002194 if (num_possible_cpus() > 1)
2195 possible_mask = cpumask_bits(cpu_possible_mask);
2196 nr_ids = nr_cpu_ids;
2197 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2198 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002199
Alexander Duyck537c00d2013-01-10 08:57:02 +00002200out_no_maps:
Amritha Nambiar04157462018-06-29 21:26:46 -07002201 if (static_key_enabled(&xps_rxqs_needed))
2202 static_key_slow_dec(&xps_rxqs_needed);
2203
2204 static_key_slow_dec(&xps_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002205 mutex_unlock(&xps_map_mutex);
2206}
2207
Alexander Duyck6234f872016-10-28 11:46:49 -04002208static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2209{
2210 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2211}
2212
Amritha Nambiar80d19662018-06-29 21:26:41 -07002213static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2214 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002215{
2216 struct xps_map *new_map;
2217 int alloc_len = XPS_MIN_MAP_ALLOC;
2218 int i, pos;
2219
2220 for (pos = 0; map && pos < map->len; pos++) {
2221 if (map->queues[pos] != index)
2222 continue;
2223 return map;
2224 }
2225
Amritha Nambiar80d19662018-06-29 21:26:41 -07002226 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002227 if (map) {
2228 if (pos < map->alloc_len)
2229 return map;
2230
2231 alloc_len = map->alloc_len * 2;
2232 }
2233
Amritha Nambiar80d19662018-06-29 21:26:41 -07002234 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2235 * map
2236 */
2237 if (is_rxqs_map)
2238 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2239 else
2240 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2241 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002242 if (!new_map)
2243 return NULL;
2244
2245 for (i = 0; i < pos; i++)
2246 new_map->queues[i] = map->queues[i];
2247 new_map->alloc_len = alloc_len;
2248 new_map->len = pos;
2249
2250 return new_map;
2251}
2252
Amritha Nambiar80d19662018-06-29 21:26:41 -07002253int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2254 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002255{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002256 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002257 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002258 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002259 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002260 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002261 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002262 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002263
Alexander Duyck184c4492016-10-28 11:50:13 -04002264 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002265 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002266 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002267 if (num_tc < 0)
2268 return -EINVAL;
2269
2270 /* If queue belongs to subordinate dev use its map */
2271 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2272
Alexander Duyck184c4492016-10-28 11:50:13 -04002273 tc = netdev_txq_to_tc(dev, index);
2274 if (tc < 0)
2275 return -EINVAL;
2276 }
2277
Amritha Nambiar80d19662018-06-29 21:26:41 -07002278 mutex_lock(&xps_map_mutex);
2279 if (is_rxqs_map) {
2280 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2281 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2282 nr_ids = dev->num_rx_queues;
2283 } else {
2284 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2285 if (num_possible_cpus() > 1) {
2286 online_mask = cpumask_bits(cpu_online_mask);
2287 possible_mask = cpumask_bits(cpu_possible_mask);
2288 }
2289 dev_maps = xmap_dereference(dev->xps_cpus_map);
2290 nr_ids = nr_cpu_ids;
2291 }
2292
Alexander Duyck184c4492016-10-28 11:50:13 -04002293 if (maps_sz < L1_CACHE_BYTES)
2294 maps_sz = L1_CACHE_BYTES;
2295
Alexander Duyck01c5f862013-01-10 08:57:35 +00002296 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002297 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2298 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002299 if (!new_dev_maps)
2300 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002301 if (!new_dev_maps) {
2302 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002303 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002304 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002305
Amritha Nambiar80d19662018-06-29 21:26:41 -07002306 tci = j * num_tc + tc;
2307 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002308 NULL;
2309
Amritha Nambiar80d19662018-06-29 21:26:41 -07002310 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002311 if (!map)
2312 goto error;
2313
Amritha Nambiar80d19662018-06-29 21:26:41 -07002314 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002315 }
2316
2317 if (!new_dev_maps)
2318 goto out_no_new_maps;
2319
Amritha Nambiar04157462018-06-29 21:26:46 -07002320 static_key_slow_inc(&xps_needed);
2321 if (is_rxqs_map)
2322 static_key_slow_inc(&xps_rxqs_needed);
2323
Amritha Nambiar80d19662018-06-29 21:26:41 -07002324 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2325 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002326 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002327 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002328 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002329 map = xmap_dereference(dev_maps->attr_map[tci]);
2330 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002331 }
2332
2333 /* We need to explicitly update tci as prevous loop
2334 * could break out early if dev_maps is NULL.
2335 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002336 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002337
Amritha Nambiar80d19662018-06-29 21:26:41 -07002338 if (netif_attr_test_mask(j, mask, nr_ids) &&
2339 netif_attr_test_online(j, online_mask, nr_ids)) {
2340 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002341 int pos = 0;
2342
Amritha Nambiar80d19662018-06-29 21:26:41 -07002343 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002344 while ((pos < map->len) && (map->queues[pos] != index))
2345 pos++;
2346
2347 if (pos == map->len)
2348 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002349#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002350 if (!is_rxqs_map) {
2351 if (numa_node_id == -2)
2352 numa_node_id = cpu_to_node(j);
2353 else if (numa_node_id != cpu_to_node(j))
2354 numa_node_id = -1;
2355 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002356#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002357 } else if (dev_maps) {
2358 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002359 map = xmap_dereference(dev_maps->attr_map[tci]);
2360 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002361 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002362
Alexander Duyck184c4492016-10-28 11:50:13 -04002363 /* copy maps belonging to foreign traffic classes */
2364 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2365 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002366 map = xmap_dereference(dev_maps->attr_map[tci]);
2367 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002368 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002369 }
2370
Amritha Nambiar80d19662018-06-29 21:26:41 -07002371 if (is_rxqs_map)
2372 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2373 else
2374 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002375
Alexander Duyck537c00d2013-01-10 08:57:02 +00002376 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002377 if (!dev_maps)
2378 goto out_no_old_maps;
2379
Amritha Nambiar80d19662018-06-29 21:26:41 -07002380 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2381 j < nr_ids;) {
2382 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2383 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2384 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002385 if (map && map != new_map)
2386 kfree_rcu(map, rcu);
2387 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002388 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002389
Alexander Duyck184c4492016-10-28 11:50:13 -04002390 kfree_rcu(dev_maps, rcu);
2391
2392out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002393 dev_maps = new_dev_maps;
2394 active = true;
2395
2396out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002397 if (!is_rxqs_map) {
2398 /* update Tx queue numa node */
2399 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2400 (numa_node_id >= 0) ?
2401 numa_node_id : NUMA_NO_NODE);
2402 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002403
Alexander Duyck01c5f862013-01-10 08:57:35 +00002404 if (!dev_maps)
2405 goto out_no_maps;
2406
Amritha Nambiar80d19662018-06-29 21:26:41 -07002407 /* removes tx-queue from unused CPUs/rx-queues */
2408 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2409 j < nr_ids;) {
2410 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002411 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002412 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2413 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002414 active |= remove_xps_queue(dev_maps, tci, index);
2415 for (i = num_tc - tc, tci++; --i; tci++)
2416 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002417 }
2418
2419 /* free map if not active */
2420 if (!active) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002421 if (is_rxqs_map)
2422 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2423 else
2424 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002425 kfree_rcu(dev_maps, rcu);
2426 }
2427
2428out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002429 mutex_unlock(&xps_map_mutex);
2430
2431 return 0;
2432error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002433 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002434 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2435 j < nr_ids;) {
2436 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2437 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002438 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002439 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002440 NULL;
2441 if (new_map && new_map != map)
2442 kfree(new_map);
2443 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002444 }
2445
Alexander Duyck537c00d2013-01-10 08:57:02 +00002446 mutex_unlock(&xps_map_mutex);
2447
Alexander Duyck537c00d2013-01-10 08:57:02 +00002448 kfree(new_dev_maps);
2449 return -ENOMEM;
2450}
Amritha Nambiar80d19662018-06-29 21:26:41 -07002451
2452int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2453 u16 index)
2454{
2455 return __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2456}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002457EXPORT_SYMBOL(netif_set_xps_queue);
2458
2459#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002460static void netdev_unbind_all_sb_channels(struct net_device *dev)
2461{
2462 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2463
2464 /* Unbind any subordinate channels */
2465 while (txq-- != &dev->_tx[0]) {
2466 if (txq->sb_dev)
2467 netdev_unbind_sb_channel(dev, txq->sb_dev);
2468 }
2469}
2470
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002471void netdev_reset_tc(struct net_device *dev)
2472{
Alexander Duyck6234f872016-10-28 11:46:49 -04002473#ifdef CONFIG_XPS
2474 netif_reset_xps_queues_gt(dev, 0);
2475#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002476 netdev_unbind_all_sb_channels(dev);
2477
2478 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002479 dev->num_tc = 0;
2480 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2481 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2482}
2483EXPORT_SYMBOL(netdev_reset_tc);
2484
2485int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2486{
2487 if (tc >= dev->num_tc)
2488 return -EINVAL;
2489
Alexander Duyck6234f872016-10-28 11:46:49 -04002490#ifdef CONFIG_XPS
2491 netif_reset_xps_queues(dev, offset, count);
2492#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002493 dev->tc_to_txq[tc].count = count;
2494 dev->tc_to_txq[tc].offset = offset;
2495 return 0;
2496}
2497EXPORT_SYMBOL(netdev_set_tc_queue);
2498
2499int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2500{
2501 if (num_tc > TC_MAX_QUEUE)
2502 return -EINVAL;
2503
Alexander Duyck6234f872016-10-28 11:46:49 -04002504#ifdef CONFIG_XPS
2505 netif_reset_xps_queues_gt(dev, 0);
2506#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002507 netdev_unbind_all_sb_channels(dev);
2508
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002509 dev->num_tc = num_tc;
2510 return 0;
2511}
2512EXPORT_SYMBOL(netdev_set_num_tc);
2513
Alexander Duyckffcfe252018-07-09 12:19:38 -04002514void netdev_unbind_sb_channel(struct net_device *dev,
2515 struct net_device *sb_dev)
2516{
2517 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2518
2519#ifdef CONFIG_XPS
2520 netif_reset_xps_queues_gt(sb_dev, 0);
2521#endif
2522 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2523 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2524
2525 while (txq-- != &dev->_tx[0]) {
2526 if (txq->sb_dev == sb_dev)
2527 txq->sb_dev = NULL;
2528 }
2529}
2530EXPORT_SYMBOL(netdev_unbind_sb_channel);
2531
2532int netdev_bind_sb_channel_queue(struct net_device *dev,
2533 struct net_device *sb_dev,
2534 u8 tc, u16 count, u16 offset)
2535{
2536 /* Make certain the sb_dev and dev are already configured */
2537 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2538 return -EINVAL;
2539
2540 /* We cannot hand out queues we don't have */
2541 if ((offset + count) > dev->real_num_tx_queues)
2542 return -EINVAL;
2543
2544 /* Record the mapping */
2545 sb_dev->tc_to_txq[tc].count = count;
2546 sb_dev->tc_to_txq[tc].offset = offset;
2547
2548 /* Provide a way for Tx queue to find the tc_to_txq map or
2549 * XPS map for itself.
2550 */
2551 while (count--)
2552 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2553
2554 return 0;
2555}
2556EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2557
2558int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2559{
2560 /* Do not use a multiqueue device to represent a subordinate channel */
2561 if (netif_is_multiqueue(dev))
2562 return -ENODEV;
2563
2564 /* We allow channels 1 - 32767 to be used for subordinate channels.
2565 * Channel 0 is meant to be "native" mode and used only to represent
2566 * the main root device. We allow writing 0 to reset the device back
2567 * to normal mode after being used as a subordinate channel.
2568 */
2569 if (channel > S16_MAX)
2570 return -EINVAL;
2571
2572 dev->num_tc = -channel;
2573
2574 return 0;
2575}
2576EXPORT_SYMBOL(netdev_set_sb_channel);
2577
John Fastabendf0796d52010-07-01 13:21:57 +00002578/*
2579 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002580 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002581 */
Tom Herberte6484932010-10-18 18:04:39 +00002582int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002583{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002584 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002585 int rc;
2586
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002587 disabling = txq < dev->real_num_tx_queues;
2588
Tom Herberte6484932010-10-18 18:04:39 +00002589 if (txq < 1 || txq > dev->num_tx_queues)
2590 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002591
Ben Hutchings5c565802011-02-15 19:39:21 +00002592 if (dev->reg_state == NETREG_REGISTERED ||
2593 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002594 ASSERT_RTNL();
2595
Tom Herbert1d24eb42010-11-21 13:17:27 +00002596 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2597 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002598 if (rc)
2599 return rc;
2600
John Fastabend4f57c082011-01-17 08:06:04 +00002601 if (dev->num_tc)
2602 netif_setup_tc(dev, txq);
2603
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002604 dev->real_num_tx_queues = txq;
2605
2606 if (disabling) {
2607 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002608 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002609#ifdef CONFIG_XPS
2610 netif_reset_xps_queues_gt(dev, txq);
2611#endif
2612 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002613 } else {
2614 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002615 }
Tom Herberte6484932010-10-18 18:04:39 +00002616
Tom Herberte6484932010-10-18 18:04:39 +00002617 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002618}
2619EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002620
Michael Daltona953be52014-01-16 22:23:28 -08002621#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002622/**
2623 * netif_set_real_num_rx_queues - set actual number of RX queues used
2624 * @dev: Network device
2625 * @rxq: Actual number of RX queues
2626 *
2627 * This must be called either with the rtnl_lock held or before
2628 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002629 * negative error code. If called before registration, it always
2630 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002631 */
2632int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2633{
2634 int rc;
2635
Tom Herbertbd25fa72010-10-18 18:00:16 +00002636 if (rxq < 1 || rxq > dev->num_rx_queues)
2637 return -EINVAL;
2638
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002639 if (dev->reg_state == NETREG_REGISTERED) {
2640 ASSERT_RTNL();
2641
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002642 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2643 rxq);
2644 if (rc)
2645 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002646 }
2647
2648 dev->real_num_rx_queues = rxq;
2649 return 0;
2650}
2651EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2652#endif
2653
Ben Hutchings2c530402012-07-10 10:55:09 +00002654/**
2655 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002656 *
2657 * This routine should set an upper limit on the number of RSS queues
2658 * used by default by multiqueue devices.
2659 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002660int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002661{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302662 return is_kdump_kernel() ?
2663 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002664}
2665EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2666
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002667static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002668{
2669 struct softnet_data *sd;
2670 unsigned long flags;
2671
2672 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002673 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002674 q->next_sched = NULL;
2675 *sd->output_queue_tailp = q;
2676 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002677 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2678 local_irq_restore(flags);
2679}
2680
David S. Miller37437bb2008-07-16 02:15:04 -07002681void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002682{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002683 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2684 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002685}
2686EXPORT_SYMBOL(__netif_schedule);
2687
Eric Dumazete6247022013-12-05 04:45:08 -08002688struct dev_kfree_skb_cb {
2689 enum skb_free_reason reason;
2690};
2691
2692static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002693{
Eric Dumazete6247022013-12-05 04:45:08 -08002694 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002695}
Denis Vlasenko56079432006-03-29 15:57:29 -08002696
John Fastabend46e5da40a2014-09-12 20:04:52 -07002697void netif_schedule_queue(struct netdev_queue *txq)
2698{
2699 rcu_read_lock();
2700 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2701 struct Qdisc *q = rcu_dereference(txq->qdisc);
2702
2703 __netif_schedule(q);
2704 }
2705 rcu_read_unlock();
2706}
2707EXPORT_SYMBOL(netif_schedule_queue);
2708
John Fastabend46e5da40a2014-09-12 20:04:52 -07002709void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2710{
2711 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2712 struct Qdisc *q;
2713
2714 rcu_read_lock();
2715 q = rcu_dereference(dev_queue->qdisc);
2716 __netif_schedule(q);
2717 rcu_read_unlock();
2718 }
2719}
2720EXPORT_SYMBOL(netif_tx_wake_queue);
2721
Eric Dumazete6247022013-12-05 04:45:08 -08002722void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2723{
2724 unsigned long flags;
2725
Myungho Jung98998862017-04-25 11:58:15 -07002726 if (unlikely(!skb))
2727 return;
2728
Reshetova, Elena63354792017-06-30 13:07:58 +03002729 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08002730 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03002731 refcount_set(&skb->users, 0);
2732 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08002733 return;
2734 }
2735 get_kfree_skb_cb(skb)->reason = reason;
2736 local_irq_save(flags);
2737 skb->next = __this_cpu_read(softnet_data.completion_queue);
2738 __this_cpu_write(softnet_data.completion_queue, skb);
2739 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2740 local_irq_restore(flags);
2741}
2742EXPORT_SYMBOL(__dev_kfree_skb_irq);
2743
2744void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002745{
2746 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002747 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002748 else
2749 dev_kfree_skb(skb);
2750}
Eric Dumazete6247022013-12-05 04:45:08 -08002751EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002752
2753
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002754/**
2755 * netif_device_detach - mark device as removed
2756 * @dev: network device
2757 *
2758 * Mark device as removed from system and therefore no longer available.
2759 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002760void netif_device_detach(struct net_device *dev)
2761{
2762 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2763 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002764 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002765 }
2766}
2767EXPORT_SYMBOL(netif_device_detach);
2768
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002769/**
2770 * netif_device_attach - mark device as attached
2771 * @dev: network device
2772 *
2773 * Mark device as attached from system and restart if needed.
2774 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002775void netif_device_attach(struct net_device *dev)
2776{
2777 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2778 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002779 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002780 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002781 }
2782}
2783EXPORT_SYMBOL(netif_device_attach);
2784
Jiri Pirko5605c762015-05-12 14:56:12 +02002785/*
2786 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2787 * to be used as a distribution range.
2788 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04002789static u16 skb_tx_hash(const struct net_device *dev,
2790 const struct net_device *sb_dev,
2791 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02002792{
2793 u32 hash;
2794 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04002795 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02002796
Alexander Duyckeadec8772018-07-09 12:19:48 -04002797 if (dev->num_tc) {
2798 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2799
2800 qoffset = sb_dev->tc_to_txq[tc].offset;
2801 qcount = sb_dev->tc_to_txq[tc].count;
2802 }
2803
Jiri Pirko5605c762015-05-12 14:56:12 +02002804 if (skb_rx_queue_recorded(skb)) {
2805 hash = skb_get_rx_queue(skb);
Alexander Duyck1b837d42018-04-27 14:06:53 -04002806 while (unlikely(hash >= qcount))
2807 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04002808 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02002809 }
2810
2811 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2812}
Jiri Pirko5605c762015-05-12 14:56:12 +02002813
Ben Hutchings36c92472012-01-17 07:57:56 +00002814static void skb_warn_bad_offload(const struct sk_buff *skb)
2815{
Wei Tang84d15ae2016-06-16 21:17:49 +08002816 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002817 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002818 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002819
Ben Greearc846ad92013-04-19 10:45:52 +00002820 if (!net_ratelimit())
2821 return;
2822
Bjørn Mork88ad4172015-11-16 19:16:40 +01002823 if (dev) {
2824 if (dev->dev.parent)
2825 name = dev_driver_string(dev->dev.parent);
2826 else
2827 name = netdev_name(dev);
2828 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002829 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2830 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002831 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002832 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002833 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2834 skb_shinfo(skb)->gso_type, skb->ip_summed);
2835}
2836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837/*
2838 * Invalidate hardware checksum when packet is to be mangled, and
2839 * complete checksum manually on outgoing path.
2840 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002841int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
Al Virod3bc23e2006-11-14 21:24:49 -08002843 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002844 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Patrick McHardy84fa7932006-08-29 16:44:56 -07002846 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002847 goto out_set_summed;
2848
2849 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002850 skb_warn_bad_offload(skb);
2851 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 }
2853
Eric Dumazetcef401d2013-01-25 20:34:37 +00002854 /* Before computing a checksum, we should make sure no frag could
2855 * be modified by an external entity : checksum could be wrong.
2856 */
2857 if (skb_has_shared_frag(skb)) {
2858 ret = __skb_linearize(skb);
2859 if (ret)
2860 goto out;
2861 }
2862
Michał Mirosław55508d62010-12-14 15:24:08 +00002863 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002864 BUG_ON(offset >= skb_headlen(skb));
2865 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2866
2867 offset += skb->csum_offset;
2868 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2869
2870 if (skb_cloned(skb) &&
2871 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2873 if (ret)
2874 goto out;
2875 }
2876
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002877 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002878out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002880out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 return ret;
2882}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002883EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Davide Carattib72b5bf2017-05-18 15:44:38 +02002885int skb_crc32c_csum_help(struct sk_buff *skb)
2886{
2887 __le32 crc32c_csum;
2888 int ret = 0, offset, start;
2889
2890 if (skb->ip_summed != CHECKSUM_PARTIAL)
2891 goto out;
2892
2893 if (unlikely(skb_is_gso(skb)))
2894 goto out;
2895
2896 /* Before computing a checksum, we should make sure no frag could
2897 * be modified by an external entity : checksum could be wrong.
2898 */
2899 if (unlikely(skb_has_shared_frag(skb))) {
2900 ret = __skb_linearize(skb);
2901 if (ret)
2902 goto out;
2903 }
2904 start = skb_checksum_start_offset(skb);
2905 offset = start + offsetof(struct sctphdr, checksum);
2906 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
2907 ret = -EINVAL;
2908 goto out;
2909 }
2910 if (skb_cloned(skb) &&
2911 !skb_clone_writable(skb, offset + sizeof(__le32))) {
2912 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2913 if (ret)
2914 goto out;
2915 }
2916 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
2917 skb->len - start, ~(__u32)0,
2918 crc32c_csum_stub));
2919 *(__le32 *)(skb->data + offset) = crc32c_csum;
2920 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02002921 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02002922out:
2923 return ret;
2924}
2925
Vlad Yasevich53d64712014-03-27 17:26:18 -04002926__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002927{
2928 __be16 type = skb->protocol;
2929
Pravin B Shelar19acc322013-05-07 20:41:07 +00002930 /* Tunnel gso handlers can set protocol to ethernet. */
2931 if (type == htons(ETH_P_TEB)) {
2932 struct ethhdr *eth;
2933
2934 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2935 return 0;
2936
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07002937 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00002938 type = eth->h_proto;
2939 }
2940
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002941 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002942}
2943
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002944/**
2945 * skb_mac_gso_segment - mac layer segmentation handler.
2946 * @skb: buffer to segment
2947 * @features: features for the output path (see dev->features)
2948 */
2949struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2950 netdev_features_t features)
2951{
2952 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2953 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002954 int vlan_depth = skb->mac_len;
2955 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002956
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002957 if (unlikely(!type))
2958 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002959
Vlad Yasevich53d64712014-03-27 17:26:18 -04002960 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002961
2962 rcu_read_lock();
2963 list_for_each_entry_rcu(ptype, &offload_base, list) {
2964 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002965 segs = ptype->callbacks.gso_segment(skb, features);
2966 break;
2967 }
2968 }
2969 rcu_read_unlock();
2970
2971 __skb_push(skb, skb->data - skb_mac_header(skb));
2972
2973 return segs;
2974}
2975EXPORT_SYMBOL(skb_mac_gso_segment);
2976
2977
Cong Wang12b00042013-02-05 16:36:38 +00002978/* openvswitch calls this on rx path, so we need a different check.
2979 */
2980static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2981{
2982 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05002983 return skb->ip_summed != CHECKSUM_PARTIAL &&
2984 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08002985
2986 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00002987}
2988
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002989/**
Cong Wang12b00042013-02-05 16:36:38 +00002990 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002991 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002992 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002993 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002994 *
2995 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002996 *
2997 * It may return NULL if the skb requires no segmentation. This is
2998 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002999 *
3000 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003001 */
Cong Wang12b00042013-02-05 16:36:38 +00003002struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3003 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003004{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003005 struct sk_buff *segs;
3006
Cong Wang12b00042013-02-05 16:36:38 +00003007 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003008 int err;
3009
Eric Dumazetb2504a52017-01-31 10:20:32 -08003010 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003011 err = skb_cow_head(skb, 0);
3012 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003013 return ERR_PTR(err);
3014 }
3015
Alexander Duyck802ab552016-04-10 21:45:03 -04003016 /* Only report GSO partial support if it will enable us to
3017 * support segmentation on this frame without needing additional
3018 * work.
3019 */
3020 if (features & NETIF_F_GSO_PARTIAL) {
3021 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3022 struct net_device *dev = skb->dev;
3023
3024 partial_features |= dev->features & dev->gso_partial_features;
3025 if (!skb_gso_ok(skb, features | partial_features))
3026 features &= ~NETIF_F_GSO_PARTIAL;
3027 }
3028
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003029 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
3030 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3031
Pravin B Shelar68c33162013-02-14 14:02:41 +00003032 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003033 SKB_GSO_CB(skb)->encap_level = 0;
3034
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003035 skb_reset_mac_header(skb);
3036 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003037
Eric Dumazetb2504a52017-01-31 10:20:32 -08003038 segs = skb_mac_gso_segment(skb, features);
3039
Willem de Bruijn8d74e9f2017-12-12 11:39:04 -05003040 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003041 skb_warn_bad_offload(skb);
3042
3043 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003044}
Cong Wang12b00042013-02-05 16:36:38 +00003045EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003046
Herbert Xufb286bb2005-11-10 13:01:24 -08003047/* Take action when hardware reception checksum errors are detected. */
3048#ifdef CONFIG_BUG
3049void netdev_rx_csum_fault(struct net_device *dev)
3050{
3051 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003052 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08003053 dump_stack();
3054 }
3055}
3056EXPORT_SYMBOL(netdev_rx_csum_fault);
3057#endif
3058
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003059/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003060static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003062#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 int i;
tchardingf4563a72017-02-09 17:56:07 +11003064
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003065 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003066 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3067 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003068
Ian Campbellea2ab692011-08-22 23:44:58 +00003069 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003070 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003071 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003072 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003073#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 return 0;
3075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
Simon Horman3b392dd2014-06-04 08:53:17 +09003077/* If MPLS offload request, verify we are testing hardware MPLS features
3078 * instead of standard features for the netdev.
3079 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003080#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003081static netdev_features_t net_mpls_features(struct sk_buff *skb,
3082 netdev_features_t features,
3083 __be16 type)
3084{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003085 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003086 features &= skb->dev->mpls_features;
3087
3088 return features;
3089}
3090#else
3091static netdev_features_t net_mpls_features(struct sk_buff *skb,
3092 netdev_features_t features,
3093 __be16 type)
3094{
3095 return features;
3096}
3097#endif
3098
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003099static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003100 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003101{
Vlad Yasevich53d64712014-03-27 17:26:18 -04003102 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09003103 __be16 type;
3104
3105 type = skb_network_protocol(skb, &tmp);
3106 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003107
Ed Cashinc0d680e2012-09-19 15:49:00 +00003108 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003109 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003110 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003111 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003112 if (illegal_highdma(skb->dev, skb))
3113 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003114
3115 return features;
3116}
3117
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003118netdev_features_t passthru_features_check(struct sk_buff *skb,
3119 struct net_device *dev,
3120 netdev_features_t features)
3121{
3122 return features;
3123}
3124EXPORT_SYMBOL(passthru_features_check);
3125
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003126static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003127 struct net_device *dev,
3128 netdev_features_t features)
3129{
3130 return vlan_features_check(skb, features);
3131}
3132
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003133static netdev_features_t gso_features_check(const struct sk_buff *skb,
3134 struct net_device *dev,
3135 netdev_features_t features)
3136{
3137 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3138
3139 if (gso_segs > dev->gso_max_segs)
3140 return features & ~NETIF_F_GSO_MASK;
3141
Alexander Duyck802ab552016-04-10 21:45:03 -04003142 /* Support for GSO partial features requires software
3143 * intervention before we can actually process the packets
3144 * so we need to strip support for any partial features now
3145 * and we can pull them back in after we have partially
3146 * segmented the frame.
3147 */
3148 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3149 features &= ~dev->gso_partial_features;
3150
3151 /* Make sure to clear the IPv4 ID mangling feature if the
3152 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003153 */
3154 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3155 struct iphdr *iph = skb->encapsulation ?
3156 inner_ip_hdr(skb) : ip_hdr(skb);
3157
3158 if (!(iph->frag_off & htons(IP_DF)))
3159 features &= ~NETIF_F_TSO_MANGLEID;
3160 }
3161
3162 return features;
3163}
3164
Florian Westphalc1e756b2014-05-05 15:00:44 +02003165netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003166{
Jesse Gross5f352272014-12-23 22:37:26 -08003167 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003168 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003169
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003170 if (skb_is_gso(skb))
3171 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003172
Jesse Gross5f352272014-12-23 22:37:26 -08003173 /* If encapsulation offload request, verify we are testing
3174 * hardware encapsulation features instead of standard
3175 * features for the netdev
3176 */
3177 if (skb->encapsulation)
3178 features &= dev->hw_enc_features;
3179
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003180 if (skb_vlan_tagged(skb))
3181 features = netdev_intersect_features(features,
3182 dev->vlan_features |
3183 NETIF_F_HW_VLAN_CTAG_TX |
3184 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003185
Jesse Gross5f352272014-12-23 22:37:26 -08003186 if (dev->netdev_ops->ndo_features_check)
3187 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3188 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003189 else
3190 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003191
Florian Westphalc1e756b2014-05-05 15:00:44 +02003192 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003193}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003194EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003195
David S. Miller2ea25512014-08-29 21:10:01 -07003196static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003197 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003198{
David S. Miller2ea25512014-08-29 21:10:01 -07003199 unsigned int len;
3200 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003201
Salam Noureddine7866a622015-01-27 11:35:48 -08003202 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07003203 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003204
David S. Miller2ea25512014-08-29 21:10:01 -07003205 len = skb->len;
3206 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003207 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003208 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003209
Patrick McHardy572a9d72009-11-10 06:14:14 +00003210 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003211}
David S. Miller2ea25512014-08-29 21:10:01 -07003212
David S. Miller8dcda222014-09-01 15:06:40 -07003213struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3214 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003215{
3216 struct sk_buff *skb = first;
3217 int rc = NETDEV_TX_OK;
3218
3219 while (skb) {
3220 struct sk_buff *next = skb->next;
3221
3222 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07003223 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003224 if (unlikely(!dev_xmit_complete(rc))) {
3225 skb->next = next;
3226 goto out;
3227 }
3228
3229 skb = next;
3230 if (netif_xmit_stopped(txq) && skb) {
3231 rc = NETDEV_TX_BUSY;
3232 break;
3233 }
3234 }
3235
3236out:
3237 *ret = rc;
3238 return skb;
3239}
3240
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003241static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3242 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003243{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003244 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003245 !vlan_hw_offload_capable(features, skb->vlan_proto))
3246 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003247 return skb;
3248}
3249
Davide Caratti43c26a12017-05-18 15:44:41 +02003250int skb_csum_hwoffload_help(struct sk_buff *skb,
3251 const netdev_features_t features)
3252{
3253 if (unlikely(skb->csum_not_inet))
3254 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3255 skb_crc32c_csum_help(skb);
3256
3257 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3258}
3259EXPORT_SYMBOL(skb_csum_hwoffload_help);
3260
Steffen Klassertf53c7232017-12-20 10:41:36 +01003261static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003262{
3263 netdev_features_t features;
3264
David S. Millereae3f882014-08-30 15:17:13 -07003265 features = netif_skb_features(skb);
3266 skb = validate_xmit_vlan(skb, features);
3267 if (unlikely(!skb))
3268 goto out_null;
3269
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003270 skb = sk_validate_xmit_skb(skb, dev);
3271 if (unlikely(!skb))
3272 goto out_null;
3273
Johannes Berg8b86a612015-04-17 15:45:04 +02003274 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003275 struct sk_buff *segs;
3276
3277 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003278 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003279 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003280 } else if (segs) {
3281 consume_skb(skb);
3282 skb = segs;
3283 }
David S. Millereae3f882014-08-30 15:17:13 -07003284 } else {
3285 if (skb_needs_linearize(skb, features) &&
3286 __skb_linearize(skb))
3287 goto out_kfree_skb;
3288
3289 /* If packet is not checksummed and device does not
3290 * support checksumming for this protocol, complete
3291 * checksumming here.
3292 */
3293 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3294 if (skb->encapsulation)
3295 skb_set_inner_transport_header(skb,
3296 skb_checksum_start_offset(skb));
3297 else
3298 skb_set_transport_header(skb,
3299 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003300 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003301 goto out_kfree_skb;
3302 }
3303 }
3304
Steffen Klassertf53c7232017-12-20 10:41:36 +01003305 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003306
David S. Millereae3f882014-08-30 15:17:13 -07003307 return skb;
3308
3309out_kfree_skb:
3310 kfree_skb(skb);
3311out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003312 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003313 return NULL;
3314}
3315
Steffen Klassertf53c7232017-12-20 10:41:36 +01003316struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003317{
3318 struct sk_buff *next, *head = NULL, *tail;
3319
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003320 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003321 next = skb->next;
3322 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003323
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003324 /* in case skb wont be segmented, point to itself */
3325 skb->prev = skb;
3326
Steffen Klassertf53c7232017-12-20 10:41:36 +01003327 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003328 if (!skb)
3329 continue;
3330
3331 if (!head)
3332 head = skb;
3333 else
3334 tail->next = skb;
3335 /* If skb was segmented, skb->prev points to
3336 * the last segment. If not, it still contains skb.
3337 */
3338 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003339 }
3340 return head;
3341}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003342EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003343
Eric Dumazet1def9232013-01-10 12:36:42 +00003344static void qdisc_pkt_len_init(struct sk_buff *skb)
3345{
3346 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3347
3348 qdisc_skb_cb(skb)->pkt_len = skb->len;
3349
3350 /* To get more precise estimation of bytes sent on wire,
3351 * we add to pkt_len the headers size of all segments
3352 */
3353 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003354 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003355 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003356
Eric Dumazet757b8b12013-01-15 21:14:21 -08003357 /* mac layer + network layer */
3358 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3359
3360 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003361 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3362 const struct tcphdr *th;
3363 struct tcphdr _tcphdr;
3364
3365 th = skb_header_pointer(skb, skb_transport_offset(skb),
3366 sizeof(_tcphdr), &_tcphdr);
3367 if (likely(th))
3368 hdr_len += __tcp_hdrlen(th);
3369 } else {
3370 struct udphdr _udphdr;
3371
3372 if (skb_header_pointer(skb, skb_transport_offset(skb),
3373 sizeof(_udphdr), &_udphdr))
3374 hdr_len += sizeof(struct udphdr);
3375 }
Jason Wang15e5a032013-03-25 20:19:59 +00003376
3377 if (shinfo->gso_type & SKB_GSO_DODGY)
3378 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3379 shinfo->gso_size);
3380
3381 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003382 }
3383}
3384
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003385static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3386 struct net_device *dev,
3387 struct netdev_queue *txq)
3388{
3389 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003390 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003391 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003392 int rc;
3393
Eric Dumazeta2da5702011-01-20 03:48:19 +00003394 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003395
3396 if (q->flags & TCQ_F_NOLOCK) {
3397 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
3398 __qdisc_drop(skb, &to_free);
3399 rc = NET_XMIT_DROP;
3400 } else {
3401 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni32f7b442018-05-15 10:50:31 +02003402 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003403 }
3404
3405 if (unlikely(to_free))
3406 kfree_skb_list(to_free);
3407 return rc;
3408 }
3409
Eric Dumazet79640a42010-06-02 05:09:29 -07003410 /*
3411 * Heuristic to force contended enqueues to serialize on a
3412 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003413 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003414 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003415 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003416 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003417 if (unlikely(contended))
3418 spin_lock(&q->busylock);
3419
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003420 spin_lock(root_lock);
3421 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003422 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003423 rc = NET_XMIT_DROP;
3424 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003425 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003426 /*
3427 * This is a work-conserving queue; there are no old skbs
3428 * waiting to be sent out; and the qdisc is not running -
3429 * xmit the skb directly.
3430 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003431
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003432 qdisc_bstats_update(q, skb);
3433
Eric Dumazet55a93b32014-10-03 15:31:07 -07003434 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003435 if (unlikely(contended)) {
3436 spin_unlock(&q->busylock);
3437 contended = false;
3438 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003439 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003440 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003441
John Fastabend6c148182017-12-07 09:54:06 -08003442 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003443 rc = NET_XMIT_SUCCESS;
3444 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003445 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003446 if (qdisc_run_begin(q)) {
3447 if (unlikely(contended)) {
3448 spin_unlock(&q->busylock);
3449 contended = false;
3450 }
3451 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003452 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003453 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003454 }
3455 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003456 if (unlikely(to_free))
3457 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003458 if (unlikely(contended))
3459 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003460 return rc;
3461}
3462
Daniel Borkmann86f85152013-12-29 17:27:11 +01003463#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003464static void skb_update_prio(struct sk_buff *skb)
3465{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003466 const struct netprio_map *map;
3467 const struct sock *sk;
3468 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003469
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003470 if (skb->priority)
3471 return;
3472 map = rcu_dereference_bh(skb->dev->priomap);
3473 if (!map)
3474 return;
3475 sk = skb_to_full_sk(skb);
3476 if (!sk)
3477 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003478
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003479 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3480
3481 if (prioidx < map->priomap_len)
3482 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003483}
3484#else
3485#define skb_update_prio(skb)
3486#endif
3487
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003488DEFINE_PER_CPU(int, xmit_recursion);
3489EXPORT_SYMBOL(xmit_recursion);
3490
Dave Jonesd29f7492008-07-22 14:09:06 -07003491/**
Michel Machado95603e22012-06-12 10:16:35 +00003492 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003493 * @net: network namespace this loopback is happening in
3494 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003495 * @skb: buffer to transmit
3496 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003497int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003498{
3499 skb_reset_mac_header(skb);
3500 __skb_pull(skb, skb_network_offset(skb));
3501 skb->pkt_type = PACKET_LOOPBACK;
3502 skb->ip_summed = CHECKSUM_UNNECESSARY;
3503 WARN_ON(!skb_dst(skb));
3504 skb_dst_force(skb);
3505 netif_rx_ni(skb);
3506 return 0;
3507}
3508EXPORT_SYMBOL(dev_loopback_xmit);
3509
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003510#ifdef CONFIG_NET_EGRESS
3511static struct sk_buff *
3512sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3513{
Jiri Pirko46209402017-11-03 11:46:25 +01003514 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003515 struct tcf_result cl_res;
3516
Jiri Pirko46209402017-11-03 11:46:25 +01003517 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003518 return skb;
3519
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003520 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003521 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003522
Jiri Pirko46209402017-11-03 11:46:25 +01003523 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003524 case TC_ACT_OK:
3525 case TC_ACT_RECLASSIFY:
3526 skb->tc_index = TC_H_MIN(cl_res.classid);
3527 break;
3528 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003529 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003530 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003531 kfree_skb(skb);
3532 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003533 case TC_ACT_STOLEN:
3534 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003535 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003536 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003537 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003538 return NULL;
3539 case TC_ACT_REDIRECT:
3540 /* No need to push/pop skb's mac_header here on egress! */
3541 skb_do_redirect(skb);
3542 *ret = NET_XMIT_SUCCESS;
3543 return NULL;
3544 default:
3545 break;
3546 }
3547
3548 return skb;
3549}
3550#endif /* CONFIG_NET_EGRESS */
3551
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003552#ifdef CONFIG_XPS
3553static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3554 struct xps_dev_maps *dev_maps, unsigned int tci)
3555{
3556 struct xps_map *map;
3557 int queue_index = -1;
3558
3559 if (dev->num_tc) {
3560 tci *= dev->num_tc;
3561 tci += netdev_get_prio_tc_map(dev, skb->priority);
3562 }
3563
3564 map = rcu_dereference(dev_maps->attr_map[tci]);
3565 if (map) {
3566 if (map->len == 1)
3567 queue_index = map->queues[0];
3568 else
3569 queue_index = map->queues[reciprocal_scale(
3570 skb_get_hash(skb), map->len)];
3571 if (unlikely(queue_index >= dev->real_num_tx_queues))
3572 queue_index = -1;
3573 }
3574 return queue_index;
3575}
3576#endif
3577
Alexander Duyckeadec8772018-07-09 12:19:48 -04003578static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3579 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003580{
3581#ifdef CONFIG_XPS
3582 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003583 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003584 int queue_index = -1;
3585
Amritha Nambiar04157462018-06-29 21:26:46 -07003586 if (!static_key_false(&xps_needed))
3587 return -1;
3588
Jiri Pirko638b2a62015-05-12 14:56:13 +02003589 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003590 if (!static_key_false(&xps_rxqs_needed))
3591 goto get_cpus_map;
3592
Alexander Duyckeadec8772018-07-09 12:19:48 -04003593 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003594 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003595 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003596
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003597 if (tci >= 0 && tci < dev->num_rx_queues)
3598 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3599 tci);
3600 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003601
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003602get_cpus_map:
3603 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003604 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003605 if (dev_maps) {
3606 unsigned int tci = skb->sender_cpu - 1;
3607
3608 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3609 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003610 }
3611 }
3612 rcu_read_unlock();
3613
3614 return queue_index;
3615#else
3616 return -1;
3617#endif
3618}
3619
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003620u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -04003621 struct net_device *sb_dev,
3622 select_queue_fallback_t fallback)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003623{
3624 return 0;
3625}
3626EXPORT_SYMBOL(dev_pick_tx_zero);
3627
3628u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -04003629 struct net_device *sb_dev,
3630 select_queue_fallback_t fallback)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003631{
3632 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3633}
3634EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3635
Alexander Duyck8ec56fc2018-07-09 12:20:04 -04003636static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3637 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003638{
3639 struct sock *sk = skb->sk;
3640 int queue_index = sk_tx_queue_get(sk);
3641
Alexander Duyckeadec8772018-07-09 12:19:48 -04003642 sb_dev = sb_dev ? : dev;
3643
Jiri Pirko638b2a62015-05-12 14:56:13 +02003644 if (queue_index < 0 || skb->ooo_okay ||
3645 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003646 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003647
Jiri Pirko638b2a62015-05-12 14:56:13 +02003648 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003649 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003650
3651 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003652 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003653 rcu_access_pointer(sk->sk_dst_cache))
3654 sk_tx_queue_set(sk, new_index);
3655
3656 queue_index = new_index;
3657 }
3658
3659 return queue_index;
3660}
3661
3662struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3663 struct sk_buff *skb,
Alexander Duyckeadec8772018-07-09 12:19:48 -04003664 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003665{
3666 int queue_index = 0;
3667
3668#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003669 u32 sender_cpu = skb->sender_cpu - 1;
3670
3671 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003672 skb->sender_cpu = raw_smp_processor_id() + 1;
3673#endif
3674
3675 if (dev->real_num_tx_queues != 1) {
3676 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11003677
Jiri Pirko638b2a62015-05-12 14:56:13 +02003678 if (ops->ndo_select_queue)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003679 queue_index = ops->ndo_select_queue(dev, skb, sb_dev,
Jiri Pirko638b2a62015-05-12 14:56:13 +02003680 __netdev_pick_tx);
3681 else
Alexander Duyck8ec56fc2018-07-09 12:20:04 -04003682 queue_index = __netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003683
Alexander Duyckd5845272017-11-22 10:57:41 -08003684 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003685 }
3686
3687 skb_set_queue_mapping(skb, queue_index);
3688 return netdev_get_tx_queue(dev, queue_index);
3689}
3690
Michel Machado95603e22012-06-12 10:16:35 +00003691/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003692 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003693 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04003694 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003695 *
3696 * Queue a buffer for transmission to a network device. The caller must
3697 * have set the device and priority and built the buffer before calling
3698 * this function. The function can be called from an interrupt.
3699 *
3700 * A negative errno code is returned on a failure. A success does not
3701 * guarantee the frame will be transmitted as it may be dropped due
3702 * to congestion or traffic shaping.
3703 *
3704 * -----------------------------------------------------------------------------------
3705 * I notice this method can also return errors from the queue disciplines,
3706 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3707 * be positive.
3708 *
3709 * Regardless of the return value, the skb is consumed, so it is currently
3710 * difficult to retry a send to this method. (You can bump the ref count
3711 * before sending to hold a reference for retry if you are careful.)
3712 *
3713 * When calling this method, interrupts MUST be enabled. This is because
3714 * the BH enable code must have IRQs enabled so that it will not deadlock.
3715 * --BLG
3716 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003717static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718{
3719 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003720 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 struct Qdisc *q;
3722 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01003723 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003725 skb_reset_mac_header(skb);
3726
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003727 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3728 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3729
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003730 /* Disable soft irqs for various locks below. Also
3731 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003733 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
Neil Horman5bc14212011-11-22 05:10:51 +00003735 skb_update_prio(skb);
3736
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003737 qdisc_pkt_len_init(skb);
3738#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003739 skb->tc_at_ingress = 0;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003740# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07003741 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003742 skb = sch_handle_egress(skb, &rc, dev);
3743 if (!skb)
3744 goto out;
3745 }
3746# endif
3747#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003748 /* If device/qdisc don't need skb->dst, release it right now while
3749 * its hot in this cpu cache.
3750 */
3751 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3752 skb_dst_drop(skb);
3753 else
3754 skb_dst_force(skb);
3755
Alexander Duyckeadec8772018-07-09 12:19:48 -04003756 txq = netdev_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003757 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003758
Koki Sanagicf66ba52010-08-23 18:45:02 +09003759 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003761 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003762 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 }
3764
3765 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11003766 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
tchardingeb13da12017-02-09 17:56:06 +11003768 * Really, it is unlikely that netif_tx_lock protection is necessary
3769 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
3770 * counters.)
3771 * However, it is possible, that they rely on protection
3772 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
tchardingeb13da12017-02-09 17:56:06 +11003774 * Check this and shot the lock. It is not prone from deadlocks.
3775 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 */
3777 if (dev->flags & IFF_UP) {
3778 int cpu = smp_processor_id(); /* ok because BHs are off */
3779
David S. Millerc773e842008-07-08 23:13:53 -07003780 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003781 if (unlikely(__this_cpu_read(xmit_recursion) >
3782 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003783 goto recursion_alert;
3784
Steffen Klassertf53c7232017-12-20 10:41:36 +01003785 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003786 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003787 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003788
David S. Millerc773e842008-07-08 23:13:53 -07003789 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
Tom Herbert734664982011-11-28 16:32:44 +00003791 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003792 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07003793 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003794 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003795 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003796 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 goto out;
3798 }
3799 }
David S. Millerc773e842008-07-08 23:13:53 -07003800 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003801 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3802 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 } else {
3804 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003805 * unfortunately
3806 */
3807recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003808 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3809 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 }
3811 }
3812
3813 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003814 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Eric Dumazet015f0682014-03-27 08:45:56 -07003816 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003817 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 return rc;
3819out:
Herbert Xud4828d82006-06-22 02:28:18 -07003820 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 return rc;
3822}
Jason Wangf663dd92014-01-10 16:18:26 +08003823
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003824int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003825{
3826 return __dev_queue_xmit(skb, NULL);
3827}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003828EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829
Alexander Duyckeadec8772018-07-09 12:19:48 -04003830int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08003831{
Alexander Duyckeadec8772018-07-09 12:19:48 -04003832 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08003833}
3834EXPORT_SYMBOL(dev_queue_xmit_accel);
3835
Magnus Karlsson865b03f2018-05-02 13:01:33 +02003836int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
3837{
3838 struct net_device *dev = skb->dev;
3839 struct sk_buff *orig_skb = skb;
3840 struct netdev_queue *txq;
3841 int ret = NETDEV_TX_BUSY;
3842 bool again = false;
3843
3844 if (unlikely(!netif_running(dev) ||
3845 !netif_carrier_ok(dev)))
3846 goto drop;
3847
3848 skb = validate_xmit_skb_list(skb, dev, &again);
3849 if (skb != orig_skb)
3850 goto drop;
3851
3852 skb_set_queue_mapping(skb, queue_id);
3853 txq = skb_get_tx_queue(dev, skb);
3854
3855 local_bh_disable();
3856
3857 HARD_TX_LOCK(dev, txq, smp_processor_id());
3858 if (!netif_xmit_frozen_or_drv_stopped(txq))
3859 ret = netdev_start_xmit(skb, dev, txq, false);
3860 HARD_TX_UNLOCK(dev, txq);
3861
3862 local_bh_enable();
3863
3864 if (!dev_xmit_complete(ret))
3865 kfree_skb(skb);
3866
3867 return ret;
3868drop:
3869 atomic_long_inc(&dev->tx_dropped);
3870 kfree_skb_list(skb);
3871 return NET_XMIT_DROP;
3872}
3873EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
tchardingeb13da12017-02-09 17:56:06 +11003875/*************************************************************************
3876 * Receiver routines
3877 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003879int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003880EXPORT_SYMBOL(netdev_max_backlog);
3881
Eric Dumazet3b098e22010-05-15 23:57:10 -07003882int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003883int netdev_budget __read_mostly = 300;
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04003884unsigned int __read_mostly netdev_budget_usecs = 2000;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01003885int weight_p __read_mostly = 64; /* old backlog weight */
3886int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
3887int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
3888int dev_rx_weight __read_mostly = 64;
3889int dev_tx_weight __read_mostly = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003891/* Called with irq disabled */
3892static inline void ____napi_schedule(struct softnet_data *sd,
3893 struct napi_struct *napi)
3894{
3895 list_add_tail(&napi->poll_list, &sd->poll_list);
3896 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3897}
3898
Eric Dumazetdf334542010-03-24 19:13:54 +00003899#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003900
3901/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003902struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003903EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003904u32 rps_cpu_mask __read_mostly;
3905EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003906
Ingo Molnarc5905af2012-02-24 08:31:31 +01003907struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003908EXPORT_SYMBOL(rps_needed);
Eric Dumazet13bfff22016-12-07 08:29:10 -08003909struct static_key rfs_needed __read_mostly;
3910EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003911
Ben Hutchingsc4454772011-01-19 11:03:53 +00003912static struct rps_dev_flow *
3913set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3914 struct rps_dev_flow *rflow, u16 next_cpu)
3915{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003916 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003917#ifdef CONFIG_RFS_ACCEL
3918 struct netdev_rx_queue *rxqueue;
3919 struct rps_dev_flow_table *flow_table;
3920 struct rps_dev_flow *old_rflow;
3921 u32 flow_id;
3922 u16 rxq_index;
3923 int rc;
3924
3925 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003926 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3927 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003928 goto out;
3929 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3930 if (rxq_index == skb_get_rx_queue(skb))
3931 goto out;
3932
3933 rxqueue = dev->_rx + rxq_index;
3934 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3935 if (!flow_table)
3936 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003937 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003938 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3939 rxq_index, flow_id);
3940 if (rc < 0)
3941 goto out;
3942 old_rflow = rflow;
3943 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003944 rflow->filter = rc;
3945 if (old_rflow->filter == rflow->filter)
3946 old_rflow->filter = RPS_NO_FILTER;
3947 out:
3948#endif
3949 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003950 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003951 }
3952
Ben Hutchings09994d12011-10-03 04:42:46 +00003953 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003954 return rflow;
3955}
3956
Tom Herbert0a9627f2010-03-16 08:03:29 +00003957/*
3958 * get_rps_cpu is called from netif_receive_skb and returns the target
3959 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003960 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003961 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003962static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3963 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003964{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003965 const struct rps_sock_flow_table *sock_flow_table;
3966 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003967 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003968 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003969 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003970 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003971 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003972
Tom Herbert0a9627f2010-03-16 08:03:29 +00003973 if (skb_rx_queue_recorded(skb)) {
3974 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003975
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003976 if (unlikely(index >= dev->real_num_rx_queues)) {
3977 WARN_ONCE(dev->real_num_rx_queues > 1,
3978 "%s received packet on queue %u, but number "
3979 "of RX queues is %u\n",
3980 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003981 goto done;
3982 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003983 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003984 }
3985
Eric Dumazet567e4b72015-02-06 12:59:01 -08003986 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3987
3988 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3989 map = rcu_dereference(rxqueue->rps_map);
3990 if (!flow_table && !map)
3991 goto done;
3992
Changli Gao2d47b452010-08-17 19:00:56 +00003993 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003994 hash = skb_get_hash(skb);
3995 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003996 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003997
Tom Herbertfec5e652010-04-16 16:01:27 -07003998 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3999 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004000 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004001 u32 next_cpu;
4002 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004003
Eric Dumazet567e4b72015-02-06 12:59:01 -08004004 /* First check into global flow table if there is a match */
4005 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4006 if ((ident ^ hash) & ~rps_cpu_mask)
4007 goto try_rps;
4008
4009 next_cpu = ident & rps_cpu_mask;
4010
4011 /* OK, now we know there is a match,
4012 * we can look at the local (per receive queue) flow table
4013 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004014 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004015 tcpu = rflow->cpu;
4016
Tom Herbertfec5e652010-04-16 16:01:27 -07004017 /*
4018 * If the desired CPU (where last recvmsg was done) is
4019 * different from current CPU (one in the rx-queue flow
4020 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004021 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004022 * - Current CPU is offline.
4023 * - The current CPU's queue tail has advanced beyond the
4024 * last packet that was enqueued using this table entry.
4025 * This guarantees that all previous packets for the flow
4026 * have been dequeued, thus preserving in order delivery.
4027 */
4028 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004029 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004030 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004031 rflow->last_qtail)) >= 0)) {
4032 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004033 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004034 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004035
Eric Dumazeta31196b2015-04-25 09:35:24 -07004036 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004037 *rflowp = rflow;
4038 cpu = tcpu;
4039 goto done;
4040 }
4041 }
4042
Eric Dumazet567e4b72015-02-06 12:59:01 -08004043try_rps:
4044
Tom Herbert0a9627f2010-03-16 08:03:29 +00004045 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004046 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004047 if (cpu_online(tcpu)) {
4048 cpu = tcpu;
4049 goto done;
4050 }
4051 }
4052
4053done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004054 return cpu;
4055}
4056
Ben Hutchingsc4454772011-01-19 11:03:53 +00004057#ifdef CONFIG_RFS_ACCEL
4058
4059/**
4060 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4061 * @dev: Device on which the filter was set
4062 * @rxq_index: RX queue index
4063 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4064 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4065 *
4066 * Drivers that implement ndo_rx_flow_steer() should periodically call
4067 * this function for each installed filter and remove the filters for
4068 * which it returns %true.
4069 */
4070bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4071 u32 flow_id, u16 filter_id)
4072{
4073 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4074 struct rps_dev_flow_table *flow_table;
4075 struct rps_dev_flow *rflow;
4076 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004077 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004078
4079 rcu_read_lock();
4080 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4081 if (flow_table && flow_id <= flow_table->mask) {
4082 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004083 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004084 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004085 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4086 rflow->last_qtail) <
4087 (int)(10 * flow_table->mask)))
4088 expire = false;
4089 }
4090 rcu_read_unlock();
4091 return expire;
4092}
4093EXPORT_SYMBOL(rps_may_expire_flow);
4094
4095#endif /* CONFIG_RFS_ACCEL */
4096
Tom Herbert0a9627f2010-03-16 08:03:29 +00004097/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004098static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004099{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004100 struct softnet_data *sd = data;
4101
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004102 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004103 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004104}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004105
Tom Herbertfec5e652010-04-16 16:01:27 -07004106#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004107
4108/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004109 * Check if this softnet_data structure is another cpu one
4110 * If yes, queue it to our IPI list and return 1
4111 * If no, return 0
4112 */
4113static int rps_ipi_queued(struct softnet_data *sd)
4114{
4115#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004116 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004117
4118 if (sd != mysd) {
4119 sd->rps_ipi_next = mysd->rps_ipi_list;
4120 mysd->rps_ipi_list = sd;
4121
4122 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4123 return 1;
4124 }
4125#endif /* CONFIG_RPS */
4126 return 0;
4127}
4128
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004129#ifdef CONFIG_NET_FLOW_LIMIT
4130int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4131#endif
4132
4133static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4134{
4135#ifdef CONFIG_NET_FLOW_LIMIT
4136 struct sd_flow_limit *fl;
4137 struct softnet_data *sd;
4138 unsigned int old_flow, new_flow;
4139
4140 if (qlen < (netdev_max_backlog >> 1))
4141 return false;
4142
Christoph Lameter903ceff2014-08-17 12:30:35 -05004143 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004144
4145 rcu_read_lock();
4146 fl = rcu_dereference(sd->flow_limit);
4147 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004148 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004149 old_flow = fl->history[fl->history_head];
4150 fl->history[fl->history_head] = new_flow;
4151
4152 fl->history_head++;
4153 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4154
4155 if (likely(fl->buckets[old_flow]))
4156 fl->buckets[old_flow]--;
4157
4158 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4159 fl->count++;
4160 rcu_read_unlock();
4161 return true;
4162 }
4163 }
4164 rcu_read_unlock();
4165#endif
4166 return false;
4167}
4168
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004169/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004170 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4171 * queue (may be a remote CPU queue).
4172 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004173static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4174 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004175{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004176 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004177 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004178 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004179
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004180 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004181
4182 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004183
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004184 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004185 if (!netif_running(skb->dev))
4186 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004187 qlen = skb_queue_len(&sd->input_pkt_queue);
4188 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004189 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004190enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004191 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004192 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004193 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004194 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004195 return NET_RX_SUCCESS;
4196 }
4197
Eric Dumazetebda37c22010-05-06 23:51:21 +00004198 /* Schedule NAPI for backlog device
4199 * We can use non atomic operation since we own the queue lock
4200 */
4201 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004202 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004203 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004204 }
4205 goto enqueue;
4206 }
4207
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004208drop:
Changli Gaodee42872010-05-02 05:42:16 +00004209 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004210 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004211
Tom Herbert0a9627f2010-03-16 08:03:29 +00004212 local_irq_restore(flags);
4213
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004214 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004215 kfree_skb(skb);
4216 return NET_RX_DROP;
4217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004219static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4220{
4221 struct net_device *dev = skb->dev;
4222 struct netdev_rx_queue *rxqueue;
4223
4224 rxqueue = dev->_rx;
4225
4226 if (skb_rx_queue_recorded(skb)) {
4227 u16 index = skb_get_rx_queue(skb);
4228
4229 if (unlikely(index >= dev->real_num_rx_queues)) {
4230 WARN_ONCE(dev->real_num_rx_queues > 1,
4231 "%s received packet on queue %u, but number "
4232 "of RX queues is %u\n",
4233 dev->name, index, dev->real_num_rx_queues);
4234
4235 return rxqueue; /* Return first rxqueue */
4236 }
4237 rxqueue += index;
4238 }
4239 return rxqueue;
4240}
4241
John Fastabendd4455162017-07-17 09:26:45 -07004242static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004243 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004244 struct bpf_prog *xdp_prog)
4245{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004246 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004247 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004248 u32 metalen, act = XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004249 int hlen, off;
4250 u32 mac_len;
4251
4252 /* Reinjected packets coming from act_mirred or similar should
4253 * not get XDP generic processing.
4254 */
4255 if (skb_cloned(skb))
4256 return XDP_PASS;
4257
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004258 /* XDP packets must be linear and must have sufficient headroom
4259 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4260 * native XDP provides, thus we need to do it here as well.
4261 */
4262 if (skb_is_nonlinear(skb) ||
4263 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4264 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4265 int troom = skb->tail + skb->data_len - skb->end;
4266
4267 /* In case we have to go down the path and also linearize,
4268 * then lets do the pskb_expand_head() work just once here.
4269 */
4270 if (pskb_expand_head(skb,
4271 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4272 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4273 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004274 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004275 goto do_drop;
4276 }
John Fastabendd4455162017-07-17 09:26:45 -07004277
4278 /* The XDP program wants to see the packet starting at the MAC
4279 * header.
4280 */
4281 mac_len = skb->data - skb_mac_header(skb);
4282 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004283 xdp->data = skb->data - mac_len;
4284 xdp->data_meta = xdp->data;
4285 xdp->data_end = xdp->data + hlen;
4286 xdp->data_hard_start = skb->data - skb_headroom(skb);
4287 orig_data_end = xdp->data_end;
4288 orig_data = xdp->data;
John Fastabendd4455162017-07-17 09:26:45 -07004289
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004290 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004291 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004292
Björn Töpel02671e22018-05-02 13:01:30 +02004293 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004294
Björn Töpel02671e22018-05-02 13:01:30 +02004295 off = xdp->data - orig_data;
John Fastabendd4455162017-07-17 09:26:45 -07004296 if (off > 0)
4297 __skb_pull(skb, off);
4298 else if (off < 0)
4299 __skb_push(skb, -off);
Edward Cree92dd5452017-09-19 18:45:56 +01004300 skb->mac_header += off;
John Fastabendd4455162017-07-17 09:26:45 -07004301
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004302 /* check if bpf_xdp_adjust_tail was used. it can only "shrink"
4303 * pckt.
4304 */
Björn Töpel02671e22018-05-02 13:01:30 +02004305 off = orig_data_end - xdp->data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004306 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004307 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004308 skb->len -= off;
Björn Töpel02671e22018-05-02 13:01:30 +02004309
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004310 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004311
John Fastabendd4455162017-07-17 09:26:45 -07004312 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004313 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004314 case XDP_TX:
4315 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004316 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004317 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004318 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004319 if (metalen)
4320 skb_metadata_set(skb, metalen);
4321 break;
John Fastabendd4455162017-07-17 09:26:45 -07004322 default:
4323 bpf_warn_invalid_xdp_action(act);
4324 /* fall through */
4325 case XDP_ABORTED:
4326 trace_xdp_exception(skb->dev, xdp_prog, act);
4327 /* fall through */
4328 case XDP_DROP:
4329 do_drop:
4330 kfree_skb(skb);
4331 break;
4332 }
4333
4334 return act;
4335}
4336
4337/* When doing generic XDP we have to bypass the qdisc layer and the
4338 * network taps in order to match in-driver-XDP behavior.
4339 */
Jason Wang7c497472017-08-11 19:41:17 +08004340void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004341{
4342 struct net_device *dev = skb->dev;
4343 struct netdev_queue *txq;
4344 bool free_skb = true;
4345 int cpu, rc;
4346
4347 txq = netdev_pick_tx(dev, skb, NULL);
4348 cpu = smp_processor_id();
4349 HARD_TX_LOCK(dev, txq, cpu);
4350 if (!netif_xmit_stopped(txq)) {
4351 rc = netdev_start_xmit(skb, dev, txq, 0);
4352 if (dev_xmit_complete(rc))
4353 free_skb = false;
4354 }
4355 HARD_TX_UNLOCK(dev, txq);
4356 if (free_skb) {
4357 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4358 kfree_skb(skb);
4359 }
4360}
Jason Wang7c497472017-08-11 19:41:17 +08004361EXPORT_SYMBOL_GPL(generic_xdp_tx);
John Fastabendd4455162017-07-17 09:26:45 -07004362
Davidlohr Bueso02786472018-05-08 09:07:02 -07004363static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004364
Jason Wang7c497472017-08-11 19:41:17 +08004365int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004366{
John Fastabendd4455162017-07-17 09:26:45 -07004367 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004368 struct xdp_buff xdp;
4369 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004370 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004371
Björn Töpel02671e22018-05-02 13:01:30 +02004372 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004373 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004374 switch (act) {
4375 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004376 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004377 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004378 if (err)
4379 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004380 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004381 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004382 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004383 break;
4384 }
John Fastabendd4455162017-07-17 09:26:45 -07004385 return XDP_DROP;
4386 }
4387 }
4388 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004389out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004390 kfree_skb(skb);
4391 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004392}
Jason Wang7c497472017-08-11 19:41:17 +08004393EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004394
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004395static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004397 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
Eric Dumazet588f0332011-11-15 04:12:55 +00004399 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400
Koki Sanagicf66ba52010-08-23 18:45:02 +09004401 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004402
Davidlohr Bueso02786472018-05-08 09:07:02 -07004403 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07004404 int ret;
4405
4406 preempt_disable();
4407 rcu_read_lock();
4408 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
4409 rcu_read_unlock();
4410 preempt_enable();
John Fastabendd4455162017-07-17 09:26:45 -07004411
John Fastabend6103aa92017-07-17 09:27:50 -07004412 /* Consider XDP consuming the packet a success from
4413 * the netdev point of view we do not want to count
4414 * this as an error.
4415 */
John Fastabendd4455162017-07-17 09:26:45 -07004416 if (ret != XDP_PASS)
John Fastabend6103aa92017-07-17 09:27:50 -07004417 return NET_RX_SUCCESS;
John Fastabendd4455162017-07-17 09:26:45 -07004418 }
4419
Eric Dumazetdf334542010-03-24 19:13:54 +00004420#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004421 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004422 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004423 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
Changli Gaocece1942010-08-07 20:35:43 -07004425 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004426 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004427
4428 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004429 if (cpu < 0)
4430 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004431
4432 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4433
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004434 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004435 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004436 } else
4437#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004438 {
4439 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004440
Tom Herbertfec5e652010-04-16 16:01:27 -07004441 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4442 put_cpu();
4443 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004444 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004446
4447/**
4448 * netif_rx - post buffer to the network code
4449 * @skb: buffer to post
4450 *
4451 * This function receives a packet from a device driver and queues it for
4452 * the upper (protocol) levels to process. It always succeeds. The buffer
4453 * may be dropped during processing for congestion control or by the
4454 * protocol layers.
4455 *
4456 * return values:
4457 * NET_RX_SUCCESS (no congestion)
4458 * NET_RX_DROP (packet was dropped)
4459 *
4460 */
4461
4462int netif_rx(struct sk_buff *skb)
4463{
4464 trace_netif_rx_entry(skb);
4465
4466 return netif_rx_internal(skb);
4467}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004468EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
4470int netif_rx_ni(struct sk_buff *skb)
4471{
4472 int err;
4473
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004474 trace_netif_rx_ni_entry(skb);
4475
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004477 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 if (local_softirq_pending())
4479 do_softirq();
4480 preempt_enable();
4481
4482 return err;
4483}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484EXPORT_SYMBOL(netif_rx_ni);
4485
Emese Revfy0766f782016-06-20 20:42:34 +02004486static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004488 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489
4490 if (sd->completion_queue) {
4491 struct sk_buff *clist;
4492
4493 local_irq_disable();
4494 clist = sd->completion_queue;
4495 sd->completion_queue = NULL;
4496 local_irq_enable();
4497
4498 while (clist) {
4499 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 clist = clist->next;
4502
Reshetova, Elena63354792017-06-30 13:07:58 +03004503 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004504 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4505 trace_consume_skb(skb);
4506 else
4507 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004508
4509 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4510 __kfree_skb(skb);
4511 else
4512 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004514
4515 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 }
4517
4518 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004519 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
4521 local_irq_disable();
4522 head = sd->output_queue;
4523 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004524 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 local_irq_enable();
4526
4527 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004528 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004529 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004530
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531 head = head->next_sched;
4532
John Fastabend6b3ba912017-12-07 09:54:25 -08004533 if (!(q->flags & TCQ_F_NOLOCK)) {
4534 root_lock = qdisc_lock(q);
4535 spin_lock(root_lock);
4536 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004537 /* We need to make sure head->next_sched is read
4538 * before clearing __QDISC_STATE_SCHED
4539 */
4540 smp_mb__before_atomic();
4541 clear_bit(__QDISC_STATE_SCHED, &q->state);
4542 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004543 if (root_lock)
4544 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 }
4546 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004547
4548 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549}
4550
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004551#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004552/* This hook is defined here for ATM LANE */
4553int (*br_fdb_test_addr_hook)(struct net_device *dev,
4554 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004555EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004556#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004558static inline struct sk_buff *
4559sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4560 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004561{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004562#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004563 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004564 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004565
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004566 /* If there's at least one ingress present somewhere (so
4567 * we get here via enabled static key), remaining devices
4568 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004569 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004570 */
Jiri Pirko46209402017-11-03 11:46:25 +01004571 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004572 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004573
Herbert Xuf697c3e2007-10-14 00:38:47 -07004574 if (*pt_prev) {
4575 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4576 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004577 }
4578
Florian Westphal33654952015-05-14 00:36:28 +02004579 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004580 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004581 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004582
Jiri Pirko46209402017-11-03 11:46:25 +01004583 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004584 case TC_ACT_OK:
4585 case TC_ACT_RECLASSIFY:
4586 skb->tc_index = TC_H_MIN(cl_res.classid);
4587 break;
4588 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004589 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004590 kfree_skb(skb);
4591 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004592 case TC_ACT_STOLEN:
4593 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004594 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004595 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004596 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004597 case TC_ACT_REDIRECT:
4598 /* skb_mac_header check was done by cls/act_bpf, so
4599 * we can safely push the L2 header back before
4600 * redirecting to another netdev
4601 */
4602 __skb_push(skb, skb->mac_len);
4603 skb_do_redirect(skb);
4604 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004605 default:
4606 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004607 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004608#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004609 return skb;
4610}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004612/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004613 * netdev_is_rx_handler_busy - check if receive handler is registered
4614 * @dev: device to check
4615 *
4616 * Check if a receive handler is already registered for a given device.
4617 * Return true if there one.
4618 *
4619 * The caller must hold the rtnl_mutex.
4620 */
4621bool netdev_is_rx_handler_busy(struct net_device *dev)
4622{
4623 ASSERT_RTNL();
4624 return dev && rtnl_dereference(dev->rx_handler);
4625}
4626EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4627
4628/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004629 * netdev_rx_handler_register - register receive handler
4630 * @dev: device to register a handler for
4631 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004632 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004633 *
Masanari Iidae2278672014-02-18 22:54:36 +09004634 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004635 * called from __netif_receive_skb. A negative errno code is returned
4636 * on a failure.
4637 *
4638 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004639 *
4640 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004641 */
4642int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004643 rx_handler_func_t *rx_handler,
4644 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004645{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08004646 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004647 return -EBUSY;
4648
Paolo Abenif54262502018-03-09 10:39:24 +01004649 if (dev->priv_flags & IFF_NO_RX_HANDLER)
4650 return -EINVAL;
4651
Eric Dumazet00cfec32013-03-29 03:01:22 +00004652 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004653 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004654 rcu_assign_pointer(dev->rx_handler, rx_handler);
4655
4656 return 0;
4657}
4658EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4659
4660/**
4661 * netdev_rx_handler_unregister - unregister receive handler
4662 * @dev: device to unregister a handler from
4663 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004664 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004665 *
4666 * The caller must hold the rtnl_mutex.
4667 */
4668void netdev_rx_handler_unregister(struct net_device *dev)
4669{
4670
4671 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004672 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004673 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4674 * section has a guarantee to see a non NULL rx_handler_data
4675 * as well.
4676 */
4677 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004678 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004679}
4680EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4681
Mel Gormanb4b9e352012-07-31 16:44:26 -07004682/*
4683 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4684 * the special handling of PFMEMALLOC skbs.
4685 */
4686static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4687{
4688 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004689 case htons(ETH_P_ARP):
4690 case htons(ETH_P_IP):
4691 case htons(ETH_P_IPV6):
4692 case htons(ETH_P_8021Q):
4693 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004694 return true;
4695 default:
4696 return false;
4697 }
4698}
4699
Pablo Neirae687ad62015-05-13 18:19:38 +02004700static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4701 int *ret, struct net_device *orig_dev)
4702{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004703#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004704 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004705 int ingress_retval;
4706
Pablo Neirae687ad62015-05-13 18:19:38 +02004707 if (*pt_prev) {
4708 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4709 *pt_prev = NULL;
4710 }
4711
Aaron Conole2c1e2702016-09-21 11:35:03 -04004712 rcu_read_lock();
4713 ingress_retval = nf_hook_ingress(skb);
4714 rcu_read_unlock();
4715 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004716 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004717#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004718 return 0;
4719}
Pablo Neirae687ad62015-05-13 18:19:38 +02004720
Edward Cree88eb1942018-07-02 16:13:56 +01004721static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc,
4722 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723{
4724 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004725 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004726 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004727 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08004729 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730
Eric Dumazet588f0332011-11-15 04:12:55 +00004731 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004732
Koki Sanagicf66ba52010-08-23 18:45:02 +09004733 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004734
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004735 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004736
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004737 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004738 if (!skb_transport_header_was_set(skb))
4739 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004740 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741
4742 pt_prev = NULL;
4743
David S. Miller63d8ea72011-02-28 10:48:59 -08004744another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004745 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004746
4747 __this_cpu_inc(softnet_data.processed);
4748
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004749 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4750 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004751 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004752 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004753 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004754 }
4755
Willem de Bruijne7246e12017-01-07 17:06:35 -05004756 if (skb_skip_tc_classify(skb))
4757 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758
David S. Miller9754e292013-02-14 15:57:38 -05004759 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004760 goto skip_taps;
4761
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004763 if (pt_prev)
4764 ret = deliver_skb(skb, pt_prev, orig_dev);
4765 pt_prev = ptype;
4766 }
4767
4768 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4769 if (pt_prev)
4770 ret = deliver_skb(skb, pt_prev, orig_dev);
4771 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 }
4773
Mel Gormanb4b9e352012-07-31 16:44:26 -07004774skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004775#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004776 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004777 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004778 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004779 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004780
4781 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004782 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004783 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004784#endif
Willem de Bruijna5135bc2017-01-07 17:06:36 -05004785 skb_reset_tc(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05004786skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05004787 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004788 goto drop;
4789
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004790 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004791 if (pt_prev) {
4792 ret = deliver_skb(skb, pt_prev, orig_dev);
4793 pt_prev = NULL;
4794 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004795 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004796 goto another_round;
4797 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004798 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004799 }
4800
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004801 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004802 if (rx_handler) {
4803 if (pt_prev) {
4804 ret = deliver_skb(skb, pt_prev, orig_dev);
4805 pt_prev = NULL;
4806 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004807 switch (rx_handler(&skb)) {
4808 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004809 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004810 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004811 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004812 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004813 case RX_HANDLER_EXACT:
4814 deliver_exact = true;
4815 case RX_HANDLER_PASS:
4816 break;
4817 default:
4818 BUG();
4819 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004822 if (unlikely(skb_vlan_tag_present(skb))) {
4823 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004824 skb->pkt_type = PACKET_OTHERHOST;
4825 /* Note: we might in the future use prio bits
4826 * and set skb->priority like in vlan_do_receive()
4827 * For the time being, just ignore Priority Code Point
4828 */
4829 skb->vlan_tci = 0;
4830 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004833
4834 /* deliver only exact match when indicated */
4835 if (likely(!deliver_exact)) {
4836 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4837 &ptype_base[ntohs(type) &
4838 PTYPE_HASH_MASK]);
4839 }
4840
4841 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4842 &orig_dev->ptype_specific);
4843
4844 if (unlikely(skb->dev != orig_dev)) {
4845 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4846 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 }
4848
4849 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04004850 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004851 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01004852 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004854drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004855 if (!deliver_exact)
4856 atomic_long_inc(&skb->dev->rx_dropped);
4857 else
4858 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 kfree_skb(skb);
4860 /* Jamal, now you will not able to escape explaining
4861 * me how you were going to use this. :-)
4862 */
4863 ret = NET_RX_DROP;
4864 }
4865
Julian Anastasov2c17d272015-07-09 09:59:10 +03004866out:
David S. Miller9754e292013-02-14 15:57:38 -05004867 return ret;
4868}
4869
Edward Cree88eb1942018-07-02 16:13:56 +01004870static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
4871{
4872 struct net_device *orig_dev = skb->dev;
4873 struct packet_type *pt_prev = NULL;
4874 int ret;
4875
4876 ret = __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
4877 if (pt_prev)
4878 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
4879 return ret;
4880}
4881
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004882/**
4883 * netif_receive_skb_core - special purpose version of netif_receive_skb
4884 * @skb: buffer to process
4885 *
4886 * More direct receive version of netif_receive_skb(). It should
4887 * only be used by callers that have a need to skip RPS and Generic XDP.
4888 * Caller must also take care of handling if (page_is_)pfmemalloc.
4889 *
4890 * This function may only be called from softirq context and interrupts
4891 * should be enabled.
4892 *
4893 * Return values (usually ignored):
4894 * NET_RX_SUCCESS: no congestion
4895 * NET_RX_DROP: packet was dropped
4896 */
4897int netif_receive_skb_core(struct sk_buff *skb)
4898{
4899 int ret;
4900
4901 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01004902 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004903 rcu_read_unlock();
4904
4905 return ret;
4906}
4907EXPORT_SYMBOL(netif_receive_skb_core);
4908
Edward Cree88eb1942018-07-02 16:13:56 +01004909static inline void __netif_receive_skb_list_ptype(struct list_head *head,
4910 struct packet_type *pt_prev,
4911 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01004912{
4913 struct sk_buff *skb, *next;
4914
Edward Cree88eb1942018-07-02 16:13:56 +01004915 if (!pt_prev)
4916 return;
4917 if (list_empty(head))
4918 return;
Edward Cree17266ee2018-07-02 16:14:12 +01004919 if (pt_prev->list_func != NULL)
4920 pt_prev->list_func(head, pt_prev, orig_dev);
4921 else
4922 list_for_each_entry_safe(skb, next, head, list)
4923 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01004924}
4925
4926static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
4927{
4928 /* Fast-path assumptions:
4929 * - There is no RX handler.
4930 * - Only one packet_type matches.
4931 * If either of these fails, we will end up doing some per-packet
4932 * processing in-line, then handling the 'last ptype' for the whole
4933 * sublist. This can't cause out-of-order delivery to any single ptype,
4934 * because the 'last ptype' must be constant across the sublist, and all
4935 * other ptypes are handled per-packet.
4936 */
4937 /* Current (common) ptype of sublist */
4938 struct packet_type *pt_curr = NULL;
4939 /* Current (common) orig_dev of sublist */
4940 struct net_device *od_curr = NULL;
4941 struct list_head sublist;
4942 struct sk_buff *skb, *next;
4943
Edward Cree9af86f92018-07-09 18:10:19 +01004944 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01004945 list_for_each_entry_safe(skb, next, head, list) {
4946 struct net_device *orig_dev = skb->dev;
4947 struct packet_type *pt_prev = NULL;
4948
Edward Cree9af86f92018-07-09 18:10:19 +01004949 list_del(&skb->list);
Edward Cree88eb1942018-07-02 16:13:56 +01004950 __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01004951 if (!pt_prev)
4952 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01004953 if (pt_curr != pt_prev || od_curr != orig_dev) {
4954 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01004955 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
4956 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01004957 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01004958 pt_curr = pt_prev;
4959 od_curr = orig_dev;
4960 }
Edward Cree9af86f92018-07-09 18:10:19 +01004961 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01004962 }
4963
4964 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01004965 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01004966}
4967
David S. Miller9754e292013-02-14 15:57:38 -05004968static int __netif_receive_skb(struct sk_buff *skb)
4969{
4970 int ret;
4971
4972 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07004973 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05004974
4975 /*
4976 * PFMEMALLOC skbs are special, they should
4977 * - be delivered to SOCK_MEMALLOC sockets only
4978 * - stay away from userspace
4979 * - have bounded memory usage
4980 *
4981 * Use PF_MEMALLOC as this saves us from propagating the allocation
4982 * context down to all allocation sites.
4983 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07004984 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01004985 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07004986 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05004987 } else
Edward Cree88eb1942018-07-02 16:13:56 +01004988 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05004989
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990 return ret;
4991}
Tom Herbert0a9627f2010-03-16 08:03:29 +00004992
Edward Cree4ce00172018-07-02 16:13:40 +01004993static void __netif_receive_skb_list(struct list_head *head)
4994{
4995 unsigned long noreclaim_flag = 0;
4996 struct sk_buff *skb, *next;
4997 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
4998
4999 list_for_each_entry_safe(skb, next, head, list) {
5000 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5001 struct list_head sublist;
5002
5003 /* Handle the previous sublist */
5004 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005005 if (!list_empty(&sublist))
5006 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005007 pfmemalloc = !pfmemalloc;
5008 /* See comments in __netif_receive_skb */
5009 if (pfmemalloc)
5010 noreclaim_flag = memalloc_noreclaim_save();
5011 else
5012 memalloc_noreclaim_restore(noreclaim_flag);
5013 }
5014 }
5015 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005016 if (!list_empty(head))
5017 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005018 /* Restore pflags */
5019 if (pfmemalloc)
5020 memalloc_noreclaim_restore(noreclaim_flag);
5021}
5022
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005023static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005024{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005025 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005026 struct bpf_prog *new = xdp->prog;
5027 int ret = 0;
5028
5029 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005030 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005031 rcu_assign_pointer(dev->xdp_prog, new);
5032 if (old)
5033 bpf_prog_put(old);
5034
5035 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005036 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005037 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005038 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005039 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005040 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005041 }
5042 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005043
5044 case XDP_QUERY_PROG:
Martin KaFai Lau58038692017-06-15 17:29:09 -07005045 xdp->prog_id = old ? old->aux->id : 0;
David S. Millerb5cdae32017-04-18 15:36:58 -04005046 break;
5047
5048 default:
5049 ret = -EINVAL;
5050 break;
5051 }
5052
5053 return ret;
5054}
5055
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005056static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005057{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005058 int ret;
5059
Eric Dumazet588f0332011-11-15 04:12:55 +00005060 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005061
Richard Cochranc1f19b52010-07-17 08:49:36 +00005062 if (skb_defer_rx_timestamp(skb))
5063 return NET_RX_SUCCESS;
5064
Davidlohr Bueso02786472018-05-08 09:07:02 -07005065 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07005066 int ret;
David S. Millerb5cdae32017-04-18 15:36:58 -04005067
John Fastabendbbbe2112017-09-08 14:00:30 -07005068 preempt_disable();
5069 rcu_read_lock();
5070 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5071 rcu_read_unlock();
5072 preempt_enable();
5073
5074 if (ret != XDP_PASS)
John Fastabendd4455162017-07-17 09:26:45 -07005075 return NET_RX_DROP;
David S. Millerb5cdae32017-04-18 15:36:58 -04005076 }
5077
John Fastabendbbbe2112017-09-08 14:00:30 -07005078 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005079#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01005080 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005081 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005082 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005083
Eric Dumazet3b098e22010-05-15 23:57:10 -07005084 if (cpu >= 0) {
5085 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5086 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005087 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005088 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005089 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005090#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005091 ret = __netif_receive_skb(skb);
5092 rcu_read_unlock();
5093 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005094}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005095
Edward Cree7da517a2018-07-02 16:13:24 +01005096static void netif_receive_skb_list_internal(struct list_head *head)
5097{
5098 struct bpf_prog *xdp_prog = NULL;
5099 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005100 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005101
Edward Cree8c057ef2018-07-09 18:09:54 +01005102 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005103 list_for_each_entry_safe(skb, next, head, list) {
5104 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005105 list_del(&skb->list);
5106 if (!skb_defer_rx_timestamp(skb))
5107 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005108 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005109 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005110
5111 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5112 preempt_disable();
5113 rcu_read_lock();
5114 list_for_each_entry_safe(skb, next, head, list) {
5115 xdp_prog = rcu_dereference(skb->dev->xdp_prog);
Edward Cree8c057ef2018-07-09 18:09:54 +01005116 list_del(&skb->list);
5117 if (do_xdp_generic(xdp_prog, skb) == XDP_PASS)
5118 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005119 }
5120 rcu_read_unlock();
5121 preempt_enable();
Edward Cree8c057ef2018-07-09 18:09:54 +01005122 /* Put passed packets back on main list */
5123 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005124 }
5125
5126 rcu_read_lock();
5127#ifdef CONFIG_RPS
5128 if (static_key_false(&rps_needed)) {
5129 list_for_each_entry_safe(skb, next, head, list) {
5130 struct rps_dev_flow voidflow, *rflow = &voidflow;
5131 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5132
5133 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005134 /* Will be handled, remove from list */
Edward Cree7da517a2018-07-02 16:13:24 +01005135 list_del(&skb->list);
Edward Cree8c057ef2018-07-09 18:09:54 +01005136 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005137 }
5138 }
5139 }
5140#endif
5141 __netif_receive_skb_list(head);
5142 rcu_read_unlock();
5143}
5144
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005145/**
5146 * netif_receive_skb - process receive buffer from network
5147 * @skb: buffer to process
5148 *
5149 * netif_receive_skb() is the main receive data processing function.
5150 * It always succeeds. The buffer may be dropped during processing
5151 * for congestion control or by the protocol layers.
5152 *
5153 * This function may only be called from softirq context and interrupts
5154 * should be enabled.
5155 *
5156 * Return values (usually ignored):
5157 * NET_RX_SUCCESS: no congestion
5158 * NET_RX_DROP: packet was dropped
5159 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005160int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005161{
5162 trace_netif_receive_skb_entry(skb);
5163
5164 return netif_receive_skb_internal(skb);
5165}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005166EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167
Edward Creef6ad8c12018-07-02 16:12:45 +01005168/**
5169 * netif_receive_skb_list - process many receive buffers from network
5170 * @head: list of skbs to process.
5171 *
Edward Cree7da517a2018-07-02 16:13:24 +01005172 * Since return value of netif_receive_skb() is normally ignored, and
5173 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005174 *
5175 * This function may only be called from softirq context and interrupts
5176 * should be enabled.
5177 */
5178void netif_receive_skb_list(struct list_head *head)
5179{
Edward Cree7da517a2018-07-02 16:13:24 +01005180 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005181
Edward Creeb9f463d2018-07-02 16:14:44 +01005182 if (list_empty(head))
5183 return;
Edward Cree920572b2018-07-02 16:13:11 +01005184 list_for_each_entry(skb, head, list)
5185 trace_netif_receive_skb_list_entry(skb);
Edward Cree7da517a2018-07-02 16:13:24 +01005186 netif_receive_skb_list_internal(head);
Edward Creef6ad8c12018-07-02 16:12:45 +01005187}
5188EXPORT_SYMBOL(netif_receive_skb_list);
5189
Eric Dumazet41852492016-08-26 12:50:39 -07005190DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005191
5192/* Network device is going away, flush any packets still pending */
5193static void flush_backlog(struct work_struct *work)
5194{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005195 struct sk_buff *skb, *tmp;
5196 struct softnet_data *sd;
5197
5198 local_bh_disable();
5199 sd = this_cpu_ptr(&softnet_data);
5200
5201 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005202 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005203 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005204 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005205 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005206 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005207 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005208 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005209 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005210 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005211 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005212
5213 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005214 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005215 __skb_unlink(skb, &sd->process_queue);
5216 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005217 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005218 }
5219 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005220 local_bh_enable();
5221}
5222
Eric Dumazet41852492016-08-26 12:50:39 -07005223static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005224{
5225 unsigned int cpu;
5226
5227 get_online_cpus();
5228
Eric Dumazet41852492016-08-26 12:50:39 -07005229 for_each_online_cpu(cpu)
5230 queue_work_on(cpu, system_highpri_wq,
5231 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005232
5233 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07005234 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005235
5236 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005237}
5238
Herbert Xud565b0a2008-12-15 23:38:52 -08005239static int napi_gro_complete(struct sk_buff *skb)
5240{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005241 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005242 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005243 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005244 int err = -ENOENT;
5245
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005246 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5247
Herbert Xufc59f9a2009-04-14 15:11:06 -07005248 if (NAPI_GRO_CB(skb)->count == 1) {
5249 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005250 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005251 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005252
5253 rcu_read_lock();
5254 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005255 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005256 continue;
5257
Jerry Chu299603e82013-12-11 20:53:45 -08005258 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005259 break;
5260 }
5261 rcu_read_unlock();
5262
5263 if (err) {
5264 WARN_ON(&ptype->list == head);
5265 kfree_skb(skb);
5266 return NET_RX_SUCCESS;
5267 }
5268
5269out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005270 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005271}
5272
Li RongQing6312fe72018-07-05 14:34:32 +08005273static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005274 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005275{
Li RongQing6312fe72018-07-05 14:34:32 +08005276 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005277 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005278
David Miller07d78362018-06-24 14:14:02 +09005279 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005280 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5281 return;
Prashant Bhole68d2f842018-07-12 16:24:59 +09005282 list_del(&skb->list);
5283 skb->next = NULL;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005284 napi_gro_complete(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005285 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005286 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005287
5288 if (!napi->gro_hash[index].count)
5289 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005290}
David Miller07d78362018-06-24 14:14:02 +09005291
Li RongQing6312fe72018-07-05 14:34:32 +08005292/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005293 * youngest packets at the head of it.
5294 * Complete skbs in reverse order to reduce latencies.
5295 */
5296void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5297{
Li RongQing6312fe72018-07-05 14:34:32 +08005298 u32 i;
David Miller07d78362018-06-24 14:14:02 +09005299
Li RongQingd9f37d02018-07-13 14:41:36 +08005300 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
5301 if (test_bit(i, &napi->gro_bitmask))
5302 __napi_gro_flush_chain(napi, i, flush_old);
5303 }
David Miller07d78362018-06-24 14:14:02 +09005304}
Eric Dumazet86cac582010-08-31 18:25:32 +00005305EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005306
David Miller07d78362018-06-24 14:14:02 +09005307static struct list_head *gro_list_prepare(struct napi_struct *napi,
5308 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005309{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005310 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005311 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005312 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005313 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005314
Li RongQing6312fe72018-07-05 14:34:32 +08005315 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005316 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005317 unsigned long diffs;
5318
Tom Herbert0b4cec82014-01-15 08:58:06 -08005319 NAPI_GRO_CB(p)->flush = 0;
5320
5321 if (hash != skb_get_hash_raw(p)) {
5322 NAPI_GRO_CB(p)->same_flow = 0;
5323 continue;
5324 }
5325
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005326 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
5327 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08005328 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005329 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005330 if (maclen == ETH_HLEN)
5331 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005332 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005333 else if (!diffs)
5334 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005335 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005336 maclen);
5337 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005338 }
David Miller07d78362018-06-24 14:14:02 +09005339
5340 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005341}
5342
Jerry Chu299603e82013-12-11 20:53:45 -08005343static void skb_gro_reset_offset(struct sk_buff *skb)
5344{
5345 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5346 const skb_frag_t *frag0 = &pinfo->frags[0];
5347
5348 NAPI_GRO_CB(skb)->data_offset = 0;
5349 NAPI_GRO_CB(skb)->frag0 = NULL;
5350 NAPI_GRO_CB(skb)->frag0_len = 0;
5351
5352 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
5353 pinfo->nr_frags &&
5354 !PageHighMem(skb_frag_page(frag0))) {
5355 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005356 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5357 skb_frag_size(frag0),
5358 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005359 }
5360}
5361
Eric Dumazeta50e2332014-03-29 21:28:21 -07005362static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5363{
5364 struct skb_shared_info *pinfo = skb_shinfo(skb);
5365
5366 BUG_ON(skb->end - skb->tail < grow);
5367
5368 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5369
5370 skb->data_len -= grow;
5371 skb->tail += grow;
5372
5373 pinfo->frags[0].page_offset += grow;
5374 skb_frag_size_sub(&pinfo->frags[0], grow);
5375
5376 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5377 skb_frag_unref(skb, 0);
5378 memmove(pinfo->frags, pinfo->frags + 1,
5379 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5380 }
5381}
5382
Li RongQing6312fe72018-07-05 14:34:32 +08005383static void gro_flush_oldest(struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005384{
Li RongQing6312fe72018-07-05 14:34:32 +08005385 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005386
Li RongQing6312fe72018-07-05 14:34:32 +08005387 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005388
Li RongQing6312fe72018-07-05 14:34:32 +08005389 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005390 * impossible.
5391 */
5392 if (WARN_ON_ONCE(!oldest))
5393 return;
5394
Li RongQingd9f37d02018-07-13 14:41:36 +08005395 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5396 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005397 */
5398 list_del(&oldest->list);
5399 napi_gro_complete(oldest);
5400}
5401
Rami Rosenbb728822012-11-28 21:55:25 +00005402static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005403{
Li RongQing6312fe72018-07-05 14:34:32 +08005404 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005405 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005406 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005407 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005408 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005409 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005410 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005411 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005412 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005413
David S. Millerb5cdae32017-04-18 15:36:58 -04005414 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005415 goto normal;
5416
David Miller07d78362018-06-24 14:14:02 +09005417 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005418
Herbert Xud565b0a2008-12-15 23:38:52 -08005419 rcu_read_lock();
5420 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005421 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005422 continue;
5423
Herbert Xu86911732009-01-29 14:19:50 +00005424 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005425 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005426 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005427 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005428 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005429 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005430 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005431 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005432 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005433 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005434
Tom Herbert662880f2014-08-27 21:26:56 -07005435 /* Setup for GRO checksum validation */
5436 switch (skb->ip_summed) {
5437 case CHECKSUM_COMPLETE:
5438 NAPI_GRO_CB(skb)->csum = skb->csum;
5439 NAPI_GRO_CB(skb)->csum_valid = 1;
5440 NAPI_GRO_CB(skb)->csum_cnt = 0;
5441 break;
5442 case CHECKSUM_UNNECESSARY:
5443 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5444 NAPI_GRO_CB(skb)->csum_valid = 0;
5445 break;
5446 default:
5447 NAPI_GRO_CB(skb)->csum_cnt = 0;
5448 NAPI_GRO_CB(skb)->csum_valid = 0;
5449 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005450
David Miller07d78362018-06-24 14:14:02 +09005451 pp = ptype->callbacks.gro_receive(gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005452 break;
5453 }
5454 rcu_read_unlock();
5455
5456 if (&ptype->list == head)
5457 goto normal;
5458
Steffen Klassert25393d32017-02-15 09:39:44 +01005459 if (IS_ERR(pp) && PTR_ERR(pp) == -EINPROGRESS) {
5460 ret = GRO_CONSUMED;
5461 goto ok;
5462 }
5463
Herbert Xu0da2afd52008-12-26 14:57:42 -08005464 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005465 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005466
Herbert Xud565b0a2008-12-15 23:38:52 -08005467 if (pp) {
Prashant Bhole68d2f842018-07-12 16:24:59 +09005468 list_del(&pp->list);
5469 pp->next = NULL;
David Millerd4546c22018-06-24 14:13:49 +09005470 napi_gro_complete(pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005471 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005472 }
5473
Herbert Xu0da2afd52008-12-26 14:57:42 -08005474 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005475 goto ok;
5476
Eric Dumazet600adc12014-01-09 14:12:19 -08005477 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005478 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005479
Li RongQing6312fe72018-07-05 14:34:32 +08005480 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
5481 gro_flush_oldest(gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005482 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005483 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005484 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005485 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005486 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005487 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005488 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005489 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005490 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005491
Herbert Xuad0f9902009-02-01 01:24:55 -08005492pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005493 grow = skb_gro_offset(skb) - skb_headlen(skb);
5494 if (grow > 0)
5495 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08005496ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08005497 if (napi->gro_hash[hash].count) {
5498 if (!test_bit(hash, &napi->gro_bitmask))
5499 __set_bit(hash, &napi->gro_bitmask);
5500 } else if (test_bit(hash, &napi->gro_bitmask)) {
5501 __clear_bit(hash, &napi->gro_bitmask);
5502 }
5503
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005504 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005505
5506normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08005507 ret = GRO_NORMAL;
5508 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08005509}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005510
Jerry Chubf5a7552014-01-07 10:23:19 -08005511struct packet_offload *gro_find_receive_by_type(__be16 type)
5512{
5513 struct list_head *offload_head = &offload_base;
5514 struct packet_offload *ptype;
5515
5516 list_for_each_entry_rcu(ptype, offload_head, list) {
5517 if (ptype->type != type || !ptype->callbacks.gro_receive)
5518 continue;
5519 return ptype;
5520 }
5521 return NULL;
5522}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005523EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08005524
5525struct packet_offload *gro_find_complete_by_type(__be16 type)
5526{
5527 struct list_head *offload_head = &offload_base;
5528 struct packet_offload *ptype;
5529
5530 list_for_each_entry_rcu(ptype, offload_head, list) {
5531 if (ptype->type != type || !ptype->callbacks.gro_complete)
5532 continue;
5533 return ptype;
5534 }
5535 return NULL;
5536}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005537EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005538
Michal Kubečeke44699d2017-06-29 11:13:36 +02005539static void napi_skb_free_stolen_head(struct sk_buff *skb)
5540{
5541 skb_dst_drop(skb);
5542 secpath_reset(skb);
5543 kmem_cache_free(skbuff_head_cache, skb);
5544}
5545
Rami Rosenbb728822012-11-28 21:55:25 +00005546static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08005547{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005548 switch (ret) {
5549 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005550 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005551 ret = GRO_DROP;
5552 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005553
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005554 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08005555 kfree_skb(skb);
5556 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005557
Eric Dumazetdaa86542012-04-19 07:07:40 +00005558 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02005559 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5560 napi_skb_free_stolen_head(skb);
5561 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00005562 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00005563 break;
5564
Ben Hutchings5b252f02009-10-29 07:17:09 +00005565 case GRO_HELD:
5566 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005567 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005568 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005569 }
5570
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005571 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005572}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005573
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005574gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005575{
Eric Dumazet93f93a42015-11-18 06:30:59 -08005576 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005577 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00005578
Eric Dumazeta50e2332014-03-29 21:28:21 -07005579 skb_gro_reset_offset(skb);
5580
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005581 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005582}
5583EXPORT_SYMBOL(napi_gro_receive);
5584
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00005585static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005586{
Eric Dumazet93a35f52014-10-23 06:30:30 -07005587 if (unlikely(skb->pfmemalloc)) {
5588 consume_skb(skb);
5589 return;
5590 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005591 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00005592 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
5593 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00005594 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08005595 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08005596 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07005597 skb->encapsulation = 0;
5598 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07005599 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Steffen Klassertf991bb92017-01-30 06:45:38 +01005600 secpath_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005601
5602 napi->skb = skb;
5603}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005604
Herbert Xu76620aa2009-04-16 02:02:07 -07005605struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08005606{
Herbert Xu5d38a072009-01-04 16:13:40 -08005607 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08005608
5609 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08005610 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08005611 if (skb) {
5612 napi->skb = skb;
5613 skb_mark_napi_id(skb, napi);
5614 }
Herbert Xu5d38a072009-01-04 16:13:40 -08005615 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005616 return skb;
5617}
Herbert Xu76620aa2009-04-16 02:02:07 -07005618EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005619
Eric Dumazeta50e2332014-03-29 21:28:21 -07005620static gro_result_t napi_frags_finish(struct napi_struct *napi,
5621 struct sk_buff *skb,
5622 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005623{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005624 switch (ret) {
5625 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005626 case GRO_HELD:
5627 __skb_push(skb, ETH_HLEN);
5628 skb->protocol = eth_type_trans(skb, skb->dev);
5629 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005630 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00005631 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005632
5633 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005634 napi_reuse_skb(napi, skb);
5635 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005636
Michal Kubečeke44699d2017-06-29 11:13:36 +02005637 case GRO_MERGED_FREE:
5638 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5639 napi_skb_free_stolen_head(skb);
5640 else
5641 napi_reuse_skb(napi, skb);
5642 break;
5643
Ben Hutchings5b252f02009-10-29 07:17:09 +00005644 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005645 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005646 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005647 }
5648
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005649 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005650}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005651
Eric Dumazeta50e2332014-03-29 21:28:21 -07005652/* Upper GRO stack assumes network header starts at gro_offset=0
5653 * Drivers could call both napi_gro_frags() and napi_gro_receive()
5654 * We copy ethernet header into skb->data to have a common layout.
5655 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00005656static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005657{
Herbert Xu76620aa2009-04-16 02:02:07 -07005658 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005659 const struct ethhdr *eth;
5660 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07005661
5662 napi->skb = NULL;
5663
Eric Dumazeta50e2332014-03-29 21:28:21 -07005664 skb_reset_mac_header(skb);
5665 skb_gro_reset_offset(skb);
5666
5667 eth = skb_gro_header_fast(skb, 0);
5668 if (unlikely(skb_gro_header_hard(skb, hlen))) {
5669 eth = skb_gro_header_slow(skb, hlen, 0);
5670 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04005671 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
5672 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005673 napi_reuse_skb(napi, skb);
5674 return NULL;
5675 }
5676 } else {
5677 gro_pull_from_frag0(skb, hlen);
5678 NAPI_GRO_CB(skb)->frag0 += hlen;
5679 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07005680 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07005681 __skb_pull(skb, hlen);
5682
5683 /*
5684 * This works because the only protocols we care about don't require
5685 * special handling.
5686 * We'll fix it up properly in napi_frags_finish()
5687 */
5688 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07005689
Herbert Xu76620aa2009-04-16 02:02:07 -07005690 return skb;
5691}
Herbert Xu76620aa2009-04-16 02:02:07 -07005692
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005693gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07005694{
5695 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005696
5697 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005698 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08005699
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005700 trace_napi_gro_frags_entry(skb);
5701
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005702 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08005703}
5704EXPORT_SYMBOL(napi_gro_frags);
5705
Tom Herbert573e8fc2014-08-22 13:33:47 -07005706/* Compute the checksum from gro_offset and return the folded value
5707 * after adding in any pseudo checksum.
5708 */
5709__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
5710{
5711 __wsum wsum;
5712 __sum16 sum;
5713
5714 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
5715
5716 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
5717 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
5718 if (likely(!sum)) {
5719 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
5720 !skb->csum_complete_sw)
5721 netdev_rx_csum_fault(skb->dev);
5722 }
5723
5724 NAPI_GRO_CB(skb)->csum = wsum;
5725 NAPI_GRO_CB(skb)->csum_valid = 1;
5726
5727 return sum;
5728}
5729EXPORT_SYMBOL(__skb_gro_checksum_complete);
5730
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305731static void net_rps_send_ipi(struct softnet_data *remsd)
5732{
5733#ifdef CONFIG_RPS
5734 while (remsd) {
5735 struct softnet_data *next = remsd->rps_ipi_next;
5736
5737 if (cpu_online(remsd->cpu))
5738 smp_call_function_single_async(remsd->cpu, &remsd->csd);
5739 remsd = next;
5740 }
5741#endif
5742}
5743
Eric Dumazete326bed2010-04-22 00:22:45 -07005744/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08005745 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07005746 * Note: called with local irq disabled, but exits with local irq enabled.
5747 */
5748static void net_rps_action_and_irq_enable(struct softnet_data *sd)
5749{
5750#ifdef CONFIG_RPS
5751 struct softnet_data *remsd = sd->rps_ipi_list;
5752
5753 if (remsd) {
5754 sd->rps_ipi_list = NULL;
5755
5756 local_irq_enable();
5757
5758 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305759 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07005760 } else
5761#endif
5762 local_irq_enable();
5763}
5764
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005765static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
5766{
5767#ifdef CONFIG_RPS
5768 return sd->rps_ipi_list != NULL;
5769#else
5770 return false;
5771#endif
5772}
5773
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005774static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005776 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005777 bool again = true;
5778 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779
Eric Dumazete326bed2010-04-22 00:22:45 -07005780 /* Check if we have pending ipi, its better to send them now,
5781 * not waiting net_rx_action() end.
5782 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005783 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005784 local_irq_disable();
5785 net_rps_action_and_irq_enable(sd);
5786 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005787
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01005788 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005789 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791
Changli Gao6e7676c2010-04-27 15:07:33 -07005792 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005793 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005794 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005795 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005796 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005797 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00005798 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005799
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005802 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005803 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005804 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005805 /*
5806 * Inline a custom version of __napi_complete().
5807 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005808 * and NAPI_STATE_SCHED is the only possible flag set
5809 * on backlog.
5810 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005811 * and we dont need an smp_mb() memory barrier.
5812 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005813 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005814 again = false;
5815 } else {
5816 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5817 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005818 }
5819 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005820 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005823 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824}
5825
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005826/**
5827 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005828 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005829 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005830 * The entry's receive function will be scheduled to run.
5831 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005832 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005833void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005834{
5835 unsigned long flags;
5836
5837 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005838 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005839 local_irq_restore(flags);
5840}
5841EXPORT_SYMBOL(__napi_schedule);
5842
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005843/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08005844 * napi_schedule_prep - check if napi can be scheduled
5845 * @n: napi context
5846 *
5847 * Test if NAPI routine is already running, and if not mark
5848 * it as running. This is used as a condition variable
5849 * insure only one NAPI poll instance runs. We also make
5850 * sure there is no pending NAPI disable.
5851 */
5852bool napi_schedule_prep(struct napi_struct *n)
5853{
5854 unsigned long val, new;
5855
5856 do {
5857 val = READ_ONCE(n->state);
5858 if (unlikely(val & NAPIF_STATE_DISABLE))
5859 return false;
5860 new = val | NAPIF_STATE_SCHED;
5861
5862 /* Sets STATE_MISSED bit if STATE_SCHED was already set
5863 * This was suggested by Alexander Duyck, as compiler
5864 * emits better code than :
5865 * if (val & NAPIF_STATE_SCHED)
5866 * new |= NAPIF_STATE_MISSED;
5867 */
5868 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
5869 NAPIF_STATE_MISSED;
5870 } while (cmpxchg(&n->state, val, new) != val);
5871
5872 return !(val & NAPIF_STATE_SCHED);
5873}
5874EXPORT_SYMBOL(napi_schedule_prep);
5875
5876/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005877 * __napi_schedule_irqoff - schedule for receive
5878 * @n: entry to schedule
5879 *
5880 * Variant of __napi_schedule() assuming hard irqs are masked
5881 */
5882void __napi_schedule_irqoff(struct napi_struct *n)
5883{
5884 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
5885}
5886EXPORT_SYMBOL(__napi_schedule_irqoff);
5887
Eric Dumazet364b6052016-11-15 10:15:13 -08005888bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08005889{
Eric Dumazet39e6c822017-02-28 10:34:50 -08005890 unsigned long flags, val, new;
Herbert Xud565b0a2008-12-15 23:38:52 -08005891
5892 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08005893 * 1) Don't let napi dequeue from the cpu poll list
5894 * just in case its running on a different cpu.
5895 * 2) If we are busy polling, do nothing here, we have
5896 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08005897 */
Eric Dumazet217f6972016-11-15 10:15:11 -08005898 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
5899 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08005900 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08005901
Li RongQingd9f37d02018-07-13 14:41:36 +08005902 if (n->gro_bitmask) {
Eric Dumazet3b47d302014-11-06 21:09:44 -08005903 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005904
Eric Dumazet3b47d302014-11-06 21:09:44 -08005905 if (work_done)
5906 timeout = n->dev->gro_flush_timeout;
5907
5908 if (timeout)
5909 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5910 HRTIMER_MODE_REL_PINNED);
5911 else
5912 napi_gro_flush(n, false);
5913 }
Eric Dumazet02c16022017-02-04 15:25:02 -08005914 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005915 /* If n->poll_list is not empty, we need to mask irqs */
5916 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08005917 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005918 local_irq_restore(flags);
5919 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08005920
5921 do {
5922 val = READ_ONCE(n->state);
5923
5924 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
5925
5926 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
5927
5928 /* If STATE_MISSED was set, leave STATE_SCHED set,
5929 * because we will call napi->poll() one more time.
5930 * This C code was suggested by Alexander Duyck to help gcc.
5931 */
5932 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
5933 NAPIF_STATE_SCHED;
5934 } while (cmpxchg(&n->state, val, new) != val);
5935
5936 if (unlikely(val & NAPIF_STATE_MISSED)) {
5937 __napi_schedule(n);
5938 return false;
5939 }
5940
Eric Dumazet364b6052016-11-15 10:15:13 -08005941 return true;
Herbert Xud565b0a2008-12-15 23:38:52 -08005942}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005943EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005944
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005945/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005946static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005947{
5948 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5949 struct napi_struct *napi;
5950
5951 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5952 if (napi->napi_id == napi_id)
5953 return napi;
5954
5955 return NULL;
5956}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005957
5958#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08005959
Eric Dumazetce6aea92015-11-18 06:30:54 -08005960#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08005961
5962static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
5963{
5964 int rc;
5965
Eric Dumazet39e6c822017-02-28 10:34:50 -08005966 /* Busy polling means there is a high chance device driver hard irq
5967 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
5968 * set in napi_schedule_prep().
5969 * Since we are about to call napi->poll() once more, we can safely
5970 * clear NAPI_STATE_MISSED.
5971 *
5972 * Note: x86 could use a single "lock and ..." instruction
5973 * to perform these two clear_bit()
5974 */
5975 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08005976 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
5977
5978 local_bh_disable();
5979
5980 /* All we really want here is to re-enable device interrupts.
5981 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
5982 */
5983 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02005984 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08005985 netpoll_poll_unlock(have_poll_lock);
5986 if (rc == BUSY_POLL_BUDGET)
5987 __napi_schedule(napi);
5988 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08005989}
5990
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07005991void napi_busy_loop(unsigned int napi_id,
5992 bool (*loop_end)(void *, unsigned long),
5993 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08005994{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07005995 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08005996 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08005997 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08005998 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08005999
6000restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006001 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006002
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006003 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006004
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006005 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006006 if (!napi)
6007 goto out;
6008
Eric Dumazet217f6972016-11-15 10:15:11 -08006009 preempt_disable();
6010 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006011 int work = 0;
6012
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006013 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006014 if (!napi_poll) {
6015 unsigned long val = READ_ONCE(napi->state);
6016
6017 /* If multiple threads are competing for this napi,
6018 * we avoid dirtying napi->state as much as we can.
6019 */
6020 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6021 NAPIF_STATE_IN_BUSY_POLL))
6022 goto count;
6023 if (cmpxchg(&napi->state, val,
6024 val | NAPIF_STATE_IN_BUSY_POLL |
6025 NAPIF_STATE_SCHED) != val)
6026 goto count;
6027 have_poll_lock = netpoll_poll_lock(napi);
6028 napi_poll = napi->poll;
6029 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006030 work = napi_poll(napi, BUSY_POLL_BUDGET);
6031 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006032count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006033 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006034 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006035 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006036 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006037
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006038 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006039 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006040
Eric Dumazet217f6972016-11-15 10:15:11 -08006041 if (unlikely(need_resched())) {
6042 if (napi_poll)
6043 busy_poll_stop(napi, have_poll_lock);
6044 preempt_enable();
6045 rcu_read_unlock();
6046 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006047 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006048 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006049 goto restart;
6050 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006051 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006052 }
6053 if (napi_poll)
6054 busy_poll_stop(napi, have_poll_lock);
6055 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006056out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006057 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006058}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006059EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006060
6061#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006062
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006063static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006064{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08006065 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
6066 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006067 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006068
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006069 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006070
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006071 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006072 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006073 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6074 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006075 } while (napi_by_id(napi_gen_id));
6076 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006077
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006078 hlist_add_head_rcu(&napi->napi_hash_node,
6079 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006080
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006081 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006082}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006083
6084/* Warning : caller is responsible to make sure rcu grace period
6085 * is respected before freeing memory containing @napi
6086 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08006087bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006088{
Eric Dumazet34cbe272015-11-18 06:31:02 -08006089 bool rcu_sync_needed = false;
6090
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006091 spin_lock(&napi_hash_lock);
6092
Eric Dumazet34cbe272015-11-18 06:31:02 -08006093 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
6094 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006095 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006096 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006097 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006098 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006099}
6100EXPORT_SYMBOL_GPL(napi_hash_del);
6101
Eric Dumazet3b47d302014-11-06 21:09:44 -08006102static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6103{
6104 struct napi_struct *napi;
6105
6106 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006107
6108 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6109 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6110 */
Li RongQingd9f37d02018-07-13 14:41:36 +08006111 if (napi->gro_bitmask && !napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006112 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6113 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006114
6115 return HRTIMER_NORESTART;
6116}
6117
Herbert Xud565b0a2008-12-15 23:38:52 -08006118void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6119 int (*poll)(struct napi_struct *, int), int weight)
6120{
David Miller07d78362018-06-24 14:14:02 +09006121 int i;
6122
Herbert Xud565b0a2008-12-15 23:38:52 -08006123 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006124 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6125 napi->timer.function = napi_watchdog;
Li RongQingd9f37d02018-07-13 14:41:36 +08006126 napi->gro_bitmask = 0;
Li RongQing6312fe72018-07-05 14:34:32 +08006127 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6128 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6129 napi->gro_hash[i].count = 0;
6130 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006131 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08006132 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006133 if (weight > NAPI_POLL_WEIGHT)
6134 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
6135 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08006136 napi->weight = weight;
6137 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08006138 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006139#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006140 napi->poll_owner = -1;
6141#endif
6142 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006143 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006144}
6145EXPORT_SYMBOL(netif_napi_add);
6146
Eric Dumazet3b47d302014-11-06 21:09:44 -08006147void napi_disable(struct napi_struct *n)
6148{
6149 might_sleep();
6150 set_bit(NAPI_STATE_DISABLE, &n->state);
6151
6152 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6153 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006154 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6155 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006156
6157 hrtimer_cancel(&n->timer);
6158
6159 clear_bit(NAPI_STATE_DISABLE, &n->state);
6160}
6161EXPORT_SYMBOL(napi_disable);
6162
David Miller07d78362018-06-24 14:14:02 +09006163static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006164{
David Miller07d78362018-06-24 14:14:02 +09006165 int i;
David Millerd4546c22018-06-24 14:13:49 +09006166
David Miller07d78362018-06-24 14:14:02 +09006167 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6168 struct sk_buff *skb, *n;
6169
Li RongQing6312fe72018-07-05 14:34:32 +08006170 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006171 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006172 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006173 }
David Millerd4546c22018-06-24 14:13:49 +09006174}
6175
Eric Dumazet93d05d42015-11-18 06:31:03 -08006176/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08006177void netif_napi_del(struct napi_struct *napi)
6178{
Eric Dumazet93d05d42015-11-18 06:31:03 -08006179 might_sleep();
6180 if (napi_hash_del(napi))
6181 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08006182 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006183 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006184
David Miller07d78362018-06-24 14:14:02 +09006185 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006186 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006187}
6188EXPORT_SYMBOL(netif_napi_del);
6189
Herbert Xu726ce702014-12-21 07:16:21 +11006190static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6191{
6192 void *have;
6193 int work, weight;
6194
6195 list_del_init(&n->poll_list);
6196
6197 have = netpoll_poll_lock(n);
6198
6199 weight = n->weight;
6200
6201 /* This NAPI_STATE_SCHED test is for avoiding a race
6202 * with netpoll's poll_napi(). Only the entity which
6203 * obtains the lock and sees NAPI_STATE_SCHED set will
6204 * actually make the ->poll() call. Therefore we avoid
6205 * accidentally calling ->poll() when NAPI is not scheduled.
6206 */
6207 work = 0;
6208 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6209 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006210 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006211 }
6212
6213 WARN_ON_ONCE(work > weight);
6214
6215 if (likely(work < weight))
6216 goto out_unlock;
6217
6218 /* Drivers must not modify the NAPI state if they
6219 * consume the entire weight. In such cases this code
6220 * still "owns" the NAPI instance and therefore can
6221 * move the instance around on the list at-will.
6222 */
6223 if (unlikely(napi_disable_pending(n))) {
6224 napi_complete(n);
6225 goto out_unlock;
6226 }
6227
Li RongQingd9f37d02018-07-13 14:41:36 +08006228 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006229 /* flush too old packets
6230 * If HZ < 1000, flush all packets.
6231 */
6232 napi_gro_flush(n, HZ >= 1000);
6233 }
6234
Herbert Xu001ce542014-12-21 07:16:22 +11006235 /* Some drivers may have called napi_schedule
6236 * prior to exhausting their budget.
6237 */
6238 if (unlikely(!list_empty(&n->poll_list))) {
6239 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6240 n->dev ? n->dev->name : "backlog");
6241 goto out_unlock;
6242 }
6243
Herbert Xu726ce702014-12-21 07:16:21 +11006244 list_add_tail(&n->poll_list, repoll);
6245
6246out_unlock:
6247 netpoll_poll_unlock(have);
6248
6249 return work;
6250}
6251
Emese Revfy0766f782016-06-20 20:42:34 +02006252static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006254 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006255 unsigned long time_limit = jiffies +
6256 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006257 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006258 LIST_HEAD(list);
6259 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006260
Linus Torvalds1da177e2005-04-16 15:20:36 -07006261 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006262 list_splice_init(&sd->poll_list, &list);
6263 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006264
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006265 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006266 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006267
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006268 if (list_empty(&list)) {
6269 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006270 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006271 break;
6272 }
6273
Herbert Xu6bd373e2014-12-21 07:16:24 +11006274 n = list_first_entry(&list, struct napi_struct, poll_list);
6275 budget -= napi_poll(n, &repoll);
6276
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006277 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006278 * Allow this to run for 2 jiffies since which will allow
6279 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006280 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006281 if (unlikely(budget <= 0 ||
6282 time_after_eq(jiffies, time_limit))) {
6283 sd->time_squeeze++;
6284 break;
6285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006287
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006288 local_irq_disable();
6289
6290 list_splice_tail_init(&sd->poll_list, &list);
6291 list_splice_tail(&repoll, &list);
6292 list_splice(&list, &sd->poll_list);
6293 if (!list_empty(&sd->poll_list))
6294 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6295
Eric Dumazete326bed2010-04-22 00:22:45 -07006296 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006297out:
6298 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299}
6300
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006301struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006302 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006303
6304 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006305 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006306
Veaceslav Falico5d261912013-08-28 23:25:05 +02006307 /* counter for the number of times this device was added to us */
6308 u16 ref_nr;
6309
Veaceslav Falico402dae92013-09-25 09:20:09 +02006310 /* private field for the users */
6311 void *private;
6312
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006313 struct list_head list;
6314 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006315};
6316
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006317static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006318 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006319{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006320 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006321
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006322 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006323 if (adj->dev == adj_dev)
6324 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006325 }
6326 return NULL;
6327}
6328
David Ahernf1170fd2016-10-17 19:15:51 -07006329static int __netdev_has_upper_dev(struct net_device *upper_dev, void *data)
6330{
6331 struct net_device *dev = data;
6332
6333 return upper_dev == dev;
6334}
6335
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006336/**
6337 * netdev_has_upper_dev - Check if device is linked to an upper device
6338 * @dev: device
6339 * @upper_dev: upper device to check
6340 *
6341 * Find out if a device is linked to specified upper device and return true
6342 * in case it is. Note that this checks only immediate upper device,
6343 * not through a complete stack of devices. The caller must hold the RTNL lock.
6344 */
6345bool netdev_has_upper_dev(struct net_device *dev,
6346 struct net_device *upper_dev)
6347{
6348 ASSERT_RTNL();
6349
David Ahernf1170fd2016-10-17 19:15:51 -07006350 return netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6351 upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006352}
6353EXPORT_SYMBOL(netdev_has_upper_dev);
6354
6355/**
David Ahern1a3f0602016-10-17 19:15:44 -07006356 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6357 * @dev: device
6358 * @upper_dev: upper device to check
6359 *
6360 * Find out if a device is linked to specified upper device and return true
6361 * in case it is. Note that this checks the entire upper device chain.
6362 * The caller must hold rcu lock.
6363 */
6364
David Ahern1a3f0602016-10-17 19:15:44 -07006365bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6366 struct net_device *upper_dev)
6367{
6368 return !!netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6369 upper_dev);
6370}
6371EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6372
6373/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006374 * netdev_has_any_upper_dev - Check if device is linked to some device
6375 * @dev: device
6376 *
6377 * Find out if a device is linked to an upper device and return true in case
6378 * it is. The caller must hold the RTNL lock.
6379 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006380bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006381{
6382 ASSERT_RTNL();
6383
David Ahernf1170fd2016-10-17 19:15:51 -07006384 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006385}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006386EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006387
6388/**
6389 * netdev_master_upper_dev_get - Get master upper device
6390 * @dev: device
6391 *
6392 * Find a master upper device and return pointer to it or NULL in case
6393 * it's not there. The caller must hold the RTNL lock.
6394 */
6395struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6396{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006397 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006398
6399 ASSERT_RTNL();
6400
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006401 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006402 return NULL;
6403
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006404 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006405 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006406 if (likely(upper->master))
6407 return upper->dev;
6408 return NULL;
6409}
6410EXPORT_SYMBOL(netdev_master_upper_dev_get);
6411
David Ahern0f524a82016-10-17 19:15:52 -07006412/**
6413 * netdev_has_any_lower_dev - Check if device is linked to some device
6414 * @dev: device
6415 *
6416 * Find out if a device is linked to a lower device and return true in case
6417 * it is. The caller must hold the RTNL lock.
6418 */
6419static bool netdev_has_any_lower_dev(struct net_device *dev)
6420{
6421 ASSERT_RTNL();
6422
6423 return !list_empty(&dev->adj_list.lower);
6424}
6425
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02006426void *netdev_adjacent_get_private(struct list_head *adj_list)
6427{
6428 struct netdev_adjacent *adj;
6429
6430 adj = list_entry(adj_list, struct netdev_adjacent, list);
6431
6432 return adj->private;
6433}
6434EXPORT_SYMBOL(netdev_adjacent_get_private);
6435
Veaceslav Falico31088a12013-09-25 09:20:12 +02006436/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04006437 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
6438 * @dev: device
6439 * @iter: list_head ** of the current position
6440 *
6441 * Gets the next device from the dev's upper list, starting from iter
6442 * position. The caller must hold RCU read lock.
6443 */
6444struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
6445 struct list_head **iter)
6446{
6447 struct netdev_adjacent *upper;
6448
6449 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6450
6451 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6452
6453 if (&upper->list == &dev->adj_list.upper)
6454 return NULL;
6455
6456 *iter = &upper->list;
6457
6458 return upper->dev;
6459}
6460EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
6461
David Ahern1a3f0602016-10-17 19:15:44 -07006462static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
6463 struct list_head **iter)
6464{
6465 struct netdev_adjacent *upper;
6466
6467 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6468
6469 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6470
6471 if (&upper->list == &dev->adj_list.upper)
6472 return NULL;
6473
6474 *iter = &upper->list;
6475
6476 return upper->dev;
6477}
6478
6479int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
6480 int (*fn)(struct net_device *dev,
6481 void *data),
6482 void *data)
6483{
6484 struct net_device *udev;
6485 struct list_head *iter;
6486 int ret;
6487
6488 for (iter = &dev->adj_list.upper,
6489 udev = netdev_next_upper_dev_rcu(dev, &iter);
6490 udev;
6491 udev = netdev_next_upper_dev_rcu(dev, &iter)) {
6492 /* first is the upper device itself */
6493 ret = fn(udev, data);
6494 if (ret)
6495 return ret;
6496
6497 /* then look at all of its upper devices */
6498 ret = netdev_walk_all_upper_dev_rcu(udev, fn, data);
6499 if (ret)
6500 return ret;
6501 }
6502
6503 return 0;
6504}
6505EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
6506
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006507/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02006508 * netdev_lower_get_next_private - Get the next ->private from the
6509 * lower neighbour list
6510 * @dev: device
6511 * @iter: list_head ** of the current position
6512 *
6513 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6514 * list, starting from iter position. The caller must hold either hold the
6515 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006516 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02006517 */
6518void *netdev_lower_get_next_private(struct net_device *dev,
6519 struct list_head **iter)
6520{
6521 struct netdev_adjacent *lower;
6522
6523 lower = list_entry(*iter, struct netdev_adjacent, list);
6524
6525 if (&lower->list == &dev->adj_list.lower)
6526 return NULL;
6527
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006528 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006529
6530 return lower->private;
6531}
6532EXPORT_SYMBOL(netdev_lower_get_next_private);
6533
6534/**
6535 * netdev_lower_get_next_private_rcu - Get the next ->private from the
6536 * lower neighbour list, RCU
6537 * variant
6538 * @dev: device
6539 * @iter: list_head ** of the current position
6540 *
6541 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6542 * list, starting from iter position. The caller must hold RCU read lock.
6543 */
6544void *netdev_lower_get_next_private_rcu(struct net_device *dev,
6545 struct list_head **iter)
6546{
6547 struct netdev_adjacent *lower;
6548
6549 WARN_ON_ONCE(!rcu_read_lock_held());
6550
6551 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6552
6553 if (&lower->list == &dev->adj_list.lower)
6554 return NULL;
6555
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006556 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006557
6558 return lower->private;
6559}
6560EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
6561
6562/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006563 * netdev_lower_get_next - Get the next device from the lower neighbour
6564 * list
6565 * @dev: device
6566 * @iter: list_head ** of the current position
6567 *
6568 * Gets the next netdev_adjacent from the dev's lower neighbour
6569 * list, starting from iter position. The caller must hold RTNL lock or
6570 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006571 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006572 */
6573void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
6574{
6575 struct netdev_adjacent *lower;
6576
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006577 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006578
6579 if (&lower->list == &dev->adj_list.lower)
6580 return NULL;
6581
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006582 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006583
6584 return lower->dev;
6585}
6586EXPORT_SYMBOL(netdev_lower_get_next);
6587
David Ahern1a3f0602016-10-17 19:15:44 -07006588static struct net_device *netdev_next_lower_dev(struct net_device *dev,
6589 struct list_head **iter)
6590{
6591 struct netdev_adjacent *lower;
6592
David Ahern46b5ab12016-10-26 13:21:33 -07006593 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07006594
6595 if (&lower->list == &dev->adj_list.lower)
6596 return NULL;
6597
David Ahern46b5ab12016-10-26 13:21:33 -07006598 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07006599
6600 return lower->dev;
6601}
6602
6603int netdev_walk_all_lower_dev(struct net_device *dev,
6604 int (*fn)(struct net_device *dev,
6605 void *data),
6606 void *data)
6607{
6608 struct net_device *ldev;
6609 struct list_head *iter;
6610 int ret;
6611
6612 for (iter = &dev->adj_list.lower,
6613 ldev = netdev_next_lower_dev(dev, &iter);
6614 ldev;
6615 ldev = netdev_next_lower_dev(dev, &iter)) {
6616 /* first is the lower device itself */
6617 ret = fn(ldev, data);
6618 if (ret)
6619 return ret;
6620
6621 /* then look at all of its lower devices */
6622 ret = netdev_walk_all_lower_dev(ldev, fn, data);
6623 if (ret)
6624 return ret;
6625 }
6626
6627 return 0;
6628}
6629EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
6630
David Ahern1a3f0602016-10-17 19:15:44 -07006631static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
6632 struct list_head **iter)
6633{
6634 struct netdev_adjacent *lower;
6635
6636 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6637 if (&lower->list == &dev->adj_list.lower)
6638 return NULL;
6639
6640 *iter = &lower->list;
6641
6642 return lower->dev;
6643}
6644
6645int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
6646 int (*fn)(struct net_device *dev,
6647 void *data),
6648 void *data)
6649{
6650 struct net_device *ldev;
6651 struct list_head *iter;
6652 int ret;
6653
6654 for (iter = &dev->adj_list.lower,
6655 ldev = netdev_next_lower_dev_rcu(dev, &iter);
6656 ldev;
6657 ldev = netdev_next_lower_dev_rcu(dev, &iter)) {
6658 /* first is the lower device itself */
6659 ret = fn(ldev, data);
6660 if (ret)
6661 return ret;
6662
6663 /* then look at all of its lower devices */
6664 ret = netdev_walk_all_lower_dev_rcu(ldev, fn, data);
6665 if (ret)
6666 return ret;
6667 }
6668
6669 return 0;
6670}
6671EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
6672
Jiri Pirko7ce856a2016-07-04 08:23:12 +02006673/**
dingtianhonge001bfa2013-12-13 10:19:55 +08006674 * netdev_lower_get_first_private_rcu - Get the first ->private from the
6675 * lower neighbour list, RCU
6676 * variant
6677 * @dev: device
6678 *
6679 * Gets the first netdev_adjacent->private from the dev's lower neighbour
6680 * list. The caller must hold RCU read lock.
6681 */
6682void *netdev_lower_get_first_private_rcu(struct net_device *dev)
6683{
6684 struct netdev_adjacent *lower;
6685
6686 lower = list_first_or_null_rcu(&dev->adj_list.lower,
6687 struct netdev_adjacent, list);
6688 if (lower)
6689 return lower->private;
6690 return NULL;
6691}
6692EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
6693
6694/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006695 * netdev_master_upper_dev_get_rcu - Get master upper device
6696 * @dev: device
6697 *
6698 * Find a master upper device and return pointer to it or NULL in case
6699 * it's not there. The caller must hold the RCU read lock.
6700 */
6701struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
6702{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006703 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006704
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006705 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006706 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006707 if (upper && likely(upper->master))
6708 return upper->dev;
6709 return NULL;
6710}
6711EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
6712
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306713static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006714 struct net_device *adj_dev,
6715 struct list_head *dev_list)
6716{
6717 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006718
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006719 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6720 "upper_%s" : "lower_%s", adj_dev->name);
6721 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
6722 linkname);
6723}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306724static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006725 char *name,
6726 struct list_head *dev_list)
6727{
6728 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006729
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006730 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6731 "upper_%s" : "lower_%s", name);
6732 sysfs_remove_link(&(dev->dev.kobj), linkname);
6733}
6734
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006735static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
6736 struct net_device *adj_dev,
6737 struct list_head *dev_list)
6738{
6739 return (dev_list == &dev->adj_list.upper ||
6740 dev_list == &dev->adj_list.lower) &&
6741 net_eq(dev_net(dev), dev_net(adj_dev));
6742}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006743
Veaceslav Falico5d261912013-08-28 23:25:05 +02006744static int __netdev_adjacent_dev_insert(struct net_device *dev,
6745 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02006746 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006747 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006748{
6749 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006750 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006751
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006752 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006753
6754 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07006755 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07006756 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
6757 dev->name, adj_dev->name, adj->ref_nr);
6758
Veaceslav Falico5d261912013-08-28 23:25:05 +02006759 return 0;
6760 }
6761
6762 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
6763 if (!adj)
6764 return -ENOMEM;
6765
6766 adj->dev = adj_dev;
6767 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07006768 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006769 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006770 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006771
David Ahern67b62f92016-10-17 19:15:53 -07006772 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
6773 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006774
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006775 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006776 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006777 if (ret)
6778 goto free_adj;
6779 }
6780
Veaceslav Falico7863c052013-09-25 09:20:06 +02006781 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006782 if (master) {
6783 ret = sysfs_create_link(&(dev->dev.kobj),
6784 &(adj_dev->dev.kobj), "master");
6785 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02006786 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006787
Veaceslav Falico7863c052013-09-25 09:20:06 +02006788 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006789 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02006790 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006791 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006792
6793 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006794
Veaceslav Falico5831d662013-09-25 09:20:32 +02006795remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006796 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006797 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006798free_adj:
6799 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02006800 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006801
6802 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006803}
6804
stephen hemminger1d143d92013-12-29 14:01:29 -08006805static void __netdev_adjacent_dev_remove(struct net_device *dev,
6806 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006807 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006808 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006809{
6810 struct netdev_adjacent *adj;
6811
David Ahern67b62f92016-10-17 19:15:53 -07006812 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
6813 dev->name, adj_dev->name, ref_nr);
6814
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006815 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006816
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006817 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07006818 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006819 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07006820 WARN_ON(1);
6821 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006822 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006823
Andrew Collins93409032016-10-03 13:43:02 -06006824 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07006825 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
6826 dev->name, adj_dev->name, ref_nr,
6827 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06006828 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006829 return;
6830 }
6831
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006832 if (adj->master)
6833 sysfs_remove_link(&(dev->dev.kobj), "master");
6834
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006835 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006836 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006837
Veaceslav Falico5d261912013-08-28 23:25:05 +02006838 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07006839 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006840 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006841 dev_put(adj_dev);
6842 kfree_rcu(adj, rcu);
6843}
6844
stephen hemminger1d143d92013-12-29 14:01:29 -08006845static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
6846 struct net_device *upper_dev,
6847 struct list_head *up_list,
6848 struct list_head *down_list,
6849 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006850{
6851 int ret;
6852
David Ahern790510d2016-10-17 19:15:43 -07006853 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06006854 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006855 if (ret)
6856 return ret;
6857
David Ahern790510d2016-10-17 19:15:43 -07006858 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06006859 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006860 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07006861 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006862 return ret;
6863 }
6864
6865 return 0;
6866}
6867
stephen hemminger1d143d92013-12-29 14:01:29 -08006868static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
6869 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006870 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006871 struct list_head *up_list,
6872 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006873{
Andrew Collins93409032016-10-03 13:43:02 -06006874 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
6875 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006876}
6877
stephen hemminger1d143d92013-12-29 14:01:29 -08006878static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
6879 struct net_device *upper_dev,
6880 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006881{
David Ahernf1170fd2016-10-17 19:15:51 -07006882 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
6883 &dev->adj_list.upper,
6884 &upper_dev->adj_list.lower,
6885 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006886}
6887
stephen hemminger1d143d92013-12-29 14:01:29 -08006888static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
6889 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006890{
Andrew Collins93409032016-10-03 13:43:02 -06006891 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006892 &dev->adj_list.upper,
6893 &upper_dev->adj_list.lower);
6894}
Veaceslav Falico5d261912013-08-28 23:25:05 +02006895
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006896static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006897 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07006898 void *upper_priv, void *upper_info,
6899 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006900{
David Ahern51d0c0472017-10-04 17:48:45 -07006901 struct netdev_notifier_changeupper_info changeupper_info = {
6902 .info = {
6903 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07006904 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07006905 },
6906 .upper_dev = upper_dev,
6907 .master = master,
6908 .linking = true,
6909 .upper_info = upper_info,
6910 };
Mike Manning50d629e2018-02-26 23:49:30 +00006911 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006912 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006913
6914 ASSERT_RTNL();
6915
6916 if (dev == upper_dev)
6917 return -EBUSY;
6918
6919 /* To prevent loops, check if dev is not upper device to upper_dev. */
David Ahernf1170fd2016-10-17 19:15:51 -07006920 if (netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006921 return -EBUSY;
6922
Mike Manning50d629e2018-02-26 23:49:30 +00006923 if (!master) {
6924 if (netdev_has_upper_dev(dev, upper_dev))
6925 return -EEXIST;
6926 } else {
6927 master_dev = netdev_master_upper_dev_get(dev);
6928 if (master_dev)
6929 return master_dev == upper_dev ? -EEXIST : -EBUSY;
6930 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006931
David Ahern51d0c0472017-10-04 17:48:45 -07006932 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006933 &changeupper_info.info);
6934 ret = notifier_to_errno(ret);
6935 if (ret)
6936 return ret;
6937
Jiri Pirko6dffb042015-12-03 12:12:10 +01006938 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006939 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006940 if (ret)
6941 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006942
David Ahern51d0c0472017-10-04 17:48:45 -07006943 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01006944 &changeupper_info.info);
6945 ret = notifier_to_errno(ret);
6946 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07006947 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01006948
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006949 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006950
David Ahernf1170fd2016-10-17 19:15:51 -07006951rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006952 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006953
6954 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006955}
6956
6957/**
6958 * netdev_upper_dev_link - Add a link to the upper device
6959 * @dev: device
6960 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08006961 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006962 *
6963 * Adds a link to device which is upper to this one. The caller must hold
6964 * the RTNL lock. On a failure a negative errno code is returned.
6965 * On success the reference counts are adjusted and the function
6966 * returns zero.
6967 */
6968int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07006969 struct net_device *upper_dev,
6970 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006971{
David Ahern42ab19e2017-10-04 17:48:47 -07006972 return __netdev_upper_dev_link(dev, upper_dev, false,
6973 NULL, NULL, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006974}
6975EXPORT_SYMBOL(netdev_upper_dev_link);
6976
6977/**
6978 * netdev_master_upper_dev_link - Add a master link to the upper device
6979 * @dev: device
6980 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01006981 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006982 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08006983 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006984 *
6985 * Adds a link to device which is upper to this one. In this case, only
6986 * one master upper device can be linked, although other non-master devices
6987 * might be linked as well. The caller must hold the RTNL lock.
6988 * On a failure a negative errno code is returned. On success the reference
6989 * counts are adjusted and the function returns zero.
6990 */
6991int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01006992 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07006993 void *upper_priv, void *upper_info,
6994 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006995{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006996 return __netdev_upper_dev_link(dev, upper_dev, true,
David Ahern42ab19e2017-10-04 17:48:47 -07006997 upper_priv, upper_info, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006998}
6999EXPORT_SYMBOL(netdev_master_upper_dev_link);
7000
7001/**
7002 * netdev_upper_dev_unlink - Removes a link to upper device
7003 * @dev: device
7004 * @upper_dev: new upper device
7005 *
7006 * Removes a link to device which is upper to this one. The caller must hold
7007 * the RTNL lock.
7008 */
7009void netdev_upper_dev_unlink(struct net_device *dev,
7010 struct net_device *upper_dev)
7011{
David Ahern51d0c0472017-10-04 17:48:45 -07007012 struct netdev_notifier_changeupper_info changeupper_info = {
7013 .info = {
7014 .dev = dev,
7015 },
7016 .upper_dev = upper_dev,
7017 .linking = false,
7018 };
tchardingf4563a72017-02-09 17:56:07 +11007019
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007020 ASSERT_RTNL();
7021
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007022 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007023
David Ahern51d0c0472017-10-04 17:48:45 -07007024 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007025 &changeupper_info.info);
7026
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007027 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007028
David Ahern51d0c0472017-10-04 17:48:45 -07007029 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007030 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007031}
7032EXPORT_SYMBOL(netdev_upper_dev_unlink);
7033
Moni Shoua61bd3852015-02-03 16:48:29 +02007034/**
7035 * netdev_bonding_info_change - Dispatch event about slave change
7036 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09007037 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02007038 *
7039 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
7040 * The caller must hold the RTNL lock.
7041 */
7042void netdev_bonding_info_change(struct net_device *dev,
7043 struct netdev_bonding_info *bonding_info)
7044{
David Ahern51d0c0472017-10-04 17:48:45 -07007045 struct netdev_notifier_bonding_info info = {
7046 .info.dev = dev,
7047 };
Moni Shoua61bd3852015-02-03 16:48:29 +02007048
7049 memcpy(&info.bonding_info, bonding_info,
7050 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07007051 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02007052 &info.info);
7053}
7054EXPORT_SYMBOL(netdev_bonding_info_change);
7055
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007056static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007057{
7058 struct netdev_adjacent *iter;
7059
7060 struct net *net = dev_net(dev);
7061
7062 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007063 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007064 continue;
7065 netdev_adjacent_sysfs_add(iter->dev, dev,
7066 &iter->dev->adj_list.lower);
7067 netdev_adjacent_sysfs_add(dev, iter->dev,
7068 &dev->adj_list.upper);
7069 }
7070
7071 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007072 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007073 continue;
7074 netdev_adjacent_sysfs_add(iter->dev, dev,
7075 &iter->dev->adj_list.upper);
7076 netdev_adjacent_sysfs_add(dev, iter->dev,
7077 &dev->adj_list.lower);
7078 }
7079}
7080
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007081static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007082{
7083 struct netdev_adjacent *iter;
7084
7085 struct net *net = dev_net(dev);
7086
7087 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007088 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007089 continue;
7090 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7091 &iter->dev->adj_list.lower);
7092 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7093 &dev->adj_list.upper);
7094 }
7095
7096 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007097 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007098 continue;
7099 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7100 &iter->dev->adj_list.upper);
7101 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7102 &dev->adj_list.lower);
7103 }
7104}
7105
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007106void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02007107{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007108 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007109
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007110 struct net *net = dev_net(dev);
7111
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007112 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007113 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007114 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007115 netdev_adjacent_sysfs_del(iter->dev, oldname,
7116 &iter->dev->adj_list.lower);
7117 netdev_adjacent_sysfs_add(iter->dev, dev,
7118 &iter->dev->adj_list.lower);
7119 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007120
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007121 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007122 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007123 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007124 netdev_adjacent_sysfs_del(iter->dev, oldname,
7125 &iter->dev->adj_list.upper);
7126 netdev_adjacent_sysfs_add(iter->dev, dev,
7127 &iter->dev->adj_list.upper);
7128 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007129}
Veaceslav Falico402dae92013-09-25 09:20:09 +02007130
7131void *netdev_lower_dev_get_private(struct net_device *dev,
7132 struct net_device *lower_dev)
7133{
7134 struct netdev_adjacent *lower;
7135
7136 if (!lower_dev)
7137 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007138 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02007139 if (!lower)
7140 return NULL;
7141
7142 return lower->private;
7143}
7144EXPORT_SYMBOL(netdev_lower_dev_get_private);
7145
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007146
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007147int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007148{
7149 struct net_device *lower = NULL;
7150 struct list_head *iter;
7151 int max_nest = -1;
7152 int nest;
7153
7154 ASSERT_RTNL();
7155
7156 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007157 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007158 if (max_nest < nest)
7159 max_nest = nest;
7160 }
7161
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007162 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007163}
7164EXPORT_SYMBOL(dev_get_nest_level);
7165
Jiri Pirko04d48262015-12-03 12:12:15 +01007166/**
7167 * netdev_lower_change - Dispatch event about lower device state change
7168 * @lower_dev: device
7169 * @lower_state_info: state to dispatch
7170 *
7171 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
7172 * The caller must hold the RTNL lock.
7173 */
7174void netdev_lower_state_changed(struct net_device *lower_dev,
7175 void *lower_state_info)
7176{
David Ahern51d0c0472017-10-04 17:48:45 -07007177 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
7178 .info.dev = lower_dev,
7179 };
Jiri Pirko04d48262015-12-03 12:12:15 +01007180
7181 ASSERT_RTNL();
7182 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07007183 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01007184 &changelowerstate_info.info);
7185}
7186EXPORT_SYMBOL(netdev_lower_state_changed);
7187
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007188static void dev_change_rx_flags(struct net_device *dev, int flags)
7189{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007190 const struct net_device_ops *ops = dev->netdev_ops;
7191
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05007192 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007193 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007194}
7195
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007196static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07007197{
Eric Dumazetb536db92011-11-30 21:42:26 +00007198 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06007199 kuid_t uid;
7200 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07007201
Patrick McHardy24023452007-07-14 18:51:31 -07007202 ASSERT_RTNL();
7203
Wang Chendad9b332008-06-18 01:48:28 -07007204 dev->flags |= IFF_PROMISC;
7205 dev->promiscuity += inc;
7206 if (dev->promiscuity == 0) {
7207 /*
7208 * Avoid overflow.
7209 * If inc causes overflow, untouch promisc and return error.
7210 */
7211 if (inc < 0)
7212 dev->flags &= ~IFF_PROMISC;
7213 else {
7214 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007215 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
7216 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007217 return -EOVERFLOW;
7218 }
7219 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007220 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007221 pr_info("device %s %s promiscuous mode\n",
7222 dev->name,
7223 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11007224 if (audit_enabled) {
7225 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04007226 audit_log(audit_context(), GFP_ATOMIC,
7227 AUDIT_ANOM_PROMISCUOUS,
7228 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
7229 dev->name, (dev->flags & IFF_PROMISC),
7230 (old_flags & IFF_PROMISC),
7231 from_kuid(&init_user_ns, audit_get_loginuid(current)),
7232 from_kuid(&init_user_ns, uid),
7233 from_kgid(&init_user_ns, gid),
7234 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11007235 }
Patrick McHardy24023452007-07-14 18:51:31 -07007236
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007237 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07007238 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007239 if (notify)
7240 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07007241 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007242}
7243
Linus Torvalds1da177e2005-04-16 15:20:36 -07007244/**
7245 * dev_set_promiscuity - update promiscuity count on a device
7246 * @dev: device
7247 * @inc: modifier
7248 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07007249 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250 * remains above zero the interface remains promiscuous. Once it hits zero
7251 * the device reverts back to normal filtering operation. A negative inc
7252 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07007253 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007254 */
Wang Chendad9b332008-06-18 01:48:28 -07007255int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256{
Eric Dumazetb536db92011-11-30 21:42:26 +00007257 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07007258 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007259
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007260 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07007261 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07007262 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07007263 if (dev->flags != old_flags)
7264 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07007265 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007267EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007269static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007270{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007271 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272
Patrick McHardy24023452007-07-14 18:51:31 -07007273 ASSERT_RTNL();
7274
Linus Torvalds1da177e2005-04-16 15:20:36 -07007275 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07007276 dev->allmulti += inc;
7277 if (dev->allmulti == 0) {
7278 /*
7279 * Avoid overflow.
7280 * If inc causes overflow, untouch allmulti and return error.
7281 */
7282 if (inc < 0)
7283 dev->flags &= ~IFF_ALLMULTI;
7284 else {
7285 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007286 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
7287 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007288 return -EOVERFLOW;
7289 }
7290 }
Patrick McHardy24023452007-07-14 18:51:31 -07007291 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007292 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07007293 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007294 if (notify)
7295 __dev_notify_flags(dev, old_flags,
7296 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07007297 }
Wang Chendad9b332008-06-18 01:48:28 -07007298 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007299}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007300
7301/**
7302 * dev_set_allmulti - update allmulti count on a device
7303 * @dev: device
7304 * @inc: modifier
7305 *
7306 * Add or remove reception of all multicast frames to a device. While the
7307 * count in the device remains above zero the interface remains listening
7308 * to all interfaces. Once it hits zero the device reverts back to normal
7309 * filtering operation. A negative @inc value is used to drop the counter
7310 * when releasing a resource needing all multicasts.
7311 * Return 0 if successful or a negative errno code on error.
7312 */
7313
7314int dev_set_allmulti(struct net_device *dev, int inc)
7315{
7316 return __dev_set_allmulti(dev, inc, true);
7317}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007318EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07007319
7320/*
7321 * Upload unicast and multicast address lists to device and
7322 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08007323 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07007324 * are present.
7325 */
7326void __dev_set_rx_mode(struct net_device *dev)
7327{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007328 const struct net_device_ops *ops = dev->netdev_ops;
7329
Patrick McHardy4417da62007-06-27 01:28:10 -07007330 /* dev_open will call this function so the list will stay sane. */
7331 if (!(dev->flags&IFF_UP))
7332 return;
7333
7334 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09007335 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07007336
Jiri Pirko01789342011-08-16 06:29:00 +00007337 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07007338 /* Unicast addresses changes may only happen under the rtnl,
7339 * therefore calling __dev_set_promiscuity here is safe.
7340 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007341 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007342 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007343 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007344 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007345 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007346 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07007347 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007348 }
Jiri Pirko01789342011-08-16 06:29:00 +00007349
7350 if (ops->ndo_set_rx_mode)
7351 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007352}
7353
7354void dev_set_rx_mode(struct net_device *dev)
7355{
David S. Millerb9e40852008-07-15 00:15:08 -07007356 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007357 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07007358 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359}
7360
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007361/**
7362 * dev_get_flags - get flags reported to userspace
7363 * @dev: device
7364 *
7365 * Get the combination of flag bits exported through APIs to userspace.
7366 */
Eric Dumazet95c96172012-04-15 05:58:06 +00007367unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007368{
Eric Dumazet95c96172012-04-15 05:58:06 +00007369 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370
7371 flags = (dev->flags & ~(IFF_PROMISC |
7372 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08007373 IFF_RUNNING |
7374 IFF_LOWER_UP |
7375 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007376 (dev->gflags & (IFF_PROMISC |
7377 IFF_ALLMULTI));
7378
Stefan Rompfb00055a2006-03-20 17:09:11 -08007379 if (netif_running(dev)) {
7380 if (netif_oper_up(dev))
7381 flags |= IFF_RUNNING;
7382 if (netif_carrier_ok(dev))
7383 flags |= IFF_LOWER_UP;
7384 if (netif_dormant(dev))
7385 flags |= IFF_DORMANT;
7386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007387
7388 return flags;
7389}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007390EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007391
Patrick McHardybd380812010-02-26 06:34:53 +00007392int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007393{
Eric Dumazetb536db92011-11-30 21:42:26 +00007394 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00007395 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396
Patrick McHardy24023452007-07-14 18:51:31 -07007397 ASSERT_RTNL();
7398
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399 /*
7400 * Set the flags on our device.
7401 */
7402
7403 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
7404 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
7405 IFF_AUTOMEDIA)) |
7406 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
7407 IFF_ALLMULTI));
7408
7409 /*
7410 * Load in the correct multicast list now the flags have changed.
7411 */
7412
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007413 if ((old_flags ^ flags) & IFF_MULTICAST)
7414 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07007415
Patrick McHardy4417da62007-06-27 01:28:10 -07007416 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417
7418 /*
7419 * Have we downed the interface. We handle IFF_UP ourselves
7420 * according to user attempts to set it, rather than blindly
7421 * setting it.
7422 */
7423
7424 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07007425 if ((old_flags ^ flags) & IFF_UP) {
7426 if (old_flags & IFF_UP)
7427 __dev_close(dev);
7428 else
7429 ret = __dev_open(dev);
7430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431
Linus Torvalds1da177e2005-04-16 15:20:36 -07007432 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007433 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007434 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007435
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007437
7438 if (__dev_set_promiscuity(dev, inc, false) >= 0)
7439 if (dev->flags != old_flags)
7440 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441 }
7442
7443 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11007444 * is important. Some (broken) drivers set IFF_PROMISC, when
7445 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446 */
7447 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007448 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
7449
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007451 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007452 }
7453
Patrick McHardybd380812010-02-26 06:34:53 +00007454 return ret;
7455}
7456
Nicolas Dichtela528c212013-09-25 12:02:44 +02007457void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
7458 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00007459{
7460 unsigned int changes = dev->flags ^ old_flags;
7461
Nicolas Dichtela528c212013-09-25 12:02:44 +02007462 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007463 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007464
Patrick McHardybd380812010-02-26 06:34:53 +00007465 if (changes & IFF_UP) {
7466 if (dev->flags & IFF_UP)
7467 call_netdevice_notifiers(NETDEV_UP, dev);
7468 else
7469 call_netdevice_notifiers(NETDEV_DOWN, dev);
7470 }
7471
7472 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007473 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07007474 struct netdev_notifier_change_info change_info = {
7475 .info = {
7476 .dev = dev,
7477 },
7478 .flags_changed = changes,
7479 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007480
David Ahern51d0c0472017-10-04 17:48:45 -07007481 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007482 }
Patrick McHardybd380812010-02-26 06:34:53 +00007483}
7484
7485/**
7486 * dev_change_flags - change device settings
7487 * @dev: device
7488 * @flags: device state flags
7489 *
7490 * Change settings on device based state flags. The flags are
7491 * in the userspace exported format.
7492 */
Eric Dumazetb536db92011-11-30 21:42:26 +00007493int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00007494{
Eric Dumazetb536db92011-11-30 21:42:26 +00007495 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007496 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00007497
7498 ret = __dev_change_flags(dev, flags);
7499 if (ret < 0)
7500 return ret;
7501
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007502 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007503 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504 return ret;
7505}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007506EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507
WANG Congf51048c2017-07-06 15:01:57 -07007508int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007509{
7510 const struct net_device_ops *ops = dev->netdev_ops;
7511
7512 if (ops->ndo_change_mtu)
7513 return ops->ndo_change_mtu(dev, new_mtu);
7514
7515 dev->mtu = new_mtu;
7516 return 0;
7517}
WANG Congf51048c2017-07-06 15:01:57 -07007518EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007519
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007520/**
7521 * dev_set_mtu - Change maximum transfer unit
7522 * @dev: device
7523 * @new_mtu: new transfer unit
7524 *
7525 * Change the maximum transfer size of the network device.
7526 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007527int dev_set_mtu(struct net_device *dev, int new_mtu)
7528{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007529 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530
7531 if (new_mtu == dev->mtu)
7532 return 0;
7533
Jarod Wilson61e84622016-10-07 22:04:33 -04007534 /* MTU must be positive, and in range */
7535 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
7536 net_err_ratelimited("%s: Invalid MTU %d requested, hw min %d\n",
7537 dev->name, new_mtu, dev->min_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007538 return -EINVAL;
Jarod Wilson61e84622016-10-07 22:04:33 -04007539 }
7540
7541 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
7542 net_err_ratelimited("%s: Invalid MTU %d requested, hw max %d\n",
Jakub Kicinskia0e65de2016-10-17 18:02:22 +01007543 dev->name, new_mtu, dev->max_mtu);
Jarod Wilson61e84622016-10-07 22:04:33 -04007544 return -EINVAL;
7545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007546
7547 if (!netif_device_present(dev))
7548 return -ENODEV;
7549
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01007550 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
7551 err = notifier_to_errno(err);
7552 if (err)
7553 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007554
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007555 orig_mtu = dev->mtu;
7556 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007558 if (!err) {
7559 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
7560 err = notifier_to_errno(err);
7561 if (err) {
7562 /* setting mtu back and notifying everyone again,
7563 * so that they have a chance to revert changes.
7564 */
7565 __dev_set_mtu(dev, orig_mtu);
7566 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
7567 }
7568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 return err;
7570}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007571EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007573/**
Cong Wang6a643dd2018-01-25 18:26:22 -08007574 * dev_change_tx_queue_len - Change TX queue length of a netdevice
7575 * @dev: device
7576 * @new_len: new tx queue length
7577 */
7578int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
7579{
7580 unsigned int orig_len = dev->tx_queue_len;
7581 int res;
7582
7583 if (new_len != (unsigned int)new_len)
7584 return -ERANGE;
7585
7586 if (new_len != orig_len) {
7587 dev->tx_queue_len = new_len;
7588 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
7589 res = notifier_to_errno(res);
7590 if (res) {
7591 netdev_err(dev,
7592 "refused to change device tx_queue_len\n");
7593 dev->tx_queue_len = orig_len;
7594 return res;
7595 }
Cong Wang48bfd552018-01-25 18:26:23 -08007596 return dev_qdisc_change_tx_queue_len(dev);
Cong Wang6a643dd2018-01-25 18:26:22 -08007597 }
7598
7599 return 0;
7600}
7601
7602/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007603 * dev_set_group - Change group this device belongs to
7604 * @dev: device
7605 * @new_group: group this device should belong to
7606 */
7607void dev_set_group(struct net_device *dev, int new_group)
7608{
7609 dev->group = new_group;
7610}
7611EXPORT_SYMBOL(dev_set_group);
7612
7613/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007614 * dev_set_mac_address - Change Media Access Control Address
7615 * @dev: device
7616 * @sa: new address
7617 *
7618 * Change the hardware (MAC) address of the device
7619 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
7621{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007622 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623 int err;
7624
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007625 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 return -EOPNOTSUPP;
7627 if (sa->sa_family != dev->type)
7628 return -EINVAL;
7629 if (!netif_device_present(dev))
7630 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007631 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00007632 if (err)
7633 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00007634 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00007635 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007636 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00007637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007638}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007639EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007641/**
7642 * dev_change_carrier - Change device carrier
7643 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00007644 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007645 *
7646 * Change device carrier
7647 */
7648int dev_change_carrier(struct net_device *dev, bool new_carrier)
7649{
7650 const struct net_device_ops *ops = dev->netdev_ops;
7651
7652 if (!ops->ndo_change_carrier)
7653 return -EOPNOTSUPP;
7654 if (!netif_device_present(dev))
7655 return -ENODEV;
7656 return ops->ndo_change_carrier(dev, new_carrier);
7657}
7658EXPORT_SYMBOL(dev_change_carrier);
7659
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02007661 * dev_get_phys_port_id - Get device physical port ID
7662 * @dev: device
7663 * @ppid: port ID
7664 *
7665 * Get device physical port ID
7666 */
7667int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007668 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02007669{
7670 const struct net_device_ops *ops = dev->netdev_ops;
7671
7672 if (!ops->ndo_get_phys_port_id)
7673 return -EOPNOTSUPP;
7674 return ops->ndo_get_phys_port_id(dev, ppid);
7675}
7676EXPORT_SYMBOL(dev_get_phys_port_id);
7677
7678/**
David Aherndb24a902015-03-17 20:23:15 -06007679 * dev_get_phys_port_name - Get device physical port name
7680 * @dev: device
7681 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00007682 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06007683 *
7684 * Get device physical port name
7685 */
7686int dev_get_phys_port_name(struct net_device *dev,
7687 char *name, size_t len)
7688{
7689 const struct net_device_ops *ops = dev->netdev_ops;
7690
7691 if (!ops->ndo_get_phys_port_name)
7692 return -EOPNOTSUPP;
7693 return ops->ndo_get_phys_port_name(dev, name, len);
7694}
7695EXPORT_SYMBOL(dev_get_phys_port_name);
7696
7697/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007698 * dev_change_proto_down - update protocol port state information
7699 * @dev: device
7700 * @proto_down: new value
7701 *
7702 * This info can be used by switch drivers to set the phys state of the
7703 * port.
7704 */
7705int dev_change_proto_down(struct net_device *dev, bool proto_down)
7706{
7707 const struct net_device_ops *ops = dev->netdev_ops;
7708
7709 if (!ops->ndo_change_proto_down)
7710 return -EOPNOTSUPP;
7711 if (!netif_device_present(dev))
7712 return -ENODEV;
7713 return ops->ndo_change_proto_down(dev, proto_down);
7714}
7715EXPORT_SYMBOL(dev_change_proto_down);
7716
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007717u32 __dev_xdp_query(struct net_device *dev, bpf_op_t bpf_op,
7718 enum bpf_netdev_command cmd)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007719{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007720 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007721
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007722 if (!bpf_op)
7723 return 0;
Martin KaFai Lau58038692017-06-15 17:29:09 -07007724
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007725 memset(&xdp, 0, sizeof(xdp));
7726 xdp.command = cmd;
7727
7728 /* Query must always succeed. */
7729 WARN_ON(bpf_op(dev, &xdp) < 0 && cmd == XDP_QUERY_PROG);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007730
Jakub Kicinski6b867582018-07-11 20:36:39 -07007731 return xdp.prog_id;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007732}
7733
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007734static int dev_xdp_install(struct net_device *dev, bpf_op_t bpf_op,
Jakub Kicinski32d60272017-06-21 18:25:03 -07007735 struct netlink_ext_ack *extack, u32 flags,
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007736 struct bpf_prog *prog)
7737{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007738 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007739
7740 memset(&xdp, 0, sizeof(xdp));
Jakub Kicinskiee5d0322017-06-21 18:25:04 -07007741 if (flags & XDP_FLAGS_HW_MODE)
7742 xdp.command = XDP_SETUP_PROG_HW;
7743 else
7744 xdp.command = XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007745 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07007746 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007747 xdp.prog = prog;
7748
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007749 return bpf_op(dev, &xdp);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007750}
7751
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007752static void dev_xdp_uninstall(struct net_device *dev)
7753{
7754 struct netdev_bpf xdp;
7755 bpf_op_t ndo_bpf;
7756
7757 /* Remove generic XDP */
7758 WARN_ON(dev_xdp_install(dev, generic_xdp_install, NULL, 0, NULL));
7759
7760 /* Remove from the driver */
7761 ndo_bpf = dev->netdev_ops->ndo_bpf;
7762 if (!ndo_bpf)
7763 return;
7764
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007765 memset(&xdp, 0, sizeof(xdp));
7766 xdp.command = XDP_QUERY_PROG;
7767 WARN_ON(ndo_bpf(dev, &xdp));
7768 if (xdp.prog_id)
7769 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
7770 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007771
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007772 /* Remove HW offload */
7773 memset(&xdp, 0, sizeof(xdp));
7774 xdp.command = XDP_QUERY_PROG_HW;
7775 if (!ndo_bpf(dev, &xdp) && xdp.prog_id)
7776 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
7777 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007778}
7779
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007780/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07007781 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
7782 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07007783 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07007784 * @fd: new program fd or negative value to clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01007785 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07007786 *
7787 * Set or clear a bpf program for a device
7788 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07007789int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
7790 int fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07007791{
7792 const struct net_device_ops *ops = dev->netdev_ops;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007793 enum bpf_netdev_command query;
Brenden Blancoa7862b42016-07-19 12:16:48 -07007794 struct bpf_prog *prog = NULL;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007795 bpf_op_t bpf_op, bpf_chk;
Brenden Blancoa7862b42016-07-19 12:16:48 -07007796 int err;
7797
Daniel Borkmann85de8572016-11-28 23:16:54 +01007798 ASSERT_RTNL();
7799
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007800 query = flags & XDP_FLAGS_HW_MODE ? XDP_QUERY_PROG_HW : XDP_QUERY_PROG;
7801
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007802 bpf_op = bpf_chk = ops->ndo_bpf;
7803 if (!bpf_op && (flags & (XDP_FLAGS_DRV_MODE | XDP_FLAGS_HW_MODE)))
Daniel Borkmann0489df92017-05-12 01:04:45 +02007804 return -EOPNOTSUPP;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007805 if (!bpf_op || (flags & XDP_FLAGS_SKB_MODE))
7806 bpf_op = generic_xdp_install;
7807 if (bpf_op == bpf_chk)
7808 bpf_chk = generic_xdp_install;
David S. Millerb5cdae32017-04-18 15:36:58 -04007809
Brenden Blancoa7862b42016-07-19 12:16:48 -07007810 if (fd >= 0) {
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007811 if (__dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG) ||
7812 __dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG_HW))
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007813 return -EEXIST;
7814 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) &&
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007815 __dev_xdp_query(dev, bpf_op, query))
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007816 return -EBUSY;
Daniel Borkmann85de8572016-11-28 23:16:54 +01007817
Jakub Kicinski288b3de2017-11-20 15:21:54 -08007818 prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
7819 bpf_op == ops->ndo_bpf);
Brenden Blancoa7862b42016-07-19 12:16:48 -07007820 if (IS_ERR(prog))
7821 return PTR_ERR(prog);
Jakub Kicinski441a3302017-11-20 15:21:55 -08007822
7823 if (!(flags & XDP_FLAGS_HW_MODE) &&
7824 bpf_prog_is_dev_bound(prog->aux)) {
7825 NL_SET_ERR_MSG(extack, "using device-bound program without HW_MODE flag is not supported");
7826 bpf_prog_put(prog);
7827 return -EINVAL;
7828 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07007829 }
7830
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007831 err = dev_xdp_install(dev, bpf_op, extack, flags, prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07007832 if (err < 0 && prog)
7833 bpf_prog_put(prog);
7834
7835 return err;
7836}
Brenden Blancoa7862b42016-07-19 12:16:48 -07007837
7838/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07007840 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841 *
7842 * Returns a suitable unique value for a new device interface
7843 * number. The caller must hold the rtnl semaphore or the
7844 * dev_base_lock to be sure it remains unique.
7845 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07007846static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00007848 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11007849
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850 for (;;) {
7851 if (++ifindex <= 0)
7852 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007853 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00007854 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855 }
7856}
7857
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08007859static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07007860DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007861
Stephen Hemminger6f05f622007-03-08 20:46:03 -08007862static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007865 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866}
7867
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007868static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007869{
Krishna Kumare93737b2009-12-08 22:26:02 +00007870 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007871 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007872
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007873 BUG_ON(dev_boot_phase);
7874 ASSERT_RTNL();
7875
Krishna Kumare93737b2009-12-08 22:26:02 +00007876 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007877 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00007878 * for initialization unwind. Remove those
7879 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007880 */
7881 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007882 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
7883 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007884
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007885 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00007886 list_del(&dev->unreg_list);
7887 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007888 }
Eric Dumazet449f4542011-05-19 12:24:16 +00007889 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007890 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00007891 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007892
Octavian Purdila44345722010-12-13 12:44:07 +00007893 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007894 list_for_each_entry(dev, head, unreg_list)
7895 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04007896 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007897
Octavian Purdila44345722010-12-13 12:44:07 +00007898 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007899 /* And unlink it from device chain. */
7900 unlist_netdevice(dev);
7901
7902 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007903 }
Eric Dumazet41852492016-08-26 12:50:39 -07007904 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007905
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007906 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007907
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007908 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007909 struct sk_buff *skb = NULL;
7910
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007911 /* Shutdown queueing discipline. */
7912 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007913
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007914 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007915
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007916 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11007917 * this device. They should clean all the things.
7918 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007919 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
7920
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007921 if (!dev->rtnl_link_ops ||
7922 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04007923 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01007924 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007925
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007926 /*
7927 * Flush the unicast and multicast chains
7928 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007929 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00007930 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007931
7932 if (dev->netdev_ops->ndo_uninit)
7933 dev->netdev_ops->ndo_uninit(dev);
7934
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007935 if (skb)
7936 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07007937
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007938 /* Notifier chain MUST detach us all upper devices. */
7939 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07007940 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007941
7942 /* Remove entries from kobject tree */
7943 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00007944#ifdef CONFIG_XPS
7945 /* Remove XPS queueing entries */
7946 netif_reset_xps_queues_gt(dev, 0);
7947#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007948 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007949
Eric W. Biederman850a5452011-10-13 22:25:23 +00007950 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007951
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00007952 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007953 dev_put(dev);
7954}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007955
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007956static void rollback_registered(struct net_device *dev)
7957{
7958 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007959
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007960 list_add(&dev->unreg_list, &single);
7961 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00007962 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007963}
7964
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007965static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
7966 struct net_device *upper, netdev_features_t features)
7967{
7968 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
7969 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007970 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007971
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007972 for_each_netdev_feature(&upper_disables, feature_bit) {
7973 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007974 if (!(upper->wanted_features & feature)
7975 && (features & feature)) {
7976 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
7977 &feature, upper->name);
7978 features &= ~feature;
7979 }
7980 }
7981
7982 return features;
7983}
7984
7985static void netdev_sync_lower_features(struct net_device *upper,
7986 struct net_device *lower, netdev_features_t features)
7987{
7988 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
7989 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007990 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007991
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007992 for_each_netdev_feature(&upper_disables, feature_bit) {
7993 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007994 if (!(features & feature) && (lower->features & feature)) {
7995 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
7996 &feature, lower->name);
7997 lower->wanted_features &= ~feature;
7998 netdev_update_features(lower);
7999
8000 if (unlikely(lower->features & feature))
8001 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
8002 &feature, lower->name);
8003 }
8004 }
8005}
8006
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008007static netdev_features_t netdev_fix_features(struct net_device *dev,
8008 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07008009{
Michał Mirosław57422dc2011-01-22 12:14:12 +00008010 /* Fix illegal checksum combinations */
8011 if ((features & NETIF_F_HW_CSUM) &&
8012 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008013 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00008014 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
8015 }
8016
Herbert Xub63365a2008-10-23 01:11:29 -07008017 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008018 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008019 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008020 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07008021 }
8022
Pravin B Shelarec5f0612013-03-07 09:28:01 +00008023 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
8024 !(features & NETIF_F_IP_CSUM)) {
8025 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
8026 features &= ~NETIF_F_TSO;
8027 features &= ~NETIF_F_TSO_ECN;
8028 }
8029
8030 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
8031 !(features & NETIF_F_IPV6_CSUM)) {
8032 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
8033 features &= ~NETIF_F_TSO6;
8034 }
8035
Alexander Duyckb1dc4972016-05-02 09:38:24 -07008036 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
8037 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
8038 features &= ~NETIF_F_TSO_MANGLEID;
8039
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00008040 /* TSO ECN requires that TSO is present as well. */
8041 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
8042 features &= ~NETIF_F_TSO_ECN;
8043
Michał Mirosław212b5732011-02-15 16:59:16 +00008044 /* Software GSO depends on SG. */
8045 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008046 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00008047 features &= ~NETIF_F_GSO;
8048 }
8049
Alexander Duyck802ab552016-04-10 21:45:03 -04008050 /* GSO partial features require GSO partial be set */
8051 if ((features & dev->gso_partial_features) &&
8052 !(features & NETIF_F_GSO_PARTIAL)) {
8053 netdev_dbg(dev,
8054 "Dropping partially supported GSO features since no GSO partial.\n");
8055 features &= ~dev->gso_partial_features;
8056 }
8057
Michael Chanfb1f5f72017-12-16 03:09:40 -05008058 if (!(features & NETIF_F_RXCSUM)) {
8059 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
8060 * successfully merged by hardware must also have the
8061 * checksum verified by hardware. If the user does not
8062 * want to enable RXCSUM, logically, we should disable GRO_HW.
8063 */
8064 if (features & NETIF_F_GRO_HW) {
8065 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
8066 features &= ~NETIF_F_GRO_HW;
8067 }
8068 }
8069
Gal Pressmande8d5ab2018-03-12 11:48:49 +02008070 /* LRO/HW-GRO features cannot be combined with RX-FCS */
8071 if (features & NETIF_F_RXFCS) {
8072 if (features & NETIF_F_LRO) {
8073 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
8074 features &= ~NETIF_F_LRO;
8075 }
8076
8077 if (features & NETIF_F_GRO_HW) {
8078 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
8079 features &= ~NETIF_F_GRO_HW;
8080 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02008081 }
8082
Herbert Xub63365a2008-10-23 01:11:29 -07008083 return features;
8084}
Herbert Xub63365a2008-10-23 01:11:29 -07008085
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008086int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00008087{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008088 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008089 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008090 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05008091 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00008092
Michał Mirosław87267482011-04-12 09:56:38 +00008093 ASSERT_RTNL();
8094
Michał Mirosław5455c692011-02-15 16:59:17 +00008095 features = netdev_get_wanted_features(dev);
8096
8097 if (dev->netdev_ops->ndo_fix_features)
8098 features = dev->netdev_ops->ndo_fix_features(dev, features);
8099
8100 /* driver might be less strict about feature dependencies */
8101 features = netdev_fix_features(dev, features);
8102
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008103 /* some features can't be enabled if they're off an an upper device */
8104 netdev_for_each_upper_dev_rcu(dev, upper, iter)
8105 features = netdev_sync_upper_features(dev, upper, features);
8106
Michał Mirosław5455c692011-02-15 16:59:17 +00008107 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05008108 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00008109
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008110 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
8111 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00008112
8113 if (dev->netdev_ops->ndo_set_features)
8114 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01008115 else
8116 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00008117
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008118 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00008119 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008120 "set_features() failed (%d); wanted %pNF, left %pNF\n",
8121 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01008122 /* return non-0 since some features might have changed and
8123 * it's better to fire a spurious notification than miss it
8124 */
8125 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008126 }
8127
Jarod Wilsone7868a82015-11-03 23:09:32 -05008128sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008129 /* some features must be disabled on lower devices when disabled
8130 * on an upper device (think: bonding master or bridge)
8131 */
8132 netdev_for_each_lower_dev(dev, lower, iter)
8133 netdev_sync_lower_features(dev, lower, features);
8134
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008135 if (!err) {
8136 netdev_features_t diff = features ^ dev->features;
8137
8138 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
8139 /* udp_tunnel_{get,drop}_rx_info both need
8140 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
8141 * device, or they won't do anything.
8142 * Thus we need to update dev->features
8143 * *before* calling udp_tunnel_get_rx_info,
8144 * but *after* calling udp_tunnel_drop_rx_info.
8145 */
8146 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
8147 dev->features = features;
8148 udp_tunnel_get_rx_info(dev);
8149 } else {
8150 udp_tunnel_drop_rx_info(dev);
8151 }
8152 }
8153
Gal Pressman9daae9b2018-03-28 17:46:54 +03008154 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
8155 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
8156 dev->features = features;
8157 err |= vlan_get_rx_ctag_filter_info(dev);
8158 } else {
8159 vlan_drop_rx_ctag_filter_info(dev);
8160 }
8161 }
8162
8163 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
8164 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
8165 dev->features = features;
8166 err |= vlan_get_rx_stag_filter_info(dev);
8167 } else {
8168 vlan_drop_rx_stag_filter_info(dev);
8169 }
8170 }
8171
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008172 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008173 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008174
Jarod Wilsone7868a82015-11-03 23:09:32 -05008175 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008176}
8177
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008178/**
8179 * netdev_update_features - recalculate device features
8180 * @dev: the device to check
8181 *
8182 * Recalculate dev->features set and send notifications if it
8183 * has changed. Should be called after driver or hardware dependent
8184 * conditions might have changed that influence the features.
8185 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008186void netdev_update_features(struct net_device *dev)
8187{
8188 if (__netdev_update_features(dev))
8189 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00008190}
8191EXPORT_SYMBOL(netdev_update_features);
8192
Linus Torvalds1da177e2005-04-16 15:20:36 -07008193/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008194 * netdev_change_features - recalculate device features
8195 * @dev: the device to check
8196 *
8197 * Recalculate dev->features set and send notifications even
8198 * if they have not changed. Should be called instead of
8199 * netdev_update_features() if also dev->vlan_features might
8200 * have changed to allow the changes to be propagated to stacked
8201 * VLAN devices.
8202 */
8203void netdev_change_features(struct net_device *dev)
8204{
8205 __netdev_update_features(dev);
8206 netdev_features_change(dev);
8207}
8208EXPORT_SYMBOL(netdev_change_features);
8209
8210/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008211 * netif_stacked_transfer_operstate - transfer operstate
8212 * @rootdev: the root or lower level device to transfer state from
8213 * @dev: the device to transfer operstate to
8214 *
8215 * Transfer operational state from root to device. This is normally
8216 * called when a stacking relationship exists between the root
8217 * device and the device(a leaf device).
8218 */
8219void netif_stacked_transfer_operstate(const struct net_device *rootdev,
8220 struct net_device *dev)
8221{
8222 if (rootdev->operstate == IF_OPER_DORMANT)
8223 netif_dormant_on(dev);
8224 else
8225 netif_dormant_off(dev);
8226
Zhang Shengju0575c862017-04-26 17:49:38 +08008227 if (netif_carrier_ok(rootdev))
8228 netif_carrier_on(dev);
8229 else
8230 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008231}
8232EXPORT_SYMBOL(netif_stacked_transfer_operstate);
8233
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008234static int netif_alloc_rx_queues(struct net_device *dev)
8235{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008236 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00008237 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05308238 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008239 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008240
Tom Herbertbd25fa72010-10-18 18:00:16 +00008241 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008242
Michal Hockodcda9b02017-07-12 14:36:45 -07008243 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008244 if (!rx)
8245 return -ENOMEM;
8246
Tom Herbertbd25fa72010-10-18 18:00:16 +00008247 dev->_rx = rx;
8248
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008249 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00008250 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008251
8252 /* XDP RX-queue setup */
8253 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
8254 if (err < 0)
8255 goto err_rxq_info;
8256 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008257 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008258
8259err_rxq_info:
8260 /* Rollback successful reg's and free other resources */
8261 while (i--)
8262 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08008263 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008264 dev->_rx = NULL;
8265 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008266}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008267
8268static void netif_free_rx_queues(struct net_device *dev)
8269{
8270 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008271
8272 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
8273 if (!dev->_rx)
8274 return;
8275
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008276 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08008277 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
8278
8279 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008280}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008281
Changli Gaoaa942102010-12-04 02:31:41 +00008282static void netdev_init_one_queue(struct net_device *dev,
8283 struct netdev_queue *queue, void *_unused)
8284{
8285 /* Initialize queue lock */
8286 spin_lock_init(&queue->_xmit_lock);
8287 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
8288 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00008289 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00008290 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00008291#ifdef CONFIG_BQL
8292 dql_init(&queue->dql, HZ);
8293#endif
Changli Gaoaa942102010-12-04 02:31:41 +00008294}
8295
Eric Dumazet60877a32013-06-20 01:15:51 -07008296static void netif_free_tx_queues(struct net_device *dev)
8297{
WANG Cong4cb28972014-06-02 15:55:22 -07008298 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07008299}
8300
Tom Herberte6484932010-10-18 18:04:39 +00008301static int netif_alloc_netdev_queues(struct net_device *dev)
8302{
8303 unsigned int count = dev->num_tx_queues;
8304 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07008305 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00008306
Eric Dumazetd3397272015-07-06 17:13:26 +02008307 if (count < 1 || count > 0xffff)
8308 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00008309
Michal Hockodcda9b02017-07-12 14:36:45 -07008310 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008311 if (!tx)
8312 return -ENOMEM;
8313
Tom Herberte6484932010-10-18 18:04:39 +00008314 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00008315
Tom Herberte6484932010-10-18 18:04:39 +00008316 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
8317 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00008318
8319 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00008320}
8321
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008322void netif_tx_stop_all_queues(struct net_device *dev)
8323{
8324 unsigned int i;
8325
8326 for (i = 0; i < dev->num_tx_queues; i++) {
8327 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11008328
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008329 netif_tx_stop_queue(txq);
8330 }
8331}
8332EXPORT_SYMBOL(netif_tx_stop_all_queues);
8333
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008334/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008335 * register_netdevice - register a network device
8336 * @dev: device to register
8337 *
8338 * Take a completed network device structure and add it to the kernel
8339 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8340 * chain. 0 is returned on success. A negative errno code is returned
8341 * on a failure to set up the device, or if the name is a duplicate.
8342 *
8343 * Callers must hold the rtnl semaphore. You may want
8344 * register_netdev() instead of this.
8345 *
8346 * BUGS:
8347 * The locking appears insufficient to guarantee two parallel registers
8348 * will not get the same name.
8349 */
8350
8351int register_netdevice(struct net_device *dev)
8352{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008353 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008354 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355
Florian Fainellie283de32018-04-30 14:20:05 -07008356 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
8357 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008358 BUG_ON(dev_boot_phase);
8359 ASSERT_RTNL();
8360
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008361 might_sleep();
8362
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363 /* When net_device's are persistent, this will be fatal. */
8364 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008365 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366
David S. Millerf1f28aa2008-07-15 00:08:33 -07008367 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07008368 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
Gao feng828de4f2012-09-13 20:58:27 +00008370 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00008371 if (ret < 0)
8372 goto out;
8373
Linus Torvalds1da177e2005-04-16 15:20:36 -07008374 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008375 if (dev->netdev_ops->ndo_init) {
8376 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008377 if (ret) {
8378 if (ret > 0)
8379 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08008380 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008381 }
8382 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008383
Patrick McHardyf6469682013-04-19 02:04:27 +00008384 if (((dev->hw_features | dev->features) &
8385 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00008386 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
8387 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
8388 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
8389 ret = -EINVAL;
8390 goto err_uninit;
8391 }
8392
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00008393 ret = -EBUSY;
8394 if (!dev->ifindex)
8395 dev->ifindex = dev_new_index(net);
8396 else if (__dev_get_by_index(net, dev->ifindex))
8397 goto err_uninit;
8398
Michał Mirosław5455c692011-02-15 16:59:17 +00008399 /* Transfer changeable features to wanted_features and enable
8400 * software offloads (GSO and GRO).
8401 */
8402 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00008403 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02008404
8405 if (dev->netdev_ops->ndo_udp_tunnel_add) {
8406 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8407 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8408 }
8409
Michał Mirosław14d12322011-02-22 16:52:28 +00008410 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008412 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00008413 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008414
Alexander Duyck7f348a62016-04-20 16:51:00 -04008415 /* If IPv4 TCP segmentation offload is supported we should also
8416 * allow the device to enable segmenting the frame with the option
8417 * of ignoring a static IP ID value. This doesn't enable the
8418 * feature itself but allows the user to enable it later.
8419 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008420 if (dev->hw_features & NETIF_F_TSO)
8421 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04008422 if (dev->vlan_features & NETIF_F_TSO)
8423 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
8424 if (dev->mpls_features & NETIF_F_TSO)
8425 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
8426 if (dev->hw_enc_features & NETIF_F_TSO)
8427 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07008428
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008429 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00008430 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008431 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00008432
Pravin B Shelaree579672013-03-07 09:28:08 +00008433 /* Make NETIF_F_SG inheritable to tunnel devices.
8434 */
Alexander Duyck802ab552016-04-10 21:45:03 -04008435 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00008436
Simon Horman0d89d202013-05-23 21:02:52 +00008437 /* Make NETIF_F_SG inheritable to MPLS.
8438 */
8439 dev->mpls_features |= NETIF_F_SG;
8440
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00008441 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
8442 ret = notifier_to_errno(ret);
8443 if (ret)
8444 goto err_uninit;
8445
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008446 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008447 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008448 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008449 dev->reg_state = NETREG_REGISTERED;
8450
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008451 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00008452
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453 /*
8454 * Default initial state at registry is that the
8455 * device is present.
8456 */
8457
8458 set_bit(__LINK_STATE_PRESENT, &dev->state);
8459
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01008460 linkwatch_init_dev(dev);
8461
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008464 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008465 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008466
Jiri Pirko948b3372013-01-08 01:38:25 +00008467 /* If the device has permanent device address, driver should
8468 * set dev_addr and also addr_assign_type should be set to
8469 * NET_ADDR_PERM (default value).
8470 */
8471 if (dev->addr_assign_type == NET_ADDR_PERM)
8472 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
8473
Linus Torvalds1da177e2005-04-16 15:20:36 -07008474 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008475 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07008476 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008477 if (ret) {
8478 rollback_registered(dev);
8479 dev->reg_state = NETREG_UNREGISTERED;
8480 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008481 /*
8482 * Prevent userspace races by waiting until the network
8483 * device is fully setup before sending notifications.
8484 */
Patrick McHardya2835762010-02-26 06:34:51 +00008485 if (!dev->rtnl_link_ops ||
8486 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008487 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488
8489out:
8490 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008491
8492err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008493 if (dev->netdev_ops->ndo_uninit)
8494 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -04008495 if (dev->priv_destructor)
8496 dev->priv_destructor(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008497 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008498}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008499EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500
8501/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008502 * init_dummy_netdev - init a dummy network device for NAPI
8503 * @dev: device to init
8504 *
8505 * This takes a network device structure and initialize the minimum
8506 * amount of fields so it can be used to schedule NAPI polls without
8507 * registering a full blown interface. This is to be used by drivers
8508 * that need to tie several hardware interfaces to a single NAPI
8509 * poll scheduler due to HW limitations.
8510 */
8511int init_dummy_netdev(struct net_device *dev)
8512{
8513 /* Clear everything. Note we don't initialize spinlocks
8514 * are they aren't supposed to be taken by any of the
8515 * NAPI code and this dummy netdev is supposed to be
8516 * only ever used for NAPI polls
8517 */
8518 memset(dev, 0, sizeof(struct net_device));
8519
8520 /* make sure we BUG if trying to hit standard
8521 * register/unregister code path
8522 */
8523 dev->reg_state = NETREG_DUMMY;
8524
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008525 /* NAPI wants this */
8526 INIT_LIST_HEAD(&dev->napi_list);
8527
8528 /* a dummy interface is started by default */
8529 set_bit(__LINK_STATE_PRESENT, &dev->state);
8530 set_bit(__LINK_STATE_START, &dev->state);
8531
Eric Dumazet29b44332010-10-11 10:22:12 +00008532 /* Note : We dont allocate pcpu_refcnt for dummy devices,
8533 * because users of this 'device' dont need to change
8534 * its refcount.
8535 */
8536
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008537 return 0;
8538}
8539EXPORT_SYMBOL_GPL(init_dummy_netdev);
8540
8541
8542/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543 * register_netdev - register a network device
8544 * @dev: device to register
8545 *
8546 * Take a completed network device structure and add it to the kernel
8547 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8548 * chain. 0 is returned on success. A negative errno code is returned
8549 * on a failure to set up the device, or if the name is a duplicate.
8550 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07008551 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552 * and expands the device name if you passed a format string to
8553 * alloc_netdev.
8554 */
8555int register_netdev(struct net_device *dev)
8556{
8557 int err;
8558
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +03008559 if (rtnl_lock_killable())
8560 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008561 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008562 rtnl_unlock();
8563 return err;
8564}
8565EXPORT_SYMBOL(register_netdev);
8566
Eric Dumazet29b44332010-10-11 10:22:12 +00008567int netdev_refcnt_read(const struct net_device *dev)
8568{
8569 int i, refcnt = 0;
8570
8571 for_each_possible_cpu(i)
8572 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
8573 return refcnt;
8574}
8575EXPORT_SYMBOL(netdev_refcnt_read);
8576
Ben Hutchings2c530402012-07-10 10:55:09 +00008577/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008578 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00008579 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008580 *
8581 * This is called when unregistering network devices.
8582 *
8583 * Any protocol or device that holds a reference should register
8584 * for netdevice notification, and cleanup and put back the
8585 * reference if they receive an UNREGISTER event.
8586 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008587 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008588 */
8589static void netdev_wait_allrefs(struct net_device *dev)
8590{
8591 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00008592 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593
Eric Dumazete014deb2009-11-17 05:59:21 +00008594 linkwatch_forget_dev(dev);
8595
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00008597 refcnt = netdev_refcnt_read(dev);
8598
8599 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008601 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008602
8603 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008604 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
Eric Dumazet748e2d92012-08-22 21:50:59 +00008606 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008607 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00008608 rtnl_lock();
8609
Linus Torvalds1da177e2005-04-16 15:20:36 -07008610 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
8611 &dev->state)) {
8612 /* We must not have linkwatch events
8613 * pending on unregister. If this
8614 * happens, we simply run the queue
8615 * unscheduled, resulting in a noop
8616 * for this device.
8617 */
8618 linkwatch_run_queue();
8619 }
8620
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008621 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008622
8623 rebroadcast_time = jiffies;
8624 }
8625
8626 msleep(250);
8627
Eric Dumazet29b44332010-10-11 10:22:12 +00008628 refcnt = netdev_refcnt_read(dev);
8629
Linus Torvalds1da177e2005-04-16 15:20:36 -07008630 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008631 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
8632 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633 warning_time = jiffies;
8634 }
8635 }
8636}
8637
8638/* The sequence is:
8639 *
8640 * rtnl_lock();
8641 * ...
8642 * register_netdevice(x1);
8643 * register_netdevice(x2);
8644 * ...
8645 * unregister_netdevice(y1);
8646 * unregister_netdevice(y2);
8647 * ...
8648 * rtnl_unlock();
8649 * free_netdev(y1);
8650 * free_netdev(y2);
8651 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07008652 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008654 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655 * without deadlocking with linkwatch via keventd.
8656 * 2) Since we run with the RTNL semaphore not held, we can sleep
8657 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07008658 *
8659 * We must not return until all unregister events added during
8660 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008661 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662void netdev_run_todo(void)
8663{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008664 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008667 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07008668
8669 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008670
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008671
8672 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00008673 if (!list_empty(&list))
8674 rcu_barrier();
8675
Linus Torvalds1da177e2005-04-16 15:20:36 -07008676 while (!list_empty(&list)) {
8677 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00008678 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679 list_del(&dev->todo_list);
8680
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008681 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008682 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008684 dump_stack();
8685 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008687
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008688 dev->reg_state = NETREG_UNREGISTERED;
8689
8690 netdev_wait_allrefs(dev);
8691
8692 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00008693 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08008694 BUG_ON(!list_empty(&dev->ptype_all));
8695 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00008696 WARN_ON(rcu_access_pointer(dev->ip_ptr));
8697 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -08008698#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -07008699 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -08008700#endif
David S. Millercf124db2017-05-08 12:52:56 -04008701 if (dev->priv_destructor)
8702 dev->priv_destructor(dev);
8703 if (dev->needs_free_netdev)
8704 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07008705
Eric W. Biederman50624c92013-09-23 21:19:49 -07008706 /* Report a network device has been unregistered */
8707 rtnl_lock();
8708 dev_net(dev)->dev_unreg_count--;
8709 __rtnl_unlock();
8710 wake_up(&netdev_unregistering_wq);
8711
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07008712 /* Free network device */
8713 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008715}
8716
Jarod Wilson92566452016-02-01 18:51:04 -05008717/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
8718 * all the same fields in the same order as net_device_stats, with only
8719 * the type differing, but rtnl_link_stats64 may have additional fields
8720 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00008721 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00008722void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
8723 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00008724{
8725#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05008726 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +02008727 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05008728 /* zero out counters that only exist in rtnl_link_stats64 */
8729 memset((char *)stats64 + sizeof(*netdev_stats), 0,
8730 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008731#else
Jarod Wilson92566452016-02-01 18:51:04 -05008732 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00008733 const unsigned long *src = (const unsigned long *)netdev_stats;
8734 u64 *dst = (u64 *)stats64;
8735
Jarod Wilson92566452016-02-01 18:51:04 -05008736 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008737 for (i = 0; i < n; i++)
8738 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05008739 /* zero out counters that only exist in rtnl_link_stats64 */
8740 memset((char *)stats64 + n * sizeof(u64), 0,
8741 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008742#endif
8743}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00008744EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00008745
Eric Dumazetd83345a2009-11-16 03:36:51 +00008746/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008747 * dev_get_stats - get network device statistics
8748 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07008749 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008750 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00008751 * Get network statistics from device. Return @storage.
8752 * The device driver may provide its own method by setting
8753 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
8754 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008755 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00008756struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
8757 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00008758{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008759 const struct net_device_ops *ops = dev->netdev_ops;
8760
Eric Dumazet28172732010-07-07 14:58:56 -07008761 if (ops->ndo_get_stats64) {
8762 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00008763 ops->ndo_get_stats64(dev, storage);
8764 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00008765 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00008766 } else {
8767 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07008768 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -07008769 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
8770 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
8771 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07008772 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07008773}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008774EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07008775
Eric Dumazet24824a02010-10-02 06:11:55 +00008776struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07008777{
Eric Dumazet24824a02010-10-02 06:11:55 +00008778 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07008779
Eric Dumazet24824a02010-10-02 06:11:55 +00008780#ifdef CONFIG_NET_CLS_ACT
8781 if (queue)
8782 return queue;
8783 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
8784 if (!queue)
8785 return NULL;
8786 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008787 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00008788 queue->qdisc_sleeping = &noop_qdisc;
8789 rcu_assign_pointer(dev->ingress_queue, queue);
8790#endif
8791 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07008792}
8793
Eric Dumazet2c60db02012-09-16 09:17:26 +00008794static const struct ethtool_ops default_ethtool_ops;
8795
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00008796void netdev_set_default_ethtool_ops(struct net_device *dev,
8797 const struct ethtool_ops *ops)
8798{
8799 if (dev->ethtool_ops == &default_ethtool_ops)
8800 dev->ethtool_ops = ops;
8801}
8802EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
8803
Eric Dumazet74d332c2013-10-30 13:10:44 -07008804void netdev_freemem(struct net_device *dev)
8805{
8806 char *addr = (char *)dev - dev->padded;
8807
WANG Cong4cb28972014-06-02 15:55:22 -07008808 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07008809}
8810
Linus Torvalds1da177e2005-04-16 15:20:36 -07008811/**
tcharding722c9a02017-02-09 17:56:04 +11008812 * alloc_netdev_mqs - allocate network device
8813 * @sizeof_priv: size of private data to allocate space for
8814 * @name: device name format string
8815 * @name_assign_type: origin of device name
8816 * @setup: callback to initialize device
8817 * @txqs: the number of TX subqueues to allocate
8818 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819 *
tcharding722c9a02017-02-09 17:56:04 +11008820 * Allocates a struct net_device with private data area for driver use
8821 * and performs basic initialization. Also allocates subqueue structs
8822 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008823 */
Tom Herbert36909ea2011-01-09 19:36:31 +00008824struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02008825 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00008826 void (*setup)(struct net_device *),
8827 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008828{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +03008830 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008831 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008832
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07008833 BUG_ON(strlen(name) >= sizeof(dev->name));
8834
Tom Herbert36909ea2011-01-09 19:36:31 +00008835 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008836 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00008837 return NULL;
8838 }
8839
Tom Herbert36909ea2011-01-09 19:36:31 +00008840 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008841 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00008842 return NULL;
8843 }
Tom Herbert36909ea2011-01-09 19:36:31 +00008844
David S. Millerfd2ea0a2008-07-17 01:56:23 -07008845 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07008846 if (sizeof_priv) {
8847 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008848 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07008849 alloc_size += sizeof_priv;
8850 }
8851 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008852 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008853
Michal Hockodcda9b02017-07-12 14:36:45 -07008854 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +00008855 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008856 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008857
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008858 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008859 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008860
Eric Dumazet29b44332010-10-11 10:22:12 +00008861 dev->pcpu_refcnt = alloc_percpu(int);
8862 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07008863 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008864
Linus Torvalds1da177e2005-04-16 15:20:36 -07008865 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00008866 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008867
Jiri Pirko22bedad32010-04-01 21:22:57 +00008868 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008869 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00008870
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09008871 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008872
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07008873 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00008874 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008875
Herbert Xud565b0a2008-12-15 23:38:52 -08008876 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00008877 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008878 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00008879 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008880 INIT_LIST_HEAD(&dev->adj_list.upper);
8881 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08008882 INIT_LIST_HEAD(&dev->ptype_all);
8883 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02008884#ifdef CONFIG_NET_SCHED
8885 hash_init(dev->qdisc_hash);
8886#endif
Eric Dumazet02875872014-10-05 18:38:35 -07008887 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008889
Phil Suttera8131042016-02-17 15:37:43 +01008890 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02008891 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +01008892 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +01008893 }
Phil Sutter906470c2015-08-18 10:30:48 +02008894
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008895 dev->num_tx_queues = txqs;
8896 dev->real_num_tx_queues = txqs;
8897 if (netif_alloc_netdev_queues(dev))
8898 goto free_all;
8899
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008900 dev->num_rx_queues = rxqs;
8901 dev->real_num_rx_queues = rxqs;
8902 if (netif_alloc_rx_queues(dev))
8903 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008904
Linus Torvalds1da177e2005-04-16 15:20:36 -07008905 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02008906 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008907 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00008908 if (!dev->ethtool_ops)
8909 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02008910
8911 nf_hook_ingress_init(dev);
8912
Linus Torvalds1da177e2005-04-16 15:20:36 -07008913 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008914
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008915free_all:
8916 free_netdev(dev);
8917 return NULL;
8918
Eric Dumazet29b44332010-10-11 10:22:12 +00008919free_pcpu:
8920 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07008921free_dev:
8922 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008923 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008924}
Tom Herbert36909ea2011-01-09 19:36:31 +00008925EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008926
8927/**
tcharding722c9a02017-02-09 17:56:04 +11008928 * free_netdev - free network device
8929 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008930 *
tcharding722c9a02017-02-09 17:56:04 +11008931 * This function does the last stage of destroying an allocated device
8932 * interface. The reference to the device object is released. If this
8933 * is the last reference then it will be freed.Must be called in process
8934 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008935 */
8936void free_netdev(struct net_device *dev)
8937{
Herbert Xud565b0a2008-12-15 23:38:52 -08008938 struct napi_struct *p, *n;
8939
Eric Dumazet93d05d42015-11-18 06:31:03 -08008940 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07008941 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008942 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -07008943
Eric Dumazet33d480c2011-08-11 19:30:52 +00008944 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00008945
Jiri Pirkof001fde2009-05-05 02:48:28 +00008946 /* Flush device addresses */
8947 dev_addr_flush(dev);
8948
Herbert Xud565b0a2008-12-15 23:38:52 -08008949 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
8950 netif_napi_del(p);
8951
Eric Dumazet29b44332010-10-11 10:22:12 +00008952 free_percpu(dev->pcpu_refcnt);
8953 dev->pcpu_refcnt = NULL;
8954
Stephen Hemminger3041a062006-05-26 13:25:24 -07008955 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008956 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07008957 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008958 return;
8959 }
8960
8961 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
8962 dev->reg_state = NETREG_RELEASED;
8963
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07008964 /* will free via device release */
8965 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008966}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008967EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008968
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008969/**
8970 * synchronize_net - Synchronize with packet receive processing
8971 *
8972 * Wait for packets currently being received to be done.
8973 * Does not block later packets from starting.
8974 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008975void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976{
8977 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00008978 if (rtnl_is_locked())
8979 synchronize_rcu_expedited();
8980 else
8981 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008982}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008983EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008984
8985/**
Eric Dumazet44a08732009-10-27 07:03:04 +00008986 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00008988 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08008989 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008990 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08008991 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00008992 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008993 *
8994 * Callers must hold the rtnl semaphore. You may want
8995 * unregister_netdev() instead of this.
8996 */
8997
Eric Dumazet44a08732009-10-27 07:03:04 +00008998void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999{
Herbert Xua6620712007-12-12 19:21:56 -08009000 ASSERT_RTNL();
9001
Eric Dumazet44a08732009-10-27 07:03:04 +00009002 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009003 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00009004 } else {
9005 rollback_registered(dev);
9006 /* Finish processing unregister after unlock */
9007 net_set_todo(dev);
9008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009009}
Eric Dumazet44a08732009-10-27 07:03:04 +00009010EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009011
9012/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009013 * unregister_netdevice_many - unregister many devices
9014 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07009015 *
9016 * Note: As most callers use a stack allocated list_head,
9017 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009018 */
9019void unregister_netdevice_many(struct list_head *head)
9020{
9021 struct net_device *dev;
9022
9023 if (!list_empty(head)) {
9024 rollback_registered_many(head);
9025 list_for_each_entry(dev, head, unreg_list)
9026 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07009027 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009028 }
9029}
Eric Dumazet63c80992009-10-27 07:06:49 +00009030EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009031
9032/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009033 * unregister_netdev - remove device from the kernel
9034 * @dev: device
9035 *
9036 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009037 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009038 *
9039 * This is just a wrapper for unregister_netdevice that takes
9040 * the rtnl semaphore. In general you want to use this and not
9041 * unregister_netdevice.
9042 */
9043void unregister_netdev(struct net_device *dev)
9044{
9045 rtnl_lock();
9046 unregister_netdevice(dev);
9047 rtnl_unlock();
9048}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009049EXPORT_SYMBOL(unregister_netdev);
9050
Eric W. Biedermance286d32007-09-12 13:53:49 +02009051/**
9052 * dev_change_net_namespace - move device to different nethost namespace
9053 * @dev: device
9054 * @net: network namespace
9055 * @pat: If not NULL name pattern to try if the current device name
9056 * is already taken in the destination network namespace.
9057 *
9058 * This function shuts down a device interface and moves it
9059 * to a new network namespace. On success 0 is returned, on
9060 * a failure a netagive errno code is returned.
9061 *
9062 * Callers must hold the rtnl semaphore.
9063 */
9064
9065int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
9066{
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009067 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009068
9069 ASSERT_RTNL();
9070
9071 /* Don't allow namespace local devices to be moved. */
9072 err = -EINVAL;
9073 if (dev->features & NETIF_F_NETNS_LOCAL)
9074 goto out;
9075
9076 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009077 if (dev->reg_state != NETREG_REGISTERED)
9078 goto out;
9079
9080 /* Get out if there is nothing todo */
9081 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09009082 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02009083 goto out;
9084
9085 /* Pick the destination device name, and ensure
9086 * we can use it in the destination network namespace.
9087 */
9088 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00009089 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009090 /* We get here if we can't use the current device name */
9091 if (!pat)
9092 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +08009093 err = dev_get_valid_name(net, dev, pat);
9094 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009095 goto out;
9096 }
9097
9098 /*
9099 * And now a mini version of register_netdevice unregister_netdevice.
9100 */
9101
9102 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07009103 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009104
9105 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009106 unlist_netdevice(dev);
9107
9108 synchronize_net();
9109
9110 /* Shutdown queueing discipline. */
9111 dev_shutdown(dev);
9112
9113 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009114 * this device. They should clean all the things.
9115 *
9116 * Note that dev->reg_state stays at NETREG_REGISTERED.
9117 * This is wanted because this way 8021q and macvlan know
9118 * the device is just moving and can keep their slaves up.
9119 */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009120 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00009121 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009122
Nicolas Dichtelc36ac8e2018-01-25 15:01:38 +01009123 new_nsid = peernet2id_alloc(dev_net(dev), net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009124 /* If there is an ifindex conflict assign a new one */
9125 if (__dev_get_by_index(net, dev->ifindex))
9126 new_ifindex = dev_new_index(net);
9127 else
9128 new_ifindex = dev->ifindex;
9129
9130 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
9131 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009132
9133 /*
9134 * Flush the unicast and multicast chains
9135 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009136 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009137 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009138
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009139 /* Send a netdev-removed uevent to the old namespace */
9140 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009141 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009142
Eric W. Biedermance286d32007-09-12 13:53:49 +02009143 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009144 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009145 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009146
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009147 /* Send a netdev-add uevent to the new namespace */
9148 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009149 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009150
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009151 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07009152 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009153 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009154
9155 /* Add the device back in the hashes */
9156 list_netdevice(dev);
9157
9158 /* Notify protocols, that a new device appeared. */
9159 call_netdevice_notifiers(NETDEV_REGISTER, dev);
9160
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009161 /*
9162 * Prevent userspace races by waiting until the network
9163 * device is fully setup before sending notifications.
9164 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07009165 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009166
Eric W. Biedermance286d32007-09-12 13:53:49 +02009167 synchronize_net();
9168 err = 0;
9169out:
9170 return err;
9171}
Johannes Berg463d0182009-07-14 00:33:35 +02009172EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009173
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009174static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175{
9176 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009177 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009178 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +05309179 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009180
Linus Torvalds1da177e2005-04-16 15:20:36 -07009181 local_irq_disable();
9182 cpu = smp_processor_id();
9183 sd = &per_cpu(softnet_data, cpu);
9184 oldsd = &per_cpu(softnet_data, oldcpu);
9185
9186 /* Find end of our completion_queue. */
9187 list_skb = &sd->completion_queue;
9188 while (*list_skb)
9189 list_skb = &(*list_skb)->next;
9190 /* Append completion queue from offline CPU. */
9191 *list_skb = oldsd->completion_queue;
9192 oldsd->completion_queue = NULL;
9193
Linus Torvalds1da177e2005-04-16 15:20:36 -07009194 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00009195 if (oldsd->output_queue) {
9196 *sd->output_queue_tailp = oldsd->output_queue;
9197 sd->output_queue_tailp = oldsd->output_queue_tailp;
9198 oldsd->output_queue = NULL;
9199 oldsd->output_queue_tailp = &oldsd->output_queue;
9200 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009201 /* Append NAPI poll list from offline CPU, with one exception :
9202 * process_backlog() must be called by cpu owning percpu backlog.
9203 * We properly handle process_queue & input_pkt_queue later.
9204 */
9205 while (!list_empty(&oldsd->poll_list)) {
9206 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
9207 struct napi_struct,
9208 poll_list);
9209
9210 list_del_init(&napi->poll_list);
9211 if (napi->poll == process_backlog)
9212 napi->state = 0;
9213 else
9214 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00009215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009216
9217 raise_softirq_irqoff(NET_TX_SOFTIRQ);
9218 local_irq_enable();
9219
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05309220#ifdef CONFIG_RPS
9221 remsd = oldsd->rps_ipi_list;
9222 oldsd->rps_ipi_list = NULL;
9223#endif
9224 /* send out pending IPI's on offline CPU */
9225 net_rps_send_ipi(remsd);
9226
Linus Torvalds1da177e2005-04-16 15:20:36 -07009227 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00009228 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009229 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009230 input_queue_head_incr(oldsd);
9231 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009232 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009233 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009234 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07009235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009236
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009238}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009239
Herbert Xu7f353bf2007-08-10 15:47:58 -07009240/**
Herbert Xub63365a2008-10-23 01:11:29 -07009241 * netdev_increment_features - increment feature set by one
9242 * @all: current feature set
9243 * @one: new feature set
9244 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07009245 *
9246 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07009247 * @one to the master device with current feature set @all. Will not
9248 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07009249 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009250netdev_features_t netdev_increment_features(netdev_features_t all,
9251 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07009252{
Tom Herbertc8cd0982015-12-14 11:19:44 -08009253 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08009254 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00009255 mask |= NETIF_F_VLAN_CHALLENGED;
9256
Tom Herberta1882222015-12-14 11:19:43 -08009257 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00009258 all &= one | ~NETIF_F_ALL_FOR_ALL;
9259
Michał Mirosław1742f182011-04-22 06:31:16 +00009260 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08009261 if (all & NETIF_F_HW_CSUM)
9262 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009263
9264 return all;
9265}
Herbert Xub63365a2008-10-23 01:11:29 -07009266EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009267
Baruch Siach430f03c2013-06-02 20:43:55 +00009268static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009269{
9270 int i;
9271 struct hlist_head *hash;
9272
Kees Cook6da2ec52018-06-12 13:55:00 -07009273 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009274 if (hash != NULL)
9275 for (i = 0; i < NETDEV_HASHENTRIES; i++)
9276 INIT_HLIST_HEAD(&hash[i]);
9277
9278 return hash;
9279}
9280
Eric W. Biederman881d9662007-09-17 11:56:21 -07009281/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07009282static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009283{
Li RongQingd9f37d02018-07-13 14:41:36 +08009284 BUILD_BUG_ON(GRO_HASH_BUCKETS >
9285 FIELD_SIZEOF(struct napi_struct, gro_bitmask));
9286
Rustad, Mark D734b6542012-07-18 09:06:07 +00009287 if (net != &init_net)
9288 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07009289
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009290 net->dev_name_head = netdev_create_hash();
9291 if (net->dev_name_head == NULL)
9292 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009293
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009294 net->dev_index_head = netdev_create_hash();
9295 if (net->dev_index_head == NULL)
9296 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009297
9298 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009299
9300err_idx:
9301 kfree(net->dev_name_head);
9302err_name:
9303 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009304}
9305
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009306/**
9307 * netdev_drivername - network driver for the device
9308 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009309 *
9310 * Determine network driver for device.
9311 */
David S. Miller3019de12011-06-06 16:41:33 -07009312const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07009313{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07009314 const struct device_driver *driver;
9315 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07009316 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07009317
9318 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009319 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07009320 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009321
9322 driver = parent->driver;
9323 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07009324 return driver->name;
9325 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009326}
9327
Joe Perches6ea754e2014-09-22 11:10:50 -07009328static void __netdev_printk(const char *level, const struct net_device *dev,
9329 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00009330{
Joe Perchesb004ff42012-09-12 20:12:19 -07009331 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009332 dev_printk_emit(level[1] - '0',
9333 dev->dev.parent,
9334 "%s %s %s%s: %pV",
9335 dev_driver_string(dev->dev.parent),
9336 dev_name(dev->dev.parent),
9337 netdev_name(dev), netdev_reg_state(dev),
9338 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009339 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009340 printk("%s%s%s: %pV",
9341 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009342 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07009343 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009344 }
Joe Perches256df2f2010-06-27 01:02:35 +00009345}
9346
Joe Perches6ea754e2014-09-22 11:10:50 -07009347void netdev_printk(const char *level, const struct net_device *dev,
9348 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00009349{
9350 struct va_format vaf;
9351 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00009352
9353 va_start(args, format);
9354
9355 vaf.fmt = format;
9356 vaf.va = &args;
9357
Joe Perches6ea754e2014-09-22 11:10:50 -07009358 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009359
Joe Perches256df2f2010-06-27 01:02:35 +00009360 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00009361}
9362EXPORT_SYMBOL(netdev_printk);
9363
9364#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07009365void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00009366{ \
Joe Perches256df2f2010-06-27 01:02:35 +00009367 struct va_format vaf; \
9368 va_list args; \
9369 \
9370 va_start(args, fmt); \
9371 \
9372 vaf.fmt = fmt; \
9373 vaf.va = &args; \
9374 \
Joe Perches6ea754e2014-09-22 11:10:50 -07009375 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07009376 \
Joe Perches256df2f2010-06-27 01:02:35 +00009377 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00009378} \
9379EXPORT_SYMBOL(func);
9380
9381define_netdev_printk_level(netdev_emerg, KERN_EMERG);
9382define_netdev_printk_level(netdev_alert, KERN_ALERT);
9383define_netdev_printk_level(netdev_crit, KERN_CRIT);
9384define_netdev_printk_level(netdev_err, KERN_ERR);
9385define_netdev_printk_level(netdev_warn, KERN_WARNING);
9386define_netdev_printk_level(netdev_notice, KERN_NOTICE);
9387define_netdev_printk_level(netdev_info, KERN_INFO);
9388
Pavel Emelyanov46650792007-10-08 20:38:39 -07009389static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009390{
9391 kfree(net->dev_name_head);
9392 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +03009393 if (net != &init_net)
9394 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -07009395}
9396
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009397static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07009398 .init = netdev_init,
9399 .exit = netdev_exit,
9400};
9401
Pavel Emelyanov46650792007-10-08 20:38:39 -07009402static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009403{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009404 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009405 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009406 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02009407 * initial network namespace
9408 */
9409 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009410 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009411 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009412 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02009413
9414 /* Ignore unmoveable devices (i.e. loopback) */
9415 if (dev->features & NETIF_F_NETNS_LOCAL)
9416 continue;
9417
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009418 /* Leave virtual devices for the generic cleanup */
9419 if (dev->rtnl_link_ops)
9420 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08009421
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009422 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009423 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
9424 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009425 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009426 pr_emerg("%s: failed to move %s to init_net: %d\n",
9427 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009428 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02009429 }
9430 }
9431 rtnl_unlock();
9432}
9433
Eric W. Biederman50624c92013-09-23 21:19:49 -07009434static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
9435{
9436 /* Return with the rtnl_lock held when there are no network
9437 * devices unregistering in any network namespace in net_list.
9438 */
9439 struct net *net;
9440 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01009441 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009442
Peter Zijlstraff960a72014-10-29 17:04:56 +01009443 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009444 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07009445 unregistering = false;
9446 rtnl_lock();
9447 list_for_each_entry(net, net_list, exit_list) {
9448 if (net->dev_unreg_count > 0) {
9449 unregistering = true;
9450 break;
9451 }
9452 }
9453 if (!unregistering)
9454 break;
9455 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01009456
9457 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009458 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01009459 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009460}
9461
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009462static void __net_exit default_device_exit_batch(struct list_head *net_list)
9463{
9464 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04009465 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009466 * Do this across as many network namespaces as possible to
9467 * improve batching efficiency.
9468 */
9469 struct net_device *dev;
9470 struct net *net;
9471 LIST_HEAD(dev_kill_list);
9472
Eric W. Biederman50624c92013-09-23 21:19:49 -07009473 /* To prevent network device cleanup code from dereferencing
9474 * loopback devices or network devices that have been freed
9475 * wait here for all pending unregistrations to complete,
9476 * before unregistring the loopback device and allowing the
9477 * network namespace be freed.
9478 *
9479 * The netdev todo list containing all network devices
9480 * unregistrations that happen in default_device_exit_batch
9481 * will run in the rtnl_unlock() at the end of
9482 * default_device_exit_batch.
9483 */
9484 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009485 list_for_each_entry(net, net_list, exit_list) {
9486 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02009487 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009488 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
9489 else
9490 unregister_netdevice_queue(dev, &dev_kill_list);
9491 }
9492 }
9493 unregister_netdevice_many(&dev_kill_list);
9494 rtnl_unlock();
9495}
9496
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009497static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009498 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009499 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02009500};
9501
Linus Torvalds1da177e2005-04-16 15:20:36 -07009502/*
9503 * Initialize the DEV module. At boot time this walks the device list and
9504 * unhooks any devices that fail to initialise (normally hardware not
9505 * present) and leaves us with a valid list of present and active devices.
9506 *
9507 */
9508
9509/*
9510 * This is called single threaded during boot, so no need
9511 * to take the rtnl semaphore.
9512 */
9513static int __init net_dev_init(void)
9514{
9515 int i, rc = -ENOMEM;
9516
9517 BUG_ON(!dev_boot_phase);
9518
Linus Torvalds1da177e2005-04-16 15:20:36 -07009519 if (dev_proc_init())
9520 goto out;
9521
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009522 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07009523 goto out;
9524
9525 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08009526 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009527 INIT_LIST_HEAD(&ptype_base[i]);
9528
Vlad Yasevich62532da2012-11-15 08:49:10 +00009529 INIT_LIST_HEAD(&offload_base);
9530
Eric W. Biederman881d9662007-09-17 11:56:21 -07009531 if (register_pernet_subsys(&netdev_net_ops))
9532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009533
9534 /*
9535 * Initialise the packet receive queues.
9536 */
9537
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07009538 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07009539 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009540 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009541
Eric Dumazet41852492016-08-26 12:50:39 -07009542 INIT_WORK(flush, flush_backlog);
9543
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009544 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07009545 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +01009546#ifdef CONFIG_XFRM_OFFLOAD
9547 skb_queue_head_init(&sd->xfrm_backlog);
9548#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009549 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00009550 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00009551#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009552 sd->csd.func = rps_trigger_softirq;
9553 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009554 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07009555#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00009556
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009557 sd->backlog.poll = process_backlog;
9558 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009559 }
9560
Linus Torvalds1da177e2005-04-16 15:20:36 -07009561 dev_boot_phase = 0;
9562
Eric W. Biederman505d4f72008-11-07 22:54:20 -08009563 /* The loopback device is special if any other network devices
9564 * is present in a network namespace the loopback device must
9565 * be present. Since we now dynamically allocate and free the
9566 * loopback device ensure this invariant is maintained by
9567 * keeping the loopback device as the first device on the
9568 * list of network devices. Ensuring the loopback devices
9569 * is the first device that appears and the last network device
9570 * that disappears.
9571 */
9572 if (register_pernet_device(&loopback_net_ops))
9573 goto out;
9574
9575 if (register_pernet_device(&default_device_ops))
9576 goto out;
9577
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009578 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
9579 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009580
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009581 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
9582 NULL, dev_cpu_dead);
9583 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009584 rc = 0;
9585out:
9586 return rc;
9587}
9588
9589subsys_initcall(net_dev_init);