blob: b1afafee3e2acb57f732032b087d4689c090e105 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
tcharding722c9a02017-02-09 17:56:04 +11003 * NET3 Protocol independent device support routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Derived from the non IP parts of dev.c 1.0.19
tcharding722c9a02017-02-09 17:56:04 +11006 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
8 * Mark Evans, <evansmp@uhura.aston.ac.uk>
9 *
10 * Additional Authors:
11 * Florian la Roche <rzsfl@rz.uni-sb.de>
12 * Alan Cox <gw4pts@gw4pts.ampr.org>
13 * David Hinds <dahinds@users.sourceforge.net>
14 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
15 * Adam Sulmicki <adam@cfar.umd.edu>
16 * Pekka Riikonen <priikone@poesidon.pspt.fi>
17 *
18 * Changes:
19 * D.J. Barrow : Fixed bug where dev->refcnt gets set
tcharding722c9a02017-02-09 17:56:04 +110020 * to 2 if register_netdev gets called
21 * before net_dev_init & also removed a
22 * few lines of code in the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Alan Cox : device private ioctl copies fields back.
24 * Alan Cox : Transmit queue code does relevant
25 * stunts to keep the queue safe.
26 * Alan Cox : Fixed double lock.
27 * Alan Cox : Fixed promisc NULL pointer trap
28 * ???????? : Support the full private ioctl range
29 * Alan Cox : Moved ioctl permission check into
30 * drivers
31 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
32 * Alan Cox : 100 backlog just doesn't cut it when
33 * you start doing multicast video 8)
34 * Alan Cox : Rewrote net_bh and list manager.
tcharding722c9a02017-02-09 17:56:04 +110035 * Alan Cox : Fix ETH_P_ALL echoback lengths.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * Alan Cox : Took out transmit every packet pass
37 * Saved a few bytes in the ioctl handler
38 * Alan Cox : Network driver sets packet type before
39 * calling netif_rx. Saves a function
40 * call a packet.
41 * Alan Cox : Hashed net_bh()
42 * Richard Kooijman: Timestamp fixes.
43 * Alan Cox : Wrong field in SIOCGIFDSTADDR
44 * Alan Cox : Device lock protection.
tcharding722c9a02017-02-09 17:56:04 +110045 * Alan Cox : Fixed nasty side effect of device close
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * changes.
47 * Rudi Cilibrasi : Pass the right thing to
48 * set_mac_address()
49 * Dave Miller : 32bit quantity for the device lock to
50 * make it work out on a Sparc.
51 * Bjorn Ekwall : Added KERNELD hack.
52 * Alan Cox : Cleaned up the backlog initialise.
53 * Craig Metz : SIOCGIFCONF fix if space for under
54 * 1 device.
55 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
56 * is no device open function.
57 * Andi Kleen : Fix error reporting for SIOCGIFCONF
58 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
59 * Cyrus Durgin : Cleaned for KMOD
60 * Adam Sulmicki : Bug Fix : Network Device Unload
61 * A network device unload needs to purge
62 * the backlog queue.
63 * Paul Rusty Russell : SIOCSIFNAME
64 * Pekka Riikonen : Netdev boot-time settings code
65 * Andrew Morton : Make unregister_netdevice wait
tcharding722c9a02017-02-09 17:56:04 +110066 * indefinitely on dev->refcnt
67 * J Hadi Salim : - Backlog queue sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * - netif_rx() feedback
69 */
70
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080071#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080073#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/cpu.h>
75#include <linux/types.h>
76#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000077#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090078#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070080#include <linux/sched/mm.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080081#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/string.h>
83#include <linux/mm.h>
84#include <linux/socket.h>
85#include <linux/sockios.h>
86#include <linux/errno.h>
87#include <linux/interrupt.h>
88#include <linux/if_ether.h>
89#include <linux/netdevice.h>
90#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070091#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070093#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040094#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020095#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -080097#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700101#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200103#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000105#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <linux/highmem.h>
107#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#include <linux/netpoll.h>
110#include <linux/rcupdate.h>
111#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500114#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700115#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700116#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700117#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700118#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700119#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700120#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700121#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700122#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700123#include <linux/ipv6.h>
124#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700125#include <linux/jhash.h>
126#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700127#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900128#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900129#include <trace/events/skb.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700130#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000131#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100132#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300133#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700134#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100135#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400136#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800137#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200138#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530139#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200140#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200141#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200142#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100143#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100144#include <net/devlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700146#include "net-sysfs.h"
147
Herbert Xud565b0a2008-12-15 23:38:52 -0800148#define MAX_GRO_SKBS 8
149
Herbert Xu5d38a072009-01-04 16:13:40 -0800150/* This should be increased if a protocol with a bigger head is added. */
151#define GRO_MAX_HEAD (MAX_HEADER + 128)
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000154static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000155struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
156struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000157static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000159static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700160static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700161 struct netdev_notifier_info *info);
Petr Machata26372602018-12-06 17:05:45 +0000162static int call_netdevice_notifiers_extack(unsigned long val,
163 struct net_device *dev,
164 struct netlink_ext_ack *extack);
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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Poplawski723e98b2007-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 Chen93b3cff2008-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 Chen93b3cff2008-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);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001183
1184 /* Some auto-enslaved devices e.g. failover slaves are
1185 * special, as userspace might rename the device after
1186 * the interface had been brought up and running since
1187 * the point kernel initiated auto-enslavement. Allow
1188 * live name change even when these slave devices are
1189 * up and running.
1190 *
1191 * Typically, users of these auto-enslaving devices
1192 * don't actually care about slave name change, as
1193 * they are supposed to operate on master interface
1194 * directly.
1195 */
1196 if (dev->flags & IFF_UP &&
1197 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return -EBUSY;
1199
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001200 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001201
1202 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001203 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001204 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001205 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001206
Herbert Xufcc5a032007-07-30 17:03:38 -07001207 memcpy(oldname, dev->name, IFNAMSIZ);
1208
Gao feng828de4f2012-09-13 20:58:27 +00001209 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001210 if (err < 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001211 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001212 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001215 if (oldname[0] && !strchr(oldname, '%'))
1216 netdev_info(dev, "renamed from %s\n", oldname);
1217
Tom Gundersen238fa362014-07-14 16:37:23 +02001218 old_assign_type = dev->name_assign_type;
1219 dev->name_assign_type = NET_NAME_RENAMED;
1220
Herbert Xufcc5a032007-07-30 17:03:38 -07001221rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001222 ret = device_rename(&dev->dev, dev->name);
1223 if (ret) {
1224 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001225 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001226 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001227 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001228 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001229
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001230 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001231
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001232 netdev_adjacent_rename_links(dev, oldname);
1233
Herbert Xu7f988ea2007-07-30 16:35:46 -07001234 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001235 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001236 write_unlock_bh(&dev_base_lock);
1237
1238 synchronize_rcu();
1239
1240 write_lock_bh(&dev_base_lock);
1241 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001242 write_unlock_bh(&dev_base_lock);
1243
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001244 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001245 ret = notifier_to_errno(ret);
1246
1247 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001248 /* err >= 0 after dev_alloc_name() or stores the first errno */
1249 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001250 err = ret;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001251 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001252 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001253 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001254 dev->name_assign_type = old_assign_type;
1255 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001256 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001257 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001258 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001259 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001260 }
1261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263 return err;
1264}
1265
1266/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001267 * dev_set_alias - change ifalias of a device
1268 * @dev: device
1269 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001270 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001271 *
1272 * Set ifalias for a device,
1273 */
1274int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1275{
Florian Westphal6c557002017-10-02 23:50:05 +02001276 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001277
1278 if (len >= IFALIASZ)
1279 return -EINVAL;
1280
Florian Westphal6c557002017-10-02 23:50:05 +02001281 if (len) {
1282 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1283 if (!new_alias)
1284 return -ENOMEM;
1285
1286 memcpy(new_alias->ifalias, alias, len);
1287 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001288 }
1289
Florian Westphal6c557002017-10-02 23:50:05 +02001290 mutex_lock(&ifalias_mutex);
1291 rcu_swap_protected(dev->ifalias, new_alias,
1292 mutex_is_locked(&ifalias_mutex));
1293 mutex_unlock(&ifalias_mutex);
1294
1295 if (new_alias)
1296 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001297
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001298 return len;
1299}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001300EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001301
Florian Westphal6c557002017-10-02 23:50:05 +02001302/**
1303 * dev_get_alias - get ifalias of a device
1304 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001305 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001306 * @len: size of buffer
1307 *
1308 * get ifalias for a device. Caller must make sure dev cannot go
1309 * away, e.g. rcu read lock or own a reference count to device.
1310 */
1311int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1312{
1313 const struct dev_ifalias *alias;
1314 int ret = 0;
1315
1316 rcu_read_lock();
1317 alias = rcu_dereference(dev->ifalias);
1318 if (alias)
1319 ret = snprintf(name, len, "%s", alias->ifalias);
1320 rcu_read_unlock();
1321
1322 return ret;
1323}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001324
1325/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001326 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001327 * @dev: device to cause notification
1328 *
1329 * Called to indicate a device has changed features.
1330 */
1331void netdev_features_change(struct net_device *dev)
1332{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001333 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001334}
1335EXPORT_SYMBOL(netdev_features_change);
1336
1337/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 * netdev_state_change - device changes state
1339 * @dev: device to cause notification
1340 *
1341 * Called to indicate a device has changed state. This function calls
1342 * the notifier chains for netdev_chain and sends a NEWLINK message
1343 * to the routing socket.
1344 */
1345void netdev_state_change(struct net_device *dev)
1346{
1347 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001348 struct netdev_notifier_change_info change_info = {
1349 .info.dev = dev,
1350 };
Loic Prylli54951192014-07-01 21:39:43 -07001351
David Ahern51d0c0472017-10-04 17:48:45 -07001352 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001353 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001354 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001357EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Amerigo Wangee89bab2012-08-09 22:14:56 +00001359/**
tcharding722c9a02017-02-09 17:56:04 +11001360 * netdev_notify_peers - notify network peers about existence of @dev
1361 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001362 *
1363 * Generate traffic such that interested network peers are aware of
1364 * @dev, such as by generating a gratuitous ARP. This may be used when
1365 * a device wants to inform the rest of the network about some sort of
1366 * reconfiguration such as a failover event or virtual machine
1367 * migration.
1368 */
1369void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001370{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001371 rtnl_lock();
1372 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001373 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001374 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001375}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001376EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001377
Petr Machata40c900a2018-12-06 17:05:47 +00001378static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001380 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001381 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001383 ASSERT_RTNL();
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (!netif_device_present(dev))
1386 return -ENODEV;
1387
Neil Hormanca99ca12013-02-05 08:05:43 +00001388 /* Block netpoll from trying to do any rx path servicing.
1389 * If we don't do this there is a chance ndo_poll_controller
1390 * or ndo_poll may be running while we open the device
1391 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001392 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001393
Petr Machata40c900a2018-12-06 17:05:47 +00001394 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001395 ret = notifier_to_errno(ret);
1396 if (ret)
1397 return ret;
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001400
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001401 if (ops->ndo_validate_addr)
1402 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001403
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001404 if (!ret && ops->ndo_open)
1405 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Eric W. Biederman66b55522014-03-27 15:39:03 -07001407 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001408
Jeff Garzikbada3392007-10-23 20:19:37 -07001409 if (ret)
1410 clear_bit(__LINK_STATE_START, &dev->state);
1411 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001413 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001415 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 return ret;
1419}
Patrick McHardybd380812010-02-26 06:34:53 +00001420
1421/**
1422 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001423 * @dev: device to open
1424 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001425 *
1426 * Takes a device from down to up state. The device's private open
1427 * function is invoked and then the multicast lists are loaded. Finally
1428 * the device is moved into the up state and a %NETDEV_UP message is
1429 * sent to the netdev notifier chain.
1430 *
1431 * Calling this function on an active interface is a nop. On a failure
1432 * a negative errno code is returned.
1433 */
Petr Machata00f54e62018-12-06 17:05:36 +00001434int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001435{
1436 int ret;
1437
Patrick McHardybd380812010-02-26 06:34:53 +00001438 if (dev->flags & IFF_UP)
1439 return 0;
1440
Petr Machata40c900a2018-12-06 17:05:47 +00001441 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001442 if (ret < 0)
1443 return ret;
1444
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001445 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001446 call_netdevice_notifiers(NETDEV_UP, dev);
1447
1448 return ret;
1449}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001450EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
stephen hemminger7051b882017-07-18 15:59:27 -07001452static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Octavian Purdila44345722010-12-13 12:44:07 +00001454 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001455
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001456 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001457 might_sleep();
1458
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001459 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001460 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001461 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001462
Octavian Purdila44345722010-12-13 12:44:07 +00001463 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Octavian Purdila44345722010-12-13 12:44:07 +00001465 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Octavian Purdila44345722010-12-13 12:44:07 +00001467 /* Synchronize to scheduled poll. We cannot touch poll list, it
1468 * can be even on different cpu. So just clear netif_running().
1469 *
1470 * dev->stop() will invoke napi_disable() on all of it's
1471 * napi_struct instances on this device.
1472 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001473 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Octavian Purdila44345722010-12-13 12:44:07 +00001476 dev_deactivate_many(head);
1477
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001478 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001479 const struct net_device_ops *ops = dev->netdev_ops;
1480
1481 /*
1482 * Call the device specific close. This cannot fail.
1483 * Only if device is UP
1484 *
1485 * We allow it to be called even after a DETACH hot-plug
1486 * event.
1487 */
1488 if (ops->ndo_stop)
1489 ops->ndo_stop(dev);
1490
Octavian Purdila44345722010-12-13 12:44:07 +00001491 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001492 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001493 }
Octavian Purdila44345722010-12-13 12:44:07 +00001494}
1495
stephen hemminger7051b882017-07-18 15:59:27 -07001496static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001497{
1498 LIST_HEAD(single);
1499
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001500 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001501 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001502 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001503}
1504
stephen hemminger7051b882017-07-18 15:59:27 -07001505void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001506{
1507 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001508
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001509 /* Remove the devices that don't need to be closed */
1510 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001511 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001512 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001513
1514 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001515
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001516 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001517 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001518 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001519 if (unlink)
1520 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
David S. Miller99c4a262015-03-18 22:52:33 -04001523EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001524
1525/**
1526 * dev_close - shutdown an interface.
1527 * @dev: device to shutdown
1528 *
1529 * This function moves an active device into down state. A
1530 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1531 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1532 * chain.
1533 */
stephen hemminger7051b882017-07-18 15:59:27 -07001534void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001535{
Eric Dumazete14a5992011-05-10 12:26:06 -07001536 if (dev->flags & IFF_UP) {
1537 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001538
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001539 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001540 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001541 list_del(&single);
1542 }
Patrick McHardybd380812010-02-26 06:34:53 +00001543}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001544EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001547/**
1548 * dev_disable_lro - disable Large Receive Offload on a device
1549 * @dev: device
1550 *
1551 * Disable Large Receive Offload (LRO) on a net device. Must be
1552 * called under RTNL. This is needed if received packets may be
1553 * forwarded to another interface.
1554 */
1555void dev_disable_lro(struct net_device *dev)
1556{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001557 struct net_device *lower_dev;
1558 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001559
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001560 dev->wanted_features &= ~NETIF_F_LRO;
1561 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001562
Michał Mirosław22d59692011-04-21 12:42:15 +00001563 if (unlikely(dev->features & NETIF_F_LRO))
1564 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001565
1566 netdev_for_each_lower_dev(dev, lower_dev, iter)
1567 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001568}
1569EXPORT_SYMBOL(dev_disable_lro);
1570
Michael Chan56f5aa72017-12-16 03:09:41 -05001571/**
1572 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1573 * @dev: device
1574 *
1575 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1576 * called under RTNL. This is needed if Generic XDP is installed on
1577 * the device.
1578 */
1579static void dev_disable_gro_hw(struct net_device *dev)
1580{
1581 dev->wanted_features &= ~NETIF_F_GRO_HW;
1582 netdev_update_features(dev);
1583
1584 if (unlikely(dev->features & NETIF_F_GRO_HW))
1585 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1586}
1587
Kirill Tkhaiede27622018-03-23 19:47:19 +03001588const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1589{
1590#define N(val) \
1591 case NETDEV_##val: \
1592 return "NETDEV_" __stringify(val);
1593 switch (cmd) {
1594 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1595 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1596 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1597 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1598 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1599 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1600 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001601 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1602 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001603 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001604 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001605#undef N
1606 return "UNKNOWN_NETDEV_EVENT";
1607}
1608EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1609
Jiri Pirko351638e2013-05-28 01:30:21 +00001610static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1611 struct net_device *dev)
1612{
David Ahern51d0c0472017-10-04 17:48:45 -07001613 struct netdev_notifier_info info = {
1614 .dev = dev,
1615 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001616
Jiri Pirko351638e2013-05-28 01:30:21 +00001617 return nb->notifier_call(nb, val, &info);
1618}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001619
Eric W. Biederman881d9662007-09-17 11:56:21 -07001620static int dev_boot_phase = 1;
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622/**
tcharding722c9a02017-02-09 17:56:04 +11001623 * register_netdevice_notifier - register a network notifier block
1624 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 *
tcharding722c9a02017-02-09 17:56:04 +11001626 * Register a notifier to be called when network device events occur.
1627 * The notifier passed is linked into the kernel structures and must
1628 * not be reused until it has been unregistered. A negative errno code
1629 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 *
tcharding722c9a02017-02-09 17:56:04 +11001631 * When registered all registration and up events are replayed
1632 * to the new notifier to allow device to have a race free
1633 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 */
1635
1636int register_netdevice_notifier(struct notifier_block *nb)
1637{
1638 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001639 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001640 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 int err;
1642
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001643 /* Close race with setup_net() and cleanup_net() */
1644 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001646 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001647 if (err)
1648 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001649 if (dev_boot_phase)
1650 goto unlock;
1651 for_each_net(net) {
1652 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001653 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001654 err = notifier_to_errno(err);
1655 if (err)
1656 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Eric W. Biederman881d9662007-09-17 11:56:21 -07001658 if (!(dev->flags & IFF_UP))
1659 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001660
Jiri Pirko351638e2013-05-28 01:30:21 +00001661 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001664
1665unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001667 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001669
1670rollback:
1671 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001672 for_each_net(net) {
1673 for_each_netdev(net, dev) {
1674 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001675 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001676
Eric W. Biederman881d9662007-09-17 11:56:21 -07001677 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001678 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1679 dev);
1680 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001681 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001682 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001683 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001684 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001685
RongQing.Li8f891482011-11-30 23:43:07 -05001686outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001687 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001688 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001690EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692/**
tcharding722c9a02017-02-09 17:56:04 +11001693 * unregister_netdevice_notifier - unregister a network notifier block
1694 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 *
tcharding722c9a02017-02-09 17:56:04 +11001696 * Unregister a notifier previously registered by
1697 * register_netdevice_notifier(). The notifier is unlinked into the
1698 * kernel structures and may then be reused. A negative errno code
1699 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001700 *
tcharding722c9a02017-02-09 17:56:04 +11001701 * After unregistering unregister and down device events are synthesized
1702 * for all devices on the device list to the removed notifier to remove
1703 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 */
1705
1706int unregister_netdevice_notifier(struct notifier_block *nb)
1707{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001708 struct net_device *dev;
1709 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001710 int err;
1711
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001712 /* Close race with setup_net() and cleanup_net() */
1713 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001714 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001715 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001716 if (err)
1717 goto unlock;
1718
1719 for_each_net(net) {
1720 for_each_netdev(net, dev) {
1721 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001722 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1723 dev);
1724 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001725 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001726 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001727 }
1728 }
1729unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001730 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001731 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001732 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001734EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001737 * call_netdevice_notifiers_info - call all network notifier blocks
1738 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00001739 * @info: notifier information data
1740 *
1741 * Call all network notifier blocks. Parameters and return value
1742 * are as for raw_notifier_call_chain().
1743 */
1744
stephen hemminger1d143d92013-12-29 14:01:29 -08001745static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08001746 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001747{
1748 ASSERT_RTNL();
Jiri Pirko351638e2013-05-28 01:30:21 +00001749 return raw_notifier_call_chain(&netdev_chain, val, info);
1750}
Jiri Pirko351638e2013-05-28 01:30:21 +00001751
Petr Machata26372602018-12-06 17:05:45 +00001752static int call_netdevice_notifiers_extack(unsigned long val,
1753 struct net_device *dev,
1754 struct netlink_ext_ack *extack)
1755{
1756 struct netdev_notifier_info info = {
1757 .dev = dev,
1758 .extack = extack,
1759 };
1760
1761 return call_netdevice_notifiers_info(val, &info);
1762}
1763
Jiri Pirko351638e2013-05-28 01:30:21 +00001764/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 * call_netdevice_notifiers - call all network notifier blocks
1766 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001767 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 *
1769 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001770 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 */
1772
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001773int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Petr Machata26372602018-12-06 17:05:45 +00001775 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001777EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001779/**
1780 * call_netdevice_notifiers_mtu - call all network notifier blocks
1781 * @val: value passed unmodified to notifier function
1782 * @dev: net_device pointer passed unmodified to notifier function
1783 * @arg: additional u32 argument passed to the notifier function
1784 *
1785 * Call all network notifier blocks. Parameters and return value
1786 * are as for raw_notifier_call_chain().
1787 */
1788static int call_netdevice_notifiers_mtu(unsigned long val,
1789 struct net_device *dev, u32 arg)
1790{
1791 struct netdev_notifier_info_ext info = {
1792 .info.dev = dev,
1793 .ext.mtu = arg,
1794 };
1795
1796 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
1797
1798 return call_netdevice_notifiers_info(val, &info.info);
1799}
1800
Pablo Neira1cf519002015-05-13 18:19:37 +02001801#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001802static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001803
1804void net_inc_ingress_queue(void)
1805{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001806 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001807}
1808EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1809
1810void net_dec_ingress_queue(void)
1811{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001812 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001813}
1814EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1815#endif
1816
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001817#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001818static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001819
1820void net_inc_egress_queue(void)
1821{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001822 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001823}
1824EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1825
1826void net_dec_egress_queue(void)
1827{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001828 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001829}
1830EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1831#endif
1832
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001833static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09001834#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001835static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08001836static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001837static void netstamp_clear(struct work_struct *work)
1838{
1839 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08001840 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001841
Eric Dumazet13baa002017-03-01 14:28:39 -08001842 wanted = atomic_add_return(deferred, &netstamp_wanted);
1843 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001844 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001845 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001846 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001847}
1848static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001849#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851void net_enable_timestamp(void)
1852{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09001853#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08001854 int wanted;
1855
1856 while (1) {
1857 wanted = atomic_read(&netstamp_wanted);
1858 if (wanted <= 0)
1859 break;
1860 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1861 return;
1862 }
1863 atomic_inc(&netstamp_needed_deferred);
1864 schedule_work(&netstamp_work);
1865#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001866 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001867#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001869EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871void net_disable_timestamp(void)
1872{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09001873#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08001874 int wanted;
1875
1876 while (1) {
1877 wanted = atomic_read(&netstamp_wanted);
1878 if (wanted <= 1)
1879 break;
1880 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1881 return;
1882 }
1883 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001884 schedule_work(&netstamp_work);
1885#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001886 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001889EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Eric Dumazet3b098e22010-05-15 23:57:10 -07001891static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Thomas Gleixner2456e852016-12-25 11:38:40 +01001893 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001894 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001895 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896}
1897
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001898#define net_timestamp_check(COND, SKB) \
1899 if (static_branch_unlikely(&netstamp_needed_key)) { \
1900 if ((COND) && !(SKB)->tstamp) \
1901 __net_timestamp(SKB); \
1902 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001903
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001904bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001905{
1906 unsigned int len;
1907
1908 if (!(dev->flags & IFF_UP))
1909 return false;
1910
1911 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1912 if (skb->len <= len)
1913 return true;
1914
1915 /* if TSO is enabled, we don't care about the length as the packet
1916 * could be forwarded without being segmented before
1917 */
1918 if (skb_is_gso(skb))
1919 return true;
1920
1921 return false;
1922}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001923EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001924
Herbert Xua0265d22014-04-17 13:45:03 +08001925int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1926{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001927 int ret = ____dev_forward_skb(dev, skb);
1928
1929 if (likely(!ret)) {
1930 skb->protocol = eth_type_trans(skb, dev);
1931 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001932 }
1933
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001934 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001935}
1936EXPORT_SYMBOL_GPL(__dev_forward_skb);
1937
Arnd Bergmann44540962009-11-26 06:07:08 +00001938/**
1939 * dev_forward_skb - loopback an skb to another netif
1940 *
1941 * @dev: destination network device
1942 * @skb: buffer to forward
1943 *
1944 * return values:
1945 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001946 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001947 *
1948 * dev_forward_skb can be used for injecting an skb from the
1949 * start_xmit function of one device into the receive queue
1950 * of another device.
1951 *
1952 * The receiving device may be in another namespace, so
1953 * we have to clear all information in the skb that could
1954 * impact namespace isolation.
1955 */
1956int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1957{
Herbert Xua0265d22014-04-17 13:45:03 +08001958 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001959}
1960EXPORT_SYMBOL_GPL(dev_forward_skb);
1961
Changli Gao71d9dec2010-12-15 19:57:25 +00001962static inline int deliver_skb(struct sk_buff *skb,
1963 struct packet_type *pt_prev,
1964 struct net_device *orig_dev)
1965{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001966 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001967 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03001968 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00001969 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1970}
1971
Salam Noureddine7866a622015-01-27 11:35:48 -08001972static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1973 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001974 struct net_device *orig_dev,
1975 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001976 struct list_head *ptype_list)
1977{
1978 struct packet_type *ptype, *pt_prev = *pt;
1979
1980 list_for_each_entry_rcu(ptype, ptype_list, list) {
1981 if (ptype->type != type)
1982 continue;
1983 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001984 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001985 pt_prev = ptype;
1986 }
1987 *pt = pt_prev;
1988}
1989
Eric Leblondc0de08d2012-08-16 22:02:58 +00001990static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1991{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001992 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001993 return false;
1994
1995 if (ptype->id_match)
1996 return ptype->id_match(ptype, skb->sk);
1997 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1998 return true;
1999
2000 return false;
2001}
2002
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002003/**
2004 * dev_nit_active - return true if any network interface taps are in use
2005 *
2006 * @dev: network device to check for the presence of taps
2007 */
2008bool dev_nit_active(struct net_device *dev)
2009{
2010 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2011}
2012EXPORT_SYMBOL_GPL(dev_nit_active);
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014/*
2015 * Support routine. Sends outgoing frames to any network
2016 * taps currently in use.
2017 */
2018
David Ahern74b20582016-05-10 11:19:50 -07002019void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
2021 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002022 struct sk_buff *skb2 = NULL;
2023 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002024 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002027again:
2028 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002029 if (ptype->ignore_outgoing)
2030 continue;
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /* Never send packets back to the socket
2033 * they originated from - MvS (miquels@drinkel.ow.org)
2034 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002035 if (skb_loop_sk(ptype, skb))
2036 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002037
Salam Noureddine7866a622015-01-27 11:35:48 -08002038 if (pt_prev) {
2039 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002040 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002041 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002043
2044 /* need to clone skb, done only once */
2045 skb2 = skb_clone(skb, GFP_ATOMIC);
2046 if (!skb2)
2047 goto out_unlock;
2048
2049 net_timestamp_set(skb2);
2050
2051 /* skb->nh should be correctly
2052 * set by sender, so that the second statement is
2053 * just protection against buggy protocols.
2054 */
2055 skb_reset_mac_header(skb2);
2056
2057 if (skb_network_header(skb2) < skb2->data ||
2058 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2059 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2060 ntohs(skb2->protocol),
2061 dev->name);
2062 skb_reset_network_header(skb2);
2063 }
2064
2065 skb2->transport_header = skb2->network_header;
2066 skb2->pkt_type = PACKET_OUTGOING;
2067 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002069
2070 if (ptype_list == &ptype_all) {
2071 ptype_list = &dev->ptype_all;
2072 goto again;
2073 }
2074out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002075 if (pt_prev) {
2076 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2077 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2078 else
2079 kfree_skb(skb2);
2080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 rcu_read_unlock();
2082}
David Ahern74b20582016-05-10 11:19:50 -07002083EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Ben Hutchings2c530402012-07-10 10:55:09 +00002085/**
2086 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002087 * @dev: Network device
2088 * @txq: number of queues available
2089 *
2090 * If real_num_tx_queues is changed the tc mappings may no longer be
2091 * valid. To resolve this verify the tc mapping remains valid and if
2092 * not NULL the mapping. With no priorities mapping to this
2093 * offset/count pair it will no longer be used. In the worst case TC0
2094 * is invalid nothing can be done so disable priority mappings. If is
2095 * expected that drivers will fix this mapping if they can before
2096 * calling netif_set_real_num_tx_queues.
2097 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002098static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002099{
2100 int i;
2101 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2102
2103 /* If TC0 is invalidated disable TC mapping */
2104 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002105 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002106 dev->num_tc = 0;
2107 return;
2108 }
2109
2110 /* Invalidated prio to tc mappings set to TC0 */
2111 for (i = 1; i < TC_BITMASK + 1; i++) {
2112 int q = netdev_get_prio_tc_map(dev, i);
2113
2114 tc = &dev->tc_to_txq[q];
2115 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002116 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2117 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002118 netdev_set_prio_tc_map(dev, i, 0);
2119 }
2120 }
2121}
2122
Alexander Duyck8d059b02016-10-28 11:43:49 -04002123int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2124{
2125 if (dev->num_tc) {
2126 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2127 int i;
2128
Alexander Duyckffcfe252018-07-09 12:19:38 -04002129 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002130 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2131 if ((txq - tc->offset) < tc->count)
2132 return i;
2133 }
2134
Alexander Duyckffcfe252018-07-09 12:19:38 -04002135 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002136 return -1;
2137 }
2138
2139 return 0;
2140}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002141EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002142
Alexander Duyck537c00d2013-01-10 08:57:02 +00002143#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002144struct static_key xps_needed __read_mostly;
2145EXPORT_SYMBOL(xps_needed);
2146struct static_key xps_rxqs_needed __read_mostly;
2147EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002148static DEFINE_MUTEX(xps_map_mutex);
2149#define xmap_dereference(P) \
2150 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2151
Alexander Duyck6234f872016-10-28 11:46:49 -04002152static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2153 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002154{
2155 struct xps_map *map = NULL;
2156 int pos;
2157
2158 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002159 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002160 if (!map)
2161 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002162
Alexander Duyck6234f872016-10-28 11:46:49 -04002163 for (pos = map->len; pos--;) {
2164 if (map->queues[pos] != index)
2165 continue;
2166
2167 if (map->len > 1) {
2168 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002169 break;
2170 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002171
Amritha Nambiar80d19662018-06-29 21:26:41 -07002172 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002173 kfree_rcu(map, rcu);
2174 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002175 }
2176
Alexander Duyck6234f872016-10-28 11:46:49 -04002177 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002178}
2179
Alexander Duyck6234f872016-10-28 11:46:49 -04002180static bool remove_xps_queue_cpu(struct net_device *dev,
2181 struct xps_dev_maps *dev_maps,
2182 int cpu, u16 offset, u16 count)
2183{
Alexander Duyck184c4492016-10-28 11:50:13 -04002184 int num_tc = dev->num_tc ? : 1;
2185 bool active = false;
2186 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002187
Alexander Duyck184c4492016-10-28 11:50:13 -04002188 for (tci = cpu * num_tc; num_tc--; tci++) {
2189 int i, j;
2190
2191 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002192 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002193 break;
2194 }
2195
2196 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002197 }
2198
Alexander Duyck184c4492016-10-28 11:50:13 -04002199 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002200}
2201
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002202static void reset_xps_maps(struct net_device *dev,
2203 struct xps_dev_maps *dev_maps,
2204 bool is_rxqs_map)
2205{
2206 if (is_rxqs_map) {
2207 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2208 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2209 } else {
2210 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2211 }
2212 static_key_slow_dec_cpuslocked(&xps_needed);
2213 kfree_rcu(dev_maps, rcu);
2214}
2215
Amritha Nambiar80d19662018-06-29 21:26:41 -07002216static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2217 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2218 u16 offset, u16 count, bool is_rxqs_map)
2219{
2220 bool active = false;
2221 int i, j;
2222
2223 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2224 j < nr_ids;)
2225 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2226 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002227 if (!active)
2228 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002229
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002230 if (!is_rxqs_map) {
2231 for (i = offset + (count - 1); count--; i--) {
2232 netdev_queue_numa_node_write(
2233 netdev_get_tx_queue(dev, i),
2234 NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002235 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002236 }
2237}
2238
Alexander Duyck6234f872016-10-28 11:46:49 -04002239static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2240 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002241{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002242 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002243 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002244 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002245
Amritha Nambiar04157462018-06-29 21:26:46 -07002246 if (!static_key_false(&xps_needed))
2247 return;
2248
Andrei Vagin4d99f662018-08-08 20:07:35 -07002249 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002250 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002251
Amritha Nambiar04157462018-06-29 21:26:46 -07002252 if (static_key_false(&xps_rxqs_needed)) {
2253 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2254 if (dev_maps) {
2255 nr_ids = dev->num_rx_queues;
2256 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2257 offset, count, true);
2258 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002259 }
2260
2261 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002262 if (!dev_maps)
2263 goto out_no_maps;
2264
Amritha Nambiar80d19662018-06-29 21:26:41 -07002265 if (num_possible_cpus() > 1)
2266 possible_mask = cpumask_bits(cpu_possible_mask);
2267 nr_ids = nr_cpu_ids;
2268 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2269 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002270
Alexander Duyck537c00d2013-01-10 08:57:02 +00002271out_no_maps:
2272 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002273 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002274}
2275
Alexander Duyck6234f872016-10-28 11:46:49 -04002276static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2277{
2278 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2279}
2280
Amritha Nambiar80d19662018-06-29 21:26:41 -07002281static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2282 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002283{
2284 struct xps_map *new_map;
2285 int alloc_len = XPS_MIN_MAP_ALLOC;
2286 int i, pos;
2287
2288 for (pos = 0; map && pos < map->len; pos++) {
2289 if (map->queues[pos] != index)
2290 continue;
2291 return map;
2292 }
2293
Amritha Nambiar80d19662018-06-29 21:26:41 -07002294 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002295 if (map) {
2296 if (pos < map->alloc_len)
2297 return map;
2298
2299 alloc_len = map->alloc_len * 2;
2300 }
2301
Amritha Nambiar80d19662018-06-29 21:26:41 -07002302 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2303 * map
2304 */
2305 if (is_rxqs_map)
2306 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2307 else
2308 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2309 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002310 if (!new_map)
2311 return NULL;
2312
2313 for (i = 0; i < pos; i++)
2314 new_map->queues[i] = map->queues[i];
2315 new_map->alloc_len = alloc_len;
2316 new_map->len = pos;
2317
2318 return new_map;
2319}
2320
Andrei Vagin4d99f662018-08-08 20:07:35 -07002321/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002322int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2323 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002324{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002325 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002326 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002327 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002328 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002329 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002330 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002331 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002332
Alexander Duyck184c4492016-10-28 11:50:13 -04002333 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002334 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002335 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002336 if (num_tc < 0)
2337 return -EINVAL;
2338
2339 /* If queue belongs to subordinate dev use its map */
2340 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2341
Alexander Duyck184c4492016-10-28 11:50:13 -04002342 tc = netdev_txq_to_tc(dev, index);
2343 if (tc < 0)
2344 return -EINVAL;
2345 }
2346
Amritha Nambiar80d19662018-06-29 21:26:41 -07002347 mutex_lock(&xps_map_mutex);
2348 if (is_rxqs_map) {
2349 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2350 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2351 nr_ids = dev->num_rx_queues;
2352 } else {
2353 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2354 if (num_possible_cpus() > 1) {
2355 online_mask = cpumask_bits(cpu_online_mask);
2356 possible_mask = cpumask_bits(cpu_possible_mask);
2357 }
2358 dev_maps = xmap_dereference(dev->xps_cpus_map);
2359 nr_ids = nr_cpu_ids;
2360 }
2361
Alexander Duyck184c4492016-10-28 11:50:13 -04002362 if (maps_sz < L1_CACHE_BYTES)
2363 maps_sz = L1_CACHE_BYTES;
2364
Alexander Duyck01c5f862013-01-10 08:57:35 +00002365 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002366 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2367 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002368 if (!new_dev_maps)
2369 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002370 if (!new_dev_maps) {
2371 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002372 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002373 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002374
Amritha Nambiar80d19662018-06-29 21:26:41 -07002375 tci = j * num_tc + tc;
2376 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002377 NULL;
2378
Amritha Nambiar80d19662018-06-29 21:26:41 -07002379 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002380 if (!map)
2381 goto error;
2382
Amritha Nambiar80d19662018-06-29 21:26:41 -07002383 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002384 }
2385
2386 if (!new_dev_maps)
2387 goto out_no_new_maps;
2388
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002389 if (!dev_maps) {
2390 /* Increment static keys at most once per type */
2391 static_key_slow_inc_cpuslocked(&xps_needed);
2392 if (is_rxqs_map)
2393 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2394 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002395
Amritha Nambiar80d19662018-06-29 21:26:41 -07002396 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2397 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002398 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002399 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002400 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002401 map = xmap_dereference(dev_maps->attr_map[tci]);
2402 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002403 }
2404
2405 /* We need to explicitly update tci as prevous loop
2406 * could break out early if dev_maps is NULL.
2407 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002408 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002409
Amritha Nambiar80d19662018-06-29 21:26:41 -07002410 if (netif_attr_test_mask(j, mask, nr_ids) &&
2411 netif_attr_test_online(j, online_mask, nr_ids)) {
2412 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002413 int pos = 0;
2414
Amritha Nambiar80d19662018-06-29 21:26:41 -07002415 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002416 while ((pos < map->len) && (map->queues[pos] != index))
2417 pos++;
2418
2419 if (pos == map->len)
2420 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002421#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002422 if (!is_rxqs_map) {
2423 if (numa_node_id == -2)
2424 numa_node_id = cpu_to_node(j);
2425 else if (numa_node_id != cpu_to_node(j))
2426 numa_node_id = -1;
2427 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002428#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002429 } else if (dev_maps) {
2430 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002431 map = xmap_dereference(dev_maps->attr_map[tci]);
2432 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002433 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002434
Alexander Duyck184c4492016-10-28 11:50:13 -04002435 /* copy maps belonging to foreign traffic classes */
2436 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2437 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002438 map = xmap_dereference(dev_maps->attr_map[tci]);
2439 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002440 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002441 }
2442
Amritha Nambiar80d19662018-06-29 21:26:41 -07002443 if (is_rxqs_map)
2444 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2445 else
2446 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002447
Alexander Duyck537c00d2013-01-10 08:57:02 +00002448 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002449 if (!dev_maps)
2450 goto out_no_old_maps;
2451
Amritha Nambiar80d19662018-06-29 21:26:41 -07002452 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2453 j < nr_ids;) {
2454 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2455 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2456 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002457 if (map && map != new_map)
2458 kfree_rcu(map, rcu);
2459 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002460 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002461
Alexander Duyck184c4492016-10-28 11:50:13 -04002462 kfree_rcu(dev_maps, rcu);
2463
2464out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002465 dev_maps = new_dev_maps;
2466 active = true;
2467
2468out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002469 if (!is_rxqs_map) {
2470 /* update Tx queue numa node */
2471 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2472 (numa_node_id >= 0) ?
2473 numa_node_id : NUMA_NO_NODE);
2474 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002475
Alexander Duyck01c5f862013-01-10 08:57:35 +00002476 if (!dev_maps)
2477 goto out_no_maps;
2478
Amritha Nambiar80d19662018-06-29 21:26:41 -07002479 /* removes tx-queue from unused CPUs/rx-queues */
2480 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2481 j < nr_ids;) {
2482 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002483 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002484 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2485 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002486 active |= remove_xps_queue(dev_maps, tci, index);
2487 for (i = num_tc - tc, tci++; --i; tci++)
2488 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002489 }
2490
2491 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002492 if (!active)
2493 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002494
2495out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002496 mutex_unlock(&xps_map_mutex);
2497
2498 return 0;
2499error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002500 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002501 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2502 j < nr_ids;) {
2503 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2504 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002505 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002506 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002507 NULL;
2508 if (new_map && new_map != map)
2509 kfree(new_map);
2510 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002511 }
2512
Alexander Duyck537c00d2013-01-10 08:57:02 +00002513 mutex_unlock(&xps_map_mutex);
2514
Alexander Duyck537c00d2013-01-10 08:57:02 +00002515 kfree(new_dev_maps);
2516 return -ENOMEM;
2517}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002518EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002519
2520int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2521 u16 index)
2522{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002523 int ret;
2524
2525 cpus_read_lock();
2526 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2527 cpus_read_unlock();
2528
2529 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002530}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002531EXPORT_SYMBOL(netif_set_xps_queue);
2532
2533#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002534static void netdev_unbind_all_sb_channels(struct net_device *dev)
2535{
2536 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2537
2538 /* Unbind any subordinate channels */
2539 while (txq-- != &dev->_tx[0]) {
2540 if (txq->sb_dev)
2541 netdev_unbind_sb_channel(dev, txq->sb_dev);
2542 }
2543}
2544
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002545void netdev_reset_tc(struct net_device *dev)
2546{
Alexander Duyck6234f872016-10-28 11:46:49 -04002547#ifdef CONFIG_XPS
2548 netif_reset_xps_queues_gt(dev, 0);
2549#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002550 netdev_unbind_all_sb_channels(dev);
2551
2552 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002553 dev->num_tc = 0;
2554 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2555 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2556}
2557EXPORT_SYMBOL(netdev_reset_tc);
2558
2559int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2560{
2561 if (tc >= dev->num_tc)
2562 return -EINVAL;
2563
Alexander Duyck6234f872016-10-28 11:46:49 -04002564#ifdef CONFIG_XPS
2565 netif_reset_xps_queues(dev, offset, count);
2566#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002567 dev->tc_to_txq[tc].count = count;
2568 dev->tc_to_txq[tc].offset = offset;
2569 return 0;
2570}
2571EXPORT_SYMBOL(netdev_set_tc_queue);
2572
2573int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2574{
2575 if (num_tc > TC_MAX_QUEUE)
2576 return -EINVAL;
2577
Alexander Duyck6234f872016-10-28 11:46:49 -04002578#ifdef CONFIG_XPS
2579 netif_reset_xps_queues_gt(dev, 0);
2580#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002581 netdev_unbind_all_sb_channels(dev);
2582
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002583 dev->num_tc = num_tc;
2584 return 0;
2585}
2586EXPORT_SYMBOL(netdev_set_num_tc);
2587
Alexander Duyckffcfe252018-07-09 12:19:38 -04002588void netdev_unbind_sb_channel(struct net_device *dev,
2589 struct net_device *sb_dev)
2590{
2591 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2592
2593#ifdef CONFIG_XPS
2594 netif_reset_xps_queues_gt(sb_dev, 0);
2595#endif
2596 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2597 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2598
2599 while (txq-- != &dev->_tx[0]) {
2600 if (txq->sb_dev == sb_dev)
2601 txq->sb_dev = NULL;
2602 }
2603}
2604EXPORT_SYMBOL(netdev_unbind_sb_channel);
2605
2606int netdev_bind_sb_channel_queue(struct net_device *dev,
2607 struct net_device *sb_dev,
2608 u8 tc, u16 count, u16 offset)
2609{
2610 /* Make certain the sb_dev and dev are already configured */
2611 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2612 return -EINVAL;
2613
2614 /* We cannot hand out queues we don't have */
2615 if ((offset + count) > dev->real_num_tx_queues)
2616 return -EINVAL;
2617
2618 /* Record the mapping */
2619 sb_dev->tc_to_txq[tc].count = count;
2620 sb_dev->tc_to_txq[tc].offset = offset;
2621
2622 /* Provide a way for Tx queue to find the tc_to_txq map or
2623 * XPS map for itself.
2624 */
2625 while (count--)
2626 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2627
2628 return 0;
2629}
2630EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2631
2632int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2633{
2634 /* Do not use a multiqueue device to represent a subordinate channel */
2635 if (netif_is_multiqueue(dev))
2636 return -ENODEV;
2637
2638 /* We allow channels 1 - 32767 to be used for subordinate channels.
2639 * Channel 0 is meant to be "native" mode and used only to represent
2640 * the main root device. We allow writing 0 to reset the device back
2641 * to normal mode after being used as a subordinate channel.
2642 */
2643 if (channel > S16_MAX)
2644 return -EINVAL;
2645
2646 dev->num_tc = -channel;
2647
2648 return 0;
2649}
2650EXPORT_SYMBOL(netdev_set_sb_channel);
2651
John Fastabendf0796d52010-07-01 13:21:57 +00002652/*
2653 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002654 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002655 */
Tom Herberte6484932010-10-18 18:04:39 +00002656int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002657{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002658 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002659 int rc;
2660
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002661 disabling = txq < dev->real_num_tx_queues;
2662
Tom Herberte6484932010-10-18 18:04:39 +00002663 if (txq < 1 || txq > dev->num_tx_queues)
2664 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002665
Ben Hutchings5c565802011-02-15 19:39:21 +00002666 if (dev->reg_state == NETREG_REGISTERED ||
2667 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002668 ASSERT_RTNL();
2669
Tom Herbert1d24eb42010-11-21 13:17:27 +00002670 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2671 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002672 if (rc)
2673 return rc;
2674
John Fastabend4f57c082011-01-17 08:06:04 +00002675 if (dev->num_tc)
2676 netif_setup_tc(dev, txq);
2677
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002678 dev->real_num_tx_queues = txq;
2679
2680 if (disabling) {
2681 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002682 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002683#ifdef CONFIG_XPS
2684 netif_reset_xps_queues_gt(dev, txq);
2685#endif
2686 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002687 } else {
2688 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002689 }
Tom Herberte6484932010-10-18 18:04:39 +00002690
Tom Herberte6484932010-10-18 18:04:39 +00002691 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002692}
2693EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002694
Michael Daltona953be52014-01-16 22:23:28 -08002695#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002696/**
2697 * netif_set_real_num_rx_queues - set actual number of RX queues used
2698 * @dev: Network device
2699 * @rxq: Actual number of RX queues
2700 *
2701 * This must be called either with the rtnl_lock held or before
2702 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002703 * negative error code. If called before registration, it always
2704 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002705 */
2706int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2707{
2708 int rc;
2709
Tom Herbertbd25fa72010-10-18 18:00:16 +00002710 if (rxq < 1 || rxq > dev->num_rx_queues)
2711 return -EINVAL;
2712
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002713 if (dev->reg_state == NETREG_REGISTERED) {
2714 ASSERT_RTNL();
2715
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002716 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2717 rxq);
2718 if (rc)
2719 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002720 }
2721
2722 dev->real_num_rx_queues = rxq;
2723 return 0;
2724}
2725EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2726#endif
2727
Ben Hutchings2c530402012-07-10 10:55:09 +00002728/**
2729 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002730 *
2731 * This routine should set an upper limit on the number of RSS queues
2732 * used by default by multiqueue devices.
2733 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002734int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002735{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302736 return is_kdump_kernel() ?
2737 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002738}
2739EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2740
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002741static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002742{
2743 struct softnet_data *sd;
2744 unsigned long flags;
2745
2746 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002747 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002748 q->next_sched = NULL;
2749 *sd->output_queue_tailp = q;
2750 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002751 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2752 local_irq_restore(flags);
2753}
2754
David S. Miller37437bb2008-07-16 02:15:04 -07002755void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002756{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002757 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2758 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002759}
2760EXPORT_SYMBOL(__netif_schedule);
2761
Eric Dumazete6247022013-12-05 04:45:08 -08002762struct dev_kfree_skb_cb {
2763 enum skb_free_reason reason;
2764};
2765
2766static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002767{
Eric Dumazete6247022013-12-05 04:45:08 -08002768 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002769}
Denis Vlasenko56079432006-03-29 15:57:29 -08002770
John Fastabend46e5da40a2014-09-12 20:04:52 -07002771void netif_schedule_queue(struct netdev_queue *txq)
2772{
2773 rcu_read_lock();
2774 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2775 struct Qdisc *q = rcu_dereference(txq->qdisc);
2776
2777 __netif_schedule(q);
2778 }
2779 rcu_read_unlock();
2780}
2781EXPORT_SYMBOL(netif_schedule_queue);
2782
John Fastabend46e5da40a2014-09-12 20:04:52 -07002783void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2784{
2785 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2786 struct Qdisc *q;
2787
2788 rcu_read_lock();
2789 q = rcu_dereference(dev_queue->qdisc);
2790 __netif_schedule(q);
2791 rcu_read_unlock();
2792 }
2793}
2794EXPORT_SYMBOL(netif_tx_wake_queue);
2795
Eric Dumazete6247022013-12-05 04:45:08 -08002796void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2797{
2798 unsigned long flags;
2799
Myungho Jung98998862017-04-25 11:58:15 -07002800 if (unlikely(!skb))
2801 return;
2802
Reshetova, Elena63354792017-06-30 13:07:58 +03002803 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08002804 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03002805 refcount_set(&skb->users, 0);
2806 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08002807 return;
2808 }
2809 get_kfree_skb_cb(skb)->reason = reason;
2810 local_irq_save(flags);
2811 skb->next = __this_cpu_read(softnet_data.completion_queue);
2812 __this_cpu_write(softnet_data.completion_queue, skb);
2813 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2814 local_irq_restore(flags);
2815}
2816EXPORT_SYMBOL(__dev_kfree_skb_irq);
2817
2818void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002819{
2820 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002821 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002822 else
2823 dev_kfree_skb(skb);
2824}
Eric Dumazete6247022013-12-05 04:45:08 -08002825EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002826
2827
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002828/**
2829 * netif_device_detach - mark device as removed
2830 * @dev: network device
2831 *
2832 * Mark device as removed from system and therefore no longer available.
2833 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002834void netif_device_detach(struct net_device *dev)
2835{
2836 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2837 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002838 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002839 }
2840}
2841EXPORT_SYMBOL(netif_device_detach);
2842
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002843/**
2844 * netif_device_attach - mark device as attached
2845 * @dev: network device
2846 *
2847 * Mark device as attached from system and restart if needed.
2848 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002849void netif_device_attach(struct net_device *dev)
2850{
2851 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2852 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002853 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002854 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002855 }
2856}
2857EXPORT_SYMBOL(netif_device_attach);
2858
Jiri Pirko5605c762015-05-12 14:56:12 +02002859/*
2860 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2861 * to be used as a distribution range.
2862 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04002863static u16 skb_tx_hash(const struct net_device *dev,
2864 const struct net_device *sb_dev,
2865 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02002866{
2867 u32 hash;
2868 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04002869 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02002870
Alexander Duyckeadec8772018-07-09 12:19:48 -04002871 if (dev->num_tc) {
2872 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2873
2874 qoffset = sb_dev->tc_to_txq[tc].offset;
2875 qcount = sb_dev->tc_to_txq[tc].count;
2876 }
2877
Jiri Pirko5605c762015-05-12 14:56:12 +02002878 if (skb_rx_queue_recorded(skb)) {
2879 hash = skb_get_rx_queue(skb);
Alexander Duyck1b837d42018-04-27 14:06:53 -04002880 while (unlikely(hash >= qcount))
2881 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04002882 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02002883 }
2884
2885 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2886}
Jiri Pirko5605c762015-05-12 14:56:12 +02002887
Ben Hutchings36c92472012-01-17 07:57:56 +00002888static void skb_warn_bad_offload(const struct sk_buff *skb)
2889{
Wei Tang84d15ae2016-06-16 21:17:49 +08002890 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002891 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002892 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002893
Ben Greearc846ad92013-04-19 10:45:52 +00002894 if (!net_ratelimit())
2895 return;
2896
Bjørn Mork88ad4172015-11-16 19:16:40 +01002897 if (dev) {
2898 if (dev->dev.parent)
2899 name = dev_driver_string(dev->dev.parent);
2900 else
2901 name = netdev_name(dev);
2902 }
Willem de Bruijn64131392019-07-07 05:51:55 -04002903 skb_dump(KERN_WARNING, skb, false);
2904 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002905 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04002906 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00002907}
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909/*
2910 * Invalidate hardware checksum when packet is to be mangled, and
2911 * complete checksum manually on outgoing path.
2912 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002913int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Al Virod3bc23e2006-11-14 21:24:49 -08002915 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002916 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Patrick McHardy84fa7932006-08-29 16:44:56 -07002918 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002919 goto out_set_summed;
2920
2921 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002922 skb_warn_bad_offload(skb);
2923 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 }
2925
Eric Dumazetcef401d2013-01-25 20:34:37 +00002926 /* Before computing a checksum, we should make sure no frag could
2927 * be modified by an external entity : checksum could be wrong.
2928 */
2929 if (skb_has_shared_frag(skb)) {
2930 ret = __skb_linearize(skb);
2931 if (ret)
2932 goto out;
2933 }
2934
Michał Mirosław55508d62010-12-14 15:24:08 +00002935 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002936 BUG_ON(offset >= skb_headlen(skb));
2937 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2938
2939 offset += skb->csum_offset;
2940 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2941
2942 if (skb_cloned(skb) &&
2943 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2945 if (ret)
2946 goto out;
2947 }
2948
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002949 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002950out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002952out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 return ret;
2954}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002955EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Davide Carattib72b5bf2017-05-18 15:44:38 +02002957int skb_crc32c_csum_help(struct sk_buff *skb)
2958{
2959 __le32 crc32c_csum;
2960 int ret = 0, offset, start;
2961
2962 if (skb->ip_summed != CHECKSUM_PARTIAL)
2963 goto out;
2964
2965 if (unlikely(skb_is_gso(skb)))
2966 goto out;
2967
2968 /* Before computing a checksum, we should make sure no frag could
2969 * be modified by an external entity : checksum could be wrong.
2970 */
2971 if (unlikely(skb_has_shared_frag(skb))) {
2972 ret = __skb_linearize(skb);
2973 if (ret)
2974 goto out;
2975 }
2976 start = skb_checksum_start_offset(skb);
2977 offset = start + offsetof(struct sctphdr, checksum);
2978 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
2979 ret = -EINVAL;
2980 goto out;
2981 }
2982 if (skb_cloned(skb) &&
2983 !skb_clone_writable(skb, offset + sizeof(__le32))) {
2984 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2985 if (ret)
2986 goto out;
2987 }
2988 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
2989 skb->len - start, ~(__u32)0,
2990 crc32c_csum_stub));
2991 *(__le32 *)(skb->data + offset) = crc32c_csum;
2992 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02002993 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02002994out:
2995 return ret;
2996}
2997
Vlad Yasevich53d64712014-03-27 17:26:18 -04002998__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002999{
3000 __be16 type = skb->protocol;
3001
Pravin B Shelar19acc322013-05-07 20:41:07 +00003002 /* Tunnel gso handlers can set protocol to ethernet. */
3003 if (type == htons(ETH_P_TEB)) {
3004 struct ethhdr *eth;
3005
3006 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3007 return 0;
3008
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003009 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003010 type = eth->h_proto;
3011 }
3012
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003013 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003014}
3015
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003016/**
3017 * skb_mac_gso_segment - mac layer segmentation handler.
3018 * @skb: buffer to segment
3019 * @features: features for the output path (see dev->features)
3020 */
3021struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3022 netdev_features_t features)
3023{
3024 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3025 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003026 int vlan_depth = skb->mac_len;
3027 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003028
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003029 if (unlikely(!type))
3030 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003031
Vlad Yasevich53d64712014-03-27 17:26:18 -04003032 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003033
3034 rcu_read_lock();
3035 list_for_each_entry_rcu(ptype, &offload_base, list) {
3036 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003037 segs = ptype->callbacks.gso_segment(skb, features);
3038 break;
3039 }
3040 }
3041 rcu_read_unlock();
3042
3043 __skb_push(skb, skb->data - skb_mac_header(skb));
3044
3045 return segs;
3046}
3047EXPORT_SYMBOL(skb_mac_gso_segment);
3048
3049
Cong Wang12b00042013-02-05 16:36:38 +00003050/* openvswitch calls this on rx path, so we need a different check.
3051 */
3052static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3053{
3054 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003055 return skb->ip_summed != CHECKSUM_PARTIAL &&
3056 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003057
3058 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003059}
3060
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003061/**
Cong Wang12b00042013-02-05 16:36:38 +00003062 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003063 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003064 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003065 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003066 *
3067 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003068 *
3069 * It may return NULL if the skb requires no segmentation. This is
3070 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003071 *
3072 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003073 */
Cong Wang12b00042013-02-05 16:36:38 +00003074struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3075 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003076{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003077 struct sk_buff *segs;
3078
Cong Wang12b00042013-02-05 16:36:38 +00003079 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003080 int err;
3081
Eric Dumazetb2504a52017-01-31 10:20:32 -08003082 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003083 err = skb_cow_head(skb, 0);
3084 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003085 return ERR_PTR(err);
3086 }
3087
Alexander Duyck802ab552016-04-10 21:45:03 -04003088 /* Only report GSO partial support if it will enable us to
3089 * support segmentation on this frame without needing additional
3090 * work.
3091 */
3092 if (features & NETIF_F_GSO_PARTIAL) {
3093 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3094 struct net_device *dev = skb->dev;
3095
3096 partial_features |= dev->features & dev->gso_partial_features;
3097 if (!skb_gso_ok(skb, features | partial_features))
3098 features &= ~NETIF_F_GSO_PARTIAL;
3099 }
3100
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003101 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
3102 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3103
Pravin B Shelar68c33162013-02-14 14:02:41 +00003104 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003105 SKB_GSO_CB(skb)->encap_level = 0;
3106
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003107 skb_reset_mac_header(skb);
3108 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003109
Eric Dumazetb2504a52017-01-31 10:20:32 -08003110 segs = skb_mac_gso_segment(skb, features);
3111
Willem de Bruijn8d74e9f2017-12-12 11:39:04 -05003112 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003113 skb_warn_bad_offload(skb);
3114
3115 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003116}
Cong Wang12b00042013-02-05 16:36:38 +00003117EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003118
Herbert Xufb286bb2005-11-10 13:01:24 -08003119/* Take action when hardware reception checksum errors are detected. */
3120#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003121void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003122{
3123 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003124 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Willem de Bruijn64131392019-07-07 05:51:55 -04003125 skb_dump(KERN_ERR, skb, true);
Herbert Xufb286bb2005-11-10 13:01:24 -08003126 dump_stack();
3127 }
3128}
3129EXPORT_SYMBOL(netdev_rx_csum_fault);
3130#endif
3131
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003132/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003133static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003135#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 int i;
tchardingf4563a72017-02-09 17:56:07 +11003137
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003138 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003139 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3140 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003141
Ian Campbellea2ab692011-08-22 23:44:58 +00003142 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003143 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003144 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003145 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 return 0;
3148}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Simon Horman3b392dd2014-06-04 08:53:17 +09003150/* If MPLS offload request, verify we are testing hardware MPLS features
3151 * instead of standard features for the netdev.
3152 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003153#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003154static netdev_features_t net_mpls_features(struct sk_buff *skb,
3155 netdev_features_t features,
3156 __be16 type)
3157{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003158 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003159 features &= skb->dev->mpls_features;
3160
3161 return features;
3162}
3163#else
3164static netdev_features_t net_mpls_features(struct sk_buff *skb,
3165 netdev_features_t features,
3166 __be16 type)
3167{
3168 return features;
3169}
3170#endif
3171
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003172static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003173 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003174{
Vlad Yasevich53d64712014-03-27 17:26:18 -04003175 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09003176 __be16 type;
3177
3178 type = skb_network_protocol(skb, &tmp);
3179 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003180
Ed Cashinc0d680e2012-09-19 15:49:00 +00003181 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003182 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003183 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003184 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003185 if (illegal_highdma(skb->dev, skb))
3186 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003187
3188 return features;
3189}
3190
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003191netdev_features_t passthru_features_check(struct sk_buff *skb,
3192 struct net_device *dev,
3193 netdev_features_t features)
3194{
3195 return features;
3196}
3197EXPORT_SYMBOL(passthru_features_check);
3198
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003199static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003200 struct net_device *dev,
3201 netdev_features_t features)
3202{
3203 return vlan_features_check(skb, features);
3204}
3205
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003206static netdev_features_t gso_features_check(const struct sk_buff *skb,
3207 struct net_device *dev,
3208 netdev_features_t features)
3209{
3210 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3211
3212 if (gso_segs > dev->gso_max_segs)
3213 return features & ~NETIF_F_GSO_MASK;
3214
Alexander Duyck802ab552016-04-10 21:45:03 -04003215 /* Support for GSO partial features requires software
3216 * intervention before we can actually process the packets
3217 * so we need to strip support for any partial features now
3218 * and we can pull them back in after we have partially
3219 * segmented the frame.
3220 */
3221 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3222 features &= ~dev->gso_partial_features;
3223
3224 /* Make sure to clear the IPv4 ID mangling feature if the
3225 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003226 */
3227 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3228 struct iphdr *iph = skb->encapsulation ?
3229 inner_ip_hdr(skb) : ip_hdr(skb);
3230
3231 if (!(iph->frag_off & htons(IP_DF)))
3232 features &= ~NETIF_F_TSO_MANGLEID;
3233 }
3234
3235 return features;
3236}
3237
Florian Westphalc1e756b2014-05-05 15:00:44 +02003238netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003239{
Jesse Gross5f352272014-12-23 22:37:26 -08003240 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003241 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003242
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003243 if (skb_is_gso(skb))
3244 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003245
Jesse Gross5f352272014-12-23 22:37:26 -08003246 /* If encapsulation offload request, verify we are testing
3247 * hardware encapsulation features instead of standard
3248 * features for the netdev
3249 */
3250 if (skb->encapsulation)
3251 features &= dev->hw_enc_features;
3252
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003253 if (skb_vlan_tagged(skb))
3254 features = netdev_intersect_features(features,
3255 dev->vlan_features |
3256 NETIF_F_HW_VLAN_CTAG_TX |
3257 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003258
Jesse Gross5f352272014-12-23 22:37:26 -08003259 if (dev->netdev_ops->ndo_features_check)
3260 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3261 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003262 else
3263 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003264
Florian Westphalc1e756b2014-05-05 15:00:44 +02003265 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003266}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003267EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003268
David S. Miller2ea25512014-08-29 21:10:01 -07003269static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003270 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003271{
David S. Miller2ea25512014-08-29 21:10:01 -07003272 unsigned int len;
3273 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003274
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003275 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003276 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003277
David S. Miller2ea25512014-08-29 21:10:01 -07003278 len = skb->len;
3279 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003280 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003281 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003282
Patrick McHardy572a9d72009-11-10 06:14:14 +00003283 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003284}
David S. Miller2ea25512014-08-29 21:10:01 -07003285
David S. Miller8dcda222014-09-01 15:06:40 -07003286struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3287 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003288{
3289 struct sk_buff *skb = first;
3290 int rc = NETDEV_TX_OK;
3291
3292 while (skb) {
3293 struct sk_buff *next = skb->next;
3294
David S. Millera8305bf2018-07-29 20:42:53 -07003295 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003296 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003297 if (unlikely(!dev_xmit_complete(rc))) {
3298 skb->next = next;
3299 goto out;
3300 }
3301
3302 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003303 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003304 rc = NETDEV_TX_BUSY;
3305 break;
3306 }
3307 }
3308
3309out:
3310 *ret = rc;
3311 return skb;
3312}
3313
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003314static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3315 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003316{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003317 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003318 !vlan_hw_offload_capable(features, skb->vlan_proto))
3319 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003320 return skb;
3321}
3322
Davide Caratti43c26a12017-05-18 15:44:41 +02003323int skb_csum_hwoffload_help(struct sk_buff *skb,
3324 const netdev_features_t features)
3325{
3326 if (unlikely(skb->csum_not_inet))
3327 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3328 skb_crc32c_csum_help(skb);
3329
3330 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3331}
3332EXPORT_SYMBOL(skb_csum_hwoffload_help);
3333
Steffen Klassertf53c7232017-12-20 10:41:36 +01003334static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003335{
3336 netdev_features_t features;
3337
David S. Millereae3f882014-08-30 15:17:13 -07003338 features = netif_skb_features(skb);
3339 skb = validate_xmit_vlan(skb, features);
3340 if (unlikely(!skb))
3341 goto out_null;
3342
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003343 skb = sk_validate_xmit_skb(skb, dev);
3344 if (unlikely(!skb))
3345 goto out_null;
3346
Johannes Berg8b86a612015-04-17 15:45:04 +02003347 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003348 struct sk_buff *segs;
3349
3350 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003351 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003352 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003353 } else if (segs) {
3354 consume_skb(skb);
3355 skb = segs;
3356 }
David S. Millereae3f882014-08-30 15:17:13 -07003357 } else {
3358 if (skb_needs_linearize(skb, features) &&
3359 __skb_linearize(skb))
3360 goto out_kfree_skb;
3361
3362 /* If packet is not checksummed and device does not
3363 * support checksumming for this protocol, complete
3364 * checksumming here.
3365 */
3366 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3367 if (skb->encapsulation)
3368 skb_set_inner_transport_header(skb,
3369 skb_checksum_start_offset(skb));
3370 else
3371 skb_set_transport_header(skb,
3372 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003373 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003374 goto out_kfree_skb;
3375 }
3376 }
3377
Steffen Klassertf53c7232017-12-20 10:41:36 +01003378 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003379
David S. Millereae3f882014-08-30 15:17:13 -07003380 return skb;
3381
3382out_kfree_skb:
3383 kfree_skb(skb);
3384out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003385 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003386 return NULL;
3387}
3388
Steffen Klassertf53c7232017-12-20 10:41:36 +01003389struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003390{
3391 struct sk_buff *next, *head = NULL, *tail;
3392
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003393 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003394 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003395 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003396
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003397 /* in case skb wont be segmented, point to itself */
3398 skb->prev = skb;
3399
Steffen Klassertf53c7232017-12-20 10:41:36 +01003400 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003401 if (!skb)
3402 continue;
3403
3404 if (!head)
3405 head = skb;
3406 else
3407 tail->next = skb;
3408 /* If skb was segmented, skb->prev points to
3409 * the last segment. If not, it still contains skb.
3410 */
3411 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003412 }
3413 return head;
3414}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003415EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003416
Eric Dumazet1def9232013-01-10 12:36:42 +00003417static void qdisc_pkt_len_init(struct sk_buff *skb)
3418{
3419 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3420
3421 qdisc_skb_cb(skb)->pkt_len = skb->len;
3422
3423 /* To get more precise estimation of bytes sent on wire,
3424 * we add to pkt_len the headers size of all segments
3425 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003426 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003427 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003428 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003429
Eric Dumazet757b8b12013-01-15 21:14:21 -08003430 /* mac layer + network layer */
3431 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3432
3433 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003434 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3435 const struct tcphdr *th;
3436 struct tcphdr _tcphdr;
3437
3438 th = skb_header_pointer(skb, skb_transport_offset(skb),
3439 sizeof(_tcphdr), &_tcphdr);
3440 if (likely(th))
3441 hdr_len += __tcp_hdrlen(th);
3442 } else {
3443 struct udphdr _udphdr;
3444
3445 if (skb_header_pointer(skb, skb_transport_offset(skb),
3446 sizeof(_udphdr), &_udphdr))
3447 hdr_len += sizeof(struct udphdr);
3448 }
Jason Wang15e5a032013-03-25 20:19:59 +00003449
3450 if (shinfo->gso_type & SKB_GSO_DODGY)
3451 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3452 shinfo->gso_size);
3453
3454 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003455 }
3456}
3457
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003458static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3459 struct net_device *dev,
3460 struct netdev_queue *txq)
3461{
3462 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003463 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003464 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003465 int rc;
3466
Eric Dumazeta2da5702011-01-20 03:48:19 +00003467 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003468
3469 if (q->flags & TCQ_F_NOLOCK) {
3470 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
3471 __qdisc_drop(skb, &to_free);
3472 rc = NET_XMIT_DROP;
Paolo Abeniba27b4c2019-03-22 16:01:56 +01003473 } else if ((q->flags & TCQ_F_CAN_BYPASS) && q->empty &&
3474 qdisc_run_begin(q)) {
3475 qdisc_bstats_cpu_update(q, skb);
3476
3477 if (sch_direct_xmit(skb, q, dev, txq, NULL, true))
3478 __qdisc_run(q);
3479
3480 qdisc_run_end(q);
3481 rc = NET_XMIT_SUCCESS;
John Fastabend6b3ba912017-12-07 09:54:25 -08003482 } else {
3483 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni32f7b442018-05-15 10:50:31 +02003484 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003485 }
3486
3487 if (unlikely(to_free))
3488 kfree_skb_list(to_free);
3489 return rc;
3490 }
3491
Eric Dumazet79640a42010-06-02 05:09:29 -07003492 /*
3493 * Heuristic to force contended enqueues to serialize on a
3494 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003495 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003496 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003497 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003498 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003499 if (unlikely(contended))
3500 spin_lock(&q->busylock);
3501
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003502 spin_lock(root_lock);
3503 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003504 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003505 rc = NET_XMIT_DROP;
3506 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003507 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003508 /*
3509 * This is a work-conserving queue; there are no old skbs
3510 * waiting to be sent out; and the qdisc is not running -
3511 * xmit the skb directly.
3512 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003513
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003514 qdisc_bstats_update(q, skb);
3515
Eric Dumazet55a93b32014-10-03 15:31:07 -07003516 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003517 if (unlikely(contended)) {
3518 spin_unlock(&q->busylock);
3519 contended = false;
3520 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003521 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003522 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003523
John Fastabend6c148182017-12-07 09:54:06 -08003524 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003525 rc = NET_XMIT_SUCCESS;
3526 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003527 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003528 if (qdisc_run_begin(q)) {
3529 if (unlikely(contended)) {
3530 spin_unlock(&q->busylock);
3531 contended = false;
3532 }
3533 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003534 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003535 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003536 }
3537 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003538 if (unlikely(to_free))
3539 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003540 if (unlikely(contended))
3541 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003542 return rc;
3543}
3544
Daniel Borkmann86f85152013-12-29 17:27:11 +01003545#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003546static void skb_update_prio(struct sk_buff *skb)
3547{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003548 const struct netprio_map *map;
3549 const struct sock *sk;
3550 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003551
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003552 if (skb->priority)
3553 return;
3554 map = rcu_dereference_bh(skb->dev->priomap);
3555 if (!map)
3556 return;
3557 sk = skb_to_full_sk(skb);
3558 if (!sk)
3559 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003560
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003561 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3562
3563 if (prioidx < map->priomap_len)
3564 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003565}
3566#else
3567#define skb_update_prio(skb)
3568#endif
3569
Dave Jonesd29f7492008-07-22 14:09:06 -07003570/**
Michel Machado95603e22012-06-12 10:16:35 +00003571 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003572 * @net: network namespace this loopback is happening in
3573 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003574 * @skb: buffer to transmit
3575 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003576int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003577{
3578 skb_reset_mac_header(skb);
3579 __skb_pull(skb, skb_network_offset(skb));
3580 skb->pkt_type = PACKET_LOOPBACK;
3581 skb->ip_summed = CHECKSUM_UNNECESSARY;
3582 WARN_ON(!skb_dst(skb));
3583 skb_dst_force(skb);
3584 netif_rx_ni(skb);
3585 return 0;
3586}
3587EXPORT_SYMBOL(dev_loopback_xmit);
3588
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003589#ifdef CONFIG_NET_EGRESS
3590static struct sk_buff *
3591sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3592{
Jiri Pirko46209402017-11-03 11:46:25 +01003593 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003594 struct tcf_result cl_res;
3595
Jiri Pirko46209402017-11-03 11:46:25 +01003596 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003597 return skb;
3598
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003599 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003600 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003601
Jiri Pirko46209402017-11-03 11:46:25 +01003602 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003603 case TC_ACT_OK:
3604 case TC_ACT_RECLASSIFY:
3605 skb->tc_index = TC_H_MIN(cl_res.classid);
3606 break;
3607 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003608 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003609 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003610 kfree_skb(skb);
3611 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003612 case TC_ACT_STOLEN:
3613 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003614 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003615 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003616 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003617 return NULL;
3618 case TC_ACT_REDIRECT:
3619 /* No need to push/pop skb's mac_header here on egress! */
3620 skb_do_redirect(skb);
3621 *ret = NET_XMIT_SUCCESS;
3622 return NULL;
3623 default:
3624 break;
3625 }
3626
3627 return skb;
3628}
3629#endif /* CONFIG_NET_EGRESS */
3630
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003631#ifdef CONFIG_XPS
3632static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3633 struct xps_dev_maps *dev_maps, unsigned int tci)
3634{
3635 struct xps_map *map;
3636 int queue_index = -1;
3637
3638 if (dev->num_tc) {
3639 tci *= dev->num_tc;
3640 tci += netdev_get_prio_tc_map(dev, skb->priority);
3641 }
3642
3643 map = rcu_dereference(dev_maps->attr_map[tci]);
3644 if (map) {
3645 if (map->len == 1)
3646 queue_index = map->queues[0];
3647 else
3648 queue_index = map->queues[reciprocal_scale(
3649 skb_get_hash(skb), map->len)];
3650 if (unlikely(queue_index >= dev->real_num_tx_queues))
3651 queue_index = -1;
3652 }
3653 return queue_index;
3654}
3655#endif
3656
Alexander Duyckeadec8772018-07-09 12:19:48 -04003657static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3658 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003659{
3660#ifdef CONFIG_XPS
3661 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003662 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003663 int queue_index = -1;
3664
Amritha Nambiar04157462018-06-29 21:26:46 -07003665 if (!static_key_false(&xps_needed))
3666 return -1;
3667
Jiri Pirko638b2a62015-05-12 14:56:13 +02003668 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003669 if (!static_key_false(&xps_rxqs_needed))
3670 goto get_cpus_map;
3671
Alexander Duyckeadec8772018-07-09 12:19:48 -04003672 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003673 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003674 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003675
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003676 if (tci >= 0 && tci < dev->num_rx_queues)
3677 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3678 tci);
3679 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003680
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003681get_cpus_map:
3682 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003683 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003684 if (dev_maps) {
3685 unsigned int tci = skb->sender_cpu - 1;
3686
3687 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3688 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003689 }
3690 }
3691 rcu_read_unlock();
3692
3693 return queue_index;
3694#else
3695 return -1;
3696#endif
3697}
3698
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003699u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003700 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003701{
3702 return 0;
3703}
3704EXPORT_SYMBOL(dev_pick_tx_zero);
3705
3706u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003707 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003708{
3709 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3710}
3711EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3712
Paolo Abenib71b5832019-03-20 11:02:05 +01003713u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3714 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003715{
3716 struct sock *sk = skb->sk;
3717 int queue_index = sk_tx_queue_get(sk);
3718
Alexander Duyckeadec8772018-07-09 12:19:48 -04003719 sb_dev = sb_dev ? : dev;
3720
Jiri Pirko638b2a62015-05-12 14:56:13 +02003721 if (queue_index < 0 || skb->ooo_okay ||
3722 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003723 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003724
Jiri Pirko638b2a62015-05-12 14:56:13 +02003725 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003726 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003727
3728 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003729 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003730 rcu_access_pointer(sk->sk_dst_cache))
3731 sk_tx_queue_set(sk, new_index);
3732
3733 queue_index = new_index;
3734 }
3735
3736 return queue_index;
3737}
Paolo Abenib71b5832019-03-20 11:02:05 +01003738EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003739
Paolo Abeni4bd97d52019-03-20 11:02:04 +01003740struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
3741 struct sk_buff *skb,
3742 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003743{
3744 int queue_index = 0;
3745
3746#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003747 u32 sender_cpu = skb->sender_cpu - 1;
3748
3749 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003750 skb->sender_cpu = raw_smp_processor_id() + 1;
3751#endif
3752
3753 if (dev->real_num_tx_queues != 1) {
3754 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11003755
Jiri Pirko638b2a62015-05-12 14:56:13 +02003756 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01003757 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003758 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01003759 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003760
Alexander Duyckd5845272017-11-22 10:57:41 -08003761 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003762 }
3763
3764 skb_set_queue_mapping(skb, queue_index);
3765 return netdev_get_tx_queue(dev, queue_index);
3766}
3767
Michel Machado95603e22012-06-12 10:16:35 +00003768/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003769 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003770 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04003771 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003772 *
3773 * Queue a buffer for transmission to a network device. The caller must
3774 * have set the device and priority and built the buffer before calling
3775 * this function. The function can be called from an interrupt.
3776 *
3777 * A negative errno code is returned on a failure. A success does not
3778 * guarantee the frame will be transmitted as it may be dropped due
3779 * to congestion or traffic shaping.
3780 *
3781 * -----------------------------------------------------------------------------------
3782 * I notice this method can also return errors from the queue disciplines,
3783 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3784 * be positive.
3785 *
3786 * Regardless of the return value, the skb is consumed, so it is currently
3787 * difficult to retry a send to this method. (You can bump the ref count
3788 * before sending to hold a reference for retry if you are careful.)
3789 *
3790 * When calling this method, interrupts MUST be enabled. This is because
3791 * the BH enable code must have IRQs enabled so that it will not deadlock.
3792 * --BLG
3793 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003794static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795{
3796 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003797 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 struct Qdisc *q;
3799 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01003800 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003802 skb_reset_mac_header(skb);
3803
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003804 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3805 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3806
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003807 /* Disable soft irqs for various locks below. Also
3808 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003810 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
Neil Horman5bc14212011-11-22 05:10:51 +00003812 skb_update_prio(skb);
3813
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003814 qdisc_pkt_len_init(skb);
3815#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003816 skb->tc_at_ingress = 0;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003817# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07003818 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003819 skb = sch_handle_egress(skb, &rc, dev);
3820 if (!skb)
3821 goto out;
3822 }
3823# endif
3824#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003825 /* If device/qdisc don't need skb->dst, release it right now while
3826 * its hot in this cpu cache.
3827 */
3828 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3829 skb_dst_drop(skb);
3830 else
3831 skb_dst_force(skb);
3832
Paolo Abeni4bd97d52019-03-20 11:02:04 +01003833 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003834 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003835
Koki Sanagicf66ba52010-08-23 18:45:02 +09003836 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003838 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003839 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 }
3841
3842 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11003843 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
tchardingeb13da12017-02-09 17:56:06 +11003845 * Really, it is unlikely that netif_tx_lock protection is necessary
3846 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
3847 * counters.)
3848 * However, it is possible, that they rely on protection
3849 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
tchardingeb13da12017-02-09 17:56:06 +11003851 * Check this and shot the lock. It is not prone from deadlocks.
3852 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 */
3854 if (dev->flags & IFF_UP) {
3855 int cpu = smp_processor_id(); /* ok because BHs are off */
3856
David S. Millerc773e842008-07-08 23:13:53 -07003857 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02003858 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07003859 goto recursion_alert;
3860
Steffen Klassertf53c7232017-12-20 10:41:36 +01003861 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003862 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003863 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003864
David S. Millerc773e842008-07-08 23:13:53 -07003865 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Tom Herbert734664982011-11-28 16:32:44 +00003867 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02003868 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07003869 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02003870 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00003871 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003872 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 goto out;
3874 }
3875 }
David S. Millerc773e842008-07-08 23:13:53 -07003876 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003877 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3878 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 } else {
3880 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003881 * unfortunately
3882 */
3883recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003884 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3885 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 }
3887 }
3888
3889 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003890 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Eric Dumazet015f0682014-03-27 08:45:56 -07003892 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003893 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 return rc;
3895out:
Herbert Xud4828d82006-06-22 02:28:18 -07003896 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 return rc;
3898}
Jason Wangf663dd92014-01-10 16:18:26 +08003899
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003900int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003901{
3902 return __dev_queue_xmit(skb, NULL);
3903}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003904EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905
Alexander Duyckeadec8772018-07-09 12:19:48 -04003906int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08003907{
Alexander Duyckeadec8772018-07-09 12:19:48 -04003908 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08003909}
3910EXPORT_SYMBOL(dev_queue_xmit_accel);
3911
Magnus Karlsson865b03f2018-05-02 13:01:33 +02003912int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
3913{
3914 struct net_device *dev = skb->dev;
3915 struct sk_buff *orig_skb = skb;
3916 struct netdev_queue *txq;
3917 int ret = NETDEV_TX_BUSY;
3918 bool again = false;
3919
3920 if (unlikely(!netif_running(dev) ||
3921 !netif_carrier_ok(dev)))
3922 goto drop;
3923
3924 skb = validate_xmit_skb_list(skb, dev, &again);
3925 if (skb != orig_skb)
3926 goto drop;
3927
3928 skb_set_queue_mapping(skb, queue_id);
3929 txq = skb_get_tx_queue(dev, skb);
3930
3931 local_bh_disable();
3932
3933 HARD_TX_LOCK(dev, txq, smp_processor_id());
3934 if (!netif_xmit_frozen_or_drv_stopped(txq))
3935 ret = netdev_start_xmit(skb, dev, txq, false);
3936 HARD_TX_UNLOCK(dev, txq);
3937
3938 local_bh_enable();
3939
3940 if (!dev_xmit_complete(ret))
3941 kfree_skb(skb);
3942
3943 return ret;
3944drop:
3945 atomic_long_inc(&dev->tx_dropped);
3946 kfree_skb_list(skb);
3947 return NET_XMIT_DROP;
3948}
3949EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
tchardingeb13da12017-02-09 17:56:06 +11003951/*************************************************************************
3952 * Receiver routines
3953 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003955int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003956EXPORT_SYMBOL(netdev_max_backlog);
3957
Eric Dumazet3b098e22010-05-15 23:57:10 -07003958int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003959int netdev_budget __read_mostly = 300;
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04003960unsigned int __read_mostly netdev_budget_usecs = 2000;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01003961int weight_p __read_mostly = 64; /* old backlog weight */
3962int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
3963int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
3964int dev_rx_weight __read_mostly = 64;
3965int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01003966/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
3967int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003969/* Called with irq disabled */
3970static inline void ____napi_schedule(struct softnet_data *sd,
3971 struct napi_struct *napi)
3972{
3973 list_add_tail(&napi->poll_list, &sd->poll_list);
3974 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3975}
3976
Eric Dumazetdf334542010-03-24 19:13:54 +00003977#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003978
3979/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003980struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003981EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003982u32 rps_cpu_mask __read_mostly;
3983EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003984
Eric Dumazetdc053602019-03-22 08:56:38 -07003985struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003986EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07003987struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08003988EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003989
Ben Hutchingsc4454772011-01-19 11:03:53 +00003990static struct rps_dev_flow *
3991set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3992 struct rps_dev_flow *rflow, u16 next_cpu)
3993{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003994 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003995#ifdef CONFIG_RFS_ACCEL
3996 struct netdev_rx_queue *rxqueue;
3997 struct rps_dev_flow_table *flow_table;
3998 struct rps_dev_flow *old_rflow;
3999 u32 flow_id;
4000 u16 rxq_index;
4001 int rc;
4002
4003 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004004 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4005 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004006 goto out;
4007 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4008 if (rxq_index == skb_get_rx_queue(skb))
4009 goto out;
4010
4011 rxqueue = dev->_rx + rxq_index;
4012 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4013 if (!flow_table)
4014 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004015 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004016 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4017 rxq_index, flow_id);
4018 if (rc < 0)
4019 goto out;
4020 old_rflow = rflow;
4021 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004022 rflow->filter = rc;
4023 if (old_rflow->filter == rflow->filter)
4024 old_rflow->filter = RPS_NO_FILTER;
4025 out:
4026#endif
4027 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004028 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004029 }
4030
Ben Hutchings09994d12011-10-03 04:42:46 +00004031 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004032 return rflow;
4033}
4034
Tom Herbert0a9627f2010-03-16 08:03:29 +00004035/*
4036 * get_rps_cpu is called from netif_receive_skb and returns the target
4037 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004038 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004039 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004040static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4041 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004042{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004043 const struct rps_sock_flow_table *sock_flow_table;
4044 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004045 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004046 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004047 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004048 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004049 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004050
Tom Herbert0a9627f2010-03-16 08:03:29 +00004051 if (skb_rx_queue_recorded(skb)) {
4052 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004053
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004054 if (unlikely(index >= dev->real_num_rx_queues)) {
4055 WARN_ONCE(dev->real_num_rx_queues > 1,
4056 "%s received packet on queue %u, but number "
4057 "of RX queues is %u\n",
4058 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004059 goto done;
4060 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004061 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004062 }
4063
Eric Dumazet567e4b72015-02-06 12:59:01 -08004064 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4065
4066 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4067 map = rcu_dereference(rxqueue->rps_map);
4068 if (!flow_table && !map)
4069 goto done;
4070
Changli Gao2d47b452010-08-17 19:00:56 +00004071 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004072 hash = skb_get_hash(skb);
4073 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004074 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004075
Tom Herbertfec5e652010-04-16 16:01:27 -07004076 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4077 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004078 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004079 u32 next_cpu;
4080 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004081
Eric Dumazet567e4b72015-02-06 12:59:01 -08004082 /* First check into global flow table if there is a match */
4083 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4084 if ((ident ^ hash) & ~rps_cpu_mask)
4085 goto try_rps;
4086
4087 next_cpu = ident & rps_cpu_mask;
4088
4089 /* OK, now we know there is a match,
4090 * we can look at the local (per receive queue) flow table
4091 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004092 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004093 tcpu = rflow->cpu;
4094
Tom Herbertfec5e652010-04-16 16:01:27 -07004095 /*
4096 * If the desired CPU (where last recvmsg was done) is
4097 * different from current CPU (one in the rx-queue flow
4098 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004099 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004100 * - Current CPU is offline.
4101 * - The current CPU's queue tail has advanced beyond the
4102 * last packet that was enqueued using this table entry.
4103 * This guarantees that all previous packets for the flow
4104 * have been dequeued, thus preserving in order delivery.
4105 */
4106 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004107 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004108 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004109 rflow->last_qtail)) >= 0)) {
4110 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004111 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004112 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004113
Eric Dumazeta31196b2015-04-25 09:35:24 -07004114 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004115 *rflowp = rflow;
4116 cpu = tcpu;
4117 goto done;
4118 }
4119 }
4120
Eric Dumazet567e4b72015-02-06 12:59:01 -08004121try_rps:
4122
Tom Herbert0a9627f2010-03-16 08:03:29 +00004123 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004124 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004125 if (cpu_online(tcpu)) {
4126 cpu = tcpu;
4127 goto done;
4128 }
4129 }
4130
4131done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004132 return cpu;
4133}
4134
Ben Hutchingsc4454772011-01-19 11:03:53 +00004135#ifdef CONFIG_RFS_ACCEL
4136
4137/**
4138 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4139 * @dev: Device on which the filter was set
4140 * @rxq_index: RX queue index
4141 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4142 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4143 *
4144 * Drivers that implement ndo_rx_flow_steer() should periodically call
4145 * this function for each installed filter and remove the filters for
4146 * which it returns %true.
4147 */
4148bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4149 u32 flow_id, u16 filter_id)
4150{
4151 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4152 struct rps_dev_flow_table *flow_table;
4153 struct rps_dev_flow *rflow;
4154 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004155 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004156
4157 rcu_read_lock();
4158 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4159 if (flow_table && flow_id <= flow_table->mask) {
4160 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004161 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004162 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004163 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4164 rflow->last_qtail) <
4165 (int)(10 * flow_table->mask)))
4166 expire = false;
4167 }
4168 rcu_read_unlock();
4169 return expire;
4170}
4171EXPORT_SYMBOL(rps_may_expire_flow);
4172
4173#endif /* CONFIG_RFS_ACCEL */
4174
Tom Herbert0a9627f2010-03-16 08:03:29 +00004175/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004176static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004177{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004178 struct softnet_data *sd = data;
4179
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004180 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004181 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004182}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004183
Tom Herbertfec5e652010-04-16 16:01:27 -07004184#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004185
4186/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004187 * Check if this softnet_data structure is another cpu one
4188 * If yes, queue it to our IPI list and return 1
4189 * If no, return 0
4190 */
4191static int rps_ipi_queued(struct softnet_data *sd)
4192{
4193#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004194 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004195
4196 if (sd != mysd) {
4197 sd->rps_ipi_next = mysd->rps_ipi_list;
4198 mysd->rps_ipi_list = sd;
4199
4200 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4201 return 1;
4202 }
4203#endif /* CONFIG_RPS */
4204 return 0;
4205}
4206
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004207#ifdef CONFIG_NET_FLOW_LIMIT
4208int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4209#endif
4210
4211static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4212{
4213#ifdef CONFIG_NET_FLOW_LIMIT
4214 struct sd_flow_limit *fl;
4215 struct softnet_data *sd;
4216 unsigned int old_flow, new_flow;
4217
4218 if (qlen < (netdev_max_backlog >> 1))
4219 return false;
4220
Christoph Lameter903ceff2014-08-17 12:30:35 -05004221 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004222
4223 rcu_read_lock();
4224 fl = rcu_dereference(sd->flow_limit);
4225 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004226 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004227 old_flow = fl->history[fl->history_head];
4228 fl->history[fl->history_head] = new_flow;
4229
4230 fl->history_head++;
4231 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4232
4233 if (likely(fl->buckets[old_flow]))
4234 fl->buckets[old_flow]--;
4235
4236 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4237 fl->count++;
4238 rcu_read_unlock();
4239 return true;
4240 }
4241 }
4242 rcu_read_unlock();
4243#endif
4244 return false;
4245}
4246
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004247/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004248 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4249 * queue (may be a remote CPU queue).
4250 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004251static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4252 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004253{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004254 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004255 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004256 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004257
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004258 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004259
4260 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004261
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004262 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004263 if (!netif_running(skb->dev))
4264 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004265 qlen = skb_queue_len(&sd->input_pkt_queue);
4266 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004267 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004268enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004269 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004270 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004271 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004272 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004273 return NET_RX_SUCCESS;
4274 }
4275
Eric Dumazetebda37c22010-05-06 23:51:21 +00004276 /* Schedule NAPI for backlog device
4277 * We can use non atomic operation since we own the queue lock
4278 */
4279 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004280 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004281 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004282 }
4283 goto enqueue;
4284 }
4285
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004286drop:
Changli Gaodee42872010-05-02 05:42:16 +00004287 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004288 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004289
Tom Herbert0a9627f2010-03-16 08:03:29 +00004290 local_irq_restore(flags);
4291
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004292 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004293 kfree_skb(skb);
4294 return NET_RX_DROP;
4295}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004297static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4298{
4299 struct net_device *dev = skb->dev;
4300 struct netdev_rx_queue *rxqueue;
4301
4302 rxqueue = dev->_rx;
4303
4304 if (skb_rx_queue_recorded(skb)) {
4305 u16 index = skb_get_rx_queue(skb);
4306
4307 if (unlikely(index >= dev->real_num_rx_queues)) {
4308 WARN_ONCE(dev->real_num_rx_queues > 1,
4309 "%s received packet on queue %u, but number "
4310 "of RX queues is %u\n",
4311 dev->name, index, dev->real_num_rx_queues);
4312
4313 return rxqueue; /* Return first rxqueue */
4314 }
4315 rxqueue += index;
4316 }
4317 return rxqueue;
4318}
4319
John Fastabendd4455162017-07-17 09:26:45 -07004320static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004321 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004322 struct bpf_prog *xdp_prog)
4323{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004324 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004325 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004326 u32 metalen, act = XDP_DROP;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004327 __be16 orig_eth_type;
4328 struct ethhdr *eth;
4329 bool orig_bcast;
John Fastabendd4455162017-07-17 09:26:45 -07004330 int hlen, off;
4331 u32 mac_len;
4332
4333 /* Reinjected packets coming from act_mirred or similar should
4334 * not get XDP generic processing.
4335 */
Paolo Abenicd11b1642018-07-30 14:30:44 +02004336 if (skb_cloned(skb) || skb_is_tc_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004337 return XDP_PASS;
4338
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004339 /* XDP packets must be linear and must have sufficient headroom
4340 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4341 * native XDP provides, thus we need to do it here as well.
4342 */
4343 if (skb_is_nonlinear(skb) ||
4344 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4345 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4346 int troom = skb->tail + skb->data_len - skb->end;
4347
4348 /* In case we have to go down the path and also linearize,
4349 * then lets do the pskb_expand_head() work just once here.
4350 */
4351 if (pskb_expand_head(skb,
4352 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4353 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4354 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004355 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004356 goto do_drop;
4357 }
John Fastabendd4455162017-07-17 09:26:45 -07004358
4359 /* The XDP program wants to see the packet starting at the MAC
4360 * header.
4361 */
4362 mac_len = skb->data - skb_mac_header(skb);
4363 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004364 xdp->data = skb->data - mac_len;
4365 xdp->data_meta = xdp->data;
4366 xdp->data_end = xdp->data + hlen;
4367 xdp->data_hard_start = skb->data - skb_headroom(skb);
4368 orig_data_end = xdp->data_end;
4369 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004370 eth = (struct ethhdr *)xdp->data;
4371 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4372 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004373
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004374 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004375 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004376
Björn Töpel02671e22018-05-02 13:01:30 +02004377 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004378
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004379 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004380 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004381 if (off) {
4382 if (off > 0)
4383 __skb_pull(skb, off);
4384 else if (off < 0)
4385 __skb_push(skb, -off);
4386
4387 skb->mac_header += off;
4388 skb_reset_network_header(skb);
4389 }
John Fastabendd4455162017-07-17 09:26:45 -07004390
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004391 /* check if bpf_xdp_adjust_tail was used. it can only "shrink"
4392 * pckt.
4393 */
Björn Töpel02671e22018-05-02 13:01:30 +02004394 off = orig_data_end - xdp->data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004395 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004396 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004397 skb->len -= off;
Björn Töpel02671e22018-05-02 13:01:30 +02004398
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004399 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004400
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004401 /* check if XDP changed eth hdr such SKB needs update */
4402 eth = (struct ethhdr *)xdp->data;
4403 if ((orig_eth_type != eth->h_proto) ||
4404 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4405 __skb_push(skb, ETH_HLEN);
4406 skb->protocol = eth_type_trans(skb, skb->dev);
4407 }
4408
John Fastabendd4455162017-07-17 09:26:45 -07004409 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004410 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004411 case XDP_TX:
4412 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004413 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004414 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004415 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004416 if (metalen)
4417 skb_metadata_set(skb, metalen);
4418 break;
John Fastabendd4455162017-07-17 09:26:45 -07004419 default:
4420 bpf_warn_invalid_xdp_action(act);
4421 /* fall through */
4422 case XDP_ABORTED:
4423 trace_xdp_exception(skb->dev, xdp_prog, act);
4424 /* fall through */
4425 case XDP_DROP:
4426 do_drop:
4427 kfree_skb(skb);
4428 break;
4429 }
4430
4431 return act;
4432}
4433
4434/* When doing generic XDP we have to bypass the qdisc layer and the
4435 * network taps in order to match in-driver-XDP behavior.
4436 */
Jason Wang7c497472017-08-11 19:41:17 +08004437void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004438{
4439 struct net_device *dev = skb->dev;
4440 struct netdev_queue *txq;
4441 bool free_skb = true;
4442 int cpu, rc;
4443
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004444 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004445 cpu = smp_processor_id();
4446 HARD_TX_LOCK(dev, txq, cpu);
4447 if (!netif_xmit_stopped(txq)) {
4448 rc = netdev_start_xmit(skb, dev, txq, 0);
4449 if (dev_xmit_complete(rc))
4450 free_skb = false;
4451 }
4452 HARD_TX_UNLOCK(dev, txq);
4453 if (free_skb) {
4454 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4455 kfree_skb(skb);
4456 }
4457}
Jason Wang7c497472017-08-11 19:41:17 +08004458EXPORT_SYMBOL_GPL(generic_xdp_tx);
John Fastabendd4455162017-07-17 09:26:45 -07004459
Davidlohr Bueso02786472018-05-08 09:07:02 -07004460static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004461
Jason Wang7c497472017-08-11 19:41:17 +08004462int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004463{
John Fastabendd4455162017-07-17 09:26:45 -07004464 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004465 struct xdp_buff xdp;
4466 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004467 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004468
Björn Töpel02671e22018-05-02 13:01:30 +02004469 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004470 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004471 switch (act) {
4472 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004473 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004474 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004475 if (err)
4476 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004477 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004478 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004479 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004480 break;
4481 }
John Fastabendd4455162017-07-17 09:26:45 -07004482 return XDP_DROP;
4483 }
4484 }
4485 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004486out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004487 kfree_skb(skb);
4488 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004489}
Jason Wang7c497472017-08-11 19:41:17 +08004490EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004491
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004492static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004494 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495
Eric Dumazet588f0332011-11-15 04:12:55 +00004496 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497
Koki Sanagicf66ba52010-08-23 18:45:02 +09004498 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004499
Eric Dumazetdf334542010-03-24 19:13:54 +00004500#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004501 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004502 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004503 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Changli Gaocece1942010-08-07 20:35:43 -07004505 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004506 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004507
4508 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004509 if (cpu < 0)
4510 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004511
4512 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4513
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004514 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004515 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004516 } else
4517#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004518 {
4519 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004520
Tom Herbertfec5e652010-04-16 16:01:27 -07004521 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4522 put_cpu();
4523 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004524 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004526
4527/**
4528 * netif_rx - post buffer to the network code
4529 * @skb: buffer to post
4530 *
4531 * This function receives a packet from a device driver and queues it for
4532 * the upper (protocol) levels to process. It always succeeds. The buffer
4533 * may be dropped during processing for congestion control or by the
4534 * protocol layers.
4535 *
4536 * return values:
4537 * NET_RX_SUCCESS (no congestion)
4538 * NET_RX_DROP (packet was dropped)
4539 *
4540 */
4541
4542int netif_rx(struct sk_buff *skb)
4543{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004544 int ret;
4545
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004546 trace_netif_rx_entry(skb);
4547
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004548 ret = netif_rx_internal(skb);
4549 trace_netif_rx_exit(ret);
4550
4551 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004552}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004553EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
4555int netif_rx_ni(struct sk_buff *skb)
4556{
4557 int err;
4558
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004559 trace_netif_rx_ni_entry(skb);
4560
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004562 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 if (local_softirq_pending())
4564 do_softirq();
4565 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004566 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
4568 return err;
4569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570EXPORT_SYMBOL(netif_rx_ni);
4571
Emese Revfy0766f782016-06-20 20:42:34 +02004572static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004574 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575
4576 if (sd->completion_queue) {
4577 struct sk_buff *clist;
4578
4579 local_irq_disable();
4580 clist = sd->completion_queue;
4581 sd->completion_queue = NULL;
4582 local_irq_enable();
4583
4584 while (clist) {
4585 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004586
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 clist = clist->next;
4588
Reshetova, Elena63354792017-06-30 13:07:58 +03004589 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004590 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4591 trace_consume_skb(skb);
4592 else
4593 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004594
4595 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4596 __kfree_skb(skb);
4597 else
4598 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004600
4601 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 }
4603
4604 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004605 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606
4607 local_irq_disable();
4608 head = sd->output_queue;
4609 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004610 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 local_irq_enable();
4612
4613 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004614 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004615 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004616
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 head = head->next_sched;
4618
John Fastabend6b3ba912017-12-07 09:54:25 -08004619 if (!(q->flags & TCQ_F_NOLOCK)) {
4620 root_lock = qdisc_lock(q);
4621 spin_lock(root_lock);
4622 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004623 /* We need to make sure head->next_sched is read
4624 * before clearing __QDISC_STATE_SCHED
4625 */
4626 smp_mb__before_atomic();
4627 clear_bit(__QDISC_STATE_SCHED, &q->state);
4628 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004629 if (root_lock)
4630 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 }
4632 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004633
4634 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635}
4636
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004637#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004638/* This hook is defined here for ATM LANE */
4639int (*br_fdb_test_addr_hook)(struct net_device *dev,
4640 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004641EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004642#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004643
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004644static inline struct sk_buff *
4645sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4646 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004647{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004648#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004649 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004650 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004651
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004652 /* If there's at least one ingress present somewhere (so
4653 * we get here via enabled static key), remaining devices
4654 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004655 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004656 */
Jiri Pirko46209402017-11-03 11:46:25 +01004657 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004658 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004659
Herbert Xuf697c3e2007-10-14 00:38:47 -07004660 if (*pt_prev) {
4661 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4662 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004663 }
4664
Florian Westphal33654952015-05-14 00:36:28 +02004665 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004666 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004667 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004668
Jiri Pirko46209402017-11-03 11:46:25 +01004669 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004670 case TC_ACT_OK:
4671 case TC_ACT_RECLASSIFY:
4672 skb->tc_index = TC_H_MIN(cl_res.classid);
4673 break;
4674 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004675 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004676 kfree_skb(skb);
4677 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004678 case TC_ACT_STOLEN:
4679 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004680 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004681 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004682 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004683 case TC_ACT_REDIRECT:
4684 /* skb_mac_header check was done by cls/act_bpf, so
4685 * we can safely push the L2 header back before
4686 * redirecting to another netdev
4687 */
4688 __skb_push(skb, skb->mac_len);
4689 skb_do_redirect(skb);
4690 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01004691 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02004692 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004693 default:
4694 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004695 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004696#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004697 return skb;
4698}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004700/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004701 * netdev_is_rx_handler_busy - check if receive handler is registered
4702 * @dev: device to check
4703 *
4704 * Check if a receive handler is already registered for a given device.
4705 * Return true if there one.
4706 *
4707 * The caller must hold the rtnl_mutex.
4708 */
4709bool netdev_is_rx_handler_busy(struct net_device *dev)
4710{
4711 ASSERT_RTNL();
4712 return dev && rtnl_dereference(dev->rx_handler);
4713}
4714EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4715
4716/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004717 * netdev_rx_handler_register - register receive handler
4718 * @dev: device to register a handler for
4719 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004720 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004721 *
Masanari Iidae2278672014-02-18 22:54:36 +09004722 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004723 * called from __netif_receive_skb. A negative errno code is returned
4724 * on a failure.
4725 *
4726 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004727 *
4728 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004729 */
4730int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004731 rx_handler_func_t *rx_handler,
4732 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004733{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08004734 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004735 return -EBUSY;
4736
Paolo Abenif54262502018-03-09 10:39:24 +01004737 if (dev->priv_flags & IFF_NO_RX_HANDLER)
4738 return -EINVAL;
4739
Eric Dumazet00cfec32013-03-29 03:01:22 +00004740 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004741 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004742 rcu_assign_pointer(dev->rx_handler, rx_handler);
4743
4744 return 0;
4745}
4746EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4747
4748/**
4749 * netdev_rx_handler_unregister - unregister receive handler
4750 * @dev: device to unregister a handler from
4751 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004752 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004753 *
4754 * The caller must hold the rtnl_mutex.
4755 */
4756void netdev_rx_handler_unregister(struct net_device *dev)
4757{
4758
4759 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004760 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004761 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4762 * section has a guarantee to see a non NULL rx_handler_data
4763 * as well.
4764 */
4765 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004766 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004767}
4768EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4769
Mel Gormanb4b9e352012-07-31 16:44:26 -07004770/*
4771 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4772 * the special handling of PFMEMALLOC skbs.
4773 */
4774static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4775{
4776 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004777 case htons(ETH_P_ARP):
4778 case htons(ETH_P_IP):
4779 case htons(ETH_P_IPV6):
4780 case htons(ETH_P_8021Q):
4781 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004782 return true;
4783 default:
4784 return false;
4785 }
4786}
4787
Pablo Neirae687ad62015-05-13 18:19:38 +02004788static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4789 int *ret, struct net_device *orig_dev)
4790{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004791#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004792 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004793 int ingress_retval;
4794
Pablo Neirae687ad62015-05-13 18:19:38 +02004795 if (*pt_prev) {
4796 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4797 *pt_prev = NULL;
4798 }
4799
Aaron Conole2c1e2702016-09-21 11:35:03 -04004800 rcu_read_lock();
4801 ingress_retval = nf_hook_ingress(skb);
4802 rcu_read_unlock();
4803 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004804 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004805#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004806 return 0;
4807}
Pablo Neirae687ad62015-05-13 18:19:38 +02004808
Edward Cree88eb1942018-07-02 16:13:56 +01004809static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc,
4810 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811{
4812 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004813 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004814 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004815 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08004817 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818
Eric Dumazet588f0332011-11-15 04:12:55 +00004819 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004820
Koki Sanagicf66ba52010-08-23 18:45:02 +09004821 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004822
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004823 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004824
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004825 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004826 if (!skb_transport_header_was_set(skb))
4827 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004828 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
4830 pt_prev = NULL;
4831
David S. Miller63d8ea72011-02-28 10:48:59 -08004832another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004833 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004834
4835 __this_cpu_inc(softnet_data.processed);
4836
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07004837 if (static_branch_unlikely(&generic_xdp_needed_key)) {
4838 int ret2;
4839
4840 preempt_disable();
4841 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
4842 preempt_enable();
4843
4844 if (ret2 != XDP_PASS)
4845 return NET_RX_DROP;
4846 skb_reset_mac_len(skb);
4847 }
4848
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004849 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4850 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004851 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004852 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004853 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004854 }
4855
Willem de Bruijne7246e12017-01-07 17:06:35 -05004856 if (skb_skip_tc_classify(skb))
4857 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
David S. Miller9754e292013-02-14 15:57:38 -05004859 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004860 goto skip_taps;
4861
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004863 if (pt_prev)
4864 ret = deliver_skb(skb, pt_prev, orig_dev);
4865 pt_prev = ptype;
4866 }
4867
4868 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4869 if (pt_prev)
4870 ret = deliver_skb(skb, pt_prev, orig_dev);
4871 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 }
4873
Mel Gormanb4b9e352012-07-31 16:44:26 -07004874skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004875#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004876 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004877 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004878 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004879 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004880
4881 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004882 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004883 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004884#endif
Willem de Bruijna5135bc2017-01-07 17:06:36 -05004885 skb_reset_tc(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05004886skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05004887 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004888 goto drop;
4889
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004890 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004891 if (pt_prev) {
4892 ret = deliver_skb(skb, pt_prev, orig_dev);
4893 pt_prev = NULL;
4894 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004895 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004896 goto another_round;
4897 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004898 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004899 }
4900
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004901 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004902 if (rx_handler) {
4903 if (pt_prev) {
4904 ret = deliver_skb(skb, pt_prev, orig_dev);
4905 pt_prev = NULL;
4906 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004907 switch (rx_handler(&skb)) {
4908 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004909 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004910 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004911 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004912 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004913 case RX_HANDLER_EXACT:
4914 deliver_exact = true;
4915 case RX_HANDLER_PASS:
4916 break;
4917 default:
4918 BUG();
4919 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004922 if (unlikely(skb_vlan_tag_present(skb))) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07004923check_vlan_id:
4924 if (skb_vlan_tag_get_id(skb)) {
4925 /* Vlan id is non 0 and vlan_do_receive() above couldn't
4926 * find vlan device.
4927 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004928 skb->pkt_type = PACKET_OTHERHOST;
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07004929 } else if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4930 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
4931 /* Outer header is 802.1P with vlan 0, inner header is
4932 * 802.1Q or 802.1AD and vlan_do_receive() above could
4933 * not find vlan dev for vlan id 0.
4934 */
4935 __vlan_hwaccel_clear_tag(skb);
4936 skb = skb_vlan_untag(skb);
4937 if (unlikely(!skb))
4938 goto out;
4939 if (vlan_do_receive(&skb))
4940 /* After stripping off 802.1P header with vlan 0
4941 * vlan dev is found for inner header.
4942 */
4943 goto another_round;
4944 else if (unlikely(!skb))
4945 goto out;
4946 else
4947 /* We have stripped outer 802.1P vlan 0 header.
4948 * But could not find vlan dev.
4949 * check again for vlan id to set OTHERHOST.
4950 */
4951 goto check_vlan_id;
4952 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004953 /* Note: we might in the future use prio bits
4954 * and set skb->priority like in vlan_do_receive()
4955 * For the time being, just ignore Priority Code Point
4956 */
Michał Mirosławb18175242018-11-09 00:18:02 +01004957 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004958 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004959
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004961
4962 /* deliver only exact match when indicated */
4963 if (likely(!deliver_exact)) {
4964 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4965 &ptype_base[ntohs(type) &
4966 PTYPE_HASH_MASK]);
4967 }
4968
4969 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4970 &orig_dev->ptype_specific);
4971
4972 if (unlikely(skb->dev != orig_dev)) {
4973 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4974 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975 }
4976
4977 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04004978 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004979 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01004980 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004982drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004983 if (!deliver_exact)
4984 atomic_long_inc(&skb->dev->rx_dropped);
4985 else
4986 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 kfree_skb(skb);
4988 /* Jamal, now you will not able to escape explaining
4989 * me how you were going to use this. :-)
4990 */
4991 ret = NET_RX_DROP;
4992 }
4993
Julian Anastasov2c17d272015-07-09 09:59:10 +03004994out:
David S. Miller9754e292013-02-14 15:57:38 -05004995 return ret;
4996}
4997
Edward Cree88eb1942018-07-02 16:13:56 +01004998static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
4999{
5000 struct net_device *orig_dev = skb->dev;
5001 struct packet_type *pt_prev = NULL;
5002 int ret;
5003
5004 ret = __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
5005 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005006 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5007 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005008 return ret;
5009}
5010
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005011/**
5012 * netif_receive_skb_core - special purpose version of netif_receive_skb
5013 * @skb: buffer to process
5014 *
5015 * More direct receive version of netif_receive_skb(). It should
5016 * only be used by callers that have a need to skip RPS and Generic XDP.
5017 * Caller must also take care of handling if (page_is_)pfmemalloc.
5018 *
5019 * This function may only be called from softirq context and interrupts
5020 * should be enabled.
5021 *
5022 * Return values (usually ignored):
5023 * NET_RX_SUCCESS: no congestion
5024 * NET_RX_DROP: packet was dropped
5025 */
5026int netif_receive_skb_core(struct sk_buff *skb)
5027{
5028 int ret;
5029
5030 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005031 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005032 rcu_read_unlock();
5033
5034 return ret;
5035}
5036EXPORT_SYMBOL(netif_receive_skb_core);
5037
Edward Cree88eb1942018-07-02 16:13:56 +01005038static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5039 struct packet_type *pt_prev,
5040 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005041{
5042 struct sk_buff *skb, *next;
5043
Edward Cree88eb1942018-07-02 16:13:56 +01005044 if (!pt_prev)
5045 return;
5046 if (list_empty(head))
5047 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005048 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005049 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5050 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005051 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005052 list_for_each_entry_safe(skb, next, head, list) {
5053 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005054 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005055 }
Edward Cree88eb1942018-07-02 16:13:56 +01005056}
5057
5058static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5059{
5060 /* Fast-path assumptions:
5061 * - There is no RX handler.
5062 * - Only one packet_type matches.
5063 * If either of these fails, we will end up doing some per-packet
5064 * processing in-line, then handling the 'last ptype' for the whole
5065 * sublist. This can't cause out-of-order delivery to any single ptype,
5066 * because the 'last ptype' must be constant across the sublist, and all
5067 * other ptypes are handled per-packet.
5068 */
5069 /* Current (common) ptype of sublist */
5070 struct packet_type *pt_curr = NULL;
5071 /* Current (common) orig_dev of sublist */
5072 struct net_device *od_curr = NULL;
5073 struct list_head sublist;
5074 struct sk_buff *skb, *next;
5075
Edward Cree9af86f932018-07-09 18:10:19 +01005076 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005077 list_for_each_entry_safe(skb, next, head, list) {
5078 struct net_device *orig_dev = skb->dev;
5079 struct packet_type *pt_prev = NULL;
5080
Edward Cree22f6bbb2018-12-04 17:37:57 +00005081 skb_list_del_init(skb);
Edward Cree88eb1942018-07-02 16:13:56 +01005082 __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
Edward Cree9af86f932018-07-09 18:10:19 +01005083 if (!pt_prev)
5084 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005085 if (pt_curr != pt_prev || od_curr != orig_dev) {
5086 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005087 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5088 /* start new sublist */
Edward Cree9af86f932018-07-09 18:10:19 +01005089 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005090 pt_curr = pt_prev;
5091 od_curr = orig_dev;
5092 }
Edward Cree9af86f932018-07-09 18:10:19 +01005093 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005094 }
5095
5096 /* dispatch final sublist */
Edward Cree9af86f932018-07-09 18:10:19 +01005097 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005098}
5099
David S. Miller9754e292013-02-14 15:57:38 -05005100static int __netif_receive_skb(struct sk_buff *skb)
5101{
5102 int ret;
5103
5104 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005105 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005106
5107 /*
5108 * PFMEMALLOC skbs are special, they should
5109 * - be delivered to SOCK_MEMALLOC sockets only
5110 * - stay away from userspace
5111 * - have bounded memory usage
5112 *
5113 * Use PF_MEMALLOC as this saves us from propagating the allocation
5114 * context down to all allocation sites.
5115 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005116 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005117 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005118 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005119 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005120 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005121
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122 return ret;
5123}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005124
Edward Cree4ce00172018-07-02 16:13:40 +01005125static void __netif_receive_skb_list(struct list_head *head)
5126{
5127 unsigned long noreclaim_flag = 0;
5128 struct sk_buff *skb, *next;
5129 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5130
5131 list_for_each_entry_safe(skb, next, head, list) {
5132 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5133 struct list_head sublist;
5134
5135 /* Handle the previous sublist */
5136 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005137 if (!list_empty(&sublist))
5138 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005139 pfmemalloc = !pfmemalloc;
5140 /* See comments in __netif_receive_skb */
5141 if (pfmemalloc)
5142 noreclaim_flag = memalloc_noreclaim_save();
5143 else
5144 memalloc_noreclaim_restore(noreclaim_flag);
5145 }
5146 }
5147 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005148 if (!list_empty(head))
5149 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005150 /* Restore pflags */
5151 if (pfmemalloc)
5152 memalloc_noreclaim_restore(noreclaim_flag);
5153}
5154
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005155static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005156{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005157 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005158 struct bpf_prog *new = xdp->prog;
5159 int ret = 0;
5160
5161 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005162 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005163 rcu_assign_pointer(dev->xdp_prog, new);
5164 if (old)
5165 bpf_prog_put(old);
5166
5167 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005168 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005169 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005170 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005171 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005172 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005173 }
5174 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005175
5176 case XDP_QUERY_PROG:
Martin KaFai Lau58038692017-06-15 17:29:09 -07005177 xdp->prog_id = old ? old->aux->id : 0;
David S. Millerb5cdae32017-04-18 15:36:58 -04005178 break;
5179
5180 default:
5181 ret = -EINVAL;
5182 break;
5183 }
5184
5185 return ret;
5186}
5187
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005188static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005189{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005190 int ret;
5191
Eric Dumazet588f0332011-11-15 04:12:55 +00005192 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005193
Richard Cochranc1f19b52010-07-17 08:49:36 +00005194 if (skb_defer_rx_timestamp(skb))
5195 return NET_RX_SUCCESS;
5196
John Fastabendbbbe2112017-09-08 14:00:30 -07005197 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005198#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005199 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005200 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005201 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005202
Eric Dumazet3b098e22010-05-15 23:57:10 -07005203 if (cpu >= 0) {
5204 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5205 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005206 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005207 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005208 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005209#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005210 ret = __netif_receive_skb(skb);
5211 rcu_read_unlock();
5212 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005213}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005214
Edward Cree7da517a2018-07-02 16:13:24 +01005215static void netif_receive_skb_list_internal(struct list_head *head)
5216{
Edward Cree7da517a2018-07-02 16:13:24 +01005217 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005218 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005219
Edward Cree8c057ef2018-07-09 18:09:54 +01005220 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005221 list_for_each_entry_safe(skb, next, head, list) {
5222 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005223 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005224 if (!skb_defer_rx_timestamp(skb))
5225 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005226 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005227 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005228
Edward Cree7da517a2018-07-02 16:13:24 +01005229 rcu_read_lock();
5230#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005231 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005232 list_for_each_entry_safe(skb, next, head, list) {
5233 struct rps_dev_flow voidflow, *rflow = &voidflow;
5234 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5235
5236 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005237 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005238 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005239 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005240 }
5241 }
5242 }
5243#endif
5244 __netif_receive_skb_list(head);
5245 rcu_read_unlock();
5246}
5247
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005248/**
5249 * netif_receive_skb - process receive buffer from network
5250 * @skb: buffer to process
5251 *
5252 * netif_receive_skb() is the main receive data processing function.
5253 * It always succeeds. The buffer may be dropped during processing
5254 * for congestion control or by the protocol layers.
5255 *
5256 * This function may only be called from softirq context and interrupts
5257 * should be enabled.
5258 *
5259 * Return values (usually ignored):
5260 * NET_RX_SUCCESS: no congestion
5261 * NET_RX_DROP: packet was dropped
5262 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005263int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005264{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005265 int ret;
5266
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005267 trace_netif_receive_skb_entry(skb);
5268
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005269 ret = netif_receive_skb_internal(skb);
5270 trace_netif_receive_skb_exit(ret);
5271
5272 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005273}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005274EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Edward Creef6ad8c12018-07-02 16:12:45 +01005276/**
5277 * netif_receive_skb_list - process many receive buffers from network
5278 * @head: list of skbs to process.
5279 *
Edward Cree7da517a2018-07-02 16:13:24 +01005280 * Since return value of netif_receive_skb() is normally ignored, and
5281 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005282 *
5283 * This function may only be called from softirq context and interrupts
5284 * should be enabled.
5285 */
5286void netif_receive_skb_list(struct list_head *head)
5287{
Edward Cree7da517a2018-07-02 16:13:24 +01005288 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005289
Edward Creeb9f463d2018-07-02 16:14:44 +01005290 if (list_empty(head))
5291 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005292 if (trace_netif_receive_skb_list_entry_enabled()) {
5293 list_for_each_entry(skb, head, list)
5294 trace_netif_receive_skb_list_entry(skb);
5295 }
Edward Cree7da517a2018-07-02 16:13:24 +01005296 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005297 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005298}
5299EXPORT_SYMBOL(netif_receive_skb_list);
5300
Eric Dumazet41852492016-08-26 12:50:39 -07005301DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005302
5303/* Network device is going away, flush any packets still pending */
5304static void flush_backlog(struct work_struct *work)
5305{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005306 struct sk_buff *skb, *tmp;
5307 struct softnet_data *sd;
5308
5309 local_bh_disable();
5310 sd = this_cpu_ptr(&softnet_data);
5311
5312 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005313 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005314 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005315 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005316 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005317 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005318 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005319 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005320 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005321 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005322 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005323
5324 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005325 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005326 __skb_unlink(skb, &sd->process_queue);
5327 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005328 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005329 }
5330 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005331 local_bh_enable();
5332}
5333
Eric Dumazet41852492016-08-26 12:50:39 -07005334static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005335{
5336 unsigned int cpu;
5337
5338 get_online_cpus();
5339
Eric Dumazet41852492016-08-26 12:50:39 -07005340 for_each_online_cpu(cpu)
5341 queue_work_on(cpu, system_highpri_wq,
5342 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005343
5344 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07005345 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005346
5347 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005348}
5349
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005350INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
5351INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
Herbert Xud565b0a2008-12-15 23:38:52 -08005352static int napi_gro_complete(struct sk_buff *skb)
5353{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005354 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005355 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005356 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005357 int err = -ENOENT;
5358
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005359 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5360
Herbert Xufc59f9a2009-04-14 15:11:06 -07005361 if (NAPI_GRO_CB(skb)->count == 1) {
5362 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005363 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005364 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005365
5366 rcu_read_lock();
5367 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005368 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005369 continue;
5370
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005371 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5372 ipv6_gro_complete, inet_gro_complete,
5373 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005374 break;
5375 }
5376 rcu_read_unlock();
5377
5378 if (err) {
5379 WARN_ON(&ptype->list == head);
5380 kfree_skb(skb);
5381 return NET_RX_SUCCESS;
5382 }
5383
5384out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005385 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005386}
5387
Li RongQing6312fe72018-07-05 14:34:32 +08005388static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005389 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005390{
Li RongQing6312fe72018-07-05 14:34:32 +08005391 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005392 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005393
David Miller07d78362018-06-24 14:14:02 +09005394 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005395 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5396 return;
David S. Miller992cba72018-07-31 15:27:56 -07005397 skb_list_del_init(skb);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005398 napi_gro_complete(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005399 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005400 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005401
5402 if (!napi->gro_hash[index].count)
5403 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005404}
David Miller07d78362018-06-24 14:14:02 +09005405
Li RongQing6312fe72018-07-05 14:34:32 +08005406/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005407 * youngest packets at the head of it.
5408 * Complete skbs in reverse order to reduce latencies.
5409 */
5410void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5411{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005412 unsigned long bitmask = napi->gro_bitmask;
5413 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005414
Eric Dumazet42519ed2018-11-21 11:39:28 -08005415 while ((i = ffs(bitmask)) != 0) {
5416 bitmask >>= i;
5417 base += i;
5418 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005419 }
David Miller07d78362018-06-24 14:14:02 +09005420}
Eric Dumazet86cac582010-08-31 18:25:32 +00005421EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005422
David Miller07d78362018-06-24 14:14:02 +09005423static struct list_head *gro_list_prepare(struct napi_struct *napi,
5424 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005425{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005426 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005427 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005428 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005429 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005430
Li RongQing6312fe72018-07-05 14:34:32 +08005431 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005432 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005433 unsigned long diffs;
5434
Tom Herbert0b4cec82014-01-15 08:58:06 -08005435 NAPI_GRO_CB(p)->flush = 0;
5436
5437 if (hash != skb_get_hash_raw(p)) {
5438 NAPI_GRO_CB(p)->same_flow = 0;
5439 continue;
5440 }
5441
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005442 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005443 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5444 if (skb_vlan_tag_present(p))
5445 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08005446 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005447 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005448 if (maclen == ETH_HLEN)
5449 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005450 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005451 else if (!diffs)
5452 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005453 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005454 maclen);
5455 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005456 }
David Miller07d78362018-06-24 14:14:02 +09005457
5458 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005459}
5460
Jerry Chu299603e82013-12-11 20:53:45 -08005461static void skb_gro_reset_offset(struct sk_buff *skb)
5462{
5463 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5464 const skb_frag_t *frag0 = &pinfo->frags[0];
5465
5466 NAPI_GRO_CB(skb)->data_offset = 0;
5467 NAPI_GRO_CB(skb)->frag0 = NULL;
5468 NAPI_GRO_CB(skb)->frag0_len = 0;
5469
5470 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
5471 pinfo->nr_frags &&
5472 !PageHighMem(skb_frag_page(frag0))) {
5473 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005474 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5475 skb_frag_size(frag0),
5476 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005477 }
5478}
5479
Eric Dumazeta50e2332014-03-29 21:28:21 -07005480static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5481{
5482 struct skb_shared_info *pinfo = skb_shinfo(skb);
5483
5484 BUG_ON(skb->end - skb->tail < grow);
5485
5486 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5487
5488 skb->data_len -= grow;
5489 skb->tail += grow;
5490
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07005491 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005492 skb_frag_size_sub(&pinfo->frags[0], grow);
5493
5494 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5495 skb_frag_unref(skb, 0);
5496 memmove(pinfo->frags, pinfo->frags + 1,
5497 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5498 }
5499}
5500
Li RongQing6312fe72018-07-05 14:34:32 +08005501static void gro_flush_oldest(struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005502{
Li RongQing6312fe72018-07-05 14:34:32 +08005503 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005504
Li RongQing6312fe72018-07-05 14:34:32 +08005505 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005506
Li RongQing6312fe72018-07-05 14:34:32 +08005507 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005508 * impossible.
5509 */
5510 if (WARN_ON_ONCE(!oldest))
5511 return;
5512
Li RongQingd9f37d02018-07-13 14:41:36 +08005513 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5514 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005515 */
David S. Millerece23712018-10-28 10:35:12 -07005516 skb_list_del_init(oldest);
David Miller07d78362018-06-24 14:14:02 +09005517 napi_gro_complete(oldest);
5518}
5519
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005520INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
5521 struct sk_buff *));
5522INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
5523 struct sk_buff *));
Rami Rosenbb728822012-11-28 21:55:25 +00005524static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005525{
Li RongQing6312fe72018-07-05 14:34:32 +08005526 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005527 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005528 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005529 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005530 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005531 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005532 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005533 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005534 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005535
David S. Millerb5cdae32017-04-18 15:36:58 -04005536 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005537 goto normal;
5538
David Miller07d78362018-06-24 14:14:02 +09005539 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005540
Herbert Xud565b0a2008-12-15 23:38:52 -08005541 rcu_read_lock();
5542 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005543 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005544 continue;
5545
Herbert Xu86911732009-01-29 14:19:50 +00005546 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005547 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005548 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005549 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005550 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005551 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005552 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005553 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005554 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005555 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005556
Tom Herbert662880f2014-08-27 21:26:56 -07005557 /* Setup for GRO checksum validation */
5558 switch (skb->ip_summed) {
5559 case CHECKSUM_COMPLETE:
5560 NAPI_GRO_CB(skb)->csum = skb->csum;
5561 NAPI_GRO_CB(skb)->csum_valid = 1;
5562 NAPI_GRO_CB(skb)->csum_cnt = 0;
5563 break;
5564 case CHECKSUM_UNNECESSARY:
5565 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5566 NAPI_GRO_CB(skb)->csum_valid = 0;
5567 break;
5568 default:
5569 NAPI_GRO_CB(skb)->csum_cnt = 0;
5570 NAPI_GRO_CB(skb)->csum_valid = 0;
5571 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005572
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005573 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
5574 ipv6_gro_receive, inet_gro_receive,
5575 gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005576 break;
5577 }
5578 rcu_read_unlock();
5579
5580 if (&ptype->list == head)
5581 goto normal;
5582
Steffen Klassert25393d32017-02-15 09:39:44 +01005583 if (IS_ERR(pp) && PTR_ERR(pp) == -EINPROGRESS) {
5584 ret = GRO_CONSUMED;
5585 goto ok;
5586 }
5587
Herbert Xu0da2afd52008-12-26 14:57:42 -08005588 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005589 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005590
Herbert Xud565b0a2008-12-15 23:38:52 -08005591 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07005592 skb_list_del_init(pp);
David Millerd4546c22018-06-24 14:13:49 +09005593 napi_gro_complete(pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005594 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005595 }
5596
Herbert Xu0da2afd52008-12-26 14:57:42 -08005597 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005598 goto ok;
5599
Eric Dumazet600adc12014-01-09 14:12:19 -08005600 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005601 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005602
Li RongQing6312fe72018-07-05 14:34:32 +08005603 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
5604 gro_flush_oldest(gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005605 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005606 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005607 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005608 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005609 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005610 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005611 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005612 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005613 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005614
Herbert Xuad0f9902009-02-01 01:24:55 -08005615pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005616 grow = skb_gro_offset(skb) - skb_headlen(skb);
5617 if (grow > 0)
5618 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08005619ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08005620 if (napi->gro_hash[hash].count) {
5621 if (!test_bit(hash, &napi->gro_bitmask))
5622 __set_bit(hash, &napi->gro_bitmask);
5623 } else if (test_bit(hash, &napi->gro_bitmask)) {
5624 __clear_bit(hash, &napi->gro_bitmask);
5625 }
5626
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005627 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005628
5629normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08005630 ret = GRO_NORMAL;
5631 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08005632}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005633
Jerry Chubf5a7552014-01-07 10:23:19 -08005634struct packet_offload *gro_find_receive_by_type(__be16 type)
5635{
5636 struct list_head *offload_head = &offload_base;
5637 struct packet_offload *ptype;
5638
5639 list_for_each_entry_rcu(ptype, offload_head, list) {
5640 if (ptype->type != type || !ptype->callbacks.gro_receive)
5641 continue;
5642 return ptype;
5643 }
5644 return NULL;
5645}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005646EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08005647
5648struct packet_offload *gro_find_complete_by_type(__be16 type)
5649{
5650 struct list_head *offload_head = &offload_base;
5651 struct packet_offload *ptype;
5652
5653 list_for_each_entry_rcu(ptype, offload_head, list) {
5654 if (ptype->type != type || !ptype->callbacks.gro_complete)
5655 continue;
5656 return ptype;
5657 }
5658 return NULL;
5659}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005660EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005661
Michal Kubečeke44699d2017-06-29 11:13:36 +02005662static void napi_skb_free_stolen_head(struct sk_buff *skb)
5663{
5664 skb_dst_drop(skb);
5665 secpath_reset(skb);
5666 kmem_cache_free(skbuff_head_cache, skb);
5667}
5668
Rami Rosenbb728822012-11-28 21:55:25 +00005669static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08005670{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005671 switch (ret) {
5672 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005673 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005674 ret = GRO_DROP;
5675 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005676
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005677 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08005678 kfree_skb(skb);
5679 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005680
Eric Dumazetdaa86542012-04-19 07:07:40 +00005681 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02005682 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5683 napi_skb_free_stolen_head(skb);
5684 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00005685 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00005686 break;
5687
Ben Hutchings5b252f02009-10-29 07:17:09 +00005688 case GRO_HELD:
5689 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005690 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005691 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005692 }
5693
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005694 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005695}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005696
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005697gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005698{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005699 gro_result_t ret;
5700
Eric Dumazet93f93a42015-11-18 06:30:59 -08005701 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005702 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00005703
Eric Dumazeta50e2332014-03-29 21:28:21 -07005704 skb_gro_reset_offset(skb);
5705
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005706 ret = napi_skb_finish(dev_gro_receive(napi, skb), skb);
5707 trace_napi_gro_receive_exit(ret);
5708
5709 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005710}
5711EXPORT_SYMBOL(napi_gro_receive);
5712
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00005713static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005714{
Eric Dumazet93a35f52014-10-23 06:30:30 -07005715 if (unlikely(skb->pfmemalloc)) {
5716 consume_skb(skb);
5717 return;
5718 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005719 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00005720 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
5721 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01005722 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08005723 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08005724 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08005725
5726 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
5727 skb->pkt_type = PACKET_HOST;
5728
Jerry Chuc3caf112014-07-14 15:54:46 -07005729 skb->encapsulation = 0;
5730 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07005731 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Steffen Klassertf991bb92017-01-30 06:45:38 +01005732 secpath_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005733
5734 napi->skb = skb;
5735}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005736
Herbert Xu76620aa2009-04-16 02:02:07 -07005737struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08005738{
Herbert Xu5d38a072009-01-04 16:13:40 -08005739 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08005740
5741 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08005742 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08005743 if (skb) {
5744 napi->skb = skb;
5745 skb_mark_napi_id(skb, napi);
5746 }
Herbert Xu5d38a072009-01-04 16:13:40 -08005747 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005748 return skb;
5749}
Herbert Xu76620aa2009-04-16 02:02:07 -07005750EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005751
Edward Cree323ebb62019-08-06 14:53:55 +01005752/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5753static void gro_normal_list(struct napi_struct *napi)
5754{
5755 if (!napi->rx_count)
5756 return;
5757 netif_receive_skb_list_internal(&napi->rx_list);
5758 INIT_LIST_HEAD(&napi->rx_list);
5759 napi->rx_count = 0;
5760}
5761
5762/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5763 * pass the whole batch up to the stack.
5764 */
5765static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb)
5766{
5767 list_add_tail(&skb->list, &napi->rx_list);
5768 if (++napi->rx_count >= gro_normal_batch)
5769 gro_normal_list(napi);
5770}
5771
Eric Dumazeta50e2332014-03-29 21:28:21 -07005772static gro_result_t napi_frags_finish(struct napi_struct *napi,
5773 struct sk_buff *skb,
5774 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005775{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005776 switch (ret) {
5777 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005778 case GRO_HELD:
5779 __skb_push(skb, ETH_HLEN);
5780 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01005781 if (ret == GRO_NORMAL)
5782 gro_normal_one(napi, skb);
Herbert Xu86911732009-01-29 14:19:50 +00005783 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005784
5785 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005786 napi_reuse_skb(napi, skb);
5787 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005788
Michal Kubečeke44699d2017-06-29 11:13:36 +02005789 case GRO_MERGED_FREE:
5790 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5791 napi_skb_free_stolen_head(skb);
5792 else
5793 napi_reuse_skb(napi, skb);
5794 break;
5795
Ben Hutchings5b252f02009-10-29 07:17:09 +00005796 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005797 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005798 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005799 }
5800
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005801 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005802}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005803
Eric Dumazeta50e2332014-03-29 21:28:21 -07005804/* Upper GRO stack assumes network header starts at gro_offset=0
5805 * Drivers could call both napi_gro_frags() and napi_gro_receive()
5806 * We copy ethernet header into skb->data to have a common layout.
5807 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00005808static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005809{
Herbert Xu76620aa2009-04-16 02:02:07 -07005810 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005811 const struct ethhdr *eth;
5812 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07005813
5814 napi->skb = NULL;
5815
Eric Dumazeta50e2332014-03-29 21:28:21 -07005816 skb_reset_mac_header(skb);
5817 skb_gro_reset_offset(skb);
5818
Eric Dumazeta50e2332014-03-29 21:28:21 -07005819 if (unlikely(skb_gro_header_hard(skb, hlen))) {
5820 eth = skb_gro_header_slow(skb, hlen, 0);
5821 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04005822 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
5823 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005824 napi_reuse_skb(napi, skb);
5825 return NULL;
5826 }
5827 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07005828 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005829 gro_pull_from_frag0(skb, hlen);
5830 NAPI_GRO_CB(skb)->frag0 += hlen;
5831 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07005832 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07005833 __skb_pull(skb, hlen);
5834
5835 /*
5836 * This works because the only protocols we care about don't require
5837 * special handling.
5838 * We'll fix it up properly in napi_frags_finish()
5839 */
5840 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07005841
Herbert Xu76620aa2009-04-16 02:02:07 -07005842 return skb;
5843}
Herbert Xu76620aa2009-04-16 02:02:07 -07005844
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005845gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07005846{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005847 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07005848 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005849
5850 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005851 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08005852
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005853 trace_napi_gro_frags_entry(skb);
5854
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005855 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
5856 trace_napi_gro_frags_exit(ret);
5857
5858 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08005859}
5860EXPORT_SYMBOL(napi_gro_frags);
5861
Tom Herbert573e8fc2014-08-22 13:33:47 -07005862/* Compute the checksum from gro_offset and return the folded value
5863 * after adding in any pseudo checksum.
5864 */
5865__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
5866{
5867 __wsum wsum;
5868 __sum16 sum;
5869
5870 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
5871
5872 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
5873 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08005874 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07005875 if (likely(!sum)) {
5876 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
5877 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08005878 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07005879 }
5880
5881 NAPI_GRO_CB(skb)->csum = wsum;
5882 NAPI_GRO_CB(skb)->csum_valid = 1;
5883
5884 return sum;
5885}
5886EXPORT_SYMBOL(__skb_gro_checksum_complete);
5887
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305888static void net_rps_send_ipi(struct softnet_data *remsd)
5889{
5890#ifdef CONFIG_RPS
5891 while (remsd) {
5892 struct softnet_data *next = remsd->rps_ipi_next;
5893
5894 if (cpu_online(remsd->cpu))
5895 smp_call_function_single_async(remsd->cpu, &remsd->csd);
5896 remsd = next;
5897 }
5898#endif
5899}
5900
Eric Dumazete326bed2010-04-22 00:22:45 -07005901/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08005902 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07005903 * Note: called with local irq disabled, but exits with local irq enabled.
5904 */
5905static void net_rps_action_and_irq_enable(struct softnet_data *sd)
5906{
5907#ifdef CONFIG_RPS
5908 struct softnet_data *remsd = sd->rps_ipi_list;
5909
5910 if (remsd) {
5911 sd->rps_ipi_list = NULL;
5912
5913 local_irq_enable();
5914
5915 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305916 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07005917 } else
5918#endif
5919 local_irq_enable();
5920}
5921
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005922static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
5923{
5924#ifdef CONFIG_RPS
5925 return sd->rps_ipi_list != NULL;
5926#else
5927 return false;
5928#endif
5929}
5930
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005931static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005933 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005934 bool again = true;
5935 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
Eric Dumazete326bed2010-04-22 00:22:45 -07005937 /* Check if we have pending ipi, its better to send them now,
5938 * not waiting net_rx_action() end.
5939 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005940 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005941 local_irq_disable();
5942 net_rps_action_and_irq_enable(sd);
5943 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005944
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01005945 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005946 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948
Changli Gao6e7676c2010-04-27 15:07:33 -07005949 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005950 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005951 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005952 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005953 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005954 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00005955 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005956
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005959 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005960 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005961 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005962 /*
5963 * Inline a custom version of __napi_complete().
5964 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005965 * and NAPI_STATE_SCHED is the only possible flag set
5966 * on backlog.
5967 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005968 * and we dont need an smp_mb() memory barrier.
5969 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005970 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005971 again = false;
5972 } else {
5973 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5974 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005975 }
5976 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005977 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005980 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981}
5982
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005983/**
5984 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005985 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005986 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005987 * The entry's receive function will be scheduled to run.
5988 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005989 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005990void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005991{
5992 unsigned long flags;
5993
5994 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005995 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005996 local_irq_restore(flags);
5997}
5998EXPORT_SYMBOL(__napi_schedule);
5999
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006000/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006001 * napi_schedule_prep - check if napi can be scheduled
6002 * @n: napi context
6003 *
6004 * Test if NAPI routine is already running, and if not mark
6005 * it as running. This is used as a condition variable
6006 * insure only one NAPI poll instance runs. We also make
6007 * sure there is no pending NAPI disable.
6008 */
6009bool napi_schedule_prep(struct napi_struct *n)
6010{
6011 unsigned long val, new;
6012
6013 do {
6014 val = READ_ONCE(n->state);
6015 if (unlikely(val & NAPIF_STATE_DISABLE))
6016 return false;
6017 new = val | NAPIF_STATE_SCHED;
6018
6019 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6020 * This was suggested by Alexander Duyck, as compiler
6021 * emits better code than :
6022 * if (val & NAPIF_STATE_SCHED)
6023 * new |= NAPIF_STATE_MISSED;
6024 */
6025 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6026 NAPIF_STATE_MISSED;
6027 } while (cmpxchg(&n->state, val, new) != val);
6028
6029 return !(val & NAPIF_STATE_SCHED);
6030}
6031EXPORT_SYMBOL(napi_schedule_prep);
6032
6033/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006034 * __napi_schedule_irqoff - schedule for receive
6035 * @n: entry to schedule
6036 *
6037 * Variant of __napi_schedule() assuming hard irqs are masked
6038 */
6039void __napi_schedule_irqoff(struct napi_struct *n)
6040{
6041 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6042}
6043EXPORT_SYMBOL(__napi_schedule_irqoff);
6044
Eric Dumazet364b6052016-11-15 10:15:13 -08006045bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006046{
Eric Dumazet39e6c822017-02-28 10:34:50 -08006047 unsigned long flags, val, new;
Herbert Xud565b0a2008-12-15 23:38:52 -08006048
6049 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006050 * 1) Don't let napi dequeue from the cpu poll list
6051 * just in case its running on a different cpu.
6052 * 2) If we are busy polling, do nothing here, we have
6053 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006054 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006055 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6056 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006057 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006058
Edward Cree323ebb62019-08-06 14:53:55 +01006059 gro_normal_list(n);
6060
Li RongQingd9f37d02018-07-13 14:41:36 +08006061 if (n->gro_bitmask) {
Eric Dumazet3b47d302014-11-06 21:09:44 -08006062 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006063
Eric Dumazet3b47d302014-11-06 21:09:44 -08006064 if (work_done)
6065 timeout = n->dev->gro_flush_timeout;
6066
Paolo Abeni605108a2018-11-21 18:21:35 +01006067 /* When the NAPI instance uses a timeout and keeps postponing
6068 * it, we need to bound somehow the time packets are kept in
6069 * the GRO layer
6070 */
6071 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006072 if (timeout)
6073 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6074 HRTIMER_MODE_REL_PINNED);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006075 }
Eric Dumazet02c16022017-02-04 15:25:02 -08006076 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006077 /* If n->poll_list is not empty, we need to mask irqs */
6078 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006079 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006080 local_irq_restore(flags);
6081 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006082
6083 do {
6084 val = READ_ONCE(n->state);
6085
6086 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6087
6088 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
6089
6090 /* If STATE_MISSED was set, leave STATE_SCHED set,
6091 * because we will call napi->poll() one more time.
6092 * This C code was suggested by Alexander Duyck to help gcc.
6093 */
6094 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6095 NAPIF_STATE_SCHED;
6096 } while (cmpxchg(&n->state, val, new) != val);
6097
6098 if (unlikely(val & NAPIF_STATE_MISSED)) {
6099 __napi_schedule(n);
6100 return false;
6101 }
6102
Eric Dumazet364b6052016-11-15 10:15:13 -08006103 return true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006104}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006105EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006106
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006107/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006108static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006109{
6110 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6111 struct napi_struct *napi;
6112
6113 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6114 if (napi->napi_id == napi_id)
6115 return napi;
6116
6117 return NULL;
6118}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006119
6120#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006121
Eric Dumazetce6aea92015-11-18 06:30:54 -08006122#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08006123
6124static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
6125{
6126 int rc;
6127
Eric Dumazet39e6c822017-02-28 10:34:50 -08006128 /* Busy polling means there is a high chance device driver hard irq
6129 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6130 * set in napi_schedule_prep().
6131 * Since we are about to call napi->poll() once more, we can safely
6132 * clear NAPI_STATE_MISSED.
6133 *
6134 * Note: x86 could use a single "lock and ..." instruction
6135 * to perform these two clear_bit()
6136 */
6137 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006138 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6139
6140 local_bh_disable();
6141
6142 /* All we really want here is to re-enable device interrupts.
6143 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6144 */
6145 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Edward Cree323ebb62019-08-06 14:53:55 +01006146 /* We can't gro_normal_list() here, because napi->poll() might have
6147 * rearmed the napi (napi_complete_done()) in which case it could
6148 * already be running on another CPU.
6149 */
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02006150 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006151 netpoll_poll_unlock(have_poll_lock);
Edward Cree323ebb62019-08-06 14:53:55 +01006152 if (rc == BUSY_POLL_BUDGET) {
6153 /* As the whole budget was spent, we still own the napi so can
6154 * safely handle the rx_list.
6155 */
6156 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006157 __napi_schedule(napi);
Edward Cree323ebb62019-08-06 14:53:55 +01006158 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006159 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006160}
6161
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006162void napi_busy_loop(unsigned int napi_id,
6163 bool (*loop_end)(void *, unsigned long),
6164 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006165{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006166 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006167 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006168 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006169 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006170
6171restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006172 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006173
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006174 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006175
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006176 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006177 if (!napi)
6178 goto out;
6179
Eric Dumazet217f6972016-11-15 10:15:11 -08006180 preempt_disable();
6181 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006182 int work = 0;
6183
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006184 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006185 if (!napi_poll) {
6186 unsigned long val = READ_ONCE(napi->state);
6187
6188 /* If multiple threads are competing for this napi,
6189 * we avoid dirtying napi->state as much as we can.
6190 */
6191 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6192 NAPIF_STATE_IN_BUSY_POLL))
6193 goto count;
6194 if (cmpxchg(&napi->state, val,
6195 val | NAPIF_STATE_IN_BUSY_POLL |
6196 NAPIF_STATE_SCHED) != val)
6197 goto count;
6198 have_poll_lock = netpoll_poll_lock(napi);
6199 napi_poll = napi->poll;
6200 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006201 work = napi_poll(napi, BUSY_POLL_BUDGET);
6202 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Edward Cree323ebb62019-08-06 14:53:55 +01006203 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006204count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006205 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006206 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006207 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006208 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006209
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006210 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006211 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006212
Eric Dumazet217f6972016-11-15 10:15:11 -08006213 if (unlikely(need_resched())) {
6214 if (napi_poll)
6215 busy_poll_stop(napi, have_poll_lock);
6216 preempt_enable();
6217 rcu_read_unlock();
6218 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006219 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006220 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006221 goto restart;
6222 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006223 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006224 }
6225 if (napi_poll)
6226 busy_poll_stop(napi, have_poll_lock);
6227 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006228out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006229 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006230}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006231EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006232
6233#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006234
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006235static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006236{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08006237 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
6238 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006239 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006240
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006241 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006242
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006243 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006244 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006245 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6246 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006247 } while (napi_by_id(napi_gen_id));
6248 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006249
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006250 hlist_add_head_rcu(&napi->napi_hash_node,
6251 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006252
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006253 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006254}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006255
6256/* Warning : caller is responsible to make sure rcu grace period
6257 * is respected before freeing memory containing @napi
6258 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08006259bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006260{
Eric Dumazet34cbe272015-11-18 06:31:02 -08006261 bool rcu_sync_needed = false;
6262
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006263 spin_lock(&napi_hash_lock);
6264
Eric Dumazet34cbe272015-11-18 06:31:02 -08006265 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
6266 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006267 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006268 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006269 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006270 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006271}
6272EXPORT_SYMBOL_GPL(napi_hash_del);
6273
Eric Dumazet3b47d302014-11-06 21:09:44 -08006274static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6275{
6276 struct napi_struct *napi;
6277
6278 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006279
6280 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6281 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6282 */
Li RongQingd9f37d02018-07-13 14:41:36 +08006283 if (napi->gro_bitmask && !napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006284 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6285 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006286
6287 return HRTIMER_NORESTART;
6288}
6289
David S. Miller7c4ec742018-07-20 23:37:55 -07006290static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006291{
David Miller07d78362018-06-24 14:14:02 +09006292 int i;
6293
Li RongQing6312fe72018-07-05 14:34:32 +08006294 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6295 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6296 napi->gro_hash[i].count = 0;
6297 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006298 napi->gro_bitmask = 0;
6299}
6300
6301void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6302 int (*poll)(struct napi_struct *, int), int weight)
6303{
6304 INIT_LIST_HEAD(&napi->poll_list);
6305 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6306 napi->timer.function = napi_watchdog;
6307 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006308 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006309 INIT_LIST_HEAD(&napi->rx_list);
6310 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006311 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006312 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006313 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6314 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006315 napi->weight = weight;
6316 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08006317 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006318#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006319 napi->poll_owner = -1;
6320#endif
6321 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006322 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006323}
6324EXPORT_SYMBOL(netif_napi_add);
6325
Eric Dumazet3b47d302014-11-06 21:09:44 -08006326void napi_disable(struct napi_struct *n)
6327{
6328 might_sleep();
6329 set_bit(NAPI_STATE_DISABLE, &n->state);
6330
6331 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6332 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006333 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6334 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006335
6336 hrtimer_cancel(&n->timer);
6337
6338 clear_bit(NAPI_STATE_DISABLE, &n->state);
6339}
6340EXPORT_SYMBOL(napi_disable);
6341
David Miller07d78362018-06-24 14:14:02 +09006342static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006343{
David Miller07d78362018-06-24 14:14:02 +09006344 int i;
David Millerd4546c22018-06-24 14:13:49 +09006345
David Miller07d78362018-06-24 14:14:02 +09006346 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6347 struct sk_buff *skb, *n;
6348
Li RongQing6312fe72018-07-05 14:34:32 +08006349 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006350 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006351 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006352 }
David Millerd4546c22018-06-24 14:13:49 +09006353}
6354
Eric Dumazet93d05d42015-11-18 06:31:03 -08006355/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08006356void netif_napi_del(struct napi_struct *napi)
6357{
Eric Dumazet93d05d42015-11-18 06:31:03 -08006358 might_sleep();
6359 if (napi_hash_del(napi))
6360 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08006361 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006362 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006363
David Miller07d78362018-06-24 14:14:02 +09006364 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006365 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006366}
6367EXPORT_SYMBOL(netif_napi_del);
6368
Herbert Xu726ce702014-12-21 07:16:21 +11006369static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6370{
6371 void *have;
6372 int work, weight;
6373
6374 list_del_init(&n->poll_list);
6375
6376 have = netpoll_poll_lock(n);
6377
6378 weight = n->weight;
6379
6380 /* This NAPI_STATE_SCHED test is for avoiding a race
6381 * with netpoll's poll_napi(). Only the entity which
6382 * obtains the lock and sees NAPI_STATE_SCHED set will
6383 * actually make the ->poll() call. Therefore we avoid
6384 * accidentally calling ->poll() when NAPI is not scheduled.
6385 */
6386 work = 0;
6387 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6388 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006389 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006390 }
6391
6392 WARN_ON_ONCE(work > weight);
6393
6394 if (likely(work < weight))
6395 goto out_unlock;
6396
6397 /* Drivers must not modify the NAPI state if they
6398 * consume the entire weight. In such cases this code
6399 * still "owns" the NAPI instance and therefore can
6400 * move the instance around on the list at-will.
6401 */
6402 if (unlikely(napi_disable_pending(n))) {
6403 napi_complete(n);
6404 goto out_unlock;
6405 }
6406
Edward Cree323ebb62019-08-06 14:53:55 +01006407 gro_normal_list(n);
6408
Li RongQingd9f37d02018-07-13 14:41:36 +08006409 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006410 /* flush too old packets
6411 * If HZ < 1000, flush all packets.
6412 */
6413 napi_gro_flush(n, HZ >= 1000);
6414 }
6415
Herbert Xu001ce542014-12-21 07:16:22 +11006416 /* Some drivers may have called napi_schedule
6417 * prior to exhausting their budget.
6418 */
6419 if (unlikely(!list_empty(&n->poll_list))) {
6420 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6421 n->dev ? n->dev->name : "backlog");
6422 goto out_unlock;
6423 }
6424
Herbert Xu726ce702014-12-21 07:16:21 +11006425 list_add_tail(&n->poll_list, repoll);
6426
6427out_unlock:
6428 netpoll_poll_unlock(have);
6429
6430 return work;
6431}
6432
Emese Revfy0766f782016-06-20 20:42:34 +02006433static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006435 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006436 unsigned long time_limit = jiffies +
6437 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006438 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006439 LIST_HEAD(list);
6440 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006441
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006443 list_splice_init(&sd->poll_list, &list);
6444 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006446 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006447 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006449 if (list_empty(&list)) {
6450 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006451 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006452 break;
6453 }
6454
Herbert Xu6bd373e2014-12-21 07:16:24 +11006455 n = list_first_entry(&list, struct napi_struct, poll_list);
6456 budget -= napi_poll(n, &repoll);
6457
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006458 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006459 * Allow this to run for 2 jiffies since which will allow
6460 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006461 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006462 if (unlikely(budget <= 0 ||
6463 time_after_eq(jiffies, time_limit))) {
6464 sd->time_squeeze++;
6465 break;
6466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006468
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006469 local_irq_disable();
6470
6471 list_splice_tail_init(&sd->poll_list, &list);
6472 list_splice_tail(&repoll, &list);
6473 list_splice(&list, &sd->poll_list);
6474 if (!list_empty(&sd->poll_list))
6475 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6476
Eric Dumazete326bed2010-04-22 00:22:45 -07006477 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006478out:
6479 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480}
6481
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006482struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006483 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006484
6485 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006486 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006487
Veaceslav Falico5d261912013-08-28 23:25:05 +02006488 /* counter for the number of times this device was added to us */
6489 u16 ref_nr;
6490
Veaceslav Falico402dae92013-09-25 09:20:09 +02006491 /* private field for the users */
6492 void *private;
6493
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006494 struct list_head list;
6495 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006496};
6497
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006498static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006499 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006500{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006501 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006502
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006503 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006504 if (adj->dev == adj_dev)
6505 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006506 }
6507 return NULL;
6508}
6509
David Ahernf1170fd2016-10-17 19:15:51 -07006510static int __netdev_has_upper_dev(struct net_device *upper_dev, void *data)
6511{
6512 struct net_device *dev = data;
6513
6514 return upper_dev == dev;
6515}
6516
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006517/**
6518 * netdev_has_upper_dev - Check if device is linked to an upper device
6519 * @dev: device
6520 * @upper_dev: upper device to check
6521 *
6522 * Find out if a device is linked to specified upper device and return true
6523 * in case it is. Note that this checks only immediate upper device,
6524 * not through a complete stack of devices. The caller must hold the RTNL lock.
6525 */
6526bool netdev_has_upper_dev(struct net_device *dev,
6527 struct net_device *upper_dev)
6528{
6529 ASSERT_RTNL();
6530
David Ahernf1170fd2016-10-17 19:15:51 -07006531 return netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6532 upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006533}
6534EXPORT_SYMBOL(netdev_has_upper_dev);
6535
6536/**
David Ahern1a3f0602016-10-17 19:15:44 -07006537 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6538 * @dev: device
6539 * @upper_dev: upper device to check
6540 *
6541 * Find out if a device is linked to specified upper device and return true
6542 * in case it is. Note that this checks the entire upper device chain.
6543 * The caller must hold rcu lock.
6544 */
6545
David Ahern1a3f0602016-10-17 19:15:44 -07006546bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6547 struct net_device *upper_dev)
6548{
6549 return !!netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6550 upper_dev);
6551}
6552EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6553
6554/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006555 * netdev_has_any_upper_dev - Check if device is linked to some device
6556 * @dev: device
6557 *
6558 * Find out if a device is linked to an upper device and return true in case
6559 * it is. The caller must hold the RTNL lock.
6560 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006561bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006562{
6563 ASSERT_RTNL();
6564
David Ahernf1170fd2016-10-17 19:15:51 -07006565 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006566}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006567EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006568
6569/**
6570 * netdev_master_upper_dev_get - Get master upper device
6571 * @dev: device
6572 *
6573 * Find a master upper device and return pointer to it or NULL in case
6574 * it's not there. The caller must hold the RTNL lock.
6575 */
6576struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6577{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006578 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006579
6580 ASSERT_RTNL();
6581
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006582 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006583 return NULL;
6584
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006585 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006586 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006587 if (likely(upper->master))
6588 return upper->dev;
6589 return NULL;
6590}
6591EXPORT_SYMBOL(netdev_master_upper_dev_get);
6592
David Ahern0f524a82016-10-17 19:15:52 -07006593/**
6594 * netdev_has_any_lower_dev - Check if device is linked to some device
6595 * @dev: device
6596 *
6597 * Find out if a device is linked to a lower device and return true in case
6598 * it is. The caller must hold the RTNL lock.
6599 */
6600static bool netdev_has_any_lower_dev(struct net_device *dev)
6601{
6602 ASSERT_RTNL();
6603
6604 return !list_empty(&dev->adj_list.lower);
6605}
6606
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02006607void *netdev_adjacent_get_private(struct list_head *adj_list)
6608{
6609 struct netdev_adjacent *adj;
6610
6611 adj = list_entry(adj_list, struct netdev_adjacent, list);
6612
6613 return adj->private;
6614}
6615EXPORT_SYMBOL(netdev_adjacent_get_private);
6616
Veaceslav Falico31088a12013-09-25 09:20:12 +02006617/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04006618 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
6619 * @dev: device
6620 * @iter: list_head ** of the current position
6621 *
6622 * Gets the next device from the dev's upper list, starting from iter
6623 * position. The caller must hold RCU read lock.
6624 */
6625struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
6626 struct list_head **iter)
6627{
6628 struct netdev_adjacent *upper;
6629
6630 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6631
6632 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6633
6634 if (&upper->list == &dev->adj_list.upper)
6635 return NULL;
6636
6637 *iter = &upper->list;
6638
6639 return upper->dev;
6640}
6641EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
6642
David Ahern1a3f0602016-10-17 19:15:44 -07006643static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
6644 struct list_head **iter)
6645{
6646 struct netdev_adjacent *upper;
6647
6648 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6649
6650 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6651
6652 if (&upper->list == &dev->adj_list.upper)
6653 return NULL;
6654
6655 *iter = &upper->list;
6656
6657 return upper->dev;
6658}
6659
6660int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
6661 int (*fn)(struct net_device *dev,
6662 void *data),
6663 void *data)
6664{
6665 struct net_device *udev;
6666 struct list_head *iter;
6667 int ret;
6668
6669 for (iter = &dev->adj_list.upper,
6670 udev = netdev_next_upper_dev_rcu(dev, &iter);
6671 udev;
6672 udev = netdev_next_upper_dev_rcu(dev, &iter)) {
6673 /* first is the upper device itself */
6674 ret = fn(udev, data);
6675 if (ret)
6676 return ret;
6677
6678 /* then look at all of its upper devices */
6679 ret = netdev_walk_all_upper_dev_rcu(udev, fn, data);
6680 if (ret)
6681 return ret;
6682 }
6683
6684 return 0;
6685}
6686EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
6687
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006688/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02006689 * netdev_lower_get_next_private - Get the next ->private from the
6690 * lower neighbour list
6691 * @dev: device
6692 * @iter: list_head ** of the current position
6693 *
6694 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6695 * list, starting from iter position. The caller must hold either hold the
6696 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006697 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02006698 */
6699void *netdev_lower_get_next_private(struct net_device *dev,
6700 struct list_head **iter)
6701{
6702 struct netdev_adjacent *lower;
6703
6704 lower = list_entry(*iter, struct netdev_adjacent, list);
6705
6706 if (&lower->list == &dev->adj_list.lower)
6707 return NULL;
6708
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006709 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006710
6711 return lower->private;
6712}
6713EXPORT_SYMBOL(netdev_lower_get_next_private);
6714
6715/**
6716 * netdev_lower_get_next_private_rcu - Get the next ->private from the
6717 * lower neighbour list, RCU
6718 * variant
6719 * @dev: device
6720 * @iter: list_head ** of the current position
6721 *
6722 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6723 * list, starting from iter position. The caller must hold RCU read lock.
6724 */
6725void *netdev_lower_get_next_private_rcu(struct net_device *dev,
6726 struct list_head **iter)
6727{
6728 struct netdev_adjacent *lower;
6729
6730 WARN_ON_ONCE(!rcu_read_lock_held());
6731
6732 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6733
6734 if (&lower->list == &dev->adj_list.lower)
6735 return NULL;
6736
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006737 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006738
6739 return lower->private;
6740}
6741EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
6742
6743/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006744 * netdev_lower_get_next - Get the next device from the lower neighbour
6745 * list
6746 * @dev: device
6747 * @iter: list_head ** of the current position
6748 *
6749 * Gets the next netdev_adjacent from the dev's lower neighbour
6750 * list, starting from iter position. The caller must hold RTNL lock or
6751 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006752 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006753 */
6754void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
6755{
6756 struct netdev_adjacent *lower;
6757
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006758 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006759
6760 if (&lower->list == &dev->adj_list.lower)
6761 return NULL;
6762
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006763 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006764
6765 return lower->dev;
6766}
6767EXPORT_SYMBOL(netdev_lower_get_next);
6768
David Ahern1a3f0602016-10-17 19:15:44 -07006769static struct net_device *netdev_next_lower_dev(struct net_device *dev,
6770 struct list_head **iter)
6771{
6772 struct netdev_adjacent *lower;
6773
David Ahern46b5ab12016-10-26 13:21:33 -07006774 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07006775
6776 if (&lower->list == &dev->adj_list.lower)
6777 return NULL;
6778
David Ahern46b5ab12016-10-26 13:21:33 -07006779 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07006780
6781 return lower->dev;
6782}
6783
6784int netdev_walk_all_lower_dev(struct net_device *dev,
6785 int (*fn)(struct net_device *dev,
6786 void *data),
6787 void *data)
6788{
6789 struct net_device *ldev;
6790 struct list_head *iter;
6791 int ret;
6792
6793 for (iter = &dev->adj_list.lower,
6794 ldev = netdev_next_lower_dev(dev, &iter);
6795 ldev;
6796 ldev = netdev_next_lower_dev(dev, &iter)) {
6797 /* first is the lower device itself */
6798 ret = fn(ldev, data);
6799 if (ret)
6800 return ret;
6801
6802 /* then look at all of its lower devices */
6803 ret = netdev_walk_all_lower_dev(ldev, fn, data);
6804 if (ret)
6805 return ret;
6806 }
6807
6808 return 0;
6809}
6810EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
6811
David Ahern1a3f0602016-10-17 19:15:44 -07006812static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
6813 struct list_head **iter)
6814{
6815 struct netdev_adjacent *lower;
6816
6817 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6818 if (&lower->list == &dev->adj_list.lower)
6819 return NULL;
6820
6821 *iter = &lower->list;
6822
6823 return lower->dev;
6824}
6825
6826int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
6827 int (*fn)(struct net_device *dev,
6828 void *data),
6829 void *data)
6830{
6831 struct net_device *ldev;
6832 struct list_head *iter;
6833 int ret;
6834
6835 for (iter = &dev->adj_list.lower,
6836 ldev = netdev_next_lower_dev_rcu(dev, &iter);
6837 ldev;
6838 ldev = netdev_next_lower_dev_rcu(dev, &iter)) {
6839 /* first is the lower device itself */
6840 ret = fn(ldev, data);
6841 if (ret)
6842 return ret;
6843
6844 /* then look at all of its lower devices */
6845 ret = netdev_walk_all_lower_dev_rcu(ldev, fn, data);
6846 if (ret)
6847 return ret;
6848 }
6849
6850 return 0;
6851}
6852EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
6853
Jiri Pirko7ce856a2016-07-04 08:23:12 +02006854/**
dingtianhonge001bfa2013-12-13 10:19:55 +08006855 * netdev_lower_get_first_private_rcu - Get the first ->private from the
6856 * lower neighbour list, RCU
6857 * variant
6858 * @dev: device
6859 *
6860 * Gets the first netdev_adjacent->private from the dev's lower neighbour
6861 * list. The caller must hold RCU read lock.
6862 */
6863void *netdev_lower_get_first_private_rcu(struct net_device *dev)
6864{
6865 struct netdev_adjacent *lower;
6866
6867 lower = list_first_or_null_rcu(&dev->adj_list.lower,
6868 struct netdev_adjacent, list);
6869 if (lower)
6870 return lower->private;
6871 return NULL;
6872}
6873EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
6874
6875/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006876 * netdev_master_upper_dev_get_rcu - Get master upper device
6877 * @dev: device
6878 *
6879 * Find a master upper device and return pointer to it or NULL in case
6880 * it's not there. The caller must hold the RCU read lock.
6881 */
6882struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
6883{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006884 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006885
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006886 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006887 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006888 if (upper && likely(upper->master))
6889 return upper->dev;
6890 return NULL;
6891}
6892EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
6893
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306894static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006895 struct net_device *adj_dev,
6896 struct list_head *dev_list)
6897{
6898 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006899
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006900 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6901 "upper_%s" : "lower_%s", adj_dev->name);
6902 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
6903 linkname);
6904}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306905static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006906 char *name,
6907 struct list_head *dev_list)
6908{
6909 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006910
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006911 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6912 "upper_%s" : "lower_%s", name);
6913 sysfs_remove_link(&(dev->dev.kobj), linkname);
6914}
6915
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006916static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
6917 struct net_device *adj_dev,
6918 struct list_head *dev_list)
6919{
6920 return (dev_list == &dev->adj_list.upper ||
6921 dev_list == &dev->adj_list.lower) &&
6922 net_eq(dev_net(dev), dev_net(adj_dev));
6923}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006924
Veaceslav Falico5d261912013-08-28 23:25:05 +02006925static int __netdev_adjacent_dev_insert(struct net_device *dev,
6926 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02006927 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006928 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006929{
6930 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006931 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006932
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006933 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006934
6935 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07006936 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07006937 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
6938 dev->name, adj_dev->name, adj->ref_nr);
6939
Veaceslav Falico5d261912013-08-28 23:25:05 +02006940 return 0;
6941 }
6942
6943 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
6944 if (!adj)
6945 return -ENOMEM;
6946
6947 adj->dev = adj_dev;
6948 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07006949 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006950 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006951 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006952
David Ahern67b62f92016-10-17 19:15:53 -07006953 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
6954 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006955
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006956 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006957 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006958 if (ret)
6959 goto free_adj;
6960 }
6961
Veaceslav Falico7863c052013-09-25 09:20:06 +02006962 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006963 if (master) {
6964 ret = sysfs_create_link(&(dev->dev.kobj),
6965 &(adj_dev->dev.kobj), "master");
6966 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02006967 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006968
Veaceslav Falico7863c052013-09-25 09:20:06 +02006969 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006970 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02006971 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006972 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006973
6974 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006975
Veaceslav Falico5831d662013-09-25 09:20:32 +02006976remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006977 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006978 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006979free_adj:
6980 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02006981 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006982
6983 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006984}
6985
stephen hemminger1d143d92013-12-29 14:01:29 -08006986static void __netdev_adjacent_dev_remove(struct net_device *dev,
6987 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006988 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006989 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006990{
6991 struct netdev_adjacent *adj;
6992
David Ahern67b62f92016-10-17 19:15:53 -07006993 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
6994 dev->name, adj_dev->name, ref_nr);
6995
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006996 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006997
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006998 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07006999 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007000 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07007001 WARN_ON(1);
7002 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007003 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007004
Andrew Collins93409032016-10-03 13:43:02 -06007005 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07007006 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7007 dev->name, adj_dev->name, ref_nr,
7008 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06007009 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007010 return;
7011 }
7012
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007013 if (adj->master)
7014 sysfs_remove_link(&(dev->dev.kobj), "master");
7015
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007016 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007017 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007018
Veaceslav Falico5d261912013-08-28 23:25:05 +02007019 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07007020 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007021 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007022 dev_put(adj_dev);
7023 kfree_rcu(adj, rcu);
7024}
7025
stephen hemminger1d143d92013-12-29 14:01:29 -08007026static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7027 struct net_device *upper_dev,
7028 struct list_head *up_list,
7029 struct list_head *down_list,
7030 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007031{
7032 int ret;
7033
David Ahern790510d2016-10-17 19:15:43 -07007034 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06007035 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007036 if (ret)
7037 return ret;
7038
David Ahern790510d2016-10-17 19:15:43 -07007039 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06007040 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007041 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07007042 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007043 return ret;
7044 }
7045
7046 return 0;
7047}
7048
stephen hemminger1d143d92013-12-29 14:01:29 -08007049static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7050 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007051 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007052 struct list_head *up_list,
7053 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007054{
Andrew Collins93409032016-10-03 13:43:02 -06007055 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7056 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007057}
7058
stephen hemminger1d143d92013-12-29 14:01:29 -08007059static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7060 struct net_device *upper_dev,
7061 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007062{
David Ahernf1170fd2016-10-17 19:15:51 -07007063 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7064 &dev->adj_list.upper,
7065 &upper_dev->adj_list.lower,
7066 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007067}
7068
stephen hemminger1d143d92013-12-29 14:01:29 -08007069static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7070 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007071{
Andrew Collins93409032016-10-03 13:43:02 -06007072 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007073 &dev->adj_list.upper,
7074 &upper_dev->adj_list.lower);
7075}
Veaceslav Falico5d261912013-08-28 23:25:05 +02007076
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007077static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007078 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07007079 void *upper_priv, void *upper_info,
7080 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007081{
David Ahern51d0c0472017-10-04 17:48:45 -07007082 struct netdev_notifier_changeupper_info changeupper_info = {
7083 .info = {
7084 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007085 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07007086 },
7087 .upper_dev = upper_dev,
7088 .master = master,
7089 .linking = true,
7090 .upper_info = upper_info,
7091 };
Mike Manning50d629e2018-02-26 23:49:30 +00007092 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007093 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007094
7095 ASSERT_RTNL();
7096
7097 if (dev == upper_dev)
7098 return -EBUSY;
7099
7100 /* To prevent loops, check if dev is not upper device to upper_dev. */
David Ahernf1170fd2016-10-17 19:15:51 -07007101 if (netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007102 return -EBUSY;
7103
Mike Manning50d629e2018-02-26 23:49:30 +00007104 if (!master) {
7105 if (netdev_has_upper_dev(dev, upper_dev))
7106 return -EEXIST;
7107 } else {
7108 master_dev = netdev_master_upper_dev_get(dev);
7109 if (master_dev)
7110 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7111 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007112
David Ahern51d0c0472017-10-04 17:48:45 -07007113 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007114 &changeupper_info.info);
7115 ret = notifier_to_errno(ret);
7116 if (ret)
7117 return ret;
7118
Jiri Pirko6dffb042015-12-03 12:12:10 +01007119 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007120 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007121 if (ret)
7122 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007123
David Ahern51d0c0472017-10-04 17:48:45 -07007124 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01007125 &changeupper_info.info);
7126 ret = notifier_to_errno(ret);
7127 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07007128 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01007129
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007130 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007131
David Ahernf1170fd2016-10-17 19:15:51 -07007132rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007133 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007134
7135 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007136}
7137
7138/**
7139 * netdev_upper_dev_link - Add a link to the upper device
7140 * @dev: device
7141 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007142 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007143 *
7144 * Adds a link to device which is upper to this one. The caller must hold
7145 * the RTNL lock. On a failure a negative errno code is returned.
7146 * On success the reference counts are adjusted and the function
7147 * returns zero.
7148 */
7149int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007150 struct net_device *upper_dev,
7151 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007152{
David Ahern42ab19e2017-10-04 17:48:47 -07007153 return __netdev_upper_dev_link(dev, upper_dev, false,
7154 NULL, NULL, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007155}
7156EXPORT_SYMBOL(netdev_upper_dev_link);
7157
7158/**
7159 * netdev_master_upper_dev_link - Add a master link to the upper device
7160 * @dev: device
7161 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007162 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007163 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007164 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007165 *
7166 * Adds a link to device which is upper to this one. In this case, only
7167 * one master upper device can be linked, although other non-master devices
7168 * might be linked as well. The caller must hold the RTNL lock.
7169 * On a failure a negative errno code is returned. On success the reference
7170 * counts are adjusted and the function returns zero.
7171 */
7172int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007173 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007174 void *upper_priv, void *upper_info,
7175 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007176{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007177 return __netdev_upper_dev_link(dev, upper_dev, true,
David Ahern42ab19e2017-10-04 17:48:47 -07007178 upper_priv, upper_info, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007179}
7180EXPORT_SYMBOL(netdev_master_upper_dev_link);
7181
7182/**
7183 * netdev_upper_dev_unlink - Removes a link to upper device
7184 * @dev: device
7185 * @upper_dev: new upper device
7186 *
7187 * Removes a link to device which is upper to this one. The caller must hold
7188 * the RTNL lock.
7189 */
7190void netdev_upper_dev_unlink(struct net_device *dev,
7191 struct net_device *upper_dev)
7192{
David Ahern51d0c0472017-10-04 17:48:45 -07007193 struct netdev_notifier_changeupper_info changeupper_info = {
7194 .info = {
7195 .dev = dev,
7196 },
7197 .upper_dev = upper_dev,
7198 .linking = false,
7199 };
tchardingf4563a72017-02-09 17:56:07 +11007200
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007201 ASSERT_RTNL();
7202
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007203 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007204
David Ahern51d0c0472017-10-04 17:48:45 -07007205 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007206 &changeupper_info.info);
7207
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007208 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007209
David Ahern51d0c0472017-10-04 17:48:45 -07007210 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007211 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007212}
7213EXPORT_SYMBOL(netdev_upper_dev_unlink);
7214
Moni Shoua61bd3852015-02-03 16:48:29 +02007215/**
7216 * netdev_bonding_info_change - Dispatch event about slave change
7217 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09007218 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02007219 *
7220 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
7221 * The caller must hold the RTNL lock.
7222 */
7223void netdev_bonding_info_change(struct net_device *dev,
7224 struct netdev_bonding_info *bonding_info)
7225{
David Ahern51d0c0472017-10-04 17:48:45 -07007226 struct netdev_notifier_bonding_info info = {
7227 .info.dev = dev,
7228 };
Moni Shoua61bd3852015-02-03 16:48:29 +02007229
7230 memcpy(&info.bonding_info, bonding_info,
7231 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07007232 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02007233 &info.info);
7234}
7235EXPORT_SYMBOL(netdev_bonding_info_change);
7236
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007237static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007238{
7239 struct netdev_adjacent *iter;
7240
7241 struct net *net = dev_net(dev);
7242
7243 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007244 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007245 continue;
7246 netdev_adjacent_sysfs_add(iter->dev, dev,
7247 &iter->dev->adj_list.lower);
7248 netdev_adjacent_sysfs_add(dev, iter->dev,
7249 &dev->adj_list.upper);
7250 }
7251
7252 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007253 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007254 continue;
7255 netdev_adjacent_sysfs_add(iter->dev, dev,
7256 &iter->dev->adj_list.upper);
7257 netdev_adjacent_sysfs_add(dev, iter->dev,
7258 &dev->adj_list.lower);
7259 }
7260}
7261
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007262static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007263{
7264 struct netdev_adjacent *iter;
7265
7266 struct net *net = dev_net(dev);
7267
7268 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007269 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007270 continue;
7271 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7272 &iter->dev->adj_list.lower);
7273 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7274 &dev->adj_list.upper);
7275 }
7276
7277 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007278 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007279 continue;
7280 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7281 &iter->dev->adj_list.upper);
7282 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7283 &dev->adj_list.lower);
7284 }
7285}
7286
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007287void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02007288{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007289 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007290
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007291 struct net *net = dev_net(dev);
7292
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007293 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007294 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007295 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007296 netdev_adjacent_sysfs_del(iter->dev, oldname,
7297 &iter->dev->adj_list.lower);
7298 netdev_adjacent_sysfs_add(iter->dev, dev,
7299 &iter->dev->adj_list.lower);
7300 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007301
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007302 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007303 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007304 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007305 netdev_adjacent_sysfs_del(iter->dev, oldname,
7306 &iter->dev->adj_list.upper);
7307 netdev_adjacent_sysfs_add(iter->dev, dev,
7308 &iter->dev->adj_list.upper);
7309 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007310}
Veaceslav Falico402dae92013-09-25 09:20:09 +02007311
7312void *netdev_lower_dev_get_private(struct net_device *dev,
7313 struct net_device *lower_dev)
7314{
7315 struct netdev_adjacent *lower;
7316
7317 if (!lower_dev)
7318 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007319 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02007320 if (!lower)
7321 return NULL;
7322
7323 return lower->private;
7324}
7325EXPORT_SYMBOL(netdev_lower_dev_get_private);
7326
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007327
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007328int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007329{
7330 struct net_device *lower = NULL;
7331 struct list_head *iter;
7332 int max_nest = -1;
7333 int nest;
7334
7335 ASSERT_RTNL();
7336
7337 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007338 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007339 if (max_nest < nest)
7340 max_nest = nest;
7341 }
7342
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007343 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007344}
7345EXPORT_SYMBOL(dev_get_nest_level);
7346
Jiri Pirko04d48262015-12-03 12:12:15 +01007347/**
7348 * netdev_lower_change - Dispatch event about lower device state change
7349 * @lower_dev: device
7350 * @lower_state_info: state to dispatch
7351 *
7352 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
7353 * The caller must hold the RTNL lock.
7354 */
7355void netdev_lower_state_changed(struct net_device *lower_dev,
7356 void *lower_state_info)
7357{
David Ahern51d0c0472017-10-04 17:48:45 -07007358 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
7359 .info.dev = lower_dev,
7360 };
Jiri Pirko04d48262015-12-03 12:12:15 +01007361
7362 ASSERT_RTNL();
7363 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07007364 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01007365 &changelowerstate_info.info);
7366}
7367EXPORT_SYMBOL(netdev_lower_state_changed);
7368
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007369static void dev_change_rx_flags(struct net_device *dev, int flags)
7370{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007371 const struct net_device_ops *ops = dev->netdev_ops;
7372
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05007373 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007374 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007375}
7376
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007377static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07007378{
Eric Dumazetb536db92011-11-30 21:42:26 +00007379 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06007380 kuid_t uid;
7381 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07007382
Patrick McHardy24023452007-07-14 18:51:31 -07007383 ASSERT_RTNL();
7384
Wang Chendad9b332008-06-18 01:48:28 -07007385 dev->flags |= IFF_PROMISC;
7386 dev->promiscuity += inc;
7387 if (dev->promiscuity == 0) {
7388 /*
7389 * Avoid overflow.
7390 * If inc causes overflow, untouch promisc and return error.
7391 */
7392 if (inc < 0)
7393 dev->flags &= ~IFF_PROMISC;
7394 else {
7395 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007396 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
7397 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007398 return -EOVERFLOW;
7399 }
7400 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007401 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007402 pr_info("device %s %s promiscuous mode\n",
7403 dev->name,
7404 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11007405 if (audit_enabled) {
7406 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04007407 audit_log(audit_context(), GFP_ATOMIC,
7408 AUDIT_ANOM_PROMISCUOUS,
7409 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
7410 dev->name, (dev->flags & IFF_PROMISC),
7411 (old_flags & IFF_PROMISC),
7412 from_kuid(&init_user_ns, audit_get_loginuid(current)),
7413 from_kuid(&init_user_ns, uid),
7414 from_kgid(&init_user_ns, gid),
7415 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11007416 }
Patrick McHardy24023452007-07-14 18:51:31 -07007417
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007418 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07007419 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007420 if (notify)
7421 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07007422 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007423}
7424
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425/**
7426 * dev_set_promiscuity - update promiscuity count on a device
7427 * @dev: device
7428 * @inc: modifier
7429 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07007430 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431 * remains above zero the interface remains promiscuous. Once it hits zero
7432 * the device reverts back to normal filtering operation. A negative inc
7433 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07007434 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435 */
Wang Chendad9b332008-06-18 01:48:28 -07007436int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437{
Eric Dumazetb536db92011-11-30 21:42:26 +00007438 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07007439 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007441 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07007442 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07007443 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07007444 if (dev->flags != old_flags)
7445 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07007446 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007448EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007450static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007451{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007452 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453
Patrick McHardy24023452007-07-14 18:51:31 -07007454 ASSERT_RTNL();
7455
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07007457 dev->allmulti += inc;
7458 if (dev->allmulti == 0) {
7459 /*
7460 * Avoid overflow.
7461 * If inc causes overflow, untouch allmulti and return error.
7462 */
7463 if (inc < 0)
7464 dev->flags &= ~IFF_ALLMULTI;
7465 else {
7466 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007467 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
7468 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007469 return -EOVERFLOW;
7470 }
7471 }
Patrick McHardy24023452007-07-14 18:51:31 -07007472 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007473 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07007474 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007475 if (notify)
7476 __dev_notify_flags(dev, old_flags,
7477 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07007478 }
Wang Chendad9b332008-06-18 01:48:28 -07007479 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007480}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007481
7482/**
7483 * dev_set_allmulti - update allmulti count on a device
7484 * @dev: device
7485 * @inc: modifier
7486 *
7487 * Add or remove reception of all multicast frames to a device. While the
7488 * count in the device remains above zero the interface remains listening
7489 * to all interfaces. Once it hits zero the device reverts back to normal
7490 * filtering operation. A negative @inc value is used to drop the counter
7491 * when releasing a resource needing all multicasts.
7492 * Return 0 if successful or a negative errno code on error.
7493 */
7494
7495int dev_set_allmulti(struct net_device *dev, int inc)
7496{
7497 return __dev_set_allmulti(dev, inc, true);
7498}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007499EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07007500
7501/*
7502 * Upload unicast and multicast address lists to device and
7503 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08007504 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07007505 * are present.
7506 */
7507void __dev_set_rx_mode(struct net_device *dev)
7508{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007509 const struct net_device_ops *ops = dev->netdev_ops;
7510
Patrick McHardy4417da62007-06-27 01:28:10 -07007511 /* dev_open will call this function so the list will stay sane. */
7512 if (!(dev->flags&IFF_UP))
7513 return;
7514
7515 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09007516 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07007517
Jiri Pirko01789342011-08-16 06:29:00 +00007518 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07007519 /* Unicast addresses changes may only happen under the rtnl,
7520 * therefore calling __dev_set_promiscuity here is safe.
7521 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007522 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007523 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007524 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007525 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007526 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007527 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07007528 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007529 }
Jiri Pirko01789342011-08-16 06:29:00 +00007530
7531 if (ops->ndo_set_rx_mode)
7532 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007533}
7534
7535void dev_set_rx_mode(struct net_device *dev)
7536{
David S. Millerb9e40852008-07-15 00:15:08 -07007537 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007538 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07007539 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007540}
7541
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007542/**
7543 * dev_get_flags - get flags reported to userspace
7544 * @dev: device
7545 *
7546 * Get the combination of flag bits exported through APIs to userspace.
7547 */
Eric Dumazet95c96172012-04-15 05:58:06 +00007548unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549{
Eric Dumazet95c96172012-04-15 05:58:06 +00007550 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551
7552 flags = (dev->flags & ~(IFF_PROMISC |
7553 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08007554 IFF_RUNNING |
7555 IFF_LOWER_UP |
7556 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007557 (dev->gflags & (IFF_PROMISC |
7558 IFF_ALLMULTI));
7559
Stefan Rompfb00055a2006-03-20 17:09:11 -08007560 if (netif_running(dev)) {
7561 if (netif_oper_up(dev))
7562 flags |= IFF_RUNNING;
7563 if (netif_carrier_ok(dev))
7564 flags |= IFF_LOWER_UP;
7565 if (netif_dormant(dev))
7566 flags |= IFF_DORMANT;
7567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568
7569 return flags;
7570}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007571EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007572
Petr Machata6d040322018-12-06 17:05:43 +00007573int __dev_change_flags(struct net_device *dev, unsigned int flags,
7574 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007575{
Eric Dumazetb536db92011-11-30 21:42:26 +00007576 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00007577 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007578
Patrick McHardy24023452007-07-14 18:51:31 -07007579 ASSERT_RTNL();
7580
Linus Torvalds1da177e2005-04-16 15:20:36 -07007581 /*
7582 * Set the flags on our device.
7583 */
7584
7585 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
7586 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
7587 IFF_AUTOMEDIA)) |
7588 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
7589 IFF_ALLMULTI));
7590
7591 /*
7592 * Load in the correct multicast list now the flags have changed.
7593 */
7594
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007595 if ((old_flags ^ flags) & IFF_MULTICAST)
7596 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07007597
Patrick McHardy4417da62007-06-27 01:28:10 -07007598 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007599
7600 /*
7601 * Have we downed the interface. We handle IFF_UP ourselves
7602 * according to user attempts to set it, rather than blindly
7603 * setting it.
7604 */
7605
7606 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07007607 if ((old_flags ^ flags) & IFF_UP) {
7608 if (old_flags & IFF_UP)
7609 __dev_close(dev);
7610 else
Petr Machata40c900a2018-12-06 17:05:47 +00007611 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07007612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007615 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007616 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007617
Linus Torvalds1da177e2005-04-16 15:20:36 -07007618 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007619
7620 if (__dev_set_promiscuity(dev, inc, false) >= 0)
7621 if (dev->flags != old_flags)
7622 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007623 }
7624
7625 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11007626 * is important. Some (broken) drivers set IFF_PROMISC, when
7627 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628 */
7629 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007630 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
7631
Linus Torvalds1da177e2005-04-16 15:20:36 -07007632 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007633 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007634 }
7635
Patrick McHardybd380812010-02-26 06:34:53 +00007636 return ret;
7637}
7638
Nicolas Dichtela528c212013-09-25 12:02:44 +02007639void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
7640 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00007641{
7642 unsigned int changes = dev->flags ^ old_flags;
7643
Nicolas Dichtela528c212013-09-25 12:02:44 +02007644 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007645 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007646
Patrick McHardybd380812010-02-26 06:34:53 +00007647 if (changes & IFF_UP) {
7648 if (dev->flags & IFF_UP)
7649 call_netdevice_notifiers(NETDEV_UP, dev);
7650 else
7651 call_netdevice_notifiers(NETDEV_DOWN, dev);
7652 }
7653
7654 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007655 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07007656 struct netdev_notifier_change_info change_info = {
7657 .info = {
7658 .dev = dev,
7659 },
7660 .flags_changed = changes,
7661 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007662
David Ahern51d0c0472017-10-04 17:48:45 -07007663 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007664 }
Patrick McHardybd380812010-02-26 06:34:53 +00007665}
7666
7667/**
7668 * dev_change_flags - change device settings
7669 * @dev: device
7670 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00007671 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00007672 *
7673 * Change settings on device based state flags. The flags are
7674 * in the userspace exported format.
7675 */
Petr Machata567c5e12018-12-06 17:05:42 +00007676int dev_change_flags(struct net_device *dev, unsigned int flags,
7677 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00007678{
Eric Dumazetb536db92011-11-30 21:42:26 +00007679 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007680 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00007681
Petr Machata6d040322018-12-06 17:05:43 +00007682 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00007683 if (ret < 0)
7684 return ret;
7685
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007686 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007687 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688 return ret;
7689}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007690EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691
WANG Congf51048c2017-07-06 15:01:57 -07007692int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007693{
7694 const struct net_device_ops *ops = dev->netdev_ops;
7695
7696 if (ops->ndo_change_mtu)
7697 return ops->ndo_change_mtu(dev, new_mtu);
7698
7699 dev->mtu = new_mtu;
7700 return 0;
7701}
WANG Congf51048c2017-07-06 15:01:57 -07007702EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007703
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007704/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007705 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007706 * @dev: device
7707 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007708 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007709 *
7710 * Change the maximum transfer size of the network device.
7711 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007712int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
7713 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007714{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007715 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716
7717 if (new_mtu == dev->mtu)
7718 return 0;
7719
Jarod Wilson61e84622016-10-07 22:04:33 -04007720 /* MTU must be positive, and in range */
7721 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007722 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723 return -EINVAL;
Jarod Wilson61e84622016-10-07 22:04:33 -04007724 }
7725
7726 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007727 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
Jarod Wilson61e84622016-10-07 22:04:33 -04007728 return -EINVAL;
7729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007730
7731 if (!netif_device_present(dev))
7732 return -ENODEV;
7733
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01007734 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
7735 err = notifier_to_errno(err);
7736 if (err)
7737 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007738
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007739 orig_mtu = dev->mtu;
7740 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007742 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007743 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7744 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007745 err = notifier_to_errno(err);
7746 if (err) {
7747 /* setting mtu back and notifying everyone again,
7748 * so that they have a chance to revert changes.
7749 */
7750 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007751 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7752 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007753 }
7754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007755 return err;
7756}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007757
7758int dev_set_mtu(struct net_device *dev, int new_mtu)
7759{
7760 struct netlink_ext_ack extack;
7761 int err;
7762
Li RongQinga6bcfc82018-08-03 15:45:21 +08007763 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007764 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08007765 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007766 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
7767 return err;
7768}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007769EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007770
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007771/**
Cong Wang6a643dd2018-01-25 18:26:22 -08007772 * dev_change_tx_queue_len - Change TX queue length of a netdevice
7773 * @dev: device
7774 * @new_len: new tx queue length
7775 */
7776int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
7777{
7778 unsigned int orig_len = dev->tx_queue_len;
7779 int res;
7780
7781 if (new_len != (unsigned int)new_len)
7782 return -ERANGE;
7783
7784 if (new_len != orig_len) {
7785 dev->tx_queue_len = new_len;
7786 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
7787 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03007788 if (res)
7789 goto err_rollback;
7790 res = dev_qdisc_change_tx_queue_len(dev);
7791 if (res)
7792 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08007793 }
7794
7795 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03007796
7797err_rollback:
7798 netdev_err(dev, "refused to change device tx_queue_len\n");
7799 dev->tx_queue_len = orig_len;
7800 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08007801}
7802
7803/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007804 * dev_set_group - Change group this device belongs to
7805 * @dev: device
7806 * @new_group: group this device should belong to
7807 */
7808void dev_set_group(struct net_device *dev, int new_group)
7809{
7810 dev->group = new_group;
7811}
7812EXPORT_SYMBOL(dev_set_group);
7813
7814/**
Petr Machatad59cdf92018-12-13 11:54:35 +00007815 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
7816 * @dev: device
7817 * @addr: new address
7818 * @extack: netlink extended ack
7819 */
7820int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
7821 struct netlink_ext_ack *extack)
7822{
7823 struct netdev_notifier_pre_changeaddr_info info = {
7824 .info.dev = dev,
7825 .info.extack = extack,
7826 .dev_addr = addr,
7827 };
7828 int rc;
7829
7830 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
7831 return notifier_to_errno(rc);
7832}
7833EXPORT_SYMBOL(dev_pre_changeaddr_notify);
7834
7835/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007836 * dev_set_mac_address - Change Media Access Control Address
7837 * @dev: device
7838 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00007839 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007840 *
7841 * Change the hardware (MAC) address of the device
7842 */
Petr Machata3a37a962018-12-13 11:54:30 +00007843int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
7844 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007845{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007846 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847 int err;
7848
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007849 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850 return -EOPNOTSUPP;
7851 if (sa->sa_family != dev->type)
7852 return -EINVAL;
7853 if (!netif_device_present(dev))
7854 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00007855 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
7856 if (err)
7857 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007858 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00007859 if (err)
7860 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00007861 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00007862 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007863 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00007864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007866EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007867
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007868/**
7869 * dev_change_carrier - Change device carrier
7870 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00007871 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007872 *
7873 * Change device carrier
7874 */
7875int dev_change_carrier(struct net_device *dev, bool new_carrier)
7876{
7877 const struct net_device_ops *ops = dev->netdev_ops;
7878
7879 if (!ops->ndo_change_carrier)
7880 return -EOPNOTSUPP;
7881 if (!netif_device_present(dev))
7882 return -ENODEV;
7883 return ops->ndo_change_carrier(dev, new_carrier);
7884}
7885EXPORT_SYMBOL(dev_change_carrier);
7886
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02007888 * dev_get_phys_port_id - Get device physical port ID
7889 * @dev: device
7890 * @ppid: port ID
7891 *
7892 * Get device physical port ID
7893 */
7894int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007895 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02007896{
7897 const struct net_device_ops *ops = dev->netdev_ops;
7898
7899 if (!ops->ndo_get_phys_port_id)
7900 return -EOPNOTSUPP;
7901 return ops->ndo_get_phys_port_id(dev, ppid);
7902}
7903EXPORT_SYMBOL(dev_get_phys_port_id);
7904
7905/**
David Aherndb24a902015-03-17 20:23:15 -06007906 * dev_get_phys_port_name - Get device physical port name
7907 * @dev: device
7908 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00007909 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06007910 *
7911 * Get device physical port name
7912 */
7913int dev_get_phys_port_name(struct net_device *dev,
7914 char *name, size_t len)
7915{
7916 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01007917 int err;
David Aherndb24a902015-03-17 20:23:15 -06007918
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01007919 if (ops->ndo_get_phys_port_name) {
7920 err = ops->ndo_get_phys_port_name(dev, name, len);
7921 if (err != -EOPNOTSUPP)
7922 return err;
7923 }
7924 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06007925}
7926EXPORT_SYMBOL(dev_get_phys_port_name);
7927
7928/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08007929 * dev_get_port_parent_id - Get the device's port parent identifier
7930 * @dev: network device
7931 * @ppid: pointer to a storage for the port's parent identifier
7932 * @recurse: allow/disallow recursion to lower devices
7933 *
7934 * Get the devices's port parent identifier
7935 */
7936int dev_get_port_parent_id(struct net_device *dev,
7937 struct netdev_phys_item_id *ppid,
7938 bool recurse)
7939{
7940 const struct net_device_ops *ops = dev->netdev_ops;
7941 struct netdev_phys_item_id first = { };
7942 struct net_device *lower_dev;
7943 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02007944 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08007945
Jiri Pirko7e1146e2019-04-03 14:24:17 +02007946 if (ops->ndo_get_port_parent_id) {
7947 err = ops->ndo_get_port_parent_id(dev, ppid);
7948 if (err != -EOPNOTSUPP)
7949 return err;
7950 }
7951
7952 err = devlink_compat_switch_id_get(dev, ppid);
7953 if (!err || err != -EOPNOTSUPP)
7954 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08007955
7956 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02007957 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08007958
7959 netdev_for_each_lower_dev(dev, lower_dev, iter) {
7960 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
7961 if (err)
7962 break;
7963 if (!first.id_len)
7964 first = *ppid;
7965 else if (memcmp(&first, ppid, sizeof(*ppid)))
7966 return -ENODATA;
7967 }
7968
7969 return err;
7970}
7971EXPORT_SYMBOL(dev_get_port_parent_id);
7972
7973/**
7974 * netdev_port_same_parent_id - Indicate if two network devices have
7975 * the same port parent identifier
7976 * @a: first network device
7977 * @b: second network device
7978 */
7979bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
7980{
7981 struct netdev_phys_item_id a_id = { };
7982 struct netdev_phys_item_id b_id = { };
7983
7984 if (dev_get_port_parent_id(a, &a_id, true) ||
7985 dev_get_port_parent_id(b, &b_id, true))
7986 return false;
7987
7988 return netdev_phys_item_id_same(&a_id, &b_id);
7989}
7990EXPORT_SYMBOL(netdev_port_same_parent_id);
7991
7992/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007993 * dev_change_proto_down - update protocol port state information
7994 * @dev: device
7995 * @proto_down: new value
7996 *
7997 * This info can be used by switch drivers to set the phys state of the
7998 * port.
7999 */
8000int dev_change_proto_down(struct net_device *dev, bool proto_down)
8001{
8002 const struct net_device_ops *ops = dev->netdev_ops;
8003
8004 if (!ops->ndo_change_proto_down)
8005 return -EOPNOTSUPP;
8006 if (!netif_device_present(dev))
8007 return -ENODEV;
8008 return ops->ndo_change_proto_down(dev, proto_down);
8009}
8010EXPORT_SYMBOL(dev_change_proto_down);
8011
Andy Roulinb5899672019-02-22 18:06:36 +00008012/**
8013 * dev_change_proto_down_generic - generic implementation for
8014 * ndo_change_proto_down that sets carrier according to
8015 * proto_down.
8016 *
8017 * @dev: device
8018 * @proto_down: new value
8019 */
8020int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
8021{
8022 if (proto_down)
8023 netif_carrier_off(dev);
8024 else
8025 netif_carrier_on(dev);
8026 dev->proto_down = proto_down;
8027 return 0;
8028}
8029EXPORT_SYMBOL(dev_change_proto_down_generic);
8030
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008031u32 __dev_xdp_query(struct net_device *dev, bpf_op_t bpf_op,
8032 enum bpf_netdev_command cmd)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008033{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008034 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008035
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008036 if (!bpf_op)
8037 return 0;
Martin KaFai Lau58038692017-06-15 17:29:09 -07008038
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008039 memset(&xdp, 0, sizeof(xdp));
8040 xdp.command = cmd;
8041
8042 /* Query must always succeed. */
8043 WARN_ON(bpf_op(dev, &xdp) < 0 && cmd == XDP_QUERY_PROG);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008044
Jakub Kicinski6b867582018-07-11 20:36:39 -07008045 return xdp.prog_id;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008046}
8047
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008048static int dev_xdp_install(struct net_device *dev, bpf_op_t bpf_op,
Jakub Kicinski32d60272017-06-21 18:25:03 -07008049 struct netlink_ext_ack *extack, u32 flags,
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008050 struct bpf_prog *prog)
8051{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008052 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008053
8054 memset(&xdp, 0, sizeof(xdp));
Jakub Kicinskiee5d0322017-06-21 18:25:04 -07008055 if (flags & XDP_FLAGS_HW_MODE)
8056 xdp.command = XDP_SETUP_PROG_HW;
8057 else
8058 xdp.command = XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008059 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07008060 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008061 xdp.prog = prog;
8062
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008063 return bpf_op(dev, &xdp);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008064}
8065
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008066static void dev_xdp_uninstall(struct net_device *dev)
8067{
8068 struct netdev_bpf xdp;
8069 bpf_op_t ndo_bpf;
8070
8071 /* Remove generic XDP */
8072 WARN_ON(dev_xdp_install(dev, generic_xdp_install, NULL, 0, NULL));
8073
8074 /* Remove from the driver */
8075 ndo_bpf = dev->netdev_ops->ndo_bpf;
8076 if (!ndo_bpf)
8077 return;
8078
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008079 memset(&xdp, 0, sizeof(xdp));
8080 xdp.command = XDP_QUERY_PROG;
8081 WARN_ON(ndo_bpf(dev, &xdp));
8082 if (xdp.prog_id)
8083 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
8084 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008085
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008086 /* Remove HW offload */
8087 memset(&xdp, 0, sizeof(xdp));
8088 xdp.command = XDP_QUERY_PROG_HW;
8089 if (!ndo_bpf(dev, &xdp) && xdp.prog_id)
8090 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
8091 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008092}
8093
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07008094/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07008095 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
8096 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07008097 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07008098 * @fd: new program fd or negative value to clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01008099 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07008100 *
8101 * Set or clear a bpf program for a device
8102 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07008103int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
8104 int fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07008105{
8106 const struct net_device_ops *ops = dev->netdev_ops;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008107 enum bpf_netdev_command query;
Brenden Blancoa7862b42016-07-19 12:16:48 -07008108 struct bpf_prog *prog = NULL;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008109 bpf_op_t bpf_op, bpf_chk;
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008110 bool offload;
Brenden Blancoa7862b42016-07-19 12:16:48 -07008111 int err;
8112
Daniel Borkmann85de8572016-11-28 23:16:54 +01008113 ASSERT_RTNL();
8114
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008115 offload = flags & XDP_FLAGS_HW_MODE;
8116 query = offload ? XDP_QUERY_PROG_HW : XDP_QUERY_PROG;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008117
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008118 bpf_op = bpf_chk = ops->ndo_bpf;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008119 if (!bpf_op && (flags & (XDP_FLAGS_DRV_MODE | XDP_FLAGS_HW_MODE))) {
8120 NL_SET_ERR_MSG(extack, "underlying driver does not support XDP in native mode");
Daniel Borkmann0489df92017-05-12 01:04:45 +02008121 return -EOPNOTSUPP;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008122 }
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008123 if (!bpf_op || (flags & XDP_FLAGS_SKB_MODE))
8124 bpf_op = generic_xdp_install;
8125 if (bpf_op == bpf_chk)
8126 bpf_chk = generic_xdp_install;
David S. Millerb5cdae32017-04-18 15:36:58 -04008127
Brenden Blancoa7862b42016-07-19 12:16:48 -07008128 if (fd >= 0) {
Maxim Mikityanskiyc14a9f62019-08-14 14:34:06 +00008129 u32 prog_id;
8130
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008131 if (!offload && __dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG)) {
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008132 NL_SET_ERR_MSG(extack, "native and generic XDP can't be active at the same time");
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008133 return -EEXIST;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008134 }
Maxim Mikityanskiyc14a9f62019-08-14 14:34:06 +00008135
8136 prog_id = __dev_xdp_query(dev, bpf_op, query);
8137 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && prog_id) {
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008138 NL_SET_ERR_MSG(extack, "XDP program already attached");
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008139 return -EBUSY;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008140 }
Daniel Borkmann85de8572016-11-28 23:16:54 +01008141
Jakub Kicinski288b3de2017-11-20 15:21:54 -08008142 prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
8143 bpf_op == ops->ndo_bpf);
Brenden Blancoa7862b42016-07-19 12:16:48 -07008144 if (IS_ERR(prog))
8145 return PTR_ERR(prog);
Jakub Kicinski441a3302017-11-20 15:21:55 -08008146
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008147 if (!offload && bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinski441a3302017-11-20 15:21:55 -08008148 NL_SET_ERR_MSG(extack, "using device-bound program without HW_MODE flag is not supported");
8149 bpf_prog_put(prog);
8150 return -EINVAL;
8151 }
Maxim Mikityanskiyc14a9f62019-08-14 14:34:06 +00008152
8153 if (prog->aux->id == prog_id) {
8154 bpf_prog_put(prog);
8155 return 0;
8156 }
8157 } else {
8158 if (!__dev_xdp_query(dev, bpf_op, query))
8159 return 0;
Brenden Blancoa7862b42016-07-19 12:16:48 -07008160 }
8161
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008162 err = dev_xdp_install(dev, bpf_op, extack, flags, prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07008163 if (err < 0 && prog)
8164 bpf_prog_put(prog);
8165
8166 return err;
8167}
Brenden Blancoa7862b42016-07-19 12:16:48 -07008168
8169/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008170 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07008171 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07008172 *
8173 * Returns a suitable unique value for a new device interface
8174 * number. The caller must hold the rtnl semaphore or the
8175 * dev_base_lock to be sure it remains unique.
8176 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07008177static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008178{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00008179 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11008180
Linus Torvalds1da177e2005-04-16 15:20:36 -07008181 for (;;) {
8182 if (++ifindex <= 0)
8183 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008184 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00008185 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186 }
8187}
8188
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08008190static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07008191DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008192
Stephen Hemminger6f05f622007-03-08 20:46:03 -08008193static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008195 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008196 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197}
8198
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008199static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008200{
Krishna Kumare93737b2009-12-08 22:26:02 +00008201 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008202 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008203
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008204 BUG_ON(dev_boot_phase);
8205 ASSERT_RTNL();
8206
Krishna Kumare93737b2009-12-08 22:26:02 +00008207 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008208 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00008209 * for initialization unwind. Remove those
8210 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008211 */
8212 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008213 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
8214 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008215
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008216 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00008217 list_del(&dev->unreg_list);
8218 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008219 }
Eric Dumazet449f4542011-05-19 12:24:16 +00008220 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008221 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00008222 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008223
Octavian Purdila44345722010-12-13 12:44:07 +00008224 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008225 list_for_each_entry(dev, head, unreg_list)
8226 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04008227 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008228
Octavian Purdila44345722010-12-13 12:44:07 +00008229 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008230 /* And unlink it from device chain. */
8231 unlist_netdevice(dev);
8232
8233 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008234 }
Eric Dumazet41852492016-08-26 12:50:39 -07008235 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008236
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008237 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008238
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008239 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008240 struct sk_buff *skb = NULL;
8241
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008242 /* Shutdown queueing discipline. */
8243 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008244
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008245 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008246
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008247 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11008248 * this device. They should clean all the things.
8249 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008250 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
8251
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008252 if (!dev->rtnl_link_ops ||
8253 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04008254 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01008255 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008256
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008257 /*
8258 * Flush the unicast and multicast chains
8259 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008260 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00008261 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008262
8263 if (dev->netdev_ops->ndo_uninit)
8264 dev->netdev_ops->ndo_uninit(dev);
8265
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008266 if (skb)
8267 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07008268
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008269 /* Notifier chain MUST detach us all upper devices. */
8270 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07008271 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008272
8273 /* Remove entries from kobject tree */
8274 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00008275#ifdef CONFIG_XPS
8276 /* Remove XPS queueing entries */
8277 netif_reset_xps_queues_gt(dev, 0);
8278#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008279 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008280
Eric W. Biederman850a5452011-10-13 22:25:23 +00008281 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008282
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00008283 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008284 dev_put(dev);
8285}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008286
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008287static void rollback_registered(struct net_device *dev)
8288{
8289 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008290
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008291 list_add(&dev->unreg_list, &single);
8292 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00008293 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008294}
8295
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008296static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
8297 struct net_device *upper, netdev_features_t features)
8298{
8299 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8300 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008301 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008302
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01008303 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008304 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008305 if (!(upper->wanted_features & feature)
8306 && (features & feature)) {
8307 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
8308 &feature, upper->name);
8309 features &= ~feature;
8310 }
8311 }
8312
8313 return features;
8314}
8315
8316static void netdev_sync_lower_features(struct net_device *upper,
8317 struct net_device *lower, netdev_features_t features)
8318{
8319 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8320 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008321 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008322
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01008323 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008324 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008325 if (!(features & feature) && (lower->features & feature)) {
8326 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
8327 &feature, lower->name);
8328 lower->wanted_features &= ~feature;
8329 netdev_update_features(lower);
8330
8331 if (unlikely(lower->features & feature))
8332 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
8333 &feature, lower->name);
8334 }
8335 }
8336}
8337
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008338static netdev_features_t netdev_fix_features(struct net_device *dev,
8339 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07008340{
Michał Mirosław57422dc2011-01-22 12:14:12 +00008341 /* Fix illegal checksum combinations */
8342 if ((features & NETIF_F_HW_CSUM) &&
8343 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008344 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00008345 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
8346 }
8347
Herbert Xub63365a2008-10-23 01:11:29 -07008348 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008349 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008350 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008351 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07008352 }
8353
Pravin B Shelarec5f0612013-03-07 09:28:01 +00008354 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
8355 !(features & NETIF_F_IP_CSUM)) {
8356 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
8357 features &= ~NETIF_F_TSO;
8358 features &= ~NETIF_F_TSO_ECN;
8359 }
8360
8361 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
8362 !(features & NETIF_F_IPV6_CSUM)) {
8363 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
8364 features &= ~NETIF_F_TSO6;
8365 }
8366
Alexander Duyckb1dc4972016-05-02 09:38:24 -07008367 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
8368 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
8369 features &= ~NETIF_F_TSO_MANGLEID;
8370
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00008371 /* TSO ECN requires that TSO is present as well. */
8372 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
8373 features &= ~NETIF_F_TSO_ECN;
8374
Michał Mirosław212b5732011-02-15 16:59:16 +00008375 /* Software GSO depends on SG. */
8376 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008377 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00008378 features &= ~NETIF_F_GSO;
8379 }
8380
Alexander Duyck802ab552016-04-10 21:45:03 -04008381 /* GSO partial features require GSO partial be set */
8382 if ((features & dev->gso_partial_features) &&
8383 !(features & NETIF_F_GSO_PARTIAL)) {
8384 netdev_dbg(dev,
8385 "Dropping partially supported GSO features since no GSO partial.\n");
8386 features &= ~dev->gso_partial_features;
8387 }
8388
Michael Chanfb1f5f72017-12-16 03:09:40 -05008389 if (!(features & NETIF_F_RXCSUM)) {
8390 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
8391 * successfully merged by hardware must also have the
8392 * checksum verified by hardware. If the user does not
8393 * want to enable RXCSUM, logically, we should disable GRO_HW.
8394 */
8395 if (features & NETIF_F_GRO_HW) {
8396 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
8397 features &= ~NETIF_F_GRO_HW;
8398 }
8399 }
8400
Gal Pressmande8d5ab2018-03-12 11:48:49 +02008401 /* LRO/HW-GRO features cannot be combined with RX-FCS */
8402 if (features & NETIF_F_RXFCS) {
8403 if (features & NETIF_F_LRO) {
8404 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
8405 features &= ~NETIF_F_LRO;
8406 }
8407
8408 if (features & NETIF_F_GRO_HW) {
8409 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
8410 features &= ~NETIF_F_GRO_HW;
8411 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02008412 }
8413
Herbert Xub63365a2008-10-23 01:11:29 -07008414 return features;
8415}
Herbert Xub63365a2008-10-23 01:11:29 -07008416
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008417int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00008418{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008419 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008420 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008421 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05008422 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00008423
Michał Mirosław87267482011-04-12 09:56:38 +00008424 ASSERT_RTNL();
8425
Michał Mirosław5455c692011-02-15 16:59:17 +00008426 features = netdev_get_wanted_features(dev);
8427
8428 if (dev->netdev_ops->ndo_fix_features)
8429 features = dev->netdev_ops->ndo_fix_features(dev, features);
8430
8431 /* driver might be less strict about feature dependencies */
8432 features = netdev_fix_features(dev, features);
8433
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008434 /* some features can't be enabled if they're off an an upper device */
8435 netdev_for_each_upper_dev_rcu(dev, upper, iter)
8436 features = netdev_sync_upper_features(dev, upper, features);
8437
Michał Mirosław5455c692011-02-15 16:59:17 +00008438 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05008439 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00008440
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008441 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
8442 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00008443
8444 if (dev->netdev_ops->ndo_set_features)
8445 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01008446 else
8447 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00008448
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008449 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00008450 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008451 "set_features() failed (%d); wanted %pNF, left %pNF\n",
8452 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01008453 /* return non-0 since some features might have changed and
8454 * it's better to fire a spurious notification than miss it
8455 */
8456 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008457 }
8458
Jarod Wilsone7868a82015-11-03 23:09:32 -05008459sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008460 /* some features must be disabled on lower devices when disabled
8461 * on an upper device (think: bonding master or bridge)
8462 */
8463 netdev_for_each_lower_dev(dev, lower, iter)
8464 netdev_sync_lower_features(dev, lower, features);
8465
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008466 if (!err) {
8467 netdev_features_t diff = features ^ dev->features;
8468
8469 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
8470 /* udp_tunnel_{get,drop}_rx_info both need
8471 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
8472 * device, or they won't do anything.
8473 * Thus we need to update dev->features
8474 * *before* calling udp_tunnel_get_rx_info,
8475 * but *after* calling udp_tunnel_drop_rx_info.
8476 */
8477 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
8478 dev->features = features;
8479 udp_tunnel_get_rx_info(dev);
8480 } else {
8481 udp_tunnel_drop_rx_info(dev);
8482 }
8483 }
8484
Gal Pressman9daae9b2018-03-28 17:46:54 +03008485 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
8486 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
8487 dev->features = features;
8488 err |= vlan_get_rx_ctag_filter_info(dev);
8489 } else {
8490 vlan_drop_rx_ctag_filter_info(dev);
8491 }
8492 }
8493
8494 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
8495 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
8496 dev->features = features;
8497 err |= vlan_get_rx_stag_filter_info(dev);
8498 } else {
8499 vlan_drop_rx_stag_filter_info(dev);
8500 }
8501 }
8502
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008503 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008504 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008505
Jarod Wilsone7868a82015-11-03 23:09:32 -05008506 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008507}
8508
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008509/**
8510 * netdev_update_features - recalculate device features
8511 * @dev: the device to check
8512 *
8513 * Recalculate dev->features set and send notifications if it
8514 * has changed. Should be called after driver or hardware dependent
8515 * conditions might have changed that influence the features.
8516 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008517void netdev_update_features(struct net_device *dev)
8518{
8519 if (__netdev_update_features(dev))
8520 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00008521}
8522EXPORT_SYMBOL(netdev_update_features);
8523
Linus Torvalds1da177e2005-04-16 15:20:36 -07008524/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008525 * netdev_change_features - recalculate device features
8526 * @dev: the device to check
8527 *
8528 * Recalculate dev->features set and send notifications even
8529 * if they have not changed. Should be called instead of
8530 * netdev_update_features() if also dev->vlan_features might
8531 * have changed to allow the changes to be propagated to stacked
8532 * VLAN devices.
8533 */
8534void netdev_change_features(struct net_device *dev)
8535{
8536 __netdev_update_features(dev);
8537 netdev_features_change(dev);
8538}
8539EXPORT_SYMBOL(netdev_change_features);
8540
8541/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008542 * netif_stacked_transfer_operstate - transfer operstate
8543 * @rootdev: the root or lower level device to transfer state from
8544 * @dev: the device to transfer operstate to
8545 *
8546 * Transfer operational state from root to device. This is normally
8547 * called when a stacking relationship exists between the root
8548 * device and the device(a leaf device).
8549 */
8550void netif_stacked_transfer_operstate(const struct net_device *rootdev,
8551 struct net_device *dev)
8552{
8553 if (rootdev->operstate == IF_OPER_DORMANT)
8554 netif_dormant_on(dev);
8555 else
8556 netif_dormant_off(dev);
8557
Zhang Shengju0575c862017-04-26 17:49:38 +08008558 if (netif_carrier_ok(rootdev))
8559 netif_carrier_on(dev);
8560 else
8561 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008562}
8563EXPORT_SYMBOL(netif_stacked_transfer_operstate);
8564
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008565static int netif_alloc_rx_queues(struct net_device *dev)
8566{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008567 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00008568 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05308569 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008570 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008571
Tom Herbertbd25fa72010-10-18 18:00:16 +00008572 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008573
Michal Hockodcda9b02017-07-12 14:36:45 -07008574 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008575 if (!rx)
8576 return -ENOMEM;
8577
Tom Herbertbd25fa72010-10-18 18:00:16 +00008578 dev->_rx = rx;
8579
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008580 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00008581 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008582
8583 /* XDP RX-queue setup */
8584 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
8585 if (err < 0)
8586 goto err_rxq_info;
8587 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008588 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008589
8590err_rxq_info:
8591 /* Rollback successful reg's and free other resources */
8592 while (i--)
8593 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08008594 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008595 dev->_rx = NULL;
8596 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008597}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008598
8599static void netif_free_rx_queues(struct net_device *dev)
8600{
8601 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008602
8603 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
8604 if (!dev->_rx)
8605 return;
8606
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008607 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08008608 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
8609
8610 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008611}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008612
Changli Gaoaa942102010-12-04 02:31:41 +00008613static void netdev_init_one_queue(struct net_device *dev,
8614 struct netdev_queue *queue, void *_unused)
8615{
8616 /* Initialize queue lock */
8617 spin_lock_init(&queue->_xmit_lock);
8618 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
8619 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00008620 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00008621 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00008622#ifdef CONFIG_BQL
8623 dql_init(&queue->dql, HZ);
8624#endif
Changli Gaoaa942102010-12-04 02:31:41 +00008625}
8626
Eric Dumazet60877a32013-06-20 01:15:51 -07008627static void netif_free_tx_queues(struct net_device *dev)
8628{
WANG Cong4cb28972014-06-02 15:55:22 -07008629 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07008630}
8631
Tom Herberte6484932010-10-18 18:04:39 +00008632static int netif_alloc_netdev_queues(struct net_device *dev)
8633{
8634 unsigned int count = dev->num_tx_queues;
8635 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07008636 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00008637
Eric Dumazetd3397272015-07-06 17:13:26 +02008638 if (count < 1 || count > 0xffff)
8639 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00008640
Michal Hockodcda9b02017-07-12 14:36:45 -07008641 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008642 if (!tx)
8643 return -ENOMEM;
8644
Tom Herberte6484932010-10-18 18:04:39 +00008645 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00008646
Tom Herberte6484932010-10-18 18:04:39 +00008647 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
8648 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00008649
8650 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00008651}
8652
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008653void netif_tx_stop_all_queues(struct net_device *dev)
8654{
8655 unsigned int i;
8656
8657 for (i = 0; i < dev->num_tx_queues; i++) {
8658 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11008659
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008660 netif_tx_stop_queue(txq);
8661 }
8662}
8663EXPORT_SYMBOL(netif_tx_stop_all_queues);
8664
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008665/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666 * register_netdevice - register a network device
8667 * @dev: device to register
8668 *
8669 * Take a completed network device structure and add it to the kernel
8670 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8671 * chain. 0 is returned on success. A negative errno code is returned
8672 * on a failure to set up the device, or if the name is a duplicate.
8673 *
8674 * Callers must hold the rtnl semaphore. You may want
8675 * register_netdev() instead of this.
8676 *
8677 * BUGS:
8678 * The locking appears insufficient to guarantee two parallel registers
8679 * will not get the same name.
8680 */
8681
8682int register_netdevice(struct net_device *dev)
8683{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008684 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008685 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008686
Florian Fainellie283de32018-04-30 14:20:05 -07008687 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
8688 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689 BUG_ON(dev_boot_phase);
8690 ASSERT_RTNL();
8691
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008692 might_sleep();
8693
Linus Torvalds1da177e2005-04-16 15:20:36 -07008694 /* When net_device's are persistent, this will be fatal. */
8695 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008696 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008697
David S. Millerf1f28aa2008-07-15 00:08:33 -07008698 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07008699 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008700
Gao feng828de4f2012-09-13 20:58:27 +00008701 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00008702 if (ret < 0)
8703 goto out;
8704
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008706 if (dev->netdev_ops->ndo_init) {
8707 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008708 if (ret) {
8709 if (ret > 0)
8710 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08008711 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008712 }
8713 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008714
Patrick McHardyf6469682013-04-19 02:04:27 +00008715 if (((dev->hw_features | dev->features) &
8716 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00008717 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
8718 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
8719 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
8720 ret = -EINVAL;
8721 goto err_uninit;
8722 }
8723
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00008724 ret = -EBUSY;
8725 if (!dev->ifindex)
8726 dev->ifindex = dev_new_index(net);
8727 else if (__dev_get_by_index(net, dev->ifindex))
8728 goto err_uninit;
8729
Michał Mirosław5455c692011-02-15 16:59:17 +00008730 /* Transfer changeable features to wanted_features and enable
8731 * software offloads (GSO and GRO).
8732 */
8733 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00008734 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02008735
8736 if (dev->netdev_ops->ndo_udp_tunnel_add) {
8737 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8738 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8739 }
8740
Michał Mirosław14d12322011-02-22 16:52:28 +00008741 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008742
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008743 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00008744 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008745
Alexander Duyck7f348a62016-04-20 16:51:00 -04008746 /* If IPv4 TCP segmentation offload is supported we should also
8747 * allow the device to enable segmenting the frame with the option
8748 * of ignoring a static IP ID value. This doesn't enable the
8749 * feature itself but allows the user to enable it later.
8750 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008751 if (dev->hw_features & NETIF_F_TSO)
8752 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04008753 if (dev->vlan_features & NETIF_F_TSO)
8754 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
8755 if (dev->mpls_features & NETIF_F_TSO)
8756 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
8757 if (dev->hw_enc_features & NETIF_F_TSO)
8758 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07008759
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008760 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00008761 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008762 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00008763
Pravin B Shelaree579672013-03-07 09:28:08 +00008764 /* Make NETIF_F_SG inheritable to tunnel devices.
8765 */
Alexander Duyck802ab552016-04-10 21:45:03 -04008766 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00008767
Simon Horman0d89d202013-05-23 21:02:52 +00008768 /* Make NETIF_F_SG inheritable to MPLS.
8769 */
8770 dev->mpls_features |= NETIF_F_SG;
8771
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00008772 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
8773 ret = notifier_to_errno(ret);
8774 if (ret)
8775 goto err_uninit;
8776
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008777 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008778 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008779 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008780 dev->reg_state = NETREG_REGISTERED;
8781
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008782 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00008783
Linus Torvalds1da177e2005-04-16 15:20:36 -07008784 /*
8785 * Default initial state at registry is that the
8786 * device is present.
8787 */
8788
8789 set_bit(__LINK_STATE_PRESENT, &dev->state);
8790
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01008791 linkwatch_init_dev(dev);
8792
Linus Torvalds1da177e2005-04-16 15:20:36 -07008793 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008794 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008795 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008796 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008797
Jiri Pirko948b3372013-01-08 01:38:25 +00008798 /* If the device has permanent device address, driver should
8799 * set dev_addr and also addr_assign_type should be set to
8800 * NET_ADDR_PERM (default value).
8801 */
8802 if (dev->addr_assign_type == NET_ADDR_PERM)
8803 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
8804
Linus Torvalds1da177e2005-04-16 15:20:36 -07008805 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008806 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07008807 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008808 if (ret) {
8809 rollback_registered(dev);
8810 dev->reg_state = NETREG_UNREGISTERED;
8811 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008812 /*
8813 * Prevent userspace races by waiting until the network
8814 * device is fully setup before sending notifications.
8815 */
Patrick McHardya2835762010-02-26 06:34:51 +00008816 if (!dev->rtnl_link_ops ||
8817 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008818 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819
8820out:
8821 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008822
8823err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008824 if (dev->netdev_ops->ndo_uninit)
8825 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -04008826 if (dev->priv_destructor)
8827 dev->priv_destructor(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008828 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008829}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008830EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008831
8832/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008833 * init_dummy_netdev - init a dummy network device for NAPI
8834 * @dev: device to init
8835 *
8836 * This takes a network device structure and initialize the minimum
8837 * amount of fields so it can be used to schedule NAPI polls without
8838 * registering a full blown interface. This is to be used by drivers
8839 * that need to tie several hardware interfaces to a single NAPI
8840 * poll scheduler due to HW limitations.
8841 */
8842int init_dummy_netdev(struct net_device *dev)
8843{
8844 /* Clear everything. Note we don't initialize spinlocks
8845 * are they aren't supposed to be taken by any of the
8846 * NAPI code and this dummy netdev is supposed to be
8847 * only ever used for NAPI polls
8848 */
8849 memset(dev, 0, sizeof(struct net_device));
8850
8851 /* make sure we BUG if trying to hit standard
8852 * register/unregister code path
8853 */
8854 dev->reg_state = NETREG_DUMMY;
8855
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008856 /* NAPI wants this */
8857 INIT_LIST_HEAD(&dev->napi_list);
8858
8859 /* a dummy interface is started by default */
8860 set_bit(__LINK_STATE_PRESENT, &dev->state);
8861 set_bit(__LINK_STATE_START, &dev->state);
8862
Josh Elsasser35edfdc2019-01-26 14:38:33 -08008863 /* napi_busy_loop stats accounting wants this */
8864 dev_net_set(dev, &init_net);
8865
Eric Dumazet29b44332010-10-11 10:22:12 +00008866 /* Note : We dont allocate pcpu_refcnt for dummy devices,
8867 * because users of this 'device' dont need to change
8868 * its refcount.
8869 */
8870
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008871 return 0;
8872}
8873EXPORT_SYMBOL_GPL(init_dummy_netdev);
8874
8875
8876/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008877 * register_netdev - register a network device
8878 * @dev: device to register
8879 *
8880 * Take a completed network device structure and add it to the kernel
8881 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8882 * chain. 0 is returned on success. A negative errno code is returned
8883 * on a failure to set up the device, or if the name is a duplicate.
8884 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07008885 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07008886 * and expands the device name if you passed a format string to
8887 * alloc_netdev.
8888 */
8889int register_netdev(struct net_device *dev)
8890{
8891 int err;
8892
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +03008893 if (rtnl_lock_killable())
8894 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008895 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896 rtnl_unlock();
8897 return err;
8898}
8899EXPORT_SYMBOL(register_netdev);
8900
Eric Dumazet29b44332010-10-11 10:22:12 +00008901int netdev_refcnt_read(const struct net_device *dev)
8902{
8903 int i, refcnt = 0;
8904
8905 for_each_possible_cpu(i)
8906 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
8907 return refcnt;
8908}
8909EXPORT_SYMBOL(netdev_refcnt_read);
8910
Ben Hutchings2c530402012-07-10 10:55:09 +00008911/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008912 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00008913 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914 *
8915 * This is called when unregistering network devices.
8916 *
8917 * Any protocol or device that holds a reference should register
8918 * for netdevice notification, and cleanup and put back the
8919 * reference if they receive an UNREGISTER event.
8920 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008921 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008922 */
8923static void netdev_wait_allrefs(struct net_device *dev)
8924{
8925 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00008926 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008927
Eric Dumazete014deb2009-11-17 05:59:21 +00008928 linkwatch_forget_dev(dev);
8929
Linus Torvalds1da177e2005-04-16 15:20:36 -07008930 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00008931 refcnt = netdev_refcnt_read(dev);
8932
8933 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008935 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936
8937 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008938 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008939
Eric Dumazet748e2d92012-08-22 21:50:59 +00008940 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008941 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00008942 rtnl_lock();
8943
Linus Torvalds1da177e2005-04-16 15:20:36 -07008944 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
8945 &dev->state)) {
8946 /* We must not have linkwatch events
8947 * pending on unregister. If this
8948 * happens, we simply run the queue
8949 * unscheduled, resulting in a noop
8950 * for this device.
8951 */
8952 linkwatch_run_queue();
8953 }
8954
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008955 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008956
8957 rebroadcast_time = jiffies;
8958 }
8959
8960 msleep(250);
8961
Eric Dumazet29b44332010-10-11 10:22:12 +00008962 refcnt = netdev_refcnt_read(dev);
8963
Eric Dumazetd7c04b02019-05-16 08:09:57 -07008964 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008965 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
8966 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008967 warning_time = jiffies;
8968 }
8969 }
8970}
8971
8972/* The sequence is:
8973 *
8974 * rtnl_lock();
8975 * ...
8976 * register_netdevice(x1);
8977 * register_netdevice(x2);
8978 * ...
8979 * unregister_netdevice(y1);
8980 * unregister_netdevice(y2);
8981 * ...
8982 * rtnl_unlock();
8983 * free_netdev(y1);
8984 * free_netdev(y2);
8985 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07008986 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07008987 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008988 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07008989 * without deadlocking with linkwatch via keventd.
8990 * 2) Since we run with the RTNL semaphore not held, we can sleep
8991 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07008992 *
8993 * We must not return until all unregister events added during
8994 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008995 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996void netdev_run_todo(void)
8997{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008998 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008999
Linus Torvalds1da177e2005-04-16 15:20:36 -07009000 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07009001 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07009002
9003 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07009004
Eric Dumazet0115e8e2012-08-22 17:19:46 +00009005
9006 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00009007 if (!list_empty(&list))
9008 rcu_barrier();
9009
Linus Torvalds1da177e2005-04-16 15:20:36 -07009010 while (!list_empty(&list)) {
9011 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00009012 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013 list_del(&dev->todo_list);
9014
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009015 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009016 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07009017 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009018 dump_stack();
9019 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009020 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009021
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009022 dev->reg_state = NETREG_UNREGISTERED;
9023
9024 netdev_wait_allrefs(dev);
9025
9026 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00009027 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08009028 BUG_ON(!list_empty(&dev->ptype_all));
9029 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00009030 WARN_ON(rcu_access_pointer(dev->ip_ptr));
9031 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -08009032#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -07009033 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -08009034#endif
David S. Millercf124db2017-05-08 12:52:56 -04009035 if (dev->priv_destructor)
9036 dev->priv_destructor(dev);
9037 if (dev->needs_free_netdev)
9038 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07009039
Eric W. Biederman50624c92013-09-23 21:19:49 -07009040 /* Report a network device has been unregistered */
9041 rtnl_lock();
9042 dev_net(dev)->dev_unreg_count--;
9043 __rtnl_unlock();
9044 wake_up(&netdev_unregistering_wq);
9045
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07009046 /* Free network device */
9047 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009049}
9050
Jarod Wilson92566452016-02-01 18:51:04 -05009051/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
9052 * all the same fields in the same order as net_device_stats, with only
9053 * the type differing, but rtnl_link_stats64 may have additional fields
9054 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00009055 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00009056void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
9057 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00009058{
9059#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05009060 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +02009061 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05009062 /* zero out counters that only exist in rtnl_link_stats64 */
9063 memset((char *)stats64 + sizeof(*netdev_stats), 0,
9064 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00009065#else
Jarod Wilson92566452016-02-01 18:51:04 -05009066 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00009067 const unsigned long *src = (const unsigned long *)netdev_stats;
9068 u64 *dst = (u64 *)stats64;
9069
Jarod Wilson92566452016-02-01 18:51:04 -05009070 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00009071 for (i = 0; i < n; i++)
9072 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05009073 /* zero out counters that only exist in rtnl_link_stats64 */
9074 memset((char *)stats64 + n * sizeof(u64), 0,
9075 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00009076#endif
9077}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00009078EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00009079
Eric Dumazetd83345a2009-11-16 03:36:51 +00009080/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009081 * dev_get_stats - get network device statistics
9082 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07009083 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009084 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00009085 * Get network statistics from device. Return @storage.
9086 * The device driver may provide its own method by setting
9087 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
9088 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009089 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00009090struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
9091 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00009092{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009093 const struct net_device_ops *ops = dev->netdev_ops;
9094
Eric Dumazet28172732010-07-07 14:58:56 -07009095 if (ops->ndo_get_stats64) {
9096 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00009097 ops->ndo_get_stats64(dev, storage);
9098 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00009099 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00009100 } else {
9101 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07009102 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -07009103 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
9104 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
9105 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07009106 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07009107}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009108EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07009109
Eric Dumazet24824a02010-10-02 06:11:55 +00009110struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07009111{
Eric Dumazet24824a02010-10-02 06:11:55 +00009112 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07009113
Eric Dumazet24824a02010-10-02 06:11:55 +00009114#ifdef CONFIG_NET_CLS_ACT
9115 if (queue)
9116 return queue;
9117 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
9118 if (!queue)
9119 return NULL;
9120 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08009121 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00009122 queue->qdisc_sleeping = &noop_qdisc;
9123 rcu_assign_pointer(dev->ingress_queue, queue);
9124#endif
9125 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07009126}
9127
Eric Dumazet2c60db02012-09-16 09:17:26 +00009128static const struct ethtool_ops default_ethtool_ops;
9129
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00009130void netdev_set_default_ethtool_ops(struct net_device *dev,
9131 const struct ethtool_ops *ops)
9132{
9133 if (dev->ethtool_ops == &default_ethtool_ops)
9134 dev->ethtool_ops = ops;
9135}
9136EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
9137
Eric Dumazet74d332c2013-10-30 13:10:44 -07009138void netdev_freemem(struct net_device *dev)
9139{
9140 char *addr = (char *)dev - dev->padded;
9141
WANG Cong4cb28972014-06-02 15:55:22 -07009142 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07009143}
9144
Linus Torvalds1da177e2005-04-16 15:20:36 -07009145/**
tcharding722c9a02017-02-09 17:56:04 +11009146 * alloc_netdev_mqs - allocate network device
9147 * @sizeof_priv: size of private data to allocate space for
9148 * @name: device name format string
9149 * @name_assign_type: origin of device name
9150 * @setup: callback to initialize device
9151 * @txqs: the number of TX subqueues to allocate
9152 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07009153 *
tcharding722c9a02017-02-09 17:56:04 +11009154 * Allocates a struct net_device with private data area for driver use
9155 * and performs basic initialization. Also allocates subqueue structs
9156 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009157 */
Tom Herbert36909ea2011-01-09 19:36:31 +00009158struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02009159 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00009160 void (*setup)(struct net_device *),
9161 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009162{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009163 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +03009164 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009165 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009166
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07009167 BUG_ON(strlen(name) >= sizeof(dev->name));
9168
Tom Herbert36909ea2011-01-09 19:36:31 +00009169 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009170 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00009171 return NULL;
9172 }
9173
Tom Herbert36909ea2011-01-09 19:36:31 +00009174 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009175 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00009176 return NULL;
9177 }
Tom Herbert36909ea2011-01-09 19:36:31 +00009178
David S. Millerfd2ea0a2008-07-17 01:56:23 -07009179 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07009180 if (sizeof_priv) {
9181 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009182 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07009183 alloc_size += sizeof_priv;
9184 }
9185 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009186 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009187
Michal Hockodcda9b02017-07-12 14:36:45 -07009188 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +00009189 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009190 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009191
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009192 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009193 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009194
Eric Dumazet29b44332010-10-11 10:22:12 +00009195 dev->pcpu_refcnt = alloc_percpu(int);
9196 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07009197 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009198
Linus Torvalds1da177e2005-04-16 15:20:36 -07009199 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00009200 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009201
Jiri Pirko22bedad32010-04-01 21:22:57 +00009202 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009203 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00009204
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009205 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009206
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07009207 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00009208 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009209
Herbert Xud565b0a2008-12-15 23:38:52 -08009210 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009211 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009212 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00009213 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02009214 INIT_LIST_HEAD(&dev->adj_list.upper);
9215 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08009216 INIT_LIST_HEAD(&dev->ptype_all);
9217 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02009218#ifdef CONFIG_NET_SCHED
9219 hash_init(dev->qdisc_hash);
9220#endif
Eric Dumazet02875872014-10-05 18:38:35 -07009221 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009222 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009223
Phil Suttera8131042016-02-17 15:37:43 +01009224 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02009225 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +01009226 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +01009227 }
Phil Sutter906470c2015-08-18 10:30:48 +02009228
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009229 dev->num_tx_queues = txqs;
9230 dev->real_num_tx_queues = txqs;
9231 if (netif_alloc_netdev_queues(dev))
9232 goto free_all;
9233
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009234 dev->num_rx_queues = rxqs;
9235 dev->real_num_rx_queues = rxqs;
9236 if (netif_alloc_rx_queues(dev))
9237 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009238
Linus Torvalds1da177e2005-04-16 15:20:36 -07009239 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02009240 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00009241 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00009242 if (!dev->ethtool_ops)
9243 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02009244
9245 nf_hook_ingress_init(dev);
9246
Linus Torvalds1da177e2005-04-16 15:20:36 -07009247 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009248
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009249free_all:
9250 free_netdev(dev);
9251 return NULL;
9252
Eric Dumazet29b44332010-10-11 10:22:12 +00009253free_pcpu:
9254 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07009255free_dev:
9256 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009257 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009258}
Tom Herbert36909ea2011-01-09 19:36:31 +00009259EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009260
9261/**
tcharding722c9a02017-02-09 17:56:04 +11009262 * free_netdev - free network device
9263 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -07009264 *
tcharding722c9a02017-02-09 17:56:04 +11009265 * This function does the last stage of destroying an allocated device
9266 * interface. The reference to the device object is released. If this
9267 * is the last reference then it will be freed.Must be called in process
9268 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009269 */
9270void free_netdev(struct net_device *dev)
9271{
Herbert Xud565b0a2008-12-15 23:38:52 -08009272 struct napi_struct *p, *n;
9273
Eric Dumazet93d05d42015-11-18 06:31:03 -08009274 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07009275 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009276 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -07009277
Eric Dumazet33d480c2011-08-11 19:30:52 +00009278 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00009279
Jiri Pirkof001fde2009-05-05 02:48:28 +00009280 /* Flush device addresses */
9281 dev_addr_flush(dev);
9282
Herbert Xud565b0a2008-12-15 23:38:52 -08009283 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
9284 netif_napi_del(p);
9285
Eric Dumazet29b44332010-10-11 10:22:12 +00009286 free_percpu(dev->pcpu_refcnt);
9287 dev->pcpu_refcnt = NULL;
9288
Stephen Hemminger3041a062006-05-26 13:25:24 -07009289 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009290 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07009291 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009292 return;
9293 }
9294
9295 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
9296 dev->reg_state = NETREG_RELEASED;
9297
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07009298 /* will free via device release */
9299 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009300}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009301EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009302
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009303/**
9304 * synchronize_net - Synchronize with packet receive processing
9305 *
9306 * Wait for packets currently being received to be done.
9307 * Does not block later packets from starting.
9308 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009309void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009310{
9311 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00009312 if (rtnl_is_locked())
9313 synchronize_rcu_expedited();
9314 else
9315 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009316}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009317EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009318
9319/**
Eric Dumazet44a08732009-10-27 07:03:04 +00009320 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07009321 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00009322 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08009323 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009324 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009325 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00009326 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009327 *
9328 * Callers must hold the rtnl semaphore. You may want
9329 * unregister_netdev() instead of this.
9330 */
9331
Eric Dumazet44a08732009-10-27 07:03:04 +00009332void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333{
Herbert Xua6620712007-12-12 19:21:56 -08009334 ASSERT_RTNL();
9335
Eric Dumazet44a08732009-10-27 07:03:04 +00009336 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009337 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00009338 } else {
9339 rollback_registered(dev);
9340 /* Finish processing unregister after unlock */
9341 net_set_todo(dev);
9342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009343}
Eric Dumazet44a08732009-10-27 07:03:04 +00009344EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009345
9346/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009347 * unregister_netdevice_many - unregister many devices
9348 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07009349 *
9350 * Note: As most callers use a stack allocated list_head,
9351 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009352 */
9353void unregister_netdevice_many(struct list_head *head)
9354{
9355 struct net_device *dev;
9356
9357 if (!list_empty(head)) {
9358 rollback_registered_many(head);
9359 list_for_each_entry(dev, head, unreg_list)
9360 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07009361 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009362 }
9363}
Eric Dumazet63c80992009-10-27 07:06:49 +00009364EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009365
9366/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367 * unregister_netdev - remove device from the kernel
9368 * @dev: device
9369 *
9370 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009371 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009372 *
9373 * This is just a wrapper for unregister_netdevice that takes
9374 * the rtnl semaphore. In general you want to use this and not
9375 * unregister_netdevice.
9376 */
9377void unregister_netdev(struct net_device *dev)
9378{
9379 rtnl_lock();
9380 unregister_netdevice(dev);
9381 rtnl_unlock();
9382}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009383EXPORT_SYMBOL(unregister_netdev);
9384
Eric W. Biedermance286d32007-09-12 13:53:49 +02009385/**
9386 * dev_change_net_namespace - move device to different nethost namespace
9387 * @dev: device
9388 * @net: network namespace
9389 * @pat: If not NULL name pattern to try if the current device name
9390 * is already taken in the destination network namespace.
9391 *
9392 * This function shuts down a device interface and moves it
9393 * to a new network namespace. On success 0 is returned, on
9394 * a failure a netagive errno code is returned.
9395 *
9396 * Callers must hold the rtnl semaphore.
9397 */
9398
9399int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
9400{
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009401 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009402
9403 ASSERT_RTNL();
9404
9405 /* Don't allow namespace local devices to be moved. */
9406 err = -EINVAL;
9407 if (dev->features & NETIF_F_NETNS_LOCAL)
9408 goto out;
9409
9410 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009411 if (dev->reg_state != NETREG_REGISTERED)
9412 goto out;
9413
9414 /* Get out if there is nothing todo */
9415 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09009416 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02009417 goto out;
9418
9419 /* Pick the destination device name, and ensure
9420 * we can use it in the destination network namespace.
9421 */
9422 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00009423 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009424 /* We get here if we can't use the current device name */
9425 if (!pat)
9426 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +08009427 err = dev_get_valid_name(net, dev, pat);
9428 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009429 goto out;
9430 }
9431
9432 /*
9433 * And now a mini version of register_netdevice unregister_netdevice.
9434 */
9435
9436 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07009437 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009438
9439 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009440 unlist_netdevice(dev);
9441
9442 synchronize_net();
9443
9444 /* Shutdown queueing discipline. */
9445 dev_shutdown(dev);
9446
9447 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009448 * this device. They should clean all the things.
9449 *
9450 * Note that dev->reg_state stays at NETREG_REGISTERED.
9451 * This is wanted because this way 8021q and macvlan know
9452 * the device is just moving and can keep their slaves up.
9453 */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009454 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00009455 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009456
Nicolas Dichtelc36ac8e2018-01-25 15:01:38 +01009457 new_nsid = peernet2id_alloc(dev_net(dev), net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009458 /* If there is an ifindex conflict assign a new one */
9459 if (__dev_get_by_index(net, dev->ifindex))
9460 new_ifindex = dev_new_index(net);
9461 else
9462 new_ifindex = dev->ifindex;
9463
9464 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
9465 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009466
9467 /*
9468 * Flush the unicast and multicast chains
9469 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009470 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009471 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009472
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009473 /* Send a netdev-removed uevent to the old namespace */
9474 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009475 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009476
Eric W. Biedermance286d32007-09-12 13:53:49 +02009477 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009478 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009479 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009480
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009481 /* Send a netdev-add uevent to the new namespace */
9482 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009483 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009484
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009485 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07009486 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009487 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009488
9489 /* Add the device back in the hashes */
9490 list_netdevice(dev);
9491
9492 /* Notify protocols, that a new device appeared. */
9493 call_netdevice_notifiers(NETDEV_REGISTER, dev);
9494
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009495 /*
9496 * Prevent userspace races by waiting until the network
9497 * device is fully setup before sending notifications.
9498 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07009499 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009500
Eric W. Biedermance286d32007-09-12 13:53:49 +02009501 synchronize_net();
9502 err = 0;
9503out:
9504 return err;
9505}
Johannes Berg463d0182009-07-14 00:33:35 +02009506EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009507
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009508static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009509{
9510 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009511 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009512 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +05309513 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009514
Linus Torvalds1da177e2005-04-16 15:20:36 -07009515 local_irq_disable();
9516 cpu = smp_processor_id();
9517 sd = &per_cpu(softnet_data, cpu);
9518 oldsd = &per_cpu(softnet_data, oldcpu);
9519
9520 /* Find end of our completion_queue. */
9521 list_skb = &sd->completion_queue;
9522 while (*list_skb)
9523 list_skb = &(*list_skb)->next;
9524 /* Append completion queue from offline CPU. */
9525 *list_skb = oldsd->completion_queue;
9526 oldsd->completion_queue = NULL;
9527
Linus Torvalds1da177e2005-04-16 15:20:36 -07009528 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00009529 if (oldsd->output_queue) {
9530 *sd->output_queue_tailp = oldsd->output_queue;
9531 sd->output_queue_tailp = oldsd->output_queue_tailp;
9532 oldsd->output_queue = NULL;
9533 oldsd->output_queue_tailp = &oldsd->output_queue;
9534 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009535 /* Append NAPI poll list from offline CPU, with one exception :
9536 * process_backlog() must be called by cpu owning percpu backlog.
9537 * We properly handle process_queue & input_pkt_queue later.
9538 */
9539 while (!list_empty(&oldsd->poll_list)) {
9540 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
9541 struct napi_struct,
9542 poll_list);
9543
9544 list_del_init(&napi->poll_list);
9545 if (napi->poll == process_backlog)
9546 napi->state = 0;
9547 else
9548 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00009549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009550
9551 raise_softirq_irqoff(NET_TX_SOFTIRQ);
9552 local_irq_enable();
9553
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05309554#ifdef CONFIG_RPS
9555 remsd = oldsd->rps_ipi_list;
9556 oldsd->rps_ipi_list = NULL;
9557#endif
9558 /* send out pending IPI's on offline CPU */
9559 net_rps_send_ipi(remsd);
9560
Linus Torvalds1da177e2005-04-16 15:20:36 -07009561 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00009562 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009563 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009564 input_queue_head_incr(oldsd);
9565 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009566 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009567 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009568 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07009569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009570
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009573
Herbert Xu7f353bf2007-08-10 15:47:58 -07009574/**
Herbert Xub63365a2008-10-23 01:11:29 -07009575 * netdev_increment_features - increment feature set by one
9576 * @all: current feature set
9577 * @one: new feature set
9578 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07009579 *
9580 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07009581 * @one to the master device with current feature set @all. Will not
9582 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07009583 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009584netdev_features_t netdev_increment_features(netdev_features_t all,
9585 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07009586{
Tom Herbertc8cd0982015-12-14 11:19:44 -08009587 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08009588 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00009589 mask |= NETIF_F_VLAN_CHALLENGED;
9590
Tom Herberta1882222015-12-14 11:19:43 -08009591 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00009592 all &= one | ~NETIF_F_ALL_FOR_ALL;
9593
Michał Mirosław1742f182011-04-22 06:31:16 +00009594 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08009595 if (all & NETIF_F_HW_CSUM)
9596 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009597
9598 return all;
9599}
Herbert Xub63365a2008-10-23 01:11:29 -07009600EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009601
Baruch Siach430f03c2013-06-02 20:43:55 +00009602static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009603{
9604 int i;
9605 struct hlist_head *hash;
9606
Kees Cook6da2ec52018-06-12 13:55:00 -07009607 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009608 if (hash != NULL)
9609 for (i = 0; i < NETDEV_HASHENTRIES; i++)
9610 INIT_HLIST_HEAD(&hash[i]);
9611
9612 return hash;
9613}
9614
Eric W. Biederman881d9662007-09-17 11:56:21 -07009615/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07009616static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009617{
Li RongQingd9f37d02018-07-13 14:41:36 +08009618 BUILD_BUG_ON(GRO_HASH_BUCKETS >
David S. Millerccdb5172018-07-16 17:02:04 -07009619 8 * FIELD_SIZEOF(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +08009620
Rustad, Mark D734b6542012-07-18 09:06:07 +00009621 if (net != &init_net)
9622 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07009623
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009624 net->dev_name_head = netdev_create_hash();
9625 if (net->dev_name_head == NULL)
9626 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009627
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009628 net->dev_index_head = netdev_create_hash();
9629 if (net->dev_index_head == NULL)
9630 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009631
9632 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009633
9634err_idx:
9635 kfree(net->dev_name_head);
9636err_name:
9637 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009638}
9639
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009640/**
9641 * netdev_drivername - network driver for the device
9642 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009643 *
9644 * Determine network driver for device.
9645 */
David S. Miller3019de12011-06-06 16:41:33 -07009646const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07009647{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07009648 const struct device_driver *driver;
9649 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07009650 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07009651
9652 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009653 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07009654 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009655
9656 driver = parent->driver;
9657 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07009658 return driver->name;
9659 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009660}
9661
Joe Perches6ea754e2014-09-22 11:10:50 -07009662static void __netdev_printk(const char *level, const struct net_device *dev,
9663 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00009664{
Joe Perchesb004ff42012-09-12 20:12:19 -07009665 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009666 dev_printk_emit(level[1] - '0',
9667 dev->dev.parent,
9668 "%s %s %s%s: %pV",
9669 dev_driver_string(dev->dev.parent),
9670 dev_name(dev->dev.parent),
9671 netdev_name(dev), netdev_reg_state(dev),
9672 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009673 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009674 printk("%s%s%s: %pV",
9675 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009676 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07009677 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009678 }
Joe Perches256df2f2010-06-27 01:02:35 +00009679}
9680
Joe Perches6ea754e2014-09-22 11:10:50 -07009681void netdev_printk(const char *level, const struct net_device *dev,
9682 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00009683{
9684 struct va_format vaf;
9685 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00009686
9687 va_start(args, format);
9688
9689 vaf.fmt = format;
9690 vaf.va = &args;
9691
Joe Perches6ea754e2014-09-22 11:10:50 -07009692 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009693
Joe Perches256df2f2010-06-27 01:02:35 +00009694 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00009695}
9696EXPORT_SYMBOL(netdev_printk);
9697
9698#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07009699void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00009700{ \
Joe Perches256df2f2010-06-27 01:02:35 +00009701 struct va_format vaf; \
9702 va_list args; \
9703 \
9704 va_start(args, fmt); \
9705 \
9706 vaf.fmt = fmt; \
9707 vaf.va = &args; \
9708 \
Joe Perches6ea754e2014-09-22 11:10:50 -07009709 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07009710 \
Joe Perches256df2f2010-06-27 01:02:35 +00009711 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00009712} \
9713EXPORT_SYMBOL(func);
9714
9715define_netdev_printk_level(netdev_emerg, KERN_EMERG);
9716define_netdev_printk_level(netdev_alert, KERN_ALERT);
9717define_netdev_printk_level(netdev_crit, KERN_CRIT);
9718define_netdev_printk_level(netdev_err, KERN_ERR);
9719define_netdev_printk_level(netdev_warn, KERN_WARNING);
9720define_netdev_printk_level(netdev_notice, KERN_NOTICE);
9721define_netdev_printk_level(netdev_info, KERN_INFO);
9722
Pavel Emelyanov46650792007-10-08 20:38:39 -07009723static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009724{
9725 kfree(net->dev_name_head);
9726 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +03009727 if (net != &init_net)
9728 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -07009729}
9730
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009731static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07009732 .init = netdev_init,
9733 .exit = netdev_exit,
9734};
9735
Pavel Emelyanov46650792007-10-08 20:38:39 -07009736static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009737{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009738 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009739 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009740 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02009741 * initial network namespace
9742 */
9743 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009744 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009745 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009746 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02009747
9748 /* Ignore unmoveable devices (i.e. loopback) */
9749 if (dev->features & NETIF_F_NETNS_LOCAL)
9750 continue;
9751
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009752 /* Leave virtual devices for the generic cleanup */
9753 if (dev->rtnl_link_ops)
9754 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08009755
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009756 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009757 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko55b40db2019-07-28 14:56:36 +02009758 if (__dev_get_by_name(&init_net, fb_name))
9759 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009760 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009761 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009762 pr_emerg("%s: failed to move %s to init_net: %d\n",
9763 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009764 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02009765 }
9766 }
9767 rtnl_unlock();
9768}
9769
Eric W. Biederman50624c92013-09-23 21:19:49 -07009770static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
9771{
9772 /* Return with the rtnl_lock held when there are no network
9773 * devices unregistering in any network namespace in net_list.
9774 */
9775 struct net *net;
9776 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01009777 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009778
Peter Zijlstraff960a72014-10-29 17:04:56 +01009779 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009780 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07009781 unregistering = false;
9782 rtnl_lock();
9783 list_for_each_entry(net, net_list, exit_list) {
9784 if (net->dev_unreg_count > 0) {
9785 unregistering = true;
9786 break;
9787 }
9788 }
9789 if (!unregistering)
9790 break;
9791 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01009792
9793 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009794 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01009795 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009796}
9797
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009798static void __net_exit default_device_exit_batch(struct list_head *net_list)
9799{
9800 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04009801 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009802 * Do this across as many network namespaces as possible to
9803 * improve batching efficiency.
9804 */
9805 struct net_device *dev;
9806 struct net *net;
9807 LIST_HEAD(dev_kill_list);
9808
Eric W. Biederman50624c92013-09-23 21:19:49 -07009809 /* To prevent network device cleanup code from dereferencing
9810 * loopback devices or network devices that have been freed
9811 * wait here for all pending unregistrations to complete,
9812 * before unregistring the loopback device and allowing the
9813 * network namespace be freed.
9814 *
9815 * The netdev todo list containing all network devices
9816 * unregistrations that happen in default_device_exit_batch
9817 * will run in the rtnl_unlock() at the end of
9818 * default_device_exit_batch.
9819 */
9820 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009821 list_for_each_entry(net, net_list, exit_list) {
9822 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02009823 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009824 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
9825 else
9826 unregister_netdevice_queue(dev, &dev_kill_list);
9827 }
9828 }
9829 unregister_netdevice_many(&dev_kill_list);
9830 rtnl_unlock();
9831}
9832
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009833static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009834 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009835 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02009836};
9837
Linus Torvalds1da177e2005-04-16 15:20:36 -07009838/*
9839 * Initialize the DEV module. At boot time this walks the device list and
9840 * unhooks any devices that fail to initialise (normally hardware not
9841 * present) and leaves us with a valid list of present and active devices.
9842 *
9843 */
9844
9845/*
9846 * This is called single threaded during boot, so no need
9847 * to take the rtnl semaphore.
9848 */
9849static int __init net_dev_init(void)
9850{
9851 int i, rc = -ENOMEM;
9852
9853 BUG_ON(!dev_boot_phase);
9854
Linus Torvalds1da177e2005-04-16 15:20:36 -07009855 if (dev_proc_init())
9856 goto out;
9857
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009858 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07009859 goto out;
9860
9861 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08009862 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009863 INIT_LIST_HEAD(&ptype_base[i]);
9864
Vlad Yasevich62532da2012-11-15 08:49:10 +00009865 INIT_LIST_HEAD(&offload_base);
9866
Eric W. Biederman881d9662007-09-17 11:56:21 -07009867 if (register_pernet_subsys(&netdev_net_ops))
9868 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009869
9870 /*
9871 * Initialise the packet receive queues.
9872 */
9873
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07009874 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07009875 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009876 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009877
Eric Dumazet41852492016-08-26 12:50:39 -07009878 INIT_WORK(flush, flush_backlog);
9879
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009880 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07009881 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +01009882#ifdef CONFIG_XFRM_OFFLOAD
9883 skb_queue_head_init(&sd->xfrm_backlog);
9884#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009885 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00009886 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00009887#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009888 sd->csd.func = rps_trigger_softirq;
9889 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009890 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07009891#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00009892
David S. Miller7c4ec742018-07-20 23:37:55 -07009893 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009894 sd->backlog.poll = process_backlog;
9895 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009896 }
9897
Linus Torvalds1da177e2005-04-16 15:20:36 -07009898 dev_boot_phase = 0;
9899
Eric W. Biederman505d4f72008-11-07 22:54:20 -08009900 /* The loopback device is special if any other network devices
9901 * is present in a network namespace the loopback device must
9902 * be present. Since we now dynamically allocate and free the
9903 * loopback device ensure this invariant is maintained by
9904 * keeping the loopback device as the first device on the
9905 * list of network devices. Ensuring the loopback devices
9906 * is the first device that appears and the last network device
9907 * that disappears.
9908 */
9909 if (register_pernet_device(&loopback_net_ops))
9910 goto out;
9911
9912 if (register_pernet_device(&default_device_ops))
9913 goto out;
9914
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009915 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
9916 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009917
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009918 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
9919 NULL, dev_cpu_dead);
9920 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009921 rc = 0;
9922out:
9923 return rc;
9924}
9925
9926subsys_initcall(net_dev_init);