blob: 722d50dbf8a459f412e8c20982600a28edf695a0 [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
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01001979/**
1980 * dev_nit_active - return true if any network interface taps are in use
1981 *
1982 * @dev: network device to check for the presence of taps
1983 */
1984bool dev_nit_active(struct net_device *dev)
1985{
1986 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
1987}
1988EXPORT_SYMBOL_GPL(dev_nit_active);
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990/*
1991 * Support routine. Sends outgoing frames to any network
1992 * taps currently in use.
1993 */
1994
David Ahern74b20582016-05-10 11:19:50 -07001995void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996{
1997 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001998 struct sk_buff *skb2 = NULL;
1999 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002000 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002003again:
2004 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002005 if (ptype->ignore_outgoing)
2006 continue;
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 /* Never send packets back to the socket
2009 * they originated from - MvS (miquels@drinkel.ow.org)
2010 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002011 if (skb_loop_sk(ptype, skb))
2012 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002013
Salam Noureddine7866a622015-01-27 11:35:48 -08002014 if (pt_prev) {
2015 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002016 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002017 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002019
2020 /* need to clone skb, done only once */
2021 skb2 = skb_clone(skb, GFP_ATOMIC);
2022 if (!skb2)
2023 goto out_unlock;
2024
2025 net_timestamp_set(skb2);
2026
2027 /* skb->nh should be correctly
2028 * set by sender, so that the second statement is
2029 * just protection against buggy protocols.
2030 */
2031 skb_reset_mac_header(skb2);
2032
2033 if (skb_network_header(skb2) < skb2->data ||
2034 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2035 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2036 ntohs(skb2->protocol),
2037 dev->name);
2038 skb_reset_network_header(skb2);
2039 }
2040
2041 skb2->transport_header = skb2->network_header;
2042 skb2->pkt_type = PACKET_OUTGOING;
2043 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002045
2046 if (ptype_list == &ptype_all) {
2047 ptype_list = &dev->ptype_all;
2048 goto again;
2049 }
2050out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002051 if (pt_prev) {
2052 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2053 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2054 else
2055 kfree_skb(skb2);
2056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 rcu_read_unlock();
2058}
David Ahern74b20582016-05-10 11:19:50 -07002059EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Ben Hutchings2c530402012-07-10 10:55:09 +00002061/**
2062 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002063 * @dev: Network device
2064 * @txq: number of queues available
2065 *
2066 * If real_num_tx_queues is changed the tc mappings may no longer be
2067 * valid. To resolve this verify the tc mapping remains valid and if
2068 * not NULL the mapping. With no priorities mapping to this
2069 * offset/count pair it will no longer be used. In the worst case TC0
2070 * is invalid nothing can be done so disable priority mappings. If is
2071 * expected that drivers will fix this mapping if they can before
2072 * calling netif_set_real_num_tx_queues.
2073 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002074static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002075{
2076 int i;
2077 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2078
2079 /* If TC0 is invalidated disable TC mapping */
2080 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002081 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002082 dev->num_tc = 0;
2083 return;
2084 }
2085
2086 /* Invalidated prio to tc mappings set to TC0 */
2087 for (i = 1; i < TC_BITMASK + 1; i++) {
2088 int q = netdev_get_prio_tc_map(dev, i);
2089
2090 tc = &dev->tc_to_txq[q];
2091 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002092 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2093 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002094 netdev_set_prio_tc_map(dev, i, 0);
2095 }
2096 }
2097}
2098
Alexander Duyck8d059b02016-10-28 11:43:49 -04002099int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2100{
2101 if (dev->num_tc) {
2102 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2103 int i;
2104
Alexander Duyckffcfe252018-07-09 12:19:38 -04002105 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002106 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2107 if ((txq - tc->offset) < tc->count)
2108 return i;
2109 }
2110
Alexander Duyckffcfe252018-07-09 12:19:38 -04002111 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002112 return -1;
2113 }
2114
2115 return 0;
2116}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002117EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002118
Alexander Duyck537c00d2013-01-10 08:57:02 +00002119#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002120struct static_key xps_needed __read_mostly;
2121EXPORT_SYMBOL(xps_needed);
2122struct static_key xps_rxqs_needed __read_mostly;
2123EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002124static DEFINE_MUTEX(xps_map_mutex);
2125#define xmap_dereference(P) \
2126 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2127
Alexander Duyck6234f872016-10-28 11:46:49 -04002128static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2129 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002130{
2131 struct xps_map *map = NULL;
2132 int pos;
2133
2134 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002135 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002136 if (!map)
2137 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002138
Alexander Duyck6234f872016-10-28 11:46:49 -04002139 for (pos = map->len; pos--;) {
2140 if (map->queues[pos] != index)
2141 continue;
2142
2143 if (map->len > 1) {
2144 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002145 break;
2146 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002147
Amritha Nambiar80d19662018-06-29 21:26:41 -07002148 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002149 kfree_rcu(map, rcu);
2150 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002151 }
2152
Alexander Duyck6234f872016-10-28 11:46:49 -04002153 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002154}
2155
Alexander Duyck6234f872016-10-28 11:46:49 -04002156static bool remove_xps_queue_cpu(struct net_device *dev,
2157 struct xps_dev_maps *dev_maps,
2158 int cpu, u16 offset, u16 count)
2159{
Alexander Duyck184c4492016-10-28 11:50:13 -04002160 int num_tc = dev->num_tc ? : 1;
2161 bool active = false;
2162 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002163
Alexander Duyck184c4492016-10-28 11:50:13 -04002164 for (tci = cpu * num_tc; num_tc--; tci++) {
2165 int i, j;
2166
2167 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002168 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002169 break;
2170 }
2171
2172 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002173 }
2174
Alexander Duyck184c4492016-10-28 11:50:13 -04002175 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002176}
2177
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002178static void reset_xps_maps(struct net_device *dev,
2179 struct xps_dev_maps *dev_maps,
2180 bool is_rxqs_map)
2181{
2182 if (is_rxqs_map) {
2183 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2184 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2185 } else {
2186 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2187 }
2188 static_key_slow_dec_cpuslocked(&xps_needed);
2189 kfree_rcu(dev_maps, rcu);
2190}
2191
Amritha Nambiar80d19662018-06-29 21:26:41 -07002192static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2193 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2194 u16 offset, u16 count, bool is_rxqs_map)
2195{
2196 bool active = false;
2197 int i, j;
2198
2199 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2200 j < nr_ids;)
2201 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2202 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002203 if (!active)
2204 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002205
2206 if (!is_rxqs_map) {
2207 for (i = offset + (count - 1); count--; i--) {
2208 netdev_queue_numa_node_write(
2209 netdev_get_tx_queue(dev, i),
2210 NUMA_NO_NODE);
2211 }
2212 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002213}
2214
Alexander Duyck6234f872016-10-28 11:46:49 -04002215static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2216 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002217{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002218 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002219 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002220 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002221
Amritha Nambiar04157462018-06-29 21:26:46 -07002222 if (!static_key_false(&xps_needed))
2223 return;
2224
Andrei Vagin4d99f662018-08-08 20:07:35 -07002225 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002226 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002227
Amritha Nambiar04157462018-06-29 21:26:46 -07002228 if (static_key_false(&xps_rxqs_needed)) {
2229 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2230 if (dev_maps) {
2231 nr_ids = dev->num_rx_queues;
2232 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2233 offset, count, true);
2234 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002235 }
2236
2237 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002238 if (!dev_maps)
2239 goto out_no_maps;
2240
Amritha Nambiar80d19662018-06-29 21:26:41 -07002241 if (num_possible_cpus() > 1)
2242 possible_mask = cpumask_bits(cpu_possible_mask);
2243 nr_ids = nr_cpu_ids;
2244 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2245 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002246
Alexander Duyck537c00d2013-01-10 08:57:02 +00002247out_no_maps:
2248 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002249 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002250}
2251
Alexander Duyck6234f872016-10-28 11:46:49 -04002252static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2253{
2254 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2255}
2256
Amritha Nambiar80d19662018-06-29 21:26:41 -07002257static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2258 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002259{
2260 struct xps_map *new_map;
2261 int alloc_len = XPS_MIN_MAP_ALLOC;
2262 int i, pos;
2263
2264 for (pos = 0; map && pos < map->len; pos++) {
2265 if (map->queues[pos] != index)
2266 continue;
2267 return map;
2268 }
2269
Amritha Nambiar80d19662018-06-29 21:26:41 -07002270 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002271 if (map) {
2272 if (pos < map->alloc_len)
2273 return map;
2274
2275 alloc_len = map->alloc_len * 2;
2276 }
2277
Amritha Nambiar80d19662018-06-29 21:26:41 -07002278 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2279 * map
2280 */
2281 if (is_rxqs_map)
2282 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2283 else
2284 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2285 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002286 if (!new_map)
2287 return NULL;
2288
2289 for (i = 0; i < pos; i++)
2290 new_map->queues[i] = map->queues[i];
2291 new_map->alloc_len = alloc_len;
2292 new_map->len = pos;
2293
2294 return new_map;
2295}
2296
Andrei Vagin4d99f662018-08-08 20:07:35 -07002297/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002298int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2299 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002300{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002301 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002302 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002303 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002304 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002305 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002306 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002307 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002308
Alexander Duyck184c4492016-10-28 11:50:13 -04002309 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002310 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002311 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002312 if (num_tc < 0)
2313 return -EINVAL;
2314
2315 /* If queue belongs to subordinate dev use its map */
2316 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2317
Alexander Duyck184c4492016-10-28 11:50:13 -04002318 tc = netdev_txq_to_tc(dev, index);
2319 if (tc < 0)
2320 return -EINVAL;
2321 }
2322
Amritha Nambiar80d19662018-06-29 21:26:41 -07002323 mutex_lock(&xps_map_mutex);
2324 if (is_rxqs_map) {
2325 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2326 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2327 nr_ids = dev->num_rx_queues;
2328 } else {
2329 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2330 if (num_possible_cpus() > 1) {
2331 online_mask = cpumask_bits(cpu_online_mask);
2332 possible_mask = cpumask_bits(cpu_possible_mask);
2333 }
2334 dev_maps = xmap_dereference(dev->xps_cpus_map);
2335 nr_ids = nr_cpu_ids;
2336 }
2337
Alexander Duyck184c4492016-10-28 11:50:13 -04002338 if (maps_sz < L1_CACHE_BYTES)
2339 maps_sz = L1_CACHE_BYTES;
2340
Alexander Duyck01c5f862013-01-10 08:57:35 +00002341 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002342 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2343 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002344 if (!new_dev_maps)
2345 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002346 if (!new_dev_maps) {
2347 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002348 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002349 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002350
Amritha Nambiar80d19662018-06-29 21:26:41 -07002351 tci = j * num_tc + tc;
2352 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002353 NULL;
2354
Amritha Nambiar80d19662018-06-29 21:26:41 -07002355 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002356 if (!map)
2357 goto error;
2358
Amritha Nambiar80d19662018-06-29 21:26:41 -07002359 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002360 }
2361
2362 if (!new_dev_maps)
2363 goto out_no_new_maps;
2364
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002365 if (!dev_maps) {
2366 /* Increment static keys at most once per type */
2367 static_key_slow_inc_cpuslocked(&xps_needed);
2368 if (is_rxqs_map)
2369 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2370 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002371
Amritha Nambiar80d19662018-06-29 21:26:41 -07002372 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2373 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002374 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002375 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002376 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002377 map = xmap_dereference(dev_maps->attr_map[tci]);
2378 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002379 }
2380
2381 /* We need to explicitly update tci as prevous loop
2382 * could break out early if dev_maps is NULL.
2383 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002384 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002385
Amritha Nambiar80d19662018-06-29 21:26:41 -07002386 if (netif_attr_test_mask(j, mask, nr_ids) &&
2387 netif_attr_test_online(j, online_mask, nr_ids)) {
2388 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002389 int pos = 0;
2390
Amritha Nambiar80d19662018-06-29 21:26:41 -07002391 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002392 while ((pos < map->len) && (map->queues[pos] != index))
2393 pos++;
2394
2395 if (pos == map->len)
2396 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002397#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002398 if (!is_rxqs_map) {
2399 if (numa_node_id == -2)
2400 numa_node_id = cpu_to_node(j);
2401 else if (numa_node_id != cpu_to_node(j))
2402 numa_node_id = -1;
2403 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002404#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002405 } else if (dev_maps) {
2406 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002407 map = xmap_dereference(dev_maps->attr_map[tci]);
2408 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002409 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002410
Alexander Duyck184c4492016-10-28 11:50:13 -04002411 /* copy maps belonging to foreign traffic classes */
2412 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2413 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002414 map = xmap_dereference(dev_maps->attr_map[tci]);
2415 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002416 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002417 }
2418
Amritha Nambiar80d19662018-06-29 21:26:41 -07002419 if (is_rxqs_map)
2420 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2421 else
2422 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002423
Alexander Duyck537c00d2013-01-10 08:57:02 +00002424 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002425 if (!dev_maps)
2426 goto out_no_old_maps;
2427
Amritha Nambiar80d19662018-06-29 21:26:41 -07002428 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2429 j < nr_ids;) {
2430 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2431 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2432 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002433 if (map && map != new_map)
2434 kfree_rcu(map, rcu);
2435 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002436 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002437
Alexander Duyck184c4492016-10-28 11:50:13 -04002438 kfree_rcu(dev_maps, rcu);
2439
2440out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002441 dev_maps = new_dev_maps;
2442 active = true;
2443
2444out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002445 if (!is_rxqs_map) {
2446 /* update Tx queue numa node */
2447 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2448 (numa_node_id >= 0) ?
2449 numa_node_id : NUMA_NO_NODE);
2450 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002451
Alexander Duyck01c5f862013-01-10 08:57:35 +00002452 if (!dev_maps)
2453 goto out_no_maps;
2454
Amritha Nambiar80d19662018-06-29 21:26:41 -07002455 /* removes tx-queue from unused CPUs/rx-queues */
2456 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2457 j < nr_ids;) {
2458 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002459 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002460 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2461 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002462 active |= remove_xps_queue(dev_maps, tci, index);
2463 for (i = num_tc - tc, tci++; --i; tci++)
2464 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002465 }
2466
2467 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002468 if (!active)
2469 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002470
2471out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002472 mutex_unlock(&xps_map_mutex);
2473
2474 return 0;
2475error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002476 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002477 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2478 j < nr_ids;) {
2479 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2480 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002481 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002482 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002483 NULL;
2484 if (new_map && new_map != map)
2485 kfree(new_map);
2486 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002487 }
2488
Alexander Duyck537c00d2013-01-10 08:57:02 +00002489 mutex_unlock(&xps_map_mutex);
2490
Alexander Duyck537c00d2013-01-10 08:57:02 +00002491 kfree(new_dev_maps);
2492 return -ENOMEM;
2493}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002494EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002495
2496int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2497 u16 index)
2498{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002499 int ret;
2500
2501 cpus_read_lock();
2502 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2503 cpus_read_unlock();
2504
2505 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002506}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002507EXPORT_SYMBOL(netif_set_xps_queue);
2508
2509#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002510static void netdev_unbind_all_sb_channels(struct net_device *dev)
2511{
2512 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2513
2514 /* Unbind any subordinate channels */
2515 while (txq-- != &dev->_tx[0]) {
2516 if (txq->sb_dev)
2517 netdev_unbind_sb_channel(dev, txq->sb_dev);
2518 }
2519}
2520
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002521void netdev_reset_tc(struct net_device *dev)
2522{
Alexander Duyck6234f872016-10-28 11:46:49 -04002523#ifdef CONFIG_XPS
2524 netif_reset_xps_queues_gt(dev, 0);
2525#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002526 netdev_unbind_all_sb_channels(dev);
2527
2528 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002529 dev->num_tc = 0;
2530 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2531 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2532}
2533EXPORT_SYMBOL(netdev_reset_tc);
2534
2535int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2536{
2537 if (tc >= dev->num_tc)
2538 return -EINVAL;
2539
Alexander Duyck6234f872016-10-28 11:46:49 -04002540#ifdef CONFIG_XPS
2541 netif_reset_xps_queues(dev, offset, count);
2542#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002543 dev->tc_to_txq[tc].count = count;
2544 dev->tc_to_txq[tc].offset = offset;
2545 return 0;
2546}
2547EXPORT_SYMBOL(netdev_set_tc_queue);
2548
2549int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2550{
2551 if (num_tc > TC_MAX_QUEUE)
2552 return -EINVAL;
2553
Alexander Duyck6234f872016-10-28 11:46:49 -04002554#ifdef CONFIG_XPS
2555 netif_reset_xps_queues_gt(dev, 0);
2556#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002557 netdev_unbind_all_sb_channels(dev);
2558
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002559 dev->num_tc = num_tc;
2560 return 0;
2561}
2562EXPORT_SYMBOL(netdev_set_num_tc);
2563
Alexander Duyckffcfe252018-07-09 12:19:38 -04002564void netdev_unbind_sb_channel(struct net_device *dev,
2565 struct net_device *sb_dev)
2566{
2567 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2568
2569#ifdef CONFIG_XPS
2570 netif_reset_xps_queues_gt(sb_dev, 0);
2571#endif
2572 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2573 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2574
2575 while (txq-- != &dev->_tx[0]) {
2576 if (txq->sb_dev == sb_dev)
2577 txq->sb_dev = NULL;
2578 }
2579}
2580EXPORT_SYMBOL(netdev_unbind_sb_channel);
2581
2582int netdev_bind_sb_channel_queue(struct net_device *dev,
2583 struct net_device *sb_dev,
2584 u8 tc, u16 count, u16 offset)
2585{
2586 /* Make certain the sb_dev and dev are already configured */
2587 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2588 return -EINVAL;
2589
2590 /* We cannot hand out queues we don't have */
2591 if ((offset + count) > dev->real_num_tx_queues)
2592 return -EINVAL;
2593
2594 /* Record the mapping */
2595 sb_dev->tc_to_txq[tc].count = count;
2596 sb_dev->tc_to_txq[tc].offset = offset;
2597
2598 /* Provide a way for Tx queue to find the tc_to_txq map or
2599 * XPS map for itself.
2600 */
2601 while (count--)
2602 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2603
2604 return 0;
2605}
2606EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2607
2608int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2609{
2610 /* Do not use a multiqueue device to represent a subordinate channel */
2611 if (netif_is_multiqueue(dev))
2612 return -ENODEV;
2613
2614 /* We allow channels 1 - 32767 to be used for subordinate channels.
2615 * Channel 0 is meant to be "native" mode and used only to represent
2616 * the main root device. We allow writing 0 to reset the device back
2617 * to normal mode after being used as a subordinate channel.
2618 */
2619 if (channel > S16_MAX)
2620 return -EINVAL;
2621
2622 dev->num_tc = -channel;
2623
2624 return 0;
2625}
2626EXPORT_SYMBOL(netdev_set_sb_channel);
2627
John Fastabendf0796d52010-07-01 13:21:57 +00002628/*
2629 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002630 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002631 */
Tom Herberte6484932010-10-18 18:04:39 +00002632int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002633{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002634 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002635 int rc;
2636
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002637 disabling = txq < dev->real_num_tx_queues;
2638
Tom Herberte6484932010-10-18 18:04:39 +00002639 if (txq < 1 || txq > dev->num_tx_queues)
2640 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002641
Ben Hutchings5c565802011-02-15 19:39:21 +00002642 if (dev->reg_state == NETREG_REGISTERED ||
2643 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002644 ASSERT_RTNL();
2645
Tom Herbert1d24eb42010-11-21 13:17:27 +00002646 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2647 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002648 if (rc)
2649 return rc;
2650
John Fastabend4f57c082011-01-17 08:06:04 +00002651 if (dev->num_tc)
2652 netif_setup_tc(dev, txq);
2653
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002654 dev->real_num_tx_queues = txq;
2655
2656 if (disabling) {
2657 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002658 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002659#ifdef CONFIG_XPS
2660 netif_reset_xps_queues_gt(dev, txq);
2661#endif
2662 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002663 } else {
2664 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002665 }
Tom Herberte6484932010-10-18 18:04:39 +00002666
Tom Herberte6484932010-10-18 18:04:39 +00002667 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002668}
2669EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002670
Michael Daltona953be52014-01-16 22:23:28 -08002671#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002672/**
2673 * netif_set_real_num_rx_queues - set actual number of RX queues used
2674 * @dev: Network device
2675 * @rxq: Actual number of RX queues
2676 *
2677 * This must be called either with the rtnl_lock held or before
2678 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002679 * negative error code. If called before registration, it always
2680 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002681 */
2682int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2683{
2684 int rc;
2685
Tom Herbertbd25fa72010-10-18 18:00:16 +00002686 if (rxq < 1 || rxq > dev->num_rx_queues)
2687 return -EINVAL;
2688
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002689 if (dev->reg_state == NETREG_REGISTERED) {
2690 ASSERT_RTNL();
2691
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002692 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2693 rxq);
2694 if (rc)
2695 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002696 }
2697
2698 dev->real_num_rx_queues = rxq;
2699 return 0;
2700}
2701EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2702#endif
2703
Ben Hutchings2c530402012-07-10 10:55:09 +00002704/**
2705 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002706 *
2707 * This routine should set an upper limit on the number of RSS queues
2708 * used by default by multiqueue devices.
2709 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002710int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002711{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302712 return is_kdump_kernel() ?
2713 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002714}
2715EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2716
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002717static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002718{
2719 struct softnet_data *sd;
2720 unsigned long flags;
2721
2722 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002723 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002724 q->next_sched = NULL;
2725 *sd->output_queue_tailp = q;
2726 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002727 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2728 local_irq_restore(flags);
2729}
2730
David S. Miller37437bb2008-07-16 02:15:04 -07002731void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002732{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002733 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2734 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002735}
2736EXPORT_SYMBOL(__netif_schedule);
2737
Eric Dumazete6247022013-12-05 04:45:08 -08002738struct dev_kfree_skb_cb {
2739 enum skb_free_reason reason;
2740};
2741
2742static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002743{
Eric Dumazete6247022013-12-05 04:45:08 -08002744 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002745}
Denis Vlasenko56079432006-03-29 15:57:29 -08002746
John Fastabend46e5da40a2014-09-12 20:04:52 -07002747void netif_schedule_queue(struct netdev_queue *txq)
2748{
2749 rcu_read_lock();
2750 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2751 struct Qdisc *q = rcu_dereference(txq->qdisc);
2752
2753 __netif_schedule(q);
2754 }
2755 rcu_read_unlock();
2756}
2757EXPORT_SYMBOL(netif_schedule_queue);
2758
John Fastabend46e5da40a2014-09-12 20:04:52 -07002759void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2760{
2761 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2762 struct Qdisc *q;
2763
2764 rcu_read_lock();
2765 q = rcu_dereference(dev_queue->qdisc);
2766 __netif_schedule(q);
2767 rcu_read_unlock();
2768 }
2769}
2770EXPORT_SYMBOL(netif_tx_wake_queue);
2771
Eric Dumazete6247022013-12-05 04:45:08 -08002772void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2773{
2774 unsigned long flags;
2775
Myungho Jung98998862017-04-25 11:58:15 -07002776 if (unlikely(!skb))
2777 return;
2778
Reshetova, Elena63354792017-06-30 13:07:58 +03002779 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08002780 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03002781 refcount_set(&skb->users, 0);
2782 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08002783 return;
2784 }
2785 get_kfree_skb_cb(skb)->reason = reason;
2786 local_irq_save(flags);
2787 skb->next = __this_cpu_read(softnet_data.completion_queue);
2788 __this_cpu_write(softnet_data.completion_queue, skb);
2789 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2790 local_irq_restore(flags);
2791}
2792EXPORT_SYMBOL(__dev_kfree_skb_irq);
2793
2794void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002795{
2796 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002797 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002798 else
2799 dev_kfree_skb(skb);
2800}
Eric Dumazete6247022013-12-05 04:45:08 -08002801EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002802
2803
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002804/**
2805 * netif_device_detach - mark device as removed
2806 * @dev: network device
2807 *
2808 * Mark device as removed from system and therefore no longer available.
2809 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002810void netif_device_detach(struct net_device *dev)
2811{
2812 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2813 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002814 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002815 }
2816}
2817EXPORT_SYMBOL(netif_device_detach);
2818
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002819/**
2820 * netif_device_attach - mark device as attached
2821 * @dev: network device
2822 *
2823 * Mark device as attached from system and restart if needed.
2824 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002825void netif_device_attach(struct net_device *dev)
2826{
2827 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2828 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002829 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002830 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002831 }
2832}
2833EXPORT_SYMBOL(netif_device_attach);
2834
Jiri Pirko5605c762015-05-12 14:56:12 +02002835/*
2836 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2837 * to be used as a distribution range.
2838 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04002839static u16 skb_tx_hash(const struct net_device *dev,
2840 const struct net_device *sb_dev,
2841 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02002842{
2843 u32 hash;
2844 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04002845 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02002846
Alexander Duyckeadec8772018-07-09 12:19:48 -04002847 if (dev->num_tc) {
2848 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2849
2850 qoffset = sb_dev->tc_to_txq[tc].offset;
2851 qcount = sb_dev->tc_to_txq[tc].count;
2852 }
2853
Jiri Pirko5605c762015-05-12 14:56:12 +02002854 if (skb_rx_queue_recorded(skb)) {
2855 hash = skb_get_rx_queue(skb);
Alexander Duyck1b837d42018-04-27 14:06:53 -04002856 while (unlikely(hash >= qcount))
2857 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04002858 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02002859 }
2860
2861 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2862}
Jiri Pirko5605c762015-05-12 14:56:12 +02002863
Ben Hutchings36c92472012-01-17 07:57:56 +00002864static void skb_warn_bad_offload(const struct sk_buff *skb)
2865{
Wei Tang84d15ae2016-06-16 21:17:49 +08002866 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002867 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002868 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002869
Ben Greearc846ad92013-04-19 10:45:52 +00002870 if (!net_ratelimit())
2871 return;
2872
Bjørn Mork88ad4172015-11-16 19:16:40 +01002873 if (dev) {
2874 if (dev->dev.parent)
2875 name = dev_driver_string(dev->dev.parent);
2876 else
2877 name = netdev_name(dev);
2878 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002879 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2880 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002881 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002882 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002883 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2884 skb_shinfo(skb)->gso_type, skb->ip_summed);
2885}
2886
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887/*
2888 * Invalidate hardware checksum when packet is to be mangled, and
2889 * complete checksum manually on outgoing path.
2890 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002891int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Al Virod3bc23e2006-11-14 21:24:49 -08002893 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002894 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Patrick McHardy84fa7932006-08-29 16:44:56 -07002896 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002897 goto out_set_summed;
2898
2899 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002900 skb_warn_bad_offload(skb);
2901 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 }
2903
Eric Dumazetcef401d2013-01-25 20:34:37 +00002904 /* Before computing a checksum, we should make sure no frag could
2905 * be modified by an external entity : checksum could be wrong.
2906 */
2907 if (skb_has_shared_frag(skb)) {
2908 ret = __skb_linearize(skb);
2909 if (ret)
2910 goto out;
2911 }
2912
Michał Mirosław55508d62010-12-14 15:24:08 +00002913 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002914 BUG_ON(offset >= skb_headlen(skb));
2915 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2916
2917 offset += skb->csum_offset;
2918 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2919
2920 if (skb_cloned(skb) &&
2921 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2923 if (ret)
2924 goto out;
2925 }
2926
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002927 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002928out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002930out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 return ret;
2932}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002933EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Davide Carattib72b5bf2017-05-18 15:44:38 +02002935int skb_crc32c_csum_help(struct sk_buff *skb)
2936{
2937 __le32 crc32c_csum;
2938 int ret = 0, offset, start;
2939
2940 if (skb->ip_summed != CHECKSUM_PARTIAL)
2941 goto out;
2942
2943 if (unlikely(skb_is_gso(skb)))
2944 goto out;
2945
2946 /* Before computing a checksum, we should make sure no frag could
2947 * be modified by an external entity : checksum could be wrong.
2948 */
2949 if (unlikely(skb_has_shared_frag(skb))) {
2950 ret = __skb_linearize(skb);
2951 if (ret)
2952 goto out;
2953 }
2954 start = skb_checksum_start_offset(skb);
2955 offset = start + offsetof(struct sctphdr, checksum);
2956 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
2957 ret = -EINVAL;
2958 goto out;
2959 }
2960 if (skb_cloned(skb) &&
2961 !skb_clone_writable(skb, offset + sizeof(__le32))) {
2962 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2963 if (ret)
2964 goto out;
2965 }
2966 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
2967 skb->len - start, ~(__u32)0,
2968 crc32c_csum_stub));
2969 *(__le32 *)(skb->data + offset) = crc32c_csum;
2970 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02002971 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02002972out:
2973 return ret;
2974}
2975
Vlad Yasevich53d64712014-03-27 17:26:18 -04002976__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002977{
2978 __be16 type = skb->protocol;
2979
Pravin B Shelar19acc322013-05-07 20:41:07 +00002980 /* Tunnel gso handlers can set protocol to ethernet. */
2981 if (type == htons(ETH_P_TEB)) {
2982 struct ethhdr *eth;
2983
2984 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2985 return 0;
2986
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07002987 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00002988 type = eth->h_proto;
2989 }
2990
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002991 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002992}
2993
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002994/**
2995 * skb_mac_gso_segment - mac layer segmentation handler.
2996 * @skb: buffer to segment
2997 * @features: features for the output path (see dev->features)
2998 */
2999struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3000 netdev_features_t features)
3001{
3002 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3003 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003004 int vlan_depth = skb->mac_len;
3005 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003006
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003007 if (unlikely(!type))
3008 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003009
Vlad Yasevich53d64712014-03-27 17:26:18 -04003010 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003011
3012 rcu_read_lock();
3013 list_for_each_entry_rcu(ptype, &offload_base, list) {
3014 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003015 segs = ptype->callbacks.gso_segment(skb, features);
3016 break;
3017 }
3018 }
3019 rcu_read_unlock();
3020
3021 __skb_push(skb, skb->data - skb_mac_header(skb));
3022
3023 return segs;
3024}
3025EXPORT_SYMBOL(skb_mac_gso_segment);
3026
3027
Cong Wang12b00042013-02-05 16:36:38 +00003028/* openvswitch calls this on rx path, so we need a different check.
3029 */
3030static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3031{
3032 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003033 return skb->ip_summed != CHECKSUM_PARTIAL &&
3034 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003035
3036 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003037}
3038
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003039/**
Cong Wang12b00042013-02-05 16:36:38 +00003040 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003041 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003042 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003043 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003044 *
3045 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003046 *
3047 * It may return NULL if the skb requires no segmentation. This is
3048 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003049 *
3050 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003051 */
Cong Wang12b00042013-02-05 16:36:38 +00003052struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3053 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003054{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003055 struct sk_buff *segs;
3056
Cong Wang12b00042013-02-05 16:36:38 +00003057 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003058 int err;
3059
Eric Dumazetb2504a52017-01-31 10:20:32 -08003060 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003061 err = skb_cow_head(skb, 0);
3062 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003063 return ERR_PTR(err);
3064 }
3065
Alexander Duyck802ab552016-04-10 21:45:03 -04003066 /* Only report GSO partial support if it will enable us to
3067 * support segmentation on this frame without needing additional
3068 * work.
3069 */
3070 if (features & NETIF_F_GSO_PARTIAL) {
3071 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3072 struct net_device *dev = skb->dev;
3073
3074 partial_features |= dev->features & dev->gso_partial_features;
3075 if (!skb_gso_ok(skb, features | partial_features))
3076 features &= ~NETIF_F_GSO_PARTIAL;
3077 }
3078
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003079 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
3080 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3081
Pravin B Shelar68c33162013-02-14 14:02:41 +00003082 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003083 SKB_GSO_CB(skb)->encap_level = 0;
3084
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003085 skb_reset_mac_header(skb);
3086 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003087
Eric Dumazetb2504a52017-01-31 10:20:32 -08003088 segs = skb_mac_gso_segment(skb, features);
3089
Willem de Bruijn8d74e9f2017-12-12 11:39:04 -05003090 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003091 skb_warn_bad_offload(skb);
3092
3093 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003094}
Cong Wang12b00042013-02-05 16:36:38 +00003095EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003096
Herbert Xufb286bb2005-11-10 13:01:24 -08003097/* Take action when hardware reception checksum errors are detected. */
3098#ifdef CONFIG_BUG
3099void netdev_rx_csum_fault(struct net_device *dev)
3100{
3101 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003102 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08003103 dump_stack();
3104 }
3105}
3106EXPORT_SYMBOL(netdev_rx_csum_fault);
3107#endif
3108
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003109/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003110static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003112#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 int i;
tchardingf4563a72017-02-09 17:56:07 +11003114
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003115 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003116 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3117 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003118
Ian Campbellea2ab692011-08-22 23:44:58 +00003119 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003120 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003121 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003122 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 return 0;
3125}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126
Simon Horman3b392dd2014-06-04 08:53:17 +09003127/* If MPLS offload request, verify we are testing hardware MPLS features
3128 * instead of standard features for the netdev.
3129 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003130#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003131static netdev_features_t net_mpls_features(struct sk_buff *skb,
3132 netdev_features_t features,
3133 __be16 type)
3134{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003135 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003136 features &= skb->dev->mpls_features;
3137
3138 return features;
3139}
3140#else
3141static netdev_features_t net_mpls_features(struct sk_buff *skb,
3142 netdev_features_t features,
3143 __be16 type)
3144{
3145 return features;
3146}
3147#endif
3148
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003149static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003150 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003151{
Vlad Yasevich53d64712014-03-27 17:26:18 -04003152 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09003153 __be16 type;
3154
3155 type = skb_network_protocol(skb, &tmp);
3156 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003157
Ed Cashinc0d680e2012-09-19 15:49:00 +00003158 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003159 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003160 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003161 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003162 if (illegal_highdma(skb->dev, skb))
3163 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003164
3165 return features;
3166}
3167
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003168netdev_features_t passthru_features_check(struct sk_buff *skb,
3169 struct net_device *dev,
3170 netdev_features_t features)
3171{
3172 return features;
3173}
3174EXPORT_SYMBOL(passthru_features_check);
3175
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003176static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003177 struct net_device *dev,
3178 netdev_features_t features)
3179{
3180 return vlan_features_check(skb, features);
3181}
3182
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003183static netdev_features_t gso_features_check(const struct sk_buff *skb,
3184 struct net_device *dev,
3185 netdev_features_t features)
3186{
3187 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3188
3189 if (gso_segs > dev->gso_max_segs)
3190 return features & ~NETIF_F_GSO_MASK;
3191
Alexander Duyck802ab552016-04-10 21:45:03 -04003192 /* Support for GSO partial features requires software
3193 * intervention before we can actually process the packets
3194 * so we need to strip support for any partial features now
3195 * and we can pull them back in after we have partially
3196 * segmented the frame.
3197 */
3198 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3199 features &= ~dev->gso_partial_features;
3200
3201 /* Make sure to clear the IPv4 ID mangling feature if the
3202 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003203 */
3204 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3205 struct iphdr *iph = skb->encapsulation ?
3206 inner_ip_hdr(skb) : ip_hdr(skb);
3207
3208 if (!(iph->frag_off & htons(IP_DF)))
3209 features &= ~NETIF_F_TSO_MANGLEID;
3210 }
3211
3212 return features;
3213}
3214
Florian Westphalc1e756b2014-05-05 15:00:44 +02003215netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003216{
Jesse Gross5f352272014-12-23 22:37:26 -08003217 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003218 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003219
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003220 if (skb_is_gso(skb))
3221 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003222
Jesse Gross5f352272014-12-23 22:37:26 -08003223 /* If encapsulation offload request, verify we are testing
3224 * hardware encapsulation features instead of standard
3225 * features for the netdev
3226 */
3227 if (skb->encapsulation)
3228 features &= dev->hw_enc_features;
3229
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003230 if (skb_vlan_tagged(skb))
3231 features = netdev_intersect_features(features,
3232 dev->vlan_features |
3233 NETIF_F_HW_VLAN_CTAG_TX |
3234 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003235
Jesse Gross5f352272014-12-23 22:37:26 -08003236 if (dev->netdev_ops->ndo_features_check)
3237 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3238 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003239 else
3240 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003241
Florian Westphalc1e756b2014-05-05 15:00:44 +02003242 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003243}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003244EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003245
David S. Miller2ea25512014-08-29 21:10:01 -07003246static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003247 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003248{
David S. Miller2ea25512014-08-29 21:10:01 -07003249 unsigned int len;
3250 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003251
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003252 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003253 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003254
David S. Miller2ea25512014-08-29 21:10:01 -07003255 len = skb->len;
3256 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003257 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003258 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003259
Patrick McHardy572a9d72009-11-10 06:14:14 +00003260 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003261}
David S. Miller2ea25512014-08-29 21:10:01 -07003262
David S. Miller8dcda222014-09-01 15:06:40 -07003263struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3264 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003265{
3266 struct sk_buff *skb = first;
3267 int rc = NETDEV_TX_OK;
3268
3269 while (skb) {
3270 struct sk_buff *next = skb->next;
3271
David S. Millera8305bf2018-07-29 20:42:53 -07003272 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003273 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003274 if (unlikely(!dev_xmit_complete(rc))) {
3275 skb->next = next;
3276 goto out;
3277 }
3278
3279 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003280 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003281 rc = NETDEV_TX_BUSY;
3282 break;
3283 }
3284 }
3285
3286out:
3287 *ret = rc;
3288 return skb;
3289}
3290
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003291static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3292 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003293{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003294 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003295 !vlan_hw_offload_capable(features, skb->vlan_proto))
3296 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003297 return skb;
3298}
3299
Davide Caratti43c26a12017-05-18 15:44:41 +02003300int skb_csum_hwoffload_help(struct sk_buff *skb,
3301 const netdev_features_t features)
3302{
3303 if (unlikely(skb->csum_not_inet))
3304 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3305 skb_crc32c_csum_help(skb);
3306
3307 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3308}
3309EXPORT_SYMBOL(skb_csum_hwoffload_help);
3310
Steffen Klassertf53c7232017-12-20 10:41:36 +01003311static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003312{
3313 netdev_features_t features;
3314
David S. Millereae3f882014-08-30 15:17:13 -07003315 features = netif_skb_features(skb);
3316 skb = validate_xmit_vlan(skb, features);
3317 if (unlikely(!skb))
3318 goto out_null;
3319
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003320 skb = sk_validate_xmit_skb(skb, dev);
3321 if (unlikely(!skb))
3322 goto out_null;
3323
Johannes Berg8b86a612015-04-17 15:45:04 +02003324 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003325 struct sk_buff *segs;
3326
3327 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003328 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003329 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003330 } else if (segs) {
3331 consume_skb(skb);
3332 skb = segs;
3333 }
David S. Millereae3f882014-08-30 15:17:13 -07003334 } else {
3335 if (skb_needs_linearize(skb, features) &&
3336 __skb_linearize(skb))
3337 goto out_kfree_skb;
3338
3339 /* If packet is not checksummed and device does not
3340 * support checksumming for this protocol, complete
3341 * checksumming here.
3342 */
3343 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3344 if (skb->encapsulation)
3345 skb_set_inner_transport_header(skb,
3346 skb_checksum_start_offset(skb));
3347 else
3348 skb_set_transport_header(skb,
3349 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003350 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003351 goto out_kfree_skb;
3352 }
3353 }
3354
Steffen Klassertf53c7232017-12-20 10:41:36 +01003355 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003356
David S. Millereae3f882014-08-30 15:17:13 -07003357 return skb;
3358
3359out_kfree_skb:
3360 kfree_skb(skb);
3361out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003362 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003363 return NULL;
3364}
3365
Steffen Klassertf53c7232017-12-20 10:41:36 +01003366struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003367{
3368 struct sk_buff *next, *head = NULL, *tail;
3369
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003370 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003371 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003372 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003373
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003374 /* in case skb wont be segmented, point to itself */
3375 skb->prev = skb;
3376
Steffen Klassertf53c7232017-12-20 10:41:36 +01003377 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003378 if (!skb)
3379 continue;
3380
3381 if (!head)
3382 head = skb;
3383 else
3384 tail->next = skb;
3385 /* If skb was segmented, skb->prev points to
3386 * the last segment. If not, it still contains skb.
3387 */
3388 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003389 }
3390 return head;
3391}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003392EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003393
Eric Dumazet1def9232013-01-10 12:36:42 +00003394static void qdisc_pkt_len_init(struct sk_buff *skb)
3395{
3396 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3397
3398 qdisc_skb_cb(skb)->pkt_len = skb->len;
3399
3400 /* To get more precise estimation of bytes sent on wire,
3401 * we add to pkt_len the headers size of all segments
3402 */
3403 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003404 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003405 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003406
Eric Dumazet757b8b12013-01-15 21:14:21 -08003407 /* mac layer + network layer */
3408 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3409
3410 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003411 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3412 const struct tcphdr *th;
3413 struct tcphdr _tcphdr;
3414
3415 th = skb_header_pointer(skb, skb_transport_offset(skb),
3416 sizeof(_tcphdr), &_tcphdr);
3417 if (likely(th))
3418 hdr_len += __tcp_hdrlen(th);
3419 } else {
3420 struct udphdr _udphdr;
3421
3422 if (skb_header_pointer(skb, skb_transport_offset(skb),
3423 sizeof(_udphdr), &_udphdr))
3424 hdr_len += sizeof(struct udphdr);
3425 }
Jason Wang15e5a032013-03-25 20:19:59 +00003426
3427 if (shinfo->gso_type & SKB_GSO_DODGY)
3428 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3429 shinfo->gso_size);
3430
3431 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003432 }
3433}
3434
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003435static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3436 struct net_device *dev,
3437 struct netdev_queue *txq)
3438{
3439 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003440 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003441 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003442 int rc;
3443
Eric Dumazeta2da5702011-01-20 03:48:19 +00003444 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003445
3446 if (q->flags & TCQ_F_NOLOCK) {
3447 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
3448 __qdisc_drop(skb, &to_free);
3449 rc = NET_XMIT_DROP;
3450 } else {
3451 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni32f7b442018-05-15 10:50:31 +02003452 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003453 }
3454
3455 if (unlikely(to_free))
3456 kfree_skb_list(to_free);
3457 return rc;
3458 }
3459
Eric Dumazet79640a42010-06-02 05:09:29 -07003460 /*
3461 * Heuristic to force contended enqueues to serialize on a
3462 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003463 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003464 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003465 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003466 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003467 if (unlikely(contended))
3468 spin_lock(&q->busylock);
3469
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003470 spin_lock(root_lock);
3471 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003472 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003473 rc = NET_XMIT_DROP;
3474 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003475 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003476 /*
3477 * This is a work-conserving queue; there are no old skbs
3478 * waiting to be sent out; and the qdisc is not running -
3479 * xmit the skb directly.
3480 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003481
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003482 qdisc_bstats_update(q, skb);
3483
Eric Dumazet55a93b32014-10-03 15:31:07 -07003484 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003485 if (unlikely(contended)) {
3486 spin_unlock(&q->busylock);
3487 contended = false;
3488 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003489 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003490 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003491
John Fastabend6c148182017-12-07 09:54:06 -08003492 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003493 rc = NET_XMIT_SUCCESS;
3494 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003495 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003496 if (qdisc_run_begin(q)) {
3497 if (unlikely(contended)) {
3498 spin_unlock(&q->busylock);
3499 contended = false;
3500 }
3501 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003502 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003503 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003504 }
3505 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003506 if (unlikely(to_free))
3507 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003508 if (unlikely(contended))
3509 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003510 return rc;
3511}
3512
Daniel Borkmann86f85152013-12-29 17:27:11 +01003513#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003514static void skb_update_prio(struct sk_buff *skb)
3515{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003516 const struct netprio_map *map;
3517 const struct sock *sk;
3518 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003519
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003520 if (skb->priority)
3521 return;
3522 map = rcu_dereference_bh(skb->dev->priomap);
3523 if (!map)
3524 return;
3525 sk = skb_to_full_sk(skb);
3526 if (!sk)
3527 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003528
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003529 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3530
3531 if (prioidx < map->priomap_len)
3532 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003533}
3534#else
3535#define skb_update_prio(skb)
3536#endif
3537
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003538DEFINE_PER_CPU(int, xmit_recursion);
3539EXPORT_SYMBOL(xmit_recursion);
3540
Dave Jonesd29f7492008-07-22 14:09:06 -07003541/**
Michel Machado95603e22012-06-12 10:16:35 +00003542 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003543 * @net: network namespace this loopback is happening in
3544 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003545 * @skb: buffer to transmit
3546 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003547int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003548{
3549 skb_reset_mac_header(skb);
3550 __skb_pull(skb, skb_network_offset(skb));
3551 skb->pkt_type = PACKET_LOOPBACK;
3552 skb->ip_summed = CHECKSUM_UNNECESSARY;
3553 WARN_ON(!skb_dst(skb));
3554 skb_dst_force(skb);
3555 netif_rx_ni(skb);
3556 return 0;
3557}
3558EXPORT_SYMBOL(dev_loopback_xmit);
3559
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003560#ifdef CONFIG_NET_EGRESS
3561static struct sk_buff *
3562sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3563{
Jiri Pirko46209402017-11-03 11:46:25 +01003564 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003565 struct tcf_result cl_res;
3566
Jiri Pirko46209402017-11-03 11:46:25 +01003567 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003568 return skb;
3569
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003570 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003571 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003572
Jiri Pirko46209402017-11-03 11:46:25 +01003573 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003574 case TC_ACT_OK:
3575 case TC_ACT_RECLASSIFY:
3576 skb->tc_index = TC_H_MIN(cl_res.classid);
3577 break;
3578 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003579 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003580 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003581 kfree_skb(skb);
3582 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003583 case TC_ACT_STOLEN:
3584 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003585 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003586 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003587 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003588 return NULL;
3589 case TC_ACT_REDIRECT:
3590 /* No need to push/pop skb's mac_header here on egress! */
3591 skb_do_redirect(skb);
3592 *ret = NET_XMIT_SUCCESS;
3593 return NULL;
3594 default:
3595 break;
3596 }
3597
3598 return skb;
3599}
3600#endif /* CONFIG_NET_EGRESS */
3601
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003602#ifdef CONFIG_XPS
3603static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3604 struct xps_dev_maps *dev_maps, unsigned int tci)
3605{
3606 struct xps_map *map;
3607 int queue_index = -1;
3608
3609 if (dev->num_tc) {
3610 tci *= dev->num_tc;
3611 tci += netdev_get_prio_tc_map(dev, skb->priority);
3612 }
3613
3614 map = rcu_dereference(dev_maps->attr_map[tci]);
3615 if (map) {
3616 if (map->len == 1)
3617 queue_index = map->queues[0];
3618 else
3619 queue_index = map->queues[reciprocal_scale(
3620 skb_get_hash(skb), map->len)];
3621 if (unlikely(queue_index >= dev->real_num_tx_queues))
3622 queue_index = -1;
3623 }
3624 return queue_index;
3625}
3626#endif
3627
Alexander Duyckeadec8772018-07-09 12:19:48 -04003628static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3629 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003630{
3631#ifdef CONFIG_XPS
3632 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003633 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003634 int queue_index = -1;
3635
Amritha Nambiar04157462018-06-29 21:26:46 -07003636 if (!static_key_false(&xps_needed))
3637 return -1;
3638
Jiri Pirko638b2a62015-05-12 14:56:13 +02003639 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003640 if (!static_key_false(&xps_rxqs_needed))
3641 goto get_cpus_map;
3642
Alexander Duyckeadec8772018-07-09 12:19:48 -04003643 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003644 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003645 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003646
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003647 if (tci >= 0 && tci < dev->num_rx_queues)
3648 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3649 tci);
3650 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003651
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003652get_cpus_map:
3653 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003654 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003655 if (dev_maps) {
3656 unsigned int tci = skb->sender_cpu - 1;
3657
3658 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3659 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003660 }
3661 }
3662 rcu_read_unlock();
3663
3664 return queue_index;
3665#else
3666 return -1;
3667#endif
3668}
3669
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003670u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -04003671 struct net_device *sb_dev,
3672 select_queue_fallback_t fallback)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003673{
3674 return 0;
3675}
3676EXPORT_SYMBOL(dev_pick_tx_zero);
3677
3678u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Alexander Duyck4f49dec2018-07-09 12:19:59 -04003679 struct net_device *sb_dev,
3680 select_queue_fallback_t fallback)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003681{
3682 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3683}
3684EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3685
Alexander Duyck8ec56fc2018-07-09 12:20:04 -04003686static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3687 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003688{
3689 struct sock *sk = skb->sk;
3690 int queue_index = sk_tx_queue_get(sk);
3691
Alexander Duyckeadec8772018-07-09 12:19:48 -04003692 sb_dev = sb_dev ? : dev;
3693
Jiri Pirko638b2a62015-05-12 14:56:13 +02003694 if (queue_index < 0 || skb->ooo_okay ||
3695 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003696 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003697
Jiri Pirko638b2a62015-05-12 14:56:13 +02003698 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003699 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003700
3701 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003702 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003703 rcu_access_pointer(sk->sk_dst_cache))
3704 sk_tx_queue_set(sk, new_index);
3705
3706 queue_index = new_index;
3707 }
3708
3709 return queue_index;
3710}
3711
3712struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3713 struct sk_buff *skb,
Alexander Duyckeadec8772018-07-09 12:19:48 -04003714 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003715{
3716 int queue_index = 0;
3717
3718#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003719 u32 sender_cpu = skb->sender_cpu - 1;
3720
3721 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003722 skb->sender_cpu = raw_smp_processor_id() + 1;
3723#endif
3724
3725 if (dev->real_num_tx_queues != 1) {
3726 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11003727
Jiri Pirko638b2a62015-05-12 14:56:13 +02003728 if (ops->ndo_select_queue)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003729 queue_index = ops->ndo_select_queue(dev, skb, sb_dev,
Jiri Pirko638b2a62015-05-12 14:56:13 +02003730 __netdev_pick_tx);
3731 else
Alexander Duyck8ec56fc2018-07-09 12:20:04 -04003732 queue_index = __netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003733
Alexander Duyckd5845272017-11-22 10:57:41 -08003734 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003735 }
3736
3737 skb_set_queue_mapping(skb, queue_index);
3738 return netdev_get_tx_queue(dev, queue_index);
3739}
3740
Michel Machado95603e22012-06-12 10:16:35 +00003741/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003742 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003743 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04003744 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003745 *
3746 * Queue a buffer for transmission to a network device. The caller must
3747 * have set the device and priority and built the buffer before calling
3748 * this function. The function can be called from an interrupt.
3749 *
3750 * A negative errno code is returned on a failure. A success does not
3751 * guarantee the frame will be transmitted as it may be dropped due
3752 * to congestion or traffic shaping.
3753 *
3754 * -----------------------------------------------------------------------------------
3755 * I notice this method can also return errors from the queue disciplines,
3756 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3757 * be positive.
3758 *
3759 * Regardless of the return value, the skb is consumed, so it is currently
3760 * difficult to retry a send to this method. (You can bump the ref count
3761 * before sending to hold a reference for retry if you are careful.)
3762 *
3763 * When calling this method, interrupts MUST be enabled. This is because
3764 * the BH enable code must have IRQs enabled so that it will not deadlock.
3765 * --BLG
3766 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003767static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768{
3769 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003770 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 struct Qdisc *q;
3772 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01003773 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003775 skb_reset_mac_header(skb);
3776
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003777 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3778 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3779
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003780 /* Disable soft irqs for various locks below. Also
3781 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003783 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
Neil Horman5bc14212011-11-22 05:10:51 +00003785 skb_update_prio(skb);
3786
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003787 qdisc_pkt_len_init(skb);
3788#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003789 skb->tc_at_ingress = 0;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003790# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07003791 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003792 skb = sch_handle_egress(skb, &rc, dev);
3793 if (!skb)
3794 goto out;
3795 }
3796# endif
3797#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003798 /* If device/qdisc don't need skb->dst, release it right now while
3799 * its hot in this cpu cache.
3800 */
3801 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3802 skb_dst_drop(skb);
3803 else
3804 skb_dst_force(skb);
3805
Alexander Duyckeadec8772018-07-09 12:19:48 -04003806 txq = netdev_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003807 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003808
Koki Sanagicf66ba52010-08-23 18:45:02 +09003809 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003811 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003812 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 }
3814
3815 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11003816 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
tchardingeb13da12017-02-09 17:56:06 +11003818 * Really, it is unlikely that netif_tx_lock protection is necessary
3819 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
3820 * counters.)
3821 * However, it is possible, that they rely on protection
3822 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
tchardingeb13da12017-02-09 17:56:06 +11003824 * Check this and shot the lock. It is not prone from deadlocks.
3825 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 */
3827 if (dev->flags & IFF_UP) {
3828 int cpu = smp_processor_id(); /* ok because BHs are off */
3829
David S. Millerc773e842008-07-08 23:13:53 -07003830 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003831 if (unlikely(__this_cpu_read(xmit_recursion) >
3832 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003833 goto recursion_alert;
3834
Steffen Klassertf53c7232017-12-20 10:41:36 +01003835 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003836 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003837 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003838
David S. Millerc773e842008-07-08 23:13:53 -07003839 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Tom Herbert734664982011-11-28 16:32:44 +00003841 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003842 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07003843 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003844 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003845 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003846 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 goto out;
3848 }
3849 }
David S. Millerc773e842008-07-08 23:13:53 -07003850 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003851 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3852 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 } else {
3854 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003855 * unfortunately
3856 */
3857recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003858 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3859 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 }
3861 }
3862
3863 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003864 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Eric Dumazet015f0682014-03-27 08:45:56 -07003866 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003867 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 return rc;
3869out:
Herbert Xud4828d82006-06-22 02:28:18 -07003870 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 return rc;
3872}
Jason Wangf663dd92014-01-10 16:18:26 +08003873
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003874int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003875{
3876 return __dev_queue_xmit(skb, NULL);
3877}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003878EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Alexander Duyckeadec8772018-07-09 12:19:48 -04003880int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08003881{
Alexander Duyckeadec8772018-07-09 12:19:48 -04003882 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08003883}
3884EXPORT_SYMBOL(dev_queue_xmit_accel);
3885
Magnus Karlsson865b03f2018-05-02 13:01:33 +02003886int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
3887{
3888 struct net_device *dev = skb->dev;
3889 struct sk_buff *orig_skb = skb;
3890 struct netdev_queue *txq;
3891 int ret = NETDEV_TX_BUSY;
3892 bool again = false;
3893
3894 if (unlikely(!netif_running(dev) ||
3895 !netif_carrier_ok(dev)))
3896 goto drop;
3897
3898 skb = validate_xmit_skb_list(skb, dev, &again);
3899 if (skb != orig_skb)
3900 goto drop;
3901
3902 skb_set_queue_mapping(skb, queue_id);
3903 txq = skb_get_tx_queue(dev, skb);
3904
3905 local_bh_disable();
3906
3907 HARD_TX_LOCK(dev, txq, smp_processor_id());
3908 if (!netif_xmit_frozen_or_drv_stopped(txq))
3909 ret = netdev_start_xmit(skb, dev, txq, false);
3910 HARD_TX_UNLOCK(dev, txq);
3911
3912 local_bh_enable();
3913
3914 if (!dev_xmit_complete(ret))
3915 kfree_skb(skb);
3916
3917 return ret;
3918drop:
3919 atomic_long_inc(&dev->tx_dropped);
3920 kfree_skb_list(skb);
3921 return NET_XMIT_DROP;
3922}
3923EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
tchardingeb13da12017-02-09 17:56:06 +11003925/*************************************************************************
3926 * Receiver routines
3927 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003929int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003930EXPORT_SYMBOL(netdev_max_backlog);
3931
Eric Dumazet3b098e22010-05-15 23:57:10 -07003932int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003933int netdev_budget __read_mostly = 300;
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04003934unsigned int __read_mostly netdev_budget_usecs = 2000;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01003935int weight_p __read_mostly = 64; /* old backlog weight */
3936int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
3937int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
3938int dev_rx_weight __read_mostly = 64;
3939int dev_tx_weight __read_mostly = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003941/* Called with irq disabled */
3942static inline void ____napi_schedule(struct softnet_data *sd,
3943 struct napi_struct *napi)
3944{
3945 list_add_tail(&napi->poll_list, &sd->poll_list);
3946 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3947}
3948
Eric Dumazetdf334542010-03-24 19:13:54 +00003949#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003950
3951/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003952struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003953EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003954u32 rps_cpu_mask __read_mostly;
3955EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003956
Ingo Molnarc5905af2012-02-24 08:31:31 +01003957struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003958EXPORT_SYMBOL(rps_needed);
Eric Dumazet13bfff22016-12-07 08:29:10 -08003959struct static_key rfs_needed __read_mostly;
3960EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003961
Ben Hutchingsc4454772011-01-19 11:03:53 +00003962static struct rps_dev_flow *
3963set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3964 struct rps_dev_flow *rflow, u16 next_cpu)
3965{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003966 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003967#ifdef CONFIG_RFS_ACCEL
3968 struct netdev_rx_queue *rxqueue;
3969 struct rps_dev_flow_table *flow_table;
3970 struct rps_dev_flow *old_rflow;
3971 u32 flow_id;
3972 u16 rxq_index;
3973 int rc;
3974
3975 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003976 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3977 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003978 goto out;
3979 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3980 if (rxq_index == skb_get_rx_queue(skb))
3981 goto out;
3982
3983 rxqueue = dev->_rx + rxq_index;
3984 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3985 if (!flow_table)
3986 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003987 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003988 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3989 rxq_index, flow_id);
3990 if (rc < 0)
3991 goto out;
3992 old_rflow = rflow;
3993 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003994 rflow->filter = rc;
3995 if (old_rflow->filter == rflow->filter)
3996 old_rflow->filter = RPS_NO_FILTER;
3997 out:
3998#endif
3999 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004000 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004001 }
4002
Ben Hutchings09994d12011-10-03 04:42:46 +00004003 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004004 return rflow;
4005}
4006
Tom Herbert0a9627f2010-03-16 08:03:29 +00004007/*
4008 * get_rps_cpu is called from netif_receive_skb and returns the target
4009 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004010 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004011 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004012static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4013 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004014{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004015 const struct rps_sock_flow_table *sock_flow_table;
4016 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004017 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004018 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004019 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004020 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004021 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004022
Tom Herbert0a9627f2010-03-16 08:03:29 +00004023 if (skb_rx_queue_recorded(skb)) {
4024 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004025
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004026 if (unlikely(index >= dev->real_num_rx_queues)) {
4027 WARN_ONCE(dev->real_num_rx_queues > 1,
4028 "%s received packet on queue %u, but number "
4029 "of RX queues is %u\n",
4030 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004031 goto done;
4032 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004033 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004034 }
4035
Eric Dumazet567e4b72015-02-06 12:59:01 -08004036 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4037
4038 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4039 map = rcu_dereference(rxqueue->rps_map);
4040 if (!flow_table && !map)
4041 goto done;
4042
Changli Gao2d47b452010-08-17 19:00:56 +00004043 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004044 hash = skb_get_hash(skb);
4045 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004046 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004047
Tom Herbertfec5e652010-04-16 16:01:27 -07004048 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4049 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004050 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004051 u32 next_cpu;
4052 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004053
Eric Dumazet567e4b72015-02-06 12:59:01 -08004054 /* First check into global flow table if there is a match */
4055 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4056 if ((ident ^ hash) & ~rps_cpu_mask)
4057 goto try_rps;
4058
4059 next_cpu = ident & rps_cpu_mask;
4060
4061 /* OK, now we know there is a match,
4062 * we can look at the local (per receive queue) flow table
4063 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004064 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004065 tcpu = rflow->cpu;
4066
Tom Herbertfec5e652010-04-16 16:01:27 -07004067 /*
4068 * If the desired CPU (where last recvmsg was done) is
4069 * different from current CPU (one in the rx-queue flow
4070 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004071 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004072 * - Current CPU is offline.
4073 * - The current CPU's queue tail has advanced beyond the
4074 * last packet that was enqueued using this table entry.
4075 * This guarantees that all previous packets for the flow
4076 * have been dequeued, thus preserving in order delivery.
4077 */
4078 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004079 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004080 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004081 rflow->last_qtail)) >= 0)) {
4082 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004083 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004084 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004085
Eric Dumazeta31196b2015-04-25 09:35:24 -07004086 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004087 *rflowp = rflow;
4088 cpu = tcpu;
4089 goto done;
4090 }
4091 }
4092
Eric Dumazet567e4b72015-02-06 12:59:01 -08004093try_rps:
4094
Tom Herbert0a9627f2010-03-16 08:03:29 +00004095 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004096 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004097 if (cpu_online(tcpu)) {
4098 cpu = tcpu;
4099 goto done;
4100 }
4101 }
4102
4103done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004104 return cpu;
4105}
4106
Ben Hutchingsc4454772011-01-19 11:03:53 +00004107#ifdef CONFIG_RFS_ACCEL
4108
4109/**
4110 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4111 * @dev: Device on which the filter was set
4112 * @rxq_index: RX queue index
4113 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4114 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4115 *
4116 * Drivers that implement ndo_rx_flow_steer() should periodically call
4117 * this function for each installed filter and remove the filters for
4118 * which it returns %true.
4119 */
4120bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4121 u32 flow_id, u16 filter_id)
4122{
4123 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4124 struct rps_dev_flow_table *flow_table;
4125 struct rps_dev_flow *rflow;
4126 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004127 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004128
4129 rcu_read_lock();
4130 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4131 if (flow_table && flow_id <= flow_table->mask) {
4132 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004133 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004134 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004135 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4136 rflow->last_qtail) <
4137 (int)(10 * flow_table->mask)))
4138 expire = false;
4139 }
4140 rcu_read_unlock();
4141 return expire;
4142}
4143EXPORT_SYMBOL(rps_may_expire_flow);
4144
4145#endif /* CONFIG_RFS_ACCEL */
4146
Tom Herbert0a9627f2010-03-16 08:03:29 +00004147/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004148static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004149{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004150 struct softnet_data *sd = data;
4151
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004152 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004153 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004154}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004155
Tom Herbertfec5e652010-04-16 16:01:27 -07004156#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004157
4158/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004159 * Check if this softnet_data structure is another cpu one
4160 * If yes, queue it to our IPI list and return 1
4161 * If no, return 0
4162 */
4163static int rps_ipi_queued(struct softnet_data *sd)
4164{
4165#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004166 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004167
4168 if (sd != mysd) {
4169 sd->rps_ipi_next = mysd->rps_ipi_list;
4170 mysd->rps_ipi_list = sd;
4171
4172 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4173 return 1;
4174 }
4175#endif /* CONFIG_RPS */
4176 return 0;
4177}
4178
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004179#ifdef CONFIG_NET_FLOW_LIMIT
4180int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4181#endif
4182
4183static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4184{
4185#ifdef CONFIG_NET_FLOW_LIMIT
4186 struct sd_flow_limit *fl;
4187 struct softnet_data *sd;
4188 unsigned int old_flow, new_flow;
4189
4190 if (qlen < (netdev_max_backlog >> 1))
4191 return false;
4192
Christoph Lameter903ceff2014-08-17 12:30:35 -05004193 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004194
4195 rcu_read_lock();
4196 fl = rcu_dereference(sd->flow_limit);
4197 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004198 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004199 old_flow = fl->history[fl->history_head];
4200 fl->history[fl->history_head] = new_flow;
4201
4202 fl->history_head++;
4203 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4204
4205 if (likely(fl->buckets[old_flow]))
4206 fl->buckets[old_flow]--;
4207
4208 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4209 fl->count++;
4210 rcu_read_unlock();
4211 return true;
4212 }
4213 }
4214 rcu_read_unlock();
4215#endif
4216 return false;
4217}
4218
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004219/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004220 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4221 * queue (may be a remote CPU queue).
4222 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004223static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4224 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004225{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004226 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004227 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004228 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004229
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004230 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004231
4232 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004233
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004234 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004235 if (!netif_running(skb->dev))
4236 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004237 qlen = skb_queue_len(&sd->input_pkt_queue);
4238 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004239 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004240enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004241 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004242 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004243 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004244 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004245 return NET_RX_SUCCESS;
4246 }
4247
Eric Dumazetebda37c22010-05-06 23:51:21 +00004248 /* Schedule NAPI for backlog device
4249 * We can use non atomic operation since we own the queue lock
4250 */
4251 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004252 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004253 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004254 }
4255 goto enqueue;
4256 }
4257
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004258drop:
Changli Gaodee42872010-05-02 05:42:16 +00004259 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004260 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004261
Tom Herbert0a9627f2010-03-16 08:03:29 +00004262 local_irq_restore(flags);
4263
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004264 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004265 kfree_skb(skb);
4266 return NET_RX_DROP;
4267}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004269static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4270{
4271 struct net_device *dev = skb->dev;
4272 struct netdev_rx_queue *rxqueue;
4273
4274 rxqueue = dev->_rx;
4275
4276 if (skb_rx_queue_recorded(skb)) {
4277 u16 index = skb_get_rx_queue(skb);
4278
4279 if (unlikely(index >= dev->real_num_rx_queues)) {
4280 WARN_ONCE(dev->real_num_rx_queues > 1,
4281 "%s received packet on queue %u, but number "
4282 "of RX queues is %u\n",
4283 dev->name, index, dev->real_num_rx_queues);
4284
4285 return rxqueue; /* Return first rxqueue */
4286 }
4287 rxqueue += index;
4288 }
4289 return rxqueue;
4290}
4291
John Fastabendd4455162017-07-17 09:26:45 -07004292static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004293 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004294 struct bpf_prog *xdp_prog)
4295{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004296 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004297 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004298 u32 metalen, act = XDP_DROP;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004299 __be16 orig_eth_type;
4300 struct ethhdr *eth;
4301 bool orig_bcast;
John Fastabendd4455162017-07-17 09:26:45 -07004302 int hlen, off;
4303 u32 mac_len;
4304
4305 /* Reinjected packets coming from act_mirred or similar should
4306 * not get XDP generic processing.
4307 */
Paolo Abenicd11b1642018-07-30 14:30:44 +02004308 if (skb_cloned(skb) || skb_is_tc_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004309 return XDP_PASS;
4310
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004311 /* XDP packets must be linear and must have sufficient headroom
4312 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4313 * native XDP provides, thus we need to do it here as well.
4314 */
4315 if (skb_is_nonlinear(skb) ||
4316 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4317 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4318 int troom = skb->tail + skb->data_len - skb->end;
4319
4320 /* In case we have to go down the path and also linearize,
4321 * then lets do the pskb_expand_head() work just once here.
4322 */
4323 if (pskb_expand_head(skb,
4324 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4325 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4326 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004327 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004328 goto do_drop;
4329 }
John Fastabendd4455162017-07-17 09:26:45 -07004330
4331 /* The XDP program wants to see the packet starting at the MAC
4332 * header.
4333 */
4334 mac_len = skb->data - skb_mac_header(skb);
4335 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004336 xdp->data = skb->data - mac_len;
4337 xdp->data_meta = xdp->data;
4338 xdp->data_end = xdp->data + hlen;
4339 xdp->data_hard_start = skb->data - skb_headroom(skb);
4340 orig_data_end = xdp->data_end;
4341 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004342 eth = (struct ethhdr *)xdp->data;
4343 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4344 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004345
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004346 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004347 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004348
Björn Töpel02671e22018-05-02 13:01:30 +02004349 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004350
Björn Töpel02671e22018-05-02 13:01:30 +02004351 off = xdp->data - orig_data;
John Fastabendd4455162017-07-17 09:26:45 -07004352 if (off > 0)
4353 __skb_pull(skb, off);
4354 else if (off < 0)
4355 __skb_push(skb, -off);
Edward Cree92dd5452017-09-19 18:45:56 +01004356 skb->mac_header += off;
John Fastabendd4455162017-07-17 09:26:45 -07004357
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004358 /* check if bpf_xdp_adjust_tail was used. it can only "shrink"
4359 * pckt.
4360 */
Björn Töpel02671e22018-05-02 13:01:30 +02004361 off = orig_data_end - xdp->data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004362 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004363 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004364 skb->len -= off;
Björn Töpel02671e22018-05-02 13:01:30 +02004365
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004366 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004367
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004368 /* check if XDP changed eth hdr such SKB needs update */
4369 eth = (struct ethhdr *)xdp->data;
4370 if ((orig_eth_type != eth->h_proto) ||
4371 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4372 __skb_push(skb, ETH_HLEN);
4373 skb->protocol = eth_type_trans(skb, skb->dev);
4374 }
4375
John Fastabendd4455162017-07-17 09:26:45 -07004376 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004377 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004378 case XDP_TX:
4379 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004380 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004381 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004382 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004383 if (metalen)
4384 skb_metadata_set(skb, metalen);
4385 break;
John Fastabendd4455162017-07-17 09:26:45 -07004386 default:
4387 bpf_warn_invalid_xdp_action(act);
4388 /* fall through */
4389 case XDP_ABORTED:
4390 trace_xdp_exception(skb->dev, xdp_prog, act);
4391 /* fall through */
4392 case XDP_DROP:
4393 do_drop:
4394 kfree_skb(skb);
4395 break;
4396 }
4397
4398 return act;
4399}
4400
4401/* When doing generic XDP we have to bypass the qdisc layer and the
4402 * network taps in order to match in-driver-XDP behavior.
4403 */
Jason Wang7c497472017-08-11 19:41:17 +08004404void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004405{
4406 struct net_device *dev = skb->dev;
4407 struct netdev_queue *txq;
4408 bool free_skb = true;
4409 int cpu, rc;
4410
4411 txq = netdev_pick_tx(dev, skb, NULL);
4412 cpu = smp_processor_id();
4413 HARD_TX_LOCK(dev, txq, cpu);
4414 if (!netif_xmit_stopped(txq)) {
4415 rc = netdev_start_xmit(skb, dev, txq, 0);
4416 if (dev_xmit_complete(rc))
4417 free_skb = false;
4418 }
4419 HARD_TX_UNLOCK(dev, txq);
4420 if (free_skb) {
4421 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4422 kfree_skb(skb);
4423 }
4424}
Jason Wang7c497472017-08-11 19:41:17 +08004425EXPORT_SYMBOL_GPL(generic_xdp_tx);
John Fastabendd4455162017-07-17 09:26:45 -07004426
Davidlohr Bueso02786472018-05-08 09:07:02 -07004427static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004428
Jason Wang7c497472017-08-11 19:41:17 +08004429int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004430{
John Fastabendd4455162017-07-17 09:26:45 -07004431 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004432 struct xdp_buff xdp;
4433 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004434 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004435
Björn Töpel02671e22018-05-02 13:01:30 +02004436 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004437 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004438 switch (act) {
4439 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004440 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004441 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004442 if (err)
4443 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004444 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004445 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004446 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004447 break;
4448 }
John Fastabendd4455162017-07-17 09:26:45 -07004449 return XDP_DROP;
4450 }
4451 }
4452 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004453out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004454 kfree_skb(skb);
4455 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004456}
Jason Wang7c497472017-08-11 19:41:17 +08004457EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004458
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004459static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004461 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Eric Dumazet588f0332011-11-15 04:12:55 +00004463 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464
Koki Sanagicf66ba52010-08-23 18:45:02 +09004465 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004466
Davidlohr Bueso02786472018-05-08 09:07:02 -07004467 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07004468 int ret;
4469
4470 preempt_disable();
4471 rcu_read_lock();
4472 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
4473 rcu_read_unlock();
4474 preempt_enable();
John Fastabendd4455162017-07-17 09:26:45 -07004475
John Fastabend6103aa92017-07-17 09:27:50 -07004476 /* Consider XDP consuming the packet a success from
4477 * the netdev point of view we do not want to count
4478 * this as an error.
4479 */
John Fastabendd4455162017-07-17 09:26:45 -07004480 if (ret != XDP_PASS)
John Fastabend6103aa92017-07-17 09:27:50 -07004481 return NET_RX_SUCCESS;
John Fastabendd4455162017-07-17 09:26:45 -07004482 }
4483
Eric Dumazetdf334542010-03-24 19:13:54 +00004484#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004485 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004486 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004487 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Changli Gaocece1942010-08-07 20:35:43 -07004489 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004490 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004491
4492 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004493 if (cpu < 0)
4494 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004495
4496 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4497
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004498 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004499 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004500 } else
4501#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004502 {
4503 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004504
Tom Herbertfec5e652010-04-16 16:01:27 -07004505 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4506 put_cpu();
4507 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004508 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004510
4511/**
4512 * netif_rx - post buffer to the network code
4513 * @skb: buffer to post
4514 *
4515 * This function receives a packet from a device driver and queues it for
4516 * the upper (protocol) levels to process. It always succeeds. The buffer
4517 * may be dropped during processing for congestion control or by the
4518 * protocol layers.
4519 *
4520 * return values:
4521 * NET_RX_SUCCESS (no congestion)
4522 * NET_RX_DROP (packet was dropped)
4523 *
4524 */
4525
4526int netif_rx(struct sk_buff *skb)
4527{
4528 trace_netif_rx_entry(skb);
4529
4530 return netif_rx_internal(skb);
4531}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004532EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533
4534int netif_rx_ni(struct sk_buff *skb)
4535{
4536 int err;
4537
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004538 trace_netif_rx_ni_entry(skb);
4539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004541 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 if (local_softirq_pending())
4543 do_softirq();
4544 preempt_enable();
4545
4546 return err;
4547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548EXPORT_SYMBOL(netif_rx_ni);
4549
Emese Revfy0766f782016-06-20 20:42:34 +02004550static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004552 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553
4554 if (sd->completion_queue) {
4555 struct sk_buff *clist;
4556
4557 local_irq_disable();
4558 clist = sd->completion_queue;
4559 sd->completion_queue = NULL;
4560 local_irq_enable();
4561
4562 while (clist) {
4563 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004564
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 clist = clist->next;
4566
Reshetova, Elena63354792017-06-30 13:07:58 +03004567 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004568 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4569 trace_consume_skb(skb);
4570 else
4571 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004572
4573 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4574 __kfree_skb(skb);
4575 else
4576 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004578
4579 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 }
4581
4582 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004583 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584
4585 local_irq_disable();
4586 head = sd->output_queue;
4587 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004588 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 local_irq_enable();
4590
4591 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004592 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004593 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004594
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 head = head->next_sched;
4596
John Fastabend6b3ba912017-12-07 09:54:25 -08004597 if (!(q->flags & TCQ_F_NOLOCK)) {
4598 root_lock = qdisc_lock(q);
4599 spin_lock(root_lock);
4600 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004601 /* We need to make sure head->next_sched is read
4602 * before clearing __QDISC_STATE_SCHED
4603 */
4604 smp_mb__before_atomic();
4605 clear_bit(__QDISC_STATE_SCHED, &q->state);
4606 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004607 if (root_lock)
4608 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 }
4610 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004611
4612 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613}
4614
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004615#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004616/* This hook is defined here for ATM LANE */
4617int (*br_fdb_test_addr_hook)(struct net_device *dev,
4618 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004619EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004620#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004622static inline struct sk_buff *
4623sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4624 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004625{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004626#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004627 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004628 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004629
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004630 /* If there's at least one ingress present somewhere (so
4631 * we get here via enabled static key), remaining devices
4632 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004633 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004634 */
Jiri Pirko46209402017-11-03 11:46:25 +01004635 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004636 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004637
Herbert Xuf697c3e2007-10-14 00:38:47 -07004638 if (*pt_prev) {
4639 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4640 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004641 }
4642
Florian Westphal33654952015-05-14 00:36:28 +02004643 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004644 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004645 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004646
Jiri Pirko46209402017-11-03 11:46:25 +01004647 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004648 case TC_ACT_OK:
4649 case TC_ACT_RECLASSIFY:
4650 skb->tc_index = TC_H_MIN(cl_res.classid);
4651 break;
4652 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004653 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004654 kfree_skb(skb);
4655 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004656 case TC_ACT_STOLEN:
4657 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004658 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004659 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004660 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004661 case TC_ACT_REDIRECT:
4662 /* skb_mac_header check was done by cls/act_bpf, so
4663 * we can safely push the L2 header back before
4664 * redirecting to another netdev
4665 */
4666 __skb_push(skb, skb->mac_len);
4667 skb_do_redirect(skb);
4668 return NULL;
Paolo Abenicd11b1642018-07-30 14:30:44 +02004669 case TC_ACT_REINSERT:
4670 /* this does not scrub the packet, and updates stats on error */
4671 skb_tc_reinsert(skb, &cl_res);
4672 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004673 default:
4674 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004675 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004676#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004677 return skb;
4678}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004680/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004681 * netdev_is_rx_handler_busy - check if receive handler is registered
4682 * @dev: device to check
4683 *
4684 * Check if a receive handler is already registered for a given device.
4685 * Return true if there one.
4686 *
4687 * The caller must hold the rtnl_mutex.
4688 */
4689bool netdev_is_rx_handler_busy(struct net_device *dev)
4690{
4691 ASSERT_RTNL();
4692 return dev && rtnl_dereference(dev->rx_handler);
4693}
4694EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4695
4696/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004697 * netdev_rx_handler_register - register receive handler
4698 * @dev: device to register a handler for
4699 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004700 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004701 *
Masanari Iidae2278672014-02-18 22:54:36 +09004702 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004703 * called from __netif_receive_skb. A negative errno code is returned
4704 * on a failure.
4705 *
4706 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004707 *
4708 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004709 */
4710int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004711 rx_handler_func_t *rx_handler,
4712 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004713{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08004714 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004715 return -EBUSY;
4716
Paolo Abenif54262502018-03-09 10:39:24 +01004717 if (dev->priv_flags & IFF_NO_RX_HANDLER)
4718 return -EINVAL;
4719
Eric Dumazet00cfec32013-03-29 03:01:22 +00004720 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004721 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004722 rcu_assign_pointer(dev->rx_handler, rx_handler);
4723
4724 return 0;
4725}
4726EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4727
4728/**
4729 * netdev_rx_handler_unregister - unregister receive handler
4730 * @dev: device to unregister a handler from
4731 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004732 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004733 *
4734 * The caller must hold the rtnl_mutex.
4735 */
4736void netdev_rx_handler_unregister(struct net_device *dev)
4737{
4738
4739 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004740 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004741 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4742 * section has a guarantee to see a non NULL rx_handler_data
4743 * as well.
4744 */
4745 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004746 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004747}
4748EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4749
Mel Gormanb4b9e352012-07-31 16:44:26 -07004750/*
4751 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4752 * the special handling of PFMEMALLOC skbs.
4753 */
4754static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4755{
4756 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004757 case htons(ETH_P_ARP):
4758 case htons(ETH_P_IP):
4759 case htons(ETH_P_IPV6):
4760 case htons(ETH_P_8021Q):
4761 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004762 return true;
4763 default:
4764 return false;
4765 }
4766}
4767
Pablo Neirae687ad62015-05-13 18:19:38 +02004768static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4769 int *ret, struct net_device *orig_dev)
4770{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004771#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004772 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004773 int ingress_retval;
4774
Pablo Neirae687ad62015-05-13 18:19:38 +02004775 if (*pt_prev) {
4776 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4777 *pt_prev = NULL;
4778 }
4779
Aaron Conole2c1e2702016-09-21 11:35:03 -04004780 rcu_read_lock();
4781 ingress_retval = nf_hook_ingress(skb);
4782 rcu_read_unlock();
4783 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004784 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004785#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004786 return 0;
4787}
Pablo Neirae687ad62015-05-13 18:19:38 +02004788
Edward Cree88eb1942018-07-02 16:13:56 +01004789static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc,
4790 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791{
4792 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004793 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004794 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004795 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08004797 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
Eric Dumazet588f0332011-11-15 04:12:55 +00004799 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004800
Koki Sanagicf66ba52010-08-23 18:45:02 +09004801 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004802
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004803 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004804
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004805 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004806 if (!skb_transport_header_was_set(skb))
4807 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004808 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
4810 pt_prev = NULL;
4811
David S. Miller63d8ea72011-02-28 10:48:59 -08004812another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004813 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004814
4815 __this_cpu_inc(softnet_data.processed);
4816
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004817 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4818 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004819 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004820 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004821 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004822 }
4823
Willem de Bruijne7246e12017-01-07 17:06:35 -05004824 if (skb_skip_tc_classify(skb))
4825 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
David S. Miller9754e292013-02-14 15:57:38 -05004827 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004828 goto skip_taps;
4829
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004831 if (pt_prev)
4832 ret = deliver_skb(skb, pt_prev, orig_dev);
4833 pt_prev = ptype;
4834 }
4835
4836 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4837 if (pt_prev)
4838 ret = deliver_skb(skb, pt_prev, orig_dev);
4839 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 }
4841
Mel Gormanb4b9e352012-07-31 16:44:26 -07004842skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004843#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004844 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004845 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004846 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004847 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004848
4849 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004850 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004851 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004852#endif
Willem de Bruijna5135bc2017-01-07 17:06:36 -05004853 skb_reset_tc(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05004854skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05004855 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004856 goto drop;
4857
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004858 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004859 if (pt_prev) {
4860 ret = deliver_skb(skb, pt_prev, orig_dev);
4861 pt_prev = NULL;
4862 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004863 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004864 goto another_round;
4865 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004866 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004867 }
4868
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004869 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004870 if (rx_handler) {
4871 if (pt_prev) {
4872 ret = deliver_skb(skb, pt_prev, orig_dev);
4873 pt_prev = NULL;
4874 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004875 switch (rx_handler(&skb)) {
4876 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004877 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004878 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004879 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004880 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004881 case RX_HANDLER_EXACT:
4882 deliver_exact = true;
4883 case RX_HANDLER_PASS:
4884 break;
4885 default:
4886 BUG();
4887 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004890 if (unlikely(skb_vlan_tag_present(skb))) {
4891 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004892 skb->pkt_type = PACKET_OTHERHOST;
4893 /* Note: we might in the future use prio bits
4894 * and set skb->priority like in vlan_do_receive()
4895 * For the time being, just ignore Priority Code Point
4896 */
4897 skb->vlan_tci = 0;
4898 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004901
4902 /* deliver only exact match when indicated */
4903 if (likely(!deliver_exact)) {
4904 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4905 &ptype_base[ntohs(type) &
4906 PTYPE_HASH_MASK]);
4907 }
4908
4909 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4910 &orig_dev->ptype_specific);
4911
4912 if (unlikely(skb->dev != orig_dev)) {
4913 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4914 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915 }
4916
4917 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04004918 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004919 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01004920 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004922drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004923 if (!deliver_exact)
4924 atomic_long_inc(&skb->dev->rx_dropped);
4925 else
4926 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 kfree_skb(skb);
4928 /* Jamal, now you will not able to escape explaining
4929 * me how you were going to use this. :-)
4930 */
4931 ret = NET_RX_DROP;
4932 }
4933
Julian Anastasov2c17d272015-07-09 09:59:10 +03004934out:
David S. Miller9754e292013-02-14 15:57:38 -05004935 return ret;
4936}
4937
Edward Cree88eb1942018-07-02 16:13:56 +01004938static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
4939{
4940 struct net_device *orig_dev = skb->dev;
4941 struct packet_type *pt_prev = NULL;
4942 int ret;
4943
4944 ret = __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
4945 if (pt_prev)
4946 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
4947 return ret;
4948}
4949
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004950/**
4951 * netif_receive_skb_core - special purpose version of netif_receive_skb
4952 * @skb: buffer to process
4953 *
4954 * More direct receive version of netif_receive_skb(). It should
4955 * only be used by callers that have a need to skip RPS and Generic XDP.
4956 * Caller must also take care of handling if (page_is_)pfmemalloc.
4957 *
4958 * This function may only be called from softirq context and interrupts
4959 * should be enabled.
4960 *
4961 * Return values (usually ignored):
4962 * NET_RX_SUCCESS: no congestion
4963 * NET_RX_DROP: packet was dropped
4964 */
4965int netif_receive_skb_core(struct sk_buff *skb)
4966{
4967 int ret;
4968
4969 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01004970 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004971 rcu_read_unlock();
4972
4973 return ret;
4974}
4975EXPORT_SYMBOL(netif_receive_skb_core);
4976
Edward Cree88eb1942018-07-02 16:13:56 +01004977static inline void __netif_receive_skb_list_ptype(struct list_head *head,
4978 struct packet_type *pt_prev,
4979 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01004980{
4981 struct sk_buff *skb, *next;
4982
Edward Cree88eb1942018-07-02 16:13:56 +01004983 if (!pt_prev)
4984 return;
4985 if (list_empty(head))
4986 return;
Edward Cree17266ee2018-07-02 16:14:12 +01004987 if (pt_prev->list_func != NULL)
4988 pt_prev->list_func(head, pt_prev, orig_dev);
4989 else
4990 list_for_each_entry_safe(skb, next, head, list)
4991 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01004992}
4993
4994static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
4995{
4996 /* Fast-path assumptions:
4997 * - There is no RX handler.
4998 * - Only one packet_type matches.
4999 * If either of these fails, we will end up doing some per-packet
5000 * processing in-line, then handling the 'last ptype' for the whole
5001 * sublist. This can't cause out-of-order delivery to any single ptype,
5002 * because the 'last ptype' must be constant across the sublist, and all
5003 * other ptypes are handled per-packet.
5004 */
5005 /* Current (common) ptype of sublist */
5006 struct packet_type *pt_curr = NULL;
5007 /* Current (common) orig_dev of sublist */
5008 struct net_device *od_curr = NULL;
5009 struct list_head sublist;
5010 struct sk_buff *skb, *next;
5011
Edward Cree9af86f92018-07-09 18:10:19 +01005012 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005013 list_for_each_entry_safe(skb, next, head, list) {
5014 struct net_device *orig_dev = skb->dev;
5015 struct packet_type *pt_prev = NULL;
5016
Edward Cree22f6bbb2018-12-04 17:37:57 +00005017 skb_list_del_init(skb);
Edward Cree88eb1942018-07-02 16:13:56 +01005018 __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01005019 if (!pt_prev)
5020 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005021 if (pt_curr != pt_prev || od_curr != orig_dev) {
5022 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005023 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5024 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005025 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005026 pt_curr = pt_prev;
5027 od_curr = orig_dev;
5028 }
Edward Cree9af86f92018-07-09 18:10:19 +01005029 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005030 }
5031
5032 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005033 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005034}
5035
David S. Miller9754e292013-02-14 15:57:38 -05005036static int __netif_receive_skb(struct sk_buff *skb)
5037{
5038 int ret;
5039
5040 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005041 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005042
5043 /*
5044 * PFMEMALLOC skbs are special, they should
5045 * - be delivered to SOCK_MEMALLOC sockets only
5046 * - stay away from userspace
5047 * - have bounded memory usage
5048 *
5049 * Use PF_MEMALLOC as this saves us from propagating the allocation
5050 * context down to all allocation sites.
5051 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005052 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005053 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005054 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005055 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005056 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005057
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 return ret;
5059}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005060
Edward Cree4ce00172018-07-02 16:13:40 +01005061static void __netif_receive_skb_list(struct list_head *head)
5062{
5063 unsigned long noreclaim_flag = 0;
5064 struct sk_buff *skb, *next;
5065 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5066
5067 list_for_each_entry_safe(skb, next, head, list) {
5068 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5069 struct list_head sublist;
5070
5071 /* Handle the previous sublist */
5072 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005073 if (!list_empty(&sublist))
5074 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005075 pfmemalloc = !pfmemalloc;
5076 /* See comments in __netif_receive_skb */
5077 if (pfmemalloc)
5078 noreclaim_flag = memalloc_noreclaim_save();
5079 else
5080 memalloc_noreclaim_restore(noreclaim_flag);
5081 }
5082 }
5083 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005084 if (!list_empty(head))
5085 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005086 /* Restore pflags */
5087 if (pfmemalloc)
5088 memalloc_noreclaim_restore(noreclaim_flag);
5089}
5090
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005091static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005092{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005093 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005094 struct bpf_prog *new = xdp->prog;
5095 int ret = 0;
5096
5097 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005098 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005099 rcu_assign_pointer(dev->xdp_prog, new);
5100 if (old)
5101 bpf_prog_put(old);
5102
5103 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005104 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005105 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005106 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005107 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005108 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005109 }
5110 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005111
5112 case XDP_QUERY_PROG:
Martin KaFai Lau58038692017-06-15 17:29:09 -07005113 xdp->prog_id = old ? old->aux->id : 0;
David S. Millerb5cdae32017-04-18 15:36:58 -04005114 break;
5115
5116 default:
5117 ret = -EINVAL;
5118 break;
5119 }
5120
5121 return ret;
5122}
5123
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005124static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005125{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005126 int ret;
5127
Eric Dumazet588f0332011-11-15 04:12:55 +00005128 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005129
Richard Cochranc1f19b52010-07-17 08:49:36 +00005130 if (skb_defer_rx_timestamp(skb))
5131 return NET_RX_SUCCESS;
5132
Davidlohr Bueso02786472018-05-08 09:07:02 -07005133 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07005134 int ret;
David S. Millerb5cdae32017-04-18 15:36:58 -04005135
John Fastabendbbbe2112017-09-08 14:00:30 -07005136 preempt_disable();
5137 rcu_read_lock();
5138 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5139 rcu_read_unlock();
5140 preempt_enable();
5141
5142 if (ret != XDP_PASS)
John Fastabendd4455162017-07-17 09:26:45 -07005143 return NET_RX_DROP;
David S. Millerb5cdae32017-04-18 15:36:58 -04005144 }
5145
John Fastabendbbbe2112017-09-08 14:00:30 -07005146 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005147#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01005148 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005149 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005150 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005151
Eric Dumazet3b098e22010-05-15 23:57:10 -07005152 if (cpu >= 0) {
5153 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5154 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005155 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005156 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005157 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005158#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005159 ret = __netif_receive_skb(skb);
5160 rcu_read_unlock();
5161 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005162}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005163
Edward Cree7da517a2018-07-02 16:13:24 +01005164static void netif_receive_skb_list_internal(struct list_head *head)
5165{
5166 struct bpf_prog *xdp_prog = NULL;
5167 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005168 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005169
Edward Cree8c057ef2018-07-09 18:09:54 +01005170 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005171 list_for_each_entry_safe(skb, next, head, list) {
5172 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005173 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005174 if (!skb_defer_rx_timestamp(skb))
5175 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005176 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005177 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005178
5179 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5180 preempt_disable();
5181 rcu_read_lock();
5182 list_for_each_entry_safe(skb, next, head, list) {
5183 xdp_prog = rcu_dereference(skb->dev->xdp_prog);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005184 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005185 if (do_xdp_generic(xdp_prog, skb) == XDP_PASS)
5186 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005187 }
5188 rcu_read_unlock();
5189 preempt_enable();
Edward Cree8c057ef2018-07-09 18:09:54 +01005190 /* Put passed packets back on main list */
5191 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005192 }
5193
5194 rcu_read_lock();
5195#ifdef CONFIG_RPS
5196 if (static_key_false(&rps_needed)) {
5197 list_for_each_entry_safe(skb, next, head, list) {
5198 struct rps_dev_flow voidflow, *rflow = &voidflow;
5199 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5200
5201 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005202 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005203 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005204 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005205 }
5206 }
5207 }
5208#endif
5209 __netif_receive_skb_list(head);
5210 rcu_read_unlock();
5211}
5212
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005213/**
5214 * netif_receive_skb - process receive buffer from network
5215 * @skb: buffer to process
5216 *
5217 * netif_receive_skb() is the main receive data processing function.
5218 * It always succeeds. The buffer may be dropped during processing
5219 * for congestion control or by the protocol layers.
5220 *
5221 * This function may only be called from softirq context and interrupts
5222 * should be enabled.
5223 *
5224 * Return values (usually ignored):
5225 * NET_RX_SUCCESS: no congestion
5226 * NET_RX_DROP: packet was dropped
5227 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005228int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005229{
5230 trace_netif_receive_skb_entry(skb);
5231
5232 return netif_receive_skb_internal(skb);
5233}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005234EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
Edward Creef6ad8c12018-07-02 16:12:45 +01005236/**
5237 * netif_receive_skb_list - process many receive buffers from network
5238 * @head: list of skbs to process.
5239 *
Edward Cree7da517a2018-07-02 16:13:24 +01005240 * Since return value of netif_receive_skb() is normally ignored, and
5241 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005242 *
5243 * This function may only be called from softirq context and interrupts
5244 * should be enabled.
5245 */
5246void netif_receive_skb_list(struct list_head *head)
5247{
Edward Cree7da517a2018-07-02 16:13:24 +01005248 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005249
Edward Creeb9f463d2018-07-02 16:14:44 +01005250 if (list_empty(head))
5251 return;
Edward Cree920572b2018-07-02 16:13:11 +01005252 list_for_each_entry(skb, head, list)
5253 trace_netif_receive_skb_list_entry(skb);
Edward Cree7da517a2018-07-02 16:13:24 +01005254 netif_receive_skb_list_internal(head);
Edward Creef6ad8c12018-07-02 16:12:45 +01005255}
5256EXPORT_SYMBOL(netif_receive_skb_list);
5257
Eric Dumazet41852492016-08-26 12:50:39 -07005258DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005259
5260/* Network device is going away, flush any packets still pending */
5261static void flush_backlog(struct work_struct *work)
5262{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005263 struct sk_buff *skb, *tmp;
5264 struct softnet_data *sd;
5265
5266 local_bh_disable();
5267 sd = this_cpu_ptr(&softnet_data);
5268
5269 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005270 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005271 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005272 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005273 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005274 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005275 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005276 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005277 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005278 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005279 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005280
5281 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005282 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005283 __skb_unlink(skb, &sd->process_queue);
5284 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005285 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005286 }
5287 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005288 local_bh_enable();
5289}
5290
Eric Dumazet41852492016-08-26 12:50:39 -07005291static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005292{
5293 unsigned int cpu;
5294
5295 get_online_cpus();
5296
Eric Dumazet41852492016-08-26 12:50:39 -07005297 for_each_online_cpu(cpu)
5298 queue_work_on(cpu, system_highpri_wq,
5299 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005300
5301 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07005302 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005303
5304 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005305}
5306
Herbert Xud565b0a2008-12-15 23:38:52 -08005307static int napi_gro_complete(struct sk_buff *skb)
5308{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005309 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005310 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005311 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005312 int err = -ENOENT;
5313
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005314 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5315
Herbert Xufc59f9a2009-04-14 15:11:06 -07005316 if (NAPI_GRO_CB(skb)->count == 1) {
5317 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005318 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005319 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005320
5321 rcu_read_lock();
5322 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005323 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005324 continue;
5325
Jerry Chu299603e82013-12-11 20:53:45 -08005326 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005327 break;
5328 }
5329 rcu_read_unlock();
5330
5331 if (err) {
5332 WARN_ON(&ptype->list == head);
5333 kfree_skb(skb);
5334 return NET_RX_SUCCESS;
5335 }
5336
5337out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005338 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005339}
5340
Li RongQing6312fe72018-07-05 14:34:32 +08005341static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005342 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005343{
Li RongQing6312fe72018-07-05 14:34:32 +08005344 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005345 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005346
David Miller07d78362018-06-24 14:14:02 +09005347 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005348 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5349 return;
David S. Miller992cba72018-07-31 15:27:56 -07005350 skb_list_del_init(skb);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005351 napi_gro_complete(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005352 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005353 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005354
5355 if (!napi->gro_hash[index].count)
5356 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005357}
David Miller07d78362018-06-24 14:14:02 +09005358
Li RongQing6312fe72018-07-05 14:34:32 +08005359/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005360 * youngest packets at the head of it.
5361 * Complete skbs in reverse order to reduce latencies.
5362 */
5363void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5364{
Li RongQing6312fe72018-07-05 14:34:32 +08005365 u32 i;
David Miller07d78362018-06-24 14:14:02 +09005366
Li RongQingd9f37d02018-07-13 14:41:36 +08005367 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
5368 if (test_bit(i, &napi->gro_bitmask))
5369 __napi_gro_flush_chain(napi, i, flush_old);
5370 }
David Miller07d78362018-06-24 14:14:02 +09005371}
Eric Dumazet86cac582010-08-31 18:25:32 +00005372EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005373
David Miller07d78362018-06-24 14:14:02 +09005374static struct list_head *gro_list_prepare(struct napi_struct *napi,
5375 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005376{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005377 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005378 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005379 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005380 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005381
Li RongQing6312fe72018-07-05 14:34:32 +08005382 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005383 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005384 unsigned long diffs;
5385
Tom Herbert0b4cec82014-01-15 08:58:06 -08005386 NAPI_GRO_CB(p)->flush = 0;
5387
5388 if (hash != skb_get_hash_raw(p)) {
5389 NAPI_GRO_CB(p)->same_flow = 0;
5390 continue;
5391 }
5392
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005393 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
5394 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08005395 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005396 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005397 if (maclen == ETH_HLEN)
5398 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005399 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005400 else if (!diffs)
5401 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005402 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005403 maclen);
5404 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005405 }
David Miller07d78362018-06-24 14:14:02 +09005406
5407 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005408}
5409
Jerry Chu299603e82013-12-11 20:53:45 -08005410static void skb_gro_reset_offset(struct sk_buff *skb)
5411{
5412 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5413 const skb_frag_t *frag0 = &pinfo->frags[0];
5414
5415 NAPI_GRO_CB(skb)->data_offset = 0;
5416 NAPI_GRO_CB(skb)->frag0 = NULL;
5417 NAPI_GRO_CB(skb)->frag0_len = 0;
5418
5419 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
5420 pinfo->nr_frags &&
5421 !PageHighMem(skb_frag_page(frag0))) {
5422 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005423 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5424 skb_frag_size(frag0),
5425 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005426 }
5427}
5428
Eric Dumazeta50e2332014-03-29 21:28:21 -07005429static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5430{
5431 struct skb_shared_info *pinfo = skb_shinfo(skb);
5432
5433 BUG_ON(skb->end - skb->tail < grow);
5434
5435 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5436
5437 skb->data_len -= grow;
5438 skb->tail += grow;
5439
5440 pinfo->frags[0].page_offset += grow;
5441 skb_frag_size_sub(&pinfo->frags[0], grow);
5442
5443 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5444 skb_frag_unref(skb, 0);
5445 memmove(pinfo->frags, pinfo->frags + 1,
5446 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5447 }
5448}
5449
Li RongQing6312fe72018-07-05 14:34:32 +08005450static void gro_flush_oldest(struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005451{
Li RongQing6312fe72018-07-05 14:34:32 +08005452 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005453
Li RongQing6312fe72018-07-05 14:34:32 +08005454 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005455
Li RongQing6312fe72018-07-05 14:34:32 +08005456 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005457 * impossible.
5458 */
5459 if (WARN_ON_ONCE(!oldest))
5460 return;
5461
Li RongQingd9f37d02018-07-13 14:41:36 +08005462 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5463 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005464 */
David S. Millerece23712018-10-28 10:35:12 -07005465 skb_list_del_init(oldest);
David Miller07d78362018-06-24 14:14:02 +09005466 napi_gro_complete(oldest);
5467}
5468
Rami Rosenbb728822012-11-28 21:55:25 +00005469static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005470{
Li RongQing6312fe72018-07-05 14:34:32 +08005471 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005472 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005473 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005474 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005475 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005476 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005477 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005478 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005479 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005480
David S. Millerb5cdae32017-04-18 15:36:58 -04005481 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005482 goto normal;
5483
David Miller07d78362018-06-24 14:14:02 +09005484 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005485
Herbert Xud565b0a2008-12-15 23:38:52 -08005486 rcu_read_lock();
5487 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005488 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005489 continue;
5490
Herbert Xu86911732009-01-29 14:19:50 +00005491 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005492 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005493 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005494 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005495 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005496 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005497 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005498 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005499 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005500 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005501
Tom Herbert662880f2014-08-27 21:26:56 -07005502 /* Setup for GRO checksum validation */
5503 switch (skb->ip_summed) {
5504 case CHECKSUM_COMPLETE:
5505 NAPI_GRO_CB(skb)->csum = skb->csum;
5506 NAPI_GRO_CB(skb)->csum_valid = 1;
5507 NAPI_GRO_CB(skb)->csum_cnt = 0;
5508 break;
5509 case CHECKSUM_UNNECESSARY:
5510 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5511 NAPI_GRO_CB(skb)->csum_valid = 0;
5512 break;
5513 default:
5514 NAPI_GRO_CB(skb)->csum_cnt = 0;
5515 NAPI_GRO_CB(skb)->csum_valid = 0;
5516 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005517
David Miller07d78362018-06-24 14:14:02 +09005518 pp = ptype->callbacks.gro_receive(gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005519 break;
5520 }
5521 rcu_read_unlock();
5522
5523 if (&ptype->list == head)
5524 goto normal;
5525
Steffen Klassert25393d32017-02-15 09:39:44 +01005526 if (IS_ERR(pp) && PTR_ERR(pp) == -EINPROGRESS) {
5527 ret = GRO_CONSUMED;
5528 goto ok;
5529 }
5530
Herbert Xu0da2afd52008-12-26 14:57:42 -08005531 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005532 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005533
Herbert Xud565b0a2008-12-15 23:38:52 -08005534 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07005535 skb_list_del_init(pp);
David Millerd4546c22018-06-24 14:13:49 +09005536 napi_gro_complete(pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005537 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005538 }
5539
Herbert Xu0da2afd52008-12-26 14:57:42 -08005540 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005541 goto ok;
5542
Eric Dumazet600adc12014-01-09 14:12:19 -08005543 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005544 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005545
Li RongQing6312fe72018-07-05 14:34:32 +08005546 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
5547 gro_flush_oldest(gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005548 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005549 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005550 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005551 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005552 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005553 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005554 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005555 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005556 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005557
Herbert Xuad0f99042009-02-01 01:24:55 -08005558pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005559 grow = skb_gro_offset(skb) - skb_headlen(skb);
5560 if (grow > 0)
5561 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08005562ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08005563 if (napi->gro_hash[hash].count) {
5564 if (!test_bit(hash, &napi->gro_bitmask))
5565 __set_bit(hash, &napi->gro_bitmask);
5566 } else if (test_bit(hash, &napi->gro_bitmask)) {
5567 __clear_bit(hash, &napi->gro_bitmask);
5568 }
5569
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005570 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005571
5572normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08005573 ret = GRO_NORMAL;
5574 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08005575}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005576
Jerry Chubf5a7552014-01-07 10:23:19 -08005577struct packet_offload *gro_find_receive_by_type(__be16 type)
5578{
5579 struct list_head *offload_head = &offload_base;
5580 struct packet_offload *ptype;
5581
5582 list_for_each_entry_rcu(ptype, offload_head, list) {
5583 if (ptype->type != type || !ptype->callbacks.gro_receive)
5584 continue;
5585 return ptype;
5586 }
5587 return NULL;
5588}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005589EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08005590
5591struct packet_offload *gro_find_complete_by_type(__be16 type)
5592{
5593 struct list_head *offload_head = &offload_base;
5594 struct packet_offload *ptype;
5595
5596 list_for_each_entry_rcu(ptype, offload_head, list) {
5597 if (ptype->type != type || !ptype->callbacks.gro_complete)
5598 continue;
5599 return ptype;
5600 }
5601 return NULL;
5602}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005603EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005604
Michal Kubečeke44699d2017-06-29 11:13:36 +02005605static void napi_skb_free_stolen_head(struct sk_buff *skb)
5606{
5607 skb_dst_drop(skb);
5608 secpath_reset(skb);
5609 kmem_cache_free(skbuff_head_cache, skb);
5610}
5611
Rami Rosenbb728822012-11-28 21:55:25 +00005612static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08005613{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005614 switch (ret) {
5615 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005616 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005617 ret = GRO_DROP;
5618 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005619
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005620 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08005621 kfree_skb(skb);
5622 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005623
Eric Dumazetdaa86542012-04-19 07:07:40 +00005624 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02005625 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5626 napi_skb_free_stolen_head(skb);
5627 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00005628 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00005629 break;
5630
Ben Hutchings5b252f02009-10-29 07:17:09 +00005631 case GRO_HELD:
5632 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005633 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005634 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005635 }
5636
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005637 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005638}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005639
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005640gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005641{
Eric Dumazet93f93a42015-11-18 06:30:59 -08005642 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005643 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00005644
Eric Dumazeta50e2332014-03-29 21:28:21 -07005645 skb_gro_reset_offset(skb);
5646
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005647 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005648}
5649EXPORT_SYMBOL(napi_gro_receive);
5650
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00005651static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005652{
Eric Dumazet93a35f52014-10-23 06:30:30 -07005653 if (unlikely(skb->pfmemalloc)) {
5654 consume_skb(skb);
5655 return;
5656 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005657 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00005658 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
5659 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00005660 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08005661 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08005662 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08005663
5664 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
5665 skb->pkt_type = PACKET_HOST;
5666
Jerry Chuc3caf112014-07-14 15:54:46 -07005667 skb->encapsulation = 0;
5668 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07005669 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Steffen Klassertf991bb92017-01-30 06:45:38 +01005670 secpath_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005671
5672 napi->skb = skb;
5673}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005674
Herbert Xu76620aa2009-04-16 02:02:07 -07005675struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08005676{
Herbert Xu5d38a072009-01-04 16:13:40 -08005677 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08005678
5679 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08005680 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08005681 if (skb) {
5682 napi->skb = skb;
5683 skb_mark_napi_id(skb, napi);
5684 }
Herbert Xu5d38a072009-01-04 16:13:40 -08005685 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005686 return skb;
5687}
Herbert Xu76620aa2009-04-16 02:02:07 -07005688EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005689
Eric Dumazeta50e2332014-03-29 21:28:21 -07005690static gro_result_t napi_frags_finish(struct napi_struct *napi,
5691 struct sk_buff *skb,
5692 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005693{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005694 switch (ret) {
5695 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005696 case GRO_HELD:
5697 __skb_push(skb, ETH_HLEN);
5698 skb->protocol = eth_type_trans(skb, skb->dev);
5699 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005700 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00005701 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005702
5703 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005704 napi_reuse_skb(napi, skb);
5705 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005706
Michal Kubečeke44699d2017-06-29 11:13:36 +02005707 case GRO_MERGED_FREE:
5708 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5709 napi_skb_free_stolen_head(skb);
5710 else
5711 napi_reuse_skb(napi, skb);
5712 break;
5713
Ben Hutchings5b252f02009-10-29 07:17:09 +00005714 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005715 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005716 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005717 }
5718
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005719 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005720}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005721
Eric Dumazeta50e2332014-03-29 21:28:21 -07005722/* Upper GRO stack assumes network header starts at gro_offset=0
5723 * Drivers could call both napi_gro_frags() and napi_gro_receive()
5724 * We copy ethernet header into skb->data to have a common layout.
5725 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00005726static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005727{
Herbert Xu76620aa2009-04-16 02:02:07 -07005728 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005729 const struct ethhdr *eth;
5730 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07005731
5732 napi->skb = NULL;
5733
Eric Dumazeta50e2332014-03-29 21:28:21 -07005734 skb_reset_mac_header(skb);
5735 skb_gro_reset_offset(skb);
5736
5737 eth = skb_gro_header_fast(skb, 0);
5738 if (unlikely(skb_gro_header_hard(skb, hlen))) {
5739 eth = skb_gro_header_slow(skb, hlen, 0);
5740 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04005741 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
5742 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005743 napi_reuse_skb(napi, skb);
5744 return NULL;
5745 }
5746 } else {
5747 gro_pull_from_frag0(skb, hlen);
5748 NAPI_GRO_CB(skb)->frag0 += hlen;
5749 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07005750 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07005751 __skb_pull(skb, hlen);
5752
5753 /*
5754 * This works because the only protocols we care about don't require
5755 * special handling.
5756 * We'll fix it up properly in napi_frags_finish()
5757 */
5758 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07005759
Herbert Xu76620aa2009-04-16 02:02:07 -07005760 return skb;
5761}
Herbert Xu76620aa2009-04-16 02:02:07 -07005762
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005763gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07005764{
5765 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005766
5767 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005768 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08005769
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005770 trace_napi_gro_frags_entry(skb);
5771
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005772 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08005773}
5774EXPORT_SYMBOL(napi_gro_frags);
5775
Tom Herbert573e8fc2014-08-22 13:33:47 -07005776/* Compute the checksum from gro_offset and return the folded value
5777 * after adding in any pseudo checksum.
5778 */
5779__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
5780{
5781 __wsum wsum;
5782 __sum16 sum;
5783
5784 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
5785
5786 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
5787 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
5788 if (likely(!sum)) {
5789 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
5790 !skb->csum_complete_sw)
5791 netdev_rx_csum_fault(skb->dev);
5792 }
5793
5794 NAPI_GRO_CB(skb)->csum = wsum;
5795 NAPI_GRO_CB(skb)->csum_valid = 1;
5796
5797 return sum;
5798}
5799EXPORT_SYMBOL(__skb_gro_checksum_complete);
5800
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305801static void net_rps_send_ipi(struct softnet_data *remsd)
5802{
5803#ifdef CONFIG_RPS
5804 while (remsd) {
5805 struct softnet_data *next = remsd->rps_ipi_next;
5806
5807 if (cpu_online(remsd->cpu))
5808 smp_call_function_single_async(remsd->cpu, &remsd->csd);
5809 remsd = next;
5810 }
5811#endif
5812}
5813
Eric Dumazete326bed2010-04-22 00:22:45 -07005814/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08005815 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07005816 * Note: called with local irq disabled, but exits with local irq enabled.
5817 */
5818static void net_rps_action_and_irq_enable(struct softnet_data *sd)
5819{
5820#ifdef CONFIG_RPS
5821 struct softnet_data *remsd = sd->rps_ipi_list;
5822
5823 if (remsd) {
5824 sd->rps_ipi_list = NULL;
5825
5826 local_irq_enable();
5827
5828 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305829 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07005830 } else
5831#endif
5832 local_irq_enable();
5833}
5834
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005835static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
5836{
5837#ifdef CONFIG_RPS
5838 return sd->rps_ipi_list != NULL;
5839#else
5840 return false;
5841#endif
5842}
5843
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005844static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005846 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005847 bool again = true;
5848 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849
Eric Dumazete326bed2010-04-22 00:22:45 -07005850 /* Check if we have pending ipi, its better to send them now,
5851 * not waiting net_rx_action() end.
5852 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005853 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005854 local_irq_disable();
5855 net_rps_action_and_irq_enable(sd);
5856 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005857
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01005858 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005859 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861
Changli Gao6e7676c2010-04-27 15:07:33 -07005862 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005863 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005864 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005865 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005866 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005867 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00005868 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005869
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005871
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005872 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005873 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005874 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005875 /*
5876 * Inline a custom version of __napi_complete().
5877 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005878 * and NAPI_STATE_SCHED is the only possible flag set
5879 * on backlog.
5880 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005881 * and we dont need an smp_mb() memory barrier.
5882 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005883 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005884 again = false;
5885 } else {
5886 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5887 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005888 }
5889 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005890 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005892
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005893 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894}
5895
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005896/**
5897 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005898 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005899 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005900 * The entry's receive function will be scheduled to run.
5901 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005902 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005903void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005904{
5905 unsigned long flags;
5906
5907 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005908 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005909 local_irq_restore(flags);
5910}
5911EXPORT_SYMBOL(__napi_schedule);
5912
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005913/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08005914 * napi_schedule_prep - check if napi can be scheduled
5915 * @n: napi context
5916 *
5917 * Test if NAPI routine is already running, and if not mark
5918 * it as running. This is used as a condition variable
5919 * insure only one NAPI poll instance runs. We also make
5920 * sure there is no pending NAPI disable.
5921 */
5922bool napi_schedule_prep(struct napi_struct *n)
5923{
5924 unsigned long val, new;
5925
5926 do {
5927 val = READ_ONCE(n->state);
5928 if (unlikely(val & NAPIF_STATE_DISABLE))
5929 return false;
5930 new = val | NAPIF_STATE_SCHED;
5931
5932 /* Sets STATE_MISSED bit if STATE_SCHED was already set
5933 * This was suggested by Alexander Duyck, as compiler
5934 * emits better code than :
5935 * if (val & NAPIF_STATE_SCHED)
5936 * new |= NAPIF_STATE_MISSED;
5937 */
5938 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
5939 NAPIF_STATE_MISSED;
5940 } while (cmpxchg(&n->state, val, new) != val);
5941
5942 return !(val & NAPIF_STATE_SCHED);
5943}
5944EXPORT_SYMBOL(napi_schedule_prep);
5945
5946/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005947 * __napi_schedule_irqoff - schedule for receive
5948 * @n: entry to schedule
5949 *
5950 * Variant of __napi_schedule() assuming hard irqs are masked
5951 */
5952void __napi_schedule_irqoff(struct napi_struct *n)
5953{
5954 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
5955}
5956EXPORT_SYMBOL(__napi_schedule_irqoff);
5957
Eric Dumazet364b6052016-11-15 10:15:13 -08005958bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08005959{
Eric Dumazet39e6c822017-02-28 10:34:50 -08005960 unsigned long flags, val, new;
Herbert Xud565b0a2008-12-15 23:38:52 -08005961
5962 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08005963 * 1) Don't let napi dequeue from the cpu poll list
5964 * just in case its running on a different cpu.
5965 * 2) If we are busy polling, do nothing here, we have
5966 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08005967 */
Eric Dumazet217f6972016-11-15 10:15:11 -08005968 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
5969 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08005970 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08005971
Li RongQingd9f37d02018-07-13 14:41:36 +08005972 if (n->gro_bitmask) {
Eric Dumazet3b47d302014-11-06 21:09:44 -08005973 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005974
Eric Dumazet3b47d302014-11-06 21:09:44 -08005975 if (work_done)
5976 timeout = n->dev->gro_flush_timeout;
5977
Paolo Abeni605108a2018-11-21 18:21:35 +01005978 /* When the NAPI instance uses a timeout and keeps postponing
5979 * it, we need to bound somehow the time packets are kept in
5980 * the GRO layer
5981 */
5982 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005983 if (timeout)
5984 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5985 HRTIMER_MODE_REL_PINNED);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005986 }
Eric Dumazet02c16022017-02-04 15:25:02 -08005987 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005988 /* If n->poll_list is not empty, we need to mask irqs */
5989 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08005990 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005991 local_irq_restore(flags);
5992 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08005993
5994 do {
5995 val = READ_ONCE(n->state);
5996
5997 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
5998
5999 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
6000
6001 /* If STATE_MISSED was set, leave STATE_SCHED set,
6002 * because we will call napi->poll() one more time.
6003 * This C code was suggested by Alexander Duyck to help gcc.
6004 */
6005 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6006 NAPIF_STATE_SCHED;
6007 } while (cmpxchg(&n->state, val, new) != val);
6008
6009 if (unlikely(val & NAPIF_STATE_MISSED)) {
6010 __napi_schedule(n);
6011 return false;
6012 }
6013
Eric Dumazet364b6052016-11-15 10:15:13 -08006014 return true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006015}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006016EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006017
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006018/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006019static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006020{
6021 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6022 struct napi_struct *napi;
6023
6024 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6025 if (napi->napi_id == napi_id)
6026 return napi;
6027
6028 return NULL;
6029}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006030
6031#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006032
Eric Dumazetce6aea92015-11-18 06:30:54 -08006033#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08006034
6035static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
6036{
6037 int rc;
6038
Eric Dumazet39e6c822017-02-28 10:34:50 -08006039 /* Busy polling means there is a high chance device driver hard irq
6040 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6041 * set in napi_schedule_prep().
6042 * Since we are about to call napi->poll() once more, we can safely
6043 * clear NAPI_STATE_MISSED.
6044 *
6045 * Note: x86 could use a single "lock and ..." instruction
6046 * to perform these two clear_bit()
6047 */
6048 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006049 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6050
6051 local_bh_disable();
6052
6053 /* All we really want here is to re-enable device interrupts.
6054 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6055 */
6056 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02006057 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006058 netpoll_poll_unlock(have_poll_lock);
6059 if (rc == BUSY_POLL_BUDGET)
6060 __napi_schedule(napi);
6061 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006062}
6063
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006064void napi_busy_loop(unsigned int napi_id,
6065 bool (*loop_end)(void *, unsigned long),
6066 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006067{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006068 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006069 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006070 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006071 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006072
6073restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006074 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006075
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006076 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006077
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006078 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006079 if (!napi)
6080 goto out;
6081
Eric Dumazet217f6972016-11-15 10:15:11 -08006082 preempt_disable();
6083 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006084 int work = 0;
6085
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006086 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006087 if (!napi_poll) {
6088 unsigned long val = READ_ONCE(napi->state);
6089
6090 /* If multiple threads are competing for this napi,
6091 * we avoid dirtying napi->state as much as we can.
6092 */
6093 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6094 NAPIF_STATE_IN_BUSY_POLL))
6095 goto count;
6096 if (cmpxchg(&napi->state, val,
6097 val | NAPIF_STATE_IN_BUSY_POLL |
6098 NAPIF_STATE_SCHED) != val)
6099 goto count;
6100 have_poll_lock = netpoll_poll_lock(napi);
6101 napi_poll = napi->poll;
6102 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006103 work = napi_poll(napi, BUSY_POLL_BUDGET);
6104 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006105count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006106 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006107 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006108 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006109 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006110
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006111 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006112 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006113
Eric Dumazet217f6972016-11-15 10:15:11 -08006114 if (unlikely(need_resched())) {
6115 if (napi_poll)
6116 busy_poll_stop(napi, have_poll_lock);
6117 preempt_enable();
6118 rcu_read_unlock();
6119 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006120 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006121 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006122 goto restart;
6123 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006124 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006125 }
6126 if (napi_poll)
6127 busy_poll_stop(napi, have_poll_lock);
6128 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006129out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006130 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006131}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006132EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006133
6134#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006135
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006136static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006137{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08006138 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
6139 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006140 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006141
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006142 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006143
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006144 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006145 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006146 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6147 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006148 } while (napi_by_id(napi_gen_id));
6149 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006150
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006151 hlist_add_head_rcu(&napi->napi_hash_node,
6152 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006153
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006154 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006155}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006156
6157/* Warning : caller is responsible to make sure rcu grace period
6158 * is respected before freeing memory containing @napi
6159 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08006160bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006161{
Eric Dumazet34cbe272015-11-18 06:31:02 -08006162 bool rcu_sync_needed = false;
6163
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006164 spin_lock(&napi_hash_lock);
6165
Eric Dumazet34cbe272015-11-18 06:31:02 -08006166 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
6167 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006168 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006169 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006170 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006171 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006172}
6173EXPORT_SYMBOL_GPL(napi_hash_del);
6174
Eric Dumazet3b47d302014-11-06 21:09:44 -08006175static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6176{
6177 struct napi_struct *napi;
6178
6179 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006180
6181 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6182 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6183 */
Li RongQingd9f37d02018-07-13 14:41:36 +08006184 if (napi->gro_bitmask && !napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006185 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6186 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006187
6188 return HRTIMER_NORESTART;
6189}
6190
David S. Miller7c4ec742018-07-20 23:37:55 -07006191static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006192{
David Miller07d78362018-06-24 14:14:02 +09006193 int i;
6194
Li RongQing6312fe72018-07-05 14:34:32 +08006195 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6196 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6197 napi->gro_hash[i].count = 0;
6198 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006199 napi->gro_bitmask = 0;
6200}
6201
6202void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6203 int (*poll)(struct napi_struct *, int), int weight)
6204{
6205 INIT_LIST_HEAD(&napi->poll_list);
6206 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6207 napi->timer.function = napi_watchdog;
6208 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006209 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08006210 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006211 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006212 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6213 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006214 napi->weight = weight;
6215 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08006216 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006217#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006218 napi->poll_owner = -1;
6219#endif
6220 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006221 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006222}
6223EXPORT_SYMBOL(netif_napi_add);
6224
Eric Dumazet3b47d302014-11-06 21:09:44 -08006225void napi_disable(struct napi_struct *n)
6226{
6227 might_sleep();
6228 set_bit(NAPI_STATE_DISABLE, &n->state);
6229
6230 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6231 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006232 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6233 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006234
6235 hrtimer_cancel(&n->timer);
6236
6237 clear_bit(NAPI_STATE_DISABLE, &n->state);
6238}
6239EXPORT_SYMBOL(napi_disable);
6240
David Miller07d78362018-06-24 14:14:02 +09006241static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006242{
David Miller07d78362018-06-24 14:14:02 +09006243 int i;
David Millerd4546c22018-06-24 14:13:49 +09006244
David Miller07d78362018-06-24 14:14:02 +09006245 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6246 struct sk_buff *skb, *n;
6247
Li RongQing6312fe72018-07-05 14:34:32 +08006248 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006249 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006250 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006251 }
David Millerd4546c22018-06-24 14:13:49 +09006252}
6253
Eric Dumazet93d05d42015-11-18 06:31:03 -08006254/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08006255void netif_napi_del(struct napi_struct *napi)
6256{
Eric Dumazet93d05d42015-11-18 06:31:03 -08006257 might_sleep();
6258 if (napi_hash_del(napi))
6259 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08006260 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006261 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006262
David Miller07d78362018-06-24 14:14:02 +09006263 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006264 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006265}
6266EXPORT_SYMBOL(netif_napi_del);
6267
Herbert Xu726ce702014-12-21 07:16:21 +11006268static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6269{
6270 void *have;
6271 int work, weight;
6272
6273 list_del_init(&n->poll_list);
6274
6275 have = netpoll_poll_lock(n);
6276
6277 weight = n->weight;
6278
6279 /* This NAPI_STATE_SCHED test is for avoiding a race
6280 * with netpoll's poll_napi(). Only the entity which
6281 * obtains the lock and sees NAPI_STATE_SCHED set will
6282 * actually make the ->poll() call. Therefore we avoid
6283 * accidentally calling ->poll() when NAPI is not scheduled.
6284 */
6285 work = 0;
6286 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6287 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006288 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006289 }
6290
6291 WARN_ON_ONCE(work > weight);
6292
6293 if (likely(work < weight))
6294 goto out_unlock;
6295
6296 /* Drivers must not modify the NAPI state if they
6297 * consume the entire weight. In such cases this code
6298 * still "owns" the NAPI instance and therefore can
6299 * move the instance around on the list at-will.
6300 */
6301 if (unlikely(napi_disable_pending(n))) {
6302 napi_complete(n);
6303 goto out_unlock;
6304 }
6305
Li RongQingd9f37d02018-07-13 14:41:36 +08006306 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006307 /* flush too old packets
6308 * If HZ < 1000, flush all packets.
6309 */
6310 napi_gro_flush(n, HZ >= 1000);
6311 }
6312
Herbert Xu001ce542014-12-21 07:16:22 +11006313 /* Some drivers may have called napi_schedule
6314 * prior to exhausting their budget.
6315 */
6316 if (unlikely(!list_empty(&n->poll_list))) {
6317 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6318 n->dev ? n->dev->name : "backlog");
6319 goto out_unlock;
6320 }
6321
Herbert Xu726ce702014-12-21 07:16:21 +11006322 list_add_tail(&n->poll_list, repoll);
6323
6324out_unlock:
6325 netpoll_poll_unlock(have);
6326
6327 return work;
6328}
6329
Emese Revfy0766f782016-06-20 20:42:34 +02006330static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006332 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006333 unsigned long time_limit = jiffies +
6334 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006335 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006336 LIST_HEAD(list);
6337 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006338
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006340 list_splice_init(&sd->poll_list, &list);
6341 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006343 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006344 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006346 if (list_empty(&list)) {
6347 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006348 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006349 break;
6350 }
6351
Herbert Xu6bd373e2014-12-21 07:16:24 +11006352 n = list_first_entry(&list, struct napi_struct, poll_list);
6353 budget -= napi_poll(n, &repoll);
6354
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006355 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006356 * Allow this to run for 2 jiffies since which will allow
6357 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006358 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006359 if (unlikely(budget <= 0 ||
6360 time_after_eq(jiffies, time_limit))) {
6361 sd->time_squeeze++;
6362 break;
6363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006365
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006366 local_irq_disable();
6367
6368 list_splice_tail_init(&sd->poll_list, &list);
6369 list_splice_tail(&repoll, &list);
6370 list_splice(&list, &sd->poll_list);
6371 if (!list_empty(&sd->poll_list))
6372 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6373
Eric Dumazete326bed2010-04-22 00:22:45 -07006374 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006375out:
6376 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006377}
6378
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006379struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006380 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006381
6382 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006383 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006384
Veaceslav Falico5d261912013-08-28 23:25:05 +02006385 /* counter for the number of times this device was added to us */
6386 u16 ref_nr;
6387
Veaceslav Falico402dae92013-09-25 09:20:09 +02006388 /* private field for the users */
6389 void *private;
6390
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006391 struct list_head list;
6392 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006393};
6394
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006395static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006396 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006397{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006398 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006399
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006400 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006401 if (adj->dev == adj_dev)
6402 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006403 }
6404 return NULL;
6405}
6406
David Ahernf1170fd2016-10-17 19:15:51 -07006407static int __netdev_has_upper_dev(struct net_device *upper_dev, void *data)
6408{
6409 struct net_device *dev = data;
6410
6411 return upper_dev == dev;
6412}
6413
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006414/**
6415 * netdev_has_upper_dev - Check if device is linked to an upper device
6416 * @dev: device
6417 * @upper_dev: upper device to check
6418 *
6419 * Find out if a device is linked to specified upper device and return true
6420 * in case it is. Note that this checks only immediate upper device,
6421 * not through a complete stack of devices. The caller must hold the RTNL lock.
6422 */
6423bool netdev_has_upper_dev(struct net_device *dev,
6424 struct net_device *upper_dev)
6425{
6426 ASSERT_RTNL();
6427
David Ahernf1170fd2016-10-17 19:15:51 -07006428 return netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6429 upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006430}
6431EXPORT_SYMBOL(netdev_has_upper_dev);
6432
6433/**
David Ahern1a3f0602016-10-17 19:15:44 -07006434 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6435 * @dev: device
6436 * @upper_dev: upper device to check
6437 *
6438 * Find out if a device is linked to specified upper device and return true
6439 * in case it is. Note that this checks the entire upper device chain.
6440 * The caller must hold rcu lock.
6441 */
6442
David Ahern1a3f0602016-10-17 19:15:44 -07006443bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6444 struct net_device *upper_dev)
6445{
6446 return !!netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6447 upper_dev);
6448}
6449EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6450
6451/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006452 * netdev_has_any_upper_dev - Check if device is linked to some device
6453 * @dev: device
6454 *
6455 * Find out if a device is linked to an upper device and return true in case
6456 * it is. The caller must hold the RTNL lock.
6457 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006458bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006459{
6460 ASSERT_RTNL();
6461
David Ahernf1170fd2016-10-17 19:15:51 -07006462 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006463}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006464EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006465
6466/**
6467 * netdev_master_upper_dev_get - Get master upper device
6468 * @dev: device
6469 *
6470 * Find a master upper device and return pointer to it or NULL in case
6471 * it's not there. The caller must hold the RTNL lock.
6472 */
6473struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6474{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006475 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006476
6477 ASSERT_RTNL();
6478
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006479 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006480 return NULL;
6481
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006482 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006483 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006484 if (likely(upper->master))
6485 return upper->dev;
6486 return NULL;
6487}
6488EXPORT_SYMBOL(netdev_master_upper_dev_get);
6489
David Ahern0f524a82016-10-17 19:15:52 -07006490/**
6491 * netdev_has_any_lower_dev - Check if device is linked to some device
6492 * @dev: device
6493 *
6494 * Find out if a device is linked to a lower device and return true in case
6495 * it is. The caller must hold the RTNL lock.
6496 */
6497static bool netdev_has_any_lower_dev(struct net_device *dev)
6498{
6499 ASSERT_RTNL();
6500
6501 return !list_empty(&dev->adj_list.lower);
6502}
6503
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02006504void *netdev_adjacent_get_private(struct list_head *adj_list)
6505{
6506 struct netdev_adjacent *adj;
6507
6508 adj = list_entry(adj_list, struct netdev_adjacent, list);
6509
6510 return adj->private;
6511}
6512EXPORT_SYMBOL(netdev_adjacent_get_private);
6513
Veaceslav Falico31088a12013-09-25 09:20:12 +02006514/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04006515 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
6516 * @dev: device
6517 * @iter: list_head ** of the current position
6518 *
6519 * Gets the next device from the dev's upper list, starting from iter
6520 * position. The caller must hold RCU read lock.
6521 */
6522struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
6523 struct list_head **iter)
6524{
6525 struct netdev_adjacent *upper;
6526
6527 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6528
6529 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6530
6531 if (&upper->list == &dev->adj_list.upper)
6532 return NULL;
6533
6534 *iter = &upper->list;
6535
6536 return upper->dev;
6537}
6538EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
6539
David Ahern1a3f0602016-10-17 19:15:44 -07006540static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
6541 struct list_head **iter)
6542{
6543 struct netdev_adjacent *upper;
6544
6545 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6546
6547 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6548
6549 if (&upper->list == &dev->adj_list.upper)
6550 return NULL;
6551
6552 *iter = &upper->list;
6553
6554 return upper->dev;
6555}
6556
6557int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
6558 int (*fn)(struct net_device *dev,
6559 void *data),
6560 void *data)
6561{
6562 struct net_device *udev;
6563 struct list_head *iter;
6564 int ret;
6565
6566 for (iter = &dev->adj_list.upper,
6567 udev = netdev_next_upper_dev_rcu(dev, &iter);
6568 udev;
6569 udev = netdev_next_upper_dev_rcu(dev, &iter)) {
6570 /* first is the upper device itself */
6571 ret = fn(udev, data);
6572 if (ret)
6573 return ret;
6574
6575 /* then look at all of its upper devices */
6576 ret = netdev_walk_all_upper_dev_rcu(udev, fn, data);
6577 if (ret)
6578 return ret;
6579 }
6580
6581 return 0;
6582}
6583EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
6584
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006585/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02006586 * netdev_lower_get_next_private - Get the next ->private from the
6587 * lower neighbour list
6588 * @dev: device
6589 * @iter: list_head ** of the current position
6590 *
6591 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6592 * list, starting from iter position. The caller must hold either hold the
6593 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006594 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02006595 */
6596void *netdev_lower_get_next_private(struct net_device *dev,
6597 struct list_head **iter)
6598{
6599 struct netdev_adjacent *lower;
6600
6601 lower = list_entry(*iter, struct netdev_adjacent, list);
6602
6603 if (&lower->list == &dev->adj_list.lower)
6604 return NULL;
6605
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006606 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006607
6608 return lower->private;
6609}
6610EXPORT_SYMBOL(netdev_lower_get_next_private);
6611
6612/**
6613 * netdev_lower_get_next_private_rcu - Get the next ->private from the
6614 * lower neighbour list, RCU
6615 * variant
6616 * @dev: device
6617 * @iter: list_head ** of the current position
6618 *
6619 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6620 * list, starting from iter position. The caller must hold RCU read lock.
6621 */
6622void *netdev_lower_get_next_private_rcu(struct net_device *dev,
6623 struct list_head **iter)
6624{
6625 struct netdev_adjacent *lower;
6626
6627 WARN_ON_ONCE(!rcu_read_lock_held());
6628
6629 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6630
6631 if (&lower->list == &dev->adj_list.lower)
6632 return NULL;
6633
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006634 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006635
6636 return lower->private;
6637}
6638EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
6639
6640/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006641 * netdev_lower_get_next - Get the next device from the lower neighbour
6642 * list
6643 * @dev: device
6644 * @iter: list_head ** of the current position
6645 *
6646 * Gets the next netdev_adjacent from the dev's lower neighbour
6647 * list, starting from iter position. The caller must hold RTNL lock or
6648 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006649 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006650 */
6651void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
6652{
6653 struct netdev_adjacent *lower;
6654
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006655 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006656
6657 if (&lower->list == &dev->adj_list.lower)
6658 return NULL;
6659
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006660 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006661
6662 return lower->dev;
6663}
6664EXPORT_SYMBOL(netdev_lower_get_next);
6665
David Ahern1a3f0602016-10-17 19:15:44 -07006666static struct net_device *netdev_next_lower_dev(struct net_device *dev,
6667 struct list_head **iter)
6668{
6669 struct netdev_adjacent *lower;
6670
David Ahern46b5ab12016-10-26 13:21:33 -07006671 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07006672
6673 if (&lower->list == &dev->adj_list.lower)
6674 return NULL;
6675
David Ahern46b5ab12016-10-26 13:21:33 -07006676 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07006677
6678 return lower->dev;
6679}
6680
6681int netdev_walk_all_lower_dev(struct net_device *dev,
6682 int (*fn)(struct net_device *dev,
6683 void *data),
6684 void *data)
6685{
6686 struct net_device *ldev;
6687 struct list_head *iter;
6688 int ret;
6689
6690 for (iter = &dev->adj_list.lower,
6691 ldev = netdev_next_lower_dev(dev, &iter);
6692 ldev;
6693 ldev = netdev_next_lower_dev(dev, &iter)) {
6694 /* first is the lower device itself */
6695 ret = fn(ldev, data);
6696 if (ret)
6697 return ret;
6698
6699 /* then look at all of its lower devices */
6700 ret = netdev_walk_all_lower_dev(ldev, fn, data);
6701 if (ret)
6702 return ret;
6703 }
6704
6705 return 0;
6706}
6707EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
6708
David Ahern1a3f0602016-10-17 19:15:44 -07006709static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
6710 struct list_head **iter)
6711{
6712 struct netdev_adjacent *lower;
6713
6714 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6715 if (&lower->list == &dev->adj_list.lower)
6716 return NULL;
6717
6718 *iter = &lower->list;
6719
6720 return lower->dev;
6721}
6722
6723int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
6724 int (*fn)(struct net_device *dev,
6725 void *data),
6726 void *data)
6727{
6728 struct net_device *ldev;
6729 struct list_head *iter;
6730 int ret;
6731
6732 for (iter = &dev->adj_list.lower,
6733 ldev = netdev_next_lower_dev_rcu(dev, &iter);
6734 ldev;
6735 ldev = netdev_next_lower_dev_rcu(dev, &iter)) {
6736 /* first is the lower device itself */
6737 ret = fn(ldev, data);
6738 if (ret)
6739 return ret;
6740
6741 /* then look at all of its lower devices */
6742 ret = netdev_walk_all_lower_dev_rcu(ldev, fn, data);
6743 if (ret)
6744 return ret;
6745 }
6746
6747 return 0;
6748}
6749EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
6750
Jiri Pirko7ce856a2016-07-04 08:23:12 +02006751/**
dingtianhonge001bfa2013-12-13 10:19:55 +08006752 * netdev_lower_get_first_private_rcu - Get the first ->private from the
6753 * lower neighbour list, RCU
6754 * variant
6755 * @dev: device
6756 *
6757 * Gets the first netdev_adjacent->private from the dev's lower neighbour
6758 * list. The caller must hold RCU read lock.
6759 */
6760void *netdev_lower_get_first_private_rcu(struct net_device *dev)
6761{
6762 struct netdev_adjacent *lower;
6763
6764 lower = list_first_or_null_rcu(&dev->adj_list.lower,
6765 struct netdev_adjacent, list);
6766 if (lower)
6767 return lower->private;
6768 return NULL;
6769}
6770EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
6771
6772/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006773 * netdev_master_upper_dev_get_rcu - Get master upper device
6774 * @dev: device
6775 *
6776 * Find a master upper device and return pointer to it or NULL in case
6777 * it's not there. The caller must hold the RCU read lock.
6778 */
6779struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
6780{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006781 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006782
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006783 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006784 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006785 if (upper && likely(upper->master))
6786 return upper->dev;
6787 return NULL;
6788}
6789EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
6790
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306791static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006792 struct net_device *adj_dev,
6793 struct list_head *dev_list)
6794{
6795 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006796
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006797 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6798 "upper_%s" : "lower_%s", adj_dev->name);
6799 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
6800 linkname);
6801}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306802static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006803 char *name,
6804 struct list_head *dev_list)
6805{
6806 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006807
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006808 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6809 "upper_%s" : "lower_%s", name);
6810 sysfs_remove_link(&(dev->dev.kobj), linkname);
6811}
6812
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006813static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
6814 struct net_device *adj_dev,
6815 struct list_head *dev_list)
6816{
6817 return (dev_list == &dev->adj_list.upper ||
6818 dev_list == &dev->adj_list.lower) &&
6819 net_eq(dev_net(dev), dev_net(adj_dev));
6820}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006821
Veaceslav Falico5d261912013-08-28 23:25:05 +02006822static int __netdev_adjacent_dev_insert(struct net_device *dev,
6823 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02006824 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006825 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006826{
6827 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006828 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006829
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006830 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006831
6832 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07006833 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07006834 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
6835 dev->name, adj_dev->name, adj->ref_nr);
6836
Veaceslav Falico5d261912013-08-28 23:25:05 +02006837 return 0;
6838 }
6839
6840 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
6841 if (!adj)
6842 return -ENOMEM;
6843
6844 adj->dev = adj_dev;
6845 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07006846 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006847 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006848 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006849
David Ahern67b62f92016-10-17 19:15:53 -07006850 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
6851 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006852
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006853 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006854 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006855 if (ret)
6856 goto free_adj;
6857 }
6858
Veaceslav Falico7863c052013-09-25 09:20:06 +02006859 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006860 if (master) {
6861 ret = sysfs_create_link(&(dev->dev.kobj),
6862 &(adj_dev->dev.kobj), "master");
6863 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02006864 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006865
Veaceslav Falico7863c052013-09-25 09:20:06 +02006866 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006867 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02006868 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006869 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006870
6871 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006872
Veaceslav Falico5831d662013-09-25 09:20:32 +02006873remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006874 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006875 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006876free_adj:
6877 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02006878 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006879
6880 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006881}
6882
stephen hemminger1d143d92013-12-29 14:01:29 -08006883static void __netdev_adjacent_dev_remove(struct net_device *dev,
6884 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006885 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006886 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006887{
6888 struct netdev_adjacent *adj;
6889
David Ahern67b62f92016-10-17 19:15:53 -07006890 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
6891 dev->name, adj_dev->name, ref_nr);
6892
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006893 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006894
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006895 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07006896 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006897 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07006898 WARN_ON(1);
6899 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006900 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006901
Andrew Collins93409032016-10-03 13:43:02 -06006902 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07006903 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
6904 dev->name, adj_dev->name, ref_nr,
6905 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06006906 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006907 return;
6908 }
6909
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006910 if (adj->master)
6911 sysfs_remove_link(&(dev->dev.kobj), "master");
6912
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006913 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006914 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006915
Veaceslav Falico5d261912013-08-28 23:25:05 +02006916 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07006917 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006918 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006919 dev_put(adj_dev);
6920 kfree_rcu(adj, rcu);
6921}
6922
stephen hemminger1d143d92013-12-29 14:01:29 -08006923static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
6924 struct net_device *upper_dev,
6925 struct list_head *up_list,
6926 struct list_head *down_list,
6927 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006928{
6929 int ret;
6930
David Ahern790510d2016-10-17 19:15:43 -07006931 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06006932 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006933 if (ret)
6934 return ret;
6935
David Ahern790510d2016-10-17 19:15:43 -07006936 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06006937 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006938 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07006939 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006940 return ret;
6941 }
6942
6943 return 0;
6944}
6945
stephen hemminger1d143d92013-12-29 14:01:29 -08006946static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
6947 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006948 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006949 struct list_head *up_list,
6950 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006951{
Andrew Collins93409032016-10-03 13:43:02 -06006952 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
6953 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006954}
6955
stephen hemminger1d143d92013-12-29 14:01:29 -08006956static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
6957 struct net_device *upper_dev,
6958 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006959{
David Ahernf1170fd2016-10-17 19:15:51 -07006960 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
6961 &dev->adj_list.upper,
6962 &upper_dev->adj_list.lower,
6963 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006964}
6965
stephen hemminger1d143d92013-12-29 14:01:29 -08006966static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
6967 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006968{
Andrew Collins93409032016-10-03 13:43:02 -06006969 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006970 &dev->adj_list.upper,
6971 &upper_dev->adj_list.lower);
6972}
Veaceslav Falico5d261912013-08-28 23:25:05 +02006973
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006974static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006975 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07006976 void *upper_priv, void *upper_info,
6977 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006978{
David Ahern51d0c0472017-10-04 17:48:45 -07006979 struct netdev_notifier_changeupper_info changeupper_info = {
6980 .info = {
6981 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07006982 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07006983 },
6984 .upper_dev = upper_dev,
6985 .master = master,
6986 .linking = true,
6987 .upper_info = upper_info,
6988 };
Mike Manning50d629e2018-02-26 23:49:30 +00006989 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006990 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006991
6992 ASSERT_RTNL();
6993
6994 if (dev == upper_dev)
6995 return -EBUSY;
6996
6997 /* To prevent loops, check if dev is not upper device to upper_dev. */
David Ahernf1170fd2016-10-17 19:15:51 -07006998 if (netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006999 return -EBUSY;
7000
Mike Manning50d629e2018-02-26 23:49:30 +00007001 if (!master) {
7002 if (netdev_has_upper_dev(dev, upper_dev))
7003 return -EEXIST;
7004 } else {
7005 master_dev = netdev_master_upper_dev_get(dev);
7006 if (master_dev)
7007 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7008 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007009
David Ahern51d0c0472017-10-04 17:48:45 -07007010 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007011 &changeupper_info.info);
7012 ret = notifier_to_errno(ret);
7013 if (ret)
7014 return ret;
7015
Jiri Pirko6dffb042015-12-03 12:12:10 +01007016 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007017 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007018 if (ret)
7019 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007020
David Ahern51d0c0472017-10-04 17:48:45 -07007021 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01007022 &changeupper_info.info);
7023 ret = notifier_to_errno(ret);
7024 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07007025 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01007026
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007027 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007028
David Ahernf1170fd2016-10-17 19:15:51 -07007029rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007030 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007031
7032 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007033}
7034
7035/**
7036 * netdev_upper_dev_link - Add a link to the upper device
7037 * @dev: device
7038 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007039 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007040 *
7041 * Adds a link to device which is upper to this one. The caller must hold
7042 * the RTNL lock. On a failure a negative errno code is returned.
7043 * On success the reference counts are adjusted and the function
7044 * returns zero.
7045 */
7046int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007047 struct net_device *upper_dev,
7048 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007049{
David Ahern42ab19e2017-10-04 17:48:47 -07007050 return __netdev_upper_dev_link(dev, upper_dev, false,
7051 NULL, NULL, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007052}
7053EXPORT_SYMBOL(netdev_upper_dev_link);
7054
7055/**
7056 * netdev_master_upper_dev_link - Add a master link to the upper device
7057 * @dev: device
7058 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007059 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007060 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007061 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007062 *
7063 * Adds a link to device which is upper to this one. In this case, only
7064 * one master upper device can be linked, although other non-master devices
7065 * might be linked as well. The caller must hold the RTNL lock.
7066 * On a failure a negative errno code is returned. On success the reference
7067 * counts are adjusted and the function returns zero.
7068 */
7069int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007070 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007071 void *upper_priv, void *upper_info,
7072 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007073{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007074 return __netdev_upper_dev_link(dev, upper_dev, true,
David Ahern42ab19e2017-10-04 17:48:47 -07007075 upper_priv, upper_info, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007076}
7077EXPORT_SYMBOL(netdev_master_upper_dev_link);
7078
7079/**
7080 * netdev_upper_dev_unlink - Removes a link to upper device
7081 * @dev: device
7082 * @upper_dev: new upper device
7083 *
7084 * Removes a link to device which is upper to this one. The caller must hold
7085 * the RTNL lock.
7086 */
7087void netdev_upper_dev_unlink(struct net_device *dev,
7088 struct net_device *upper_dev)
7089{
David Ahern51d0c0472017-10-04 17:48:45 -07007090 struct netdev_notifier_changeupper_info changeupper_info = {
7091 .info = {
7092 .dev = dev,
7093 },
7094 .upper_dev = upper_dev,
7095 .linking = false,
7096 };
tchardingf4563a72017-02-09 17:56:07 +11007097
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007098 ASSERT_RTNL();
7099
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007100 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007101
David Ahern51d0c0472017-10-04 17:48:45 -07007102 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007103 &changeupper_info.info);
7104
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007105 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007106
David Ahern51d0c0472017-10-04 17:48:45 -07007107 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007108 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007109}
7110EXPORT_SYMBOL(netdev_upper_dev_unlink);
7111
Moni Shoua61bd3852015-02-03 16:48:29 +02007112/**
7113 * netdev_bonding_info_change - Dispatch event about slave change
7114 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09007115 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02007116 *
7117 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
7118 * The caller must hold the RTNL lock.
7119 */
7120void netdev_bonding_info_change(struct net_device *dev,
7121 struct netdev_bonding_info *bonding_info)
7122{
David Ahern51d0c0472017-10-04 17:48:45 -07007123 struct netdev_notifier_bonding_info info = {
7124 .info.dev = dev,
7125 };
Moni Shoua61bd3852015-02-03 16:48:29 +02007126
7127 memcpy(&info.bonding_info, bonding_info,
7128 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07007129 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02007130 &info.info);
7131}
7132EXPORT_SYMBOL(netdev_bonding_info_change);
7133
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007134static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007135{
7136 struct netdev_adjacent *iter;
7137
7138 struct net *net = dev_net(dev);
7139
7140 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007141 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007142 continue;
7143 netdev_adjacent_sysfs_add(iter->dev, dev,
7144 &iter->dev->adj_list.lower);
7145 netdev_adjacent_sysfs_add(dev, iter->dev,
7146 &dev->adj_list.upper);
7147 }
7148
7149 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007150 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007151 continue;
7152 netdev_adjacent_sysfs_add(iter->dev, dev,
7153 &iter->dev->adj_list.upper);
7154 netdev_adjacent_sysfs_add(dev, iter->dev,
7155 &dev->adj_list.lower);
7156 }
7157}
7158
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007159static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007160{
7161 struct netdev_adjacent *iter;
7162
7163 struct net *net = dev_net(dev);
7164
7165 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007166 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007167 continue;
7168 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7169 &iter->dev->adj_list.lower);
7170 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7171 &dev->adj_list.upper);
7172 }
7173
7174 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007175 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007176 continue;
7177 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7178 &iter->dev->adj_list.upper);
7179 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7180 &dev->adj_list.lower);
7181 }
7182}
7183
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007184void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02007185{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007186 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007187
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007188 struct net *net = dev_net(dev);
7189
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007190 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007191 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007192 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007193 netdev_adjacent_sysfs_del(iter->dev, oldname,
7194 &iter->dev->adj_list.lower);
7195 netdev_adjacent_sysfs_add(iter->dev, dev,
7196 &iter->dev->adj_list.lower);
7197 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007198
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007199 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007200 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007201 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007202 netdev_adjacent_sysfs_del(iter->dev, oldname,
7203 &iter->dev->adj_list.upper);
7204 netdev_adjacent_sysfs_add(iter->dev, dev,
7205 &iter->dev->adj_list.upper);
7206 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007207}
Veaceslav Falico402dae92013-09-25 09:20:09 +02007208
7209void *netdev_lower_dev_get_private(struct net_device *dev,
7210 struct net_device *lower_dev)
7211{
7212 struct netdev_adjacent *lower;
7213
7214 if (!lower_dev)
7215 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007216 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02007217 if (!lower)
7218 return NULL;
7219
7220 return lower->private;
7221}
7222EXPORT_SYMBOL(netdev_lower_dev_get_private);
7223
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007224
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007225int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007226{
7227 struct net_device *lower = NULL;
7228 struct list_head *iter;
7229 int max_nest = -1;
7230 int nest;
7231
7232 ASSERT_RTNL();
7233
7234 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007235 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007236 if (max_nest < nest)
7237 max_nest = nest;
7238 }
7239
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007240 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007241}
7242EXPORT_SYMBOL(dev_get_nest_level);
7243
Jiri Pirko04d48262015-12-03 12:12:15 +01007244/**
7245 * netdev_lower_change - Dispatch event about lower device state change
7246 * @lower_dev: device
7247 * @lower_state_info: state to dispatch
7248 *
7249 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
7250 * The caller must hold the RTNL lock.
7251 */
7252void netdev_lower_state_changed(struct net_device *lower_dev,
7253 void *lower_state_info)
7254{
David Ahern51d0c0472017-10-04 17:48:45 -07007255 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
7256 .info.dev = lower_dev,
7257 };
Jiri Pirko04d48262015-12-03 12:12:15 +01007258
7259 ASSERT_RTNL();
7260 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07007261 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01007262 &changelowerstate_info.info);
7263}
7264EXPORT_SYMBOL(netdev_lower_state_changed);
7265
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007266static void dev_change_rx_flags(struct net_device *dev, int flags)
7267{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007268 const struct net_device_ops *ops = dev->netdev_ops;
7269
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05007270 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007271 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007272}
7273
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007274static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07007275{
Eric Dumazetb536db92011-11-30 21:42:26 +00007276 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06007277 kuid_t uid;
7278 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07007279
Patrick McHardy24023452007-07-14 18:51:31 -07007280 ASSERT_RTNL();
7281
Wang Chendad9b332008-06-18 01:48:28 -07007282 dev->flags |= IFF_PROMISC;
7283 dev->promiscuity += inc;
7284 if (dev->promiscuity == 0) {
7285 /*
7286 * Avoid overflow.
7287 * If inc causes overflow, untouch promisc and return error.
7288 */
7289 if (inc < 0)
7290 dev->flags &= ~IFF_PROMISC;
7291 else {
7292 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007293 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
7294 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007295 return -EOVERFLOW;
7296 }
7297 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007298 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007299 pr_info("device %s %s promiscuous mode\n",
7300 dev->name,
7301 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11007302 if (audit_enabled) {
7303 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04007304 audit_log(audit_context(), GFP_ATOMIC,
7305 AUDIT_ANOM_PROMISCUOUS,
7306 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
7307 dev->name, (dev->flags & IFF_PROMISC),
7308 (old_flags & IFF_PROMISC),
7309 from_kuid(&init_user_ns, audit_get_loginuid(current)),
7310 from_kuid(&init_user_ns, uid),
7311 from_kgid(&init_user_ns, gid),
7312 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11007313 }
Patrick McHardy24023452007-07-14 18:51:31 -07007314
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007315 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07007316 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007317 if (notify)
7318 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07007319 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007320}
7321
Linus Torvalds1da177e2005-04-16 15:20:36 -07007322/**
7323 * dev_set_promiscuity - update promiscuity count on a device
7324 * @dev: device
7325 * @inc: modifier
7326 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07007327 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007328 * remains above zero the interface remains promiscuous. Once it hits zero
7329 * the device reverts back to normal filtering operation. A negative inc
7330 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07007331 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007332 */
Wang Chendad9b332008-06-18 01:48:28 -07007333int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334{
Eric Dumazetb536db92011-11-30 21:42:26 +00007335 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07007336 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007338 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07007339 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07007340 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07007341 if (dev->flags != old_flags)
7342 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07007343 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007344}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007345EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007346
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007347static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007348{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007349 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007350
Patrick McHardy24023452007-07-14 18:51:31 -07007351 ASSERT_RTNL();
7352
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07007354 dev->allmulti += inc;
7355 if (dev->allmulti == 0) {
7356 /*
7357 * Avoid overflow.
7358 * If inc causes overflow, untouch allmulti and return error.
7359 */
7360 if (inc < 0)
7361 dev->flags &= ~IFF_ALLMULTI;
7362 else {
7363 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007364 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
7365 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007366 return -EOVERFLOW;
7367 }
7368 }
Patrick McHardy24023452007-07-14 18:51:31 -07007369 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007370 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07007371 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007372 if (notify)
7373 __dev_notify_flags(dev, old_flags,
7374 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07007375 }
Wang Chendad9b332008-06-18 01:48:28 -07007376 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007377}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007378
7379/**
7380 * dev_set_allmulti - update allmulti count on a device
7381 * @dev: device
7382 * @inc: modifier
7383 *
7384 * Add or remove reception of all multicast frames to a device. While the
7385 * count in the device remains above zero the interface remains listening
7386 * to all interfaces. Once it hits zero the device reverts back to normal
7387 * filtering operation. A negative @inc value is used to drop the counter
7388 * when releasing a resource needing all multicasts.
7389 * Return 0 if successful or a negative errno code on error.
7390 */
7391
7392int dev_set_allmulti(struct net_device *dev, int inc)
7393{
7394 return __dev_set_allmulti(dev, inc, true);
7395}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007396EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07007397
7398/*
7399 * Upload unicast and multicast address lists to device and
7400 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08007401 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07007402 * are present.
7403 */
7404void __dev_set_rx_mode(struct net_device *dev)
7405{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007406 const struct net_device_ops *ops = dev->netdev_ops;
7407
Patrick McHardy4417da62007-06-27 01:28:10 -07007408 /* dev_open will call this function so the list will stay sane. */
7409 if (!(dev->flags&IFF_UP))
7410 return;
7411
7412 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09007413 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07007414
Jiri Pirko01789342011-08-16 06:29:00 +00007415 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07007416 /* Unicast addresses changes may only happen under the rtnl,
7417 * therefore calling __dev_set_promiscuity here is safe.
7418 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007419 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007420 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007421 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007422 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007423 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007424 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07007425 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007426 }
Jiri Pirko01789342011-08-16 06:29:00 +00007427
7428 if (ops->ndo_set_rx_mode)
7429 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007430}
7431
7432void dev_set_rx_mode(struct net_device *dev)
7433{
David S. Millerb9e40852008-07-15 00:15:08 -07007434 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007435 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07007436 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437}
7438
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007439/**
7440 * dev_get_flags - get flags reported to userspace
7441 * @dev: device
7442 *
7443 * Get the combination of flag bits exported through APIs to userspace.
7444 */
Eric Dumazet95c96172012-04-15 05:58:06 +00007445unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446{
Eric Dumazet95c96172012-04-15 05:58:06 +00007447 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007448
7449 flags = (dev->flags & ~(IFF_PROMISC |
7450 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08007451 IFF_RUNNING |
7452 IFF_LOWER_UP |
7453 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007454 (dev->gflags & (IFF_PROMISC |
7455 IFF_ALLMULTI));
7456
Stefan Rompfb00055a2006-03-20 17:09:11 -08007457 if (netif_running(dev)) {
7458 if (netif_oper_up(dev))
7459 flags |= IFF_RUNNING;
7460 if (netif_carrier_ok(dev))
7461 flags |= IFF_LOWER_UP;
7462 if (netif_dormant(dev))
7463 flags |= IFF_DORMANT;
7464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465
7466 return flags;
7467}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007468EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469
Patrick McHardybd380812010-02-26 06:34:53 +00007470int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471{
Eric Dumazetb536db92011-11-30 21:42:26 +00007472 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00007473 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007474
Patrick McHardy24023452007-07-14 18:51:31 -07007475 ASSERT_RTNL();
7476
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477 /*
7478 * Set the flags on our device.
7479 */
7480
7481 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
7482 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
7483 IFF_AUTOMEDIA)) |
7484 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
7485 IFF_ALLMULTI));
7486
7487 /*
7488 * Load in the correct multicast list now the flags have changed.
7489 */
7490
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007491 if ((old_flags ^ flags) & IFF_MULTICAST)
7492 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07007493
Patrick McHardy4417da62007-06-27 01:28:10 -07007494 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007495
7496 /*
7497 * Have we downed the interface. We handle IFF_UP ourselves
7498 * according to user attempts to set it, rather than blindly
7499 * setting it.
7500 */
7501
7502 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07007503 if ((old_flags ^ flags) & IFF_UP) {
7504 if (old_flags & IFF_UP)
7505 __dev_close(dev);
7506 else
7507 ret = __dev_open(dev);
7508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007511 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007512 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007513
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007515
7516 if (__dev_set_promiscuity(dev, inc, false) >= 0)
7517 if (dev->flags != old_flags)
7518 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519 }
7520
7521 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11007522 * is important. Some (broken) drivers set IFF_PROMISC, when
7523 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007524 */
7525 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007526 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
7527
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007529 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530 }
7531
Patrick McHardybd380812010-02-26 06:34:53 +00007532 return ret;
7533}
7534
Nicolas Dichtela528c212013-09-25 12:02:44 +02007535void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
7536 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00007537{
7538 unsigned int changes = dev->flags ^ old_flags;
7539
Nicolas Dichtela528c212013-09-25 12:02:44 +02007540 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007541 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007542
Patrick McHardybd380812010-02-26 06:34:53 +00007543 if (changes & IFF_UP) {
7544 if (dev->flags & IFF_UP)
7545 call_netdevice_notifiers(NETDEV_UP, dev);
7546 else
7547 call_netdevice_notifiers(NETDEV_DOWN, dev);
7548 }
7549
7550 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007551 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07007552 struct netdev_notifier_change_info change_info = {
7553 .info = {
7554 .dev = dev,
7555 },
7556 .flags_changed = changes,
7557 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007558
David Ahern51d0c0472017-10-04 17:48:45 -07007559 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007560 }
Patrick McHardybd380812010-02-26 06:34:53 +00007561}
7562
7563/**
7564 * dev_change_flags - change device settings
7565 * @dev: device
7566 * @flags: device state flags
7567 *
7568 * Change settings on device based state flags. The flags are
7569 * in the userspace exported format.
7570 */
Eric Dumazetb536db92011-11-30 21:42:26 +00007571int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00007572{
Eric Dumazetb536db92011-11-30 21:42:26 +00007573 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007574 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00007575
7576 ret = __dev_change_flags(dev, flags);
7577 if (ret < 0)
7578 return ret;
7579
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007580 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007581 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582 return ret;
7583}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007584EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585
WANG Congf51048c2017-07-06 15:01:57 -07007586int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007587{
7588 const struct net_device_ops *ops = dev->netdev_ops;
7589
7590 if (ops->ndo_change_mtu)
7591 return ops->ndo_change_mtu(dev, new_mtu);
7592
7593 dev->mtu = new_mtu;
7594 return 0;
7595}
WANG Congf51048c2017-07-06 15:01:57 -07007596EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007597
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007598/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007599 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007600 * @dev: device
7601 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007602 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007603 *
7604 * Change the maximum transfer size of the network device.
7605 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007606int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
7607 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007609 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610
7611 if (new_mtu == dev->mtu)
7612 return 0;
7613
Jarod Wilson61e84622016-10-07 22:04:33 -04007614 /* MTU must be positive, and in range */
7615 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007616 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007617 return -EINVAL;
Jarod Wilson61e84622016-10-07 22:04:33 -04007618 }
7619
7620 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007621 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
Jarod Wilson61e84622016-10-07 22:04:33 -04007622 return -EINVAL;
7623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007624
7625 if (!netif_device_present(dev))
7626 return -ENODEV;
7627
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01007628 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
7629 err = notifier_to_errno(err);
7630 if (err)
7631 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007632
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007633 orig_mtu = dev->mtu;
7634 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007636 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007637 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7638 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007639 err = notifier_to_errno(err);
7640 if (err) {
7641 /* setting mtu back and notifying everyone again,
7642 * so that they have a chance to revert changes.
7643 */
7644 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007645 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7646 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007647 }
7648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007649 return err;
7650}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007651
7652int dev_set_mtu(struct net_device *dev, int new_mtu)
7653{
7654 struct netlink_ext_ack extack;
7655 int err;
7656
Li RongQinga6bcfc82018-08-03 15:45:21 +08007657 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007658 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08007659 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007660 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
7661 return err;
7662}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007663EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007665/**
Cong Wang6a643dd2018-01-25 18:26:22 -08007666 * dev_change_tx_queue_len - Change TX queue length of a netdevice
7667 * @dev: device
7668 * @new_len: new tx queue length
7669 */
7670int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
7671{
7672 unsigned int orig_len = dev->tx_queue_len;
7673 int res;
7674
7675 if (new_len != (unsigned int)new_len)
7676 return -ERANGE;
7677
7678 if (new_len != orig_len) {
7679 dev->tx_queue_len = new_len;
7680 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
7681 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03007682 if (res)
7683 goto err_rollback;
7684 res = dev_qdisc_change_tx_queue_len(dev);
7685 if (res)
7686 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08007687 }
7688
7689 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03007690
7691err_rollback:
7692 netdev_err(dev, "refused to change device tx_queue_len\n");
7693 dev->tx_queue_len = orig_len;
7694 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08007695}
7696
7697/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007698 * dev_set_group - Change group this device belongs to
7699 * @dev: device
7700 * @new_group: group this device should belong to
7701 */
7702void dev_set_group(struct net_device *dev, int new_group)
7703{
7704 dev->group = new_group;
7705}
7706EXPORT_SYMBOL(dev_set_group);
7707
7708/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007709 * dev_set_mac_address - Change Media Access Control Address
7710 * @dev: device
7711 * @sa: new address
7712 *
7713 * Change the hardware (MAC) address of the device
7714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
7716{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007717 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718 int err;
7719
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007720 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007721 return -EOPNOTSUPP;
7722 if (sa->sa_family != dev->type)
7723 return -EINVAL;
7724 if (!netif_device_present(dev))
7725 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007726 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00007727 if (err)
7728 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00007729 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00007730 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007731 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00007732 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007734EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007735
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007736/**
7737 * dev_change_carrier - Change device carrier
7738 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00007739 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007740 *
7741 * Change device carrier
7742 */
7743int dev_change_carrier(struct net_device *dev, bool new_carrier)
7744{
7745 const struct net_device_ops *ops = dev->netdev_ops;
7746
7747 if (!ops->ndo_change_carrier)
7748 return -EOPNOTSUPP;
7749 if (!netif_device_present(dev))
7750 return -ENODEV;
7751 return ops->ndo_change_carrier(dev, new_carrier);
7752}
7753EXPORT_SYMBOL(dev_change_carrier);
7754
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02007756 * dev_get_phys_port_id - Get device physical port ID
7757 * @dev: device
7758 * @ppid: port ID
7759 *
7760 * Get device physical port ID
7761 */
7762int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007763 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02007764{
7765 const struct net_device_ops *ops = dev->netdev_ops;
7766
7767 if (!ops->ndo_get_phys_port_id)
7768 return -EOPNOTSUPP;
7769 return ops->ndo_get_phys_port_id(dev, ppid);
7770}
7771EXPORT_SYMBOL(dev_get_phys_port_id);
7772
7773/**
David Aherndb24a902015-03-17 20:23:15 -06007774 * dev_get_phys_port_name - Get device physical port name
7775 * @dev: device
7776 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00007777 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06007778 *
7779 * Get device physical port name
7780 */
7781int dev_get_phys_port_name(struct net_device *dev,
7782 char *name, size_t len)
7783{
7784 const struct net_device_ops *ops = dev->netdev_ops;
7785
7786 if (!ops->ndo_get_phys_port_name)
7787 return -EOPNOTSUPP;
7788 return ops->ndo_get_phys_port_name(dev, name, len);
7789}
7790EXPORT_SYMBOL(dev_get_phys_port_name);
7791
7792/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007793 * dev_change_proto_down - update protocol port state information
7794 * @dev: device
7795 * @proto_down: new value
7796 *
7797 * This info can be used by switch drivers to set the phys state of the
7798 * port.
7799 */
7800int dev_change_proto_down(struct net_device *dev, bool proto_down)
7801{
7802 const struct net_device_ops *ops = dev->netdev_ops;
7803
7804 if (!ops->ndo_change_proto_down)
7805 return -EOPNOTSUPP;
7806 if (!netif_device_present(dev))
7807 return -ENODEV;
7808 return ops->ndo_change_proto_down(dev, proto_down);
7809}
7810EXPORT_SYMBOL(dev_change_proto_down);
7811
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007812u32 __dev_xdp_query(struct net_device *dev, bpf_op_t bpf_op,
7813 enum bpf_netdev_command cmd)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007814{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007815 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007816
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007817 if (!bpf_op)
7818 return 0;
Martin KaFai Lau58038692017-06-15 17:29:09 -07007819
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007820 memset(&xdp, 0, sizeof(xdp));
7821 xdp.command = cmd;
7822
7823 /* Query must always succeed. */
7824 WARN_ON(bpf_op(dev, &xdp) < 0 && cmd == XDP_QUERY_PROG);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007825
Jakub Kicinski6b867582018-07-11 20:36:39 -07007826 return xdp.prog_id;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007827}
7828
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007829static int dev_xdp_install(struct net_device *dev, bpf_op_t bpf_op,
Jakub Kicinski32d60272017-06-21 18:25:03 -07007830 struct netlink_ext_ack *extack, u32 flags,
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007831 struct bpf_prog *prog)
7832{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007833 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007834
7835 memset(&xdp, 0, sizeof(xdp));
Jakub Kicinskiee5d0322017-06-21 18:25:04 -07007836 if (flags & XDP_FLAGS_HW_MODE)
7837 xdp.command = XDP_SETUP_PROG_HW;
7838 else
7839 xdp.command = XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007840 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07007841 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007842 xdp.prog = prog;
7843
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007844 return bpf_op(dev, &xdp);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007845}
7846
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007847static void dev_xdp_uninstall(struct net_device *dev)
7848{
7849 struct netdev_bpf xdp;
7850 bpf_op_t ndo_bpf;
7851
7852 /* Remove generic XDP */
7853 WARN_ON(dev_xdp_install(dev, generic_xdp_install, NULL, 0, NULL));
7854
7855 /* Remove from the driver */
7856 ndo_bpf = dev->netdev_ops->ndo_bpf;
7857 if (!ndo_bpf)
7858 return;
7859
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007860 memset(&xdp, 0, sizeof(xdp));
7861 xdp.command = XDP_QUERY_PROG;
7862 WARN_ON(ndo_bpf(dev, &xdp));
7863 if (xdp.prog_id)
7864 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
7865 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007866
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007867 /* Remove HW offload */
7868 memset(&xdp, 0, sizeof(xdp));
7869 xdp.command = XDP_QUERY_PROG_HW;
7870 if (!ndo_bpf(dev, &xdp) && xdp.prog_id)
7871 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
7872 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08007873}
7874
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007875/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07007876 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
7877 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07007878 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07007879 * @fd: new program fd or negative value to clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01007880 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07007881 *
7882 * Set or clear a bpf program for a device
7883 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07007884int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
7885 int fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07007886{
7887 const struct net_device_ops *ops = dev->netdev_ops;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007888 enum bpf_netdev_command query;
Brenden Blancoa7862b42016-07-19 12:16:48 -07007889 struct bpf_prog *prog = NULL;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007890 bpf_op_t bpf_op, bpf_chk;
Brenden Blancoa7862b42016-07-19 12:16:48 -07007891 int err;
7892
Daniel Borkmann85de8572016-11-28 23:16:54 +01007893 ASSERT_RTNL();
7894
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007895 query = flags & XDP_FLAGS_HW_MODE ? XDP_QUERY_PROG_HW : XDP_QUERY_PROG;
7896
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007897 bpf_op = bpf_chk = ops->ndo_bpf;
7898 if (!bpf_op && (flags & (XDP_FLAGS_DRV_MODE | XDP_FLAGS_HW_MODE)))
Daniel Borkmann0489df92017-05-12 01:04:45 +02007899 return -EOPNOTSUPP;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007900 if (!bpf_op || (flags & XDP_FLAGS_SKB_MODE))
7901 bpf_op = generic_xdp_install;
7902 if (bpf_op == bpf_chk)
7903 bpf_chk = generic_xdp_install;
David S. Millerb5cdae32017-04-18 15:36:58 -04007904
Brenden Blancoa7862b42016-07-19 12:16:48 -07007905 if (fd >= 0) {
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007906 if (__dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG) ||
7907 __dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG_HW))
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007908 return -EEXIST;
7909 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) &&
Jakub Kicinskia25717d2018-07-11 20:36:41 -07007910 __dev_xdp_query(dev, bpf_op, query))
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02007911 return -EBUSY;
Daniel Borkmann85de8572016-11-28 23:16:54 +01007912
Jakub Kicinski288b3de2017-11-20 15:21:54 -08007913 prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
7914 bpf_op == ops->ndo_bpf);
Brenden Blancoa7862b42016-07-19 12:16:48 -07007915 if (IS_ERR(prog))
7916 return PTR_ERR(prog);
Jakub Kicinski441a3302017-11-20 15:21:55 -08007917
7918 if (!(flags & XDP_FLAGS_HW_MODE) &&
7919 bpf_prog_is_dev_bound(prog->aux)) {
7920 NL_SET_ERR_MSG(extack, "using device-bound program without HW_MODE flag is not supported");
7921 bpf_prog_put(prog);
7922 return -EINVAL;
7923 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07007924 }
7925
Jakub Kicinskif4e63522017-11-03 13:56:16 -07007926 err = dev_xdp_install(dev, bpf_op, extack, flags, prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07007927 if (err < 0 && prog)
7928 bpf_prog_put(prog);
7929
7930 return err;
7931}
Brenden Blancoa7862b42016-07-19 12:16:48 -07007932
7933/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007934 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07007935 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07007936 *
7937 * Returns a suitable unique value for a new device interface
7938 * number. The caller must hold the rtnl semaphore or the
7939 * dev_base_lock to be sure it remains unique.
7940 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07007941static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00007943 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11007944
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945 for (;;) {
7946 if (++ifindex <= 0)
7947 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007948 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00007949 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950 }
7951}
7952
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08007954static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07007955DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956
Stephen Hemminger6f05f622007-03-08 20:46:03 -08007957static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007960 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961}
7962
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007963static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007964{
Krishna Kumare93737b2009-12-08 22:26:02 +00007965 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007966 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007967
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007968 BUG_ON(dev_boot_phase);
7969 ASSERT_RTNL();
7970
Krishna Kumare93737b2009-12-08 22:26:02 +00007971 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007972 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00007973 * for initialization unwind. Remove those
7974 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007975 */
7976 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007977 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
7978 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007979
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007980 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00007981 list_del(&dev->unreg_list);
7982 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007983 }
Eric Dumazet449f4542011-05-19 12:24:16 +00007984 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007985 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00007986 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007987
Octavian Purdila44345722010-12-13 12:44:07 +00007988 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007989 list_for_each_entry(dev, head, unreg_list)
7990 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04007991 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007992
Octavian Purdila44345722010-12-13 12:44:07 +00007993 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007994 /* And unlink it from device chain. */
7995 unlist_netdevice(dev);
7996
7997 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007998 }
Eric Dumazet41852492016-08-26 12:50:39 -07007999 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008000
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008001 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008002
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008003 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008004 struct sk_buff *skb = NULL;
8005
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008006 /* Shutdown queueing discipline. */
8007 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008008
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008009 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008010
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008011 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11008012 * this device. They should clean all the things.
8013 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008014 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
8015
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008016 if (!dev->rtnl_link_ops ||
8017 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04008018 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01008019 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008020
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008021 /*
8022 * Flush the unicast and multicast chains
8023 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008024 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00008025 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008026
8027 if (dev->netdev_ops->ndo_uninit)
8028 dev->netdev_ops->ndo_uninit(dev);
8029
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008030 if (skb)
8031 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07008032
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008033 /* Notifier chain MUST detach us all upper devices. */
8034 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07008035 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008036
8037 /* Remove entries from kobject tree */
8038 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00008039#ifdef CONFIG_XPS
8040 /* Remove XPS queueing entries */
8041 netif_reset_xps_queues_gt(dev, 0);
8042#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008043 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008044
Eric W. Biederman850a5452011-10-13 22:25:23 +00008045 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008046
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00008047 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008048 dev_put(dev);
8049}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008050
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008051static void rollback_registered(struct net_device *dev)
8052{
8053 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008054
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008055 list_add(&dev->unreg_list, &single);
8056 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00008057 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008058}
8059
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008060static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
8061 struct net_device *upper, netdev_features_t features)
8062{
8063 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8064 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008065 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008066
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008067 for_each_netdev_feature(&upper_disables, feature_bit) {
8068 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008069 if (!(upper->wanted_features & feature)
8070 && (features & feature)) {
8071 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
8072 &feature, upper->name);
8073 features &= ~feature;
8074 }
8075 }
8076
8077 return features;
8078}
8079
8080static void netdev_sync_lower_features(struct net_device *upper,
8081 struct net_device *lower, netdev_features_t features)
8082{
8083 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8084 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008085 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008086
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008087 for_each_netdev_feature(&upper_disables, feature_bit) {
8088 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008089 if (!(features & feature) && (lower->features & feature)) {
8090 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
8091 &feature, lower->name);
8092 lower->wanted_features &= ~feature;
8093 netdev_update_features(lower);
8094
8095 if (unlikely(lower->features & feature))
8096 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
8097 &feature, lower->name);
8098 }
8099 }
8100}
8101
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008102static netdev_features_t netdev_fix_features(struct net_device *dev,
8103 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07008104{
Michał Mirosław57422dc2011-01-22 12:14:12 +00008105 /* Fix illegal checksum combinations */
8106 if ((features & NETIF_F_HW_CSUM) &&
8107 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008108 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00008109 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
8110 }
8111
Herbert Xub63365a2008-10-23 01:11:29 -07008112 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008113 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008114 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008115 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07008116 }
8117
Pravin B Shelarec5f0612013-03-07 09:28:01 +00008118 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
8119 !(features & NETIF_F_IP_CSUM)) {
8120 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
8121 features &= ~NETIF_F_TSO;
8122 features &= ~NETIF_F_TSO_ECN;
8123 }
8124
8125 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
8126 !(features & NETIF_F_IPV6_CSUM)) {
8127 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
8128 features &= ~NETIF_F_TSO6;
8129 }
8130
Alexander Duyckb1dc4972016-05-02 09:38:24 -07008131 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
8132 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
8133 features &= ~NETIF_F_TSO_MANGLEID;
8134
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00008135 /* TSO ECN requires that TSO is present as well. */
8136 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
8137 features &= ~NETIF_F_TSO_ECN;
8138
Michał Mirosław212b5732011-02-15 16:59:16 +00008139 /* Software GSO depends on SG. */
8140 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008141 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00008142 features &= ~NETIF_F_GSO;
8143 }
8144
Alexander Duyck802ab552016-04-10 21:45:03 -04008145 /* GSO partial features require GSO partial be set */
8146 if ((features & dev->gso_partial_features) &&
8147 !(features & NETIF_F_GSO_PARTIAL)) {
8148 netdev_dbg(dev,
8149 "Dropping partially supported GSO features since no GSO partial.\n");
8150 features &= ~dev->gso_partial_features;
8151 }
8152
Michael Chanfb1f5f72017-12-16 03:09:40 -05008153 if (!(features & NETIF_F_RXCSUM)) {
8154 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
8155 * successfully merged by hardware must also have the
8156 * checksum verified by hardware. If the user does not
8157 * want to enable RXCSUM, logically, we should disable GRO_HW.
8158 */
8159 if (features & NETIF_F_GRO_HW) {
8160 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
8161 features &= ~NETIF_F_GRO_HW;
8162 }
8163 }
8164
Gal Pressmande8d5ab2018-03-12 11:48:49 +02008165 /* LRO/HW-GRO features cannot be combined with RX-FCS */
8166 if (features & NETIF_F_RXFCS) {
8167 if (features & NETIF_F_LRO) {
8168 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
8169 features &= ~NETIF_F_LRO;
8170 }
8171
8172 if (features & NETIF_F_GRO_HW) {
8173 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
8174 features &= ~NETIF_F_GRO_HW;
8175 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02008176 }
8177
Herbert Xub63365a2008-10-23 01:11:29 -07008178 return features;
8179}
Herbert Xub63365a2008-10-23 01:11:29 -07008180
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008181int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00008182{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008183 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008184 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008185 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05008186 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00008187
Michał Mirosław87267482011-04-12 09:56:38 +00008188 ASSERT_RTNL();
8189
Michał Mirosław5455c692011-02-15 16:59:17 +00008190 features = netdev_get_wanted_features(dev);
8191
8192 if (dev->netdev_ops->ndo_fix_features)
8193 features = dev->netdev_ops->ndo_fix_features(dev, features);
8194
8195 /* driver might be less strict about feature dependencies */
8196 features = netdev_fix_features(dev, features);
8197
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008198 /* some features can't be enabled if they're off an an upper device */
8199 netdev_for_each_upper_dev_rcu(dev, upper, iter)
8200 features = netdev_sync_upper_features(dev, upper, features);
8201
Michał Mirosław5455c692011-02-15 16:59:17 +00008202 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05008203 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00008204
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008205 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
8206 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00008207
8208 if (dev->netdev_ops->ndo_set_features)
8209 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01008210 else
8211 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00008212
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008213 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00008214 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008215 "set_features() failed (%d); wanted %pNF, left %pNF\n",
8216 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01008217 /* return non-0 since some features might have changed and
8218 * it's better to fire a spurious notification than miss it
8219 */
8220 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008221 }
8222
Jarod Wilsone7868a82015-11-03 23:09:32 -05008223sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008224 /* some features must be disabled on lower devices when disabled
8225 * on an upper device (think: bonding master or bridge)
8226 */
8227 netdev_for_each_lower_dev(dev, lower, iter)
8228 netdev_sync_lower_features(dev, lower, features);
8229
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008230 if (!err) {
8231 netdev_features_t diff = features ^ dev->features;
8232
8233 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
8234 /* udp_tunnel_{get,drop}_rx_info both need
8235 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
8236 * device, or they won't do anything.
8237 * Thus we need to update dev->features
8238 * *before* calling udp_tunnel_get_rx_info,
8239 * but *after* calling udp_tunnel_drop_rx_info.
8240 */
8241 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
8242 dev->features = features;
8243 udp_tunnel_get_rx_info(dev);
8244 } else {
8245 udp_tunnel_drop_rx_info(dev);
8246 }
8247 }
8248
Gal Pressman9daae9b2018-03-28 17:46:54 +03008249 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
8250 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
8251 dev->features = features;
8252 err |= vlan_get_rx_ctag_filter_info(dev);
8253 } else {
8254 vlan_drop_rx_ctag_filter_info(dev);
8255 }
8256 }
8257
8258 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
8259 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
8260 dev->features = features;
8261 err |= vlan_get_rx_stag_filter_info(dev);
8262 } else {
8263 vlan_drop_rx_stag_filter_info(dev);
8264 }
8265 }
8266
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008267 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008268 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008269
Jarod Wilsone7868a82015-11-03 23:09:32 -05008270 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008271}
8272
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008273/**
8274 * netdev_update_features - recalculate device features
8275 * @dev: the device to check
8276 *
8277 * Recalculate dev->features set and send notifications if it
8278 * has changed. Should be called after driver or hardware dependent
8279 * conditions might have changed that influence the features.
8280 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008281void netdev_update_features(struct net_device *dev)
8282{
8283 if (__netdev_update_features(dev))
8284 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00008285}
8286EXPORT_SYMBOL(netdev_update_features);
8287
Linus Torvalds1da177e2005-04-16 15:20:36 -07008288/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008289 * netdev_change_features - recalculate device features
8290 * @dev: the device to check
8291 *
8292 * Recalculate dev->features set and send notifications even
8293 * if they have not changed. Should be called instead of
8294 * netdev_update_features() if also dev->vlan_features might
8295 * have changed to allow the changes to be propagated to stacked
8296 * VLAN devices.
8297 */
8298void netdev_change_features(struct net_device *dev)
8299{
8300 __netdev_update_features(dev);
8301 netdev_features_change(dev);
8302}
8303EXPORT_SYMBOL(netdev_change_features);
8304
8305/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008306 * netif_stacked_transfer_operstate - transfer operstate
8307 * @rootdev: the root or lower level device to transfer state from
8308 * @dev: the device to transfer operstate to
8309 *
8310 * Transfer operational state from root to device. This is normally
8311 * called when a stacking relationship exists between the root
8312 * device and the device(a leaf device).
8313 */
8314void netif_stacked_transfer_operstate(const struct net_device *rootdev,
8315 struct net_device *dev)
8316{
8317 if (rootdev->operstate == IF_OPER_DORMANT)
8318 netif_dormant_on(dev);
8319 else
8320 netif_dormant_off(dev);
8321
Zhang Shengju0575c862017-04-26 17:49:38 +08008322 if (netif_carrier_ok(rootdev))
8323 netif_carrier_on(dev);
8324 else
8325 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008326}
8327EXPORT_SYMBOL(netif_stacked_transfer_operstate);
8328
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008329static int netif_alloc_rx_queues(struct net_device *dev)
8330{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008331 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00008332 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05308333 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008334 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008335
Tom Herbertbd25fa72010-10-18 18:00:16 +00008336 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008337
Michal Hockodcda9b02017-07-12 14:36:45 -07008338 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008339 if (!rx)
8340 return -ENOMEM;
8341
Tom Herbertbd25fa72010-10-18 18:00:16 +00008342 dev->_rx = rx;
8343
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008344 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00008345 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008346
8347 /* XDP RX-queue setup */
8348 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
8349 if (err < 0)
8350 goto err_rxq_info;
8351 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008352 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008353
8354err_rxq_info:
8355 /* Rollback successful reg's and free other resources */
8356 while (i--)
8357 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08008358 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008359 dev->_rx = NULL;
8360 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008361}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008362
8363static void netif_free_rx_queues(struct net_device *dev)
8364{
8365 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008366
8367 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
8368 if (!dev->_rx)
8369 return;
8370
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008371 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08008372 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
8373
8374 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008375}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008376
Changli Gaoaa942102010-12-04 02:31:41 +00008377static void netdev_init_one_queue(struct net_device *dev,
8378 struct netdev_queue *queue, void *_unused)
8379{
8380 /* Initialize queue lock */
8381 spin_lock_init(&queue->_xmit_lock);
8382 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
8383 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00008384 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00008385 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00008386#ifdef CONFIG_BQL
8387 dql_init(&queue->dql, HZ);
8388#endif
Changli Gaoaa942102010-12-04 02:31:41 +00008389}
8390
Eric Dumazet60877a32013-06-20 01:15:51 -07008391static void netif_free_tx_queues(struct net_device *dev)
8392{
WANG Cong4cb28972014-06-02 15:55:22 -07008393 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07008394}
8395
Tom Herberte6484932010-10-18 18:04:39 +00008396static int netif_alloc_netdev_queues(struct net_device *dev)
8397{
8398 unsigned int count = dev->num_tx_queues;
8399 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07008400 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00008401
Eric Dumazetd3397272015-07-06 17:13:26 +02008402 if (count < 1 || count > 0xffff)
8403 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00008404
Michal Hockodcda9b02017-07-12 14:36:45 -07008405 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008406 if (!tx)
8407 return -ENOMEM;
8408
Tom Herberte6484932010-10-18 18:04:39 +00008409 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00008410
Tom Herberte6484932010-10-18 18:04:39 +00008411 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
8412 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00008413
8414 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00008415}
8416
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008417void netif_tx_stop_all_queues(struct net_device *dev)
8418{
8419 unsigned int i;
8420
8421 for (i = 0; i < dev->num_tx_queues; i++) {
8422 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11008423
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008424 netif_tx_stop_queue(txq);
8425 }
8426}
8427EXPORT_SYMBOL(netif_tx_stop_all_queues);
8428
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008429/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430 * register_netdevice - register a network device
8431 * @dev: device to register
8432 *
8433 * Take a completed network device structure and add it to the kernel
8434 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8435 * chain. 0 is returned on success. A negative errno code is returned
8436 * on a failure to set up the device, or if the name is a duplicate.
8437 *
8438 * Callers must hold the rtnl semaphore. You may want
8439 * register_netdev() instead of this.
8440 *
8441 * BUGS:
8442 * The locking appears insufficient to guarantee two parallel registers
8443 * will not get the same name.
8444 */
8445
8446int register_netdevice(struct net_device *dev)
8447{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008449 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008450
Florian Fainellie283de32018-04-30 14:20:05 -07008451 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
8452 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008453 BUG_ON(dev_boot_phase);
8454 ASSERT_RTNL();
8455
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008456 might_sleep();
8457
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458 /* When net_device's are persistent, this will be fatal. */
8459 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008460 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008461
David S. Millerf1f28aa2008-07-15 00:08:33 -07008462 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07008463 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008464
Gao feng828de4f2012-09-13 20:58:27 +00008465 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00008466 if (ret < 0)
8467 goto out;
8468
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008470 if (dev->netdev_ops->ndo_init) {
8471 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472 if (ret) {
8473 if (ret > 0)
8474 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08008475 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008476 }
8477 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008478
Patrick McHardyf6469682013-04-19 02:04:27 +00008479 if (((dev->hw_features | dev->features) &
8480 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00008481 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
8482 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
8483 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
8484 ret = -EINVAL;
8485 goto err_uninit;
8486 }
8487
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00008488 ret = -EBUSY;
8489 if (!dev->ifindex)
8490 dev->ifindex = dev_new_index(net);
8491 else if (__dev_get_by_index(net, dev->ifindex))
8492 goto err_uninit;
8493
Michał Mirosław5455c692011-02-15 16:59:17 +00008494 /* Transfer changeable features to wanted_features and enable
8495 * software offloads (GSO and GRO).
8496 */
8497 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00008498 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02008499
8500 if (dev->netdev_ops->ndo_udp_tunnel_add) {
8501 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8502 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8503 }
8504
Michał Mirosław14d12322011-02-22 16:52:28 +00008505 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008507 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00008508 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008509
Alexander Duyck7f348a62016-04-20 16:51:00 -04008510 /* If IPv4 TCP segmentation offload is supported we should also
8511 * allow the device to enable segmenting the frame with the option
8512 * of ignoring a static IP ID value. This doesn't enable the
8513 * feature itself but allows the user to enable it later.
8514 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008515 if (dev->hw_features & NETIF_F_TSO)
8516 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04008517 if (dev->vlan_features & NETIF_F_TSO)
8518 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
8519 if (dev->mpls_features & NETIF_F_TSO)
8520 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
8521 if (dev->hw_enc_features & NETIF_F_TSO)
8522 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07008523
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008524 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00008525 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008526 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00008527
Pravin B Shelaree579672013-03-07 09:28:08 +00008528 /* Make NETIF_F_SG inheritable to tunnel devices.
8529 */
Alexander Duyck802ab552016-04-10 21:45:03 -04008530 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00008531
Simon Horman0d89d202013-05-23 21:02:52 +00008532 /* Make NETIF_F_SG inheritable to MPLS.
8533 */
8534 dev->mpls_features |= NETIF_F_SG;
8535
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00008536 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
8537 ret = notifier_to_errno(ret);
8538 if (ret)
8539 goto err_uninit;
8540
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008541 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008542 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008543 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008544 dev->reg_state = NETREG_REGISTERED;
8545
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008546 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00008547
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548 /*
8549 * Default initial state at registry is that the
8550 * device is present.
8551 */
8552
8553 set_bit(__LINK_STATE_PRESENT, &dev->state);
8554
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01008555 linkwatch_init_dev(dev);
8556
Linus Torvalds1da177e2005-04-16 15:20:36 -07008557 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008558 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008559 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008560 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008561
Jiri Pirko948b3372013-01-08 01:38:25 +00008562 /* If the device has permanent device address, driver should
8563 * set dev_addr and also addr_assign_type should be set to
8564 * NET_ADDR_PERM (default value).
8565 */
8566 if (dev->addr_assign_type == NET_ADDR_PERM)
8567 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
8568
Linus Torvalds1da177e2005-04-16 15:20:36 -07008569 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008570 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07008571 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008572 if (ret) {
8573 rollback_registered(dev);
8574 dev->reg_state = NETREG_UNREGISTERED;
8575 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008576 /*
8577 * Prevent userspace races by waiting until the network
8578 * device is fully setup before sending notifications.
8579 */
Patrick McHardya2835762010-02-26 06:34:51 +00008580 if (!dev->rtnl_link_ops ||
8581 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008582 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008583
8584out:
8585 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008586
8587err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008588 if (dev->netdev_ops->ndo_uninit)
8589 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -04008590 if (dev->priv_destructor)
8591 dev->priv_destructor(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008592 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008594EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595
8596/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008597 * init_dummy_netdev - init a dummy network device for NAPI
8598 * @dev: device to init
8599 *
8600 * This takes a network device structure and initialize the minimum
8601 * amount of fields so it can be used to schedule NAPI polls without
8602 * registering a full blown interface. This is to be used by drivers
8603 * that need to tie several hardware interfaces to a single NAPI
8604 * poll scheduler due to HW limitations.
8605 */
8606int init_dummy_netdev(struct net_device *dev)
8607{
8608 /* Clear everything. Note we don't initialize spinlocks
8609 * are they aren't supposed to be taken by any of the
8610 * NAPI code and this dummy netdev is supposed to be
8611 * only ever used for NAPI polls
8612 */
8613 memset(dev, 0, sizeof(struct net_device));
8614
8615 /* make sure we BUG if trying to hit standard
8616 * register/unregister code path
8617 */
8618 dev->reg_state = NETREG_DUMMY;
8619
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008620 /* NAPI wants this */
8621 INIT_LIST_HEAD(&dev->napi_list);
8622
8623 /* a dummy interface is started by default */
8624 set_bit(__LINK_STATE_PRESENT, &dev->state);
8625 set_bit(__LINK_STATE_START, &dev->state);
8626
Eric Dumazet29b44332010-10-11 10:22:12 +00008627 /* Note : We dont allocate pcpu_refcnt for dummy devices,
8628 * because users of this 'device' dont need to change
8629 * its refcount.
8630 */
8631
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008632 return 0;
8633}
8634EXPORT_SYMBOL_GPL(init_dummy_netdev);
8635
8636
8637/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638 * register_netdev - register a network device
8639 * @dev: device to register
8640 *
8641 * Take a completed network device structure and add it to the kernel
8642 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8643 * chain. 0 is returned on success. A negative errno code is returned
8644 * on a failure to set up the device, or if the name is a duplicate.
8645 *
Borislav Petkov38b4da382007-04-20 22:14:10 -07008646 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07008647 * and expands the device name if you passed a format string to
8648 * alloc_netdev.
8649 */
8650int register_netdev(struct net_device *dev)
8651{
8652 int err;
8653
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +03008654 if (rtnl_lock_killable())
8655 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008656 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008657 rtnl_unlock();
8658 return err;
8659}
8660EXPORT_SYMBOL(register_netdev);
8661
Eric Dumazet29b44332010-10-11 10:22:12 +00008662int netdev_refcnt_read(const struct net_device *dev)
8663{
8664 int i, refcnt = 0;
8665
8666 for_each_possible_cpu(i)
8667 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
8668 return refcnt;
8669}
8670EXPORT_SYMBOL(netdev_refcnt_read);
8671
Ben Hutchings2c530402012-07-10 10:55:09 +00008672/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008673 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00008674 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675 *
8676 * This is called when unregistering network devices.
8677 *
8678 * Any protocol or device that holds a reference should register
8679 * for netdevice notification, and cleanup and put back the
8680 * reference if they receive an UNREGISTER event.
8681 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008682 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683 */
8684static void netdev_wait_allrefs(struct net_device *dev)
8685{
8686 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00008687 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008688
Eric Dumazete014deb2009-11-17 05:59:21 +00008689 linkwatch_forget_dev(dev);
8690
Linus Torvalds1da177e2005-04-16 15:20:36 -07008691 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00008692 refcnt = netdev_refcnt_read(dev);
8693
8694 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008695 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008696 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008697
8698 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008699 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700
Eric Dumazet748e2d92012-08-22 21:50:59 +00008701 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008702 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00008703 rtnl_lock();
8704
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
8706 &dev->state)) {
8707 /* We must not have linkwatch events
8708 * pending on unregister. If this
8709 * happens, we simply run the queue
8710 * unscheduled, resulting in a noop
8711 * for this device.
8712 */
8713 linkwatch_run_queue();
8714 }
8715
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008716 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008717
8718 rebroadcast_time = jiffies;
8719 }
8720
8721 msleep(250);
8722
Eric Dumazet29b44332010-10-11 10:22:12 +00008723 refcnt = netdev_refcnt_read(dev);
8724
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008726 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
8727 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728 warning_time = jiffies;
8729 }
8730 }
8731}
8732
8733/* The sequence is:
8734 *
8735 * rtnl_lock();
8736 * ...
8737 * register_netdevice(x1);
8738 * register_netdevice(x2);
8739 * ...
8740 * unregister_netdevice(y1);
8741 * unregister_netdevice(y2);
8742 * ...
8743 * rtnl_unlock();
8744 * free_netdev(y1);
8745 * free_netdev(y2);
8746 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07008747 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008749 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750 * without deadlocking with linkwatch via keventd.
8751 * 2) Since we run with the RTNL semaphore not held, we can sleep
8752 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07008753 *
8754 * We must not return until all unregister events added during
8755 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757void netdev_run_todo(void)
8758{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008759 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008760
Linus Torvalds1da177e2005-04-16 15:20:36 -07008761 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008762 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07008763
8764 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008765
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008766
8767 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00008768 if (!list_empty(&list))
8769 rcu_barrier();
8770
Linus Torvalds1da177e2005-04-16 15:20:36 -07008771 while (!list_empty(&list)) {
8772 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00008773 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774 list_del(&dev->todo_list);
8775
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008776 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008777 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07008778 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008779 dump_stack();
8780 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008781 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008782
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008783 dev->reg_state = NETREG_UNREGISTERED;
8784
8785 netdev_wait_allrefs(dev);
8786
8787 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00008788 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08008789 BUG_ON(!list_empty(&dev->ptype_all));
8790 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00008791 WARN_ON(rcu_access_pointer(dev->ip_ptr));
8792 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -08008793#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -07008794 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -08008795#endif
David S. Millercf124db2017-05-08 12:52:56 -04008796 if (dev->priv_destructor)
8797 dev->priv_destructor(dev);
8798 if (dev->needs_free_netdev)
8799 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07008800
Eric W. Biederman50624c92013-09-23 21:19:49 -07008801 /* Report a network device has been unregistered */
8802 rtnl_lock();
8803 dev_net(dev)->dev_unreg_count--;
8804 __rtnl_unlock();
8805 wake_up(&netdev_unregistering_wq);
8806
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07008807 /* Free network device */
8808 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008810}
8811
Jarod Wilson92566452016-02-01 18:51:04 -05008812/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
8813 * all the same fields in the same order as net_device_stats, with only
8814 * the type differing, but rtnl_link_stats64 may have additional fields
8815 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00008816 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00008817void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
8818 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00008819{
8820#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05008821 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +02008822 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05008823 /* zero out counters that only exist in rtnl_link_stats64 */
8824 memset((char *)stats64 + sizeof(*netdev_stats), 0,
8825 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008826#else
Jarod Wilson92566452016-02-01 18:51:04 -05008827 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00008828 const unsigned long *src = (const unsigned long *)netdev_stats;
8829 u64 *dst = (u64 *)stats64;
8830
Jarod Wilson92566452016-02-01 18:51:04 -05008831 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008832 for (i = 0; i < n; i++)
8833 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05008834 /* zero out counters that only exist in rtnl_link_stats64 */
8835 memset((char *)stats64 + n * sizeof(u64), 0,
8836 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00008837#endif
8838}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00008839EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00008840
Eric Dumazetd83345a2009-11-16 03:36:51 +00008841/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008842 * dev_get_stats - get network device statistics
8843 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07008844 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008845 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00008846 * Get network statistics from device. Return @storage.
8847 * The device driver may provide its own method by setting
8848 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
8849 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008850 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00008851struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
8852 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00008853{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008854 const struct net_device_ops *ops = dev->netdev_ops;
8855
Eric Dumazet28172732010-07-07 14:58:56 -07008856 if (ops->ndo_get_stats64) {
8857 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00008858 ops->ndo_get_stats64(dev, storage);
8859 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00008860 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00008861 } else {
8862 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07008863 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -07008864 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
8865 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
8866 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07008867 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07008868}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08008869EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07008870
Eric Dumazet24824a02010-10-02 06:11:55 +00008871struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07008872{
Eric Dumazet24824a02010-10-02 06:11:55 +00008873 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07008874
Eric Dumazet24824a02010-10-02 06:11:55 +00008875#ifdef CONFIG_NET_CLS_ACT
8876 if (queue)
8877 return queue;
8878 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
8879 if (!queue)
8880 return NULL;
8881 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008882 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00008883 queue->qdisc_sleeping = &noop_qdisc;
8884 rcu_assign_pointer(dev->ingress_queue, queue);
8885#endif
8886 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07008887}
8888
Eric Dumazet2c60db02012-09-16 09:17:26 +00008889static const struct ethtool_ops default_ethtool_ops;
8890
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00008891void netdev_set_default_ethtool_ops(struct net_device *dev,
8892 const struct ethtool_ops *ops)
8893{
8894 if (dev->ethtool_ops == &default_ethtool_ops)
8895 dev->ethtool_ops = ops;
8896}
8897EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
8898
Eric Dumazet74d332c2013-10-30 13:10:44 -07008899void netdev_freemem(struct net_device *dev)
8900{
8901 char *addr = (char *)dev - dev->padded;
8902
WANG Cong4cb28972014-06-02 15:55:22 -07008903 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07008904}
8905
Linus Torvalds1da177e2005-04-16 15:20:36 -07008906/**
tcharding722c9a02017-02-09 17:56:04 +11008907 * alloc_netdev_mqs - allocate network device
8908 * @sizeof_priv: size of private data to allocate space for
8909 * @name: device name format string
8910 * @name_assign_type: origin of device name
8911 * @setup: callback to initialize device
8912 * @txqs: the number of TX subqueues to allocate
8913 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914 *
tcharding722c9a02017-02-09 17:56:04 +11008915 * Allocates a struct net_device with private data area for driver use
8916 * and performs basic initialization. Also allocates subqueue structs
8917 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008918 */
Tom Herbert36909ea2011-01-09 19:36:31 +00008919struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02008920 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00008921 void (*setup)(struct net_device *),
8922 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008923{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008924 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +03008925 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008926 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008927
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07008928 BUG_ON(strlen(name) >= sizeof(dev->name));
8929
Tom Herbert36909ea2011-01-09 19:36:31 +00008930 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008931 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00008932 return NULL;
8933 }
8934
Tom Herbert36909ea2011-01-09 19:36:31 +00008935 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008936 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00008937 return NULL;
8938 }
Tom Herbert36909ea2011-01-09 19:36:31 +00008939
David S. Millerfd2ea0a2008-07-17 01:56:23 -07008940 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07008941 if (sizeof_priv) {
8942 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008943 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07008944 alloc_size += sizeof_priv;
8945 }
8946 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008947 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008948
Michal Hockodcda9b02017-07-12 14:36:45 -07008949 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +00008950 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008951 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008952
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00008953 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008954 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008955
Eric Dumazet29b44332010-10-11 10:22:12 +00008956 dev->pcpu_refcnt = alloc_percpu(int);
8957 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07008958 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00008959
Linus Torvalds1da177e2005-04-16 15:20:36 -07008960 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00008961 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962
Jiri Pirko22bedad32010-04-01 21:22:57 +00008963 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008964 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00008965
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09008966 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008967
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07008968 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00008969 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008970
Herbert Xud565b0a2008-12-15 23:38:52 -08008971 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00008972 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008973 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00008974 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008975 INIT_LIST_HEAD(&dev->adj_list.upper);
8976 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08008977 INIT_LIST_HEAD(&dev->ptype_all);
8978 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02008979#ifdef CONFIG_NET_SCHED
8980 hash_init(dev->qdisc_hash);
8981#endif
Eric Dumazet02875872014-10-05 18:38:35 -07008982 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008983 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008984
Phil Suttera8131042016-02-17 15:37:43 +01008985 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02008986 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +01008987 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +01008988 }
Phil Sutter906470c2015-08-18 10:30:48 +02008989
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008990 dev->num_tx_queues = txqs;
8991 dev->real_num_tx_queues = txqs;
8992 if (netif_alloc_netdev_queues(dev))
8993 goto free_all;
8994
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008995 dev->num_rx_queues = rxqs;
8996 dev->real_num_rx_queues = rxqs;
8997 if (netif_alloc_rx_queues(dev))
8998 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -08008999
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02009001 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00009002 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00009003 if (!dev->ethtool_ops)
9004 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02009005
9006 nf_hook_ingress_init(dev);
9007
Linus Torvalds1da177e2005-04-16 15:20:36 -07009008 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009009
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009010free_all:
9011 free_netdev(dev);
9012 return NULL;
9013
Eric Dumazet29b44332010-10-11 10:22:12 +00009014free_pcpu:
9015 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07009016free_dev:
9017 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009018 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009019}
Tom Herbert36909ea2011-01-09 19:36:31 +00009020EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009021
9022/**
tcharding722c9a02017-02-09 17:56:04 +11009023 * free_netdev - free network device
9024 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -07009025 *
tcharding722c9a02017-02-09 17:56:04 +11009026 * This function does the last stage of destroying an allocated device
9027 * interface. The reference to the device object is released. If this
9028 * is the last reference then it will be freed.Must be called in process
9029 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009030 */
9031void free_netdev(struct net_device *dev)
9032{
Herbert Xud565b0a2008-12-15 23:38:52 -08009033 struct napi_struct *p, *n;
9034
Eric Dumazet93d05d42015-11-18 06:31:03 -08009035 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07009036 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009037 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -07009038
Eric Dumazet33d480c2011-08-11 19:30:52 +00009039 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00009040
Jiri Pirkof001fde2009-05-05 02:48:28 +00009041 /* Flush device addresses */
9042 dev_addr_flush(dev);
9043
Herbert Xud565b0a2008-12-15 23:38:52 -08009044 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
9045 netif_napi_del(p);
9046
Eric Dumazet29b44332010-10-11 10:22:12 +00009047 free_percpu(dev->pcpu_refcnt);
9048 dev->pcpu_refcnt = NULL;
9049
Stephen Hemminger3041a062006-05-26 13:25:24 -07009050 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009051 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07009052 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009053 return;
9054 }
9055
9056 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
9057 dev->reg_state = NETREG_RELEASED;
9058
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07009059 /* will free via device release */
9060 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009061}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009062EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009063
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009064/**
9065 * synchronize_net - Synchronize with packet receive processing
9066 *
9067 * Wait for packets currently being received to be done.
9068 * Does not block later packets from starting.
9069 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009070void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009071{
9072 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00009073 if (rtnl_is_locked())
9074 synchronize_rcu_expedited();
9075 else
9076 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009077}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009078EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009079
9080/**
Eric Dumazet44a08732009-10-27 07:03:04 +00009081 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07009082 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00009083 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08009084 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009085 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009086 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00009087 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009088 *
9089 * Callers must hold the rtnl semaphore. You may want
9090 * unregister_netdev() instead of this.
9091 */
9092
Eric Dumazet44a08732009-10-27 07:03:04 +00009093void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009094{
Herbert Xua6620712007-12-12 19:21:56 -08009095 ASSERT_RTNL();
9096
Eric Dumazet44a08732009-10-27 07:03:04 +00009097 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009098 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00009099 } else {
9100 rollback_registered(dev);
9101 /* Finish processing unregister after unlock */
9102 net_set_todo(dev);
9103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009104}
Eric Dumazet44a08732009-10-27 07:03:04 +00009105EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009106
9107/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009108 * unregister_netdevice_many - unregister many devices
9109 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07009110 *
9111 * Note: As most callers use a stack allocated list_head,
9112 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009113 */
9114void unregister_netdevice_many(struct list_head *head)
9115{
9116 struct net_device *dev;
9117
9118 if (!list_empty(head)) {
9119 rollback_registered_many(head);
9120 list_for_each_entry(dev, head, unreg_list)
9121 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07009122 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009123 }
9124}
Eric Dumazet63c80992009-10-27 07:06:49 +00009125EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009126
9127/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128 * unregister_netdev - remove device from the kernel
9129 * @dev: device
9130 *
9131 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009132 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009133 *
9134 * This is just a wrapper for unregister_netdevice that takes
9135 * the rtnl semaphore. In general you want to use this and not
9136 * unregister_netdevice.
9137 */
9138void unregister_netdev(struct net_device *dev)
9139{
9140 rtnl_lock();
9141 unregister_netdevice(dev);
9142 rtnl_unlock();
9143}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009144EXPORT_SYMBOL(unregister_netdev);
9145
Eric W. Biedermance286d32007-09-12 13:53:49 +02009146/**
9147 * dev_change_net_namespace - move device to different nethost namespace
9148 * @dev: device
9149 * @net: network namespace
9150 * @pat: If not NULL name pattern to try if the current device name
9151 * is already taken in the destination network namespace.
9152 *
9153 * This function shuts down a device interface and moves it
9154 * to a new network namespace. On success 0 is returned, on
9155 * a failure a netagive errno code is returned.
9156 *
9157 * Callers must hold the rtnl semaphore.
9158 */
9159
9160int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
9161{
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009162 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009163
9164 ASSERT_RTNL();
9165
9166 /* Don't allow namespace local devices to be moved. */
9167 err = -EINVAL;
9168 if (dev->features & NETIF_F_NETNS_LOCAL)
9169 goto out;
9170
9171 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009172 if (dev->reg_state != NETREG_REGISTERED)
9173 goto out;
9174
9175 /* Get out if there is nothing todo */
9176 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09009177 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02009178 goto out;
9179
9180 /* Pick the destination device name, and ensure
9181 * we can use it in the destination network namespace.
9182 */
9183 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00009184 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009185 /* We get here if we can't use the current device name */
9186 if (!pat)
9187 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +08009188 err = dev_get_valid_name(net, dev, pat);
9189 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009190 goto out;
9191 }
9192
9193 /*
9194 * And now a mini version of register_netdevice unregister_netdevice.
9195 */
9196
9197 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07009198 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009199
9200 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009201 unlist_netdevice(dev);
9202
9203 synchronize_net();
9204
9205 /* Shutdown queueing discipline. */
9206 dev_shutdown(dev);
9207
9208 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009209 * this device. They should clean all the things.
9210 *
9211 * Note that dev->reg_state stays at NETREG_REGISTERED.
9212 * This is wanted because this way 8021q and macvlan know
9213 * the device is just moving and can keep their slaves up.
9214 */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009215 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00009216 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009217
Nicolas Dichtelc36ac8e2018-01-25 15:01:38 +01009218 new_nsid = peernet2id_alloc(dev_net(dev), net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009219 /* If there is an ifindex conflict assign a new one */
9220 if (__dev_get_by_index(net, dev->ifindex))
9221 new_ifindex = dev_new_index(net);
9222 else
9223 new_ifindex = dev->ifindex;
9224
9225 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
9226 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009227
9228 /*
9229 * Flush the unicast and multicast chains
9230 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009231 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009232 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009233
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009234 /* Send a netdev-removed uevent to the old namespace */
9235 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009236 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009237
Eric W. Biedermance286d32007-09-12 13:53:49 +02009238 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009239 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009240 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009241
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009242 /* Send a netdev-add uevent to the new namespace */
9243 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009244 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009245
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009246 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07009247 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009248 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009249
9250 /* Add the device back in the hashes */
9251 list_netdevice(dev);
9252
9253 /* Notify protocols, that a new device appeared. */
9254 call_netdevice_notifiers(NETDEV_REGISTER, dev);
9255
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009256 /*
9257 * Prevent userspace races by waiting until the network
9258 * device is fully setup before sending notifications.
9259 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07009260 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009261
Eric W. Biedermance286d32007-09-12 13:53:49 +02009262 synchronize_net();
9263 err = 0;
9264out:
9265 return err;
9266}
Johannes Berg463d0182009-07-14 00:33:35 +02009267EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009268
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009269static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009270{
9271 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009272 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009273 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +05309274 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009275
Linus Torvalds1da177e2005-04-16 15:20:36 -07009276 local_irq_disable();
9277 cpu = smp_processor_id();
9278 sd = &per_cpu(softnet_data, cpu);
9279 oldsd = &per_cpu(softnet_data, oldcpu);
9280
9281 /* Find end of our completion_queue. */
9282 list_skb = &sd->completion_queue;
9283 while (*list_skb)
9284 list_skb = &(*list_skb)->next;
9285 /* Append completion queue from offline CPU. */
9286 *list_skb = oldsd->completion_queue;
9287 oldsd->completion_queue = NULL;
9288
Linus Torvalds1da177e2005-04-16 15:20:36 -07009289 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00009290 if (oldsd->output_queue) {
9291 *sd->output_queue_tailp = oldsd->output_queue;
9292 sd->output_queue_tailp = oldsd->output_queue_tailp;
9293 oldsd->output_queue = NULL;
9294 oldsd->output_queue_tailp = &oldsd->output_queue;
9295 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009296 /* Append NAPI poll list from offline CPU, with one exception :
9297 * process_backlog() must be called by cpu owning percpu backlog.
9298 * We properly handle process_queue & input_pkt_queue later.
9299 */
9300 while (!list_empty(&oldsd->poll_list)) {
9301 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
9302 struct napi_struct,
9303 poll_list);
9304
9305 list_del_init(&napi->poll_list);
9306 if (napi->poll == process_backlog)
9307 napi->state = 0;
9308 else
9309 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00009310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311
9312 raise_softirq_irqoff(NET_TX_SOFTIRQ);
9313 local_irq_enable();
9314
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05309315#ifdef CONFIG_RPS
9316 remsd = oldsd->rps_ipi_list;
9317 oldsd->rps_ipi_list = NULL;
9318#endif
9319 /* send out pending IPI's on offline CPU */
9320 net_rps_send_ipi(remsd);
9321
Linus Torvalds1da177e2005-04-16 15:20:36 -07009322 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00009323 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009324 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009325 input_queue_head_incr(oldsd);
9326 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009327 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009328 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009329 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07009330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009331
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009332 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009334
Herbert Xu7f353bf2007-08-10 15:47:58 -07009335/**
Herbert Xub63365a2008-10-23 01:11:29 -07009336 * netdev_increment_features - increment feature set by one
9337 * @all: current feature set
9338 * @one: new feature set
9339 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07009340 *
9341 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07009342 * @one to the master device with current feature set @all. Will not
9343 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07009344 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009345netdev_features_t netdev_increment_features(netdev_features_t all,
9346 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07009347{
Tom Herbertc8cd0982015-12-14 11:19:44 -08009348 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08009349 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00009350 mask |= NETIF_F_VLAN_CHALLENGED;
9351
Tom Herberta1882222015-12-14 11:19:43 -08009352 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00009353 all &= one | ~NETIF_F_ALL_FOR_ALL;
9354
Michał Mirosław1742f182011-04-22 06:31:16 +00009355 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08009356 if (all & NETIF_F_HW_CSUM)
9357 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009358
9359 return all;
9360}
Herbert Xub63365a2008-10-23 01:11:29 -07009361EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009362
Baruch Siach430f03c2013-06-02 20:43:55 +00009363static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009364{
9365 int i;
9366 struct hlist_head *hash;
9367
Kees Cook6da2ec52018-06-12 13:55:00 -07009368 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009369 if (hash != NULL)
9370 for (i = 0; i < NETDEV_HASHENTRIES; i++)
9371 INIT_HLIST_HEAD(&hash[i]);
9372
9373 return hash;
9374}
9375
Eric W. Biederman881d9662007-09-17 11:56:21 -07009376/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07009377static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009378{
Li RongQingd9f37d02018-07-13 14:41:36 +08009379 BUILD_BUG_ON(GRO_HASH_BUCKETS >
David S. Millerccdb5172018-07-16 17:02:04 -07009380 8 * FIELD_SIZEOF(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +08009381
Rustad, Mark D734b6542012-07-18 09:06:07 +00009382 if (net != &init_net)
9383 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07009384
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009385 net->dev_name_head = netdev_create_hash();
9386 if (net->dev_name_head == NULL)
9387 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009388
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009389 net->dev_index_head = netdev_create_hash();
9390 if (net->dev_index_head == NULL)
9391 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009392
9393 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009394
9395err_idx:
9396 kfree(net->dev_name_head);
9397err_name:
9398 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009399}
9400
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009401/**
9402 * netdev_drivername - network driver for the device
9403 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009404 *
9405 * Determine network driver for device.
9406 */
David S. Miller3019de12011-06-06 16:41:33 -07009407const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07009408{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07009409 const struct device_driver *driver;
9410 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07009411 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07009412
9413 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009414 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07009415 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009416
9417 driver = parent->driver;
9418 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07009419 return driver->name;
9420 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009421}
9422
Joe Perches6ea754e2014-09-22 11:10:50 -07009423static void __netdev_printk(const char *level, const struct net_device *dev,
9424 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00009425{
Joe Perchesb004ff42012-09-12 20:12:19 -07009426 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009427 dev_printk_emit(level[1] - '0',
9428 dev->dev.parent,
9429 "%s %s %s%s: %pV",
9430 dev_driver_string(dev->dev.parent),
9431 dev_name(dev->dev.parent),
9432 netdev_name(dev), netdev_reg_state(dev),
9433 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009434 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009435 printk("%s%s%s: %pV",
9436 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009437 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07009438 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009439 }
Joe Perches256df2f2010-06-27 01:02:35 +00009440}
9441
Joe Perches6ea754e2014-09-22 11:10:50 -07009442void netdev_printk(const char *level, const struct net_device *dev,
9443 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00009444{
9445 struct va_format vaf;
9446 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00009447
9448 va_start(args, format);
9449
9450 vaf.fmt = format;
9451 vaf.va = &args;
9452
Joe Perches6ea754e2014-09-22 11:10:50 -07009453 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009454
Joe Perches256df2f2010-06-27 01:02:35 +00009455 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00009456}
9457EXPORT_SYMBOL(netdev_printk);
9458
9459#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07009460void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00009461{ \
Joe Perches256df2f2010-06-27 01:02:35 +00009462 struct va_format vaf; \
9463 va_list args; \
9464 \
9465 va_start(args, fmt); \
9466 \
9467 vaf.fmt = fmt; \
9468 vaf.va = &args; \
9469 \
Joe Perches6ea754e2014-09-22 11:10:50 -07009470 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07009471 \
Joe Perches256df2f2010-06-27 01:02:35 +00009472 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00009473} \
9474EXPORT_SYMBOL(func);
9475
9476define_netdev_printk_level(netdev_emerg, KERN_EMERG);
9477define_netdev_printk_level(netdev_alert, KERN_ALERT);
9478define_netdev_printk_level(netdev_crit, KERN_CRIT);
9479define_netdev_printk_level(netdev_err, KERN_ERR);
9480define_netdev_printk_level(netdev_warn, KERN_WARNING);
9481define_netdev_printk_level(netdev_notice, KERN_NOTICE);
9482define_netdev_printk_level(netdev_info, KERN_INFO);
9483
Pavel Emelyanov46650792007-10-08 20:38:39 -07009484static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009485{
9486 kfree(net->dev_name_head);
9487 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +03009488 if (net != &init_net)
9489 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -07009490}
9491
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009492static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07009493 .init = netdev_init,
9494 .exit = netdev_exit,
9495};
9496
Pavel Emelyanov46650792007-10-08 20:38:39 -07009497static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009498{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009499 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009500 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009501 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02009502 * initial network namespace
9503 */
9504 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009505 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009506 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009507 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02009508
9509 /* Ignore unmoveable devices (i.e. loopback) */
9510 if (dev->features & NETIF_F_NETNS_LOCAL)
9511 continue;
9512
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009513 /* Leave virtual devices for the generic cleanup */
9514 if (dev->rtnl_link_ops)
9515 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08009516
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009517 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009518 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
9519 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009520 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009521 pr_emerg("%s: failed to move %s to init_net: %d\n",
9522 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009523 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02009524 }
9525 }
9526 rtnl_unlock();
9527}
9528
Eric W. Biederman50624c92013-09-23 21:19:49 -07009529static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
9530{
9531 /* Return with the rtnl_lock held when there are no network
9532 * devices unregistering in any network namespace in net_list.
9533 */
9534 struct net *net;
9535 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01009536 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009537
Peter Zijlstraff960a72014-10-29 17:04:56 +01009538 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009539 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07009540 unregistering = false;
9541 rtnl_lock();
9542 list_for_each_entry(net, net_list, exit_list) {
9543 if (net->dev_unreg_count > 0) {
9544 unregistering = true;
9545 break;
9546 }
9547 }
9548 if (!unregistering)
9549 break;
9550 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01009551
9552 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009553 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01009554 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009555}
9556
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009557static void __net_exit default_device_exit_batch(struct list_head *net_list)
9558{
9559 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04009560 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009561 * Do this across as many network namespaces as possible to
9562 * improve batching efficiency.
9563 */
9564 struct net_device *dev;
9565 struct net *net;
9566 LIST_HEAD(dev_kill_list);
9567
Eric W. Biederman50624c92013-09-23 21:19:49 -07009568 /* To prevent network device cleanup code from dereferencing
9569 * loopback devices or network devices that have been freed
9570 * wait here for all pending unregistrations to complete,
9571 * before unregistring the loopback device and allowing the
9572 * network namespace be freed.
9573 *
9574 * The netdev todo list containing all network devices
9575 * unregistrations that happen in default_device_exit_batch
9576 * will run in the rtnl_unlock() at the end of
9577 * default_device_exit_batch.
9578 */
9579 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009580 list_for_each_entry(net, net_list, exit_list) {
9581 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02009582 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009583 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
9584 else
9585 unregister_netdevice_queue(dev, &dev_kill_list);
9586 }
9587 }
9588 unregister_netdevice_many(&dev_kill_list);
9589 rtnl_unlock();
9590}
9591
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009592static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009593 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009594 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02009595};
9596
Linus Torvalds1da177e2005-04-16 15:20:36 -07009597/*
9598 * Initialize the DEV module. At boot time this walks the device list and
9599 * unhooks any devices that fail to initialise (normally hardware not
9600 * present) and leaves us with a valid list of present and active devices.
9601 *
9602 */
9603
9604/*
9605 * This is called single threaded during boot, so no need
9606 * to take the rtnl semaphore.
9607 */
9608static int __init net_dev_init(void)
9609{
9610 int i, rc = -ENOMEM;
9611
9612 BUG_ON(!dev_boot_phase);
9613
Linus Torvalds1da177e2005-04-16 15:20:36 -07009614 if (dev_proc_init())
9615 goto out;
9616
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009617 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07009618 goto out;
9619
9620 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08009621 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009622 INIT_LIST_HEAD(&ptype_base[i]);
9623
Vlad Yasevich62532da2012-11-15 08:49:10 +00009624 INIT_LIST_HEAD(&offload_base);
9625
Eric W. Biederman881d9662007-09-17 11:56:21 -07009626 if (register_pernet_subsys(&netdev_net_ops))
9627 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009628
9629 /*
9630 * Initialise the packet receive queues.
9631 */
9632
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07009633 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07009634 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009635 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009636
Eric Dumazet41852492016-08-26 12:50:39 -07009637 INIT_WORK(flush, flush_backlog);
9638
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009639 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07009640 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +01009641#ifdef CONFIG_XFRM_OFFLOAD
9642 skb_queue_head_init(&sd->xfrm_backlog);
9643#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009644 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00009645 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00009646#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009647 sd->csd.func = rps_trigger_softirq;
9648 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009649 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07009650#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00009651
David S. Miller7c4ec742018-07-20 23:37:55 -07009652 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009653 sd->backlog.poll = process_backlog;
9654 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009655 }
9656
Linus Torvalds1da177e2005-04-16 15:20:36 -07009657 dev_boot_phase = 0;
9658
Eric W. Biederman505d4f72008-11-07 22:54:20 -08009659 /* The loopback device is special if any other network devices
9660 * is present in a network namespace the loopback device must
9661 * be present. Since we now dynamically allocate and free the
9662 * loopback device ensure this invariant is maintained by
9663 * keeping the loopback device as the first device on the
9664 * list of network devices. Ensuring the loopback devices
9665 * is the first device that appears and the last network device
9666 * that disappears.
9667 */
9668 if (register_pernet_device(&loopback_net_ops))
9669 goto out;
9670
9671 if (register_pernet_device(&default_device_ops))
9672 goto out;
9673
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009674 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
9675 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009676
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009677 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
9678 NULL, dev_cpu_dead);
9679 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009680 rc = 0;
9681out:
9682 return rc;
9683}
9684
9685subsys_initcall(net_dev_init);