blob: 93243479085fb1d61031ed2136f5aee22d8f313d [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/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070097#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040098#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020099#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -0800101#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700105#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200107#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000109#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/highmem.h>
111#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#include <linux/netpoll.h>
114#include <linux/rcupdate.h>
115#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500118#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700119#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700120#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700121#include <linux/ctype.h>
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700122#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700123#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700124#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700125#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700126#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700127#include <linux/ipv6.h>
128#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700129#include <linux/jhash.h>
130#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700131#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900132#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900133#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000134#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700135#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000136#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100137#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300138#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700139#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100140#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400141#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800142#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200143#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530144#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200145#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200146#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200147#include <linux/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700149#include "net-sysfs.h"
150
Herbert Xud565b0a2008-12-15 23:38:52 -0800151#define MAX_GRO_SKBS 8
152
Herbert Xu5d38a072009-01-04 16:13:40 -0800153/* This should be increased if a protocol with a bigger head is added. */
154#define GRO_MAX_HEAD (MAX_HEADER + 128)
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000157static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000158struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
159struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000160static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000162static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700163static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700164 struct netdev_notifier_info *info);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200165static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700168 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * semaphore.
170 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800171 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 *
173 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700174 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * actual updates. This allows pure readers to access the list even
176 * while a writer is preparing to update it.
177 *
178 * To put it another way, dev_base_lock is held for writing only to
179 * protect against pure readers; the rtnl semaphore provides the
180 * protection against other writers.
181 *
182 * See, for example usages, register_netdevice() and
183 * unregister_netdevice(), which must be called with the rtnl
184 * semaphore held.
185 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187EXPORT_SYMBOL(dev_base_lock);
188
Florian Westphal6c557002017-10-02 23:50:05 +0200189static DEFINE_MUTEX(ifalias_mutex);
190
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300191/* protects napi_hash addition/deletion and napi_gen_id */
192static DEFINE_SPINLOCK(napi_hash_lock);
193
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800194static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800195static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300196
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200197static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000198
Thomas Graf4e985ad2011-06-21 03:11:20 +0000199static inline void dev_base_seq_inc(struct net *net)
200{
tcharding643aa9c2017-02-09 17:56:05 +1100201 while (++net->dev_base_seq == 0)
202 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000203}
204
Eric W. Biederman881d9662007-09-17 11:56:21 -0700205static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700207 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000208
stephen hemminger08e98972009-11-10 07:20:34 +0000209 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Eric W. Biederman881d9662007-09-17 11:56:21 -0700212static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700214 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000217static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000218{
219#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000220 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000221#endif
222}
223
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000224static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000225{
226#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000227 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000228#endif
229}
230
Eric W. Biedermance286d32007-09-12 13:53:49 +0200231/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000232static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200233{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900234 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200235
236 ASSERT_RTNL();
237
238 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800239 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000240 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000241 hlist_add_head_rcu(&dev->index_hlist,
242 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200243 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000244
245 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200246}
247
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000248/* Device list removal
249 * caller must respect a RCU grace period before freeing/reusing dev
250 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200251static void unlist_netdevice(struct net_device *dev)
252{
253 ASSERT_RTNL();
254
255 /* Unlink dev from the device chain */
256 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800257 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000258 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000259 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200260 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000261
262 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200263}
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265/*
266 * Our notifier list
267 */
268
Alan Sternf07d5b92006-05-09 15:23:03 -0700269static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271/*
272 * Device drivers call our routines to queue packets here. We empty the
273 * queue in the local softnet handler.
274 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700275
Eric Dumazet9958da02010-04-17 04:17:02 +0000276DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700277EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
David S. Millercf508b12008-07-22 14:16:42 -0700279#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700280/*
David S. Millerc773e842008-07-08 23:13:53 -0700281 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700282 * according to dev->type
283 */
tcharding643aa9c2017-02-09 17:56:05 +1100284static const unsigned short netdev_lock_type[] = {
285 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700286 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
287 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
288 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
289 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
290 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
291 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
292 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
293 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
294 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
295 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
296 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400297 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
298 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
299 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700300
tcharding643aa9c2017-02-09 17:56:05 +1100301static const char *const netdev_lock_name[] = {
302 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
303 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
304 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
305 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
306 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
307 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
308 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
309 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
310 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
311 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
312 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
313 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
314 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
315 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
316 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700317
318static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700319static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700320
321static inline unsigned short netdev_lock_pos(unsigned short dev_type)
322{
323 int i;
324
325 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
326 if (netdev_lock_type[i] == dev_type)
327 return i;
328 /* the last key is used by default */
329 return ARRAY_SIZE(netdev_lock_type) - 1;
330}
331
David S. Millercf508b12008-07-22 14:16:42 -0700332static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
333 unsigned short dev_type)
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700334{
335 int i;
336
337 i = netdev_lock_pos(dev_type);
338 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
339 netdev_lock_name[i]);
340}
David S. Millercf508b12008-07-22 14:16:42 -0700341
342static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
343{
344 int i;
345
346 i = netdev_lock_pos(dev->type);
347 lockdep_set_class_and_name(&dev->addr_list_lock,
348 &netdev_addr_lock_key[i],
349 netdev_lock_name[i]);
350}
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700351#else
David S. Millercf508b12008-07-22 14:16:42 -0700352static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
353 unsigned short dev_type)
354{
355}
356static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700357{
358}
359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100362 *
363 * Protocol management and registration routines
364 *
365 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * Add a protocol ID to the list. Now that the input handler is
370 * smarter we can dispense with all the messy stuff that used to be
371 * here.
372 *
373 * BEWARE!!! Protocol handlers, mangling input packets,
374 * MUST BE last in hash buckets and checking protocol handlers
375 * MUST start from promiscuous ptype_all chain in net_bh.
376 * It is true now, do not change it.
377 * Explanation follows: if protocol handler, mangling packet, will
378 * be the first on list, it is not able to sense, that packet
379 * is cloned and should be copied-on-write, so that it will
380 * change it and subsequent readers will get broken packet.
381 * --ANK (980803)
382 */
383
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000384static inline struct list_head *ptype_head(const struct packet_type *pt)
385{
386 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800387 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000388 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800389 return pt->dev ? &pt->dev->ptype_specific :
390 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/**
394 * dev_add_pack - add packet handler
395 * @pt: packet type declaration
396 *
397 * Add a protocol handler to the networking stack. The passed &packet_type
398 * is linked into kernel lists and may not be freed until it has been
399 * removed from the kernel lists.
400 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900401 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * guarantee all CPU's that are in middle of receiving packets
403 * will see the new packet type (until the next received packet).
404 */
405
406void dev_add_pack(struct packet_type *pt)
407{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000408 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000410 spin_lock(&ptype_lock);
411 list_add_rcu(&pt->list, head);
412 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700414EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/**
417 * __dev_remove_pack - remove packet handler
418 * @pt: packet type declaration
419 *
420 * Remove a protocol handler that was previously added to the kernel
421 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
422 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900423 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 *
425 * The packet type might still be in use by receivers
426 * and must not be freed until after all the CPU's have gone
427 * through a quiescent state.
428 */
429void __dev_remove_pack(struct packet_type *pt)
430{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000431 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct packet_type *pt1;
433
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000434 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 list_for_each_entry(pt1, head, list) {
437 if (pt == pt1) {
438 list_del_rcu(&pt->list);
439 goto out;
440 }
441 }
442
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000443 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000445 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700447EXPORT_SYMBOL(__dev_remove_pack);
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/**
450 * dev_remove_pack - remove packet handler
451 * @pt: packet type declaration
452 *
453 * Remove a protocol handler that was previously added to the kernel
454 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
455 * from the kernel lists and can be freed or reused once this function
456 * returns.
457 *
458 * This call sleeps to guarantee that no CPU is looking at the packet
459 * type after return.
460 */
461void dev_remove_pack(struct packet_type *pt)
462{
463 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 synchronize_net();
466}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700467EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Vlad Yasevich62532da2012-11-15 08:49:10 +0000469
470/**
471 * dev_add_offload - register offload handlers
472 * @po: protocol offload declaration
473 *
474 * Add protocol offload handlers to the networking stack. The passed
475 * &proto_offload is linked into kernel lists and may not be freed until
476 * it has been removed from the kernel lists.
477 *
478 * This call does not sleep therefore it can not
479 * guarantee all CPU's that are in middle of receiving packets
480 * will see the new offload handlers (until the next received packet).
481 */
482void dev_add_offload(struct packet_offload *po)
483{
David S. Millerbdef7de2015-06-01 14:56:09 -0700484 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000485
486 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700487 list_for_each_entry(elem, &offload_base, list) {
488 if (po->priority < elem->priority)
489 break;
490 }
491 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000492 spin_unlock(&offload_lock);
493}
494EXPORT_SYMBOL(dev_add_offload);
495
496/**
497 * __dev_remove_offload - remove offload handler
498 * @po: packet offload declaration
499 *
500 * Remove a protocol offload handler that was previously added to the
501 * kernel offload handlers by dev_add_offload(). The passed &offload_type
502 * is removed from the kernel lists and can be freed or reused once this
503 * function returns.
504 *
505 * The packet type might still be in use by receivers
506 * and must not be freed until after all the CPU's have gone
507 * through a quiescent state.
508 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800509static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000510{
511 struct list_head *head = &offload_base;
512 struct packet_offload *po1;
513
Eric Dumazetc53aa502012-11-16 08:08:23 +0000514 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000515
516 list_for_each_entry(po1, head, list) {
517 if (po == po1) {
518 list_del_rcu(&po->list);
519 goto out;
520 }
521 }
522
523 pr_warn("dev_remove_offload: %p not found\n", po);
524out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000525 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000526}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000527
528/**
529 * dev_remove_offload - remove packet offload handler
530 * @po: packet offload declaration
531 *
532 * Remove a packet offload handler that was previously added to the kernel
533 * offload handlers by dev_add_offload(). The passed &offload_type is
534 * removed from the kernel lists and can be freed or reused once this
535 * function returns.
536 *
537 * This call sleeps to guarantee that no CPU is looking at the packet
538 * type after return.
539 */
540void dev_remove_offload(struct packet_offload *po)
541{
542 __dev_remove_offload(po);
543
544 synchronize_net();
545}
546EXPORT_SYMBOL(dev_remove_offload);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100549 *
550 * Device Boot-time Settings Routines
551 *
552 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554/* Boot time configuration table */
555static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
556
557/**
558 * netdev_boot_setup_add - add new setup entry
559 * @name: name of the device
560 * @map: configured settings for the device
561 *
562 * Adds new setup entry to the dev_boot_setup list. The function
563 * returns 0 on error and 1 on success. This is a generic routine to
564 * all netdevices.
565 */
566static int netdev_boot_setup_add(char *name, struct ifmap *map)
567{
568 struct netdev_boot_setup *s;
569 int i;
570
571 s = dev_boot_setup;
572 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
573 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
574 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff92008-07-01 19:57:19 -0700575 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 memcpy(&s[i].map, map, sizeof(s[i].map));
577 break;
578 }
579 }
580
581 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
582}
583
584/**
tcharding722c9a02017-02-09 17:56:04 +1100585 * netdev_boot_setup_check - check boot time settings
586 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *
tcharding722c9a02017-02-09 17:56:04 +1100588 * Check boot time settings for the device.
589 * The found settings are set for the device to be used
590 * later in the device probing.
591 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 */
593int netdev_boot_setup_check(struct net_device *dev)
594{
595 struct netdev_boot_setup *s = dev_boot_setup;
596 int i;
597
598 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
599 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff92008-07-01 19:57:19 -0700600 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100601 dev->irq = s[i].map.irq;
602 dev->base_addr = s[i].map.base_addr;
603 dev->mem_start = s[i].map.mem_start;
604 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return 1;
606 }
607 }
608 return 0;
609}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700610EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612
613/**
tcharding722c9a02017-02-09 17:56:04 +1100614 * netdev_boot_base - get address from boot time settings
615 * @prefix: prefix for network device
616 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 *
tcharding722c9a02017-02-09 17:56:04 +1100618 * Check boot time settings for the base address of device.
619 * The found settings are set for the device to be used
620 * later in the device probing.
621 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 */
623unsigned long netdev_boot_base(const char *prefix, int unit)
624{
625 const struct netdev_boot_setup *s = dev_boot_setup;
626 char name[IFNAMSIZ];
627 int i;
628
629 sprintf(name, "%s%d", prefix, unit);
630
631 /*
632 * If device already registered then return base of 1
633 * to indicate not to probe for this interface
634 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700635 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return 1;
637
638 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
639 if (!strcmp(name, s[i].name))
640 return s[i].map.base_addr;
641 return 0;
642}
643
644/*
645 * Saves at boot time configured settings for any netdevice.
646 */
647int __init netdev_boot_setup(char *str)
648{
649 int ints[5];
650 struct ifmap map;
651
652 str = get_options(str, ARRAY_SIZE(ints), ints);
653 if (!str || !*str)
654 return 0;
655
656 /* Save settings */
657 memset(&map, 0, sizeof(map));
658 if (ints[0] > 0)
659 map.irq = ints[1];
660 if (ints[0] > 1)
661 map.base_addr = ints[2];
662 if (ints[0] > 2)
663 map.mem_start = ints[3];
664 if (ints[0] > 3)
665 map.mem_end = ints[4];
666
667 /* Add new entry to the list */
668 return netdev_boot_setup_add(str, &map);
669}
670
671__setup("netdev=", netdev_boot_setup);
672
673/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100674 *
675 * Device Interface Subroutines
676 *
677 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200680 * dev_get_iflink - get 'iflink' value of a interface
681 * @dev: targeted interface
682 *
683 * Indicates the ifindex the interface is linked to.
684 * Physical interfaces have the same 'ifindex' and 'iflink' values.
685 */
686
687int dev_get_iflink(const struct net_device *dev)
688{
689 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
690 return dev->netdev_ops->ndo_get_iflink(dev);
691
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200692 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200693}
694EXPORT_SYMBOL(dev_get_iflink);
695
696/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700697 * dev_fill_metadata_dst - Retrieve tunnel egress information.
698 * @dev: targeted interface
699 * @skb: The packet.
700 *
701 * For better visibility of tunnel traffic OVS needs to retrieve
702 * egress tunnel information for a packet. Following API allows
703 * user to get this info.
704 */
705int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
706{
707 struct ip_tunnel_info *info;
708
709 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
710 return -EINVAL;
711
712 info = skb_tunnel_info_unclone(skb);
713 if (!info)
714 return -ENOMEM;
715 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
716 return -EINVAL;
717
718 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
719}
720EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
721
722/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700724 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 * @name: name to find
726 *
727 * Find an interface by name. Must be called under RTNL semaphore
728 * or @dev_base_lock. If the name is found a pointer to the device
729 * is returned. If the name is not found then %NULL is returned. The
730 * reference counters are not incremented so the caller must be
731 * careful with locks.
732 */
733
Eric W. Biederman881d9662007-09-17 11:56:21 -0700734struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700736 struct net_device *dev;
737 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Sasha Levinb67bfe02013-02-27 17:06:00 -0800739 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (!strncmp(dev->name, name, IFNAMSIZ))
741 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return NULL;
744}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700745EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747/**
tcharding722c9a02017-02-09 17:56:04 +1100748 * dev_get_by_name_rcu - find a device by its name
749 * @net: the applicable net namespace
750 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000751 *
tcharding722c9a02017-02-09 17:56:04 +1100752 * Find an interface by name.
753 * If the name is found a pointer to the device is returned.
754 * If the name is not found then %NULL is returned.
755 * The reference counters are not incremented so the caller must be
756 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000757 */
758
759struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
760{
Eric Dumazet72c95282009-10-30 07:11:27 +0000761 struct net_device *dev;
762 struct hlist_head *head = dev_name_hash(net, name);
763
Sasha Levinb67bfe02013-02-27 17:06:00 -0800764 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000765 if (!strncmp(dev->name, name, IFNAMSIZ))
766 return dev;
767
768 return NULL;
769}
770EXPORT_SYMBOL(dev_get_by_name_rcu);
771
772/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700774 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * @name: name to find
776 *
777 * Find an interface by name. This can be called from any
778 * context and does its own locking. The returned handle has
779 * the usage count incremented and the caller must use dev_put() to
780 * release it when it is no longer needed. %NULL is returned if no
781 * matching device is found.
782 */
783
Eric W. Biederman881d9662007-09-17 11:56:21 -0700784struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 struct net_device *dev;
787
Eric Dumazet72c95282009-10-30 07:11:27 +0000788 rcu_read_lock();
789 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (dev)
791 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000792 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return dev;
794}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700795EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797/**
798 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700799 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * @ifindex: index of device
801 *
802 * Search for an interface by index. Returns %NULL if the device
803 * is not found or a pointer to the device. The device has not
804 * had its reference counter increased so the caller must be careful
805 * about locking. The caller must hold either the RTNL semaphore
806 * or @dev_base_lock.
807 */
808
Eric W. Biederman881d9662007-09-17 11:56:21 -0700809struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700811 struct net_device *dev;
812 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Sasha Levinb67bfe02013-02-27 17:06:00 -0800814 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (dev->ifindex == ifindex)
816 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return NULL;
819}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700820EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000822/**
823 * dev_get_by_index_rcu - find a device by its ifindex
824 * @net: the applicable net namespace
825 * @ifindex: index of device
826 *
827 * Search for an interface by index. Returns %NULL if the device
828 * is not found or a pointer to the device. The device has not
829 * had its reference counter increased so the caller must be careful
830 * about locking. The caller must hold RCU lock.
831 */
832
833struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
834{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000835 struct net_device *dev;
836 struct hlist_head *head = dev_index_hash(net, ifindex);
837
Sasha Levinb67bfe02013-02-27 17:06:00 -0800838 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000839 if (dev->ifindex == ifindex)
840 return dev;
841
842 return NULL;
843}
844EXPORT_SYMBOL(dev_get_by_index_rcu);
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847/**
848 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700849 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * @ifindex: index of device
851 *
852 * Search for an interface by index. Returns NULL if the device
853 * is not found or a pointer to the device. The device returned has
854 * had a reference added and the pointer is safe until the user calls
855 * dev_put to indicate they have finished with it.
856 */
857
Eric W. Biederman881d9662007-09-17 11:56:21 -0700858struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct net_device *dev;
861
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000862 rcu_read_lock();
863 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (dev)
865 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000866 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return dev;
868}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700869EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200872 * dev_get_by_napi_id - find a device by napi_id
873 * @napi_id: ID of the NAPI struct
874 *
875 * Search for an interface by NAPI ID. Returns %NULL if the device
876 * is not found or a pointer to the device. The device has not had
877 * its reference counter increased so the caller must be careful
878 * about locking. The caller must hold RCU lock.
879 */
880
881struct net_device *dev_get_by_napi_id(unsigned int napi_id)
882{
883 struct napi_struct *napi;
884
885 WARN_ON_ONCE(!rcu_read_lock_held());
886
887 if (napi_id < MIN_NAPI_ID)
888 return NULL;
889
890 napi = napi_by_id(napi_id);
891
892 return napi ? napi->dev : NULL;
893}
894EXPORT_SYMBOL(dev_get_by_napi_id);
895
896/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200897 * netdev_get_name - get a netdevice name, knowing its ifindex.
898 * @net: network namespace
899 * @name: a pointer to the buffer where the name will be stored.
900 * @ifindex: the ifindex of the interface to get the name from.
901 *
902 * The use of raw_seqcount_begin() and cond_resched() before
903 * retrying is required as we want to give the writers a chance
904 * to complete when CONFIG_PREEMPT is not set.
905 */
906int netdev_get_name(struct net *net, char *name, int ifindex)
907{
908 struct net_device *dev;
909 unsigned int seq;
910
911retry:
912 seq = raw_seqcount_begin(&devnet_rename_seq);
913 rcu_read_lock();
914 dev = dev_get_by_index_rcu(net, ifindex);
915 if (!dev) {
916 rcu_read_unlock();
917 return -ENODEV;
918 }
919
920 strcpy(name, dev->name);
921 rcu_read_unlock();
922 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
923 cond_resched();
924 goto retry;
925 }
926
927 return 0;
928}
929
930/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000931 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700932 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * @type: media type of device
934 * @ha: hardware address
935 *
936 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800937 * is not found or a pointer to the device.
938 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000939 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * and the caller must therefore be careful about locking
941 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 */
943
Eric Dumazet941666c2010-12-05 01:23:53 +0000944struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
945 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
947 struct net_device *dev;
948
Eric Dumazet941666c2010-12-05 01:23:53 +0000949 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (dev->type == type &&
951 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700952 return dev;
953
954 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
Eric Dumazet941666c2010-12-05 01:23:53 +0000956EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300957
Eric W. Biederman881d9662007-09-17 11:56:21 -0700958struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700959{
960 struct net_device *dev;
961
962 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700963 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700964 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700965 return dev;
966
967 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700968}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700969EXPORT_SYMBOL(__dev_getfirstbyhwtype);
970
Eric W. Biederman881d9662007-09-17 11:56:21 -0700971struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000973 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000975 rcu_read_lock();
976 for_each_netdev_rcu(net, dev)
977 if (dev->type == type) {
978 dev_hold(dev);
979 ret = dev;
980 break;
981 }
982 rcu_read_unlock();
983 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985EXPORT_SYMBOL(dev_getfirstbyhwtype);
986
987/**
WANG Cong6c555492014-09-11 15:35:09 -0700988 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700989 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * @if_flags: IFF_* values
991 * @mask: bitmask of bits in if_flags to check
992 *
993 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000994 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700995 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 */
997
WANG Cong6c555492014-09-11 15:35:09 -0700998struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
999 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001001 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
WANG Cong6c555492014-09-11 15:35:09 -07001003 ASSERT_RTNL();
1004
Pavel Emelianov7562f872007-05-03 15:13:45 -07001005 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001006 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001008 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
1010 }
1011 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001012 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
WANG Cong6c555492014-09-11 15:35:09 -07001014EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016/**
1017 * dev_valid_name - check if name is okay for network device
1018 * @name: name string
1019 *
1020 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -07001021 * to allow sysfs to work. We also disallow any kind of
1022 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 */
David S. Miller95f050b2012-03-06 16:12:15 -05001024bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001026 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001027 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001028 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001029 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001030 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001031 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001032
1033 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001034 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001035 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001036 name++;
1037 }
David S. Miller95f050b2012-03-06 16:12:15 -05001038 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001040EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001043 * __dev_alloc_name - allocate a name for a device
1044 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001046 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 *
1048 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001049 * id. It scans list of devices to build up a free map, then chooses
1050 * the first empty slot. The caller must hold the dev_base or rtnl lock
1051 * while allocating the name and adding the device in order to avoid
1052 * duplicates.
1053 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1054 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
1056
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001057static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 const char *p;
1061 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001062 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 struct net_device *d;
1064
Rasmus Villemoes93809102017-11-13 00:15:08 +01001065 if (!dev_valid_name(name))
1066 return -EINVAL;
1067
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001068 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (p) {
1070 /*
1071 * Verify the string as this thing may have come from
1072 * the user. There must be either one "%d" and no other "%"
1073 * characters.
1074 */
1075 if (p[1] != 'd' || strchr(p + 2, '%'))
1076 return -EINVAL;
1077
1078 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001079 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (!inuse)
1081 return -ENOMEM;
1082
Eric W. Biederman881d9662007-09-17 11:56:21 -07001083 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (!sscanf(d->name, name, &i))
1085 continue;
1086 if (i < 0 || i >= max_netdevices)
1087 continue;
1088
1089 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001090 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!strncmp(buf, d->name, IFNAMSIZ))
1092 set_bit(i, inuse);
1093 }
1094
1095 i = find_first_zero_bit(inuse, max_netdevices);
1096 free_page((unsigned long) inuse);
1097 }
1098
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001099 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001100 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 /* It is possible to run out of possible slots
1104 * when the name is long and there isn't enough space left
1105 * for the digits, or if all bits are used.
1106 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001107 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001110static int dev_alloc_name_ns(struct net *net,
1111 struct net_device *dev,
1112 const char *name)
1113{
1114 char buf[IFNAMSIZ];
1115 int ret;
1116
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001117 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001118 ret = __dev_alloc_name(net, name, buf);
1119 if (ret >= 0)
1120 strlcpy(dev->name, buf, IFNAMSIZ);
1121 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122}
1123
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001124/**
1125 * dev_alloc_name - allocate a name for a device
1126 * @dev: device
1127 * @name: name format string
1128 *
1129 * Passed a format string - eg "lt%d" it will try and find a suitable
1130 * id. It scans list of devices to build up a free map, then chooses
1131 * the first empty slot. The caller must hold the dev_base or rtnl lock
1132 * while allocating the name and adding the device in order to avoid
1133 * duplicates.
1134 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1135 * Returns the number of the unit assigned or a negative errno code.
1136 */
1137
1138int dev_alloc_name(struct net_device *dev, const char *name)
1139{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001140 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001141}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001142EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001143
Cong Wang0ad646c2017-10-13 11:58:53 -07001144int dev_get_valid_name(struct net *net, struct net_device *dev,
1145 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001146{
David S. Miller55a5ec92018-01-02 11:45:07 -05001147 BUG_ON(!net);
1148
1149 if (!dev_valid_name(name))
1150 return -EINVAL;
1151
1152 if (strchr(name, '%'))
1153 return dev_alloc_name_ns(net, dev, name);
1154 else if (__dev_get_by_name(net, name))
1155 return -EEXIST;
1156 else if (dev->name != name)
1157 strlcpy(dev->name, name, IFNAMSIZ);
1158
1159 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001160}
Cong Wang0ad646c2017-10-13 11:58:53 -07001161EXPORT_SYMBOL(dev_get_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163/**
1164 * dev_change_name - change name of a device
1165 * @dev: device
1166 * @newname: name (or format string) must be at least IFNAMSIZ
1167 *
1168 * Change name of a device, can pass format strings "eth%d".
1169 * for wildcarding.
1170 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001171int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Tom Gundersen238fa362014-07-14 16:37:23 +02001173 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001174 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001176 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001177 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001180 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001182 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (dev->flags & IFF_UP)
1184 return -EBUSY;
1185
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001186 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001187
1188 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001189 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001190 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001191 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001192
Herbert Xufcc5a032007-07-30 17:03:38 -07001193 memcpy(oldname, dev->name, IFNAMSIZ);
1194
Gao feng828de4f2012-09-13 20:58:27 +00001195 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001196 if (err < 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001197 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001198 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001201 if (oldname[0] && !strchr(oldname, '%'))
1202 netdev_info(dev, "renamed from %s\n", oldname);
1203
Tom Gundersen238fa362014-07-14 16:37:23 +02001204 old_assign_type = dev->name_assign_type;
1205 dev->name_assign_type = NET_NAME_RENAMED;
1206
Herbert Xufcc5a032007-07-30 17:03:38 -07001207rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001208 ret = device_rename(&dev->dev, dev->name);
1209 if (ret) {
1210 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001211 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001212 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001213 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001214 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001215
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001216 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001217
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001218 netdev_adjacent_rename_links(dev, oldname);
1219
Herbert Xu7f988ea2007-07-30 16:35:46 -07001220 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001221 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001222 write_unlock_bh(&dev_base_lock);
1223
1224 synchronize_rcu();
1225
1226 write_lock_bh(&dev_base_lock);
1227 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001228 write_unlock_bh(&dev_base_lock);
1229
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001230 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001231 ret = notifier_to_errno(ret);
1232
1233 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001234 /* err >= 0 after dev_alloc_name() or stores the first errno */
1235 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001236 err = ret;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001237 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001238 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001239 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001240 dev->name_assign_type = old_assign_type;
1241 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001242 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001243 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001244 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001245 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001246 }
1247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 return err;
1250}
1251
1252/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001253 * dev_set_alias - change ifalias of a device
1254 * @dev: device
1255 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001256 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001257 *
1258 * Set ifalias for a device,
1259 */
1260int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1261{
Florian Westphal6c557002017-10-02 23:50:05 +02001262 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001263
1264 if (len >= IFALIASZ)
1265 return -EINVAL;
1266
Florian Westphal6c557002017-10-02 23:50:05 +02001267 if (len) {
1268 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1269 if (!new_alias)
1270 return -ENOMEM;
1271
1272 memcpy(new_alias->ifalias, alias, len);
1273 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001274 }
1275
Florian Westphal6c557002017-10-02 23:50:05 +02001276 mutex_lock(&ifalias_mutex);
1277 rcu_swap_protected(dev->ifalias, new_alias,
1278 mutex_is_locked(&ifalias_mutex));
1279 mutex_unlock(&ifalias_mutex);
1280
1281 if (new_alias)
1282 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001283
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001284 return len;
1285}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001286EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001287
Florian Westphal6c557002017-10-02 23:50:05 +02001288/**
1289 * dev_get_alias - get ifalias of a device
1290 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001291 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001292 * @len: size of buffer
1293 *
1294 * get ifalias for a device. Caller must make sure dev cannot go
1295 * away, e.g. rcu read lock or own a reference count to device.
1296 */
1297int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1298{
1299 const struct dev_ifalias *alias;
1300 int ret = 0;
1301
1302 rcu_read_lock();
1303 alias = rcu_dereference(dev->ifalias);
1304 if (alias)
1305 ret = snprintf(name, len, "%s", alias->ifalias);
1306 rcu_read_unlock();
1307
1308 return ret;
1309}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001310
1311/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001312 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001313 * @dev: device to cause notification
1314 *
1315 * Called to indicate a device has changed features.
1316 */
1317void netdev_features_change(struct net_device *dev)
1318{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001319 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001320}
1321EXPORT_SYMBOL(netdev_features_change);
1322
1323/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 * netdev_state_change - device changes state
1325 * @dev: device to cause notification
1326 *
1327 * Called to indicate a device has changed state. This function calls
1328 * the notifier chains for netdev_chain and sends a NEWLINK message
1329 * to the routing socket.
1330 */
1331void netdev_state_change(struct net_device *dev)
1332{
1333 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001334 struct netdev_notifier_change_info change_info = {
1335 .info.dev = dev,
1336 };
Loic Prylli54951192014-07-01 21:39:43 -07001337
David Ahern51d0c0472017-10-04 17:48:45 -07001338 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001339 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001340 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001343EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Amerigo Wangee89bab2012-08-09 22:14:56 +00001345/**
tcharding722c9a02017-02-09 17:56:04 +11001346 * netdev_notify_peers - notify network peers about existence of @dev
1347 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001348 *
1349 * Generate traffic such that interested network peers are aware of
1350 * @dev, such as by generating a gratuitous ARP. This may be used when
1351 * a device wants to inform the rest of the network about some sort of
1352 * reconfiguration such as a failover event or virtual machine
1353 * migration.
1354 */
1355void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001356{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001357 rtnl_lock();
1358 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001359 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001360 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001361}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001362EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001363
Patrick McHardybd380812010-02-26 06:34:53 +00001364static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001366 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001367 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001369 ASSERT_RTNL();
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (!netif_device_present(dev))
1372 return -ENODEV;
1373
Neil Hormanca99ca12013-02-05 08:05:43 +00001374 /* Block netpoll from trying to do any rx path servicing.
1375 * If we don't do this there is a chance ndo_poll_controller
1376 * or ndo_poll may be running while we open the device
1377 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001378 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001379
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001380 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1381 ret = notifier_to_errno(ret);
1382 if (ret)
1383 return ret;
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001386
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001387 if (ops->ndo_validate_addr)
1388 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001389
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001390 if (!ret && ops->ndo_open)
1391 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Eric W. Biederman66b55522014-03-27 15:39:03 -07001393 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001394
Jeff Garzikbada3392007-10-23 20:19:37 -07001395 if (ret)
1396 clear_bit(__LINK_STATE_START, &dev->state);
1397 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001399 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001401 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 return ret;
1405}
Patrick McHardybd380812010-02-26 06:34:53 +00001406
1407/**
1408 * dev_open - prepare an interface for use.
1409 * @dev: device to open
1410 *
1411 * Takes a device from down to up state. The device's private open
1412 * function is invoked and then the multicast lists are loaded. Finally
1413 * the device is moved into the up state and a %NETDEV_UP message is
1414 * sent to the netdev notifier chain.
1415 *
1416 * Calling this function on an active interface is a nop. On a failure
1417 * a negative errno code is returned.
1418 */
1419int dev_open(struct net_device *dev)
1420{
1421 int ret;
1422
Patrick McHardybd380812010-02-26 06:34:53 +00001423 if (dev->flags & IFF_UP)
1424 return 0;
1425
Patrick McHardybd380812010-02-26 06:34:53 +00001426 ret = __dev_open(dev);
1427 if (ret < 0)
1428 return ret;
1429
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001430 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001431 call_netdevice_notifiers(NETDEV_UP, dev);
1432
1433 return ret;
1434}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001435EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
stephen hemminger7051b882017-07-18 15:59:27 -07001437static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Octavian Purdila44345722010-12-13 12:44:07 +00001439 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001440
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001441 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001442 might_sleep();
1443
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001444 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001445 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001446 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001447
Octavian Purdila44345722010-12-13 12:44:07 +00001448 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Octavian Purdila44345722010-12-13 12:44:07 +00001450 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Octavian Purdila44345722010-12-13 12:44:07 +00001452 /* Synchronize to scheduled poll. We cannot touch poll list, it
1453 * can be even on different cpu. So just clear netif_running().
1454 *
1455 * dev->stop() will invoke napi_disable() on all of it's
1456 * napi_struct instances on this device.
1457 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001458 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Octavian Purdila44345722010-12-13 12:44:07 +00001461 dev_deactivate_many(head);
1462
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001463 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001464 const struct net_device_ops *ops = dev->netdev_ops;
1465
1466 /*
1467 * Call the device specific close. This cannot fail.
1468 * Only if device is UP
1469 *
1470 * We allow it to be called even after a DETACH hot-plug
1471 * event.
1472 */
1473 if (ops->ndo_stop)
1474 ops->ndo_stop(dev);
1475
Octavian Purdila44345722010-12-13 12:44:07 +00001476 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001477 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001478 }
Octavian Purdila44345722010-12-13 12:44:07 +00001479}
1480
stephen hemminger7051b882017-07-18 15:59:27 -07001481static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001482{
1483 LIST_HEAD(single);
1484
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001485 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001486 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001487 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001488}
1489
stephen hemminger7051b882017-07-18 15:59:27 -07001490void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001491{
1492 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001493
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001494 /* Remove the devices that don't need to be closed */
1495 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001496 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001497 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001498
1499 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001500
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001501 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001502 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001503 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001504 if (unlink)
1505 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
David S. Miller99c4a262015-03-18 22:52:33 -04001508EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001509
1510/**
1511 * dev_close - shutdown an interface.
1512 * @dev: device to shutdown
1513 *
1514 * This function moves an active device into down state. A
1515 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1516 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1517 * chain.
1518 */
stephen hemminger7051b882017-07-18 15:59:27 -07001519void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001520{
Eric Dumazete14a5992011-05-10 12:26:06 -07001521 if (dev->flags & IFF_UP) {
1522 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001523
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001524 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001525 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001526 list_del(&single);
1527 }
Patrick McHardybd380812010-02-26 06:34:53 +00001528}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001529EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001532/**
1533 * dev_disable_lro - disable Large Receive Offload on a device
1534 * @dev: device
1535 *
1536 * Disable Large Receive Offload (LRO) on a net device. Must be
1537 * called under RTNL. This is needed if received packets may be
1538 * forwarded to another interface.
1539 */
1540void dev_disable_lro(struct net_device *dev)
1541{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001542 struct net_device *lower_dev;
1543 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001544
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001545 dev->wanted_features &= ~NETIF_F_LRO;
1546 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001547
Michał Mirosław22d59692011-04-21 12:42:15 +00001548 if (unlikely(dev->features & NETIF_F_LRO))
1549 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001550
1551 netdev_for_each_lower_dev(dev, lower_dev, iter)
1552 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001553}
1554EXPORT_SYMBOL(dev_disable_lro);
1555
Michael Chan56f5aa72017-12-16 03:09:41 -05001556/**
1557 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1558 * @dev: device
1559 *
1560 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1561 * called under RTNL. This is needed if Generic XDP is installed on
1562 * the device.
1563 */
1564static void dev_disable_gro_hw(struct net_device *dev)
1565{
1566 dev->wanted_features &= ~NETIF_F_GRO_HW;
1567 netdev_update_features(dev);
1568
1569 if (unlikely(dev->features & NETIF_F_GRO_HW))
1570 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1571}
1572
Kirill Tkhaiede27622018-03-23 19:47:19 +03001573const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1574{
1575#define N(val) \
1576 case NETDEV_##val: \
1577 return "NETDEV_" __stringify(val);
1578 switch (cmd) {
1579 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1580 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1581 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1582 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1583 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1584 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1585 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001586 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1587 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001588 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001589#undef N
1590 return "UNKNOWN_NETDEV_EVENT";
1591}
1592EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1593
Jiri Pirko351638e2013-05-28 01:30:21 +00001594static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1595 struct net_device *dev)
1596{
David Ahern51d0c0472017-10-04 17:48:45 -07001597 struct netdev_notifier_info info = {
1598 .dev = dev,
1599 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001600
Jiri Pirko351638e2013-05-28 01:30:21 +00001601 return nb->notifier_call(nb, val, &info);
1602}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001603
Eric W. Biederman881d9662007-09-17 11:56:21 -07001604static int dev_boot_phase = 1;
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606/**
tcharding722c9a02017-02-09 17:56:04 +11001607 * register_netdevice_notifier - register a network notifier block
1608 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 *
tcharding722c9a02017-02-09 17:56:04 +11001610 * Register a notifier to be called when network device events occur.
1611 * The notifier passed is linked into the kernel structures and must
1612 * not be reused until it has been unregistered. A negative errno code
1613 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 *
tcharding722c9a02017-02-09 17:56:04 +11001615 * When registered all registration and up events are replayed
1616 * to the new notifier to allow device to have a race free
1617 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 */
1619
1620int register_netdevice_notifier(struct notifier_block *nb)
1621{
1622 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001623 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001624 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 int err;
1626
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001627 /* Close race with setup_net() and cleanup_net() */
1628 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001630 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001631 if (err)
1632 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001633 if (dev_boot_phase)
1634 goto unlock;
1635 for_each_net(net) {
1636 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001637 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001638 err = notifier_to_errno(err);
1639 if (err)
1640 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Eric W. Biederman881d9662007-09-17 11:56:21 -07001642 if (!(dev->flags & IFF_UP))
1643 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001644
Jiri Pirko351638e2013-05-28 01:30:21 +00001645 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001648
1649unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001651 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001653
1654rollback:
1655 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001656 for_each_net(net) {
1657 for_each_netdev(net, dev) {
1658 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001659 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001660
Eric W. Biederman881d9662007-09-17 11:56:21 -07001661 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001662 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1663 dev);
1664 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001665 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001666 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001667 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001668 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001669
RongQing.Li8f891482011-11-30 23:43:07 -05001670outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001671 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001672 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001674EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676/**
tcharding722c9a02017-02-09 17:56:04 +11001677 * unregister_netdevice_notifier - unregister a network notifier block
1678 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 *
tcharding722c9a02017-02-09 17:56:04 +11001680 * Unregister a notifier previously registered by
1681 * register_netdevice_notifier(). The notifier is unlinked into the
1682 * kernel structures and may then be reused. A negative errno code
1683 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001684 *
tcharding722c9a02017-02-09 17:56:04 +11001685 * After unregistering unregister and down device events are synthesized
1686 * for all devices on the device list to the removed notifier to remove
1687 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
1689
1690int unregister_netdevice_notifier(struct notifier_block *nb)
1691{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001692 struct net_device *dev;
1693 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001694 int err;
1695
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001696 /* Close race with setup_net() and cleanup_net() */
1697 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001698 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001699 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001700 if (err)
1701 goto unlock;
1702
1703 for_each_net(net) {
1704 for_each_netdev(net, dev) {
1705 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001706 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1707 dev);
1708 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001709 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001710 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001711 }
1712 }
1713unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001714 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001715 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001716 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001718EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001721 * call_netdevice_notifiers_info - call all network notifier blocks
1722 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00001723 * @info: notifier information data
1724 *
1725 * Call all network notifier blocks. Parameters and return value
1726 * are as for raw_notifier_call_chain().
1727 */
1728
stephen hemminger1d143d92013-12-29 14:01:29 -08001729static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08001730 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001731{
1732 ASSERT_RTNL();
Jiri Pirko351638e2013-05-28 01:30:21 +00001733 return raw_notifier_call_chain(&netdev_chain, val, info);
1734}
Jiri Pirko351638e2013-05-28 01:30:21 +00001735
1736/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * call_netdevice_notifiers - call all network notifier blocks
1738 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001739 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 *
1741 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001742 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
1744
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001745int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
David Ahern51d0c0472017-10-04 17:48:45 -07001747 struct netdev_notifier_info info = {
1748 .dev = dev,
1749 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001750
David Ahern51d0c0472017-10-04 17:48:45 -07001751 return call_netdevice_notifiers_info(val, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001753EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001755/**
1756 * call_netdevice_notifiers_mtu - call all network notifier blocks
1757 * @val: value passed unmodified to notifier function
1758 * @dev: net_device pointer passed unmodified to notifier function
1759 * @arg: additional u32 argument passed to the notifier function
1760 *
1761 * Call all network notifier blocks. Parameters and return value
1762 * are as for raw_notifier_call_chain().
1763 */
1764static int call_netdevice_notifiers_mtu(unsigned long val,
1765 struct net_device *dev, u32 arg)
1766{
1767 struct netdev_notifier_info_ext info = {
1768 .info.dev = dev,
1769 .ext.mtu = arg,
1770 };
1771
1772 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
1773
1774 return call_netdevice_notifiers_info(val, &info.info);
1775}
1776
Pablo Neira1cf519002015-05-13 18:19:37 +02001777#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001778static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001779
1780void net_inc_ingress_queue(void)
1781{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001782 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001783}
1784EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1785
1786void net_dec_ingress_queue(void)
1787{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001788 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001789}
1790EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1791#endif
1792
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001793#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001794static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001795
1796void net_inc_egress_queue(void)
1797{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001798 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001799}
1800EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1801
1802void net_dec_egress_queue(void)
1803{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001804 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001805}
1806EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1807#endif
1808
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001809static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001810#ifdef HAVE_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001811static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08001812static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001813static void netstamp_clear(struct work_struct *work)
1814{
1815 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08001816 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001817
Eric Dumazet13baa002017-03-01 14:28:39 -08001818 wanted = atomic_add_return(deferred, &netstamp_wanted);
1819 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001820 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001821 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001822 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001823}
1824static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001825#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827void net_enable_timestamp(void)
1828{
Eric Dumazet13baa002017-03-01 14:28:39 -08001829#ifdef HAVE_JUMP_LABEL
1830 int wanted;
1831
1832 while (1) {
1833 wanted = atomic_read(&netstamp_wanted);
1834 if (wanted <= 0)
1835 break;
1836 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1837 return;
1838 }
1839 atomic_inc(&netstamp_needed_deferred);
1840 schedule_work(&netstamp_work);
1841#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001842 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001845EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847void net_disable_timestamp(void)
1848{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001849#ifdef HAVE_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08001850 int wanted;
1851
1852 while (1) {
1853 wanted = atomic_read(&netstamp_wanted);
1854 if (wanted <= 1)
1855 break;
1856 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1857 return;
1858 }
1859 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001860 schedule_work(&netstamp_work);
1861#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001862 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001863#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001865EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Eric Dumazet3b098e22010-05-15 23:57:10 -07001867static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
Thomas Gleixner2456e852016-12-25 11:38:40 +01001869 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001870 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001871 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001874#define net_timestamp_check(COND, SKB) \
1875 if (static_branch_unlikely(&netstamp_needed_key)) { \
1876 if ((COND) && !(SKB)->tstamp) \
1877 __net_timestamp(SKB); \
1878 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001879
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001880bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001881{
1882 unsigned int len;
1883
1884 if (!(dev->flags & IFF_UP))
1885 return false;
1886
1887 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1888 if (skb->len <= len)
1889 return true;
1890
1891 /* if TSO is enabled, we don't care about the length as the packet
1892 * could be forwarded without being segmented before
1893 */
1894 if (skb_is_gso(skb))
1895 return true;
1896
1897 return false;
1898}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001899EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001900
Herbert Xua0265d22014-04-17 13:45:03 +08001901int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1902{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001903 int ret = ____dev_forward_skb(dev, skb);
1904
1905 if (likely(!ret)) {
1906 skb->protocol = eth_type_trans(skb, dev);
1907 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001908 }
1909
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001910 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001911}
1912EXPORT_SYMBOL_GPL(__dev_forward_skb);
1913
Arnd Bergmann44540962009-11-26 06:07:08 +00001914/**
1915 * dev_forward_skb - loopback an skb to another netif
1916 *
1917 * @dev: destination network device
1918 * @skb: buffer to forward
1919 *
1920 * return values:
1921 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001922 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001923 *
1924 * dev_forward_skb can be used for injecting an skb from the
1925 * start_xmit function of one device into the receive queue
1926 * of another device.
1927 *
1928 * The receiving device may be in another namespace, so
1929 * we have to clear all information in the skb that could
1930 * impact namespace isolation.
1931 */
1932int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1933{
Herbert Xua0265d22014-04-17 13:45:03 +08001934 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001935}
1936EXPORT_SYMBOL_GPL(dev_forward_skb);
1937
Changli Gao71d9dec2010-12-15 19:57:25 +00001938static inline int deliver_skb(struct sk_buff *skb,
1939 struct packet_type *pt_prev,
1940 struct net_device *orig_dev)
1941{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001942 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001943 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03001944 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00001945 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1946}
1947
Salam Noureddine7866a622015-01-27 11:35:48 -08001948static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1949 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001950 struct net_device *orig_dev,
1951 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001952 struct list_head *ptype_list)
1953{
1954 struct packet_type *ptype, *pt_prev = *pt;
1955
1956 list_for_each_entry_rcu(ptype, ptype_list, list) {
1957 if (ptype->type != type)
1958 continue;
1959 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001960 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001961 pt_prev = ptype;
1962 }
1963 *pt = pt_prev;
1964}
1965
Eric Leblondc0de08d2012-08-16 22:02:58 +00001966static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1967{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001968 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001969 return false;
1970
1971 if (ptype->id_match)
1972 return ptype->id_match(ptype, skb->sk);
1973 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1974 return true;
1975
1976 return false;
1977}
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979/*
1980 * Support routine. Sends outgoing frames to any network
1981 * taps currently in use.
1982 */
1983
David Ahern74b20582016-05-10 11:19:50 -07001984void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001987 struct sk_buff *skb2 = NULL;
1988 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001989 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001992again:
1993 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 /* Never send packets back to the socket
1995 * they originated from - MvS (miquels@drinkel.ow.org)
1996 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001997 if (skb_loop_sk(ptype, skb))
1998 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001999
Salam Noureddine7866a622015-01-27 11:35:48 -08002000 if (pt_prev) {
2001 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002002 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002003 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002005
2006 /* need to clone skb, done only once */
2007 skb2 = skb_clone(skb, GFP_ATOMIC);
2008 if (!skb2)
2009 goto out_unlock;
2010
2011 net_timestamp_set(skb2);
2012
2013 /* skb->nh should be correctly
2014 * set by sender, so that the second statement is
2015 * just protection against buggy protocols.
2016 */
2017 skb_reset_mac_header(skb2);
2018
2019 if (skb_network_header(skb2) < skb2->data ||
2020 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2021 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2022 ntohs(skb2->protocol),
2023 dev->name);
2024 skb_reset_network_header(skb2);
2025 }
2026
2027 skb2->transport_header = skb2->network_header;
2028 skb2->pkt_type = PACKET_OUTGOING;
2029 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002031
2032 if (ptype_list == &ptype_all) {
2033 ptype_list = &dev->ptype_all;
2034 goto again;
2035 }
2036out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002037 if (pt_prev) {
2038 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2039 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2040 else
2041 kfree_skb(skb2);
2042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 rcu_read_unlock();
2044}
David Ahern74b20582016-05-10 11:19:50 -07002045EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Ben Hutchings2c530402012-07-10 10:55:09 +00002047/**
2048 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002049 * @dev: Network device
2050 * @txq: number of queues available
2051 *
2052 * If real_num_tx_queues is changed the tc mappings may no longer be
2053 * valid. To resolve this verify the tc mapping remains valid and if
2054 * not NULL the mapping. With no priorities mapping to this
2055 * offset/count pair it will no longer be used. In the worst case TC0
2056 * is invalid nothing can be done so disable priority mappings. If is
2057 * expected that drivers will fix this mapping if they can before
2058 * calling netif_set_real_num_tx_queues.
2059 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002060static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002061{
2062 int i;
2063 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2064
2065 /* If TC0 is invalidated disable TC mapping */
2066 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002067 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002068 dev->num_tc = 0;
2069 return;
2070 }
2071
2072 /* Invalidated prio to tc mappings set to TC0 */
2073 for (i = 1; i < TC_BITMASK + 1; i++) {
2074 int q = netdev_get_prio_tc_map(dev, i);
2075
2076 tc = &dev->tc_to_txq[q];
2077 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002078 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2079 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002080 netdev_set_prio_tc_map(dev, i, 0);
2081 }
2082 }
2083}
2084
Alexander Duyck8d059b02016-10-28 11:43:49 -04002085int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2086{
2087 if (dev->num_tc) {
2088 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2089 int i;
2090
Alexander Duyckffcfe252018-07-09 12:19:38 -04002091 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002092 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2093 if ((txq - tc->offset) < tc->count)
2094 return i;
2095 }
2096
Alexander Duyckffcfe252018-07-09 12:19:38 -04002097 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002098 return -1;
2099 }
2100
2101 return 0;
2102}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002103EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002104
Alexander Duyck537c00d2013-01-10 08:57:02 +00002105#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002106struct static_key xps_needed __read_mostly;
2107EXPORT_SYMBOL(xps_needed);
2108struct static_key xps_rxqs_needed __read_mostly;
2109EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002110static DEFINE_MUTEX(xps_map_mutex);
2111#define xmap_dereference(P) \
2112 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2113
Alexander Duyck6234f872016-10-28 11:46:49 -04002114static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2115 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002116{
2117 struct xps_map *map = NULL;
2118 int pos;
2119
2120 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002121 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002122 if (!map)
2123 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002124
Alexander Duyck6234f872016-10-28 11:46:49 -04002125 for (pos = map->len; pos--;) {
2126 if (map->queues[pos] != index)
2127 continue;
2128
2129 if (map->len > 1) {
2130 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002131 break;
2132 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002133
Amritha Nambiar80d19662018-06-29 21:26:41 -07002134 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002135 kfree_rcu(map, rcu);
2136 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002137 }
2138
Alexander Duyck6234f872016-10-28 11:46:49 -04002139 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002140}
2141
Alexander Duyck6234f872016-10-28 11:46:49 -04002142static bool remove_xps_queue_cpu(struct net_device *dev,
2143 struct xps_dev_maps *dev_maps,
2144 int cpu, u16 offset, u16 count)
2145{
Alexander Duyck184c4492016-10-28 11:50:13 -04002146 int num_tc = dev->num_tc ? : 1;
2147 bool active = false;
2148 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002149
Alexander Duyck184c4492016-10-28 11:50:13 -04002150 for (tci = cpu * num_tc; num_tc--; tci++) {
2151 int i, j;
2152
2153 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002154 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002155 break;
2156 }
2157
2158 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002159 }
2160
Alexander Duyck184c4492016-10-28 11:50:13 -04002161 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002162}
2163
Amritha Nambiar80d19662018-06-29 21:26:41 -07002164static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2165 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2166 u16 offset, u16 count, bool is_rxqs_map)
2167{
2168 bool active = false;
2169 int i, j;
2170
2171 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2172 j < nr_ids;)
2173 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2174 count);
2175 if (!active) {
2176 if (is_rxqs_map) {
2177 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2178 } else {
2179 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2180
2181 for (i = offset + (count - 1); count--; i--)
2182 netdev_queue_numa_node_write(
2183 netdev_get_tx_queue(dev, i),
2184 NUMA_NO_NODE);
2185 }
2186 kfree_rcu(dev_maps, rcu);
2187 }
2188}
2189
Alexander Duyck6234f872016-10-28 11:46:49 -04002190static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2191 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002192{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002193 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002194 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002195 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002196
Amritha Nambiar04157462018-06-29 21:26:46 -07002197 if (!static_key_false(&xps_needed))
2198 return;
2199
Andrei Vagin4d99f662018-08-08 20:07:35 -07002200 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002201 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002202
Amritha Nambiar04157462018-06-29 21:26:46 -07002203 if (static_key_false(&xps_rxqs_needed)) {
2204 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2205 if (dev_maps) {
2206 nr_ids = dev->num_rx_queues;
2207 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2208 offset, count, true);
2209 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002210 }
2211
2212 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002213 if (!dev_maps)
2214 goto out_no_maps;
2215
Amritha Nambiar80d19662018-06-29 21:26:41 -07002216 if (num_possible_cpus() > 1)
2217 possible_mask = cpumask_bits(cpu_possible_mask);
2218 nr_ids = nr_cpu_ids;
2219 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2220 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002221
Alexander Duyck537c00d2013-01-10 08:57:02 +00002222out_no_maps:
Amritha Nambiar04157462018-06-29 21:26:46 -07002223 if (static_key_enabled(&xps_rxqs_needed))
Andrei Vagin4d99f662018-08-08 20:07:35 -07002224 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
Amritha Nambiar04157462018-06-29 21:26:46 -07002225
Andrei Vagin4d99f662018-08-08 20:07:35 -07002226 static_key_slow_dec_cpuslocked(&xps_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002227 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002228 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002229}
2230
Alexander Duyck6234f872016-10-28 11:46:49 -04002231static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2232{
2233 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2234}
2235
Amritha Nambiar80d19662018-06-29 21:26:41 -07002236static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2237 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002238{
2239 struct xps_map *new_map;
2240 int alloc_len = XPS_MIN_MAP_ALLOC;
2241 int i, pos;
2242
2243 for (pos = 0; map && pos < map->len; pos++) {
2244 if (map->queues[pos] != index)
2245 continue;
2246 return map;
2247 }
2248
Amritha Nambiar80d19662018-06-29 21:26:41 -07002249 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002250 if (map) {
2251 if (pos < map->alloc_len)
2252 return map;
2253
2254 alloc_len = map->alloc_len * 2;
2255 }
2256
Amritha Nambiar80d19662018-06-29 21:26:41 -07002257 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2258 * map
2259 */
2260 if (is_rxqs_map)
2261 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2262 else
2263 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2264 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002265 if (!new_map)
2266 return NULL;
2267
2268 for (i = 0; i < pos; i++)
2269 new_map->queues[i] = map->queues[i];
2270 new_map->alloc_len = alloc_len;
2271 new_map->len = pos;
2272
2273 return new_map;
2274}
2275
Andrei Vagin4d99f662018-08-08 20:07:35 -07002276/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002277int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2278 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002279{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002280 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002281 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002282 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002283 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002284 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002285 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002286 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002287
Alexander Duyck184c4492016-10-28 11:50:13 -04002288 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002289 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002290 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002291 if (num_tc < 0)
2292 return -EINVAL;
2293
2294 /* If queue belongs to subordinate dev use its map */
2295 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2296
Alexander Duyck184c4492016-10-28 11:50:13 -04002297 tc = netdev_txq_to_tc(dev, index);
2298 if (tc < 0)
2299 return -EINVAL;
2300 }
2301
Amritha Nambiar80d19662018-06-29 21:26:41 -07002302 mutex_lock(&xps_map_mutex);
2303 if (is_rxqs_map) {
2304 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2305 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2306 nr_ids = dev->num_rx_queues;
2307 } else {
2308 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2309 if (num_possible_cpus() > 1) {
2310 online_mask = cpumask_bits(cpu_online_mask);
2311 possible_mask = cpumask_bits(cpu_possible_mask);
2312 }
2313 dev_maps = xmap_dereference(dev->xps_cpus_map);
2314 nr_ids = nr_cpu_ids;
2315 }
2316
Alexander Duyck184c4492016-10-28 11:50:13 -04002317 if (maps_sz < L1_CACHE_BYTES)
2318 maps_sz = L1_CACHE_BYTES;
2319
Alexander Duyck01c5f862013-01-10 08:57:35 +00002320 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002321 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2322 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002323 if (!new_dev_maps)
2324 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002325 if (!new_dev_maps) {
2326 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002327 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002328 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002329
Amritha Nambiar80d19662018-06-29 21:26:41 -07002330 tci = j * num_tc + tc;
2331 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002332 NULL;
2333
Amritha Nambiar80d19662018-06-29 21:26:41 -07002334 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002335 if (!map)
2336 goto error;
2337
Amritha Nambiar80d19662018-06-29 21:26:41 -07002338 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002339 }
2340
2341 if (!new_dev_maps)
2342 goto out_no_new_maps;
2343
Andrei Vagin4d99f662018-08-08 20:07:35 -07002344 static_key_slow_inc_cpuslocked(&xps_needed);
Amritha Nambiar04157462018-06-29 21:26:46 -07002345 if (is_rxqs_map)
Andrei Vagin4d99f662018-08-08 20:07:35 -07002346 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
Amritha Nambiar04157462018-06-29 21:26:46 -07002347
Amritha Nambiar80d19662018-06-29 21:26:41 -07002348 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2349 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002350 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002351 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002352 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002353 map = xmap_dereference(dev_maps->attr_map[tci]);
2354 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002355 }
2356
2357 /* We need to explicitly update tci as prevous loop
2358 * could break out early if dev_maps is NULL.
2359 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002360 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002361
Amritha Nambiar80d19662018-06-29 21:26:41 -07002362 if (netif_attr_test_mask(j, mask, nr_ids) &&
2363 netif_attr_test_online(j, online_mask, nr_ids)) {
2364 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002365 int pos = 0;
2366
Amritha Nambiar80d19662018-06-29 21:26:41 -07002367 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002368 while ((pos < map->len) && (map->queues[pos] != index))
2369 pos++;
2370
2371 if (pos == map->len)
2372 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002373#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002374 if (!is_rxqs_map) {
2375 if (numa_node_id == -2)
2376 numa_node_id = cpu_to_node(j);
2377 else if (numa_node_id != cpu_to_node(j))
2378 numa_node_id = -1;
2379 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002380#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002381 } else if (dev_maps) {
2382 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002383 map = xmap_dereference(dev_maps->attr_map[tci]);
2384 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002385 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002386
Alexander Duyck184c4492016-10-28 11:50:13 -04002387 /* copy maps belonging to foreign traffic classes */
2388 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2389 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002390 map = xmap_dereference(dev_maps->attr_map[tci]);
2391 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002392 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002393 }
2394
Amritha Nambiar80d19662018-06-29 21:26:41 -07002395 if (is_rxqs_map)
2396 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2397 else
2398 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002399
Alexander Duyck537c00d2013-01-10 08:57:02 +00002400 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002401 if (!dev_maps)
2402 goto out_no_old_maps;
2403
Amritha Nambiar80d19662018-06-29 21:26:41 -07002404 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2405 j < nr_ids;) {
2406 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2407 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2408 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002409 if (map && map != new_map)
2410 kfree_rcu(map, rcu);
2411 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002412 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002413
Alexander Duyck184c4492016-10-28 11:50:13 -04002414 kfree_rcu(dev_maps, rcu);
2415
2416out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002417 dev_maps = new_dev_maps;
2418 active = true;
2419
2420out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002421 if (!is_rxqs_map) {
2422 /* update Tx queue numa node */
2423 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2424 (numa_node_id >= 0) ?
2425 numa_node_id : NUMA_NO_NODE);
2426 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002427
Alexander Duyck01c5f862013-01-10 08:57:35 +00002428 if (!dev_maps)
2429 goto out_no_maps;
2430
Amritha Nambiar80d19662018-06-29 21:26:41 -07002431 /* removes tx-queue from unused CPUs/rx-queues */
2432 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2433 j < nr_ids;) {
2434 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002435 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002436 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2437 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002438 active |= remove_xps_queue(dev_maps, tci, index);
2439 for (i = num_tc - tc, tci++; --i; tci++)
2440 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002441 }
2442
2443 /* free map if not active */
2444 if (!active) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002445 if (is_rxqs_map)
2446 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2447 else
2448 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002449 kfree_rcu(dev_maps, rcu);
2450 }
2451
2452out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002453 mutex_unlock(&xps_map_mutex);
2454
2455 return 0;
2456error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002457 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002458 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2459 j < nr_ids;) {
2460 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2461 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002462 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002463 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002464 NULL;
2465 if (new_map && new_map != map)
2466 kfree(new_map);
2467 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002468 }
2469
Alexander Duyck537c00d2013-01-10 08:57:02 +00002470 mutex_unlock(&xps_map_mutex);
2471
Alexander Duyck537c00d2013-01-10 08:57:02 +00002472 kfree(new_dev_maps);
2473 return -ENOMEM;
2474}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002475EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002476
2477int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2478 u16 index)
2479{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002480 int ret;
2481
2482 cpus_read_lock();
2483 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2484 cpus_read_unlock();
2485
2486 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002487}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002488EXPORT_SYMBOL(netif_set_xps_queue);
2489
2490#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002491static void netdev_unbind_all_sb_channels(struct net_device *dev)
2492{
2493 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2494
2495 /* Unbind any subordinate channels */
2496 while (txq-- != &dev->_tx[0]) {
2497 if (txq->sb_dev)
2498 netdev_unbind_sb_channel(dev, txq->sb_dev);
2499 }
2500}
2501
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002502void netdev_reset_tc(struct net_device *dev)
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
2509 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002510 dev->num_tc = 0;
2511 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2512 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2513}
2514EXPORT_SYMBOL(netdev_reset_tc);
2515
2516int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2517{
2518 if (tc >= dev->num_tc)
2519 return -EINVAL;
2520
Alexander Duyck6234f872016-10-28 11:46:49 -04002521#ifdef CONFIG_XPS
2522 netif_reset_xps_queues(dev, offset, count);
2523#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002524 dev->tc_to_txq[tc].count = count;
2525 dev->tc_to_txq[tc].offset = offset;
2526 return 0;
2527}
2528EXPORT_SYMBOL(netdev_set_tc_queue);
2529
2530int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2531{
2532 if (num_tc > TC_MAX_QUEUE)
2533 return -EINVAL;
2534
Alexander Duyck6234f872016-10-28 11:46:49 -04002535#ifdef CONFIG_XPS
2536 netif_reset_xps_queues_gt(dev, 0);
2537#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002538 netdev_unbind_all_sb_channels(dev);
2539
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002540 dev->num_tc = num_tc;
2541 return 0;
2542}
2543EXPORT_SYMBOL(netdev_set_num_tc);
2544
Alexander Duyckffcfe252018-07-09 12:19:38 -04002545void netdev_unbind_sb_channel(struct net_device *dev,
2546 struct net_device *sb_dev)
2547{
2548 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2549
2550#ifdef CONFIG_XPS
2551 netif_reset_xps_queues_gt(sb_dev, 0);
2552#endif
2553 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2554 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2555
2556 while (txq-- != &dev->_tx[0]) {
2557 if (txq->sb_dev == sb_dev)
2558 txq->sb_dev = NULL;
2559 }
2560}
2561EXPORT_SYMBOL(netdev_unbind_sb_channel);
2562
2563int netdev_bind_sb_channel_queue(struct net_device *dev,
2564 struct net_device *sb_dev,
2565 u8 tc, u16 count, u16 offset)
2566{
2567 /* Make certain the sb_dev and dev are already configured */
2568 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2569 return -EINVAL;
2570
2571 /* We cannot hand out queues we don't have */
2572 if ((offset + count) > dev->real_num_tx_queues)
2573 return -EINVAL;
2574
2575 /* Record the mapping */
2576 sb_dev->tc_to_txq[tc].count = count;
2577 sb_dev->tc_to_txq[tc].offset = offset;
2578
2579 /* Provide a way for Tx queue to find the tc_to_txq map or
2580 * XPS map for itself.
2581 */
2582 while (count--)
2583 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2584
2585 return 0;
2586}
2587EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2588
2589int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2590{
2591 /* Do not use a multiqueue device to represent a subordinate channel */
2592 if (netif_is_multiqueue(dev))
2593 return -ENODEV;
2594
2595 /* We allow channels 1 - 32767 to be used for subordinate channels.
2596 * Channel 0 is meant to be "native" mode and used only to represent
2597 * the main root device. We allow writing 0 to reset the device back
2598 * to normal mode after being used as a subordinate channel.
2599 */
2600 if (channel > S16_MAX)
2601 return -EINVAL;
2602
2603 dev->num_tc = -channel;
2604
2605 return 0;
2606}
2607EXPORT_SYMBOL(netdev_set_sb_channel);
2608
John Fastabendf0796d52010-07-01 13:21:57 +00002609/*
2610 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002611 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002612 */
Tom Herberte6484932010-10-18 18:04:39 +00002613int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002614{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002615 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002616 int rc;
2617
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002618 disabling = txq < dev->real_num_tx_queues;
2619
Tom Herberte6484932010-10-18 18:04:39 +00002620 if (txq < 1 || txq > dev->num_tx_queues)
2621 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002622
Ben Hutchings5c565802011-02-15 19:39:21 +00002623 if (dev->reg_state == NETREG_REGISTERED ||
2624 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002625 ASSERT_RTNL();
2626
Tom Herbert1d24eb42010-11-21 13:17:27 +00002627 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2628 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002629 if (rc)
2630 return rc;
2631
John Fastabend4f57c082011-01-17 08:06:04 +00002632 if (dev->num_tc)
2633 netif_setup_tc(dev, txq);
2634
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002635 dev->real_num_tx_queues = txq;
2636
2637 if (disabling) {
2638 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002639 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002640#ifdef CONFIG_XPS
2641 netif_reset_xps_queues_gt(dev, txq);
2642#endif
2643 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002644 } else {
2645 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002646 }
Tom Herberte6484932010-10-18 18:04:39 +00002647
Tom Herberte6484932010-10-18 18:04:39 +00002648 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002649}
2650EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002651
Michael Daltona953be52014-01-16 22:23:28 -08002652#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002653/**
2654 * netif_set_real_num_rx_queues - set actual number of RX queues used
2655 * @dev: Network device
2656 * @rxq: Actual number of RX queues
2657 *
2658 * This must be called either with the rtnl_lock held or before
2659 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002660 * negative error code. If called before registration, it always
2661 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002662 */
2663int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2664{
2665 int rc;
2666
Tom Herbertbd25fa72010-10-18 18:00:16 +00002667 if (rxq < 1 || rxq > dev->num_rx_queues)
2668 return -EINVAL;
2669
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002670 if (dev->reg_state == NETREG_REGISTERED) {
2671 ASSERT_RTNL();
2672
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002673 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2674 rxq);
2675 if (rc)
2676 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002677 }
2678
2679 dev->real_num_rx_queues = rxq;
2680 return 0;
2681}
2682EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2683#endif
2684
Ben Hutchings2c530402012-07-10 10:55:09 +00002685/**
2686 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002687 *
2688 * This routine should set an upper limit on the number of RSS queues
2689 * used by default by multiqueue devices.
2690 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002691int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002692{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302693 return is_kdump_kernel() ?
2694 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002695}
2696EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2697
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002698static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002699{
2700 struct softnet_data *sd;
2701 unsigned long flags;
2702
2703 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002704 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002705 q->next_sched = NULL;
2706 *sd->output_queue_tailp = q;
2707 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002708 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2709 local_irq_restore(flags);
2710}
2711
David S. Miller37437bb2008-07-16 02:15:04 -07002712void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002713{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002714 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2715 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002716}
2717EXPORT_SYMBOL(__netif_schedule);
2718
Eric Dumazete6247022013-12-05 04:45:08 -08002719struct dev_kfree_skb_cb {
2720 enum skb_free_reason reason;
2721};
2722
2723static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002724{
Eric Dumazete6247022013-12-05 04:45:08 -08002725 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002726}
Denis Vlasenko56079432006-03-29 15:57:29 -08002727
John Fastabend46e5da40a2014-09-12 20:04:52 -07002728void netif_schedule_queue(struct netdev_queue *txq)
2729{
2730 rcu_read_lock();
2731 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2732 struct Qdisc *q = rcu_dereference(txq->qdisc);
2733
2734 __netif_schedule(q);
2735 }
2736 rcu_read_unlock();
2737}
2738EXPORT_SYMBOL(netif_schedule_queue);
2739
John Fastabend46e5da40a2014-09-12 20:04:52 -07002740void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2741{
2742 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2743 struct Qdisc *q;
2744
2745 rcu_read_lock();
2746 q = rcu_dereference(dev_queue->qdisc);
2747 __netif_schedule(q);
2748 rcu_read_unlock();
2749 }
2750}
2751EXPORT_SYMBOL(netif_tx_wake_queue);
2752
Eric Dumazete6247022013-12-05 04:45:08 -08002753void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2754{
2755 unsigned long flags;
2756
Myungho Jung98998862017-04-25 11:58:15 -07002757 if (unlikely(!skb))
2758 return;
2759
Reshetova, Elena63354792017-06-30 13:07:58 +03002760 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08002761 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03002762 refcount_set(&skb->users, 0);
2763 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08002764 return;
2765 }
2766 get_kfree_skb_cb(skb)->reason = reason;
2767 local_irq_save(flags);
2768 skb->next = __this_cpu_read(softnet_data.completion_queue);
2769 __this_cpu_write(softnet_data.completion_queue, skb);
2770 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2771 local_irq_restore(flags);
2772}
2773EXPORT_SYMBOL(__dev_kfree_skb_irq);
2774
2775void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002776{
2777 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002778 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002779 else
2780 dev_kfree_skb(skb);
2781}
Eric Dumazete6247022013-12-05 04:45:08 -08002782EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002783
2784
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002785/**
2786 * netif_device_detach - mark device as removed
2787 * @dev: network device
2788 *
2789 * Mark device as removed from system and therefore no longer available.
2790 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002791void netif_device_detach(struct net_device *dev)
2792{
2793 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2794 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002795 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002796 }
2797}
2798EXPORT_SYMBOL(netif_device_detach);
2799
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002800/**
2801 * netif_device_attach - mark device as attached
2802 * @dev: network device
2803 *
2804 * Mark device as attached from system and restart if needed.
2805 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002806void netif_device_attach(struct net_device *dev)
2807{
2808 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2809 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002810 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002811 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002812 }
2813}
2814EXPORT_SYMBOL(netif_device_attach);
2815
Jiri Pirko5605c762015-05-12 14:56:12 +02002816/*
2817 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2818 * to be used as a distribution range.
2819 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04002820static u16 skb_tx_hash(const struct net_device *dev,
2821 const struct net_device *sb_dev,
2822 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02002823{
2824 u32 hash;
2825 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04002826 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02002827
Alexander Duyckeadec8772018-07-09 12:19:48 -04002828 if (dev->num_tc) {
2829 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2830
2831 qoffset = sb_dev->tc_to_txq[tc].offset;
2832 qcount = sb_dev->tc_to_txq[tc].count;
2833 }
2834
Jiri Pirko5605c762015-05-12 14:56:12 +02002835 if (skb_rx_queue_recorded(skb)) {
2836 hash = skb_get_rx_queue(skb);
Alexander Duyck1b837d42018-04-27 14:06:53 -04002837 while (unlikely(hash >= qcount))
2838 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04002839 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02002840 }
2841
2842 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2843}
Jiri Pirko5605c762015-05-12 14:56:12 +02002844
Ben Hutchings36c92472012-01-17 07:57:56 +00002845static void skb_warn_bad_offload(const struct sk_buff *skb)
2846{
Wei Tang84d15ae2016-06-16 21:17:49 +08002847 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002848 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002849 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002850
Ben Greearc846ad92013-04-19 10:45:52 +00002851 if (!net_ratelimit())
2852 return;
2853
Bjørn Mork88ad4172015-11-16 19:16:40 +01002854 if (dev) {
2855 if (dev->dev.parent)
2856 name = dev_driver_string(dev->dev.parent);
2857 else
2858 name = netdev_name(dev);
2859 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002860 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2861 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002862 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002863 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002864 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2865 skb_shinfo(skb)->gso_type, skb->ip_summed);
2866}
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868/*
2869 * Invalidate hardware checksum when packet is to be mangled, and
2870 * complete checksum manually on outgoing path.
2871 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002872int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873{
Al Virod3bc23e2006-11-14 21:24:49 -08002874 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002875 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Patrick McHardy84fa7932006-08-29 16:44:56 -07002877 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002878 goto out_set_summed;
2879
2880 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002881 skb_warn_bad_offload(skb);
2882 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 }
2884
Eric Dumazetcef401d2013-01-25 20:34:37 +00002885 /* Before computing a checksum, we should make sure no frag could
2886 * be modified by an external entity : checksum could be wrong.
2887 */
2888 if (skb_has_shared_frag(skb)) {
2889 ret = __skb_linearize(skb);
2890 if (ret)
2891 goto out;
2892 }
2893
Michał Mirosław55508d62010-12-14 15:24:08 +00002894 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002895 BUG_ON(offset >= skb_headlen(skb));
2896 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2897
2898 offset += skb->csum_offset;
2899 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2900
2901 if (skb_cloned(skb) &&
2902 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2904 if (ret)
2905 goto out;
2906 }
2907
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002908 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002909out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002911out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return ret;
2913}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002914EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Davide Carattib72b5bf2017-05-18 15:44:38 +02002916int skb_crc32c_csum_help(struct sk_buff *skb)
2917{
2918 __le32 crc32c_csum;
2919 int ret = 0, offset, start;
2920
2921 if (skb->ip_summed != CHECKSUM_PARTIAL)
2922 goto out;
2923
2924 if (unlikely(skb_is_gso(skb)))
2925 goto out;
2926
2927 /* Before computing a checksum, we should make sure no frag could
2928 * be modified by an external entity : checksum could be wrong.
2929 */
2930 if (unlikely(skb_has_shared_frag(skb))) {
2931 ret = __skb_linearize(skb);
2932 if (ret)
2933 goto out;
2934 }
2935 start = skb_checksum_start_offset(skb);
2936 offset = start + offsetof(struct sctphdr, checksum);
2937 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
2938 ret = -EINVAL;
2939 goto out;
2940 }
2941 if (skb_cloned(skb) &&
2942 !skb_clone_writable(skb, offset + sizeof(__le32))) {
2943 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2944 if (ret)
2945 goto out;
2946 }
2947 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
2948 skb->len - start, ~(__u32)0,
2949 crc32c_csum_stub));
2950 *(__le32 *)(skb->data + offset) = crc32c_csum;
2951 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02002952 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02002953out:
2954 return ret;
2955}
2956
Vlad Yasevich53d64712014-03-27 17:26:18 -04002957__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002958{
2959 __be16 type = skb->protocol;
2960
Pravin B Shelar19acc322013-05-07 20:41:07 +00002961 /* Tunnel gso handlers can set protocol to ethernet. */
2962 if (type == htons(ETH_P_TEB)) {
2963 struct ethhdr *eth;
2964
2965 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2966 return 0;
2967
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07002968 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00002969 type = eth->h_proto;
2970 }
2971
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002972 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002973}
2974
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002975/**
2976 * skb_mac_gso_segment - mac layer segmentation handler.
2977 * @skb: buffer to segment
2978 * @features: features for the output path (see dev->features)
2979 */
2980struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2981 netdev_features_t features)
2982{
2983 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2984 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002985 int vlan_depth = skb->mac_len;
2986 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002987
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002988 if (unlikely(!type))
2989 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002990
Vlad Yasevich53d64712014-03-27 17:26:18 -04002991 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002992
2993 rcu_read_lock();
2994 list_for_each_entry_rcu(ptype, &offload_base, list) {
2995 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002996 segs = ptype->callbacks.gso_segment(skb, features);
2997 break;
2998 }
2999 }
3000 rcu_read_unlock();
3001
3002 __skb_push(skb, skb->data - skb_mac_header(skb));
3003
3004 return segs;
3005}
3006EXPORT_SYMBOL(skb_mac_gso_segment);
3007
3008
Cong Wang12b00042013-02-05 16:36:38 +00003009/* openvswitch calls this on rx path, so we need a different check.
3010 */
3011static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3012{
3013 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003014 return skb->ip_summed != CHECKSUM_PARTIAL &&
3015 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003016
3017 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003018}
3019
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003020/**
Cong Wang12b00042013-02-05 16:36:38 +00003021 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003022 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003023 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003024 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003025 *
3026 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003027 *
3028 * It may return NULL if the skb requires no segmentation. This is
3029 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003030 *
3031 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003032 */
Cong Wang12b00042013-02-05 16:36:38 +00003033struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3034 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003035{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003036 struct sk_buff *segs;
3037
Cong Wang12b00042013-02-05 16:36:38 +00003038 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003039 int err;
3040
Eric Dumazetb2504a52017-01-31 10:20:32 -08003041 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003042 err = skb_cow_head(skb, 0);
3043 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003044 return ERR_PTR(err);
3045 }
3046
Alexander Duyck802ab552016-04-10 21:45:03 -04003047 /* Only report GSO partial support if it will enable us to
3048 * support segmentation on this frame without needing additional
3049 * work.
3050 */
3051 if (features & NETIF_F_GSO_PARTIAL) {
3052 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3053 struct net_device *dev = skb->dev;
3054
3055 partial_features |= dev->features & dev->gso_partial_features;
3056 if (!skb_gso_ok(skb, features | partial_features))
3057 features &= ~NETIF_F_GSO_PARTIAL;
3058 }
3059
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003060 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
3061 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3062
Pravin B Shelar68c33162013-02-14 14:02:41 +00003063 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003064 SKB_GSO_CB(skb)->encap_level = 0;
3065
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003066 skb_reset_mac_header(skb);
3067 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003068
Eric Dumazetb2504a52017-01-31 10:20:32 -08003069 segs = skb_mac_gso_segment(skb, features);
3070
Willem de Bruijn8d74e9f2017-12-12 11:39:04 -05003071 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003072 skb_warn_bad_offload(skb);
3073
3074 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003075}
Cong Wang12b00042013-02-05 16:36:38 +00003076EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003077
Herbert Xufb286bb2005-11-10 13:01:24 -08003078/* Take action when hardware reception checksum errors are detected. */
3079#ifdef CONFIG_BUG
3080void netdev_rx_csum_fault(struct net_device *dev)
3081{
3082 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003083 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08003084 dump_stack();
3085 }
3086}
3087EXPORT_SYMBOL(netdev_rx_csum_fault);
3088#endif
3089
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003090/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003091static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003093#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 int i;
tchardingf4563a72017-02-09 17:56:07 +11003095
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003096 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003097 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3098 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003099
Ian Campbellea2ab692011-08-22 23:44:58 +00003100 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003101 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003102 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003103 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 return 0;
3106}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Simon Horman3b392dd2014-06-04 08:53:17 +09003108/* If MPLS offload request, verify we are testing hardware MPLS features
3109 * instead of standard features for the netdev.
3110 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003111#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003112static netdev_features_t net_mpls_features(struct sk_buff *skb,
3113 netdev_features_t features,
3114 __be16 type)
3115{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003116 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003117 features &= skb->dev->mpls_features;
3118
3119 return features;
3120}
3121#else
3122static netdev_features_t net_mpls_features(struct sk_buff *skb,
3123 netdev_features_t features,
3124 __be16 type)
3125{
3126 return features;
3127}
3128#endif
3129
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003130static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003131 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003132{
Vlad Yasevich53d64712014-03-27 17:26:18 -04003133 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09003134 __be16 type;
3135
3136 type = skb_network_protocol(skb, &tmp);
3137 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003138
Ed Cashinc0d680e2012-09-19 15:49:00 +00003139 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003140 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003141 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003142 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003143 if (illegal_highdma(skb->dev, skb))
3144 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003145
3146 return features;
3147}
3148
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003149netdev_features_t passthru_features_check(struct sk_buff *skb,
3150 struct net_device *dev,
3151 netdev_features_t features)
3152{
3153 return features;
3154}
3155EXPORT_SYMBOL(passthru_features_check);
3156
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003157static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003158 struct net_device *dev,
3159 netdev_features_t features)
3160{
3161 return vlan_features_check(skb, features);
3162}
3163
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003164static netdev_features_t gso_features_check(const struct sk_buff *skb,
3165 struct net_device *dev,
3166 netdev_features_t features)
3167{
3168 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3169
3170 if (gso_segs > dev->gso_max_segs)
3171 return features & ~NETIF_F_GSO_MASK;
3172
Alexander Duyck802ab552016-04-10 21:45:03 -04003173 /* Support for GSO partial features requires software
3174 * intervention before we can actually process the packets
3175 * so we need to strip support for any partial features now
3176 * and we can pull them back in after we have partially
3177 * segmented the frame.
3178 */
3179 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3180 features &= ~dev->gso_partial_features;
3181
3182 /* Make sure to clear the IPv4 ID mangling feature if the
3183 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003184 */
3185 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3186 struct iphdr *iph = skb->encapsulation ?
3187 inner_ip_hdr(skb) : ip_hdr(skb);
3188
3189 if (!(iph->frag_off & htons(IP_DF)))
3190 features &= ~NETIF_F_TSO_MANGLEID;
3191 }
3192
3193 return features;
3194}
3195
Florian Westphalc1e756b2014-05-05 15:00:44 +02003196netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003197{
Jesse Gross5f352272014-12-23 22:37:26 -08003198 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003199 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003200
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003201 if (skb_is_gso(skb))
3202 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003203
Jesse Gross5f352272014-12-23 22:37:26 -08003204 /* If encapsulation offload request, verify we are testing
3205 * hardware encapsulation features instead of standard
3206 * features for the netdev
3207 */
3208 if (skb->encapsulation)
3209 features &= dev->hw_enc_features;
3210
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003211 if (skb_vlan_tagged(skb))
3212 features = netdev_intersect_features(features,
3213 dev->vlan_features |
3214 NETIF_F_HW_VLAN_CTAG_TX |
3215 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003216
Jesse Gross5f352272014-12-23 22:37:26 -08003217 if (dev->netdev_ops->ndo_features_check)
3218 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3219 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003220 else
3221 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003222
Florian Westphalc1e756b2014-05-05 15:00:44 +02003223 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003224}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003225EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003226
David S. Miller2ea25512014-08-29 21:10:01 -07003227static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003228 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003229{
David S. Miller2ea25512014-08-29 21:10:01 -07003230 unsigned int len;
3231 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003232
Salam Noureddine7866a622015-01-27 11:35:48 -08003233 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07003234 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003235
David S. Miller2ea25512014-08-29 21:10:01 -07003236 len = skb->len;
3237 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003238 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003239 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003240
Patrick McHardy572a9d72009-11-10 06:14:14 +00003241 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003242}
David S. Miller2ea25512014-08-29 21:10:01 -07003243
David S. Miller8dcda222014-09-01 15:06:40 -07003244struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3245 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003246{
3247 struct sk_buff *skb = first;
3248 int rc = NETDEV_TX_OK;
3249
3250 while (skb) {
3251 struct sk_buff *next = skb->next;
3252
3253 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07003254 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003255 if (unlikely(!dev_xmit_complete(rc))) {
3256 skb->next = next;
3257 goto out;
3258 }
3259
3260 skb = next;
3261 if (netif_xmit_stopped(txq) && skb) {
3262 rc = NETDEV_TX_BUSY;
3263 break;
3264 }
3265 }
3266
3267out:
3268 *ret = rc;
3269 return skb;
3270}
3271
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003272static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3273 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003274{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003275 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003276 !vlan_hw_offload_capable(features, skb->vlan_proto))
3277 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003278 return skb;
3279}
3280
Davide Caratti43c26a12017-05-18 15:44:41 +02003281int skb_csum_hwoffload_help(struct sk_buff *skb,
3282 const netdev_features_t features)
3283{
3284 if (unlikely(skb->csum_not_inet))
3285 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3286 skb_crc32c_csum_help(skb);
3287
3288 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3289}
3290EXPORT_SYMBOL(skb_csum_hwoffload_help);
3291
Steffen Klassertf53c7232017-12-20 10:41:36 +01003292static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003293{
3294 netdev_features_t features;
3295
David S. Millereae3f882014-08-30 15:17:13 -07003296 features = netif_skb_features(skb);
3297 skb = validate_xmit_vlan(skb, features);
3298 if (unlikely(!skb))
3299 goto out_null;
3300
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003301 skb = sk_validate_xmit_skb(skb, dev);
3302 if (unlikely(!skb))
3303 goto out_null;
3304
Johannes Berg8b86a612015-04-17 15:45:04 +02003305 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003306 struct sk_buff *segs;
3307
3308 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003309 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003310 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003311 } else if (segs) {
3312 consume_skb(skb);
3313 skb = segs;
3314 }
David S. Millereae3f882014-08-30 15:17:13 -07003315 } else {
3316 if (skb_needs_linearize(skb, features) &&
3317 __skb_linearize(skb))
3318 goto out_kfree_skb;
3319
3320 /* If packet is not checksummed and device does not
3321 * support checksumming for this protocol, complete
3322 * checksumming here.
3323 */
3324 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3325 if (skb->encapsulation)
3326 skb_set_inner_transport_header(skb,
3327 skb_checksum_start_offset(skb));
3328 else
3329 skb_set_transport_header(skb,
3330 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003331 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003332 goto out_kfree_skb;
3333 }
3334 }
3335
Steffen Klassertf53c7232017-12-20 10:41:36 +01003336 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003337
David S. Millereae3f882014-08-30 15:17:13 -07003338 return skb;
3339
3340out_kfree_skb:
3341 kfree_skb(skb);
3342out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003343 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003344 return NULL;
3345}
3346
Steffen Klassertf53c7232017-12-20 10:41:36 +01003347struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003348{
3349 struct sk_buff *next, *head = NULL, *tail;
3350
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003351 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003352 next = skb->next;
3353 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003354
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003355 /* in case skb wont be segmented, point to itself */
3356 skb->prev = skb;
3357
Steffen Klassertf53c7232017-12-20 10:41:36 +01003358 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003359 if (!skb)
3360 continue;
3361
3362 if (!head)
3363 head = skb;
3364 else
3365 tail->next = skb;
3366 /* If skb was segmented, skb->prev points to
3367 * the last segment. If not, it still contains skb.
3368 */
3369 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003370 }
3371 return head;
3372}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003373EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003374
Eric Dumazet1def9232013-01-10 12:36:42 +00003375static void qdisc_pkt_len_init(struct sk_buff *skb)
3376{
3377 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3378
3379 qdisc_skb_cb(skb)->pkt_len = skb->len;
3380
3381 /* To get more precise estimation of bytes sent on wire,
3382 * we add to pkt_len the headers size of all segments
3383 */
3384 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003385 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003386 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003387
Eric Dumazet757b8b12013-01-15 21:14:21 -08003388 /* mac layer + network layer */
3389 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3390
3391 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003392 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3393 const struct tcphdr *th;
3394 struct tcphdr _tcphdr;
3395
3396 th = skb_header_pointer(skb, skb_transport_offset(skb),
3397 sizeof(_tcphdr), &_tcphdr);
3398 if (likely(th))
3399 hdr_len += __tcp_hdrlen(th);
3400 } else {
3401 struct udphdr _udphdr;
3402
3403 if (skb_header_pointer(skb, skb_transport_offset(skb),
3404 sizeof(_udphdr), &_udphdr))
3405 hdr_len += sizeof(struct udphdr);
3406 }
Jason Wang15e5a032013-03-25 20:19:59 +00003407
3408 if (shinfo->gso_type & SKB_GSO_DODGY)
3409 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3410 shinfo->gso_size);
3411
3412 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003413 }
3414}
3415
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003416static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3417 struct net_device *dev,
3418 struct netdev_queue *txq)
3419{
3420 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003421 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003422 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003423 int rc;
3424
Eric Dumazeta2da5702011-01-20 03:48:19 +00003425 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003426
3427 if (q->flags & TCQ_F_NOLOCK) {
3428 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
3429 __qdisc_drop(skb, &to_free);
3430 rc = NET_XMIT_DROP;
3431 } else {
3432 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni32f7b442018-05-15 10:50:31 +02003433 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003434 }
3435
3436 if (unlikely(to_free))
3437 kfree_skb_list(to_free);
3438 return rc;
3439 }
3440
Eric Dumazet79640a42010-06-02 05:09:29 -07003441 /*
3442 * Heuristic to force contended enqueues to serialize on a
3443 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003444 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003445 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003446 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003447 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003448 if (unlikely(contended))
3449 spin_lock(&q->busylock);
3450
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003451 spin_lock(root_lock);
3452 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003453 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003454 rc = NET_XMIT_DROP;
3455 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003456 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003457 /*
3458 * This is a work-conserving queue; there are no old skbs
3459 * waiting to be sent out; and the qdisc is not running -
3460 * xmit the skb directly.
3461 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003462
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003463 qdisc_bstats_update(q, skb);
3464
Eric Dumazet55a93b32014-10-03 15:31:07 -07003465 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003466 if (unlikely(contended)) {
3467 spin_unlock(&q->busylock);
3468 contended = false;
3469 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003470 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003471 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003472
John Fastabend6c148182017-12-07 09:54:06 -08003473 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003474 rc = NET_XMIT_SUCCESS;
3475 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003476 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003477 if (qdisc_run_begin(q)) {
3478 if (unlikely(contended)) {
3479 spin_unlock(&q->busylock);
3480 contended = false;
3481 }
3482 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003483 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003484 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003485 }
3486 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003487 if (unlikely(to_free))
3488 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003489 if (unlikely(contended))
3490 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003491 return rc;
3492}
3493
Daniel Borkmann86f85152013-12-29 17:27:11 +01003494#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003495static void skb_update_prio(struct sk_buff *skb)
3496{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003497 const struct netprio_map *map;
3498 const struct sock *sk;
3499 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003500
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003501 if (skb->priority)
3502 return;
3503 map = rcu_dereference_bh(skb->dev->priomap);
3504 if (!map)
3505 return;
3506 sk = skb_to_full_sk(skb);
3507 if (!sk)
3508 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003509
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003510 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3511
3512 if (prioidx < map->priomap_len)
3513 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003514}
3515#else
3516#define skb_update_prio(skb)
3517#endif
3518
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003519DEFINE_PER_CPU(int, xmit_recursion);
3520EXPORT_SYMBOL(xmit_recursion);
3521
Dave Jonesd29f7492008-07-22 14:09:06 -07003522/**
Michel Machado95603e22012-06-12 10:16:35 +00003523 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003524 * @net: network namespace this loopback is happening in
3525 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003526 * @skb: buffer to transmit
3527 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003528int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003529{
3530 skb_reset_mac_header(skb);
3531 __skb_pull(skb, skb_network_offset(skb));
3532 skb->pkt_type = PACKET_LOOPBACK;
3533 skb->ip_summed = CHECKSUM_UNNECESSARY;
3534 WARN_ON(!skb_dst(skb));
3535 skb_dst_force(skb);
3536 netif_rx_ni(skb);
3537 return 0;
3538}
3539EXPORT_SYMBOL(dev_loopback_xmit);
3540
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003541#ifdef CONFIG_NET_EGRESS
3542static struct sk_buff *
3543sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3544{
Jiri Pirko46209402017-11-03 11:46:25 +01003545 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003546 struct tcf_result cl_res;
3547
Jiri Pirko46209402017-11-03 11:46:25 +01003548 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003549 return skb;
3550
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003551 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003552 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003553
Jiri Pirko46209402017-11-03 11:46:25 +01003554 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003555 case TC_ACT_OK:
3556 case TC_ACT_RECLASSIFY:
3557 skb->tc_index = TC_H_MIN(cl_res.classid);
3558 break;
3559 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003560 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003561 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003562 kfree_skb(skb);
3563 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003564 case TC_ACT_STOLEN:
3565 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003566 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003567 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003568 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003569 return NULL;
3570 case TC_ACT_REDIRECT:
3571 /* No need to push/pop skb's mac_header here on egress! */
3572 skb_do_redirect(skb);
3573 *ret = NET_XMIT_SUCCESS;
3574 return NULL;
3575 default:
3576 break;
3577 }
3578
3579 return skb;
3580}
3581#endif /* CONFIG_NET_EGRESS */
3582
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003583#ifdef CONFIG_XPS
3584static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3585 struct xps_dev_maps *dev_maps, unsigned int tci)
3586{
3587 struct xps_map *map;
3588 int queue_index = -1;
3589
3590 if (dev->num_tc) {
3591 tci *= dev->num_tc;
3592 tci += netdev_get_prio_tc_map(dev, skb->priority);
3593 }
3594
3595 map = rcu_dereference(dev_maps->attr_map[tci]);
3596 if (map) {
3597 if (map->len == 1)
3598 queue_index = map->queues[0];
3599 else
3600 queue_index = map->queues[reciprocal_scale(
3601 skb_get_hash(skb), map->len)];
3602 if (unlikely(queue_index >= dev->real_num_tx_queues))
3603 queue_index = -1;
3604 }
3605 return queue_index;
3606}
3607#endif
3608
Alexander Duyckeadec8772018-07-09 12:19:48 -04003609static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3610 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003611{
3612#ifdef CONFIG_XPS
3613 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003614 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003615 int queue_index = -1;
3616
Amritha Nambiar04157462018-06-29 21:26:46 -07003617 if (!static_key_false(&xps_needed))
3618 return -1;
3619
Jiri Pirko638b2a62015-05-12 14:56:13 +02003620 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003621 if (!static_key_false(&xps_rxqs_needed))
3622 goto get_cpus_map;
3623
Alexander Duyckeadec8772018-07-09 12:19:48 -04003624 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003625 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003626 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003627
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003628 if (tci >= 0 && tci < dev->num_rx_queues)
3629 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3630 tci);
3631 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003632
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003633get_cpus_map:
3634 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003635 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003636 if (dev_maps) {
3637 unsigned int tci = skb->sender_cpu - 1;
3638
3639 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3640 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003641 }
3642 }
3643 rcu_read_unlock();
3644
3645 return queue_index;
3646#else
3647 return -1;
3648#endif
3649}
3650
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003651u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -04003652 struct net_device *sb_dev,
3653 select_queue_fallback_t fallback)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003654{
3655 return 0;
3656}
3657EXPORT_SYMBOL(dev_pick_tx_zero);
3658
3659u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -04003660 struct net_device *sb_dev,
3661 select_queue_fallback_t fallback)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003662{
3663 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3664}
3665EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3666
Alexander Duyck8ec56fc2018-07-09 12:20:04 -04003667static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3668 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003669{
3670 struct sock *sk = skb->sk;
3671 int queue_index = sk_tx_queue_get(sk);
3672
Alexander Duyckeadec8772018-07-09 12:19:48 -04003673 sb_dev = sb_dev ? : dev;
3674
Jiri Pirko638b2a62015-05-12 14:56:13 +02003675 if (queue_index < 0 || skb->ooo_okay ||
3676 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003677 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003678
Jiri Pirko638b2a62015-05-12 14:56:13 +02003679 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003680 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003681
3682 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003683 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003684 rcu_access_pointer(sk->sk_dst_cache))
3685 sk_tx_queue_set(sk, new_index);
3686
3687 queue_index = new_index;
3688 }
3689
3690 return queue_index;
3691}
3692
3693struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3694 struct sk_buff *skb,
Alexander Duyckeadec8772018-07-09 12:19:48 -04003695 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003696{
3697 int queue_index = 0;
3698
3699#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003700 u32 sender_cpu = skb->sender_cpu - 1;
3701
3702 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003703 skb->sender_cpu = raw_smp_processor_id() + 1;
3704#endif
3705
3706 if (dev->real_num_tx_queues != 1) {
3707 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11003708
Jiri Pirko638b2a62015-05-12 14:56:13 +02003709 if (ops->ndo_select_queue)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003710 queue_index = ops->ndo_select_queue(dev, skb, sb_dev,
Jiri Pirko638b2a62015-05-12 14:56:13 +02003711 __netdev_pick_tx);
3712 else
Alexander Duyck8ec56fc2018-07-09 12:20:04 -04003713 queue_index = __netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003714
Alexander Duyckd5845272017-11-22 10:57:41 -08003715 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003716 }
3717
3718 skb_set_queue_mapping(skb, queue_index);
3719 return netdev_get_tx_queue(dev, queue_index);
3720}
3721
Michel Machado95603e22012-06-12 10:16:35 +00003722/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003723 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003724 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04003725 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003726 *
3727 * Queue a buffer for transmission to a network device. The caller must
3728 * have set the device and priority and built the buffer before calling
3729 * this function. The function can be called from an interrupt.
3730 *
3731 * A negative errno code is returned on a failure. A success does not
3732 * guarantee the frame will be transmitted as it may be dropped due
3733 * to congestion or traffic shaping.
3734 *
3735 * -----------------------------------------------------------------------------------
3736 * I notice this method can also return errors from the queue disciplines,
3737 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3738 * be positive.
3739 *
3740 * Regardless of the return value, the skb is consumed, so it is currently
3741 * difficult to retry a send to this method. (You can bump the ref count
3742 * before sending to hold a reference for retry if you are careful.)
3743 *
3744 * When calling this method, interrupts MUST be enabled. This is because
3745 * the BH enable code must have IRQs enabled so that it will not deadlock.
3746 * --BLG
3747 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003748static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749{
3750 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003751 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 struct Qdisc *q;
3753 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01003754 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003756 skb_reset_mac_header(skb);
3757
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003758 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3759 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3760
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003761 /* Disable soft irqs for various locks below. Also
3762 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003764 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765
Neil Horman5bc14212011-11-22 05:10:51 +00003766 skb_update_prio(skb);
3767
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003768 qdisc_pkt_len_init(skb);
3769#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003770 skb->tc_at_ingress = 0;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003771# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07003772 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003773 skb = sch_handle_egress(skb, &rc, dev);
3774 if (!skb)
3775 goto out;
3776 }
3777# endif
3778#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003779 /* If device/qdisc don't need skb->dst, release it right now while
3780 * its hot in this cpu cache.
3781 */
3782 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3783 skb_dst_drop(skb);
3784 else
3785 skb_dst_force(skb);
3786
Alexander Duyckeadec8772018-07-09 12:19:48 -04003787 txq = netdev_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003788 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003789
Koki Sanagicf66ba52010-08-23 18:45:02 +09003790 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003792 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003793 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 }
3795
3796 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11003797 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
tchardingeb13da12017-02-09 17:56:06 +11003799 * Really, it is unlikely that netif_tx_lock protection is necessary
3800 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
3801 * counters.)
3802 * However, it is possible, that they rely on protection
3803 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
tchardingeb13da12017-02-09 17:56:06 +11003805 * Check this and shot the lock. It is not prone from deadlocks.
3806 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 */
3808 if (dev->flags & IFF_UP) {
3809 int cpu = smp_processor_id(); /* ok because BHs are off */
3810
David S. Millerc773e842008-07-08 23:13:53 -07003811 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003812 if (unlikely(__this_cpu_read(xmit_recursion) >
3813 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003814 goto recursion_alert;
3815
Steffen Klassertf53c7232017-12-20 10:41:36 +01003816 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003817 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003818 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003819
David S. Millerc773e842008-07-08 23:13:53 -07003820 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821
Tom Herbert734664982011-11-28 16:32:44 +00003822 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003823 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07003824 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003825 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003826 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003827 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 goto out;
3829 }
3830 }
David S. Millerc773e842008-07-08 23:13:53 -07003831 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003832 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3833 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 } else {
3835 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003836 * unfortunately
3837 */
3838recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003839 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3840 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 }
3842 }
3843
3844 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003845 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
Eric Dumazet015f0682014-03-27 08:45:56 -07003847 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003848 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 return rc;
3850out:
Herbert Xud4828d82006-06-22 02:28:18 -07003851 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 return rc;
3853}
Jason Wangf663dd92014-01-10 16:18:26 +08003854
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003855int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003856{
3857 return __dev_queue_xmit(skb, NULL);
3858}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003859EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
Alexander Duyckeadec8772018-07-09 12:19:48 -04003861int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08003862{
Alexander Duyckeadec8772018-07-09 12:19:48 -04003863 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08003864}
3865EXPORT_SYMBOL(dev_queue_xmit_accel);
3866
Magnus Karlsson865b03f2018-05-02 13:01:33 +02003867int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
3868{
3869 struct net_device *dev = skb->dev;
3870 struct sk_buff *orig_skb = skb;
3871 struct netdev_queue *txq;
3872 int ret = NETDEV_TX_BUSY;
3873 bool again = false;
3874
3875 if (unlikely(!netif_running(dev) ||
3876 !netif_carrier_ok(dev)))
3877 goto drop;
3878
3879 skb = validate_xmit_skb_list(skb, dev, &again);
3880 if (skb != orig_skb)
3881 goto drop;
3882
3883 skb_set_queue_mapping(skb, queue_id);
3884 txq = skb_get_tx_queue(dev, skb);
3885
3886 local_bh_disable();
3887
3888 HARD_TX_LOCK(dev, txq, smp_processor_id());
3889 if (!netif_xmit_frozen_or_drv_stopped(txq))
3890 ret = netdev_start_xmit(skb, dev, txq, false);
3891 HARD_TX_UNLOCK(dev, txq);
3892
3893 local_bh_enable();
3894
3895 if (!dev_xmit_complete(ret))
3896 kfree_skb(skb);
3897
3898 return ret;
3899drop:
3900 atomic_long_inc(&dev->tx_dropped);
3901 kfree_skb_list(skb);
3902 return NET_XMIT_DROP;
3903}
3904EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
tchardingeb13da12017-02-09 17:56:06 +11003906/*************************************************************************
3907 * Receiver routines
3908 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003910int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003911EXPORT_SYMBOL(netdev_max_backlog);
3912
Eric Dumazet3b098e22010-05-15 23:57:10 -07003913int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003914int netdev_budget __read_mostly = 300;
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04003915unsigned int __read_mostly netdev_budget_usecs = 2000;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01003916int weight_p __read_mostly = 64; /* old backlog weight */
3917int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
3918int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
3919int dev_rx_weight __read_mostly = 64;
3920int dev_tx_weight __read_mostly = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003922/* Called with irq disabled */
3923static inline void ____napi_schedule(struct softnet_data *sd,
3924 struct napi_struct *napi)
3925{
3926 list_add_tail(&napi->poll_list, &sd->poll_list);
3927 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3928}
3929
Eric Dumazetdf334542010-03-24 19:13:54 +00003930#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003931
3932/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003933struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003934EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003935u32 rps_cpu_mask __read_mostly;
3936EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003937
Ingo Molnarc5905af2012-02-24 08:31:31 +01003938struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003939EXPORT_SYMBOL(rps_needed);
Eric Dumazet13bfff22016-12-07 08:29:10 -08003940struct static_key rfs_needed __read_mostly;
3941EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003942
Ben Hutchingsc4454772011-01-19 11:03:53 +00003943static struct rps_dev_flow *
3944set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3945 struct rps_dev_flow *rflow, u16 next_cpu)
3946{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003947 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003948#ifdef CONFIG_RFS_ACCEL
3949 struct netdev_rx_queue *rxqueue;
3950 struct rps_dev_flow_table *flow_table;
3951 struct rps_dev_flow *old_rflow;
3952 u32 flow_id;
3953 u16 rxq_index;
3954 int rc;
3955
3956 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003957 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3958 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003959 goto out;
3960 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3961 if (rxq_index == skb_get_rx_queue(skb))
3962 goto out;
3963
3964 rxqueue = dev->_rx + rxq_index;
3965 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3966 if (!flow_table)
3967 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003968 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003969 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3970 rxq_index, flow_id);
3971 if (rc < 0)
3972 goto out;
3973 old_rflow = rflow;
3974 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003975 rflow->filter = rc;
3976 if (old_rflow->filter == rflow->filter)
3977 old_rflow->filter = RPS_NO_FILTER;
3978 out:
3979#endif
3980 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003981 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003982 }
3983
Ben Hutchings09994d12011-10-03 04:42:46 +00003984 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003985 return rflow;
3986}
3987
Tom Herbert0a9627f2010-03-16 08:03:29 +00003988/*
3989 * get_rps_cpu is called from netif_receive_skb and returns the target
3990 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003991 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003992 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003993static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3994 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003995{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003996 const struct rps_sock_flow_table *sock_flow_table;
3997 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003998 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003999 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004000 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004001 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004002 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004003
Tom Herbert0a9627f2010-03-16 08:03:29 +00004004 if (skb_rx_queue_recorded(skb)) {
4005 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004006
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004007 if (unlikely(index >= dev->real_num_rx_queues)) {
4008 WARN_ONCE(dev->real_num_rx_queues > 1,
4009 "%s received packet on queue %u, but number "
4010 "of RX queues is %u\n",
4011 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004012 goto done;
4013 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004014 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004015 }
4016
Eric Dumazet567e4b72015-02-06 12:59:01 -08004017 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4018
4019 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4020 map = rcu_dereference(rxqueue->rps_map);
4021 if (!flow_table && !map)
4022 goto done;
4023
Changli Gao2d47b452010-08-17 19:00:56 +00004024 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004025 hash = skb_get_hash(skb);
4026 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004027 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004028
Tom Herbertfec5e652010-04-16 16:01:27 -07004029 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4030 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004031 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004032 u32 next_cpu;
4033 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004034
Eric Dumazet567e4b72015-02-06 12:59:01 -08004035 /* First check into global flow table if there is a match */
4036 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4037 if ((ident ^ hash) & ~rps_cpu_mask)
4038 goto try_rps;
4039
4040 next_cpu = ident & rps_cpu_mask;
4041
4042 /* OK, now we know there is a match,
4043 * we can look at the local (per receive queue) flow table
4044 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004045 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004046 tcpu = rflow->cpu;
4047
Tom Herbertfec5e652010-04-16 16:01:27 -07004048 /*
4049 * If the desired CPU (where last recvmsg was done) is
4050 * different from current CPU (one in the rx-queue flow
4051 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004052 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004053 * - Current CPU is offline.
4054 * - The current CPU's queue tail has advanced beyond the
4055 * last packet that was enqueued using this table entry.
4056 * This guarantees that all previous packets for the flow
4057 * have been dequeued, thus preserving in order delivery.
4058 */
4059 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004060 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004061 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004062 rflow->last_qtail)) >= 0)) {
4063 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004064 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004065 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004066
Eric Dumazeta31196b2015-04-25 09:35:24 -07004067 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004068 *rflowp = rflow;
4069 cpu = tcpu;
4070 goto done;
4071 }
4072 }
4073
Eric Dumazet567e4b72015-02-06 12:59:01 -08004074try_rps:
4075
Tom Herbert0a9627f2010-03-16 08:03:29 +00004076 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004077 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004078 if (cpu_online(tcpu)) {
4079 cpu = tcpu;
4080 goto done;
4081 }
4082 }
4083
4084done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004085 return cpu;
4086}
4087
Ben Hutchingsc4454772011-01-19 11:03:53 +00004088#ifdef CONFIG_RFS_ACCEL
4089
4090/**
4091 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4092 * @dev: Device on which the filter was set
4093 * @rxq_index: RX queue index
4094 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4095 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4096 *
4097 * Drivers that implement ndo_rx_flow_steer() should periodically call
4098 * this function for each installed filter and remove the filters for
4099 * which it returns %true.
4100 */
4101bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4102 u32 flow_id, u16 filter_id)
4103{
4104 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4105 struct rps_dev_flow_table *flow_table;
4106 struct rps_dev_flow *rflow;
4107 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004108 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004109
4110 rcu_read_lock();
4111 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4112 if (flow_table && flow_id <= flow_table->mask) {
4113 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004114 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004115 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004116 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4117 rflow->last_qtail) <
4118 (int)(10 * flow_table->mask)))
4119 expire = false;
4120 }
4121 rcu_read_unlock();
4122 return expire;
4123}
4124EXPORT_SYMBOL(rps_may_expire_flow);
4125
4126#endif /* CONFIG_RFS_ACCEL */
4127
Tom Herbert0a9627f2010-03-16 08:03:29 +00004128/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004129static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004130{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004131 struct softnet_data *sd = data;
4132
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004133 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004134 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004135}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004136
Tom Herbertfec5e652010-04-16 16:01:27 -07004137#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004138
4139/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004140 * Check if this softnet_data structure is another cpu one
4141 * If yes, queue it to our IPI list and return 1
4142 * If no, return 0
4143 */
4144static int rps_ipi_queued(struct softnet_data *sd)
4145{
4146#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004147 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004148
4149 if (sd != mysd) {
4150 sd->rps_ipi_next = mysd->rps_ipi_list;
4151 mysd->rps_ipi_list = sd;
4152
4153 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4154 return 1;
4155 }
4156#endif /* CONFIG_RPS */
4157 return 0;
4158}
4159
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004160#ifdef CONFIG_NET_FLOW_LIMIT
4161int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4162#endif
4163
4164static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4165{
4166#ifdef CONFIG_NET_FLOW_LIMIT
4167 struct sd_flow_limit *fl;
4168 struct softnet_data *sd;
4169 unsigned int old_flow, new_flow;
4170
4171 if (qlen < (netdev_max_backlog >> 1))
4172 return false;
4173
Christoph Lameter903ceff2014-08-17 12:30:35 -05004174 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004175
4176 rcu_read_lock();
4177 fl = rcu_dereference(sd->flow_limit);
4178 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004179 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004180 old_flow = fl->history[fl->history_head];
4181 fl->history[fl->history_head] = new_flow;
4182
4183 fl->history_head++;
4184 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4185
4186 if (likely(fl->buckets[old_flow]))
4187 fl->buckets[old_flow]--;
4188
4189 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4190 fl->count++;
4191 rcu_read_unlock();
4192 return true;
4193 }
4194 }
4195 rcu_read_unlock();
4196#endif
4197 return false;
4198}
4199
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004200/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004201 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4202 * queue (may be a remote CPU queue).
4203 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004204static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4205 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004206{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004207 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004208 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004209 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004210
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004211 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004212
4213 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004214
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004215 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004216 if (!netif_running(skb->dev))
4217 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004218 qlen = skb_queue_len(&sd->input_pkt_queue);
4219 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004220 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004221enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004222 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004223 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004224 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004225 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004226 return NET_RX_SUCCESS;
4227 }
4228
Eric Dumazetebda37c22010-05-06 23:51:21 +00004229 /* Schedule NAPI for backlog device
4230 * We can use non atomic operation since we own the queue lock
4231 */
4232 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004233 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004234 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004235 }
4236 goto enqueue;
4237 }
4238
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004239drop:
Changli Gaodee42872010-05-02 05:42:16 +00004240 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004241 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004242
Tom Herbert0a9627f2010-03-16 08:03:29 +00004243 local_irq_restore(flags);
4244
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004245 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004246 kfree_skb(skb);
4247 return NET_RX_DROP;
4248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004250static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4251{
4252 struct net_device *dev = skb->dev;
4253 struct netdev_rx_queue *rxqueue;
4254
4255 rxqueue = dev->_rx;
4256
4257 if (skb_rx_queue_recorded(skb)) {
4258 u16 index = skb_get_rx_queue(skb);
4259
4260 if (unlikely(index >= dev->real_num_rx_queues)) {
4261 WARN_ONCE(dev->real_num_rx_queues > 1,
4262 "%s received packet on queue %u, but number "
4263 "of RX queues is %u\n",
4264 dev->name, index, dev->real_num_rx_queues);
4265
4266 return rxqueue; /* Return first rxqueue */
4267 }
4268 rxqueue += index;
4269 }
4270 return rxqueue;
4271}
4272
John Fastabendd4455162017-07-17 09:26:45 -07004273static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004274 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004275 struct bpf_prog *xdp_prog)
4276{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004277 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004278 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004279 u32 metalen, act = XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004280 int hlen, off;
4281 u32 mac_len;
4282
4283 /* Reinjected packets coming from act_mirred or similar should
4284 * not get XDP generic processing.
4285 */
Paolo Abenicd11b1642018-07-30 14:30:44 +02004286 if (skb_cloned(skb) || skb_is_tc_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004287 return XDP_PASS;
4288
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004289 /* XDP packets must be linear and must have sufficient headroom
4290 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4291 * native XDP provides, thus we need to do it here as well.
4292 */
4293 if (skb_is_nonlinear(skb) ||
4294 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4295 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4296 int troom = skb->tail + skb->data_len - skb->end;
4297
4298 /* In case we have to go down the path and also linearize,
4299 * then lets do the pskb_expand_head() work just once here.
4300 */
4301 if (pskb_expand_head(skb,
4302 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4303 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4304 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004305 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004306 goto do_drop;
4307 }
John Fastabendd4455162017-07-17 09:26:45 -07004308
4309 /* The XDP program wants to see the packet starting at the MAC
4310 * header.
4311 */
4312 mac_len = skb->data - skb_mac_header(skb);
4313 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004314 xdp->data = skb->data - mac_len;
4315 xdp->data_meta = xdp->data;
4316 xdp->data_end = xdp->data + hlen;
4317 xdp->data_hard_start = skb->data - skb_headroom(skb);
4318 orig_data_end = xdp->data_end;
4319 orig_data = xdp->data;
John Fastabendd4455162017-07-17 09:26:45 -07004320
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004321 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004322 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004323
Björn Töpel02671e22018-05-02 13:01:30 +02004324 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004325
Björn Töpel02671e22018-05-02 13:01:30 +02004326 off = xdp->data - orig_data;
John Fastabendd4455162017-07-17 09:26:45 -07004327 if (off > 0)
4328 __skb_pull(skb, off);
4329 else if (off < 0)
4330 __skb_push(skb, -off);
Edward Cree92dd5452017-09-19 18:45:56 +01004331 skb->mac_header += off;
John Fastabendd4455162017-07-17 09:26:45 -07004332
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004333 /* check if bpf_xdp_adjust_tail was used. it can only "shrink"
4334 * pckt.
4335 */
Björn Töpel02671e22018-05-02 13:01:30 +02004336 off = orig_data_end - xdp->data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004337 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004338 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004339 skb->len -= off;
Björn Töpel02671e22018-05-02 13:01:30 +02004340
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004341 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004342
John Fastabendd4455162017-07-17 09:26:45 -07004343 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004344 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004345 case XDP_TX:
4346 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004347 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004348 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004349 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004350 if (metalen)
4351 skb_metadata_set(skb, metalen);
4352 break;
John Fastabendd4455162017-07-17 09:26:45 -07004353 default:
4354 bpf_warn_invalid_xdp_action(act);
4355 /* fall through */
4356 case XDP_ABORTED:
4357 trace_xdp_exception(skb->dev, xdp_prog, act);
4358 /* fall through */
4359 case XDP_DROP:
4360 do_drop:
4361 kfree_skb(skb);
4362 break;
4363 }
4364
4365 return act;
4366}
4367
4368/* When doing generic XDP we have to bypass the qdisc layer and the
4369 * network taps in order to match in-driver-XDP behavior.
4370 */
Jason Wang7c497472017-08-11 19:41:17 +08004371void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004372{
4373 struct net_device *dev = skb->dev;
4374 struct netdev_queue *txq;
4375 bool free_skb = true;
4376 int cpu, rc;
4377
4378 txq = netdev_pick_tx(dev, skb, NULL);
4379 cpu = smp_processor_id();
4380 HARD_TX_LOCK(dev, txq, cpu);
4381 if (!netif_xmit_stopped(txq)) {
4382 rc = netdev_start_xmit(skb, dev, txq, 0);
4383 if (dev_xmit_complete(rc))
4384 free_skb = false;
4385 }
4386 HARD_TX_UNLOCK(dev, txq);
4387 if (free_skb) {
4388 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4389 kfree_skb(skb);
4390 }
4391}
Jason Wang7c497472017-08-11 19:41:17 +08004392EXPORT_SYMBOL_GPL(generic_xdp_tx);
John Fastabendd4455162017-07-17 09:26:45 -07004393
Davidlohr Bueso02786472018-05-08 09:07:02 -07004394static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004395
Jason Wang7c497472017-08-11 19:41:17 +08004396int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004397{
John Fastabendd4455162017-07-17 09:26:45 -07004398 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004399 struct xdp_buff xdp;
4400 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004401 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004402
Björn Töpel02671e22018-05-02 13:01:30 +02004403 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004404 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004405 switch (act) {
4406 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004407 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004408 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004409 if (err)
4410 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004411 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004412 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004413 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004414 break;
4415 }
John Fastabendd4455162017-07-17 09:26:45 -07004416 return XDP_DROP;
4417 }
4418 }
4419 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004420out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004421 kfree_skb(skb);
4422 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004423}
Jason Wang7c497472017-08-11 19:41:17 +08004424EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004425
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004426static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004428 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
Eric Dumazet588f0332011-11-15 04:12:55 +00004430 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Koki Sanagicf66ba52010-08-23 18:45:02 +09004432 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004433
Davidlohr Bueso02786472018-05-08 09:07:02 -07004434 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07004435 int ret;
4436
4437 preempt_disable();
4438 rcu_read_lock();
4439 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
4440 rcu_read_unlock();
4441 preempt_enable();
John Fastabendd4455162017-07-17 09:26:45 -07004442
John Fastabend6103aa92017-07-17 09:27:50 -07004443 /* Consider XDP consuming the packet a success from
4444 * the netdev point of view we do not want to count
4445 * this as an error.
4446 */
John Fastabendd4455162017-07-17 09:26:45 -07004447 if (ret != XDP_PASS)
John Fastabend6103aa92017-07-17 09:27:50 -07004448 return NET_RX_SUCCESS;
John Fastabendd4455162017-07-17 09:26:45 -07004449 }
4450
Eric Dumazetdf334542010-03-24 19:13:54 +00004451#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004452 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004453 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004454 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
Changli Gaocece1942010-08-07 20:35:43 -07004456 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004457 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004458
4459 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004460 if (cpu < 0)
4461 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004462
4463 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4464
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004465 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004466 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004467 } else
4468#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004469 {
4470 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004471
Tom Herbertfec5e652010-04-16 16:01:27 -07004472 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4473 put_cpu();
4474 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004475 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004477
4478/**
4479 * netif_rx - post buffer to the network code
4480 * @skb: buffer to post
4481 *
4482 * This function receives a packet from a device driver and queues it for
4483 * the upper (protocol) levels to process. It always succeeds. The buffer
4484 * may be dropped during processing for congestion control or by the
4485 * protocol layers.
4486 *
4487 * return values:
4488 * NET_RX_SUCCESS (no congestion)
4489 * NET_RX_DROP (packet was dropped)
4490 *
4491 */
4492
4493int netif_rx(struct sk_buff *skb)
4494{
4495 trace_netif_rx_entry(skb);
4496
4497 return netif_rx_internal(skb);
4498}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004499EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
4501int netif_rx_ni(struct sk_buff *skb)
4502{
4503 int err;
4504
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004505 trace_netif_rx_ni_entry(skb);
4506
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004508 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 if (local_softirq_pending())
4510 do_softirq();
4511 preempt_enable();
4512
4513 return err;
4514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515EXPORT_SYMBOL(netif_rx_ni);
4516
Emese Revfy0766f782016-06-20 20:42:34 +02004517static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004519 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
4521 if (sd->completion_queue) {
4522 struct sk_buff *clist;
4523
4524 local_irq_disable();
4525 clist = sd->completion_queue;
4526 sd->completion_queue = NULL;
4527 local_irq_enable();
4528
4529 while (clist) {
4530 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004531
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 clist = clist->next;
4533
Reshetova, Elena63354792017-06-30 13:07:58 +03004534 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004535 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4536 trace_consume_skb(skb);
4537 else
4538 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004539
4540 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4541 __kfree_skb(skb);
4542 else
4543 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004545
4546 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 }
4548
4549 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004550 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
4552 local_irq_disable();
4553 head = sd->output_queue;
4554 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004555 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 local_irq_enable();
4557
4558 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004559 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004560 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004561
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 head = head->next_sched;
4563
John Fastabend6b3ba912017-12-07 09:54:25 -08004564 if (!(q->flags & TCQ_F_NOLOCK)) {
4565 root_lock = qdisc_lock(q);
4566 spin_lock(root_lock);
4567 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004568 /* We need to make sure head->next_sched is read
4569 * before clearing __QDISC_STATE_SCHED
4570 */
4571 smp_mb__before_atomic();
4572 clear_bit(__QDISC_STATE_SCHED, &q->state);
4573 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004574 if (root_lock)
4575 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 }
4577 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004578
4579 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580}
4581
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004582#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004583/* This hook is defined here for ATM LANE */
4584int (*br_fdb_test_addr_hook)(struct net_device *dev,
4585 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004586EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004587#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004589static inline struct sk_buff *
4590sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4591 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004592{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004593#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004594 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004595 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004596
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004597 /* If there's at least one ingress present somewhere (so
4598 * we get here via enabled static key), remaining devices
4599 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004600 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004601 */
Jiri Pirko46209402017-11-03 11:46:25 +01004602 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004603 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004604
Herbert Xuf697c3e2007-10-14 00:38:47 -07004605 if (*pt_prev) {
4606 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4607 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004608 }
4609
Florian Westphal33654952015-05-14 00:36:28 +02004610 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004611 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004612 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004613
Jiri Pirko46209402017-11-03 11:46:25 +01004614 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004615 case TC_ACT_OK:
4616 case TC_ACT_RECLASSIFY:
4617 skb->tc_index = TC_H_MIN(cl_res.classid);
4618 break;
4619 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004620 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004621 kfree_skb(skb);
4622 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004623 case TC_ACT_STOLEN:
4624 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004625 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004626 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004627 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004628 case TC_ACT_REDIRECT:
4629 /* skb_mac_header check was done by cls/act_bpf, so
4630 * we can safely push the L2 header back before
4631 * redirecting to another netdev
4632 */
4633 __skb_push(skb, skb->mac_len);
4634 skb_do_redirect(skb);
4635 return NULL;
Paolo Abenicd11b1642018-07-30 14:30:44 +02004636 case TC_ACT_REINSERT:
4637 /* this does not scrub the packet, and updates stats on error */
4638 skb_tc_reinsert(skb, &cl_res);
4639 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004640 default:
4641 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004642 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004643#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004644 return skb;
4645}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004647/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004648 * netdev_is_rx_handler_busy - check if receive handler is registered
4649 * @dev: device to check
4650 *
4651 * Check if a receive handler is already registered for a given device.
4652 * Return true if there one.
4653 *
4654 * The caller must hold the rtnl_mutex.
4655 */
4656bool netdev_is_rx_handler_busy(struct net_device *dev)
4657{
4658 ASSERT_RTNL();
4659 return dev && rtnl_dereference(dev->rx_handler);
4660}
4661EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4662
4663/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004664 * netdev_rx_handler_register - register receive handler
4665 * @dev: device to register a handler for
4666 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004667 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004668 *
Masanari Iidae2278672014-02-18 22:54:36 +09004669 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004670 * called from __netif_receive_skb. A negative errno code is returned
4671 * on a failure.
4672 *
4673 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004674 *
4675 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004676 */
4677int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004678 rx_handler_func_t *rx_handler,
4679 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004680{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08004681 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004682 return -EBUSY;
4683
Paolo Abenif54262502018-03-09 10:39:24 +01004684 if (dev->priv_flags & IFF_NO_RX_HANDLER)
4685 return -EINVAL;
4686
Eric Dumazet00cfec32013-03-29 03:01:22 +00004687 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004688 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004689 rcu_assign_pointer(dev->rx_handler, rx_handler);
4690
4691 return 0;
4692}
4693EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4694
4695/**
4696 * netdev_rx_handler_unregister - unregister receive handler
4697 * @dev: device to unregister a handler from
4698 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004699 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004700 *
4701 * The caller must hold the rtnl_mutex.
4702 */
4703void netdev_rx_handler_unregister(struct net_device *dev)
4704{
4705
4706 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004707 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004708 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4709 * section has a guarantee to see a non NULL rx_handler_data
4710 * as well.
4711 */
4712 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004713 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004714}
4715EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4716
Mel Gormanb4b9e352012-07-31 16:44:26 -07004717/*
4718 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4719 * the special handling of PFMEMALLOC skbs.
4720 */
4721static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4722{
4723 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004724 case htons(ETH_P_ARP):
4725 case htons(ETH_P_IP):
4726 case htons(ETH_P_IPV6):
4727 case htons(ETH_P_8021Q):
4728 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004729 return true;
4730 default:
4731 return false;
4732 }
4733}
4734
Pablo Neirae687ad62015-05-13 18:19:38 +02004735static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4736 int *ret, struct net_device *orig_dev)
4737{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004738#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004739 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004740 int ingress_retval;
4741
Pablo Neirae687ad62015-05-13 18:19:38 +02004742 if (*pt_prev) {
4743 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4744 *pt_prev = NULL;
4745 }
4746
Aaron Conole2c1e2702016-09-21 11:35:03 -04004747 rcu_read_lock();
4748 ingress_retval = nf_hook_ingress(skb);
4749 rcu_read_unlock();
4750 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004751 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004752#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004753 return 0;
4754}
Pablo Neirae687ad62015-05-13 18:19:38 +02004755
Edward Cree88eb1942018-07-02 16:13:56 +01004756static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc,
4757 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758{
4759 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004760 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004761 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004762 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08004764 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
Eric Dumazet588f0332011-11-15 04:12:55 +00004766 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004767
Koki Sanagicf66ba52010-08-23 18:45:02 +09004768 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004769
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004770 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004771
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004772 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004773 if (!skb_transport_header_was_set(skb))
4774 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004775 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
4777 pt_prev = NULL;
4778
David S. Miller63d8ea72011-02-28 10:48:59 -08004779another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004780 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004781
4782 __this_cpu_inc(softnet_data.processed);
4783
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004784 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4785 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004786 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004787 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004788 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004789 }
4790
Willem de Bruijne7246e12017-01-07 17:06:35 -05004791 if (skb_skip_tc_classify(skb))
4792 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793
David S. Miller9754e292013-02-14 15:57:38 -05004794 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004795 goto skip_taps;
4796
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004798 if (pt_prev)
4799 ret = deliver_skb(skb, pt_prev, orig_dev);
4800 pt_prev = ptype;
4801 }
4802
4803 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4804 if (pt_prev)
4805 ret = deliver_skb(skb, pt_prev, orig_dev);
4806 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 }
4808
Mel Gormanb4b9e352012-07-31 16:44:26 -07004809skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004810#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004811 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004812 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004813 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004814 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004815
4816 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004817 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004818 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004819#endif
Willem de Bruijna5135bc2017-01-07 17:06:36 -05004820 skb_reset_tc(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05004821skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05004822 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004823 goto drop;
4824
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004825 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004826 if (pt_prev) {
4827 ret = deliver_skb(skb, pt_prev, orig_dev);
4828 pt_prev = NULL;
4829 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004830 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004831 goto another_round;
4832 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004833 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004834 }
4835
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004836 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004837 if (rx_handler) {
4838 if (pt_prev) {
4839 ret = deliver_skb(skb, pt_prev, orig_dev);
4840 pt_prev = NULL;
4841 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004842 switch (rx_handler(&skb)) {
4843 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004844 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004845 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004846 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004847 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004848 case RX_HANDLER_EXACT:
4849 deliver_exact = true;
4850 case RX_HANDLER_PASS:
4851 break;
4852 default:
4853 BUG();
4854 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004857 if (unlikely(skb_vlan_tag_present(skb))) {
4858 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004859 skb->pkt_type = PACKET_OTHERHOST;
4860 /* Note: we might in the future use prio bits
4861 * and set skb->priority like in vlan_do_receive()
4862 * For the time being, just ignore Priority Code Point
4863 */
4864 skb->vlan_tci = 0;
4865 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004868
4869 /* deliver only exact match when indicated */
4870 if (likely(!deliver_exact)) {
4871 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4872 &ptype_base[ntohs(type) &
4873 PTYPE_HASH_MASK]);
4874 }
4875
4876 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4877 &orig_dev->ptype_specific);
4878
4879 if (unlikely(skb->dev != orig_dev)) {
4880 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4881 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 }
4883
4884 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04004885 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004886 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01004887 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004889drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004890 if (!deliver_exact)
4891 atomic_long_inc(&skb->dev->rx_dropped);
4892 else
4893 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 kfree_skb(skb);
4895 /* Jamal, now you will not able to escape explaining
4896 * me how you were going to use this. :-)
4897 */
4898 ret = NET_RX_DROP;
4899 }
4900
Julian Anastasov2c17d272015-07-09 09:59:10 +03004901out:
David S. Miller9754e292013-02-14 15:57:38 -05004902 return ret;
4903}
4904
Edward Cree88eb1942018-07-02 16:13:56 +01004905static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
4906{
4907 struct net_device *orig_dev = skb->dev;
4908 struct packet_type *pt_prev = NULL;
4909 int ret;
4910
4911 ret = __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
4912 if (pt_prev)
4913 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
4914 return ret;
4915}
4916
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004917/**
4918 * netif_receive_skb_core - special purpose version of netif_receive_skb
4919 * @skb: buffer to process
4920 *
4921 * More direct receive version of netif_receive_skb(). It should
4922 * only be used by callers that have a need to skip RPS and Generic XDP.
4923 * Caller must also take care of handling if (page_is_)pfmemalloc.
4924 *
4925 * This function may only be called from softirq context and interrupts
4926 * should be enabled.
4927 *
4928 * Return values (usually ignored):
4929 * NET_RX_SUCCESS: no congestion
4930 * NET_RX_DROP: packet was dropped
4931 */
4932int netif_receive_skb_core(struct sk_buff *skb)
4933{
4934 int ret;
4935
4936 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01004937 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004938 rcu_read_unlock();
4939
4940 return ret;
4941}
4942EXPORT_SYMBOL(netif_receive_skb_core);
4943
Edward Cree88eb1942018-07-02 16:13:56 +01004944static inline void __netif_receive_skb_list_ptype(struct list_head *head,
4945 struct packet_type *pt_prev,
4946 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01004947{
4948 struct sk_buff *skb, *next;
4949
Edward Cree88eb1942018-07-02 16:13:56 +01004950 if (!pt_prev)
4951 return;
4952 if (list_empty(head))
4953 return;
Edward Cree17266ee2018-07-02 16:14:12 +01004954 if (pt_prev->list_func != NULL)
4955 pt_prev->list_func(head, pt_prev, orig_dev);
4956 else
4957 list_for_each_entry_safe(skb, next, head, list)
4958 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01004959}
4960
4961static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
4962{
4963 /* Fast-path assumptions:
4964 * - There is no RX handler.
4965 * - Only one packet_type matches.
4966 * If either of these fails, we will end up doing some per-packet
4967 * processing in-line, then handling the 'last ptype' for the whole
4968 * sublist. This can't cause out-of-order delivery to any single ptype,
4969 * because the 'last ptype' must be constant across the sublist, and all
4970 * other ptypes are handled per-packet.
4971 */
4972 /* Current (common) ptype of sublist */
4973 struct packet_type *pt_curr = NULL;
4974 /* Current (common) orig_dev of sublist */
4975 struct net_device *od_curr = NULL;
4976 struct list_head sublist;
4977 struct sk_buff *skb, *next;
4978
Edward Cree9af86f92018-07-09 18:10:19 +01004979 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01004980 list_for_each_entry_safe(skb, next, head, list) {
4981 struct net_device *orig_dev = skb->dev;
4982 struct packet_type *pt_prev = NULL;
4983
Edward Cree9af86f92018-07-09 18:10:19 +01004984 list_del(&skb->list);
Edward Cree88eb1942018-07-02 16:13:56 +01004985 __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01004986 if (!pt_prev)
4987 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01004988 if (pt_curr != pt_prev || od_curr != orig_dev) {
4989 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01004990 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
4991 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01004992 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01004993 pt_curr = pt_prev;
4994 od_curr = orig_dev;
4995 }
Edward Cree9af86f92018-07-09 18:10:19 +01004996 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01004997 }
4998
4999 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005000 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005001}
5002
David S. Miller9754e292013-02-14 15:57:38 -05005003static int __netif_receive_skb(struct sk_buff *skb)
5004{
5005 int ret;
5006
5007 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005008 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005009
5010 /*
5011 * PFMEMALLOC skbs are special, they should
5012 * - be delivered to SOCK_MEMALLOC sockets only
5013 * - stay away from userspace
5014 * - have bounded memory usage
5015 *
5016 * Use PF_MEMALLOC as this saves us from propagating the allocation
5017 * context down to all allocation sites.
5018 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005019 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005020 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005021 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005022 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005023 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005024
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 return ret;
5026}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005027
Edward Cree4ce00172018-07-02 16:13:40 +01005028static void __netif_receive_skb_list(struct list_head *head)
5029{
5030 unsigned long noreclaim_flag = 0;
5031 struct sk_buff *skb, *next;
5032 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5033
5034 list_for_each_entry_safe(skb, next, head, list) {
5035 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5036 struct list_head sublist;
5037
5038 /* Handle the previous sublist */
5039 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005040 if (!list_empty(&sublist))
5041 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005042 pfmemalloc = !pfmemalloc;
5043 /* See comments in __netif_receive_skb */
5044 if (pfmemalloc)
5045 noreclaim_flag = memalloc_noreclaim_save();
5046 else
5047 memalloc_noreclaim_restore(noreclaim_flag);
5048 }
5049 }
5050 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005051 if (!list_empty(head))
5052 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005053 /* Restore pflags */
5054 if (pfmemalloc)
5055 memalloc_noreclaim_restore(noreclaim_flag);
5056}
5057
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005058static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005059{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005060 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005061 struct bpf_prog *new = xdp->prog;
5062 int ret = 0;
5063
5064 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005065 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005066 rcu_assign_pointer(dev->xdp_prog, new);
5067 if (old)
5068 bpf_prog_put(old);
5069
5070 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005071 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005072 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005073 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005074 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005075 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005076 }
5077 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005078
5079 case XDP_QUERY_PROG:
Martin KaFai Lau58038692017-06-15 17:29:09 -07005080 xdp->prog_id = old ? old->aux->id : 0;
David S. Millerb5cdae32017-04-18 15:36:58 -04005081 break;
5082
5083 default:
5084 ret = -EINVAL;
5085 break;
5086 }
5087
5088 return ret;
5089}
5090
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005091static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005092{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005093 int ret;
5094
Eric Dumazet588f0332011-11-15 04:12:55 +00005095 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005096
Richard Cochranc1f19b52010-07-17 08:49:36 +00005097 if (skb_defer_rx_timestamp(skb))
5098 return NET_RX_SUCCESS;
5099
Davidlohr Bueso02786472018-05-08 09:07:02 -07005100 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07005101 int ret;
David S. Millerb5cdae32017-04-18 15:36:58 -04005102
John Fastabendbbbe2112017-09-08 14:00:30 -07005103 preempt_disable();
5104 rcu_read_lock();
5105 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5106 rcu_read_unlock();
5107 preempt_enable();
5108
5109 if (ret != XDP_PASS)
John Fastabendd4455162017-07-17 09:26:45 -07005110 return NET_RX_DROP;
David S. Millerb5cdae32017-04-18 15:36:58 -04005111 }
5112
John Fastabendbbbe2112017-09-08 14:00:30 -07005113 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005114#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01005115 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005116 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005117 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005118
Eric Dumazet3b098e22010-05-15 23:57:10 -07005119 if (cpu >= 0) {
5120 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5121 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005122 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005123 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005124 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005125#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005126 ret = __netif_receive_skb(skb);
5127 rcu_read_unlock();
5128 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005129}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005130
Edward Cree7da517a2018-07-02 16:13:24 +01005131static void netif_receive_skb_list_internal(struct list_head *head)
5132{
5133 struct bpf_prog *xdp_prog = NULL;
5134 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005135 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005136
Edward Cree8c057ef2018-07-09 18:09:54 +01005137 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005138 list_for_each_entry_safe(skb, next, head, list) {
5139 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005140 list_del(&skb->list);
5141 if (!skb_defer_rx_timestamp(skb))
5142 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005143 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005144 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005145
5146 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5147 preempt_disable();
5148 rcu_read_lock();
5149 list_for_each_entry_safe(skb, next, head, list) {
5150 xdp_prog = rcu_dereference(skb->dev->xdp_prog);
Edward Cree8c057ef2018-07-09 18:09:54 +01005151 list_del(&skb->list);
5152 if (do_xdp_generic(xdp_prog, skb) == XDP_PASS)
5153 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005154 }
5155 rcu_read_unlock();
5156 preempt_enable();
Edward Cree8c057ef2018-07-09 18:09:54 +01005157 /* Put passed packets back on main list */
5158 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005159 }
5160
5161 rcu_read_lock();
5162#ifdef CONFIG_RPS
5163 if (static_key_false(&rps_needed)) {
5164 list_for_each_entry_safe(skb, next, head, list) {
5165 struct rps_dev_flow voidflow, *rflow = &voidflow;
5166 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5167
5168 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005169 /* Will be handled, remove from list */
Edward Cree7da517a2018-07-02 16:13:24 +01005170 list_del(&skb->list);
Edward Cree8c057ef2018-07-09 18:09:54 +01005171 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005172 }
5173 }
5174 }
5175#endif
5176 __netif_receive_skb_list(head);
5177 rcu_read_unlock();
5178}
5179
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005180/**
5181 * netif_receive_skb - process receive buffer from network
5182 * @skb: buffer to process
5183 *
5184 * netif_receive_skb() is the main receive data processing function.
5185 * It always succeeds. The buffer may be dropped during processing
5186 * for congestion control or by the protocol layers.
5187 *
5188 * This function may only be called from softirq context and interrupts
5189 * should be enabled.
5190 *
5191 * Return values (usually ignored):
5192 * NET_RX_SUCCESS: no congestion
5193 * NET_RX_DROP: packet was dropped
5194 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005195int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005196{
5197 trace_netif_receive_skb_entry(skb);
5198
5199 return netif_receive_skb_internal(skb);
5200}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005201EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Edward Creef6ad8c12018-07-02 16:12:45 +01005203/**
5204 * netif_receive_skb_list - process many receive buffers from network
5205 * @head: list of skbs to process.
5206 *
Edward Cree7da517a2018-07-02 16:13:24 +01005207 * Since return value of netif_receive_skb() is normally ignored, and
5208 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005209 *
5210 * This function may only be called from softirq context and interrupts
5211 * should be enabled.
5212 */
5213void netif_receive_skb_list(struct list_head *head)
5214{
Edward Cree7da517a2018-07-02 16:13:24 +01005215 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005216
Edward Creeb9f463d2018-07-02 16:14:44 +01005217 if (list_empty(head))
5218 return;
Edward Cree920572b2018-07-02 16:13:11 +01005219 list_for_each_entry(skb, head, list)
5220 trace_netif_receive_skb_list_entry(skb);
Edward Cree7da517a2018-07-02 16:13:24 +01005221 netif_receive_skb_list_internal(head);
Edward Creef6ad8c12018-07-02 16:12:45 +01005222}
5223EXPORT_SYMBOL(netif_receive_skb_list);
5224
Eric Dumazet41852492016-08-26 12:50:39 -07005225DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005226
5227/* Network device is going away, flush any packets still pending */
5228static void flush_backlog(struct work_struct *work)
5229{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005230 struct sk_buff *skb, *tmp;
5231 struct softnet_data *sd;
5232
5233 local_bh_disable();
5234 sd = this_cpu_ptr(&softnet_data);
5235
5236 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005237 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005238 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005239 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005240 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005241 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005242 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005243 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005244 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005245 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005246 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005247
5248 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005249 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005250 __skb_unlink(skb, &sd->process_queue);
5251 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005252 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005253 }
5254 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005255 local_bh_enable();
5256}
5257
Eric Dumazet41852492016-08-26 12:50:39 -07005258static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005259{
5260 unsigned int cpu;
5261
5262 get_online_cpus();
5263
Eric Dumazet41852492016-08-26 12:50:39 -07005264 for_each_online_cpu(cpu)
5265 queue_work_on(cpu, system_highpri_wq,
5266 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005267
5268 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07005269 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005270
5271 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005272}
5273
Herbert Xud565b0a2008-12-15 23:38:52 -08005274static int napi_gro_complete(struct sk_buff *skb)
5275{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005276 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005277 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005278 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005279 int err = -ENOENT;
5280
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005281 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5282
Herbert Xufc59f9a2009-04-14 15:11:06 -07005283 if (NAPI_GRO_CB(skb)->count == 1) {
5284 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005285 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005286 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005287
5288 rcu_read_lock();
5289 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005290 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005291 continue;
5292
Jerry Chu299603e82013-12-11 20:53:45 -08005293 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005294 break;
5295 }
5296 rcu_read_unlock();
5297
5298 if (err) {
5299 WARN_ON(&ptype->list == head);
5300 kfree_skb(skb);
5301 return NET_RX_SUCCESS;
5302 }
5303
5304out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005305 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005306}
5307
Li RongQing6312fe72018-07-05 14:34:32 +08005308static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005309 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005310{
Li RongQing6312fe72018-07-05 14:34:32 +08005311 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005312 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005313
David Miller07d78362018-06-24 14:14:02 +09005314 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005315 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5316 return;
Prashant Bhole68d2f842018-07-12 16:24:59 +09005317 list_del(&skb->list);
5318 skb->next = NULL;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005319 napi_gro_complete(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005320 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005321 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005322
5323 if (!napi->gro_hash[index].count)
5324 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005325}
David Miller07d78362018-06-24 14:14:02 +09005326
Li RongQing6312fe72018-07-05 14:34:32 +08005327/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005328 * youngest packets at the head of it.
5329 * Complete skbs in reverse order to reduce latencies.
5330 */
5331void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5332{
Li RongQing6312fe72018-07-05 14:34:32 +08005333 u32 i;
David Miller07d78362018-06-24 14:14:02 +09005334
Li RongQingd9f37d02018-07-13 14:41:36 +08005335 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
5336 if (test_bit(i, &napi->gro_bitmask))
5337 __napi_gro_flush_chain(napi, i, flush_old);
5338 }
David Miller07d78362018-06-24 14:14:02 +09005339}
Eric Dumazet86cac582010-08-31 18:25:32 +00005340EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005341
David Miller07d78362018-06-24 14:14:02 +09005342static struct list_head *gro_list_prepare(struct napi_struct *napi,
5343 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005344{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005345 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005346 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005347 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005348 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005349
Li RongQing6312fe72018-07-05 14:34:32 +08005350 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005351 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005352 unsigned long diffs;
5353
Tom Herbert0b4cec82014-01-15 08:58:06 -08005354 NAPI_GRO_CB(p)->flush = 0;
5355
5356 if (hash != skb_get_hash_raw(p)) {
5357 NAPI_GRO_CB(p)->same_flow = 0;
5358 continue;
5359 }
5360
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005361 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
5362 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08005363 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005364 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005365 if (maclen == ETH_HLEN)
5366 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005367 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005368 else if (!diffs)
5369 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005370 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005371 maclen);
5372 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005373 }
David Miller07d78362018-06-24 14:14:02 +09005374
5375 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005376}
5377
Jerry Chu299603e82013-12-11 20:53:45 -08005378static void skb_gro_reset_offset(struct sk_buff *skb)
5379{
5380 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5381 const skb_frag_t *frag0 = &pinfo->frags[0];
5382
5383 NAPI_GRO_CB(skb)->data_offset = 0;
5384 NAPI_GRO_CB(skb)->frag0 = NULL;
5385 NAPI_GRO_CB(skb)->frag0_len = 0;
5386
5387 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
5388 pinfo->nr_frags &&
5389 !PageHighMem(skb_frag_page(frag0))) {
5390 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005391 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5392 skb_frag_size(frag0),
5393 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005394 }
5395}
5396
Eric Dumazeta50e2332014-03-29 21:28:21 -07005397static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5398{
5399 struct skb_shared_info *pinfo = skb_shinfo(skb);
5400
5401 BUG_ON(skb->end - skb->tail < grow);
5402
5403 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5404
5405 skb->data_len -= grow;
5406 skb->tail += grow;
5407
5408 pinfo->frags[0].page_offset += grow;
5409 skb_frag_size_sub(&pinfo->frags[0], grow);
5410
5411 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5412 skb_frag_unref(skb, 0);
5413 memmove(pinfo->frags, pinfo->frags + 1,
5414 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5415 }
5416}
5417
Li RongQing6312fe72018-07-05 14:34:32 +08005418static void gro_flush_oldest(struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005419{
Li RongQing6312fe72018-07-05 14:34:32 +08005420 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005421
Li RongQing6312fe72018-07-05 14:34:32 +08005422 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005423
Li RongQing6312fe72018-07-05 14:34:32 +08005424 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005425 * impossible.
5426 */
5427 if (WARN_ON_ONCE(!oldest))
5428 return;
5429
Li RongQingd9f37d02018-07-13 14:41:36 +08005430 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5431 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005432 */
5433 list_del(&oldest->list);
5434 napi_gro_complete(oldest);
5435}
5436
Rami Rosenbb728822012-11-28 21:55:25 +00005437static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005438{
Li RongQing6312fe72018-07-05 14:34:32 +08005439 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005440 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005441 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005442 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005443 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005444 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005445 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005446 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005447 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005448
David S. Millerb5cdae32017-04-18 15:36:58 -04005449 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005450 goto normal;
5451
David Miller07d78362018-06-24 14:14:02 +09005452 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005453
Herbert Xud565b0a2008-12-15 23:38:52 -08005454 rcu_read_lock();
5455 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005456 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005457 continue;
5458
Herbert Xu86911732009-01-29 14:19:50 +00005459 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005460 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005461 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005462 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005463 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005464 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005465 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005466 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005467 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005468 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005469
Tom Herbert662880f2014-08-27 21:26:56 -07005470 /* Setup for GRO checksum validation */
5471 switch (skb->ip_summed) {
5472 case CHECKSUM_COMPLETE:
5473 NAPI_GRO_CB(skb)->csum = skb->csum;
5474 NAPI_GRO_CB(skb)->csum_valid = 1;
5475 NAPI_GRO_CB(skb)->csum_cnt = 0;
5476 break;
5477 case CHECKSUM_UNNECESSARY:
5478 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5479 NAPI_GRO_CB(skb)->csum_valid = 0;
5480 break;
5481 default:
5482 NAPI_GRO_CB(skb)->csum_cnt = 0;
5483 NAPI_GRO_CB(skb)->csum_valid = 0;
5484 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005485
David Miller07d78362018-06-24 14:14:02 +09005486 pp = ptype->callbacks.gro_receive(gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005487 break;
5488 }
5489 rcu_read_unlock();
5490
5491 if (&ptype->list == head)
5492 goto normal;
5493
Steffen Klassert25393d32017-02-15 09:39:44 +01005494 if (IS_ERR(pp) && PTR_ERR(pp) == -EINPROGRESS) {
5495 ret = GRO_CONSUMED;
5496 goto ok;
5497 }
5498
Herbert Xu0da2afd52008-12-26 14:57:42 -08005499 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005500 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005501
Herbert Xud565b0a2008-12-15 23:38:52 -08005502 if (pp) {
Prashant Bhole68d2f842018-07-12 16:24:59 +09005503 list_del(&pp->list);
5504 pp->next = NULL;
David Millerd4546c22018-06-24 14:13:49 +09005505 napi_gro_complete(pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005506 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005507 }
5508
Herbert Xu0da2afd52008-12-26 14:57:42 -08005509 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005510 goto ok;
5511
Eric Dumazet600adc12014-01-09 14:12:19 -08005512 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005513 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005514
Li RongQing6312fe72018-07-05 14:34:32 +08005515 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
5516 gro_flush_oldest(gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005517 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005518 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005519 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005520 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005521 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005522 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005523 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005524 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005525 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005526
Herbert Xuad0f99042009-02-01 01:24:55 -08005527pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005528 grow = skb_gro_offset(skb) - skb_headlen(skb);
5529 if (grow > 0)
5530 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08005531ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08005532 if (napi->gro_hash[hash].count) {
5533 if (!test_bit(hash, &napi->gro_bitmask))
5534 __set_bit(hash, &napi->gro_bitmask);
5535 } else if (test_bit(hash, &napi->gro_bitmask)) {
5536 __clear_bit(hash, &napi->gro_bitmask);
5537 }
5538
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005539 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005540
5541normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08005542 ret = GRO_NORMAL;
5543 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08005544}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005545
Jerry Chubf5a7552014-01-07 10:23:19 -08005546struct packet_offload *gro_find_receive_by_type(__be16 type)
5547{
5548 struct list_head *offload_head = &offload_base;
5549 struct packet_offload *ptype;
5550
5551 list_for_each_entry_rcu(ptype, offload_head, list) {
5552 if (ptype->type != type || !ptype->callbacks.gro_receive)
5553 continue;
5554 return ptype;
5555 }
5556 return NULL;
5557}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005558EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08005559
5560struct packet_offload *gro_find_complete_by_type(__be16 type)
5561{
5562 struct list_head *offload_head = &offload_base;
5563 struct packet_offload *ptype;
5564
5565 list_for_each_entry_rcu(ptype, offload_head, list) {
5566 if (ptype->type != type || !ptype->callbacks.gro_complete)
5567 continue;
5568 return ptype;
5569 }
5570 return NULL;
5571}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005572EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005573
Michal Kubečeke44699d2017-06-29 11:13:36 +02005574static void napi_skb_free_stolen_head(struct sk_buff *skb)
5575{
5576 skb_dst_drop(skb);
5577 secpath_reset(skb);
5578 kmem_cache_free(skbuff_head_cache, skb);
5579}
5580
Rami Rosenbb728822012-11-28 21:55:25 +00005581static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08005582{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005583 switch (ret) {
5584 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005585 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005586 ret = GRO_DROP;
5587 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005588
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005589 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08005590 kfree_skb(skb);
5591 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005592
Eric Dumazetdaa86542012-04-19 07:07:40 +00005593 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02005594 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5595 napi_skb_free_stolen_head(skb);
5596 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00005597 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00005598 break;
5599
Ben Hutchings5b252f02009-10-29 07:17:09 +00005600 case GRO_HELD:
5601 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005602 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005603 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005604 }
5605
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005606 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005607}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005608
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005609gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005610{
Eric Dumazet93f93a42015-11-18 06:30:59 -08005611 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005612 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00005613
Eric Dumazeta50e2332014-03-29 21:28:21 -07005614 skb_gro_reset_offset(skb);
5615
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005616 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005617}
5618EXPORT_SYMBOL(napi_gro_receive);
5619
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00005620static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005621{
Eric Dumazet93a35f52014-10-23 06:30:30 -07005622 if (unlikely(skb->pfmemalloc)) {
5623 consume_skb(skb);
5624 return;
5625 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005626 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00005627 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
5628 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00005629 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08005630 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08005631 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07005632 skb->encapsulation = 0;
5633 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07005634 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Steffen Klassertf991bb92017-01-30 06:45:38 +01005635 secpath_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005636
5637 napi->skb = skb;
5638}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005639
Herbert Xu76620aa2009-04-16 02:02:07 -07005640struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08005641{
Herbert Xu5d38a072009-01-04 16:13:40 -08005642 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08005643
5644 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08005645 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08005646 if (skb) {
5647 napi->skb = skb;
5648 skb_mark_napi_id(skb, napi);
5649 }
Herbert Xu5d38a072009-01-04 16:13:40 -08005650 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005651 return skb;
5652}
Herbert Xu76620aa2009-04-16 02:02:07 -07005653EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005654
Eric Dumazeta50e2332014-03-29 21:28:21 -07005655static gro_result_t napi_frags_finish(struct napi_struct *napi,
5656 struct sk_buff *skb,
5657 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005658{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005659 switch (ret) {
5660 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005661 case GRO_HELD:
5662 __skb_push(skb, ETH_HLEN);
5663 skb->protocol = eth_type_trans(skb, skb->dev);
5664 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005665 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00005666 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005667
5668 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005669 napi_reuse_skb(napi, skb);
5670 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005671
Michal Kubečeke44699d2017-06-29 11:13:36 +02005672 case GRO_MERGED_FREE:
5673 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5674 napi_skb_free_stolen_head(skb);
5675 else
5676 napi_reuse_skb(napi, skb);
5677 break;
5678
Ben Hutchings5b252f02009-10-29 07:17:09 +00005679 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005680 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005681 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005682 }
5683
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005684 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005685}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005686
Eric Dumazeta50e2332014-03-29 21:28:21 -07005687/* Upper GRO stack assumes network header starts at gro_offset=0
5688 * Drivers could call both napi_gro_frags() and napi_gro_receive()
5689 * We copy ethernet header into skb->data to have a common layout.
5690 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00005691static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005692{
Herbert Xu76620aa2009-04-16 02:02:07 -07005693 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005694 const struct ethhdr *eth;
5695 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07005696
5697 napi->skb = NULL;
5698
Eric Dumazeta50e2332014-03-29 21:28:21 -07005699 skb_reset_mac_header(skb);
5700 skb_gro_reset_offset(skb);
5701
5702 eth = skb_gro_header_fast(skb, 0);
5703 if (unlikely(skb_gro_header_hard(skb, hlen))) {
5704 eth = skb_gro_header_slow(skb, hlen, 0);
5705 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04005706 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
5707 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005708 napi_reuse_skb(napi, skb);
5709 return NULL;
5710 }
5711 } else {
5712 gro_pull_from_frag0(skb, hlen);
5713 NAPI_GRO_CB(skb)->frag0 += hlen;
5714 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07005715 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07005716 __skb_pull(skb, hlen);
5717
5718 /*
5719 * This works because the only protocols we care about don't require
5720 * special handling.
5721 * We'll fix it up properly in napi_frags_finish()
5722 */
5723 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07005724
Herbert Xu76620aa2009-04-16 02:02:07 -07005725 return skb;
5726}
Herbert Xu76620aa2009-04-16 02:02:07 -07005727
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005728gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07005729{
5730 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005731
5732 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005733 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08005734
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005735 trace_napi_gro_frags_entry(skb);
5736
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005737 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08005738}
5739EXPORT_SYMBOL(napi_gro_frags);
5740
Tom Herbert573e8fc2014-08-22 13:33:47 -07005741/* Compute the checksum from gro_offset and return the folded value
5742 * after adding in any pseudo checksum.
5743 */
5744__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
5745{
5746 __wsum wsum;
5747 __sum16 sum;
5748
5749 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
5750
5751 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
5752 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
5753 if (likely(!sum)) {
5754 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
5755 !skb->csum_complete_sw)
5756 netdev_rx_csum_fault(skb->dev);
5757 }
5758
5759 NAPI_GRO_CB(skb)->csum = wsum;
5760 NAPI_GRO_CB(skb)->csum_valid = 1;
5761
5762 return sum;
5763}
5764EXPORT_SYMBOL(__skb_gro_checksum_complete);
5765
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305766static void net_rps_send_ipi(struct softnet_data *remsd)
5767{
5768#ifdef CONFIG_RPS
5769 while (remsd) {
5770 struct softnet_data *next = remsd->rps_ipi_next;
5771
5772 if (cpu_online(remsd->cpu))
5773 smp_call_function_single_async(remsd->cpu, &remsd->csd);
5774 remsd = next;
5775 }
5776#endif
5777}
5778
Eric Dumazete326bed2010-04-22 00:22:45 -07005779/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08005780 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07005781 * Note: called with local irq disabled, but exits with local irq enabled.
5782 */
5783static void net_rps_action_and_irq_enable(struct softnet_data *sd)
5784{
5785#ifdef CONFIG_RPS
5786 struct softnet_data *remsd = sd->rps_ipi_list;
5787
5788 if (remsd) {
5789 sd->rps_ipi_list = NULL;
5790
5791 local_irq_enable();
5792
5793 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305794 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07005795 } else
5796#endif
5797 local_irq_enable();
5798}
5799
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005800static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
5801{
5802#ifdef CONFIG_RPS
5803 return sd->rps_ipi_list != NULL;
5804#else
5805 return false;
5806#endif
5807}
5808
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005809static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005811 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005812 bool again = true;
5813 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814
Eric Dumazete326bed2010-04-22 00:22:45 -07005815 /* Check if we have pending ipi, its better to send them now,
5816 * not waiting net_rx_action() end.
5817 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005818 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005819 local_irq_disable();
5820 net_rps_action_and_irq_enable(sd);
5821 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005822
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01005823 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005824 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Changli Gao6e7676c2010-04-27 15:07:33 -07005827 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005828 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005829 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005830 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005831 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005832 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00005833 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005834
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005837 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005838 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005839 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005840 /*
5841 * Inline a custom version of __napi_complete().
5842 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005843 * and NAPI_STATE_SCHED is the only possible flag set
5844 * on backlog.
5845 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005846 * and we dont need an smp_mb() memory barrier.
5847 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005848 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005849 again = false;
5850 } else {
5851 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5852 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005853 }
5854 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005855 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005858 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859}
5860
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005861/**
5862 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005863 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005864 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005865 * The entry's receive function will be scheduled to run.
5866 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005867 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005868void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005869{
5870 unsigned long flags;
5871
5872 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005873 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005874 local_irq_restore(flags);
5875}
5876EXPORT_SYMBOL(__napi_schedule);
5877
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005878/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08005879 * napi_schedule_prep - check if napi can be scheduled
5880 * @n: napi context
5881 *
5882 * Test if NAPI routine is already running, and if not mark
5883 * it as running. This is used as a condition variable
5884 * insure only one NAPI poll instance runs. We also make
5885 * sure there is no pending NAPI disable.
5886 */
5887bool napi_schedule_prep(struct napi_struct *n)
5888{
5889 unsigned long val, new;
5890
5891 do {
5892 val = READ_ONCE(n->state);
5893 if (unlikely(val & NAPIF_STATE_DISABLE))
5894 return false;
5895 new = val | NAPIF_STATE_SCHED;
5896
5897 /* Sets STATE_MISSED bit if STATE_SCHED was already set
5898 * This was suggested by Alexander Duyck, as compiler
5899 * emits better code than :
5900 * if (val & NAPIF_STATE_SCHED)
5901 * new |= NAPIF_STATE_MISSED;
5902 */
5903 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
5904 NAPIF_STATE_MISSED;
5905 } while (cmpxchg(&n->state, val, new) != val);
5906
5907 return !(val & NAPIF_STATE_SCHED);
5908}
5909EXPORT_SYMBOL(napi_schedule_prep);
5910
5911/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005912 * __napi_schedule_irqoff - schedule for receive
5913 * @n: entry to schedule
5914 *
5915 * Variant of __napi_schedule() assuming hard irqs are masked
5916 */
5917void __napi_schedule_irqoff(struct napi_struct *n)
5918{
5919 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
5920}
5921EXPORT_SYMBOL(__napi_schedule_irqoff);
5922
Eric Dumazet364b6052016-11-15 10:15:13 -08005923bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08005924{
Eric Dumazet39e6c822017-02-28 10:34:50 -08005925 unsigned long flags, val, new;
Herbert Xud565b0a2008-12-15 23:38:52 -08005926
5927 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08005928 * 1) Don't let napi dequeue from the cpu poll list
5929 * just in case its running on a different cpu.
5930 * 2) If we are busy polling, do nothing here, we have
5931 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08005932 */
Eric Dumazet217f6972016-11-15 10:15:11 -08005933 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
5934 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08005935 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08005936
Li RongQingd9f37d02018-07-13 14:41:36 +08005937 if (n->gro_bitmask) {
Eric Dumazet3b47d302014-11-06 21:09:44 -08005938 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005939
Eric Dumazet3b47d302014-11-06 21:09:44 -08005940 if (work_done)
5941 timeout = n->dev->gro_flush_timeout;
5942
5943 if (timeout)
5944 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5945 HRTIMER_MODE_REL_PINNED);
5946 else
5947 napi_gro_flush(n, false);
5948 }
Eric Dumazet02c16022017-02-04 15:25:02 -08005949 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005950 /* If n->poll_list is not empty, we need to mask irqs */
5951 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08005952 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005953 local_irq_restore(flags);
5954 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08005955
5956 do {
5957 val = READ_ONCE(n->state);
5958
5959 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
5960
5961 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
5962
5963 /* If STATE_MISSED was set, leave STATE_SCHED set,
5964 * because we will call napi->poll() one more time.
5965 * This C code was suggested by Alexander Duyck to help gcc.
5966 */
5967 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
5968 NAPIF_STATE_SCHED;
5969 } while (cmpxchg(&n->state, val, new) != val);
5970
5971 if (unlikely(val & NAPIF_STATE_MISSED)) {
5972 __napi_schedule(n);
5973 return false;
5974 }
5975
Eric Dumazet364b6052016-11-15 10:15:13 -08005976 return true;
Herbert Xud565b0a2008-12-15 23:38:52 -08005977}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005978EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005979
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005980/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005981static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005982{
5983 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5984 struct napi_struct *napi;
5985
5986 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5987 if (napi->napi_id == napi_id)
5988 return napi;
5989
5990 return NULL;
5991}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005992
5993#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08005994
Eric Dumazetce6aea92015-11-18 06:30:54 -08005995#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08005996
5997static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
5998{
5999 int rc;
6000
Eric Dumazet39e6c822017-02-28 10:34:50 -08006001 /* Busy polling means there is a high chance device driver hard irq
6002 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6003 * set in napi_schedule_prep().
6004 * Since we are about to call napi->poll() once more, we can safely
6005 * clear NAPI_STATE_MISSED.
6006 *
6007 * Note: x86 could use a single "lock and ..." instruction
6008 * to perform these two clear_bit()
6009 */
6010 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006011 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6012
6013 local_bh_disable();
6014
6015 /* All we really want here is to re-enable device interrupts.
6016 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6017 */
6018 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02006019 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006020 netpoll_poll_unlock(have_poll_lock);
6021 if (rc == BUSY_POLL_BUDGET)
6022 __napi_schedule(napi);
6023 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006024}
6025
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006026void napi_busy_loop(unsigned int napi_id,
6027 bool (*loop_end)(void *, unsigned long),
6028 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006029{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006030 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006031 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006032 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006033 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006034
6035restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006036 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006037
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006038 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006039
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006040 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006041 if (!napi)
6042 goto out;
6043
Eric Dumazet217f6972016-11-15 10:15:11 -08006044 preempt_disable();
6045 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006046 int work = 0;
6047
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006048 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006049 if (!napi_poll) {
6050 unsigned long val = READ_ONCE(napi->state);
6051
6052 /* If multiple threads are competing for this napi,
6053 * we avoid dirtying napi->state as much as we can.
6054 */
6055 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6056 NAPIF_STATE_IN_BUSY_POLL))
6057 goto count;
6058 if (cmpxchg(&napi->state, val,
6059 val | NAPIF_STATE_IN_BUSY_POLL |
6060 NAPIF_STATE_SCHED) != val)
6061 goto count;
6062 have_poll_lock = netpoll_poll_lock(napi);
6063 napi_poll = napi->poll;
6064 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006065 work = napi_poll(napi, BUSY_POLL_BUDGET);
6066 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006067count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006068 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006069 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006070 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006071 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006072
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006073 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006074 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006075
Eric Dumazet217f6972016-11-15 10:15:11 -08006076 if (unlikely(need_resched())) {
6077 if (napi_poll)
6078 busy_poll_stop(napi, have_poll_lock);
6079 preempt_enable();
6080 rcu_read_unlock();
6081 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006082 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006083 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006084 goto restart;
6085 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006086 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006087 }
6088 if (napi_poll)
6089 busy_poll_stop(napi, have_poll_lock);
6090 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006091out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006092 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006093}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006094EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006095
6096#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006097
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006098static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006099{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08006100 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
6101 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006102 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006103
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006104 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006105
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006106 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006107 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006108 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6109 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006110 } while (napi_by_id(napi_gen_id));
6111 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006112
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006113 hlist_add_head_rcu(&napi->napi_hash_node,
6114 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006115
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006116 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006117}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006118
6119/* Warning : caller is responsible to make sure rcu grace period
6120 * is respected before freeing memory containing @napi
6121 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08006122bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006123{
Eric Dumazet34cbe272015-11-18 06:31:02 -08006124 bool rcu_sync_needed = false;
6125
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006126 spin_lock(&napi_hash_lock);
6127
Eric Dumazet34cbe272015-11-18 06:31:02 -08006128 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
6129 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006130 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006131 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006132 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006133 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006134}
6135EXPORT_SYMBOL_GPL(napi_hash_del);
6136
Eric Dumazet3b47d302014-11-06 21:09:44 -08006137static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6138{
6139 struct napi_struct *napi;
6140
6141 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006142
6143 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6144 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6145 */
Li RongQingd9f37d02018-07-13 14:41:36 +08006146 if (napi->gro_bitmask && !napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006147 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6148 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006149
6150 return HRTIMER_NORESTART;
6151}
6152
David S. Miller7c4ec742018-07-20 23:37:55 -07006153static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006154{
David Miller07d78362018-06-24 14:14:02 +09006155 int i;
6156
Li RongQing6312fe72018-07-05 14:34:32 +08006157 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6158 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6159 napi->gro_hash[i].count = 0;
6160 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006161 napi->gro_bitmask = 0;
6162}
6163
6164void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6165 int (*poll)(struct napi_struct *, int), int weight)
6166{
6167 INIT_LIST_HEAD(&napi->poll_list);
6168 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6169 napi->timer.function = napi_watchdog;
6170 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006171 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08006172 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006173 if (weight > NAPI_POLL_WEIGHT)
6174 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
6175 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08006176 napi->weight = weight;
6177 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08006178 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006179#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006180 napi->poll_owner = -1;
6181#endif
6182 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006183 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006184}
6185EXPORT_SYMBOL(netif_napi_add);
6186
Eric Dumazet3b47d302014-11-06 21:09:44 -08006187void napi_disable(struct napi_struct *n)
6188{
6189 might_sleep();
6190 set_bit(NAPI_STATE_DISABLE, &n->state);
6191
6192 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6193 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006194 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6195 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006196
6197 hrtimer_cancel(&n->timer);
6198
6199 clear_bit(NAPI_STATE_DISABLE, &n->state);
6200}
6201EXPORT_SYMBOL(napi_disable);
6202
David Miller07d78362018-06-24 14:14:02 +09006203static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006204{
David Miller07d78362018-06-24 14:14:02 +09006205 int i;
David Millerd4546c22018-06-24 14:13:49 +09006206
David Miller07d78362018-06-24 14:14:02 +09006207 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6208 struct sk_buff *skb, *n;
6209
Li RongQing6312fe72018-07-05 14:34:32 +08006210 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006211 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006212 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006213 }
David Millerd4546c22018-06-24 14:13:49 +09006214}
6215
Eric Dumazet93d05d42015-11-18 06:31:03 -08006216/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08006217void netif_napi_del(struct napi_struct *napi)
6218{
Eric Dumazet93d05d42015-11-18 06:31:03 -08006219 might_sleep();
6220 if (napi_hash_del(napi))
6221 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08006222 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006223 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006224
David Miller07d78362018-06-24 14:14:02 +09006225 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006226 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006227}
6228EXPORT_SYMBOL(netif_napi_del);
6229
Herbert Xu726ce702014-12-21 07:16:21 +11006230static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6231{
6232 void *have;
6233 int work, weight;
6234
6235 list_del_init(&n->poll_list);
6236
6237 have = netpoll_poll_lock(n);
6238
6239 weight = n->weight;
6240
6241 /* This NAPI_STATE_SCHED test is for avoiding a race
6242 * with netpoll's poll_napi(). Only the entity which
6243 * obtains the lock and sees NAPI_STATE_SCHED set will
6244 * actually make the ->poll() call. Therefore we avoid
6245 * accidentally calling ->poll() when NAPI is not scheduled.
6246 */
6247 work = 0;
6248 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6249 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006250 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006251 }
6252
6253 WARN_ON_ONCE(work > weight);
6254
6255 if (likely(work < weight))
6256 goto out_unlock;
6257
6258 /* Drivers must not modify the NAPI state if they
6259 * consume the entire weight. In such cases this code
6260 * still "owns" the NAPI instance and therefore can
6261 * move the instance around on the list at-will.
6262 */
6263 if (unlikely(napi_disable_pending(n))) {
6264 napi_complete(n);
6265 goto out_unlock;
6266 }
6267
Li RongQingd9f37d02018-07-13 14:41:36 +08006268 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006269 /* flush too old packets
6270 * If HZ < 1000, flush all packets.
6271 */
6272 napi_gro_flush(n, HZ >= 1000);
6273 }
6274
Herbert Xu001ce542014-12-21 07:16:22 +11006275 /* Some drivers may have called napi_schedule
6276 * prior to exhausting their budget.
6277 */
6278 if (unlikely(!list_empty(&n->poll_list))) {
6279 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6280 n->dev ? n->dev->name : "backlog");
6281 goto out_unlock;
6282 }
6283
Herbert Xu726ce702014-12-21 07:16:21 +11006284 list_add_tail(&n->poll_list, repoll);
6285
6286out_unlock:
6287 netpoll_poll_unlock(have);
6288
6289 return work;
6290}
6291
Emese Revfy0766f782016-06-20 20:42:34 +02006292static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006294 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006295 unsigned long time_limit = jiffies +
6296 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006297 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006298 LIST_HEAD(list);
6299 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006300
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006302 list_splice_init(&sd->poll_list, &list);
6303 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006305 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006306 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006308 if (list_empty(&list)) {
6309 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006310 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006311 break;
6312 }
6313
Herbert Xu6bd373e2014-12-21 07:16:24 +11006314 n = list_first_entry(&list, struct napi_struct, poll_list);
6315 budget -= napi_poll(n, &repoll);
6316
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006317 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006318 * Allow this to run for 2 jiffies since which will allow
6319 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006320 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006321 if (unlikely(budget <= 0 ||
6322 time_after_eq(jiffies, time_limit))) {
6323 sd->time_squeeze++;
6324 break;
6325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006327
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006328 local_irq_disable();
6329
6330 list_splice_tail_init(&sd->poll_list, &list);
6331 list_splice_tail(&repoll, &list);
6332 list_splice(&list, &sd->poll_list);
6333 if (!list_empty(&sd->poll_list))
6334 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6335
Eric Dumazete326bed2010-04-22 00:22:45 -07006336 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006337out:
6338 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339}
6340
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006341struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006342 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006343
6344 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006345 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006346
Veaceslav Falico5d261912013-08-28 23:25:05 +02006347 /* counter for the number of times this device was added to us */
6348 u16 ref_nr;
6349
Veaceslav Falico402dae92013-09-25 09:20:09 +02006350 /* private field for the users */
6351 void *private;
6352
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006353 struct list_head list;
6354 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006355};
6356
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006357static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006358 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006359{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006360 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006361
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006362 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006363 if (adj->dev == adj_dev)
6364 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006365 }
6366 return NULL;
6367}
6368
David Ahernf1170fd2016-10-17 19:15:51 -07006369static int __netdev_has_upper_dev(struct net_device *upper_dev, void *data)
6370{
6371 struct net_device *dev = data;
6372
6373 return upper_dev == dev;
6374}
6375
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006376/**
6377 * netdev_has_upper_dev - Check if device is linked to an upper device
6378 * @dev: device
6379 * @upper_dev: upper device to check
6380 *
6381 * Find out if a device is linked to specified upper device and return true
6382 * in case it is. Note that this checks only immediate upper device,
6383 * not through a complete stack of devices. The caller must hold the RTNL lock.
6384 */
6385bool netdev_has_upper_dev(struct net_device *dev,
6386 struct net_device *upper_dev)
6387{
6388 ASSERT_RTNL();
6389
David Ahernf1170fd2016-10-17 19:15:51 -07006390 return netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6391 upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006392}
6393EXPORT_SYMBOL(netdev_has_upper_dev);
6394
6395/**
David Ahern1a3f0602016-10-17 19:15:44 -07006396 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6397 * @dev: device
6398 * @upper_dev: upper device to check
6399 *
6400 * Find out if a device is linked to specified upper device and return true
6401 * in case it is. Note that this checks the entire upper device chain.
6402 * The caller must hold rcu lock.
6403 */
6404
David Ahern1a3f0602016-10-17 19:15:44 -07006405bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6406 struct net_device *upper_dev)
6407{
6408 return !!netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6409 upper_dev);
6410}
6411EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6412
6413/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006414 * netdev_has_any_upper_dev - Check if device is linked to some device
6415 * @dev: device
6416 *
6417 * Find out if a device is linked to an upper device and return true in case
6418 * it is. The caller must hold the RTNL lock.
6419 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006420bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006421{
6422 ASSERT_RTNL();
6423
David Ahernf1170fd2016-10-17 19:15:51 -07006424 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006425}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006426EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006427
6428/**
6429 * netdev_master_upper_dev_get - Get master upper device
6430 * @dev: device
6431 *
6432 * Find a master upper device and return pointer to it or NULL in case
6433 * it's not there. The caller must hold the RTNL lock.
6434 */
6435struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6436{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006437 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006438
6439 ASSERT_RTNL();
6440
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006441 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006442 return NULL;
6443
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006444 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006445 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006446 if (likely(upper->master))
6447 return upper->dev;
6448 return NULL;
6449}
6450EXPORT_SYMBOL(netdev_master_upper_dev_get);
6451
David Ahern0f524a82016-10-17 19:15:52 -07006452/**
6453 * netdev_has_any_lower_dev - Check if device is linked to some device
6454 * @dev: device
6455 *
6456 * Find out if a device is linked to a lower device and return true in case
6457 * it is. The caller must hold the RTNL lock.
6458 */
6459static bool netdev_has_any_lower_dev(struct net_device *dev)
6460{
6461 ASSERT_RTNL();
6462
6463 return !list_empty(&dev->adj_list.lower);
6464}
6465
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02006466void *netdev_adjacent_get_private(struct list_head *adj_list)
6467{
6468 struct netdev_adjacent *adj;
6469
6470 adj = list_entry(adj_list, struct netdev_adjacent, list);
6471
6472 return adj->private;
6473}
6474EXPORT_SYMBOL(netdev_adjacent_get_private);
6475
Veaceslav Falico31088a12013-09-25 09:20:12 +02006476/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04006477 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
6478 * @dev: device
6479 * @iter: list_head ** of the current position
6480 *
6481 * Gets the next device from the dev's upper list, starting from iter
6482 * position. The caller must hold RCU read lock.
6483 */
6484struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
6485 struct list_head **iter)
6486{
6487 struct netdev_adjacent *upper;
6488
6489 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6490
6491 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6492
6493 if (&upper->list == &dev->adj_list.upper)
6494 return NULL;
6495
6496 *iter = &upper->list;
6497
6498 return upper->dev;
6499}
6500EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
6501
David Ahern1a3f0602016-10-17 19:15:44 -07006502static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
6503 struct list_head **iter)
6504{
6505 struct netdev_adjacent *upper;
6506
6507 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6508
6509 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6510
6511 if (&upper->list == &dev->adj_list.upper)
6512 return NULL;
6513
6514 *iter = &upper->list;
6515
6516 return upper->dev;
6517}
6518
6519int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
6520 int (*fn)(struct net_device *dev,
6521 void *data),
6522 void *data)
6523{
6524 struct net_device *udev;
6525 struct list_head *iter;
6526 int ret;
6527
6528 for (iter = &dev->adj_list.upper,
6529 udev = netdev_next_upper_dev_rcu(dev, &iter);
6530 udev;
6531 udev = netdev_next_upper_dev_rcu(dev, &iter)) {
6532 /* first is the upper device itself */
6533 ret = fn(udev, data);
6534 if (ret)
6535 return ret;
6536
6537 /* then look at all of its upper devices */
6538 ret = netdev_walk_all_upper_dev_rcu(udev, fn, data);
6539 if (ret)
6540 return ret;
6541 }
6542
6543 return 0;
6544}
6545EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
6546
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006547/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02006548 * netdev_lower_get_next_private - Get the next ->private from the
6549 * lower neighbour list
6550 * @dev: device
6551 * @iter: list_head ** of the current position
6552 *
6553 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6554 * list, starting from iter position. The caller must hold either hold the
6555 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006556 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02006557 */
6558void *netdev_lower_get_next_private(struct net_device *dev,
6559 struct list_head **iter)
6560{
6561 struct netdev_adjacent *lower;
6562
6563 lower = list_entry(*iter, struct netdev_adjacent, list);
6564
6565 if (&lower->list == &dev->adj_list.lower)
6566 return NULL;
6567
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006568 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006569
6570 return lower->private;
6571}
6572EXPORT_SYMBOL(netdev_lower_get_next_private);
6573
6574/**
6575 * netdev_lower_get_next_private_rcu - Get the next ->private from the
6576 * lower neighbour list, RCU
6577 * variant
6578 * @dev: device
6579 * @iter: list_head ** of the current position
6580 *
6581 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6582 * list, starting from iter position. The caller must hold RCU read lock.
6583 */
6584void *netdev_lower_get_next_private_rcu(struct net_device *dev,
6585 struct list_head **iter)
6586{
6587 struct netdev_adjacent *lower;
6588
6589 WARN_ON_ONCE(!rcu_read_lock_held());
6590
6591 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6592
6593 if (&lower->list == &dev->adj_list.lower)
6594 return NULL;
6595
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006596 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006597
6598 return lower->private;
6599}
6600EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
6601
6602/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006603 * netdev_lower_get_next - Get the next device from the lower neighbour
6604 * list
6605 * @dev: device
6606 * @iter: list_head ** of the current position
6607 *
6608 * Gets the next netdev_adjacent from the dev's lower neighbour
6609 * list, starting from iter position. The caller must hold RTNL lock or
6610 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006611 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006612 */
6613void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
6614{
6615 struct netdev_adjacent *lower;
6616
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006617 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006618
6619 if (&lower->list == &dev->adj_list.lower)
6620 return NULL;
6621
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006622 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006623
6624 return lower->dev;
6625}
6626EXPORT_SYMBOL(netdev_lower_get_next);
6627
David Ahern1a3f0602016-10-17 19:15:44 -07006628static struct net_device *netdev_next_lower_dev(struct net_device *dev,
6629 struct list_head **iter)
6630{
6631 struct netdev_adjacent *lower;
6632
David Ahern46b5ab12016-10-26 13:21:33 -07006633 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07006634
6635 if (&lower->list == &dev->adj_list.lower)
6636 return NULL;
6637
David Ahern46b5ab12016-10-26 13:21:33 -07006638 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07006639
6640 return lower->dev;
6641}
6642
6643int netdev_walk_all_lower_dev(struct net_device *dev,
6644 int (*fn)(struct net_device *dev,
6645 void *data),
6646 void *data)
6647{
6648 struct net_device *ldev;
6649 struct list_head *iter;
6650 int ret;
6651
6652 for (iter = &dev->adj_list.lower,
6653 ldev = netdev_next_lower_dev(dev, &iter);
6654 ldev;
6655 ldev = netdev_next_lower_dev(dev, &iter)) {
6656 /* first is the lower device itself */
6657 ret = fn(ldev, data);
6658 if (ret)
6659 return ret;
6660
6661 /* then look at all of its lower devices */
6662 ret = netdev_walk_all_lower_dev(ldev, fn, data);
6663 if (ret)
6664 return ret;
6665 }
6666
6667 return 0;
6668}
6669EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
6670
David Ahern1a3f0602016-10-17 19:15:44 -07006671static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
6672 struct list_head **iter)
6673{
6674 struct netdev_adjacent *lower;
6675
6676 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6677 if (&lower->list == &dev->adj_list.lower)
6678 return NULL;
6679
6680 *iter = &lower->list;
6681
6682 return lower->dev;
6683}
6684
6685int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
6686 int (*fn)(struct net_device *dev,
6687 void *data),
6688 void *data)
6689{
6690 struct net_device *ldev;
6691 struct list_head *iter;
6692 int ret;
6693
6694 for (iter = &dev->adj_list.lower,
6695 ldev = netdev_next_lower_dev_rcu(dev, &iter);
6696 ldev;
6697 ldev = netdev_next_lower_dev_rcu(dev, &iter)) {
6698 /* first is the lower device itself */
6699 ret = fn(ldev, data);
6700 if (ret)
6701 return ret;
6702
6703 /* then look at all of its lower devices */
6704 ret = netdev_walk_all_lower_dev_rcu(ldev, fn, data);
6705 if (ret)
6706 return ret;
6707 }
6708
6709 return 0;
6710}
6711EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
6712
Jiri Pirko7ce856a2016-07-04 08:23:12 +02006713/**
dingtianhonge001bfa2013-12-13 10:19:55 +08006714 * netdev_lower_get_first_private_rcu - Get the first ->private from the
6715 * lower neighbour list, RCU
6716 * variant
6717 * @dev: device
6718 *
6719 * Gets the first netdev_adjacent->private from the dev's lower neighbour
6720 * list. The caller must hold RCU read lock.
6721 */
6722void *netdev_lower_get_first_private_rcu(struct net_device *dev)
6723{
6724 struct netdev_adjacent *lower;
6725
6726 lower = list_first_or_null_rcu(&dev->adj_list.lower,
6727 struct netdev_adjacent, list);
6728 if (lower)
6729 return lower->private;
6730 return NULL;
6731}
6732EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
6733
6734/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006735 * netdev_master_upper_dev_get_rcu - Get master upper device
6736 * @dev: device
6737 *
6738 * Find a master upper device and return pointer to it or NULL in case
6739 * it's not there. The caller must hold the RCU read lock.
6740 */
6741struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
6742{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006743 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006744
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006745 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006746 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006747 if (upper && likely(upper->master))
6748 return upper->dev;
6749 return NULL;
6750}
6751EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
6752
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306753static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006754 struct net_device *adj_dev,
6755 struct list_head *dev_list)
6756{
6757 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006758
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006759 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6760 "upper_%s" : "lower_%s", adj_dev->name);
6761 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
6762 linkname);
6763}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306764static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006765 char *name,
6766 struct list_head *dev_list)
6767{
6768 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006769
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006770 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6771 "upper_%s" : "lower_%s", name);
6772 sysfs_remove_link(&(dev->dev.kobj), linkname);
6773}
6774
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006775static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
6776 struct net_device *adj_dev,
6777 struct list_head *dev_list)
6778{
6779 return (dev_list == &dev->adj_list.upper ||
6780 dev_list == &dev->adj_list.lower) &&
6781 net_eq(dev_net(dev), dev_net(adj_dev));
6782}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006783
Veaceslav Falico5d261912013-08-28 23:25:05 +02006784static int __netdev_adjacent_dev_insert(struct net_device *dev,
6785 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02006786 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006787 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006788{
6789 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006790 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006791
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006792 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006793
6794 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07006795 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07006796 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
6797 dev->name, adj_dev->name, adj->ref_nr);
6798
Veaceslav Falico5d261912013-08-28 23:25:05 +02006799 return 0;
6800 }
6801
6802 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
6803 if (!adj)
6804 return -ENOMEM;
6805
6806 adj->dev = adj_dev;
6807 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07006808 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006809 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006810 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006811
David Ahern67b62f92016-10-17 19:15:53 -07006812 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
6813 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006814
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006815 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006816 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006817 if (ret)
6818 goto free_adj;
6819 }
6820
Veaceslav Falico7863c052013-09-25 09:20:06 +02006821 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006822 if (master) {
6823 ret = sysfs_create_link(&(dev->dev.kobj),
6824 &(adj_dev->dev.kobj), "master");
6825 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02006826 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006827
Veaceslav Falico7863c052013-09-25 09:20:06 +02006828 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006829 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02006830 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006831 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006832
6833 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006834
Veaceslav Falico5831d662013-09-25 09:20:32 +02006835remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006836 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006837 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006838free_adj:
6839 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02006840 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006841
6842 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006843}
6844
stephen hemminger1d143d92013-12-29 14:01:29 -08006845static void __netdev_adjacent_dev_remove(struct net_device *dev,
6846 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006847 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006848 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006849{
6850 struct netdev_adjacent *adj;
6851
David Ahern67b62f92016-10-17 19:15:53 -07006852 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
6853 dev->name, adj_dev->name, ref_nr);
6854
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006855 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006856
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006857 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07006858 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006859 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07006860 WARN_ON(1);
6861 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006862 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006863
Andrew Collins93409032016-10-03 13:43:02 -06006864 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07006865 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
6866 dev->name, adj_dev->name, ref_nr,
6867 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06006868 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006869 return;
6870 }
6871
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006872 if (adj->master)
6873 sysfs_remove_link(&(dev->dev.kobj), "master");
6874
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006875 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006876 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006877
Veaceslav Falico5d261912013-08-28 23:25:05 +02006878 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07006879 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006880 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006881 dev_put(adj_dev);
6882 kfree_rcu(adj, rcu);
6883}
6884
stephen hemminger1d143d92013-12-29 14:01:29 -08006885static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
6886 struct net_device *upper_dev,
6887 struct list_head *up_list,
6888 struct list_head *down_list,
6889 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006890{
6891 int ret;
6892
David Ahern790510d2016-10-17 19:15:43 -07006893 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06006894 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006895 if (ret)
6896 return ret;
6897
David Ahern790510d2016-10-17 19:15:43 -07006898 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06006899 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006900 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07006901 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006902 return ret;
6903 }
6904
6905 return 0;
6906}
6907
stephen hemminger1d143d92013-12-29 14:01:29 -08006908static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
6909 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006910 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006911 struct list_head *up_list,
6912 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006913{
Andrew Collins93409032016-10-03 13:43:02 -06006914 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
6915 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006916}
6917
stephen hemminger1d143d92013-12-29 14:01:29 -08006918static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
6919 struct net_device *upper_dev,
6920 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006921{
David Ahernf1170fd2016-10-17 19:15:51 -07006922 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
6923 &dev->adj_list.upper,
6924 &upper_dev->adj_list.lower,
6925 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006926}
6927
stephen hemminger1d143d92013-12-29 14:01:29 -08006928static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
6929 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006930{
Andrew Collins93409032016-10-03 13:43:02 -06006931 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006932 &dev->adj_list.upper,
6933 &upper_dev->adj_list.lower);
6934}
Veaceslav Falico5d261912013-08-28 23:25:05 +02006935
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006936static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006937 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07006938 void *upper_priv, void *upper_info,
6939 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006940{
David Ahern51d0c0472017-10-04 17:48:45 -07006941 struct netdev_notifier_changeupper_info changeupper_info = {
6942 .info = {
6943 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07006944 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07006945 },
6946 .upper_dev = upper_dev,
6947 .master = master,
6948 .linking = true,
6949 .upper_info = upper_info,
6950 };
Mike Manning50d629e2018-02-26 23:49:30 +00006951 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006952 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006953
6954 ASSERT_RTNL();
6955
6956 if (dev == upper_dev)
6957 return -EBUSY;
6958
6959 /* To prevent loops, check if dev is not upper device to upper_dev. */
David Ahernf1170fd2016-10-17 19:15:51 -07006960 if (netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006961 return -EBUSY;
6962
Mike Manning50d629e2018-02-26 23:49:30 +00006963 if (!master) {
6964 if (netdev_has_upper_dev(dev, upper_dev))
6965 return -EEXIST;
6966 } else {
6967 master_dev = netdev_master_upper_dev_get(dev);
6968 if (master_dev)
6969 return master_dev == upper_dev ? -EEXIST : -EBUSY;
6970 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006971
David Ahern51d0c0472017-10-04 17:48:45 -07006972 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006973 &changeupper_info.info);
6974 ret = notifier_to_errno(ret);
6975 if (ret)
6976 return ret;
6977
Jiri Pirko6dffb042015-12-03 12:12:10 +01006978 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006979 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006980 if (ret)
6981 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006982
David Ahern51d0c0472017-10-04 17:48:45 -07006983 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01006984 &changeupper_info.info);
6985 ret = notifier_to_errno(ret);
6986 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07006987 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01006988
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006989 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006990
David Ahernf1170fd2016-10-17 19:15:51 -07006991rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006992 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006993
6994 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006995}
6996
6997/**
6998 * netdev_upper_dev_link - Add a link to the upper device
6999 * @dev: device
7000 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007001 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007002 *
7003 * Adds a link to device which is upper to this one. The caller must hold
7004 * the RTNL lock. On a failure a negative errno code is returned.
7005 * On success the reference counts are adjusted and the function
7006 * returns zero.
7007 */
7008int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007009 struct net_device *upper_dev,
7010 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007011{
David Ahern42ab19e2017-10-04 17:48:47 -07007012 return __netdev_upper_dev_link(dev, upper_dev, false,
7013 NULL, NULL, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007014}
7015EXPORT_SYMBOL(netdev_upper_dev_link);
7016
7017/**
7018 * netdev_master_upper_dev_link - Add a master link to the upper device
7019 * @dev: device
7020 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007021 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007022 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007023 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007024 *
7025 * Adds a link to device which is upper to this one. In this case, only
7026 * one master upper device can be linked, although other non-master devices
7027 * might be linked as well. The caller must hold the RTNL lock.
7028 * On a failure a negative errno code is returned. On success the reference
7029 * counts are adjusted and the function returns zero.
7030 */
7031int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007032 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007033 void *upper_priv, void *upper_info,
7034 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007035{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007036 return __netdev_upper_dev_link(dev, upper_dev, true,
David Ahern42ab19e2017-10-04 17:48:47 -07007037 upper_priv, upper_info, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007038}
7039EXPORT_SYMBOL(netdev_master_upper_dev_link);
7040
7041/**
7042 * netdev_upper_dev_unlink - Removes a link to upper device
7043 * @dev: device
7044 * @upper_dev: new upper device
7045 *
7046 * Removes a link to device which is upper to this one. The caller must hold
7047 * the RTNL lock.
7048 */
7049void netdev_upper_dev_unlink(struct net_device *dev,
7050 struct net_device *upper_dev)
7051{
David Ahern51d0c0472017-10-04 17:48:45 -07007052 struct netdev_notifier_changeupper_info changeupper_info = {
7053 .info = {
7054 .dev = dev,
7055 },
7056 .upper_dev = upper_dev,
7057 .linking = false,
7058 };
tchardingf4563a72017-02-09 17:56:07 +11007059
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007060 ASSERT_RTNL();
7061
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007062 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007063
David Ahern51d0c0472017-10-04 17:48:45 -07007064 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007065 &changeupper_info.info);
7066
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007067 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007068
David Ahern51d0c0472017-10-04 17:48:45 -07007069 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007070 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007071}
7072EXPORT_SYMBOL(netdev_upper_dev_unlink);
7073
Moni Shoua61bd3852015-02-03 16:48:29 +02007074/**
7075 * netdev_bonding_info_change - Dispatch event about slave change
7076 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09007077 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02007078 *
7079 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
7080 * The caller must hold the RTNL lock.
7081 */
7082void netdev_bonding_info_change(struct net_device *dev,
7083 struct netdev_bonding_info *bonding_info)
7084{
David Ahern51d0c0472017-10-04 17:48:45 -07007085 struct netdev_notifier_bonding_info info = {
7086 .info.dev = dev,
7087 };
Moni Shoua61bd3852015-02-03 16:48:29 +02007088
7089 memcpy(&info.bonding_info, bonding_info,
7090 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07007091 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02007092 &info.info);
7093}
7094EXPORT_SYMBOL(netdev_bonding_info_change);
7095
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007096static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007097{
7098 struct netdev_adjacent *iter;
7099
7100 struct net *net = dev_net(dev);
7101
7102 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007103 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007104 continue;
7105 netdev_adjacent_sysfs_add(iter->dev, dev,
7106 &iter->dev->adj_list.lower);
7107 netdev_adjacent_sysfs_add(dev, iter->dev,
7108 &dev->adj_list.upper);
7109 }
7110
7111 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007112 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007113 continue;
7114 netdev_adjacent_sysfs_add(iter->dev, dev,
7115 &iter->dev->adj_list.upper);
7116 netdev_adjacent_sysfs_add(dev, iter->dev,
7117 &dev->adj_list.lower);
7118 }
7119}
7120
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007121static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007122{
7123 struct netdev_adjacent *iter;
7124
7125 struct net *net = dev_net(dev);
7126
7127 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007128 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007129 continue;
7130 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7131 &iter->dev->adj_list.lower);
7132 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7133 &dev->adj_list.upper);
7134 }
7135
7136 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007137 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007138 continue;
7139 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7140 &iter->dev->adj_list.upper);
7141 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7142 &dev->adj_list.lower);
7143 }
7144}
7145
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007146void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02007147{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007148 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007149
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007150 struct net *net = dev_net(dev);
7151
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007152 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007153 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007154 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007155 netdev_adjacent_sysfs_del(iter->dev, oldname,
7156 &iter->dev->adj_list.lower);
7157 netdev_adjacent_sysfs_add(iter->dev, dev,
7158 &iter->dev->adj_list.lower);
7159 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007160
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007161 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007162 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007163 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007164 netdev_adjacent_sysfs_del(iter->dev, oldname,
7165 &iter->dev->adj_list.upper);
7166 netdev_adjacent_sysfs_add(iter->dev, dev,
7167 &iter->dev->adj_list.upper);
7168 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007169}
Veaceslav Falico402dae92013-09-25 09:20:09 +02007170
7171void *netdev_lower_dev_get_private(struct net_device *dev,
7172 struct net_device *lower_dev)
7173{
7174 struct netdev_adjacent *lower;
7175
7176 if (!lower_dev)
7177 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007178 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02007179 if (!lower)
7180 return NULL;
7181
7182 return lower->private;
7183}
7184EXPORT_SYMBOL(netdev_lower_dev_get_private);
7185
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007186
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007187int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007188{
7189 struct net_device *lower = NULL;
7190 struct list_head *iter;
7191 int max_nest = -1;
7192 int nest;
7193
7194 ASSERT_RTNL();
7195
7196 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007197 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007198 if (max_nest < nest)
7199 max_nest = nest;
7200 }
7201
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007202 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007203}
7204EXPORT_SYMBOL(dev_get_nest_level);
7205
Jiri Pirko04d48262015-12-03 12:12:15 +01007206/**
7207 * netdev_lower_change - Dispatch event about lower device state change
7208 * @lower_dev: device
7209 * @lower_state_info: state to dispatch
7210 *
7211 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
7212 * The caller must hold the RTNL lock.
7213 */
7214void netdev_lower_state_changed(struct net_device *lower_dev,
7215 void *lower_state_info)
7216{
David Ahern51d0c0472017-10-04 17:48:45 -07007217 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
7218 .info.dev = lower_dev,
7219 };
Jiri Pirko04d48262015-12-03 12:12:15 +01007220
7221 ASSERT_RTNL();
7222 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07007223 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01007224 &changelowerstate_info.info);
7225}
7226EXPORT_SYMBOL(netdev_lower_state_changed);
7227
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007228static void dev_change_rx_flags(struct net_device *dev, int flags)
7229{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007230 const struct net_device_ops *ops = dev->netdev_ops;
7231
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05007232 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007233 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007234}
7235
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007236static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07007237{
Eric Dumazetb536db92011-11-30 21:42:26 +00007238 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06007239 kuid_t uid;
7240 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07007241
Patrick McHardy24023452007-07-14 18:51:31 -07007242 ASSERT_RTNL();
7243
Wang Chendad9b332008-06-18 01:48:28 -07007244 dev->flags |= IFF_PROMISC;
7245 dev->promiscuity += inc;
7246 if (dev->promiscuity == 0) {
7247 /*
7248 * Avoid overflow.
7249 * If inc causes overflow, untouch promisc and return error.
7250 */
7251 if (inc < 0)
7252 dev->flags &= ~IFF_PROMISC;
7253 else {
7254 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007255 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
7256 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007257 return -EOVERFLOW;
7258 }
7259 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007260 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007261 pr_info("device %s %s promiscuous mode\n",
7262 dev->name,
7263 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11007264 if (audit_enabled) {
7265 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04007266 audit_log(audit_context(), GFP_ATOMIC,
7267 AUDIT_ANOM_PROMISCUOUS,
7268 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
7269 dev->name, (dev->flags & IFF_PROMISC),
7270 (old_flags & IFF_PROMISC),
7271 from_kuid(&init_user_ns, audit_get_loginuid(current)),
7272 from_kuid(&init_user_ns, uid),
7273 from_kgid(&init_user_ns, gid),
7274 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11007275 }
Patrick McHardy24023452007-07-14 18:51:31 -07007276
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007277 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07007278 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007279 if (notify)
7280 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07007281 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007282}
7283
Linus Torvalds1da177e2005-04-16 15:20:36 -07007284/**
7285 * dev_set_promiscuity - update promiscuity count on a device
7286 * @dev: device
7287 * @inc: modifier
7288 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07007289 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007290 * remains above zero the interface remains promiscuous. Once it hits zero
7291 * the device reverts back to normal filtering operation. A negative inc
7292 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07007293 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294 */
Wang Chendad9b332008-06-18 01:48:28 -07007295int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007296{
Eric Dumazetb536db92011-11-30 21:42:26 +00007297 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07007298 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007299
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007300 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07007301 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07007302 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07007303 if (dev->flags != old_flags)
7304 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07007305 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007306}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007307EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007309static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007311 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312
Patrick McHardy24023452007-07-14 18:51:31 -07007313 ASSERT_RTNL();
7314
Linus Torvalds1da177e2005-04-16 15:20:36 -07007315 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07007316 dev->allmulti += inc;
7317 if (dev->allmulti == 0) {
7318 /*
7319 * Avoid overflow.
7320 * If inc causes overflow, untouch allmulti and return error.
7321 */
7322 if (inc < 0)
7323 dev->flags &= ~IFF_ALLMULTI;
7324 else {
7325 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007326 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
7327 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007328 return -EOVERFLOW;
7329 }
7330 }
Patrick McHardy24023452007-07-14 18:51:31 -07007331 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007332 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07007333 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007334 if (notify)
7335 __dev_notify_flags(dev, old_flags,
7336 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07007337 }
Wang Chendad9b332008-06-18 01:48:28 -07007338 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007339}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007340
7341/**
7342 * dev_set_allmulti - update allmulti count on a device
7343 * @dev: device
7344 * @inc: modifier
7345 *
7346 * Add or remove reception of all multicast frames to a device. While the
7347 * count in the device remains above zero the interface remains listening
7348 * to all interfaces. Once it hits zero the device reverts back to normal
7349 * filtering operation. A negative @inc value is used to drop the counter
7350 * when releasing a resource needing all multicasts.
7351 * Return 0 if successful or a negative errno code on error.
7352 */
7353
7354int dev_set_allmulti(struct net_device *dev, int inc)
7355{
7356 return __dev_set_allmulti(dev, inc, true);
7357}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007358EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07007359
7360/*
7361 * Upload unicast and multicast address lists to device and
7362 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08007363 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07007364 * are present.
7365 */
7366void __dev_set_rx_mode(struct net_device *dev)
7367{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007368 const struct net_device_ops *ops = dev->netdev_ops;
7369
Patrick McHardy4417da62007-06-27 01:28:10 -07007370 /* dev_open will call this function so the list will stay sane. */
7371 if (!(dev->flags&IFF_UP))
7372 return;
7373
7374 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09007375 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07007376
Jiri Pirko01789342011-08-16 06:29:00 +00007377 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07007378 /* Unicast addresses changes may only happen under the rtnl,
7379 * therefore calling __dev_set_promiscuity here is safe.
7380 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007381 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007382 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007383 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007384 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007385 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007386 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07007387 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007388 }
Jiri Pirko01789342011-08-16 06:29:00 +00007389
7390 if (ops->ndo_set_rx_mode)
7391 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007392}
7393
7394void dev_set_rx_mode(struct net_device *dev)
7395{
David S. Millerb9e40852008-07-15 00:15:08 -07007396 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007397 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07007398 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007399}
7400
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007401/**
7402 * dev_get_flags - get flags reported to userspace
7403 * @dev: device
7404 *
7405 * Get the combination of flag bits exported through APIs to userspace.
7406 */
Eric Dumazet95c96172012-04-15 05:58:06 +00007407unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408{
Eric Dumazet95c96172012-04-15 05:58:06 +00007409 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007410
7411 flags = (dev->flags & ~(IFF_PROMISC |
7412 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08007413 IFF_RUNNING |
7414 IFF_LOWER_UP |
7415 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007416 (dev->gflags & (IFF_PROMISC |
7417 IFF_ALLMULTI));
7418
Stefan Rompfb00055a2006-03-20 17:09:11 -08007419 if (netif_running(dev)) {
7420 if (netif_oper_up(dev))
7421 flags |= IFF_RUNNING;
7422 if (netif_carrier_ok(dev))
7423 flags |= IFF_LOWER_UP;
7424 if (netif_dormant(dev))
7425 flags |= IFF_DORMANT;
7426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007427
7428 return flags;
7429}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007430EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431
Patrick McHardybd380812010-02-26 06:34:53 +00007432int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433{
Eric Dumazetb536db92011-11-30 21:42:26 +00007434 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00007435 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436
Patrick McHardy24023452007-07-14 18:51:31 -07007437 ASSERT_RTNL();
7438
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439 /*
7440 * Set the flags on our device.
7441 */
7442
7443 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
7444 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
7445 IFF_AUTOMEDIA)) |
7446 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
7447 IFF_ALLMULTI));
7448
7449 /*
7450 * Load in the correct multicast list now the flags have changed.
7451 */
7452
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007453 if ((old_flags ^ flags) & IFF_MULTICAST)
7454 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07007455
Patrick McHardy4417da62007-06-27 01:28:10 -07007456 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457
7458 /*
7459 * Have we downed the interface. We handle IFF_UP ourselves
7460 * according to user attempts to set it, rather than blindly
7461 * setting it.
7462 */
7463
7464 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07007465 if ((old_flags ^ flags) & IFF_UP) {
7466 if (old_flags & IFF_UP)
7467 __dev_close(dev);
7468 else
7469 ret = __dev_open(dev);
7470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007473 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007474 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007475
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007477
7478 if (__dev_set_promiscuity(dev, inc, false) >= 0)
7479 if (dev->flags != old_flags)
7480 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007481 }
7482
7483 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11007484 * is important. Some (broken) drivers set IFF_PROMISC, when
7485 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486 */
7487 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007488 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
7489
Linus Torvalds1da177e2005-04-16 15:20:36 -07007490 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007491 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492 }
7493
Patrick McHardybd380812010-02-26 06:34:53 +00007494 return ret;
7495}
7496
Nicolas Dichtela528c212013-09-25 12:02:44 +02007497void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
7498 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00007499{
7500 unsigned int changes = dev->flags ^ old_flags;
7501
Nicolas Dichtela528c212013-09-25 12:02:44 +02007502 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007503 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007504
Patrick McHardybd380812010-02-26 06:34:53 +00007505 if (changes & IFF_UP) {
7506 if (dev->flags & IFF_UP)
7507 call_netdevice_notifiers(NETDEV_UP, dev);
7508 else
7509 call_netdevice_notifiers(NETDEV_DOWN, dev);
7510 }
7511
7512 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007513 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07007514 struct netdev_notifier_change_info change_info = {
7515 .info = {
7516 .dev = dev,
7517 },
7518 .flags_changed = changes,
7519 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007520
David Ahern51d0c0472017-10-04 17:48:45 -07007521 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007522 }
Patrick McHardybd380812010-02-26 06:34:53 +00007523}
7524
7525/**
7526 * dev_change_flags - change device settings
7527 * @dev: device
7528 * @flags: device state flags
7529 *
7530 * Change settings on device based state flags. The flags are
7531 * in the userspace exported format.
7532 */
Eric Dumazetb536db92011-11-30 21:42:26 +00007533int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00007534{
Eric Dumazetb536db92011-11-30 21:42:26 +00007535 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007536 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00007537
7538 ret = __dev_change_flags(dev, flags);
7539 if (ret < 0)
7540 return ret;
7541
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007542 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007543 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544 return ret;
7545}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007546EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547
WANG Congf51048c2017-07-06 15:01:57 -07007548int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007549{
7550 const struct net_device_ops *ops = dev->netdev_ops;
7551
7552 if (ops->ndo_change_mtu)
7553 return ops->ndo_change_mtu(dev, new_mtu);
7554
7555 dev->mtu = new_mtu;
7556 return 0;
7557}
WANG Congf51048c2017-07-06 15:01:57 -07007558EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007559
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007560/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007561 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007562 * @dev: device
7563 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007564 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007565 *
7566 * Change the maximum transfer size of the network device.
7567 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007568int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
7569 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007571 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572
7573 if (new_mtu == dev->mtu)
7574 return 0;
7575
Jarod Wilson61e84622016-10-07 22:04:33 -04007576 /* MTU must be positive, and in range */
7577 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007578 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579 return -EINVAL;
Jarod Wilson61e84622016-10-07 22:04:33 -04007580 }
7581
7582 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007583 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
Jarod Wilson61e84622016-10-07 22:04:33 -04007584 return -EINVAL;
7585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586
7587 if (!netif_device_present(dev))
7588 return -ENODEV;
7589
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01007590 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
7591 err = notifier_to_errno(err);
7592 if (err)
7593 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007594
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007595 orig_mtu = dev->mtu;
7596 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007597
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007598 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007599 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7600 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007601 err = notifier_to_errno(err);
7602 if (err) {
7603 /* setting mtu back and notifying everyone again,
7604 * so that they have a chance to revert changes.
7605 */
7606 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007607 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7608 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007609 }
7610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611 return err;
7612}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007613
7614int dev_set_mtu(struct net_device *dev, int new_mtu)
7615{
7616 struct netlink_ext_ack extack;
7617 int err;
7618
Li RongQinga6bcfc82018-08-03 15:45:21 +08007619 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007620 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08007621 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007622 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
7623 return err;
7624}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007625EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007627/**
Cong Wang6a643dd2018-01-25 18:26:22 -08007628 * dev_change_tx_queue_len - Change TX queue length of a netdevice
7629 * @dev: device
7630 * @new_len: new tx queue length
7631 */
7632int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
7633{
7634 unsigned int orig_len = dev->tx_queue_len;
7635 int res;
7636
7637 if (new_len != (unsigned int)new_len)
7638 return -ERANGE;
7639
7640 if (new_len != orig_len) {
7641 dev->tx_queue_len = new_len;
7642 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
7643 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03007644 if (res)
7645 goto err_rollback;
7646 res = dev_qdisc_change_tx_queue_len(dev);
7647 if (res)
7648 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08007649 }
7650
7651 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03007652
7653err_rollback:
7654 netdev_err(dev, "refused to change device tx_queue_len\n");
7655 dev->tx_queue_len = orig_len;
7656 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08007657}
7658
7659/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007660 * dev_set_group - Change group this device belongs to
7661 * @dev: device
7662 * @new_group: group this device should belong to
7663 */
7664void dev_set_group(struct net_device *dev, int new_group)
7665{
7666 dev->group = new_group;
7667}
7668EXPORT_SYMBOL(dev_set_group);
7669
7670/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007671 * dev_set_mac_address - Change Media Access Control Address
7672 * @dev: device
7673 * @sa: new address
7674 *
7675 * Change the hardware (MAC) address of the device
7676 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007677int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
7678{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007679 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007680 int err;
7681
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007682 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007683 return -EOPNOTSUPP;
7684 if (sa->sa_family != dev->type)
7685 return -EINVAL;
7686 if (!netif_device_present(dev))
7687 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007688 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00007689 if (err)
7690 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00007691 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00007692 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007693 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00007694 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007695}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007696EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007698/**
7699 * dev_change_carrier - Change device carrier
7700 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00007701 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007702 *
7703 * Change device carrier
7704 */
7705int dev_change_carrier(struct net_device *dev, bool new_carrier)
7706{
7707 const struct net_device_ops *ops = dev->netdev_ops;
7708
7709 if (!ops->ndo_change_carrier)
7710 return -EOPNOTSUPP;
7711 if (!netif_device_present(dev))
7712 return -ENODEV;
7713 return ops->ndo_change_carrier(dev, new_carrier);
7714}
7715EXPORT_SYMBOL(dev_change_carrier);
7716
Linus Torvalds1da177e2005-04-16 15:20:36 -07007717/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02007718 * dev_get_phys_port_id - Get device physical port ID
7719 * @dev: device
7720 * @ppid: port ID
7721 *
7722 * Get device physical port ID
7723 */
7724int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007725 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02007726{
7727 const struct net_device_ops *ops = dev->netdev_ops;
7728
7729 if (!ops->ndo_get_phys_port_id)
7730 return -EOPNOTSUPP;
7731 return ops->ndo_get_phys_port_id(dev, ppid);
7732}
7733EXPORT_SYMBOL(dev_get_phys_port_id);
7734
7735/**
David Aherndb24a902015-03-17 20:23:15 -06007736 * dev_get_phys_port_name - Get device physical port name
7737 * @dev: device
7738 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00007739 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06007740 *
7741 * Get device physical port name
7742 */
7743int dev_get_phys_port_name(struct net_device *dev,
7744 char *name, size_t len)
7745{
7746 const struct net_device_ops *ops = dev->netdev_ops;
7747
7748 if (!ops->ndo_get_phys_port_name)
7749 return -EOPNOTSUPP;
7750 return ops->ndo_get_phys_port_name(dev, name, len);
7751}
7752EXPORT_SYMBOL(dev_get_phys_port_name);
7753
7754/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007755 * dev_change_proto_down - update protocol port state information
7756 * @dev: device
7757 * @proto_down: new value
7758 *
7759 * This info can be used by switch drivers to set the phys state of the
7760 * port.
7761 */
7762int dev_change_proto_down(struct net_device *dev, bool proto_down)
7763{
7764 const struct net_device_ops *ops = dev->netdev_ops;
7765
7766 if (!ops->ndo_change_proto_down)
7767 return -EOPNOTSUPP;
7768 if (!netif_device_present(dev))
7769 return -ENODEV;
7770 return ops->ndo_change_proto_down(dev, proto_down);
7771}
7772EXPORT_SYMBOL(dev_change_proto_down);
7773
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007774u32 __dev_xdp_query(struct net_device *dev, bpf_op_t bpf_op,
7775 enum bpf_netdev_command cmd)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007776{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007777 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007778
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007779 if (!bpf_op)
7780 return 0;
Martin KaFai Lau58038692017-06-15 17:29:09 -07007781
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007782 memset(&xdp, 0, sizeof(xdp));
7783 xdp.command = cmd;
7784
7785 /* Query must always succeed. */
7786 WARN_ON(bpf_op(dev, &xdp) < 0 && cmd == XDP_QUERY_PROG);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007787
Jakub Kicinski6b867582018-07-11 20:36:39 -07007788 return xdp.prog_id;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007789}
7790
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007791static int dev_xdp_install(struct net_device *dev, bpf_op_t bpf_op,
Jakub Kicinski32d60272017-06-21 18:25:03 -07007792 struct netlink_ext_ack *extack, u32 flags,
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007793 struct bpf_prog *prog)
7794{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007795 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007796
7797 memset(&xdp, 0, sizeof(xdp));
Jakub Kicinskiee5d0322017-06-21 18:25:04 -07007798 if (flags & XDP_FLAGS_HW_MODE)
7799 xdp.command = XDP_SETUP_PROG_HW;
7800 else
7801 xdp.command = XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007802 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07007803 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007804 xdp.prog = prog;
7805
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007806 return bpf_op(dev, &xdp);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007807}
7808
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007809static void dev_xdp_uninstall(struct net_device *dev)
7810{
7811 struct netdev_bpf xdp;
7812 bpf_op_t ndo_bpf;
7813
7814 /* Remove generic XDP */
7815 WARN_ON(dev_xdp_install(dev, generic_xdp_install, NULL, 0, NULL));
7816
7817 /* Remove from the driver */
7818 ndo_bpf = dev->netdev_ops->ndo_bpf;
7819 if (!ndo_bpf)
7820 return;
7821
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007822 memset(&xdp, 0, sizeof(xdp));
7823 xdp.command = XDP_QUERY_PROG;
7824 WARN_ON(ndo_bpf(dev, &xdp));
7825 if (xdp.prog_id)
7826 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
7827 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007828
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007829 /* Remove HW offload */
7830 memset(&xdp, 0, sizeof(xdp));
7831 xdp.command = XDP_QUERY_PROG_HW;
7832 if (!ndo_bpf(dev, &xdp) && xdp.prog_id)
7833 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
7834 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007835}
7836
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007837/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07007838 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
7839 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07007840 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07007841 * @fd: new program fd or negative value to clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01007842 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07007843 *
7844 * Set or clear a bpf program for a device
7845 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07007846int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
7847 int fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07007848{
7849 const struct net_device_ops *ops = dev->netdev_ops;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007850 enum bpf_netdev_command query;
Brenden Blancoa7862b42016-07-19 12:16:48 -07007851 struct bpf_prog *prog = NULL;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007852 bpf_op_t bpf_op, bpf_chk;
Brenden Blancoa7862b42016-07-19 12:16:48 -07007853 int err;
7854
Daniel Borkmann85de8572016-11-28 23:16:54 +01007855 ASSERT_RTNL();
7856
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007857 query = flags & XDP_FLAGS_HW_MODE ? XDP_QUERY_PROG_HW : XDP_QUERY_PROG;
7858
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007859 bpf_op = bpf_chk = ops->ndo_bpf;
7860 if (!bpf_op && (flags & (XDP_FLAGS_DRV_MODE | XDP_FLAGS_HW_MODE)))
Daniel Borkmann0489df92017-05-12 01:04:45 +02007861 return -EOPNOTSUPP;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007862 if (!bpf_op || (flags & XDP_FLAGS_SKB_MODE))
7863 bpf_op = generic_xdp_install;
7864 if (bpf_op == bpf_chk)
7865 bpf_chk = generic_xdp_install;
David S. Millerb5cdae32017-04-18 15:36:58 -04007866
Brenden Blancoa7862b42016-07-19 12:16:48 -07007867 if (fd >= 0) {
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007868 if (__dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG) ||
7869 __dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG_HW))
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007870 return -EEXIST;
7871 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) &&
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007872 __dev_xdp_query(dev, bpf_op, query))
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007873 return -EBUSY;
Daniel Borkmann85de8572016-11-28 23:16:54 +01007874
Jakub Kicinski288b3de2017-11-20 15:21:54 -08007875 prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
7876 bpf_op == ops->ndo_bpf);
Brenden Blancoa7862b42016-07-19 12:16:48 -07007877 if (IS_ERR(prog))
7878 return PTR_ERR(prog);
Jakub Kicinski441a3302017-11-20 15:21:55 -08007879
7880 if (!(flags & XDP_FLAGS_HW_MODE) &&
7881 bpf_prog_is_dev_bound(prog->aux)) {
7882 NL_SET_ERR_MSG(extack, "using device-bound program without HW_MODE flag is not supported");
7883 bpf_prog_put(prog);
7884 return -EINVAL;
7885 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07007886 }
7887
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007888 err = dev_xdp_install(dev, bpf_op, extack, flags, prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07007889 if (err < 0 && prog)
7890 bpf_prog_put(prog);
7891
7892 return err;
7893}
Brenden Blancoa7862b42016-07-19 12:16:48 -07007894
7895/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07007897 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898 *
7899 * Returns a suitable unique value for a new device interface
7900 * number. The caller must hold the rtnl semaphore or the
7901 * dev_base_lock to be sure it remains unique.
7902 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07007903static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00007905 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11007906
Linus Torvalds1da177e2005-04-16 15:20:36 -07007907 for (;;) {
7908 if (++ifindex <= 0)
7909 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007910 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00007911 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007912 }
7913}
7914
Linus Torvalds1da177e2005-04-16 15:20:36 -07007915/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08007916static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07007917DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918
Stephen Hemminger6f05f622007-03-08 20:46:03 -08007919static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007921 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007922 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923}
7924
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007925static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007926{
Krishna Kumare93737b2009-12-08 22:26:02 +00007927 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007928 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007929
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007930 BUG_ON(dev_boot_phase);
7931 ASSERT_RTNL();
7932
Krishna Kumare93737b2009-12-08 22:26:02 +00007933 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007934 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00007935 * for initialization unwind. Remove those
7936 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007937 */
7938 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007939 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
7940 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007941
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007942 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00007943 list_del(&dev->unreg_list);
7944 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007945 }
Eric Dumazet449f4542011-05-19 12:24:16 +00007946 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007947 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00007948 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007949
Octavian Purdila44345722010-12-13 12:44:07 +00007950 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007951 list_for_each_entry(dev, head, unreg_list)
7952 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04007953 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007954
Octavian Purdila44345722010-12-13 12:44:07 +00007955 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007956 /* And unlink it from device chain. */
7957 unlist_netdevice(dev);
7958
7959 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007960 }
Eric Dumazet41852492016-08-26 12:50:39 -07007961 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007962
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007963 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007964
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007965 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007966 struct sk_buff *skb = NULL;
7967
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007968 /* Shutdown queueing discipline. */
7969 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007970
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007971 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007972
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007973 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11007974 * this device. They should clean all the things.
7975 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007976 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
7977
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007978 if (!dev->rtnl_link_ops ||
7979 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04007980 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01007981 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007982
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007983 /*
7984 * Flush the unicast and multicast chains
7985 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007986 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00007987 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007988
7989 if (dev->netdev_ops->ndo_uninit)
7990 dev->netdev_ops->ndo_uninit(dev);
7991
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007992 if (skb)
7993 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07007994
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007995 /* Notifier chain MUST detach us all upper devices. */
7996 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07007997 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007998
7999 /* Remove entries from kobject tree */
8000 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00008001#ifdef CONFIG_XPS
8002 /* Remove XPS queueing entries */
8003 netif_reset_xps_queues_gt(dev, 0);
8004#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008005 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008006
Eric W. Biederman850a5452011-10-13 22:25:23 +00008007 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008008
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00008009 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008010 dev_put(dev);
8011}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008012
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008013static void rollback_registered(struct net_device *dev)
8014{
8015 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008016
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008017 list_add(&dev->unreg_list, &single);
8018 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00008019 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008020}
8021
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008022static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
8023 struct net_device *upper, netdev_features_t features)
8024{
8025 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8026 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008027 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008028
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008029 for_each_netdev_feature(&upper_disables, feature_bit) {
8030 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008031 if (!(upper->wanted_features & feature)
8032 && (features & feature)) {
8033 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
8034 &feature, upper->name);
8035 features &= ~feature;
8036 }
8037 }
8038
8039 return features;
8040}
8041
8042static void netdev_sync_lower_features(struct net_device *upper,
8043 struct net_device *lower, netdev_features_t features)
8044{
8045 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8046 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008047 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008048
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008049 for_each_netdev_feature(&upper_disables, feature_bit) {
8050 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008051 if (!(features & feature) && (lower->features & feature)) {
8052 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
8053 &feature, lower->name);
8054 lower->wanted_features &= ~feature;
8055 netdev_update_features(lower);
8056
8057 if (unlikely(lower->features & feature))
8058 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
8059 &feature, lower->name);
8060 }
8061 }
8062}
8063
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008064static netdev_features_t netdev_fix_features(struct net_device *dev,
8065 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07008066{
Michał Mirosław57422dc2011-01-22 12:14:12 +00008067 /* Fix illegal checksum combinations */
8068 if ((features & NETIF_F_HW_CSUM) &&
8069 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008070 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00008071 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
8072 }
8073
Herbert Xub63365a2008-10-23 01:11:29 -07008074 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008075 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008076 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008077 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07008078 }
8079
Pravin B Shelarec5f0612013-03-07 09:28:01 +00008080 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
8081 !(features & NETIF_F_IP_CSUM)) {
8082 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
8083 features &= ~NETIF_F_TSO;
8084 features &= ~NETIF_F_TSO_ECN;
8085 }
8086
8087 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
8088 !(features & NETIF_F_IPV6_CSUM)) {
8089 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
8090 features &= ~NETIF_F_TSO6;
8091 }
8092
Alexander Duyckb1dc4972016-05-02 09:38:24 -07008093 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
8094 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
8095 features &= ~NETIF_F_TSO_MANGLEID;
8096
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00008097 /* TSO ECN requires that TSO is present as well. */
8098 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
8099 features &= ~NETIF_F_TSO_ECN;
8100
Michał Mirosław212b5732011-02-15 16:59:16 +00008101 /* Software GSO depends on SG. */
8102 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008103 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00008104 features &= ~NETIF_F_GSO;
8105 }
8106
Alexander Duyck802ab552016-04-10 21:45:03 -04008107 /* GSO partial features require GSO partial be set */
8108 if ((features & dev->gso_partial_features) &&
8109 !(features & NETIF_F_GSO_PARTIAL)) {
8110 netdev_dbg(dev,
8111 "Dropping partially supported GSO features since no GSO partial.\n");
8112 features &= ~dev->gso_partial_features;
8113 }
8114
Michael Chanfb1f5f72017-12-16 03:09:40 -05008115 if (!(features & NETIF_F_RXCSUM)) {
8116 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
8117 * successfully merged by hardware must also have the
8118 * checksum verified by hardware. If the user does not
8119 * want to enable RXCSUM, logically, we should disable GRO_HW.
8120 */
8121 if (features & NETIF_F_GRO_HW) {
8122 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
8123 features &= ~NETIF_F_GRO_HW;
8124 }
8125 }
8126
Gal Pressmande8d5ab2018-03-12 11:48:49 +02008127 /* LRO/HW-GRO features cannot be combined with RX-FCS */
8128 if (features & NETIF_F_RXFCS) {
8129 if (features & NETIF_F_LRO) {
8130 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
8131 features &= ~NETIF_F_LRO;
8132 }
8133
8134 if (features & NETIF_F_GRO_HW) {
8135 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
8136 features &= ~NETIF_F_GRO_HW;
8137 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02008138 }
8139
Herbert Xub63365a2008-10-23 01:11:29 -07008140 return features;
8141}
Herbert Xub63365a2008-10-23 01:11:29 -07008142
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008143int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00008144{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008145 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008146 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008147 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05008148 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00008149
Michał Mirosław87267482011-04-12 09:56:38 +00008150 ASSERT_RTNL();
8151
Michał Mirosław5455c692011-02-15 16:59:17 +00008152 features = netdev_get_wanted_features(dev);
8153
8154 if (dev->netdev_ops->ndo_fix_features)
8155 features = dev->netdev_ops->ndo_fix_features(dev, features);
8156
8157 /* driver might be less strict about feature dependencies */
8158 features = netdev_fix_features(dev, features);
8159
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008160 /* some features can't be enabled if they're off an an upper device */
8161 netdev_for_each_upper_dev_rcu(dev, upper, iter)
8162 features = netdev_sync_upper_features(dev, upper, features);
8163
Michał Mirosław5455c692011-02-15 16:59:17 +00008164 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05008165 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00008166
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008167 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
8168 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00008169
8170 if (dev->netdev_ops->ndo_set_features)
8171 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01008172 else
8173 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00008174
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008175 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00008176 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008177 "set_features() failed (%d); wanted %pNF, left %pNF\n",
8178 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01008179 /* return non-0 since some features might have changed and
8180 * it's better to fire a spurious notification than miss it
8181 */
8182 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008183 }
8184
Jarod Wilsone7868a82015-11-03 23:09:32 -05008185sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008186 /* some features must be disabled on lower devices when disabled
8187 * on an upper device (think: bonding master or bridge)
8188 */
8189 netdev_for_each_lower_dev(dev, lower, iter)
8190 netdev_sync_lower_features(dev, lower, features);
8191
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008192 if (!err) {
8193 netdev_features_t diff = features ^ dev->features;
8194
8195 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
8196 /* udp_tunnel_{get,drop}_rx_info both need
8197 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
8198 * device, or they won't do anything.
8199 * Thus we need to update dev->features
8200 * *before* calling udp_tunnel_get_rx_info,
8201 * but *after* calling udp_tunnel_drop_rx_info.
8202 */
8203 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
8204 dev->features = features;
8205 udp_tunnel_get_rx_info(dev);
8206 } else {
8207 udp_tunnel_drop_rx_info(dev);
8208 }
8209 }
8210
Gal Pressman9daae9b2018-03-28 17:46:54 +03008211 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
8212 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
8213 dev->features = features;
8214 err |= vlan_get_rx_ctag_filter_info(dev);
8215 } else {
8216 vlan_drop_rx_ctag_filter_info(dev);
8217 }
8218 }
8219
8220 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
8221 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
8222 dev->features = features;
8223 err |= vlan_get_rx_stag_filter_info(dev);
8224 } else {
8225 vlan_drop_rx_stag_filter_info(dev);
8226 }
8227 }
8228
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008229 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008230 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008231
Jarod Wilsone7868a82015-11-03 23:09:32 -05008232 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008233}
8234
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008235/**
8236 * netdev_update_features - recalculate device features
8237 * @dev: the device to check
8238 *
8239 * Recalculate dev->features set and send notifications if it
8240 * has changed. Should be called after driver or hardware dependent
8241 * conditions might have changed that influence the features.
8242 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008243void netdev_update_features(struct net_device *dev)
8244{
8245 if (__netdev_update_features(dev))
8246 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00008247}
8248EXPORT_SYMBOL(netdev_update_features);
8249
Linus Torvalds1da177e2005-04-16 15:20:36 -07008250/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008251 * netdev_change_features - recalculate device features
8252 * @dev: the device to check
8253 *
8254 * Recalculate dev->features set and send notifications even
8255 * if they have not changed. Should be called instead of
8256 * netdev_update_features() if also dev->vlan_features might
8257 * have changed to allow the changes to be propagated to stacked
8258 * VLAN devices.
8259 */
8260void netdev_change_features(struct net_device *dev)
8261{
8262 __netdev_update_features(dev);
8263 netdev_features_change(dev);
8264}
8265EXPORT_SYMBOL(netdev_change_features);
8266
8267/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008268 * netif_stacked_transfer_operstate - transfer operstate
8269 * @rootdev: the root or lower level device to transfer state from
8270 * @dev: the device to transfer operstate to
8271 *
8272 * Transfer operational state from root to device. This is normally
8273 * called when a stacking relationship exists between the root
8274 * device and the device(a leaf device).
8275 */
8276void netif_stacked_transfer_operstate(const struct net_device *rootdev,
8277 struct net_device *dev)
8278{
8279 if (rootdev->operstate == IF_OPER_DORMANT)
8280 netif_dormant_on(dev);
8281 else
8282 netif_dormant_off(dev);
8283
Zhang Shengju0575c862017-04-26 17:49:38 +08008284 if (netif_carrier_ok(rootdev))
8285 netif_carrier_on(dev);
8286 else
8287 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008288}
8289EXPORT_SYMBOL(netif_stacked_transfer_operstate);
8290
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008291static int netif_alloc_rx_queues(struct net_device *dev)
8292{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008293 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00008294 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05308295 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008296 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008297
Tom Herbertbd25fa72010-10-18 18:00:16 +00008298 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008299
Michal Hockodcda9b02017-07-12 14:36:45 -07008300 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008301 if (!rx)
8302 return -ENOMEM;
8303
Tom Herbertbd25fa72010-10-18 18:00:16 +00008304 dev->_rx = rx;
8305
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008306 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00008307 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008308
8309 /* XDP RX-queue setup */
8310 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
8311 if (err < 0)
8312 goto err_rxq_info;
8313 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008314 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008315
8316err_rxq_info:
8317 /* Rollback successful reg's and free other resources */
8318 while (i--)
8319 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08008320 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008321 dev->_rx = NULL;
8322 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008323}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008324
8325static void netif_free_rx_queues(struct net_device *dev)
8326{
8327 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008328
8329 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
8330 if (!dev->_rx)
8331 return;
8332
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008333 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08008334 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
8335
8336 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008337}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008338
Changli Gaoaa942102010-12-04 02:31:41 +00008339static void netdev_init_one_queue(struct net_device *dev,
8340 struct netdev_queue *queue, void *_unused)
8341{
8342 /* Initialize queue lock */
8343 spin_lock_init(&queue->_xmit_lock);
8344 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
8345 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00008346 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00008347 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00008348#ifdef CONFIG_BQL
8349 dql_init(&queue->dql, HZ);
8350#endif
Changli Gaoaa942102010-12-04 02:31:41 +00008351}
8352
Eric Dumazet60877a32013-06-20 01:15:51 -07008353static void netif_free_tx_queues(struct net_device *dev)
8354{
WANG Cong4cb28972014-06-02 15:55:22 -07008355 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07008356}
8357
Tom Herberte6484932010-10-18 18:04:39 +00008358static int netif_alloc_netdev_queues(struct net_device *dev)
8359{
8360 unsigned int count = dev->num_tx_queues;
8361 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07008362 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00008363
Eric Dumazetd3397272015-07-06 17:13:26 +02008364 if (count < 1 || count > 0xffff)
8365 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00008366
Michal Hockodcda9b02017-07-12 14:36:45 -07008367 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008368 if (!tx)
8369 return -ENOMEM;
8370
Tom Herberte6484932010-10-18 18:04:39 +00008371 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00008372
Tom Herberte6484932010-10-18 18:04:39 +00008373 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
8374 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00008375
8376 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00008377}
8378
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008379void netif_tx_stop_all_queues(struct net_device *dev)
8380{
8381 unsigned int i;
8382
8383 for (i = 0; i < dev->num_tx_queues; i++) {
8384 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11008385
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008386 netif_tx_stop_queue(txq);
8387 }
8388}
8389EXPORT_SYMBOL(netif_tx_stop_all_queues);
8390
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008391/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392 * register_netdevice - register a network device
8393 * @dev: device to register
8394 *
8395 * Take a completed network device structure and add it to the kernel
8396 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8397 * chain. 0 is returned on success. A negative errno code is returned
8398 * on a failure to set up the device, or if the name is a duplicate.
8399 *
8400 * Callers must hold the rtnl semaphore. You may want
8401 * register_netdev() instead of this.
8402 *
8403 * BUGS:
8404 * The locking appears insufficient to guarantee two parallel registers
8405 * will not get the same name.
8406 */
8407
8408int register_netdevice(struct net_device *dev)
8409{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008411 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008412
Florian Fainellie283de32018-04-30 14:20:05 -07008413 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
8414 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008415 BUG_ON(dev_boot_phase);
8416 ASSERT_RTNL();
8417
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008418 might_sleep();
8419
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420 /* When net_device's are persistent, this will be fatal. */
8421 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008422 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423
David S. Millerf1f28aa2008-07-15 00:08:33 -07008424 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07008425 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426
Gao feng828de4f2012-09-13 20:58:27 +00008427 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00008428 if (ret < 0)
8429 goto out;
8430
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008432 if (dev->netdev_ops->ndo_init) {
8433 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008434 if (ret) {
8435 if (ret > 0)
8436 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08008437 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008438 }
8439 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008440
Patrick McHardyf6469682013-04-19 02:04:27 +00008441 if (((dev->hw_features | dev->features) &
8442 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00008443 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
8444 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
8445 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
8446 ret = -EINVAL;
8447 goto err_uninit;
8448 }
8449
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00008450 ret = -EBUSY;
8451 if (!dev->ifindex)
8452 dev->ifindex = dev_new_index(net);
8453 else if (__dev_get_by_index(net, dev->ifindex))
8454 goto err_uninit;
8455
Michał Mirosław5455c692011-02-15 16:59:17 +00008456 /* Transfer changeable features to wanted_features and enable
8457 * software offloads (GSO and GRO).
8458 */
8459 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00008460 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02008461
8462 if (dev->netdev_ops->ndo_udp_tunnel_add) {
8463 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8464 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8465 }
8466
Michał Mirosław14d12322011-02-22 16:52:28 +00008467 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008468
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008469 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00008470 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008471
Alexander Duyck7f348a62016-04-20 16:51:00 -04008472 /* If IPv4 TCP segmentation offload is supported we should also
8473 * allow the device to enable segmenting the frame with the option
8474 * of ignoring a static IP ID value. This doesn't enable the
8475 * feature itself but allows the user to enable it later.
8476 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008477 if (dev->hw_features & NETIF_F_TSO)
8478 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04008479 if (dev->vlan_features & NETIF_F_TSO)
8480 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
8481 if (dev->mpls_features & NETIF_F_TSO)
8482 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
8483 if (dev->hw_enc_features & NETIF_F_TSO)
8484 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07008485
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008486 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00008487 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008488 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00008489
Pravin B Shelaree579672013-03-07 09:28:08 +00008490 /* Make NETIF_F_SG inheritable to tunnel devices.
8491 */
Alexander Duyck802ab552016-04-10 21:45:03 -04008492 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00008493
Simon Horman0d89d202013-05-23 21:02:52 +00008494 /* Make NETIF_F_SG inheritable to MPLS.
8495 */
8496 dev->mpls_features |= NETIF_F_SG;
8497
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00008498 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
8499 ret = notifier_to_errno(ret);
8500 if (ret)
8501 goto err_uninit;
8502
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008503 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008504 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008505 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008506 dev->reg_state = NETREG_REGISTERED;
8507
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008508 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00008509
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510 /*
8511 * Default initial state at registry is that the
8512 * device is present.
8513 */
8514
8515 set_bit(__LINK_STATE_PRESENT, &dev->state);
8516
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01008517 linkwatch_init_dev(dev);
8518
Linus Torvalds1da177e2005-04-16 15:20:36 -07008519 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008521 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008522 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008523
Jiri Pirko948b3372013-01-08 01:38:25 +00008524 /* If the device has permanent device address, driver should
8525 * set dev_addr and also addr_assign_type should be set to
8526 * NET_ADDR_PERM (default value).
8527 */
8528 if (dev->addr_assign_type == NET_ADDR_PERM)
8529 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
8530
Linus Torvalds1da177e2005-04-16 15:20:36 -07008531 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008532 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07008533 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008534 if (ret) {
8535 rollback_registered(dev);
8536 dev->reg_state = NETREG_UNREGISTERED;
8537 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008538 /*
8539 * Prevent userspace races by waiting until the network
8540 * device is fully setup before sending notifications.
8541 */
Patrick McHardya2835762010-02-26 06:34:51 +00008542 if (!dev->rtnl_link_ops ||
8543 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008544 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545
8546out:
8547 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008548
8549err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008550 if (dev->netdev_ops->ndo_uninit)
8551 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -04008552 if (dev->priv_destructor)
8553 dev->priv_destructor(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008554 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008555}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008556EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557
8558/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008559 * init_dummy_netdev - init a dummy network device for NAPI
8560 * @dev: device to init
8561 *
8562 * This takes a network device structure and initialize the minimum
8563 * amount of fields so it can be used to schedule NAPI polls without
8564 * registering a full blown interface. This is to be used by drivers
8565 * that need to tie several hardware interfaces to a single NAPI
8566 * poll scheduler due to HW limitations.
8567 */
8568int init_dummy_netdev(struct net_device *dev)
8569{
8570 /* Clear everything. Note we don't initialize spinlocks
8571 * are they aren't supposed to be taken by any of the
8572 * NAPI code and this dummy netdev is supposed to be
8573 * only ever used for NAPI polls
8574 */
8575 memset(dev, 0, sizeof(struct net_device));
8576
8577 /* make sure we BUG if trying to hit standard
8578 * register/unregister code path
8579 */
8580 dev->reg_state = NETREG_DUMMY;
8581
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008582 /* NAPI wants this */
8583 INIT_LIST_HEAD(&dev->napi_list);
8584
8585 /* a dummy interface is started by default */
8586 set_bit(__LINK_STATE_PRESENT, &dev->state);
8587 set_bit(__LINK_STATE_START, &dev->state);
8588
Eric Dumazet29b44332010-10-11 10:22:12 +00008589 /* Note : We dont allocate pcpu_refcnt for dummy devices,
8590 * because users of this 'device' dont need to change
8591 * its refcount.
8592 */
8593
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008594 return 0;
8595}
8596EXPORT_SYMBOL_GPL(init_dummy_netdev);
8597
8598
8599/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600 * register_netdev - register a network device
8601 * @dev: device to register
8602 *
8603 * Take a completed network device structure and add it to the kernel
8604 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8605 * chain. 0 is returned on success. A negative errno code is returned
8606 * on a failure to set up the device, or if the name is a duplicate.
8607 *
Borislav Petkov38b4da382007-04-20 22:14:10 -07008608 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07008609 * and expands the device name if you passed a format string to
8610 * alloc_netdev.
8611 */
8612int register_netdev(struct net_device *dev)
8613{
8614 int err;
8615
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +03008616 if (rtnl_lock_killable())
8617 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008618 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008619 rtnl_unlock();
8620 return err;
8621}
8622EXPORT_SYMBOL(register_netdev);
8623
Eric Dumazet29b44332010-10-11 10:22:12 +00008624int netdev_refcnt_read(const struct net_device *dev)
8625{
8626 int i, refcnt = 0;
8627
8628 for_each_possible_cpu(i)
8629 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
8630 return refcnt;
8631}
8632EXPORT_SYMBOL(netdev_refcnt_read);
8633
Ben Hutchings2c530402012-07-10 10:55:09 +00008634/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00008636 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637 *
8638 * This is called when unregistering network devices.
8639 *
8640 * Any protocol or device that holds a reference should register
8641 * for netdevice notification, and cleanup and put back the
8642 * reference if they receive an UNREGISTER event.
8643 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008644 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008645 */
8646static void netdev_wait_allrefs(struct net_device *dev)
8647{
8648 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00008649 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650
Eric Dumazete014deb2009-11-17 05:59:21 +00008651 linkwatch_forget_dev(dev);
8652
Linus Torvalds1da177e2005-04-16 15:20:36 -07008653 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00008654 refcnt = netdev_refcnt_read(dev);
8655
8656 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008658 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008659
8660 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008661 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008662
Eric Dumazet748e2d92012-08-22 21:50:59 +00008663 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008664 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00008665 rtnl_lock();
8666
Linus Torvalds1da177e2005-04-16 15:20:36 -07008667 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
8668 &dev->state)) {
8669 /* We must not have linkwatch events
8670 * pending on unregister. If this
8671 * happens, we simply run the queue
8672 * unscheduled, resulting in a noop
8673 * for this device.
8674 */
8675 linkwatch_run_queue();
8676 }
8677
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008678 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008679
8680 rebroadcast_time = jiffies;
8681 }
8682
8683 msleep(250);
8684
Eric Dumazet29b44332010-10-11 10:22:12 +00008685 refcnt = netdev_refcnt_read(dev);
8686
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008688 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
8689 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008690 warning_time = jiffies;
8691 }
8692 }
8693}
8694
8695/* The sequence is:
8696 *
8697 * rtnl_lock();
8698 * ...
8699 * register_netdevice(x1);
8700 * register_netdevice(x2);
8701 * ...
8702 * unregister_netdevice(y1);
8703 * unregister_netdevice(y2);
8704 * ...
8705 * rtnl_unlock();
8706 * free_netdev(y1);
8707 * free_netdev(y2);
8708 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07008709 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07008710 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008711 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712 * without deadlocking with linkwatch via keventd.
8713 * 2) Since we run with the RTNL semaphore not held, we can sleep
8714 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07008715 *
8716 * We must not return until all unregister events added during
8717 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008719void netdev_run_todo(void)
8720{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008721 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008722
Linus Torvalds1da177e2005-04-16 15:20:36 -07008723 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008724 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07008725
8726 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008727
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008728
8729 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00008730 if (!list_empty(&list))
8731 rcu_barrier();
8732
Linus Torvalds1da177e2005-04-16 15:20:36 -07008733 while (!list_empty(&list)) {
8734 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00008735 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736 list_del(&dev->todo_list);
8737
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008738 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008739 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07008740 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008741 dump_stack();
8742 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008743 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008744
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008745 dev->reg_state = NETREG_UNREGISTERED;
8746
8747 netdev_wait_allrefs(dev);
8748
8749 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00008750 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08008751 BUG_ON(!list_empty(&dev->ptype_all));
8752 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00008753 WARN_ON(rcu_access_pointer(dev->ip_ptr));
8754 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -08008755#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -07008756 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -08008757#endif
David S. Millercf124db2017-05-08 12:52:56 -04008758 if (dev->priv_destructor)
8759 dev->priv_destructor(dev);
8760 if (dev->needs_free_netdev)
8761 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07008762
Eric W. Biederman50624c92013-09-23 21:19:49 -07008763 /* Report a network device has been unregistered */
8764 rtnl_lock();
8765 dev_net(dev)->dev_unreg_count--;
8766 __rtnl_unlock();
8767 wake_up(&netdev_unregistering_wq);
8768
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07008769 /* Free network device */
8770 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008772}
8773
Jarod Wilson92566452016-02-01 18:51:04 -05008774/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
8775 * all the same fields in the same order as net_device_stats, with only
8776 * the type differing, but rtnl_link_stats64 may have additional fields
8777 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00008778 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00008779void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
8780 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00008781{
8782#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05008783 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +02008784 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05008785 /* zero out counters that only exist in rtnl_link_stats64 */
8786 memset((char *)stats64 + sizeof(*netdev_stats), 0,
8787 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008788#else
Jarod Wilson92566452016-02-01 18:51:04 -05008789 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00008790 const unsigned long *src = (const unsigned long *)netdev_stats;
8791 u64 *dst = (u64 *)stats64;
8792
Jarod Wilson92566452016-02-01 18:51:04 -05008793 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008794 for (i = 0; i < n; i++)
8795 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05008796 /* zero out counters that only exist in rtnl_link_stats64 */
8797 memset((char *)stats64 + n * sizeof(u64), 0,
8798 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008799#endif
8800}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00008801EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00008802
Eric Dumazetd83345a2009-11-16 03:36:51 +00008803/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008804 * dev_get_stats - get network device statistics
8805 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07008806 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008807 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00008808 * Get network statistics from device. Return @storage.
8809 * The device driver may provide its own method by setting
8810 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
8811 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008812 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00008813struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
8814 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00008815{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008816 const struct net_device_ops *ops = dev->netdev_ops;
8817
Eric Dumazet28172732010-07-07 14:58:56 -07008818 if (ops->ndo_get_stats64) {
8819 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00008820 ops->ndo_get_stats64(dev, storage);
8821 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00008822 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00008823 } else {
8824 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07008825 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -07008826 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
8827 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
8828 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07008829 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07008830}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008831EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07008832
Eric Dumazet24824a02010-10-02 06:11:55 +00008833struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07008834{
Eric Dumazet24824a02010-10-02 06:11:55 +00008835 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07008836
Eric Dumazet24824a02010-10-02 06:11:55 +00008837#ifdef CONFIG_NET_CLS_ACT
8838 if (queue)
8839 return queue;
8840 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
8841 if (!queue)
8842 return NULL;
8843 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008844 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00008845 queue->qdisc_sleeping = &noop_qdisc;
8846 rcu_assign_pointer(dev->ingress_queue, queue);
8847#endif
8848 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07008849}
8850
Eric Dumazet2c60db02012-09-16 09:17:26 +00008851static const struct ethtool_ops default_ethtool_ops;
8852
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00008853void netdev_set_default_ethtool_ops(struct net_device *dev,
8854 const struct ethtool_ops *ops)
8855{
8856 if (dev->ethtool_ops == &default_ethtool_ops)
8857 dev->ethtool_ops = ops;
8858}
8859EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
8860
Eric Dumazet74d332c2013-10-30 13:10:44 -07008861void netdev_freemem(struct net_device *dev)
8862{
8863 char *addr = (char *)dev - dev->padded;
8864
WANG Cong4cb28972014-06-02 15:55:22 -07008865 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07008866}
8867
Linus Torvalds1da177e2005-04-16 15:20:36 -07008868/**
tcharding722c9a02017-02-09 17:56:04 +11008869 * alloc_netdev_mqs - allocate network device
8870 * @sizeof_priv: size of private data to allocate space for
8871 * @name: device name format string
8872 * @name_assign_type: origin of device name
8873 * @setup: callback to initialize device
8874 * @txqs: the number of TX subqueues to allocate
8875 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876 *
tcharding722c9a02017-02-09 17:56:04 +11008877 * Allocates a struct net_device with private data area for driver use
8878 * and performs basic initialization. Also allocates subqueue structs
8879 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880 */
Tom Herbert36909ea2011-01-09 19:36:31 +00008881struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02008882 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00008883 void (*setup)(struct net_device *),
8884 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008885{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +03008887 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008888 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008889
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07008890 BUG_ON(strlen(name) >= sizeof(dev->name));
8891
Tom Herbert36909ea2011-01-09 19:36:31 +00008892 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008893 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00008894 return NULL;
8895 }
8896
Tom Herbert36909ea2011-01-09 19:36:31 +00008897 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008898 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00008899 return NULL;
8900 }
Tom Herbert36909ea2011-01-09 19:36:31 +00008901
David S. Millerfd2ea0a2008-07-17 01:56:23 -07008902 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07008903 if (sizeof_priv) {
8904 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008905 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07008906 alloc_size += sizeof_priv;
8907 }
8908 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008909 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910
Michal Hockodcda9b02017-07-12 14:36:45 -07008911 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +00008912 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008913 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008915 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008916 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008917
Eric Dumazet29b44332010-10-11 10:22:12 +00008918 dev->pcpu_refcnt = alloc_percpu(int);
8919 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07008920 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008921
Linus Torvalds1da177e2005-04-16 15:20:36 -07008922 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00008923 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008924
Jiri Pirko22bedad32010-04-01 21:22:57 +00008925 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008926 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00008927
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09008928 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008929
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07008930 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00008931 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008932
Herbert Xud565b0a2008-12-15 23:38:52 -08008933 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00008934 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008935 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00008936 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008937 INIT_LIST_HEAD(&dev->adj_list.upper);
8938 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08008939 INIT_LIST_HEAD(&dev->ptype_all);
8940 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02008941#ifdef CONFIG_NET_SCHED
8942 hash_init(dev->qdisc_hash);
8943#endif
Eric Dumazet02875872014-10-05 18:38:35 -07008944 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008945 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008946
Phil Suttera8131042016-02-17 15:37:43 +01008947 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02008948 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +01008949 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +01008950 }
Phil Sutter906470c2015-08-18 10:30:48 +02008951
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008952 dev->num_tx_queues = txqs;
8953 dev->real_num_tx_queues = txqs;
8954 if (netif_alloc_netdev_queues(dev))
8955 goto free_all;
8956
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008957 dev->num_rx_queues = rxqs;
8958 dev->real_num_rx_queues = rxqs;
8959 if (netif_alloc_rx_queues(dev))
8960 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008961
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02008963 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008964 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00008965 if (!dev->ethtool_ops)
8966 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02008967
8968 nf_hook_ingress_init(dev);
8969
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008971
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008972free_all:
8973 free_netdev(dev);
8974 return NULL;
8975
Eric Dumazet29b44332010-10-11 10:22:12 +00008976free_pcpu:
8977 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07008978free_dev:
8979 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008980 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008981}
Tom Herbert36909ea2011-01-09 19:36:31 +00008982EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008983
8984/**
tcharding722c9a02017-02-09 17:56:04 +11008985 * free_netdev - free network device
8986 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987 *
tcharding722c9a02017-02-09 17:56:04 +11008988 * This function does the last stage of destroying an allocated device
8989 * interface. The reference to the device object is released. If this
8990 * is the last reference then it will be freed.Must be called in process
8991 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008992 */
8993void free_netdev(struct net_device *dev)
8994{
Herbert Xud565b0a2008-12-15 23:38:52 -08008995 struct napi_struct *p, *n;
8996
Eric Dumazet93d05d42015-11-18 06:31:03 -08008997 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07008998 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008999 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -07009000
Eric Dumazet33d480c2011-08-11 19:30:52 +00009001 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00009002
Jiri Pirkof001fde2009-05-05 02:48:28 +00009003 /* Flush device addresses */
9004 dev_addr_flush(dev);
9005
Herbert Xud565b0a2008-12-15 23:38:52 -08009006 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
9007 netif_napi_del(p);
9008
Eric Dumazet29b44332010-10-11 10:22:12 +00009009 free_percpu(dev->pcpu_refcnt);
9010 dev->pcpu_refcnt = NULL;
9011
Stephen Hemminger3041a062006-05-26 13:25:24 -07009012 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07009014 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009015 return;
9016 }
9017
9018 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
9019 dev->reg_state = NETREG_RELEASED;
9020
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07009021 /* will free via device release */
9022 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009023}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009024EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009025
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009026/**
9027 * synchronize_net - Synchronize with packet receive processing
9028 *
9029 * Wait for packets currently being received to be done.
9030 * Does not block later packets from starting.
9031 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009032void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009033{
9034 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00009035 if (rtnl_is_locked())
9036 synchronize_rcu_expedited();
9037 else
9038 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009039}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009040EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009041
9042/**
Eric Dumazet44a08732009-10-27 07:03:04 +00009043 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07009044 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00009045 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08009046 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009047 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009048 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00009049 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009050 *
9051 * Callers must hold the rtnl semaphore. You may want
9052 * unregister_netdev() instead of this.
9053 */
9054
Eric Dumazet44a08732009-10-27 07:03:04 +00009055void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009056{
Herbert Xua6620712007-12-12 19:21:56 -08009057 ASSERT_RTNL();
9058
Eric Dumazet44a08732009-10-27 07:03:04 +00009059 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009060 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00009061 } else {
9062 rollback_registered(dev);
9063 /* Finish processing unregister after unlock */
9064 net_set_todo(dev);
9065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009066}
Eric Dumazet44a08732009-10-27 07:03:04 +00009067EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009068
9069/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009070 * unregister_netdevice_many - unregister many devices
9071 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07009072 *
9073 * Note: As most callers use a stack allocated list_head,
9074 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009075 */
9076void unregister_netdevice_many(struct list_head *head)
9077{
9078 struct net_device *dev;
9079
9080 if (!list_empty(head)) {
9081 rollback_registered_many(head);
9082 list_for_each_entry(dev, head, unreg_list)
9083 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07009084 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009085 }
9086}
Eric Dumazet63c80992009-10-27 07:06:49 +00009087EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009088
9089/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009090 * unregister_netdev - remove device from the kernel
9091 * @dev: device
9092 *
9093 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009094 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009095 *
9096 * This is just a wrapper for unregister_netdevice that takes
9097 * the rtnl semaphore. In general you want to use this and not
9098 * unregister_netdevice.
9099 */
9100void unregister_netdev(struct net_device *dev)
9101{
9102 rtnl_lock();
9103 unregister_netdevice(dev);
9104 rtnl_unlock();
9105}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106EXPORT_SYMBOL(unregister_netdev);
9107
Eric W. Biedermance286d32007-09-12 13:53:49 +02009108/**
9109 * dev_change_net_namespace - move device to different nethost namespace
9110 * @dev: device
9111 * @net: network namespace
9112 * @pat: If not NULL name pattern to try if the current device name
9113 * is already taken in the destination network namespace.
9114 *
9115 * This function shuts down a device interface and moves it
9116 * to a new network namespace. On success 0 is returned, on
9117 * a failure a netagive errno code is returned.
9118 *
9119 * Callers must hold the rtnl semaphore.
9120 */
9121
9122int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
9123{
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009124 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009125
9126 ASSERT_RTNL();
9127
9128 /* Don't allow namespace local devices to be moved. */
9129 err = -EINVAL;
9130 if (dev->features & NETIF_F_NETNS_LOCAL)
9131 goto out;
9132
9133 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009134 if (dev->reg_state != NETREG_REGISTERED)
9135 goto out;
9136
9137 /* Get out if there is nothing todo */
9138 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09009139 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02009140 goto out;
9141
9142 /* Pick the destination device name, and ensure
9143 * we can use it in the destination network namespace.
9144 */
9145 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00009146 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009147 /* We get here if we can't use the current device name */
9148 if (!pat)
9149 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +08009150 err = dev_get_valid_name(net, dev, pat);
9151 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009152 goto out;
9153 }
9154
9155 /*
9156 * And now a mini version of register_netdevice unregister_netdevice.
9157 */
9158
9159 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07009160 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009161
9162 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009163 unlist_netdevice(dev);
9164
9165 synchronize_net();
9166
9167 /* Shutdown queueing discipline. */
9168 dev_shutdown(dev);
9169
9170 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009171 * this device. They should clean all the things.
9172 *
9173 * Note that dev->reg_state stays at NETREG_REGISTERED.
9174 * This is wanted because this way 8021q and macvlan know
9175 * the device is just moving and can keep their slaves up.
9176 */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009177 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00009178 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009179
Nicolas Dichtelc36ac8e2018-01-25 15:01:38 +01009180 new_nsid = peernet2id_alloc(dev_net(dev), net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009181 /* If there is an ifindex conflict assign a new one */
9182 if (__dev_get_by_index(net, dev->ifindex))
9183 new_ifindex = dev_new_index(net);
9184 else
9185 new_ifindex = dev->ifindex;
9186
9187 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
9188 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009189
9190 /*
9191 * Flush the unicast and multicast chains
9192 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009193 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009194 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009195
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009196 /* Send a netdev-removed uevent to the old namespace */
9197 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009198 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009199
Eric W. Biedermance286d32007-09-12 13:53:49 +02009200 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009201 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009202 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009203
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009204 /* Send a netdev-add uevent to the new namespace */
9205 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009206 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009207
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009208 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07009209 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009210 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009211
9212 /* Add the device back in the hashes */
9213 list_netdevice(dev);
9214
9215 /* Notify protocols, that a new device appeared. */
9216 call_netdevice_notifiers(NETDEV_REGISTER, dev);
9217
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009218 /*
9219 * Prevent userspace races by waiting until the network
9220 * device is fully setup before sending notifications.
9221 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07009222 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009223
Eric W. Biedermance286d32007-09-12 13:53:49 +02009224 synchronize_net();
9225 err = 0;
9226out:
9227 return err;
9228}
Johannes Berg463d0182009-07-14 00:33:35 +02009229EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009230
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009231static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009232{
9233 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009234 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009235 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +05309236 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009237
Linus Torvalds1da177e2005-04-16 15:20:36 -07009238 local_irq_disable();
9239 cpu = smp_processor_id();
9240 sd = &per_cpu(softnet_data, cpu);
9241 oldsd = &per_cpu(softnet_data, oldcpu);
9242
9243 /* Find end of our completion_queue. */
9244 list_skb = &sd->completion_queue;
9245 while (*list_skb)
9246 list_skb = &(*list_skb)->next;
9247 /* Append completion queue from offline CPU. */
9248 *list_skb = oldsd->completion_queue;
9249 oldsd->completion_queue = NULL;
9250
Linus Torvalds1da177e2005-04-16 15:20:36 -07009251 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00009252 if (oldsd->output_queue) {
9253 *sd->output_queue_tailp = oldsd->output_queue;
9254 sd->output_queue_tailp = oldsd->output_queue_tailp;
9255 oldsd->output_queue = NULL;
9256 oldsd->output_queue_tailp = &oldsd->output_queue;
9257 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009258 /* Append NAPI poll list from offline CPU, with one exception :
9259 * process_backlog() must be called by cpu owning percpu backlog.
9260 * We properly handle process_queue & input_pkt_queue later.
9261 */
9262 while (!list_empty(&oldsd->poll_list)) {
9263 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
9264 struct napi_struct,
9265 poll_list);
9266
9267 list_del_init(&napi->poll_list);
9268 if (napi->poll == process_backlog)
9269 napi->state = 0;
9270 else
9271 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00009272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009273
9274 raise_softirq_irqoff(NET_TX_SOFTIRQ);
9275 local_irq_enable();
9276
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05309277#ifdef CONFIG_RPS
9278 remsd = oldsd->rps_ipi_list;
9279 oldsd->rps_ipi_list = NULL;
9280#endif
9281 /* send out pending IPI's on offline CPU */
9282 net_rps_send_ipi(remsd);
9283
Linus Torvalds1da177e2005-04-16 15:20:36 -07009284 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00009285 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009286 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009287 input_queue_head_incr(oldsd);
9288 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009289 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009290 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009291 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07009292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009293
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009294 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009295}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009296
Herbert Xu7f353bf2007-08-10 15:47:58 -07009297/**
Herbert Xub63365a2008-10-23 01:11:29 -07009298 * netdev_increment_features - increment feature set by one
9299 * @all: current feature set
9300 * @one: new feature set
9301 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07009302 *
9303 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07009304 * @one to the master device with current feature set @all. Will not
9305 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07009306 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009307netdev_features_t netdev_increment_features(netdev_features_t all,
9308 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07009309{
Tom Herbertc8cd0982015-12-14 11:19:44 -08009310 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08009311 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00009312 mask |= NETIF_F_VLAN_CHALLENGED;
9313
Tom Herberta1882222015-12-14 11:19:43 -08009314 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00009315 all &= one | ~NETIF_F_ALL_FOR_ALL;
9316
Michał Mirosław1742f182011-04-22 06:31:16 +00009317 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08009318 if (all & NETIF_F_HW_CSUM)
9319 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009320
9321 return all;
9322}
Herbert Xub63365a2008-10-23 01:11:29 -07009323EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009324
Baruch Siach430f03c2013-06-02 20:43:55 +00009325static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009326{
9327 int i;
9328 struct hlist_head *hash;
9329
Kees Cook6da2ec52018-06-12 13:55:00 -07009330 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009331 if (hash != NULL)
9332 for (i = 0; i < NETDEV_HASHENTRIES; i++)
9333 INIT_HLIST_HEAD(&hash[i]);
9334
9335 return hash;
9336}
9337
Eric W. Biederman881d9662007-09-17 11:56:21 -07009338/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07009339static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009340{
Li RongQingd9f37d02018-07-13 14:41:36 +08009341 BUILD_BUG_ON(GRO_HASH_BUCKETS >
David S. Millerccdb5172018-07-16 17:02:04 -07009342 8 * FIELD_SIZEOF(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +08009343
Rustad, Mark D734b6542012-07-18 09:06:07 +00009344 if (net != &init_net)
9345 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07009346
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009347 net->dev_name_head = netdev_create_hash();
9348 if (net->dev_name_head == NULL)
9349 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009350
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009351 net->dev_index_head = netdev_create_hash();
9352 if (net->dev_index_head == NULL)
9353 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009354
9355 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009356
9357err_idx:
9358 kfree(net->dev_name_head);
9359err_name:
9360 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009361}
9362
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009363/**
9364 * netdev_drivername - network driver for the device
9365 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009366 *
9367 * Determine network driver for device.
9368 */
David S. Miller3019de12011-06-06 16:41:33 -07009369const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07009370{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07009371 const struct device_driver *driver;
9372 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07009373 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07009374
9375 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009376 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07009377 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009378
9379 driver = parent->driver;
9380 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07009381 return driver->name;
9382 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009383}
9384
Joe Perches6ea754e2014-09-22 11:10:50 -07009385static void __netdev_printk(const char *level, const struct net_device *dev,
9386 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00009387{
Joe Perchesb004ff42012-09-12 20:12:19 -07009388 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009389 dev_printk_emit(level[1] - '0',
9390 dev->dev.parent,
9391 "%s %s %s%s: %pV",
9392 dev_driver_string(dev->dev.parent),
9393 dev_name(dev->dev.parent),
9394 netdev_name(dev), netdev_reg_state(dev),
9395 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009396 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009397 printk("%s%s%s: %pV",
9398 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009399 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07009400 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009401 }
Joe Perches256df2f2010-06-27 01:02:35 +00009402}
9403
Joe Perches6ea754e2014-09-22 11:10:50 -07009404void netdev_printk(const char *level, const struct net_device *dev,
9405 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00009406{
9407 struct va_format vaf;
9408 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00009409
9410 va_start(args, format);
9411
9412 vaf.fmt = format;
9413 vaf.va = &args;
9414
Joe Perches6ea754e2014-09-22 11:10:50 -07009415 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009416
Joe Perches256df2f2010-06-27 01:02:35 +00009417 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00009418}
9419EXPORT_SYMBOL(netdev_printk);
9420
9421#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07009422void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00009423{ \
Joe Perches256df2f2010-06-27 01:02:35 +00009424 struct va_format vaf; \
9425 va_list args; \
9426 \
9427 va_start(args, fmt); \
9428 \
9429 vaf.fmt = fmt; \
9430 vaf.va = &args; \
9431 \
Joe Perches6ea754e2014-09-22 11:10:50 -07009432 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07009433 \
Joe Perches256df2f2010-06-27 01:02:35 +00009434 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00009435} \
9436EXPORT_SYMBOL(func);
9437
9438define_netdev_printk_level(netdev_emerg, KERN_EMERG);
9439define_netdev_printk_level(netdev_alert, KERN_ALERT);
9440define_netdev_printk_level(netdev_crit, KERN_CRIT);
9441define_netdev_printk_level(netdev_err, KERN_ERR);
9442define_netdev_printk_level(netdev_warn, KERN_WARNING);
9443define_netdev_printk_level(netdev_notice, KERN_NOTICE);
9444define_netdev_printk_level(netdev_info, KERN_INFO);
9445
Pavel Emelyanov46650792007-10-08 20:38:39 -07009446static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009447{
9448 kfree(net->dev_name_head);
9449 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +03009450 if (net != &init_net)
9451 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -07009452}
9453
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009454static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07009455 .init = netdev_init,
9456 .exit = netdev_exit,
9457};
9458
Pavel Emelyanov46650792007-10-08 20:38:39 -07009459static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009460{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009461 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009462 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009463 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02009464 * initial network namespace
9465 */
9466 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009467 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009468 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009469 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02009470
9471 /* Ignore unmoveable devices (i.e. loopback) */
9472 if (dev->features & NETIF_F_NETNS_LOCAL)
9473 continue;
9474
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009475 /* Leave virtual devices for the generic cleanup */
9476 if (dev->rtnl_link_ops)
9477 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08009478
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009479 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009480 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
9481 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009482 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009483 pr_emerg("%s: failed to move %s to init_net: %d\n",
9484 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009485 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02009486 }
9487 }
9488 rtnl_unlock();
9489}
9490
Eric W. Biederman50624c92013-09-23 21:19:49 -07009491static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
9492{
9493 /* Return with the rtnl_lock held when there are no network
9494 * devices unregistering in any network namespace in net_list.
9495 */
9496 struct net *net;
9497 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01009498 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009499
Peter Zijlstraff960a72014-10-29 17:04:56 +01009500 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009501 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07009502 unregistering = false;
9503 rtnl_lock();
9504 list_for_each_entry(net, net_list, exit_list) {
9505 if (net->dev_unreg_count > 0) {
9506 unregistering = true;
9507 break;
9508 }
9509 }
9510 if (!unregistering)
9511 break;
9512 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01009513
9514 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009515 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01009516 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009517}
9518
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009519static void __net_exit default_device_exit_batch(struct list_head *net_list)
9520{
9521 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04009522 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009523 * Do this across as many network namespaces as possible to
9524 * improve batching efficiency.
9525 */
9526 struct net_device *dev;
9527 struct net *net;
9528 LIST_HEAD(dev_kill_list);
9529
Eric W. Biederman50624c92013-09-23 21:19:49 -07009530 /* To prevent network device cleanup code from dereferencing
9531 * loopback devices or network devices that have been freed
9532 * wait here for all pending unregistrations to complete,
9533 * before unregistring the loopback device and allowing the
9534 * network namespace be freed.
9535 *
9536 * The netdev todo list containing all network devices
9537 * unregistrations that happen in default_device_exit_batch
9538 * will run in the rtnl_unlock() at the end of
9539 * default_device_exit_batch.
9540 */
9541 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009542 list_for_each_entry(net, net_list, exit_list) {
9543 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02009544 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009545 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
9546 else
9547 unregister_netdevice_queue(dev, &dev_kill_list);
9548 }
9549 }
9550 unregister_netdevice_many(&dev_kill_list);
9551 rtnl_unlock();
9552}
9553
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009554static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009555 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009556 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02009557};
9558
Linus Torvalds1da177e2005-04-16 15:20:36 -07009559/*
9560 * Initialize the DEV module. At boot time this walks the device list and
9561 * unhooks any devices that fail to initialise (normally hardware not
9562 * present) and leaves us with a valid list of present and active devices.
9563 *
9564 */
9565
9566/*
9567 * This is called single threaded during boot, so no need
9568 * to take the rtnl semaphore.
9569 */
9570static int __init net_dev_init(void)
9571{
9572 int i, rc = -ENOMEM;
9573
9574 BUG_ON(!dev_boot_phase);
9575
Linus Torvalds1da177e2005-04-16 15:20:36 -07009576 if (dev_proc_init())
9577 goto out;
9578
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009579 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07009580 goto out;
9581
9582 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08009583 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009584 INIT_LIST_HEAD(&ptype_base[i]);
9585
Vlad Yasevich62532da2012-11-15 08:49:10 +00009586 INIT_LIST_HEAD(&offload_base);
9587
Eric W. Biederman881d9662007-09-17 11:56:21 -07009588 if (register_pernet_subsys(&netdev_net_ops))
9589 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009590
9591 /*
9592 * Initialise the packet receive queues.
9593 */
9594
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07009595 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07009596 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009597 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009598
Eric Dumazet41852492016-08-26 12:50:39 -07009599 INIT_WORK(flush, flush_backlog);
9600
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009601 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07009602 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +01009603#ifdef CONFIG_XFRM_OFFLOAD
9604 skb_queue_head_init(&sd->xfrm_backlog);
9605#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009606 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00009607 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00009608#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009609 sd->csd.func = rps_trigger_softirq;
9610 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009611 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07009612#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00009613
David S. Miller7c4ec742018-07-20 23:37:55 -07009614 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009615 sd->backlog.poll = process_backlog;
9616 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009617 }
9618
Linus Torvalds1da177e2005-04-16 15:20:36 -07009619 dev_boot_phase = 0;
9620
Eric W. Biederman505d4f72008-11-07 22:54:20 -08009621 /* The loopback device is special if any other network devices
9622 * is present in a network namespace the loopback device must
9623 * be present. Since we now dynamically allocate and free the
9624 * loopback device ensure this invariant is maintained by
9625 * keeping the loopback device as the first device on the
9626 * list of network devices. Ensuring the loopback devices
9627 * is the first device that appears and the last network device
9628 * that disappears.
9629 */
9630 if (register_pernet_device(&loopback_net_ops))
9631 goto out;
9632
9633 if (register_pernet_device(&default_device_ops))
9634 goto out;
9635
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009636 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
9637 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009638
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009639 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
9640 NULL, dev_cpu_dead);
9641 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009642 rc = 0;
9643out:
9644 return rc;
9645}
9646
9647subsys_initcall(net_dev_init);