blob: b6b8505cfb3e2394f74b41b8e01055c697ad384b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
tcharding722c9a02017-02-09 17:56:04 +11002 * NET3 Protocol independent device support routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Derived from the non IP parts of dev.c 1.0.19
tcharding722c9a02017-02-09 17:56:04 +110010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 *
14 * Additional Authors:
15 * Florian la Roche <rzsfl@rz.uni-sb.de>
16 * Alan Cox <gw4pts@gw4pts.ampr.org>
17 * David Hinds <dahinds@users.sourceforge.net>
18 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19 * Adam Sulmicki <adam@cfar.umd.edu>
20 * Pekka Riikonen <priikone@poesidon.pspt.fi>
21 *
22 * Changes:
23 * D.J. Barrow : Fixed bug where dev->refcnt gets set
tcharding722c9a02017-02-09 17:56:04 +110024 * to 2 if register_netdev gets called
25 * before net_dev_init & also removed a
26 * few lines of code in the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * Alan Cox : device private ioctl copies fields back.
28 * Alan Cox : Transmit queue code does relevant
29 * stunts to keep the queue safe.
30 * Alan Cox : Fixed double lock.
31 * Alan Cox : Fixed promisc NULL pointer trap
32 * ???????? : Support the full private ioctl range
33 * Alan Cox : Moved ioctl permission check into
34 * drivers
35 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
36 * Alan Cox : 100 backlog just doesn't cut it when
37 * you start doing multicast video 8)
38 * Alan Cox : Rewrote net_bh and list manager.
tcharding722c9a02017-02-09 17:56:04 +110039 * Alan Cox : Fix ETH_P_ALL echoback lengths.
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * Alan Cox : Took out transmit every packet pass
41 * Saved a few bytes in the ioctl handler
42 * Alan Cox : Network driver sets packet type before
43 * calling netif_rx. Saves a function
44 * call a packet.
45 * Alan Cox : Hashed net_bh()
46 * Richard Kooijman: Timestamp fixes.
47 * Alan Cox : Wrong field in SIOCGIFDSTADDR
48 * Alan Cox : Device lock protection.
tcharding722c9a02017-02-09 17:56:04 +110049 * Alan Cox : Fixed nasty side effect of device close
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * changes.
51 * Rudi Cilibrasi : Pass the right thing to
52 * set_mac_address()
53 * Dave Miller : 32bit quantity for the device lock to
54 * make it work out on a Sparc.
55 * Bjorn Ekwall : Added KERNELD hack.
56 * Alan Cox : Cleaned up the backlog initialise.
57 * Craig Metz : SIOCGIFCONF fix if space for under
58 * 1 device.
59 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
60 * is no device open function.
61 * Andi Kleen : Fix error reporting for SIOCGIFCONF
62 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
63 * Cyrus Durgin : Cleaned for KMOD
64 * Adam Sulmicki : Bug Fix : Network Device Unload
65 * A network device unload needs to purge
66 * the backlog queue.
67 * Paul Rusty Russell : SIOCSIFNAME
68 * Pekka Riikonen : Netdev boot-time settings code
69 * Andrew Morton : Make unregister_netdevice wait
tcharding722c9a02017-02-09 17:56:04 +110070 * indefinitely on dev->refcnt
71 * J Hadi Salim : - Backlog queue sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * - netif_rx() feedback
73 */
74
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080075#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080077#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/cpu.h>
79#include <linux/types.h>
80#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000081#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090082#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070084#include <linux/sched/mm.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080085#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#include <linux/string.h>
87#include <linux/mm.h>
88#include <linux/socket.h>
89#include <linux/sockios.h>
90#include <linux/errno.h>
91#include <linux/interrupt.h>
92#include <linux/if_ether.h>
93#include <linux/netdevice.h>
94#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070095#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070097#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040098#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020099#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -0800101#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700105#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200107#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000109#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/highmem.h>
111#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#include <linux/netpoll.h>
114#include <linux/rcupdate.h>
115#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500118#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700119#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700120#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700121#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700122#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700123#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700124#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700125#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700126#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700127#include <linux/ipv6.h>
128#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700129#include <linux/jhash.h>
130#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700131#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900132#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900133#include <trace/events/skb.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700134#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000135#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100136#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300137#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700138#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100139#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400140#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800141#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200142#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530143#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200144#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200145#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200146#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100147#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100148#include <net/devlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700150#include "net-sysfs.h"
151
Herbert Xud565b0a2008-12-15 23:38:52 -0800152#define MAX_GRO_SKBS 8
153
Herbert Xu5d38a072009-01-04 16:13:40 -0800154/* This should be increased if a protocol with a bigger head is added. */
155#define GRO_MAX_HEAD (MAX_HEADER + 128)
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000158static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000159struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
160struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000161static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000163static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700164static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700165 struct netdev_notifier_info *info);
Petr Machata26372602018-12-06 17:05:45 +0000166static int call_netdevice_notifiers_extack(unsigned long val,
167 struct net_device *dev,
168 struct netlink_ext_ack *extack);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200169static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700172 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * semaphore.
174 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800175 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
177 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700178 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * actual updates. This allows pure readers to access the list even
180 * while a writer is preparing to update it.
181 *
182 * To put it another way, dev_base_lock is held for writing only to
183 * protect against pure readers; the rtnl semaphore provides the
184 * protection against other writers.
185 *
186 * See, for example usages, register_netdevice() and
187 * unregister_netdevice(), which must be called with the rtnl
188 * semaphore held.
189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191EXPORT_SYMBOL(dev_base_lock);
192
Florian Westphal6c557002017-10-02 23:50:05 +0200193static DEFINE_MUTEX(ifalias_mutex);
194
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300195/* protects napi_hash addition/deletion and napi_gen_id */
196static DEFINE_SPINLOCK(napi_hash_lock);
197
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800198static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800199static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300200
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200201static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000202
Thomas Graf4e985ad2011-06-21 03:11:20 +0000203static inline void dev_base_seq_inc(struct net *net)
204{
tcharding643aa9c2017-02-09 17:56:05 +1100205 while (++net->dev_base_seq == 0)
206 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000207}
208
Eric W. Biederman881d9662007-09-17 11:56:21 -0700209static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700211 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000212
stephen hemminger08e98972009-11-10 07:20:34 +0000213 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Eric W. Biederman881d9662007-09-17 11:56:21 -0700216static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700218 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000221static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000222{
223#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000224 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000225#endif
226}
227
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000228static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000229{
230#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000231 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000232#endif
233}
234
Eric W. Biedermance286d32007-09-12 13:53:49 +0200235/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000236static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200237{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900238 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200239
240 ASSERT_RTNL();
241
242 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800243 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000244 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000245 hlist_add_head_rcu(&dev->index_hlist,
246 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200247 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000248
249 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200250}
251
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000252/* Device list removal
253 * caller must respect a RCU grace period before freeing/reusing dev
254 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200255static void unlist_netdevice(struct net_device *dev)
256{
257 ASSERT_RTNL();
258
259 /* Unlink dev from the device chain */
260 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800261 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000262 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000263 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200264 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000265
266 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/*
270 * Our notifier list
271 */
272
Alan Sternf07d5b92006-05-09 15:23:03 -0700273static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275/*
276 * Device drivers call our routines to queue packets here. We empty the
277 * queue in the local softnet handler.
278 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700279
Eric Dumazet9958da02010-04-17 04:17:02 +0000280DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700281EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
David S. Millercf508b12008-07-22 14:16:42 -0700283#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700284/*
David S. Millerc773e842008-07-08 23:13:53 -0700285 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700286 * according to dev->type
287 */
tcharding643aa9c2017-02-09 17:56:05 +1100288static const unsigned short netdev_lock_type[] = {
289 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700290 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
291 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
292 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
293 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
294 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
295 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
296 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
297 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
298 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
299 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
300 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400301 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
302 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
303 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700304
tcharding643aa9c2017-02-09 17:56:05 +1100305static const char *const netdev_lock_name[] = {
306 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
307 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
308 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
309 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
310 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
311 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
312 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
313 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
314 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
315 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
316 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
317 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
318 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
319 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
320 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700321
322static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700323static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700324
325static inline unsigned short netdev_lock_pos(unsigned short dev_type)
326{
327 int i;
328
329 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
330 if (netdev_lock_type[i] == dev_type)
331 return i;
332 /* the last key is used by default */
333 return ARRAY_SIZE(netdev_lock_type) - 1;
334}
335
David S. Millercf508b12008-07-22 14:16:42 -0700336static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
337 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700338{
339 int i;
340
341 i = netdev_lock_pos(dev_type);
342 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
343 netdev_lock_name[i]);
344}
David S. Millercf508b12008-07-22 14:16:42 -0700345
346static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
347{
348 int i;
349
350 i = netdev_lock_pos(dev->type);
351 lockdep_set_class_and_name(&dev->addr_list_lock,
352 &netdev_addr_lock_key[i],
353 netdev_lock_name[i]);
354}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700355#else
David S. Millercf508b12008-07-22 14:16:42 -0700356static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
357 unsigned short dev_type)
358{
359}
360static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700361{
362}
363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100366 *
367 * Protocol management and registration routines
368 *
369 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * Add a protocol ID to the list. Now that the input handler is
374 * smarter we can dispense with all the messy stuff that used to be
375 * here.
376 *
377 * BEWARE!!! Protocol handlers, mangling input packets,
378 * MUST BE last in hash buckets and checking protocol handlers
379 * MUST start from promiscuous ptype_all chain in net_bh.
380 * It is true now, do not change it.
381 * Explanation follows: if protocol handler, mangling packet, will
382 * be the first on list, it is not able to sense, that packet
383 * is cloned and should be copied-on-write, so that it will
384 * change it and subsequent readers will get broken packet.
385 * --ANK (980803)
386 */
387
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000388static inline struct list_head *ptype_head(const struct packet_type *pt)
389{
390 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800391 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000392 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800393 return pt->dev ? &pt->dev->ptype_specific :
394 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/**
398 * dev_add_pack - add packet handler
399 * @pt: packet type declaration
400 *
401 * Add a protocol handler to the networking stack. The passed &packet_type
402 * is linked into kernel lists and may not be freed until it has been
403 * removed from the kernel lists.
404 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900405 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * guarantee all CPU's that are in middle of receiving packets
407 * will see the new packet type (until the next received packet).
408 */
409
410void dev_add_pack(struct packet_type *pt)
411{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000412 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000414 spin_lock(&ptype_lock);
415 list_add_rcu(&pt->list, head);
416 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700418EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**
421 * __dev_remove_pack - remove packet handler
422 * @pt: packet type declaration
423 *
424 * Remove a protocol handler that was previously added to the kernel
425 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
426 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900427 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 *
429 * The packet type might still be in use by receivers
430 * and must not be freed until after all the CPU's have gone
431 * through a quiescent state.
432 */
433void __dev_remove_pack(struct packet_type *pt)
434{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000435 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 struct packet_type *pt1;
437
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000438 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 list_for_each_entry(pt1, head, list) {
441 if (pt == pt1) {
442 list_del_rcu(&pt->list);
443 goto out;
444 }
445 }
446
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000447 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000449 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700451EXPORT_SYMBOL(__dev_remove_pack);
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/**
454 * dev_remove_pack - remove packet handler
455 * @pt: packet type declaration
456 *
457 * Remove a protocol handler that was previously added to the kernel
458 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
459 * from the kernel lists and can be freed or reused once this function
460 * returns.
461 *
462 * This call sleeps to guarantee that no CPU is looking at the packet
463 * type after return.
464 */
465void dev_remove_pack(struct packet_type *pt)
466{
467 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 synchronize_net();
470}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700471EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Vlad Yasevich62532da2012-11-15 08:49:10 +0000473
474/**
475 * dev_add_offload - register offload handlers
476 * @po: protocol offload declaration
477 *
478 * Add protocol offload handlers to the networking stack. The passed
479 * &proto_offload is linked into kernel lists and may not be freed until
480 * it has been removed from the kernel lists.
481 *
482 * This call does not sleep therefore it can not
483 * guarantee all CPU's that are in middle of receiving packets
484 * will see the new offload handlers (until the next received packet).
485 */
486void dev_add_offload(struct packet_offload *po)
487{
David S. Millerbdef7de2015-06-01 14:56:09 -0700488 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000489
490 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700491 list_for_each_entry(elem, &offload_base, list) {
492 if (po->priority < elem->priority)
493 break;
494 }
495 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000496 spin_unlock(&offload_lock);
497}
498EXPORT_SYMBOL(dev_add_offload);
499
500/**
501 * __dev_remove_offload - remove offload handler
502 * @po: packet offload declaration
503 *
504 * Remove a protocol offload handler that was previously added to the
505 * kernel offload handlers by dev_add_offload(). The passed &offload_type
506 * is removed from the kernel lists and can be freed or reused once this
507 * function returns.
508 *
509 * The packet type might still be in use by receivers
510 * and must not be freed until after all the CPU's have gone
511 * through a quiescent state.
512 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800513static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000514{
515 struct list_head *head = &offload_base;
516 struct packet_offload *po1;
517
Eric Dumazetc53aa502012-11-16 08:08:23 +0000518 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000519
520 list_for_each_entry(po1, head, list) {
521 if (po == po1) {
522 list_del_rcu(&po->list);
523 goto out;
524 }
525 }
526
527 pr_warn("dev_remove_offload: %p not found\n", po);
528out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000529 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000530}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000531
532/**
533 * dev_remove_offload - remove packet offload handler
534 * @po: packet offload declaration
535 *
536 * Remove a packet offload handler that was previously added to the kernel
537 * offload handlers by dev_add_offload(). The passed &offload_type is
538 * removed from the kernel lists and can be freed or reused once this
539 * function returns.
540 *
541 * This call sleeps to guarantee that no CPU is looking at the packet
542 * type after return.
543 */
544void dev_remove_offload(struct packet_offload *po)
545{
546 __dev_remove_offload(po);
547
548 synchronize_net();
549}
550EXPORT_SYMBOL(dev_remove_offload);
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100553 *
554 * Device Boot-time Settings Routines
555 *
556 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558/* Boot time configuration table */
559static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
560
561/**
562 * netdev_boot_setup_add - add new setup entry
563 * @name: name of the device
564 * @map: configured settings for the device
565 *
566 * Adds new setup entry to the dev_boot_setup list. The function
567 * returns 0 on error and 1 on success. This is a generic routine to
568 * all netdevices.
569 */
570static int netdev_boot_setup_add(char *name, struct ifmap *map)
571{
572 struct netdev_boot_setup *s;
573 int i;
574
575 s = dev_boot_setup;
576 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
577 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
578 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700579 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 memcpy(&s[i].map, map, sizeof(s[i].map));
581 break;
582 }
583 }
584
585 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
586}
587
588/**
tcharding722c9a02017-02-09 17:56:04 +1100589 * netdev_boot_setup_check - check boot time settings
590 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 *
tcharding722c9a02017-02-09 17:56:04 +1100592 * Check boot time settings for the device.
593 * The found settings are set for the device to be used
594 * later in the device probing.
595 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 */
597int netdev_boot_setup_check(struct net_device *dev)
598{
599 struct netdev_boot_setup *s = dev_boot_setup;
600 int i;
601
602 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
603 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700604 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100605 dev->irq = s[i].map.irq;
606 dev->base_addr = s[i].map.base_addr;
607 dev->mem_start = s[i].map.mem_start;
608 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return 1;
610 }
611 }
612 return 0;
613}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700614EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616
617/**
tcharding722c9a02017-02-09 17:56:04 +1100618 * netdev_boot_base - get address from boot time settings
619 * @prefix: prefix for network device
620 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *
tcharding722c9a02017-02-09 17:56:04 +1100622 * Check boot time settings for the base address of device.
623 * The found settings are set for the device to be used
624 * later in the device probing.
625 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 */
627unsigned long netdev_boot_base(const char *prefix, int unit)
628{
629 const struct netdev_boot_setup *s = dev_boot_setup;
630 char name[IFNAMSIZ];
631 int i;
632
633 sprintf(name, "%s%d", prefix, unit);
634
635 /*
636 * If device already registered then return base of 1
637 * to indicate not to probe for this interface
638 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700639 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return 1;
641
642 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
643 if (!strcmp(name, s[i].name))
644 return s[i].map.base_addr;
645 return 0;
646}
647
648/*
649 * Saves at boot time configured settings for any netdevice.
650 */
651int __init netdev_boot_setup(char *str)
652{
653 int ints[5];
654 struct ifmap map;
655
656 str = get_options(str, ARRAY_SIZE(ints), ints);
657 if (!str || !*str)
658 return 0;
659
660 /* Save settings */
661 memset(&map, 0, sizeof(map));
662 if (ints[0] > 0)
663 map.irq = ints[1];
664 if (ints[0] > 1)
665 map.base_addr = ints[2];
666 if (ints[0] > 2)
667 map.mem_start = ints[3];
668 if (ints[0] > 3)
669 map.mem_end = ints[4];
670
671 /* Add new entry to the list */
672 return netdev_boot_setup_add(str, &map);
673}
674
675__setup("netdev=", netdev_boot_setup);
676
677/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100678 *
679 * Device Interface Subroutines
680 *
681 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200684 * dev_get_iflink - get 'iflink' value of a interface
685 * @dev: targeted interface
686 *
687 * Indicates the ifindex the interface is linked to.
688 * Physical interfaces have the same 'ifindex' and 'iflink' values.
689 */
690
691int dev_get_iflink(const struct net_device *dev)
692{
693 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
694 return dev->netdev_ops->ndo_get_iflink(dev);
695
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200696 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200697}
698EXPORT_SYMBOL(dev_get_iflink);
699
700/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700701 * dev_fill_metadata_dst - Retrieve tunnel egress information.
702 * @dev: targeted interface
703 * @skb: The packet.
704 *
705 * For better visibility of tunnel traffic OVS needs to retrieve
706 * egress tunnel information for a packet. Following API allows
707 * user to get this info.
708 */
709int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
710{
711 struct ip_tunnel_info *info;
712
713 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
714 return -EINVAL;
715
716 info = skb_tunnel_info_unclone(skb);
717 if (!info)
718 return -ENOMEM;
719 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
720 return -EINVAL;
721
722 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
723}
724EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
725
726/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700728 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * @name: name to find
730 *
731 * Find an interface by name. Must be called under RTNL semaphore
732 * or @dev_base_lock. If the name is found a pointer to the device
733 * is returned. If the name is not found then %NULL is returned. The
734 * reference counters are not incremented so the caller must be
735 * careful with locks.
736 */
737
Eric W. Biederman881d9662007-09-17 11:56:21 -0700738struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700740 struct net_device *dev;
741 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Sasha Levinb67bfe02013-02-27 17:06:00 -0800743 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 if (!strncmp(dev->name, name, IFNAMSIZ))
745 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return NULL;
748}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700749EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751/**
tcharding722c9a02017-02-09 17:56:04 +1100752 * dev_get_by_name_rcu - find a device by its name
753 * @net: the applicable net namespace
754 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000755 *
tcharding722c9a02017-02-09 17:56:04 +1100756 * Find an interface by name.
757 * If the name is found a pointer to the device is returned.
758 * If the name is not found then %NULL is returned.
759 * The reference counters are not incremented so the caller must be
760 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000761 */
762
763struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
764{
Eric Dumazet72c95282009-10-30 07:11:27 +0000765 struct net_device *dev;
766 struct hlist_head *head = dev_name_hash(net, name);
767
Sasha Levinb67bfe02013-02-27 17:06:00 -0800768 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000769 if (!strncmp(dev->name, name, IFNAMSIZ))
770 return dev;
771
772 return NULL;
773}
774EXPORT_SYMBOL(dev_get_by_name_rcu);
775
776/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700778 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 * @name: name to find
780 *
781 * Find an interface by name. This can be called from any
782 * context and does its own locking. The returned handle has
783 * the usage count incremented and the caller must use dev_put() to
784 * release it when it is no longer needed. %NULL is returned if no
785 * matching device is found.
786 */
787
Eric W. Biederman881d9662007-09-17 11:56:21 -0700788struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 struct net_device *dev;
791
Eric Dumazet72c95282009-10-30 07:11:27 +0000792 rcu_read_lock();
793 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (dev)
795 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000796 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return dev;
798}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700799EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801/**
802 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700803 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 * @ifindex: index of device
805 *
806 * Search for an interface by index. Returns %NULL if the device
807 * is not found or a pointer to the device. The device has not
808 * had its reference counter increased so the caller must be careful
809 * about locking. The caller must hold either the RTNL semaphore
810 * or @dev_base_lock.
811 */
812
Eric W. Biederman881d9662007-09-17 11:56:21 -0700813struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700815 struct net_device *dev;
816 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Sasha Levinb67bfe02013-02-27 17:06:00 -0800818 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (dev->ifindex == ifindex)
820 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return NULL;
823}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700824EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000826/**
827 * dev_get_by_index_rcu - find a device by its ifindex
828 * @net: the applicable net namespace
829 * @ifindex: index of device
830 *
831 * Search for an interface by index. Returns %NULL if the device
832 * is not found or a pointer to the device. The device has not
833 * had its reference counter increased so the caller must be careful
834 * about locking. The caller must hold RCU lock.
835 */
836
837struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
838{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000839 struct net_device *dev;
840 struct hlist_head *head = dev_index_hash(net, ifindex);
841
Sasha Levinb67bfe02013-02-27 17:06:00 -0800842 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000843 if (dev->ifindex == ifindex)
844 return dev;
845
846 return NULL;
847}
848EXPORT_SYMBOL(dev_get_by_index_rcu);
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851/**
852 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700853 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 * @ifindex: index of device
855 *
856 * Search for an interface by index. Returns NULL if the device
857 * is not found or a pointer to the device. The device returned has
858 * had a reference added and the pointer is safe until the user calls
859 * dev_put to indicate they have finished with it.
860 */
861
Eric W. Biederman881d9662007-09-17 11:56:21 -0700862struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863{
864 struct net_device *dev;
865
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000866 rcu_read_lock();
867 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (dev)
869 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000870 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return dev;
872}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700873EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200876 * dev_get_by_napi_id - find a device by napi_id
877 * @napi_id: ID of the NAPI struct
878 *
879 * Search for an interface by NAPI ID. Returns %NULL if the device
880 * is not found or a pointer to the device. The device has not had
881 * its reference counter increased so the caller must be careful
882 * about locking. The caller must hold RCU lock.
883 */
884
885struct net_device *dev_get_by_napi_id(unsigned int napi_id)
886{
887 struct napi_struct *napi;
888
889 WARN_ON_ONCE(!rcu_read_lock_held());
890
891 if (napi_id < MIN_NAPI_ID)
892 return NULL;
893
894 napi = napi_by_id(napi_id);
895
896 return napi ? napi->dev : NULL;
897}
898EXPORT_SYMBOL(dev_get_by_napi_id);
899
900/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200901 * netdev_get_name - get a netdevice name, knowing its ifindex.
902 * @net: network namespace
903 * @name: a pointer to the buffer where the name will be stored.
904 * @ifindex: the ifindex of the interface to get the name from.
905 *
906 * The use of raw_seqcount_begin() and cond_resched() before
907 * retrying is required as we want to give the writers a chance
908 * to complete when CONFIG_PREEMPT is not set.
909 */
910int netdev_get_name(struct net *net, char *name, int ifindex)
911{
912 struct net_device *dev;
913 unsigned int seq;
914
915retry:
916 seq = raw_seqcount_begin(&devnet_rename_seq);
917 rcu_read_lock();
918 dev = dev_get_by_index_rcu(net, ifindex);
919 if (!dev) {
920 rcu_read_unlock();
921 return -ENODEV;
922 }
923
924 strcpy(name, dev->name);
925 rcu_read_unlock();
926 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
927 cond_resched();
928 goto retry;
929 }
930
931 return 0;
932}
933
934/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000935 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700936 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * @type: media type of device
938 * @ha: hardware address
939 *
940 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800941 * is not found or a pointer to the device.
942 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000943 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * and the caller must therefore be careful about locking
945 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 */
947
Eric Dumazet941666c2010-12-05 01:23:53 +0000948struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
949 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct net_device *dev;
952
Eric Dumazet941666c2010-12-05 01:23:53 +0000953 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (dev->type == type &&
955 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700956 return dev;
957
958 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
Eric Dumazet941666c2010-12-05 01:23:53 +0000960EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300961
Eric W. Biederman881d9662007-09-17 11:56:21 -0700962struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700963{
964 struct net_device *dev;
965
966 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700967 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700968 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700969 return dev;
970
971 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700972}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700973EXPORT_SYMBOL(__dev_getfirstbyhwtype);
974
Eric W. Biederman881d9662007-09-17 11:56:21 -0700975struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000977 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000979 rcu_read_lock();
980 for_each_netdev_rcu(net, dev)
981 if (dev->type == type) {
982 dev_hold(dev);
983 ret = dev;
984 break;
985 }
986 rcu_read_unlock();
987 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989EXPORT_SYMBOL(dev_getfirstbyhwtype);
990
991/**
WANG Cong6c555492014-09-11 15:35:09 -0700992 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700993 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * @if_flags: IFF_* values
995 * @mask: bitmask of bits in if_flags to check
996 *
997 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000998 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700999 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
1001
WANG Cong6c555492014-09-11 15:35:09 -07001002struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1003 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001005 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
WANG Cong6c555492014-09-11 15:35:09 -07001007 ASSERT_RTNL();
1008
Pavel Emelianov7562f872007-05-03 15:13:45 -07001009 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001010 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001012 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
1014 }
1015 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001016 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
WANG Cong6c555492014-09-11 15:35:09 -07001018EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020/**
1021 * dev_valid_name - check if name is okay for network device
1022 * @name: name string
1023 *
1024 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -07001025 * to allow sysfs to work. We also disallow any kind of
1026 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 */
David S. Miller95f050b2012-03-06 16:12:15 -05001028bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001030 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001031 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001032 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001033 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001034 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001035 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001036
1037 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001038 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001039 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001040 name++;
1041 }
David S. Miller95f050b2012-03-06 16:12:15 -05001042 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001044EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001047 * __dev_alloc_name - allocate a name for a device
1048 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001050 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 *
1052 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001053 * id. It scans list of devices to build up a free map, then chooses
1054 * the first empty slot. The caller must hold the dev_base or rtnl lock
1055 * while allocating the name and adding the device in order to avoid
1056 * duplicates.
1057 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1058 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 */
1060
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001061static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 const char *p;
1065 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001066 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct net_device *d;
1068
Rasmus Villemoes93809102017-11-13 00:15:08 +01001069 if (!dev_valid_name(name))
1070 return -EINVAL;
1071
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001072 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (p) {
1074 /*
1075 * Verify the string as this thing may have come from
1076 * the user. There must be either one "%d" and no other "%"
1077 * characters.
1078 */
1079 if (p[1] != 'd' || strchr(p + 2, '%'))
1080 return -EINVAL;
1081
1082 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001083 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (!inuse)
1085 return -ENOMEM;
1086
Eric W. Biederman881d9662007-09-17 11:56:21 -07001087 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 if (!sscanf(d->name, name, &i))
1089 continue;
1090 if (i < 0 || i >= max_netdevices)
1091 continue;
1092
1093 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001094 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!strncmp(buf, d->name, IFNAMSIZ))
1096 set_bit(i, inuse);
1097 }
1098
1099 i = find_first_zero_bit(inuse, max_netdevices);
1100 free_page((unsigned long) inuse);
1101 }
1102
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001103 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001104 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 /* It is possible to run out of possible slots
1108 * when the name is long and there isn't enough space left
1109 * for the digits, or if all bits are used.
1110 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001111 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001114static int dev_alloc_name_ns(struct net *net,
1115 struct net_device *dev,
1116 const char *name)
1117{
1118 char buf[IFNAMSIZ];
1119 int ret;
1120
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001121 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001122 ret = __dev_alloc_name(net, name, buf);
1123 if (ret >= 0)
1124 strlcpy(dev->name, buf, IFNAMSIZ);
1125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001128/**
1129 * dev_alloc_name - allocate a name for a device
1130 * @dev: device
1131 * @name: name format string
1132 *
1133 * Passed a format string - eg "lt%d" it will try and find a suitable
1134 * id. It scans list of devices to build up a free map, then chooses
1135 * the first empty slot. The caller must hold the dev_base or rtnl lock
1136 * while allocating the name and adding the device in order to avoid
1137 * duplicates.
1138 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1139 * Returns the number of the unit assigned or a negative errno code.
1140 */
1141
1142int dev_alloc_name(struct net_device *dev, const char *name)
1143{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001144 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001145}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001146EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001147
Cong Wang0ad646c2017-10-13 11:58:53 -07001148int dev_get_valid_name(struct net *net, struct net_device *dev,
1149 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001150{
David S. Miller55a5ec92018-01-02 11:45:07 -05001151 BUG_ON(!net);
1152
1153 if (!dev_valid_name(name))
1154 return -EINVAL;
1155
1156 if (strchr(name, '%'))
1157 return dev_alloc_name_ns(net, dev, name);
1158 else if (__dev_get_by_name(net, name))
1159 return -EEXIST;
1160 else if (dev->name != name)
1161 strlcpy(dev->name, name, IFNAMSIZ);
1162
1163 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001164}
Cong Wang0ad646c2017-10-13 11:58:53 -07001165EXPORT_SYMBOL(dev_get_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167/**
1168 * dev_change_name - change name of a device
1169 * @dev: device
1170 * @newname: name (or format string) must be at least IFNAMSIZ
1171 *
1172 * Change name of a device, can pass format strings "eth%d".
1173 * for wildcarding.
1174 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001175int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Tom Gundersen238fa362014-07-14 16:37:23 +02001177 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001178 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001180 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001181 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001184 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001186 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001187
1188 /* Some auto-enslaved devices e.g. failover slaves are
1189 * special, as userspace might rename the device after
1190 * the interface had been brought up and running since
1191 * the point kernel initiated auto-enslavement. Allow
1192 * live name change even when these slave devices are
1193 * up and running.
1194 *
1195 * Typically, users of these auto-enslaving devices
1196 * don't actually care about slave name change, as
1197 * they are supposed to operate on master interface
1198 * directly.
1199 */
1200 if (dev->flags & IFF_UP &&
1201 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return -EBUSY;
1203
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001204 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001205
1206 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001207 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001208 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001209 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001210
Herbert Xufcc5a032007-07-30 17:03:38 -07001211 memcpy(oldname, dev->name, IFNAMSIZ);
1212
Gao feng828de4f2012-09-13 20:58:27 +00001213 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001214 if (err < 0) {
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001215 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001216 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001219 if (oldname[0] && !strchr(oldname, '%'))
1220 netdev_info(dev, "renamed from %s\n", oldname);
1221
Tom Gundersen238fa362014-07-14 16:37:23 +02001222 old_assign_type = dev->name_assign_type;
1223 dev->name_assign_type = NET_NAME_RENAMED;
1224
Herbert Xufcc5a032007-07-30 17:03:38 -07001225rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001226 ret = device_rename(&dev->dev, dev->name);
1227 if (ret) {
1228 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001229 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001230 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001231 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001232 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001233
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001234 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001235
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001236 netdev_adjacent_rename_links(dev, oldname);
1237
Herbert Xu7f988ea2007-07-30 16:35:46 -07001238 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001239 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001240 write_unlock_bh(&dev_base_lock);
1241
1242 synchronize_rcu();
1243
1244 write_lock_bh(&dev_base_lock);
1245 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001246 write_unlock_bh(&dev_base_lock);
1247
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001248 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001249 ret = notifier_to_errno(ret);
1250
1251 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001252 /* err >= 0 after dev_alloc_name() or stores the first errno */
1253 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001254 err = ret;
Eric Dumazet30e6c9fa2012-12-20 17:25:08 +00001255 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001256 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001257 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001258 dev->name_assign_type = old_assign_type;
1259 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001260 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001261 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001262 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001263 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001264 }
1265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 return err;
1268}
1269
1270/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001271 * dev_set_alias - change ifalias of a device
1272 * @dev: device
1273 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001274 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001275 *
1276 * Set ifalias for a device,
1277 */
1278int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1279{
Florian Westphal6c557002017-10-02 23:50:05 +02001280 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001281
1282 if (len >= IFALIASZ)
1283 return -EINVAL;
1284
Florian Westphal6c557002017-10-02 23:50:05 +02001285 if (len) {
1286 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1287 if (!new_alias)
1288 return -ENOMEM;
1289
1290 memcpy(new_alias->ifalias, alias, len);
1291 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001292 }
1293
Florian Westphal6c557002017-10-02 23:50:05 +02001294 mutex_lock(&ifalias_mutex);
1295 rcu_swap_protected(dev->ifalias, new_alias,
1296 mutex_is_locked(&ifalias_mutex));
1297 mutex_unlock(&ifalias_mutex);
1298
1299 if (new_alias)
1300 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001301
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001302 return len;
1303}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001304EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001305
Florian Westphal6c557002017-10-02 23:50:05 +02001306/**
1307 * dev_get_alias - get ifalias of a device
1308 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001309 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001310 * @len: size of buffer
1311 *
1312 * get ifalias for a device. Caller must make sure dev cannot go
1313 * away, e.g. rcu read lock or own a reference count to device.
1314 */
1315int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1316{
1317 const struct dev_ifalias *alias;
1318 int ret = 0;
1319
1320 rcu_read_lock();
1321 alias = rcu_dereference(dev->ifalias);
1322 if (alias)
1323 ret = snprintf(name, len, "%s", alias->ifalias);
1324 rcu_read_unlock();
1325
1326 return ret;
1327}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001328
1329/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001330 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001331 * @dev: device to cause notification
1332 *
1333 * Called to indicate a device has changed features.
1334 */
1335void netdev_features_change(struct net_device *dev)
1336{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001337 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001338}
1339EXPORT_SYMBOL(netdev_features_change);
1340
1341/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 * netdev_state_change - device changes state
1343 * @dev: device to cause notification
1344 *
1345 * Called to indicate a device has changed state. This function calls
1346 * the notifier chains for netdev_chain and sends a NEWLINK message
1347 * to the routing socket.
1348 */
1349void netdev_state_change(struct net_device *dev)
1350{
1351 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001352 struct netdev_notifier_change_info change_info = {
1353 .info.dev = dev,
1354 };
Loic Prylli54951192014-07-01 21:39:43 -07001355
David Ahern51d0c0472017-10-04 17:48:45 -07001356 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001357 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001358 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001361EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Amerigo Wangee89bab2012-08-09 22:14:56 +00001363/**
tcharding722c9a02017-02-09 17:56:04 +11001364 * netdev_notify_peers - notify network peers about existence of @dev
1365 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001366 *
1367 * Generate traffic such that interested network peers are aware of
1368 * @dev, such as by generating a gratuitous ARP. This may be used when
1369 * a device wants to inform the rest of the network about some sort of
1370 * reconfiguration such as a failover event or virtual machine
1371 * migration.
1372 */
1373void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001374{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001375 rtnl_lock();
1376 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001377 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001378 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001379}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001380EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001381
Petr Machata40c900a2018-12-06 17:05:47 +00001382static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001384 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001385 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001387 ASSERT_RTNL();
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (!netif_device_present(dev))
1390 return -ENODEV;
1391
Neil Hormanca99ca12013-02-05 08:05:43 +00001392 /* Block netpoll from trying to do any rx path servicing.
1393 * If we don't do this there is a chance ndo_poll_controller
1394 * or ndo_poll may be running while we open the device
1395 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001396 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001397
Petr Machata40c900a2018-12-06 17:05:47 +00001398 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001399 ret = notifier_to_errno(ret);
1400 if (ret)
1401 return ret;
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001404
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001405 if (ops->ndo_validate_addr)
1406 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001407
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001408 if (!ret && ops->ndo_open)
1409 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Eric W. Biederman66b55522014-03-27 15:39:03 -07001411 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001412
Jeff Garzikbada3392007-10-23 20:19:37 -07001413 if (ret)
1414 clear_bit(__LINK_STATE_START, &dev->state);
1415 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001417 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001419 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return ret;
1423}
Patrick McHardybd380812010-02-26 06:34:53 +00001424
1425/**
1426 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001427 * @dev: device to open
1428 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001429 *
1430 * Takes a device from down to up state. The device's private open
1431 * function is invoked and then the multicast lists are loaded. Finally
1432 * the device is moved into the up state and a %NETDEV_UP message is
1433 * sent to the netdev notifier chain.
1434 *
1435 * Calling this function on an active interface is a nop. On a failure
1436 * a negative errno code is returned.
1437 */
Petr Machata00f54e62018-12-06 17:05:36 +00001438int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001439{
1440 int ret;
1441
Patrick McHardybd380812010-02-26 06:34:53 +00001442 if (dev->flags & IFF_UP)
1443 return 0;
1444
Petr Machata40c900a2018-12-06 17:05:47 +00001445 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001446 if (ret < 0)
1447 return ret;
1448
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001449 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001450 call_netdevice_notifiers(NETDEV_UP, dev);
1451
1452 return ret;
1453}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001454EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
stephen hemminger7051b882017-07-18 15:59:27 -07001456static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Octavian Purdila44345722010-12-13 12:44:07 +00001458 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001459
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001460 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001461 might_sleep();
1462
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001463 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001464 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001465 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001466
Octavian Purdila44345722010-12-13 12:44:07 +00001467 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Octavian Purdila44345722010-12-13 12:44:07 +00001469 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Octavian Purdila44345722010-12-13 12:44:07 +00001471 /* Synchronize to scheduled poll. We cannot touch poll list, it
1472 * can be even on different cpu. So just clear netif_running().
1473 *
1474 * dev->stop() will invoke napi_disable() on all of it's
1475 * napi_struct instances on this device.
1476 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001477 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Octavian Purdila44345722010-12-13 12:44:07 +00001480 dev_deactivate_many(head);
1481
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001482 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001483 const struct net_device_ops *ops = dev->netdev_ops;
1484
1485 /*
1486 * Call the device specific close. This cannot fail.
1487 * Only if device is UP
1488 *
1489 * We allow it to be called even after a DETACH hot-plug
1490 * event.
1491 */
1492 if (ops->ndo_stop)
1493 ops->ndo_stop(dev);
1494
Octavian Purdila44345722010-12-13 12:44:07 +00001495 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001496 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001497 }
Octavian Purdila44345722010-12-13 12:44:07 +00001498}
1499
stephen hemminger7051b882017-07-18 15:59:27 -07001500static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001501{
1502 LIST_HEAD(single);
1503
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001504 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001505 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001506 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001507}
1508
stephen hemminger7051b882017-07-18 15:59:27 -07001509void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001510{
1511 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001512
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001513 /* Remove the devices that don't need to be closed */
1514 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001515 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001516 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001517
1518 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001519
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001520 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001521 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001522 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001523 if (unlink)
1524 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526}
David S. Miller99c4a262015-03-18 22:52:33 -04001527EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001528
1529/**
1530 * dev_close - shutdown an interface.
1531 * @dev: device to shutdown
1532 *
1533 * This function moves an active device into down state. A
1534 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1535 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1536 * chain.
1537 */
stephen hemminger7051b882017-07-18 15:59:27 -07001538void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001539{
Eric Dumazete14a5992011-05-10 12:26:06 -07001540 if (dev->flags & IFF_UP) {
1541 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001542
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001543 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001544 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001545 list_del(&single);
1546 }
Patrick McHardybd380812010-02-26 06:34:53 +00001547}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001548EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001551/**
1552 * dev_disable_lro - disable Large Receive Offload on a device
1553 * @dev: device
1554 *
1555 * Disable Large Receive Offload (LRO) on a net device. Must be
1556 * called under RTNL. This is needed if received packets may be
1557 * forwarded to another interface.
1558 */
1559void dev_disable_lro(struct net_device *dev)
1560{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001561 struct net_device *lower_dev;
1562 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001563
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001564 dev->wanted_features &= ~NETIF_F_LRO;
1565 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001566
Michał Mirosław22d59692011-04-21 12:42:15 +00001567 if (unlikely(dev->features & NETIF_F_LRO))
1568 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001569
1570 netdev_for_each_lower_dev(dev, lower_dev, iter)
1571 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001572}
1573EXPORT_SYMBOL(dev_disable_lro);
1574
Michael Chan56f5aa72017-12-16 03:09:41 -05001575/**
1576 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1577 * @dev: device
1578 *
1579 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1580 * called under RTNL. This is needed if Generic XDP is installed on
1581 * the device.
1582 */
1583static void dev_disable_gro_hw(struct net_device *dev)
1584{
1585 dev->wanted_features &= ~NETIF_F_GRO_HW;
1586 netdev_update_features(dev);
1587
1588 if (unlikely(dev->features & NETIF_F_GRO_HW))
1589 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1590}
1591
Kirill Tkhaiede27622018-03-23 19:47:19 +03001592const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1593{
1594#define N(val) \
1595 case NETDEV_##val: \
1596 return "NETDEV_" __stringify(val);
1597 switch (cmd) {
1598 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1599 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1600 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1601 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1602 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1603 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1604 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001605 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1606 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001607 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001608 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001609#undef N
1610 return "UNKNOWN_NETDEV_EVENT";
1611}
1612EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1613
Jiri Pirko351638e2013-05-28 01:30:21 +00001614static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1615 struct net_device *dev)
1616{
David Ahern51d0c0472017-10-04 17:48:45 -07001617 struct netdev_notifier_info info = {
1618 .dev = dev,
1619 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001620
Jiri Pirko351638e2013-05-28 01:30:21 +00001621 return nb->notifier_call(nb, val, &info);
1622}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001623
Eric W. Biederman881d9662007-09-17 11:56:21 -07001624static int dev_boot_phase = 1;
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626/**
tcharding722c9a02017-02-09 17:56:04 +11001627 * register_netdevice_notifier - register a network notifier block
1628 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 *
tcharding722c9a02017-02-09 17:56:04 +11001630 * Register a notifier to be called when network device events occur.
1631 * The notifier passed is linked into the kernel structures and must
1632 * not be reused until it has been unregistered. A negative errno code
1633 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 *
tcharding722c9a02017-02-09 17:56:04 +11001635 * When registered all registration and up events are replayed
1636 * to the new notifier to allow device to have a race free
1637 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 */
1639
1640int register_netdevice_notifier(struct notifier_block *nb)
1641{
1642 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001643 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001644 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 int err;
1646
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001647 /* Close race with setup_net() and cleanup_net() */
1648 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001650 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001651 if (err)
1652 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001653 if (dev_boot_phase)
1654 goto unlock;
1655 for_each_net(net) {
1656 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001657 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001658 err = notifier_to_errno(err);
1659 if (err)
1660 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Eric W. Biederman881d9662007-09-17 11:56:21 -07001662 if (!(dev->flags & IFF_UP))
1663 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001664
Jiri Pirko351638e2013-05-28 01:30:21 +00001665 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001668
1669unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001671 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001673
1674rollback:
1675 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001676 for_each_net(net) {
1677 for_each_netdev(net, dev) {
1678 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001679 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001680
Eric W. Biederman881d9662007-09-17 11:56:21 -07001681 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001682 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1683 dev);
1684 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001685 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001686 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001687 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001688 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001689
RongQing.Li8f891482011-11-30 23:43:07 -05001690outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001691 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001692 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001694EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696/**
tcharding722c9a02017-02-09 17:56:04 +11001697 * unregister_netdevice_notifier - unregister a network notifier block
1698 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 *
tcharding722c9a02017-02-09 17:56:04 +11001700 * Unregister a notifier previously registered by
1701 * register_netdevice_notifier(). The notifier is unlinked into the
1702 * kernel structures and may then be reused. A negative errno code
1703 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001704 *
tcharding722c9a02017-02-09 17:56:04 +11001705 * After unregistering unregister and down device events are synthesized
1706 * for all devices on the device list to the removed notifier to remove
1707 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 */
1709
1710int unregister_netdevice_notifier(struct notifier_block *nb)
1711{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001712 struct net_device *dev;
1713 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001714 int err;
1715
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001716 /* Close race with setup_net() and cleanup_net() */
1717 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001718 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001719 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001720 if (err)
1721 goto unlock;
1722
1723 for_each_net(net) {
1724 for_each_netdev(net, dev) {
1725 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001726 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1727 dev);
1728 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001729 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001730 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001731 }
1732 }
1733unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001734 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001735 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001736 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001738EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001741 * call_netdevice_notifiers_info - call all network notifier blocks
1742 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00001743 * @info: notifier information data
1744 *
1745 * Call all network notifier blocks. Parameters and return value
1746 * are as for raw_notifier_call_chain().
1747 */
1748
stephen hemminger1d143d92013-12-29 14:01:29 -08001749static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08001750 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001751{
1752 ASSERT_RTNL();
Jiri Pirko351638e2013-05-28 01:30:21 +00001753 return raw_notifier_call_chain(&netdev_chain, val, info);
1754}
Jiri Pirko351638e2013-05-28 01:30:21 +00001755
Petr Machata26372602018-12-06 17:05:45 +00001756static int call_netdevice_notifiers_extack(unsigned long val,
1757 struct net_device *dev,
1758 struct netlink_ext_ack *extack)
1759{
1760 struct netdev_notifier_info info = {
1761 .dev = dev,
1762 .extack = extack,
1763 };
1764
1765 return call_netdevice_notifiers_info(val, &info);
1766}
1767
Jiri Pirko351638e2013-05-28 01:30:21 +00001768/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 * call_netdevice_notifiers - call all network notifier blocks
1770 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001771 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 *
1773 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001774 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 */
1776
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001777int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778{
Petr Machata26372602018-12-06 17:05:45 +00001779 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001781EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02001783/**
1784 * call_netdevice_notifiers_mtu - call all network notifier blocks
1785 * @val: value passed unmodified to notifier function
1786 * @dev: net_device pointer passed unmodified to notifier function
1787 * @arg: additional u32 argument passed to the notifier function
1788 *
1789 * Call all network notifier blocks. Parameters and return value
1790 * are as for raw_notifier_call_chain().
1791 */
1792static int call_netdevice_notifiers_mtu(unsigned long val,
1793 struct net_device *dev, u32 arg)
1794{
1795 struct netdev_notifier_info_ext info = {
1796 .info.dev = dev,
1797 .ext.mtu = arg,
1798 };
1799
1800 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
1801
1802 return call_netdevice_notifiers_info(val, &info.info);
1803}
1804
Pablo Neira1cf519002015-05-13 18:19:37 +02001805#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001806static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001807
1808void net_inc_ingress_queue(void)
1809{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001810 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001811}
1812EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1813
1814void net_dec_ingress_queue(void)
1815{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001816 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02001817}
1818EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1819#endif
1820
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001821#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001822static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001823
1824void net_inc_egress_queue(void)
1825{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001826 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001827}
1828EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1829
1830void net_dec_egress_queue(void)
1831{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07001832 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001833}
1834EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1835#endif
1836
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001837static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09001838#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001839static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08001840static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001841static void netstamp_clear(struct work_struct *work)
1842{
1843 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08001844 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001845
Eric Dumazet13baa002017-03-01 14:28:39 -08001846 wanted = atomic_add_return(deferred, &netstamp_wanted);
1847 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001848 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001849 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001850 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001851}
1852static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001853#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855void net_enable_timestamp(void)
1856{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09001857#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08001858 int wanted;
1859
1860 while (1) {
1861 wanted = atomic_read(&netstamp_wanted);
1862 if (wanted <= 0)
1863 break;
1864 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1865 return;
1866 }
1867 atomic_inc(&netstamp_needed_deferred);
1868 schedule_work(&netstamp_work);
1869#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001870 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08001871#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001873EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875void net_disable_timestamp(void)
1876{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09001877#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08001878 int wanted;
1879
1880 while (1) {
1881 wanted = atomic_read(&netstamp_wanted);
1882 if (wanted <= 1)
1883 break;
1884 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1885 return;
1886 }
1887 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001888 schedule_work(&netstamp_work);
1889#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001890 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08001891#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001893EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Eric Dumazet3b098e22010-05-15 23:57:10 -07001895static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Thomas Gleixner2456e852016-12-25 11:38:40 +01001897 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001898 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001899 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Davidlohr Bueso39e83922018-05-08 09:07:01 -07001902#define net_timestamp_check(COND, SKB) \
1903 if (static_branch_unlikely(&netstamp_needed_key)) { \
1904 if ((COND) && !(SKB)->tstamp) \
1905 __net_timestamp(SKB); \
1906 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001907
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001908bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001909{
1910 unsigned int len;
1911
1912 if (!(dev->flags & IFF_UP))
1913 return false;
1914
1915 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1916 if (skb->len <= len)
1917 return true;
1918
1919 /* if TSO is enabled, we don't care about the length as the packet
1920 * could be forwarded without being segmented before
1921 */
1922 if (skb_is_gso(skb))
1923 return true;
1924
1925 return false;
1926}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001927EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001928
Herbert Xua0265d22014-04-17 13:45:03 +08001929int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1930{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001931 int ret = ____dev_forward_skb(dev, skb);
1932
1933 if (likely(!ret)) {
1934 skb->protocol = eth_type_trans(skb, dev);
1935 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001936 }
1937
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001938 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001939}
1940EXPORT_SYMBOL_GPL(__dev_forward_skb);
1941
Arnd Bergmann44540962009-11-26 06:07:08 +00001942/**
1943 * dev_forward_skb - loopback an skb to another netif
1944 *
1945 * @dev: destination network device
1946 * @skb: buffer to forward
1947 *
1948 * return values:
1949 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001950 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001951 *
1952 * dev_forward_skb can be used for injecting an skb from the
1953 * start_xmit function of one device into the receive queue
1954 * of another device.
1955 *
1956 * The receiving device may be in another namespace, so
1957 * we have to clear all information in the skb that could
1958 * impact namespace isolation.
1959 */
1960int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1961{
Herbert Xua0265d22014-04-17 13:45:03 +08001962 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001963}
1964EXPORT_SYMBOL_GPL(dev_forward_skb);
1965
Changli Gao71d9dec2010-12-15 19:57:25 +00001966static inline int deliver_skb(struct sk_buff *skb,
1967 struct packet_type *pt_prev,
1968 struct net_device *orig_dev)
1969{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04001970 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001971 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03001972 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00001973 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1974}
1975
Salam Noureddine7866a622015-01-27 11:35:48 -08001976static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1977 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001978 struct net_device *orig_dev,
1979 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001980 struct list_head *ptype_list)
1981{
1982 struct packet_type *ptype, *pt_prev = *pt;
1983
1984 list_for_each_entry_rcu(ptype, ptype_list, list) {
1985 if (ptype->type != type)
1986 continue;
1987 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001988 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001989 pt_prev = ptype;
1990 }
1991 *pt = pt_prev;
1992}
1993
Eric Leblondc0de08d2012-08-16 22:02:58 +00001994static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1995{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001996 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001997 return false;
1998
1999 if (ptype->id_match)
2000 return ptype->id_match(ptype, skb->sk);
2001 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2002 return true;
2003
2004 return false;
2005}
2006
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002007/**
2008 * dev_nit_active - return true if any network interface taps are in use
2009 *
2010 * @dev: network device to check for the presence of taps
2011 */
2012bool dev_nit_active(struct net_device *dev)
2013{
2014 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2015}
2016EXPORT_SYMBOL_GPL(dev_nit_active);
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018/*
2019 * Support routine. Sends outgoing frames to any network
2020 * taps currently in use.
2021 */
2022
David Ahern74b20582016-05-10 11:19:50 -07002023void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
2025 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002026 struct sk_buff *skb2 = NULL;
2027 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002028 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002031again:
2032 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002033 if (ptype->ignore_outgoing)
2034 continue;
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 /* Never send packets back to the socket
2037 * they originated from - MvS (miquels@drinkel.ow.org)
2038 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002039 if (skb_loop_sk(ptype, skb))
2040 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002041
Salam Noureddine7866a622015-01-27 11:35:48 -08002042 if (pt_prev) {
2043 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002044 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002045 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002047
2048 /* need to clone skb, done only once */
2049 skb2 = skb_clone(skb, GFP_ATOMIC);
2050 if (!skb2)
2051 goto out_unlock;
2052
2053 net_timestamp_set(skb2);
2054
2055 /* skb->nh should be correctly
2056 * set by sender, so that the second statement is
2057 * just protection against buggy protocols.
2058 */
2059 skb_reset_mac_header(skb2);
2060
2061 if (skb_network_header(skb2) < skb2->data ||
2062 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2063 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2064 ntohs(skb2->protocol),
2065 dev->name);
2066 skb_reset_network_header(skb2);
2067 }
2068
2069 skb2->transport_header = skb2->network_header;
2070 skb2->pkt_type = PACKET_OUTGOING;
2071 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002073
2074 if (ptype_list == &ptype_all) {
2075 ptype_list = &dev->ptype_all;
2076 goto again;
2077 }
2078out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002079 if (pt_prev) {
2080 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2081 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2082 else
2083 kfree_skb(skb2);
2084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 rcu_read_unlock();
2086}
David Ahern74b20582016-05-10 11:19:50 -07002087EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Ben Hutchings2c530402012-07-10 10:55:09 +00002089/**
2090 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002091 * @dev: Network device
2092 * @txq: number of queues available
2093 *
2094 * If real_num_tx_queues is changed the tc mappings may no longer be
2095 * valid. To resolve this verify the tc mapping remains valid and if
2096 * not NULL the mapping. With no priorities mapping to this
2097 * offset/count pair it will no longer be used. In the worst case TC0
2098 * is invalid nothing can be done so disable priority mappings. If is
2099 * expected that drivers will fix this mapping if they can before
2100 * calling netif_set_real_num_tx_queues.
2101 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002102static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002103{
2104 int i;
2105 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2106
2107 /* If TC0 is invalidated disable TC mapping */
2108 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002109 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002110 dev->num_tc = 0;
2111 return;
2112 }
2113
2114 /* Invalidated prio to tc mappings set to TC0 */
2115 for (i = 1; i < TC_BITMASK + 1; i++) {
2116 int q = netdev_get_prio_tc_map(dev, i);
2117
2118 tc = &dev->tc_to_txq[q];
2119 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002120 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2121 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002122 netdev_set_prio_tc_map(dev, i, 0);
2123 }
2124 }
2125}
2126
Alexander Duyck8d059b02016-10-28 11:43:49 -04002127int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2128{
2129 if (dev->num_tc) {
2130 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2131 int i;
2132
Alexander Duyckffcfe252018-07-09 12:19:38 -04002133 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002134 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2135 if ((txq - tc->offset) < tc->count)
2136 return i;
2137 }
2138
Alexander Duyckffcfe252018-07-09 12:19:38 -04002139 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002140 return -1;
2141 }
2142
2143 return 0;
2144}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002145EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002146
Alexander Duyck537c00d2013-01-10 08:57:02 +00002147#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002148struct static_key xps_needed __read_mostly;
2149EXPORT_SYMBOL(xps_needed);
2150struct static_key xps_rxqs_needed __read_mostly;
2151EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002152static DEFINE_MUTEX(xps_map_mutex);
2153#define xmap_dereference(P) \
2154 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2155
Alexander Duyck6234f872016-10-28 11:46:49 -04002156static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2157 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002158{
2159 struct xps_map *map = NULL;
2160 int pos;
2161
2162 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002163 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002164 if (!map)
2165 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002166
Alexander Duyck6234f872016-10-28 11:46:49 -04002167 for (pos = map->len; pos--;) {
2168 if (map->queues[pos] != index)
2169 continue;
2170
2171 if (map->len > 1) {
2172 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002173 break;
2174 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002175
Amritha Nambiar80d19662018-06-29 21:26:41 -07002176 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002177 kfree_rcu(map, rcu);
2178 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002179 }
2180
Alexander Duyck6234f872016-10-28 11:46:49 -04002181 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002182}
2183
Alexander Duyck6234f872016-10-28 11:46:49 -04002184static bool remove_xps_queue_cpu(struct net_device *dev,
2185 struct xps_dev_maps *dev_maps,
2186 int cpu, u16 offset, u16 count)
2187{
Alexander Duyck184c4492016-10-28 11:50:13 -04002188 int num_tc = dev->num_tc ? : 1;
2189 bool active = false;
2190 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002191
Alexander Duyck184c4492016-10-28 11:50:13 -04002192 for (tci = cpu * num_tc; num_tc--; tci++) {
2193 int i, j;
2194
2195 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002196 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002197 break;
2198 }
2199
2200 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002201 }
2202
Alexander Duyck184c4492016-10-28 11:50:13 -04002203 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002204}
2205
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002206static void reset_xps_maps(struct net_device *dev,
2207 struct xps_dev_maps *dev_maps,
2208 bool is_rxqs_map)
2209{
2210 if (is_rxqs_map) {
2211 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2212 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2213 } else {
2214 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2215 }
2216 static_key_slow_dec_cpuslocked(&xps_needed);
2217 kfree_rcu(dev_maps, rcu);
2218}
2219
Amritha Nambiar80d19662018-06-29 21:26:41 -07002220static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2221 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2222 u16 offset, u16 count, bool is_rxqs_map)
2223{
2224 bool active = false;
2225 int i, j;
2226
2227 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2228 j < nr_ids;)
2229 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2230 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002231 if (!active)
2232 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002233
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002234 if (!is_rxqs_map) {
2235 for (i = offset + (count - 1); count--; i--) {
2236 netdev_queue_numa_node_write(
2237 netdev_get_tx_queue(dev, i),
2238 NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002239 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002240 }
2241}
2242
Alexander Duyck6234f872016-10-28 11:46:49 -04002243static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2244 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002245{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002246 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002247 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002248 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002249
Amritha Nambiar04157462018-06-29 21:26:46 -07002250 if (!static_key_false(&xps_needed))
2251 return;
2252
Andrei Vagin4d99f662018-08-08 20:07:35 -07002253 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002254 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002255
Amritha Nambiar04157462018-06-29 21:26:46 -07002256 if (static_key_false(&xps_rxqs_needed)) {
2257 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2258 if (dev_maps) {
2259 nr_ids = dev->num_rx_queues;
2260 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2261 offset, count, true);
2262 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002263 }
2264
2265 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002266 if (!dev_maps)
2267 goto out_no_maps;
2268
Amritha Nambiar80d19662018-06-29 21:26:41 -07002269 if (num_possible_cpus() > 1)
2270 possible_mask = cpumask_bits(cpu_possible_mask);
2271 nr_ids = nr_cpu_ids;
2272 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2273 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002274
Alexander Duyck537c00d2013-01-10 08:57:02 +00002275out_no_maps:
2276 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002277 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002278}
2279
Alexander Duyck6234f872016-10-28 11:46:49 -04002280static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2281{
2282 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2283}
2284
Amritha Nambiar80d19662018-06-29 21:26:41 -07002285static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2286 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002287{
2288 struct xps_map *new_map;
2289 int alloc_len = XPS_MIN_MAP_ALLOC;
2290 int i, pos;
2291
2292 for (pos = 0; map && pos < map->len; pos++) {
2293 if (map->queues[pos] != index)
2294 continue;
2295 return map;
2296 }
2297
Amritha Nambiar80d19662018-06-29 21:26:41 -07002298 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002299 if (map) {
2300 if (pos < map->alloc_len)
2301 return map;
2302
2303 alloc_len = map->alloc_len * 2;
2304 }
2305
Amritha Nambiar80d19662018-06-29 21:26:41 -07002306 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2307 * map
2308 */
2309 if (is_rxqs_map)
2310 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2311 else
2312 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2313 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002314 if (!new_map)
2315 return NULL;
2316
2317 for (i = 0; i < pos; i++)
2318 new_map->queues[i] = map->queues[i];
2319 new_map->alloc_len = alloc_len;
2320 new_map->len = pos;
2321
2322 return new_map;
2323}
2324
Andrei Vagin4d99f662018-08-08 20:07:35 -07002325/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002326int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2327 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002328{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002329 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002330 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002331 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002332 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002333 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002334 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002335 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002336
Alexander Duyck184c4492016-10-28 11:50:13 -04002337 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002338 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002339 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002340 if (num_tc < 0)
2341 return -EINVAL;
2342
2343 /* If queue belongs to subordinate dev use its map */
2344 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2345
Alexander Duyck184c4492016-10-28 11:50:13 -04002346 tc = netdev_txq_to_tc(dev, index);
2347 if (tc < 0)
2348 return -EINVAL;
2349 }
2350
Amritha Nambiar80d19662018-06-29 21:26:41 -07002351 mutex_lock(&xps_map_mutex);
2352 if (is_rxqs_map) {
2353 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2354 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2355 nr_ids = dev->num_rx_queues;
2356 } else {
2357 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2358 if (num_possible_cpus() > 1) {
2359 online_mask = cpumask_bits(cpu_online_mask);
2360 possible_mask = cpumask_bits(cpu_possible_mask);
2361 }
2362 dev_maps = xmap_dereference(dev->xps_cpus_map);
2363 nr_ids = nr_cpu_ids;
2364 }
2365
Alexander Duyck184c4492016-10-28 11:50:13 -04002366 if (maps_sz < L1_CACHE_BYTES)
2367 maps_sz = L1_CACHE_BYTES;
2368
Alexander Duyck01c5f862013-01-10 08:57:35 +00002369 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002370 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2371 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002372 if (!new_dev_maps)
2373 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002374 if (!new_dev_maps) {
2375 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002376 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002377 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002378
Amritha Nambiar80d19662018-06-29 21:26:41 -07002379 tci = j * num_tc + tc;
2380 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002381 NULL;
2382
Amritha Nambiar80d19662018-06-29 21:26:41 -07002383 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002384 if (!map)
2385 goto error;
2386
Amritha Nambiar80d19662018-06-29 21:26:41 -07002387 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002388 }
2389
2390 if (!new_dev_maps)
2391 goto out_no_new_maps;
2392
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002393 if (!dev_maps) {
2394 /* Increment static keys at most once per type */
2395 static_key_slow_inc_cpuslocked(&xps_needed);
2396 if (is_rxqs_map)
2397 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2398 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002399
Amritha Nambiar80d19662018-06-29 21:26:41 -07002400 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2401 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002402 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002403 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002404 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002405 map = xmap_dereference(dev_maps->attr_map[tci]);
2406 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002407 }
2408
2409 /* We need to explicitly update tci as prevous loop
2410 * could break out early if dev_maps is NULL.
2411 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002412 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002413
Amritha Nambiar80d19662018-06-29 21:26:41 -07002414 if (netif_attr_test_mask(j, mask, nr_ids) &&
2415 netif_attr_test_online(j, online_mask, nr_ids)) {
2416 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002417 int pos = 0;
2418
Amritha Nambiar80d19662018-06-29 21:26:41 -07002419 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002420 while ((pos < map->len) && (map->queues[pos] != index))
2421 pos++;
2422
2423 if (pos == map->len)
2424 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002425#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002426 if (!is_rxqs_map) {
2427 if (numa_node_id == -2)
2428 numa_node_id = cpu_to_node(j);
2429 else if (numa_node_id != cpu_to_node(j))
2430 numa_node_id = -1;
2431 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002432#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002433 } else if (dev_maps) {
2434 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002435 map = xmap_dereference(dev_maps->attr_map[tci]);
2436 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002437 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002438
Alexander Duyck184c4492016-10-28 11:50:13 -04002439 /* copy maps belonging to foreign traffic classes */
2440 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2441 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002442 map = xmap_dereference(dev_maps->attr_map[tci]);
2443 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002444 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002445 }
2446
Amritha Nambiar80d19662018-06-29 21:26:41 -07002447 if (is_rxqs_map)
2448 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2449 else
2450 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002451
Alexander Duyck537c00d2013-01-10 08:57:02 +00002452 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002453 if (!dev_maps)
2454 goto out_no_old_maps;
2455
Amritha Nambiar80d19662018-06-29 21:26:41 -07002456 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2457 j < nr_ids;) {
2458 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2459 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2460 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002461 if (map && map != new_map)
2462 kfree_rcu(map, rcu);
2463 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002464 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002465
Alexander Duyck184c4492016-10-28 11:50:13 -04002466 kfree_rcu(dev_maps, rcu);
2467
2468out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002469 dev_maps = new_dev_maps;
2470 active = true;
2471
2472out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002473 if (!is_rxqs_map) {
2474 /* update Tx queue numa node */
2475 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2476 (numa_node_id >= 0) ?
2477 numa_node_id : NUMA_NO_NODE);
2478 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002479
Alexander Duyck01c5f862013-01-10 08:57:35 +00002480 if (!dev_maps)
2481 goto out_no_maps;
2482
Amritha Nambiar80d19662018-06-29 21:26:41 -07002483 /* removes tx-queue from unused CPUs/rx-queues */
2484 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2485 j < nr_ids;) {
2486 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002487 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002488 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2489 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002490 active |= remove_xps_queue(dev_maps, tci, index);
2491 for (i = num_tc - tc, tci++; --i; tci++)
2492 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002493 }
2494
2495 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002496 if (!active)
2497 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002498
2499out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002500 mutex_unlock(&xps_map_mutex);
2501
2502 return 0;
2503error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002504 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002505 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2506 j < nr_ids;) {
2507 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2508 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002509 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002510 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002511 NULL;
2512 if (new_map && new_map != map)
2513 kfree(new_map);
2514 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002515 }
2516
Alexander Duyck537c00d2013-01-10 08:57:02 +00002517 mutex_unlock(&xps_map_mutex);
2518
Alexander Duyck537c00d2013-01-10 08:57:02 +00002519 kfree(new_dev_maps);
2520 return -ENOMEM;
2521}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002522EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002523
2524int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2525 u16 index)
2526{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002527 int ret;
2528
2529 cpus_read_lock();
2530 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2531 cpus_read_unlock();
2532
2533 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002534}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002535EXPORT_SYMBOL(netif_set_xps_queue);
2536
2537#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002538static void netdev_unbind_all_sb_channels(struct net_device *dev)
2539{
2540 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2541
2542 /* Unbind any subordinate channels */
2543 while (txq-- != &dev->_tx[0]) {
2544 if (txq->sb_dev)
2545 netdev_unbind_sb_channel(dev, txq->sb_dev);
2546 }
2547}
2548
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002549void netdev_reset_tc(struct net_device *dev)
2550{
Alexander Duyck6234f872016-10-28 11:46:49 -04002551#ifdef CONFIG_XPS
2552 netif_reset_xps_queues_gt(dev, 0);
2553#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002554 netdev_unbind_all_sb_channels(dev);
2555
2556 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002557 dev->num_tc = 0;
2558 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2559 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2560}
2561EXPORT_SYMBOL(netdev_reset_tc);
2562
2563int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2564{
2565 if (tc >= dev->num_tc)
2566 return -EINVAL;
2567
Alexander Duyck6234f872016-10-28 11:46:49 -04002568#ifdef CONFIG_XPS
2569 netif_reset_xps_queues(dev, offset, count);
2570#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002571 dev->tc_to_txq[tc].count = count;
2572 dev->tc_to_txq[tc].offset = offset;
2573 return 0;
2574}
2575EXPORT_SYMBOL(netdev_set_tc_queue);
2576
2577int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2578{
2579 if (num_tc > TC_MAX_QUEUE)
2580 return -EINVAL;
2581
Alexander Duyck6234f872016-10-28 11:46:49 -04002582#ifdef CONFIG_XPS
2583 netif_reset_xps_queues_gt(dev, 0);
2584#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002585 netdev_unbind_all_sb_channels(dev);
2586
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002587 dev->num_tc = num_tc;
2588 return 0;
2589}
2590EXPORT_SYMBOL(netdev_set_num_tc);
2591
Alexander Duyckffcfe252018-07-09 12:19:38 -04002592void netdev_unbind_sb_channel(struct net_device *dev,
2593 struct net_device *sb_dev)
2594{
2595 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2596
2597#ifdef CONFIG_XPS
2598 netif_reset_xps_queues_gt(sb_dev, 0);
2599#endif
2600 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2601 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2602
2603 while (txq-- != &dev->_tx[0]) {
2604 if (txq->sb_dev == sb_dev)
2605 txq->sb_dev = NULL;
2606 }
2607}
2608EXPORT_SYMBOL(netdev_unbind_sb_channel);
2609
2610int netdev_bind_sb_channel_queue(struct net_device *dev,
2611 struct net_device *sb_dev,
2612 u8 tc, u16 count, u16 offset)
2613{
2614 /* Make certain the sb_dev and dev are already configured */
2615 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2616 return -EINVAL;
2617
2618 /* We cannot hand out queues we don't have */
2619 if ((offset + count) > dev->real_num_tx_queues)
2620 return -EINVAL;
2621
2622 /* Record the mapping */
2623 sb_dev->tc_to_txq[tc].count = count;
2624 sb_dev->tc_to_txq[tc].offset = offset;
2625
2626 /* Provide a way for Tx queue to find the tc_to_txq map or
2627 * XPS map for itself.
2628 */
2629 while (count--)
2630 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2631
2632 return 0;
2633}
2634EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2635
2636int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2637{
2638 /* Do not use a multiqueue device to represent a subordinate channel */
2639 if (netif_is_multiqueue(dev))
2640 return -ENODEV;
2641
2642 /* We allow channels 1 - 32767 to be used for subordinate channels.
2643 * Channel 0 is meant to be "native" mode and used only to represent
2644 * the main root device. We allow writing 0 to reset the device back
2645 * to normal mode after being used as a subordinate channel.
2646 */
2647 if (channel > S16_MAX)
2648 return -EINVAL;
2649
2650 dev->num_tc = -channel;
2651
2652 return 0;
2653}
2654EXPORT_SYMBOL(netdev_set_sb_channel);
2655
John Fastabendf0796d52010-07-01 13:21:57 +00002656/*
2657 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002658 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002659 */
Tom Herberte6484932010-10-18 18:04:39 +00002660int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002661{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002662 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002663 int rc;
2664
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002665 disabling = txq < dev->real_num_tx_queues;
2666
Tom Herberte6484932010-10-18 18:04:39 +00002667 if (txq < 1 || txq > dev->num_tx_queues)
2668 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002669
Ben Hutchings5c565802011-02-15 19:39:21 +00002670 if (dev->reg_state == NETREG_REGISTERED ||
2671 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002672 ASSERT_RTNL();
2673
Tom Herbert1d24eb42010-11-21 13:17:27 +00002674 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2675 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002676 if (rc)
2677 return rc;
2678
John Fastabend4f57c082011-01-17 08:06:04 +00002679 if (dev->num_tc)
2680 netif_setup_tc(dev, txq);
2681
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002682 dev->real_num_tx_queues = txq;
2683
2684 if (disabling) {
2685 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002686 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002687#ifdef CONFIG_XPS
2688 netif_reset_xps_queues_gt(dev, txq);
2689#endif
2690 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002691 } else {
2692 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002693 }
Tom Herberte6484932010-10-18 18:04:39 +00002694
Tom Herberte6484932010-10-18 18:04:39 +00002695 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002696}
2697EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002698
Michael Daltona953be52014-01-16 22:23:28 -08002699#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002700/**
2701 * netif_set_real_num_rx_queues - set actual number of RX queues used
2702 * @dev: Network device
2703 * @rxq: Actual number of RX queues
2704 *
2705 * This must be called either with the rtnl_lock held or before
2706 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002707 * negative error code. If called before registration, it always
2708 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002709 */
2710int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2711{
2712 int rc;
2713
Tom Herbertbd25fa72010-10-18 18:00:16 +00002714 if (rxq < 1 || rxq > dev->num_rx_queues)
2715 return -EINVAL;
2716
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002717 if (dev->reg_state == NETREG_REGISTERED) {
2718 ASSERT_RTNL();
2719
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002720 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2721 rxq);
2722 if (rc)
2723 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002724 }
2725
2726 dev->real_num_rx_queues = rxq;
2727 return 0;
2728}
2729EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2730#endif
2731
Ben Hutchings2c530402012-07-10 10:55:09 +00002732/**
2733 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002734 *
2735 * This routine should set an upper limit on the number of RSS queues
2736 * used by default by multiqueue devices.
2737 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002738int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002739{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302740 return is_kdump_kernel() ?
2741 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002742}
2743EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2744
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002745static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002746{
2747 struct softnet_data *sd;
2748 unsigned long flags;
2749
2750 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002751 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002752 q->next_sched = NULL;
2753 *sd->output_queue_tailp = q;
2754 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002755 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2756 local_irq_restore(flags);
2757}
2758
David S. Miller37437bb2008-07-16 02:15:04 -07002759void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002760{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002761 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2762 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002763}
2764EXPORT_SYMBOL(__netif_schedule);
2765
Eric Dumazete6247022013-12-05 04:45:08 -08002766struct dev_kfree_skb_cb {
2767 enum skb_free_reason reason;
2768};
2769
2770static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002771{
Eric Dumazete6247022013-12-05 04:45:08 -08002772 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002773}
Denis Vlasenko56079432006-03-29 15:57:29 -08002774
John Fastabend46e5da40a2014-09-12 20:04:52 -07002775void netif_schedule_queue(struct netdev_queue *txq)
2776{
2777 rcu_read_lock();
2778 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2779 struct Qdisc *q = rcu_dereference(txq->qdisc);
2780
2781 __netif_schedule(q);
2782 }
2783 rcu_read_unlock();
2784}
2785EXPORT_SYMBOL(netif_schedule_queue);
2786
John Fastabend46e5da40a2014-09-12 20:04:52 -07002787void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2788{
2789 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2790 struct Qdisc *q;
2791
2792 rcu_read_lock();
2793 q = rcu_dereference(dev_queue->qdisc);
2794 __netif_schedule(q);
2795 rcu_read_unlock();
2796 }
2797}
2798EXPORT_SYMBOL(netif_tx_wake_queue);
2799
Eric Dumazete6247022013-12-05 04:45:08 -08002800void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2801{
2802 unsigned long flags;
2803
Myungho Jung98998862017-04-25 11:58:15 -07002804 if (unlikely(!skb))
2805 return;
2806
Reshetova, Elena63354792017-06-30 13:07:58 +03002807 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08002808 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03002809 refcount_set(&skb->users, 0);
2810 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08002811 return;
2812 }
2813 get_kfree_skb_cb(skb)->reason = reason;
2814 local_irq_save(flags);
2815 skb->next = __this_cpu_read(softnet_data.completion_queue);
2816 __this_cpu_write(softnet_data.completion_queue, skb);
2817 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2818 local_irq_restore(flags);
2819}
2820EXPORT_SYMBOL(__dev_kfree_skb_irq);
2821
2822void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002823{
2824 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002825 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002826 else
2827 dev_kfree_skb(skb);
2828}
Eric Dumazete6247022013-12-05 04:45:08 -08002829EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002830
2831
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002832/**
2833 * netif_device_detach - mark device as removed
2834 * @dev: network device
2835 *
2836 * Mark device as removed from system and therefore no longer available.
2837 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002838void netif_device_detach(struct net_device *dev)
2839{
2840 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2841 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002842 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002843 }
2844}
2845EXPORT_SYMBOL(netif_device_detach);
2846
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002847/**
2848 * netif_device_attach - mark device as attached
2849 * @dev: network device
2850 *
2851 * Mark device as attached from system and restart if needed.
2852 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002853void netif_device_attach(struct net_device *dev)
2854{
2855 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2856 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002857 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002858 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002859 }
2860}
2861EXPORT_SYMBOL(netif_device_attach);
2862
Jiri Pirko5605c762015-05-12 14:56:12 +02002863/*
2864 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2865 * to be used as a distribution range.
2866 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04002867static u16 skb_tx_hash(const struct net_device *dev,
2868 const struct net_device *sb_dev,
2869 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02002870{
2871 u32 hash;
2872 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04002873 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02002874
Alexander Duyckeadec8772018-07-09 12:19:48 -04002875 if (dev->num_tc) {
2876 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2877
2878 qoffset = sb_dev->tc_to_txq[tc].offset;
2879 qcount = sb_dev->tc_to_txq[tc].count;
2880 }
2881
Jiri Pirko5605c762015-05-12 14:56:12 +02002882 if (skb_rx_queue_recorded(skb)) {
2883 hash = skb_get_rx_queue(skb);
Alexander Duyck1b837d42018-04-27 14:06:53 -04002884 while (unlikely(hash >= qcount))
2885 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04002886 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02002887 }
2888
2889 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2890}
Jiri Pirko5605c762015-05-12 14:56:12 +02002891
Ben Hutchings36c92472012-01-17 07:57:56 +00002892static void skb_warn_bad_offload(const struct sk_buff *skb)
2893{
Wei Tang84d15ae2016-06-16 21:17:49 +08002894 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002895 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002896 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002897
Ben Greearc846ad92013-04-19 10:45:52 +00002898 if (!net_ratelimit())
2899 return;
2900
Bjørn Mork88ad4172015-11-16 19:16:40 +01002901 if (dev) {
2902 if (dev->dev.parent)
2903 name = dev_driver_string(dev->dev.parent);
2904 else
2905 name = netdev_name(dev);
2906 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002907 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2908 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002909 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002910 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002911 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2912 skb_shinfo(skb)->gso_type, skb->ip_summed);
2913}
2914
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915/*
2916 * Invalidate hardware checksum when packet is to be mangled, and
2917 * complete checksum manually on outgoing path.
2918 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002919int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920{
Al Virod3bc23e2006-11-14 21:24:49 -08002921 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002922 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Patrick McHardy84fa7932006-08-29 16:44:56 -07002924 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002925 goto out_set_summed;
2926
2927 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002928 skb_warn_bad_offload(skb);
2929 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
2931
Eric Dumazetcef401d2013-01-25 20:34:37 +00002932 /* Before computing a checksum, we should make sure no frag could
2933 * be modified by an external entity : checksum could be wrong.
2934 */
2935 if (skb_has_shared_frag(skb)) {
2936 ret = __skb_linearize(skb);
2937 if (ret)
2938 goto out;
2939 }
2940
Michał Mirosław55508d62010-12-14 15:24:08 +00002941 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002942 BUG_ON(offset >= skb_headlen(skb));
2943 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2944
2945 offset += skb->csum_offset;
2946 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2947
2948 if (skb_cloned(skb) &&
2949 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2951 if (ret)
2952 goto out;
2953 }
2954
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002955 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002956out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002958out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return ret;
2960}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002961EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Davide Carattib72b5bf2017-05-18 15:44:38 +02002963int skb_crc32c_csum_help(struct sk_buff *skb)
2964{
2965 __le32 crc32c_csum;
2966 int ret = 0, offset, start;
2967
2968 if (skb->ip_summed != CHECKSUM_PARTIAL)
2969 goto out;
2970
2971 if (unlikely(skb_is_gso(skb)))
2972 goto out;
2973
2974 /* Before computing a checksum, we should make sure no frag could
2975 * be modified by an external entity : checksum could be wrong.
2976 */
2977 if (unlikely(skb_has_shared_frag(skb))) {
2978 ret = __skb_linearize(skb);
2979 if (ret)
2980 goto out;
2981 }
2982 start = skb_checksum_start_offset(skb);
2983 offset = start + offsetof(struct sctphdr, checksum);
2984 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
2985 ret = -EINVAL;
2986 goto out;
2987 }
2988 if (skb_cloned(skb) &&
2989 !skb_clone_writable(skb, offset + sizeof(__le32))) {
2990 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2991 if (ret)
2992 goto out;
2993 }
2994 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
2995 skb->len - start, ~(__u32)0,
2996 crc32c_csum_stub));
2997 *(__le32 *)(skb->data + offset) = crc32c_csum;
2998 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02002999 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003000out:
3001 return ret;
3002}
3003
Vlad Yasevich53d64712014-03-27 17:26:18 -04003004__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003005{
3006 __be16 type = skb->protocol;
3007
Pravin B Shelar19acc322013-05-07 20:41:07 +00003008 /* Tunnel gso handlers can set protocol to ethernet. */
3009 if (type == htons(ETH_P_TEB)) {
3010 struct ethhdr *eth;
3011
3012 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3013 return 0;
3014
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003015 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003016 type = eth->h_proto;
3017 }
3018
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003019 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003020}
3021
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003022/**
3023 * skb_mac_gso_segment - mac layer segmentation handler.
3024 * @skb: buffer to segment
3025 * @features: features for the output path (see dev->features)
3026 */
3027struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3028 netdev_features_t features)
3029{
3030 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3031 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003032 int vlan_depth = skb->mac_len;
3033 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003034
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003035 if (unlikely(!type))
3036 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003037
Vlad Yasevich53d64712014-03-27 17:26:18 -04003038 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003039
3040 rcu_read_lock();
3041 list_for_each_entry_rcu(ptype, &offload_base, list) {
3042 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003043 segs = ptype->callbacks.gso_segment(skb, features);
3044 break;
3045 }
3046 }
3047 rcu_read_unlock();
3048
3049 __skb_push(skb, skb->data - skb_mac_header(skb));
3050
3051 return segs;
3052}
3053EXPORT_SYMBOL(skb_mac_gso_segment);
3054
3055
Cong Wang12b00042013-02-05 16:36:38 +00003056/* openvswitch calls this on rx path, so we need a different check.
3057 */
3058static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3059{
3060 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003061 return skb->ip_summed != CHECKSUM_PARTIAL &&
3062 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003063
3064 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003065}
3066
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003067/**
Cong Wang12b00042013-02-05 16:36:38 +00003068 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003069 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003070 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003071 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003072 *
3073 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003074 *
3075 * It may return NULL if the skb requires no segmentation. This is
3076 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003077 *
3078 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003079 */
Cong Wang12b00042013-02-05 16:36:38 +00003080struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3081 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003082{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003083 struct sk_buff *segs;
3084
Cong Wang12b00042013-02-05 16:36:38 +00003085 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003086 int err;
3087
Eric Dumazetb2504a52017-01-31 10:20:32 -08003088 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003089 err = skb_cow_head(skb, 0);
3090 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003091 return ERR_PTR(err);
3092 }
3093
Alexander Duyck802ab552016-04-10 21:45:03 -04003094 /* Only report GSO partial support if it will enable us to
3095 * support segmentation on this frame without needing additional
3096 * work.
3097 */
3098 if (features & NETIF_F_GSO_PARTIAL) {
3099 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3100 struct net_device *dev = skb->dev;
3101
3102 partial_features |= dev->features & dev->gso_partial_features;
3103 if (!skb_gso_ok(skb, features | partial_features))
3104 features &= ~NETIF_F_GSO_PARTIAL;
3105 }
3106
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003107 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
3108 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3109
Pravin B Shelar68c33162013-02-14 14:02:41 +00003110 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003111 SKB_GSO_CB(skb)->encap_level = 0;
3112
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003113 skb_reset_mac_header(skb);
3114 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003115
Eric Dumazetb2504a52017-01-31 10:20:32 -08003116 segs = skb_mac_gso_segment(skb, features);
3117
Willem de Bruijn8d74e9f2017-12-12 11:39:04 -05003118 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003119 skb_warn_bad_offload(skb);
3120
3121 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003122}
Cong Wang12b00042013-02-05 16:36:38 +00003123EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003124
Herbert Xufb286bb2005-11-10 13:01:24 -08003125/* Take action when hardware reception checksum errors are detected. */
3126#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003127void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003128{
3129 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003130 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Cong Wang7fe50ac2018-11-12 14:47:18 -08003131 if (dev)
3132 pr_err("dev features: %pNF\n", &dev->features);
3133 pr_err("skb len=%u data_len=%u pkt_type=%u gso_size=%u gso_type=%u nr_frags=%u ip_summed=%u csum=%x csum_complete_sw=%d csum_valid=%d csum_level=%u\n",
3134 skb->len, skb->data_len, skb->pkt_type,
3135 skb_shinfo(skb)->gso_size, skb_shinfo(skb)->gso_type,
3136 skb_shinfo(skb)->nr_frags, skb->ip_summed, skb->csum,
3137 skb->csum_complete_sw, skb->csum_valid, skb->csum_level);
Herbert Xufb286bb2005-11-10 13:01:24 -08003138 dump_stack();
3139 }
3140}
3141EXPORT_SYMBOL(netdev_rx_csum_fault);
3142#endif
3143
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003144/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003145static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003147#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 int i;
tchardingf4563a72017-02-09 17:56:07 +11003149
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003150 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003151 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3152 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003153
Ian Campbellea2ab692011-08-22 23:44:58 +00003154 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003155 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003156 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003157 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003158#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 return 0;
3160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161
Simon Horman3b392dd2014-06-04 08:53:17 +09003162/* If MPLS offload request, verify we are testing hardware MPLS features
3163 * instead of standard features for the netdev.
3164 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003165#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003166static netdev_features_t net_mpls_features(struct sk_buff *skb,
3167 netdev_features_t features,
3168 __be16 type)
3169{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003170 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003171 features &= skb->dev->mpls_features;
3172
3173 return features;
3174}
3175#else
3176static netdev_features_t net_mpls_features(struct sk_buff *skb,
3177 netdev_features_t features,
3178 __be16 type)
3179{
3180 return features;
3181}
3182#endif
3183
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003184static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003185 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003186{
Vlad Yasevich53d64712014-03-27 17:26:18 -04003187 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09003188 __be16 type;
3189
3190 type = skb_network_protocol(skb, &tmp);
3191 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003192
Ed Cashinc0d680e2012-09-19 15:49:00 +00003193 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003194 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003195 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003196 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003197 if (illegal_highdma(skb->dev, skb))
3198 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003199
3200 return features;
3201}
3202
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003203netdev_features_t passthru_features_check(struct sk_buff *skb,
3204 struct net_device *dev,
3205 netdev_features_t features)
3206{
3207 return features;
3208}
3209EXPORT_SYMBOL(passthru_features_check);
3210
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003211static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003212 struct net_device *dev,
3213 netdev_features_t features)
3214{
3215 return vlan_features_check(skb, features);
3216}
3217
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003218static netdev_features_t gso_features_check(const struct sk_buff *skb,
3219 struct net_device *dev,
3220 netdev_features_t features)
3221{
3222 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3223
3224 if (gso_segs > dev->gso_max_segs)
3225 return features & ~NETIF_F_GSO_MASK;
3226
Alexander Duyck802ab552016-04-10 21:45:03 -04003227 /* Support for GSO partial features requires software
3228 * intervention before we can actually process the packets
3229 * so we need to strip support for any partial features now
3230 * and we can pull them back in after we have partially
3231 * segmented the frame.
3232 */
3233 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3234 features &= ~dev->gso_partial_features;
3235
3236 /* Make sure to clear the IPv4 ID mangling feature if the
3237 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003238 */
3239 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3240 struct iphdr *iph = skb->encapsulation ?
3241 inner_ip_hdr(skb) : ip_hdr(skb);
3242
3243 if (!(iph->frag_off & htons(IP_DF)))
3244 features &= ~NETIF_F_TSO_MANGLEID;
3245 }
3246
3247 return features;
3248}
3249
Florian Westphalc1e756b2014-05-05 15:00:44 +02003250netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003251{
Jesse Gross5f352272014-12-23 22:37:26 -08003252 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003253 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003254
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003255 if (skb_is_gso(skb))
3256 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003257
Jesse Gross5f352272014-12-23 22:37:26 -08003258 /* If encapsulation offload request, verify we are testing
3259 * hardware encapsulation features instead of standard
3260 * features for the netdev
3261 */
3262 if (skb->encapsulation)
3263 features &= dev->hw_enc_features;
3264
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003265 if (skb_vlan_tagged(skb))
3266 features = netdev_intersect_features(features,
3267 dev->vlan_features |
3268 NETIF_F_HW_VLAN_CTAG_TX |
3269 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003270
Jesse Gross5f352272014-12-23 22:37:26 -08003271 if (dev->netdev_ops->ndo_features_check)
3272 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3273 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003274 else
3275 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003276
Florian Westphalc1e756b2014-05-05 15:00:44 +02003277 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003278}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003279EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003280
David S. Miller2ea25512014-08-29 21:10:01 -07003281static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003282 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003283{
David S. Miller2ea25512014-08-29 21:10:01 -07003284 unsigned int len;
3285 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003286
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003287 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003288 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003289
David S. Miller2ea25512014-08-29 21:10:01 -07003290 len = skb->len;
3291 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003292 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003293 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003294
Patrick McHardy572a9d72009-11-10 06:14:14 +00003295 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003296}
David S. Miller2ea25512014-08-29 21:10:01 -07003297
David S. Miller8dcda222014-09-01 15:06:40 -07003298struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3299 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003300{
3301 struct sk_buff *skb = first;
3302 int rc = NETDEV_TX_OK;
3303
3304 while (skb) {
3305 struct sk_buff *next = skb->next;
3306
David S. Millera8305bf2018-07-29 20:42:53 -07003307 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003308 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003309 if (unlikely(!dev_xmit_complete(rc))) {
3310 skb->next = next;
3311 goto out;
3312 }
3313
3314 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003315 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003316 rc = NETDEV_TX_BUSY;
3317 break;
3318 }
3319 }
3320
3321out:
3322 *ret = rc;
3323 return skb;
3324}
3325
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003326static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3327 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003328{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003329 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003330 !vlan_hw_offload_capable(features, skb->vlan_proto))
3331 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003332 return skb;
3333}
3334
Davide Caratti43c26a12017-05-18 15:44:41 +02003335int skb_csum_hwoffload_help(struct sk_buff *skb,
3336 const netdev_features_t features)
3337{
3338 if (unlikely(skb->csum_not_inet))
3339 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3340 skb_crc32c_csum_help(skb);
3341
3342 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3343}
3344EXPORT_SYMBOL(skb_csum_hwoffload_help);
3345
Steffen Klassertf53c7232017-12-20 10:41:36 +01003346static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003347{
3348 netdev_features_t features;
3349
David S. Millereae3f882014-08-30 15:17:13 -07003350 features = netif_skb_features(skb);
3351 skb = validate_xmit_vlan(skb, features);
3352 if (unlikely(!skb))
3353 goto out_null;
3354
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003355 skb = sk_validate_xmit_skb(skb, dev);
3356 if (unlikely(!skb))
3357 goto out_null;
3358
Johannes Berg8b86a612015-04-17 15:45:04 +02003359 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003360 struct sk_buff *segs;
3361
3362 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003363 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003364 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003365 } else if (segs) {
3366 consume_skb(skb);
3367 skb = segs;
3368 }
David S. Millereae3f882014-08-30 15:17:13 -07003369 } else {
3370 if (skb_needs_linearize(skb, features) &&
3371 __skb_linearize(skb))
3372 goto out_kfree_skb;
3373
3374 /* If packet is not checksummed and device does not
3375 * support checksumming for this protocol, complete
3376 * checksumming here.
3377 */
3378 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3379 if (skb->encapsulation)
3380 skb_set_inner_transport_header(skb,
3381 skb_checksum_start_offset(skb));
3382 else
3383 skb_set_transport_header(skb,
3384 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003385 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003386 goto out_kfree_skb;
3387 }
3388 }
3389
Steffen Klassertf53c7232017-12-20 10:41:36 +01003390 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003391
David S. Millereae3f882014-08-30 15:17:13 -07003392 return skb;
3393
3394out_kfree_skb:
3395 kfree_skb(skb);
3396out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003397 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003398 return NULL;
3399}
3400
Steffen Klassertf53c7232017-12-20 10:41:36 +01003401struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003402{
3403 struct sk_buff *next, *head = NULL, *tail;
3404
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003405 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003406 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003407 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003408
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003409 /* in case skb wont be segmented, point to itself */
3410 skb->prev = skb;
3411
Steffen Klassertf53c7232017-12-20 10:41:36 +01003412 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003413 if (!skb)
3414 continue;
3415
3416 if (!head)
3417 head = skb;
3418 else
3419 tail->next = skb;
3420 /* If skb was segmented, skb->prev points to
3421 * the last segment. If not, it still contains skb.
3422 */
3423 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003424 }
3425 return head;
3426}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003427EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003428
Eric Dumazet1def9232013-01-10 12:36:42 +00003429static void qdisc_pkt_len_init(struct sk_buff *skb)
3430{
3431 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3432
3433 qdisc_skb_cb(skb)->pkt_len = skb->len;
3434
3435 /* To get more precise estimation of bytes sent on wire,
3436 * we add to pkt_len the headers size of all segments
3437 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003438 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003439 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003440 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003441
Eric Dumazet757b8b12013-01-15 21:14:21 -08003442 /* mac layer + network layer */
3443 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3444
3445 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003446 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3447 const struct tcphdr *th;
3448 struct tcphdr _tcphdr;
3449
3450 th = skb_header_pointer(skb, skb_transport_offset(skb),
3451 sizeof(_tcphdr), &_tcphdr);
3452 if (likely(th))
3453 hdr_len += __tcp_hdrlen(th);
3454 } else {
3455 struct udphdr _udphdr;
3456
3457 if (skb_header_pointer(skb, skb_transport_offset(skb),
3458 sizeof(_udphdr), &_udphdr))
3459 hdr_len += sizeof(struct udphdr);
3460 }
Jason Wang15e5a032013-03-25 20:19:59 +00003461
3462 if (shinfo->gso_type & SKB_GSO_DODGY)
3463 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3464 shinfo->gso_size);
3465
3466 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003467 }
3468}
3469
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003470static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3471 struct net_device *dev,
3472 struct netdev_queue *txq)
3473{
3474 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003475 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003476 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003477 int rc;
3478
Eric Dumazeta2da5702011-01-20 03:48:19 +00003479 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003480
3481 if (q->flags & TCQ_F_NOLOCK) {
3482 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
3483 __qdisc_drop(skb, &to_free);
3484 rc = NET_XMIT_DROP;
Paolo Abeniba27b4c2019-03-22 16:01:56 +01003485 } else if ((q->flags & TCQ_F_CAN_BYPASS) && q->empty &&
3486 qdisc_run_begin(q)) {
3487 qdisc_bstats_cpu_update(q, skb);
3488
3489 if (sch_direct_xmit(skb, q, dev, txq, NULL, true))
3490 __qdisc_run(q);
3491
3492 qdisc_run_end(q);
3493 rc = NET_XMIT_SUCCESS;
John Fastabend6b3ba912017-12-07 09:54:25 -08003494 } else {
3495 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni32f7b442018-05-15 10:50:31 +02003496 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003497 }
3498
3499 if (unlikely(to_free))
3500 kfree_skb_list(to_free);
3501 return rc;
3502 }
3503
Eric Dumazet79640a42010-06-02 05:09:29 -07003504 /*
3505 * Heuristic to force contended enqueues to serialize on a
3506 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003507 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003508 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003509 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003510 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003511 if (unlikely(contended))
3512 spin_lock(&q->busylock);
3513
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003514 spin_lock(root_lock);
3515 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003516 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003517 rc = NET_XMIT_DROP;
3518 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003519 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003520 /*
3521 * This is a work-conserving queue; there are no old skbs
3522 * waiting to be sent out; and the qdisc is not running -
3523 * xmit the skb directly.
3524 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003525
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003526 qdisc_bstats_update(q, skb);
3527
Eric Dumazet55a93b32014-10-03 15:31:07 -07003528 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003529 if (unlikely(contended)) {
3530 spin_unlock(&q->busylock);
3531 contended = false;
3532 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003533 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003534 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003535
John Fastabend6c148182017-12-07 09:54:06 -08003536 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003537 rc = NET_XMIT_SUCCESS;
3538 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003539 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003540 if (qdisc_run_begin(q)) {
3541 if (unlikely(contended)) {
3542 spin_unlock(&q->busylock);
3543 contended = false;
3544 }
3545 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003546 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003547 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003548 }
3549 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003550 if (unlikely(to_free))
3551 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003552 if (unlikely(contended))
3553 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003554 return rc;
3555}
3556
Daniel Borkmann86f85152013-12-29 17:27:11 +01003557#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003558static void skb_update_prio(struct sk_buff *skb)
3559{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003560 const struct netprio_map *map;
3561 const struct sock *sk;
3562 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003563
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003564 if (skb->priority)
3565 return;
3566 map = rcu_dereference_bh(skb->dev->priomap);
3567 if (!map)
3568 return;
3569 sk = skb_to_full_sk(skb);
3570 if (!sk)
3571 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003572
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003573 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3574
3575 if (prioidx < map->priomap_len)
3576 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003577}
3578#else
3579#define skb_update_prio(skb)
3580#endif
3581
Dave Jonesd29f7492008-07-22 14:09:06 -07003582/**
Michel Machado95603e22012-06-12 10:16:35 +00003583 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003584 * @net: network namespace this loopback is happening in
3585 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003586 * @skb: buffer to transmit
3587 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003588int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003589{
3590 skb_reset_mac_header(skb);
3591 __skb_pull(skb, skb_network_offset(skb));
3592 skb->pkt_type = PACKET_LOOPBACK;
3593 skb->ip_summed = CHECKSUM_UNNECESSARY;
3594 WARN_ON(!skb_dst(skb));
3595 skb_dst_force(skb);
3596 netif_rx_ni(skb);
3597 return 0;
3598}
3599EXPORT_SYMBOL(dev_loopback_xmit);
3600
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003601#ifdef CONFIG_NET_EGRESS
3602static struct sk_buff *
3603sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3604{
Jiri Pirko46209402017-11-03 11:46:25 +01003605 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003606 struct tcf_result cl_res;
3607
Jiri Pirko46209402017-11-03 11:46:25 +01003608 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003609 return skb;
3610
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003611 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003612 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003613
Jiri Pirko46209402017-11-03 11:46:25 +01003614 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003615 case TC_ACT_OK:
3616 case TC_ACT_RECLASSIFY:
3617 skb->tc_index = TC_H_MIN(cl_res.classid);
3618 break;
3619 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003620 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003621 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003622 kfree_skb(skb);
3623 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003624 case TC_ACT_STOLEN:
3625 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003626 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003627 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003628 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003629 return NULL;
3630 case TC_ACT_REDIRECT:
3631 /* No need to push/pop skb's mac_header here on egress! */
3632 skb_do_redirect(skb);
3633 *ret = NET_XMIT_SUCCESS;
3634 return NULL;
3635 default:
3636 break;
3637 }
3638
3639 return skb;
3640}
3641#endif /* CONFIG_NET_EGRESS */
3642
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003643#ifdef CONFIG_XPS
3644static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3645 struct xps_dev_maps *dev_maps, unsigned int tci)
3646{
3647 struct xps_map *map;
3648 int queue_index = -1;
3649
3650 if (dev->num_tc) {
3651 tci *= dev->num_tc;
3652 tci += netdev_get_prio_tc_map(dev, skb->priority);
3653 }
3654
3655 map = rcu_dereference(dev_maps->attr_map[tci]);
3656 if (map) {
3657 if (map->len == 1)
3658 queue_index = map->queues[0];
3659 else
3660 queue_index = map->queues[reciprocal_scale(
3661 skb_get_hash(skb), map->len)];
3662 if (unlikely(queue_index >= dev->real_num_tx_queues))
3663 queue_index = -1;
3664 }
3665 return queue_index;
3666}
3667#endif
3668
Alexander Duyckeadec8772018-07-09 12:19:48 -04003669static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3670 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003671{
3672#ifdef CONFIG_XPS
3673 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003674 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003675 int queue_index = -1;
3676
Amritha Nambiar04157462018-06-29 21:26:46 -07003677 if (!static_key_false(&xps_needed))
3678 return -1;
3679
Jiri Pirko638b2a62015-05-12 14:56:13 +02003680 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003681 if (!static_key_false(&xps_rxqs_needed))
3682 goto get_cpus_map;
3683
Alexander Duyckeadec8772018-07-09 12:19:48 -04003684 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003685 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003686 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003687
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003688 if (tci >= 0 && tci < dev->num_rx_queues)
3689 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3690 tci);
3691 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003692
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003693get_cpus_map:
3694 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003695 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003696 if (dev_maps) {
3697 unsigned int tci = skb->sender_cpu - 1;
3698
3699 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3700 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003701 }
3702 }
3703 rcu_read_unlock();
3704
3705 return queue_index;
3706#else
3707 return -1;
3708#endif
3709}
3710
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003711u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003712 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003713{
3714 return 0;
3715}
3716EXPORT_SYMBOL(dev_pick_tx_zero);
3717
3718u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003719 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003720{
3721 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3722}
3723EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3724
Paolo Abenib71b5832019-03-20 11:02:05 +01003725u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3726 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003727{
3728 struct sock *sk = skb->sk;
3729 int queue_index = sk_tx_queue_get(sk);
3730
Alexander Duyckeadec8772018-07-09 12:19:48 -04003731 sb_dev = sb_dev ? : dev;
3732
Jiri Pirko638b2a62015-05-12 14:56:13 +02003733 if (queue_index < 0 || skb->ooo_okay ||
3734 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003735 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003736
Jiri Pirko638b2a62015-05-12 14:56:13 +02003737 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003738 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003739
3740 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003741 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003742 rcu_access_pointer(sk->sk_dst_cache))
3743 sk_tx_queue_set(sk, new_index);
3744
3745 queue_index = new_index;
3746 }
3747
3748 return queue_index;
3749}
Paolo Abenib71b5832019-03-20 11:02:05 +01003750EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003751
Paolo Abeni4bd97d52019-03-20 11:02:04 +01003752struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
3753 struct sk_buff *skb,
3754 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003755{
3756 int queue_index = 0;
3757
3758#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003759 u32 sender_cpu = skb->sender_cpu - 1;
3760
3761 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003762 skb->sender_cpu = raw_smp_processor_id() + 1;
3763#endif
3764
3765 if (dev->real_num_tx_queues != 1) {
3766 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11003767
Jiri Pirko638b2a62015-05-12 14:56:13 +02003768 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01003769 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003770 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01003771 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003772
Alexander Duyckd5845272017-11-22 10:57:41 -08003773 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003774 }
3775
3776 skb_set_queue_mapping(skb, queue_index);
3777 return netdev_get_tx_queue(dev, queue_index);
3778}
3779
Michel Machado95603e22012-06-12 10:16:35 +00003780/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003781 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003782 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04003783 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003784 *
3785 * Queue a buffer for transmission to a network device. The caller must
3786 * have set the device and priority and built the buffer before calling
3787 * this function. The function can be called from an interrupt.
3788 *
3789 * A negative errno code is returned on a failure. A success does not
3790 * guarantee the frame will be transmitted as it may be dropped due
3791 * to congestion or traffic shaping.
3792 *
3793 * -----------------------------------------------------------------------------------
3794 * I notice this method can also return errors from the queue disciplines,
3795 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3796 * be positive.
3797 *
3798 * Regardless of the return value, the skb is consumed, so it is currently
3799 * difficult to retry a send to this method. (You can bump the ref count
3800 * before sending to hold a reference for retry if you are careful.)
3801 *
3802 * When calling this method, interrupts MUST be enabled. This is because
3803 * the BH enable code must have IRQs enabled so that it will not deadlock.
3804 * --BLG
3805 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003806static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807{
3808 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003809 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 struct Qdisc *q;
3811 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01003812 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003814 skb_reset_mac_header(skb);
3815
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003816 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3817 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3818
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003819 /* Disable soft irqs for various locks below. Also
3820 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003822 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Neil Horman5bc14212011-11-22 05:10:51 +00003824 skb_update_prio(skb);
3825
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003826 qdisc_pkt_len_init(skb);
3827#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003828 skb->tc_at_ingress = 0;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003829# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07003830 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003831 skb = sch_handle_egress(skb, &rc, dev);
3832 if (!skb)
3833 goto out;
3834 }
3835# endif
3836#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003837 /* If device/qdisc don't need skb->dst, release it right now while
3838 * its hot in this cpu cache.
3839 */
3840 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3841 skb_dst_drop(skb);
3842 else
3843 skb_dst_force(skb);
3844
Paolo Abeni4bd97d52019-03-20 11:02:04 +01003845 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003846 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003847
Koki Sanagicf66ba52010-08-23 18:45:02 +09003848 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003850 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003851 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 }
3853
3854 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11003855 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
tchardingeb13da12017-02-09 17:56:06 +11003857 * Really, it is unlikely that netif_tx_lock protection is necessary
3858 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
3859 * counters.)
3860 * However, it is possible, that they rely on protection
3861 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862
tchardingeb13da12017-02-09 17:56:06 +11003863 * Check this and shot the lock. It is not prone from deadlocks.
3864 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 */
3866 if (dev->flags & IFF_UP) {
3867 int cpu = smp_processor_id(); /* ok because BHs are off */
3868
David S. Millerc773e842008-07-08 23:13:53 -07003869 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02003870 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07003871 goto recursion_alert;
3872
Steffen Klassertf53c7232017-12-20 10:41:36 +01003873 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003874 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003875 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003876
David S. Millerc773e842008-07-08 23:13:53 -07003877 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Tom Herbert734664982011-11-28 16:32:44 +00003879 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02003880 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07003881 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02003882 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00003883 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003884 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 goto out;
3886 }
3887 }
David S. Millerc773e842008-07-08 23:13:53 -07003888 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003889 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3890 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 } else {
3892 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003893 * unfortunately
3894 */
3895recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003896 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3897 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 }
3899 }
3900
3901 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003902 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
Eric Dumazet015f0682014-03-27 08:45:56 -07003904 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003905 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 return rc;
3907out:
Herbert Xud4828d82006-06-22 02:28:18 -07003908 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 return rc;
3910}
Jason Wangf663dd92014-01-10 16:18:26 +08003911
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003912int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003913{
3914 return __dev_queue_xmit(skb, NULL);
3915}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003916EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Alexander Duyckeadec8772018-07-09 12:19:48 -04003918int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08003919{
Alexander Duyckeadec8772018-07-09 12:19:48 -04003920 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08003921}
3922EXPORT_SYMBOL(dev_queue_xmit_accel);
3923
Magnus Karlsson865b03f2018-05-02 13:01:33 +02003924int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
3925{
3926 struct net_device *dev = skb->dev;
3927 struct sk_buff *orig_skb = skb;
3928 struct netdev_queue *txq;
3929 int ret = NETDEV_TX_BUSY;
3930 bool again = false;
3931
3932 if (unlikely(!netif_running(dev) ||
3933 !netif_carrier_ok(dev)))
3934 goto drop;
3935
3936 skb = validate_xmit_skb_list(skb, dev, &again);
3937 if (skb != orig_skb)
3938 goto drop;
3939
3940 skb_set_queue_mapping(skb, queue_id);
3941 txq = skb_get_tx_queue(dev, skb);
3942
3943 local_bh_disable();
3944
3945 HARD_TX_LOCK(dev, txq, smp_processor_id());
3946 if (!netif_xmit_frozen_or_drv_stopped(txq))
3947 ret = netdev_start_xmit(skb, dev, txq, false);
3948 HARD_TX_UNLOCK(dev, txq);
3949
3950 local_bh_enable();
3951
3952 if (!dev_xmit_complete(ret))
3953 kfree_skb(skb);
3954
3955 return ret;
3956drop:
3957 atomic_long_inc(&dev->tx_dropped);
3958 kfree_skb_list(skb);
3959 return NET_XMIT_DROP;
3960}
3961EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
tchardingeb13da12017-02-09 17:56:06 +11003963/*************************************************************************
3964 * Receiver routines
3965 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003967int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003968EXPORT_SYMBOL(netdev_max_backlog);
3969
Eric Dumazet3b098e22010-05-15 23:57:10 -07003970int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003971int netdev_budget __read_mostly = 300;
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04003972unsigned int __read_mostly netdev_budget_usecs = 2000;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01003973int weight_p __read_mostly = 64; /* old backlog weight */
3974int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
3975int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
3976int dev_rx_weight __read_mostly = 64;
3977int dev_tx_weight __read_mostly = 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003979/* Called with irq disabled */
3980static inline void ____napi_schedule(struct softnet_data *sd,
3981 struct napi_struct *napi)
3982{
3983 list_add_tail(&napi->poll_list, &sd->poll_list);
3984 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3985}
3986
Eric Dumazetdf334542010-03-24 19:13:54 +00003987#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003988
3989/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003990struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003991EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003992u32 rps_cpu_mask __read_mostly;
3993EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003994
Eric Dumazetdc053602019-03-22 08:56:38 -07003995struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003996EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07003997struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08003998EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003999
Ben Hutchingsc4454772011-01-19 11:03:53 +00004000static struct rps_dev_flow *
4001set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4002 struct rps_dev_flow *rflow, u16 next_cpu)
4003{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004004 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004005#ifdef CONFIG_RFS_ACCEL
4006 struct netdev_rx_queue *rxqueue;
4007 struct rps_dev_flow_table *flow_table;
4008 struct rps_dev_flow *old_rflow;
4009 u32 flow_id;
4010 u16 rxq_index;
4011 int rc;
4012
4013 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004014 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4015 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004016 goto out;
4017 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4018 if (rxq_index == skb_get_rx_queue(skb))
4019 goto out;
4020
4021 rxqueue = dev->_rx + rxq_index;
4022 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4023 if (!flow_table)
4024 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004025 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004026 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4027 rxq_index, flow_id);
4028 if (rc < 0)
4029 goto out;
4030 old_rflow = rflow;
4031 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004032 rflow->filter = rc;
4033 if (old_rflow->filter == rflow->filter)
4034 old_rflow->filter = RPS_NO_FILTER;
4035 out:
4036#endif
4037 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004038 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004039 }
4040
Ben Hutchings09994d12011-10-03 04:42:46 +00004041 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004042 return rflow;
4043}
4044
Tom Herbert0a9627f2010-03-16 08:03:29 +00004045/*
4046 * get_rps_cpu is called from netif_receive_skb and returns the target
4047 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004048 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004049 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004050static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4051 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004052{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004053 const struct rps_sock_flow_table *sock_flow_table;
4054 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004055 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004056 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004057 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004058 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004059 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004060
Tom Herbert0a9627f2010-03-16 08:03:29 +00004061 if (skb_rx_queue_recorded(skb)) {
4062 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004063
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004064 if (unlikely(index >= dev->real_num_rx_queues)) {
4065 WARN_ONCE(dev->real_num_rx_queues > 1,
4066 "%s received packet on queue %u, but number "
4067 "of RX queues is %u\n",
4068 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004069 goto done;
4070 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004071 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004072 }
4073
Eric Dumazet567e4b72015-02-06 12:59:01 -08004074 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4075
4076 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4077 map = rcu_dereference(rxqueue->rps_map);
4078 if (!flow_table && !map)
4079 goto done;
4080
Changli Gao2d47b452010-08-17 19:00:56 +00004081 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004082 hash = skb_get_hash(skb);
4083 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004084 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004085
Tom Herbertfec5e652010-04-16 16:01:27 -07004086 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4087 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004088 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004089 u32 next_cpu;
4090 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004091
Eric Dumazet567e4b72015-02-06 12:59:01 -08004092 /* First check into global flow table if there is a match */
4093 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4094 if ((ident ^ hash) & ~rps_cpu_mask)
4095 goto try_rps;
4096
4097 next_cpu = ident & rps_cpu_mask;
4098
4099 /* OK, now we know there is a match,
4100 * we can look at the local (per receive queue) flow table
4101 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004102 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004103 tcpu = rflow->cpu;
4104
Tom Herbertfec5e652010-04-16 16:01:27 -07004105 /*
4106 * If the desired CPU (where last recvmsg was done) is
4107 * different from current CPU (one in the rx-queue flow
4108 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004109 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004110 * - Current CPU is offline.
4111 * - The current CPU's queue tail has advanced beyond the
4112 * last packet that was enqueued using this table entry.
4113 * This guarantees that all previous packets for the flow
4114 * have been dequeued, thus preserving in order delivery.
4115 */
4116 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004117 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004118 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004119 rflow->last_qtail)) >= 0)) {
4120 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004121 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004122 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004123
Eric Dumazeta31196b2015-04-25 09:35:24 -07004124 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004125 *rflowp = rflow;
4126 cpu = tcpu;
4127 goto done;
4128 }
4129 }
4130
Eric Dumazet567e4b72015-02-06 12:59:01 -08004131try_rps:
4132
Tom Herbert0a9627f2010-03-16 08:03:29 +00004133 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004134 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004135 if (cpu_online(tcpu)) {
4136 cpu = tcpu;
4137 goto done;
4138 }
4139 }
4140
4141done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004142 return cpu;
4143}
4144
Ben Hutchingsc4454772011-01-19 11:03:53 +00004145#ifdef CONFIG_RFS_ACCEL
4146
4147/**
4148 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4149 * @dev: Device on which the filter was set
4150 * @rxq_index: RX queue index
4151 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4152 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4153 *
4154 * Drivers that implement ndo_rx_flow_steer() should periodically call
4155 * this function for each installed filter and remove the filters for
4156 * which it returns %true.
4157 */
4158bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4159 u32 flow_id, u16 filter_id)
4160{
4161 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4162 struct rps_dev_flow_table *flow_table;
4163 struct rps_dev_flow *rflow;
4164 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004165 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004166
4167 rcu_read_lock();
4168 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4169 if (flow_table && flow_id <= flow_table->mask) {
4170 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004171 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004172 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004173 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4174 rflow->last_qtail) <
4175 (int)(10 * flow_table->mask)))
4176 expire = false;
4177 }
4178 rcu_read_unlock();
4179 return expire;
4180}
4181EXPORT_SYMBOL(rps_may_expire_flow);
4182
4183#endif /* CONFIG_RFS_ACCEL */
4184
Tom Herbert0a9627f2010-03-16 08:03:29 +00004185/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004186static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004187{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004188 struct softnet_data *sd = data;
4189
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004190 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004191 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004192}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004193
Tom Herbertfec5e652010-04-16 16:01:27 -07004194#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004195
4196/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004197 * Check if this softnet_data structure is another cpu one
4198 * If yes, queue it to our IPI list and return 1
4199 * If no, return 0
4200 */
4201static int rps_ipi_queued(struct softnet_data *sd)
4202{
4203#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004204 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004205
4206 if (sd != mysd) {
4207 sd->rps_ipi_next = mysd->rps_ipi_list;
4208 mysd->rps_ipi_list = sd;
4209
4210 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4211 return 1;
4212 }
4213#endif /* CONFIG_RPS */
4214 return 0;
4215}
4216
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004217#ifdef CONFIG_NET_FLOW_LIMIT
4218int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4219#endif
4220
4221static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4222{
4223#ifdef CONFIG_NET_FLOW_LIMIT
4224 struct sd_flow_limit *fl;
4225 struct softnet_data *sd;
4226 unsigned int old_flow, new_flow;
4227
4228 if (qlen < (netdev_max_backlog >> 1))
4229 return false;
4230
Christoph Lameter903ceff2014-08-17 12:30:35 -05004231 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004232
4233 rcu_read_lock();
4234 fl = rcu_dereference(sd->flow_limit);
4235 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004236 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004237 old_flow = fl->history[fl->history_head];
4238 fl->history[fl->history_head] = new_flow;
4239
4240 fl->history_head++;
4241 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4242
4243 if (likely(fl->buckets[old_flow]))
4244 fl->buckets[old_flow]--;
4245
4246 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4247 fl->count++;
4248 rcu_read_unlock();
4249 return true;
4250 }
4251 }
4252 rcu_read_unlock();
4253#endif
4254 return false;
4255}
4256
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004257/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004258 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4259 * queue (may be a remote CPU queue).
4260 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004261static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4262 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004263{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004264 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004265 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004266 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004267
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004268 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004269
4270 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004271
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004272 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004273 if (!netif_running(skb->dev))
4274 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004275 qlen = skb_queue_len(&sd->input_pkt_queue);
4276 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004277 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004278enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004279 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004280 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004281 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004282 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004283 return NET_RX_SUCCESS;
4284 }
4285
Eric Dumazetebda37c22010-05-06 23:51:21 +00004286 /* Schedule NAPI for backlog device
4287 * We can use non atomic operation since we own the queue lock
4288 */
4289 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004290 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004291 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004292 }
4293 goto enqueue;
4294 }
4295
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004296drop:
Changli Gaodee42872010-05-02 05:42:16 +00004297 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004298 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004299
Tom Herbert0a9627f2010-03-16 08:03:29 +00004300 local_irq_restore(flags);
4301
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004302 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004303 kfree_skb(skb);
4304 return NET_RX_DROP;
4305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004307static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4308{
4309 struct net_device *dev = skb->dev;
4310 struct netdev_rx_queue *rxqueue;
4311
4312 rxqueue = dev->_rx;
4313
4314 if (skb_rx_queue_recorded(skb)) {
4315 u16 index = skb_get_rx_queue(skb);
4316
4317 if (unlikely(index >= dev->real_num_rx_queues)) {
4318 WARN_ONCE(dev->real_num_rx_queues > 1,
4319 "%s received packet on queue %u, but number "
4320 "of RX queues is %u\n",
4321 dev->name, index, dev->real_num_rx_queues);
4322
4323 return rxqueue; /* Return first rxqueue */
4324 }
4325 rxqueue += index;
4326 }
4327 return rxqueue;
4328}
4329
John Fastabendd4455162017-07-17 09:26:45 -07004330static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004331 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004332 struct bpf_prog *xdp_prog)
4333{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004334 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004335 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004336 u32 metalen, act = XDP_DROP;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004337 __be16 orig_eth_type;
4338 struct ethhdr *eth;
4339 bool orig_bcast;
John Fastabendd4455162017-07-17 09:26:45 -07004340 int hlen, off;
4341 u32 mac_len;
4342
4343 /* Reinjected packets coming from act_mirred or similar should
4344 * not get XDP generic processing.
4345 */
Paolo Abenicd11b1642018-07-30 14:30:44 +02004346 if (skb_cloned(skb) || skb_is_tc_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004347 return XDP_PASS;
4348
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004349 /* XDP packets must be linear and must have sufficient headroom
4350 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4351 * native XDP provides, thus we need to do it here as well.
4352 */
4353 if (skb_is_nonlinear(skb) ||
4354 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4355 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4356 int troom = skb->tail + skb->data_len - skb->end;
4357
4358 /* In case we have to go down the path and also linearize,
4359 * then lets do the pskb_expand_head() work just once here.
4360 */
4361 if (pskb_expand_head(skb,
4362 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4363 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4364 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004365 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004366 goto do_drop;
4367 }
John Fastabendd4455162017-07-17 09:26:45 -07004368
4369 /* The XDP program wants to see the packet starting at the MAC
4370 * header.
4371 */
4372 mac_len = skb->data - skb_mac_header(skb);
4373 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004374 xdp->data = skb->data - mac_len;
4375 xdp->data_meta = xdp->data;
4376 xdp->data_end = xdp->data + hlen;
4377 xdp->data_hard_start = skb->data - skb_headroom(skb);
4378 orig_data_end = xdp->data_end;
4379 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004380 eth = (struct ethhdr *)xdp->data;
4381 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4382 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004383
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004384 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004385 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004386
Björn Töpel02671e22018-05-02 13:01:30 +02004387 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004388
Björn Töpel02671e22018-05-02 13:01:30 +02004389 off = xdp->data - orig_data;
John Fastabendd4455162017-07-17 09:26:45 -07004390 if (off > 0)
4391 __skb_pull(skb, off);
4392 else if (off < 0)
4393 __skb_push(skb, -off);
Edward Cree92dd5452017-09-19 18:45:56 +01004394 skb->mac_header += off;
John Fastabendd4455162017-07-17 09:26:45 -07004395
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004396 /* check if bpf_xdp_adjust_tail was used. it can only "shrink"
4397 * pckt.
4398 */
Björn Töpel02671e22018-05-02 13:01:30 +02004399 off = orig_data_end - xdp->data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004400 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004401 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004402 skb->len -= off;
Björn Töpel02671e22018-05-02 13:01:30 +02004403
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004404 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004405
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004406 /* check if XDP changed eth hdr such SKB needs update */
4407 eth = (struct ethhdr *)xdp->data;
4408 if ((orig_eth_type != eth->h_proto) ||
4409 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4410 __skb_push(skb, ETH_HLEN);
4411 skb->protocol = eth_type_trans(skb, skb->dev);
4412 }
4413
John Fastabendd4455162017-07-17 09:26:45 -07004414 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004415 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004416 case XDP_TX:
4417 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004418 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004419 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004420 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004421 if (metalen)
4422 skb_metadata_set(skb, metalen);
4423 break;
John Fastabendd4455162017-07-17 09:26:45 -07004424 default:
4425 bpf_warn_invalid_xdp_action(act);
4426 /* fall through */
4427 case XDP_ABORTED:
4428 trace_xdp_exception(skb->dev, xdp_prog, act);
4429 /* fall through */
4430 case XDP_DROP:
4431 do_drop:
4432 kfree_skb(skb);
4433 break;
4434 }
4435
4436 return act;
4437}
4438
4439/* When doing generic XDP we have to bypass the qdisc layer and the
4440 * network taps in order to match in-driver-XDP behavior.
4441 */
Jason Wang7c497472017-08-11 19:41:17 +08004442void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004443{
4444 struct net_device *dev = skb->dev;
4445 struct netdev_queue *txq;
4446 bool free_skb = true;
4447 int cpu, rc;
4448
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004449 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004450 cpu = smp_processor_id();
4451 HARD_TX_LOCK(dev, txq, cpu);
4452 if (!netif_xmit_stopped(txq)) {
4453 rc = netdev_start_xmit(skb, dev, txq, 0);
4454 if (dev_xmit_complete(rc))
4455 free_skb = false;
4456 }
4457 HARD_TX_UNLOCK(dev, txq);
4458 if (free_skb) {
4459 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4460 kfree_skb(skb);
4461 }
4462}
Jason Wang7c497472017-08-11 19:41:17 +08004463EXPORT_SYMBOL_GPL(generic_xdp_tx);
John Fastabendd4455162017-07-17 09:26:45 -07004464
Davidlohr Bueso02786472018-05-08 09:07:02 -07004465static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004466
Jason Wang7c497472017-08-11 19:41:17 +08004467int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004468{
John Fastabendd4455162017-07-17 09:26:45 -07004469 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004470 struct xdp_buff xdp;
4471 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004472 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004473
Björn Töpel02671e22018-05-02 13:01:30 +02004474 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004475 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004476 switch (act) {
4477 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004478 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004479 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004480 if (err)
4481 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004482 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004483 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004484 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004485 break;
4486 }
John Fastabendd4455162017-07-17 09:26:45 -07004487 return XDP_DROP;
4488 }
4489 }
4490 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004491out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004492 kfree_skb(skb);
4493 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004494}
Jason Wang7c497472017-08-11 19:41:17 +08004495EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004496
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004497static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004499 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500
Eric Dumazet588f0332011-11-15 04:12:55 +00004501 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
Koki Sanagicf66ba52010-08-23 18:45:02 +09004503 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004504
Davidlohr Bueso02786472018-05-08 09:07:02 -07004505 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07004506 int ret;
4507
4508 preempt_disable();
4509 rcu_read_lock();
4510 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
4511 rcu_read_unlock();
4512 preempt_enable();
John Fastabendd4455162017-07-17 09:26:45 -07004513
John Fastabend6103aa92017-07-17 09:27:50 -07004514 /* Consider XDP consuming the packet a success from
4515 * the netdev point of view we do not want to count
4516 * this as an error.
4517 */
John Fastabendd4455162017-07-17 09:26:45 -07004518 if (ret != XDP_PASS)
John Fastabend6103aa92017-07-17 09:27:50 -07004519 return NET_RX_SUCCESS;
John Fastabendd4455162017-07-17 09:26:45 -07004520 }
4521
Eric Dumazetdf334542010-03-24 19:13:54 +00004522#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004523 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004524 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004525 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
Changli Gaocece1942010-08-07 20:35:43 -07004527 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004528 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004529
4530 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004531 if (cpu < 0)
4532 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004533
4534 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4535
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004536 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004537 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004538 } else
4539#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004540 {
4541 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004542
Tom Herbertfec5e652010-04-16 16:01:27 -07004543 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4544 put_cpu();
4545 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004546 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004548
4549/**
4550 * netif_rx - post buffer to the network code
4551 * @skb: buffer to post
4552 *
4553 * This function receives a packet from a device driver and queues it for
4554 * the upper (protocol) levels to process. It always succeeds. The buffer
4555 * may be dropped during processing for congestion control or by the
4556 * protocol layers.
4557 *
4558 * return values:
4559 * NET_RX_SUCCESS (no congestion)
4560 * NET_RX_DROP (packet was dropped)
4561 *
4562 */
4563
4564int netif_rx(struct sk_buff *skb)
4565{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004566 int ret;
4567
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004568 trace_netif_rx_entry(skb);
4569
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004570 ret = netif_rx_internal(skb);
4571 trace_netif_rx_exit(ret);
4572
4573 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004574}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004575EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576
4577int netif_rx_ni(struct sk_buff *skb)
4578{
4579 int err;
4580
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004581 trace_netif_rx_ni_entry(skb);
4582
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004584 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 if (local_softirq_pending())
4586 do_softirq();
4587 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004588 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
4590 return err;
4591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592EXPORT_SYMBOL(netif_rx_ni);
4593
Emese Revfy0766f782016-06-20 20:42:34 +02004594static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004596 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
4598 if (sd->completion_queue) {
4599 struct sk_buff *clist;
4600
4601 local_irq_disable();
4602 clist = sd->completion_queue;
4603 sd->completion_queue = NULL;
4604 local_irq_enable();
4605
4606 while (clist) {
4607 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004608
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609 clist = clist->next;
4610
Reshetova, Elena63354792017-06-30 13:07:58 +03004611 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004612 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4613 trace_consume_skb(skb);
4614 else
4615 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004616
4617 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4618 __kfree_skb(skb);
4619 else
4620 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004622
4623 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 }
4625
4626 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004627 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
4629 local_irq_disable();
4630 head = sd->output_queue;
4631 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004632 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 local_irq_enable();
4634
4635 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004636 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004637 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004638
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 head = head->next_sched;
4640
John Fastabend6b3ba912017-12-07 09:54:25 -08004641 if (!(q->flags & TCQ_F_NOLOCK)) {
4642 root_lock = qdisc_lock(q);
4643 spin_lock(root_lock);
4644 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004645 /* We need to make sure head->next_sched is read
4646 * before clearing __QDISC_STATE_SCHED
4647 */
4648 smp_mb__before_atomic();
4649 clear_bit(__QDISC_STATE_SCHED, &q->state);
4650 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004651 if (root_lock)
4652 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 }
4654 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004655
4656 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657}
4658
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004659#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004660/* This hook is defined here for ATM LANE */
4661int (*br_fdb_test_addr_hook)(struct net_device *dev,
4662 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004663EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004664#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004666static inline struct sk_buff *
4667sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4668 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004669{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004670#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004671 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004672 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004673
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004674 /* If there's at least one ingress present somewhere (so
4675 * we get here via enabled static key), remaining devices
4676 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004677 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004678 */
Jiri Pirko46209402017-11-03 11:46:25 +01004679 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004680 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004681
Herbert Xuf697c3e2007-10-14 00:38:47 -07004682 if (*pt_prev) {
4683 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4684 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004685 }
4686
Florian Westphal33654952015-05-14 00:36:28 +02004687 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004688 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004689 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004690
Jiri Pirko46209402017-11-03 11:46:25 +01004691 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004692 case TC_ACT_OK:
4693 case TC_ACT_RECLASSIFY:
4694 skb->tc_index = TC_H_MIN(cl_res.classid);
4695 break;
4696 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004697 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004698 kfree_skb(skb);
4699 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004700 case TC_ACT_STOLEN:
4701 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004702 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004703 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004704 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004705 case TC_ACT_REDIRECT:
4706 /* skb_mac_header check was done by cls/act_bpf, so
4707 * we can safely push the L2 header back before
4708 * redirecting to another netdev
4709 */
4710 __skb_push(skb, skb->mac_len);
4711 skb_do_redirect(skb);
4712 return NULL;
Paolo Abenicd11b1642018-07-30 14:30:44 +02004713 case TC_ACT_REINSERT:
4714 /* this does not scrub the packet, and updates stats on error */
4715 skb_tc_reinsert(skb, &cl_res);
4716 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004717 default:
4718 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004719 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004720#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004721 return skb;
4722}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004724/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004725 * netdev_is_rx_handler_busy - check if receive handler is registered
4726 * @dev: device to check
4727 *
4728 * Check if a receive handler is already registered for a given device.
4729 * Return true if there one.
4730 *
4731 * The caller must hold the rtnl_mutex.
4732 */
4733bool netdev_is_rx_handler_busy(struct net_device *dev)
4734{
4735 ASSERT_RTNL();
4736 return dev && rtnl_dereference(dev->rx_handler);
4737}
4738EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4739
4740/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004741 * netdev_rx_handler_register - register receive handler
4742 * @dev: device to register a handler for
4743 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004744 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004745 *
Masanari Iidae2278672014-02-18 22:54:36 +09004746 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004747 * called from __netif_receive_skb. A negative errno code is returned
4748 * on a failure.
4749 *
4750 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004751 *
4752 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004753 */
4754int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004755 rx_handler_func_t *rx_handler,
4756 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004757{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08004758 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004759 return -EBUSY;
4760
Paolo Abenif54262502018-03-09 10:39:24 +01004761 if (dev->priv_flags & IFF_NO_RX_HANDLER)
4762 return -EINVAL;
4763
Eric Dumazet00cfec32013-03-29 03:01:22 +00004764 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004765 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004766 rcu_assign_pointer(dev->rx_handler, rx_handler);
4767
4768 return 0;
4769}
4770EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4771
4772/**
4773 * netdev_rx_handler_unregister - unregister receive handler
4774 * @dev: device to unregister a handler from
4775 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004776 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004777 *
4778 * The caller must hold the rtnl_mutex.
4779 */
4780void netdev_rx_handler_unregister(struct net_device *dev)
4781{
4782
4783 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004784 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004785 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4786 * section has a guarantee to see a non NULL rx_handler_data
4787 * as well.
4788 */
4789 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004790 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004791}
4792EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4793
Mel Gormanb4b9e352012-07-31 16:44:26 -07004794/*
4795 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4796 * the special handling of PFMEMALLOC skbs.
4797 */
4798static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4799{
4800 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004801 case htons(ETH_P_ARP):
4802 case htons(ETH_P_IP):
4803 case htons(ETH_P_IPV6):
4804 case htons(ETH_P_8021Q):
4805 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004806 return true;
4807 default:
4808 return false;
4809 }
4810}
4811
Pablo Neirae687ad62015-05-13 18:19:38 +02004812static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4813 int *ret, struct net_device *orig_dev)
4814{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004815#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004816 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004817 int ingress_retval;
4818
Pablo Neirae687ad62015-05-13 18:19:38 +02004819 if (*pt_prev) {
4820 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4821 *pt_prev = NULL;
4822 }
4823
Aaron Conole2c1e2702016-09-21 11:35:03 -04004824 rcu_read_lock();
4825 ingress_retval = nf_hook_ingress(skb);
4826 rcu_read_unlock();
4827 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004828 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004829#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004830 return 0;
4831}
Pablo Neirae687ad62015-05-13 18:19:38 +02004832
Edward Cree88eb1942018-07-02 16:13:56 +01004833static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc,
4834 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835{
4836 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004837 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004838 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004839 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08004841 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
Eric Dumazet588f0332011-11-15 04:12:55 +00004843 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004844
Koki Sanagicf66ba52010-08-23 18:45:02 +09004845 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004846
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004847 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004848
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004849 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004850 if (!skb_transport_header_was_set(skb))
4851 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004852 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
4854 pt_prev = NULL;
4855
David S. Miller63d8ea72011-02-28 10:48:59 -08004856another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004857 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004858
4859 __this_cpu_inc(softnet_data.processed);
4860
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004861 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4862 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004863 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004864 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004865 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004866 }
4867
Willem de Bruijne7246e12017-01-07 17:06:35 -05004868 if (skb_skip_tc_classify(skb))
4869 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870
David S. Miller9754e292013-02-14 15:57:38 -05004871 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004872 goto skip_taps;
4873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004875 if (pt_prev)
4876 ret = deliver_skb(skb, pt_prev, orig_dev);
4877 pt_prev = ptype;
4878 }
4879
4880 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4881 if (pt_prev)
4882 ret = deliver_skb(skb, pt_prev, orig_dev);
4883 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 }
4885
Mel Gormanb4b9e352012-07-31 16:44:26 -07004886skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004887#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004888 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004889 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004890 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004891 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004892
4893 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004894 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004895 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004896#endif
Willem de Bruijna5135bc2017-01-07 17:06:36 -05004897 skb_reset_tc(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05004898skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05004899 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004900 goto drop;
4901
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004902 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004903 if (pt_prev) {
4904 ret = deliver_skb(skb, pt_prev, orig_dev);
4905 pt_prev = NULL;
4906 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004907 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004908 goto another_round;
4909 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004910 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004911 }
4912
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004913 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004914 if (rx_handler) {
4915 if (pt_prev) {
4916 ret = deliver_skb(skb, pt_prev, orig_dev);
4917 pt_prev = NULL;
4918 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004919 switch (rx_handler(&skb)) {
4920 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004921 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004922 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004923 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004924 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004925 case RX_HANDLER_EXACT:
4926 deliver_exact = true;
4927 case RX_HANDLER_PASS:
4928 break;
4929 default:
4930 BUG();
4931 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004934 if (unlikely(skb_vlan_tag_present(skb))) {
4935 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004936 skb->pkt_type = PACKET_OTHERHOST;
4937 /* Note: we might in the future use prio bits
4938 * and set skb->priority like in vlan_do_receive()
4939 * For the time being, just ignore Priority Code Point
4940 */
Michał Mirosławb18175242018-11-09 00:18:02 +01004941 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004942 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004943
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004945
4946 /* deliver only exact match when indicated */
4947 if (likely(!deliver_exact)) {
4948 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4949 &ptype_base[ntohs(type) &
4950 PTYPE_HASH_MASK]);
4951 }
4952
4953 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4954 &orig_dev->ptype_specific);
4955
4956 if (unlikely(skb->dev != orig_dev)) {
4957 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4958 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 }
4960
4961 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04004962 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004963 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01004964 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004966drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004967 if (!deliver_exact)
4968 atomic_long_inc(&skb->dev->rx_dropped);
4969 else
4970 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 kfree_skb(skb);
4972 /* Jamal, now you will not able to escape explaining
4973 * me how you were going to use this. :-)
4974 */
4975 ret = NET_RX_DROP;
4976 }
4977
Julian Anastasov2c17d272015-07-09 09:59:10 +03004978out:
David S. Miller9754e292013-02-14 15:57:38 -05004979 return ret;
4980}
4981
Edward Cree88eb1942018-07-02 16:13:56 +01004982static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
4983{
4984 struct net_device *orig_dev = skb->dev;
4985 struct packet_type *pt_prev = NULL;
4986 int ret;
4987
4988 ret = __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
4989 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02004990 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
4991 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01004992 return ret;
4993}
4994
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02004995/**
4996 * netif_receive_skb_core - special purpose version of netif_receive_skb
4997 * @skb: buffer to process
4998 *
4999 * More direct receive version of netif_receive_skb(). It should
5000 * only be used by callers that have a need to skip RPS and Generic XDP.
5001 * Caller must also take care of handling if (page_is_)pfmemalloc.
5002 *
5003 * This function may only be called from softirq context and interrupts
5004 * should be enabled.
5005 *
5006 * Return values (usually ignored):
5007 * NET_RX_SUCCESS: no congestion
5008 * NET_RX_DROP: packet was dropped
5009 */
5010int netif_receive_skb_core(struct sk_buff *skb)
5011{
5012 int ret;
5013
5014 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005015 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005016 rcu_read_unlock();
5017
5018 return ret;
5019}
5020EXPORT_SYMBOL(netif_receive_skb_core);
5021
Edward Cree88eb1942018-07-02 16:13:56 +01005022static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5023 struct packet_type *pt_prev,
5024 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005025{
5026 struct sk_buff *skb, *next;
5027
Edward Cree88eb1942018-07-02 16:13:56 +01005028 if (!pt_prev)
5029 return;
5030 if (list_empty(head))
5031 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005032 if (pt_prev->list_func != NULL)
5033 pt_prev->list_func(head, pt_prev, orig_dev);
5034 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005035 list_for_each_entry_safe(skb, next, head, list) {
5036 skb_list_del_init(skb);
Paolo Abenif5737cb2019-05-03 17:01:36 +02005037 INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5038 skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005039 }
Edward Cree88eb1942018-07-02 16:13:56 +01005040}
5041
5042static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5043{
5044 /* Fast-path assumptions:
5045 * - There is no RX handler.
5046 * - Only one packet_type matches.
5047 * If either of these fails, we will end up doing some per-packet
5048 * processing in-line, then handling the 'last ptype' for the whole
5049 * sublist. This can't cause out-of-order delivery to any single ptype,
5050 * because the 'last ptype' must be constant across the sublist, and all
5051 * other ptypes are handled per-packet.
5052 */
5053 /* Current (common) ptype of sublist */
5054 struct packet_type *pt_curr = NULL;
5055 /* Current (common) orig_dev of sublist */
5056 struct net_device *od_curr = NULL;
5057 struct list_head sublist;
5058 struct sk_buff *skb, *next;
5059
Edward Cree9af86f932018-07-09 18:10:19 +01005060 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005061 list_for_each_entry_safe(skb, next, head, list) {
5062 struct net_device *orig_dev = skb->dev;
5063 struct packet_type *pt_prev = NULL;
5064
Edward Cree22f6bbb2018-12-04 17:37:57 +00005065 skb_list_del_init(skb);
Edward Cree88eb1942018-07-02 16:13:56 +01005066 __netif_receive_skb_core(skb, pfmemalloc, &pt_prev);
Edward Cree9af86f932018-07-09 18:10:19 +01005067 if (!pt_prev)
5068 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005069 if (pt_curr != pt_prev || od_curr != orig_dev) {
5070 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005071 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5072 /* start new sublist */
Edward Cree9af86f932018-07-09 18:10:19 +01005073 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005074 pt_curr = pt_prev;
5075 od_curr = orig_dev;
5076 }
Edward Cree9af86f932018-07-09 18:10:19 +01005077 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005078 }
5079
5080 /* dispatch final sublist */
Edward Cree9af86f932018-07-09 18:10:19 +01005081 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005082}
5083
David S. Miller9754e292013-02-14 15:57:38 -05005084static int __netif_receive_skb(struct sk_buff *skb)
5085{
5086 int ret;
5087
5088 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005089 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005090
5091 /*
5092 * PFMEMALLOC skbs are special, they should
5093 * - be delivered to SOCK_MEMALLOC sockets only
5094 * - stay away from userspace
5095 * - have bounded memory usage
5096 *
5097 * Use PF_MEMALLOC as this saves us from propagating the allocation
5098 * context down to all allocation sites.
5099 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005100 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005101 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005102 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005103 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005104 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005105
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 return ret;
5107}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005108
Edward Cree4ce00172018-07-02 16:13:40 +01005109static void __netif_receive_skb_list(struct list_head *head)
5110{
5111 unsigned long noreclaim_flag = 0;
5112 struct sk_buff *skb, *next;
5113 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5114
5115 list_for_each_entry_safe(skb, next, head, list) {
5116 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5117 struct list_head sublist;
5118
5119 /* Handle the previous sublist */
5120 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005121 if (!list_empty(&sublist))
5122 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005123 pfmemalloc = !pfmemalloc;
5124 /* See comments in __netif_receive_skb */
5125 if (pfmemalloc)
5126 noreclaim_flag = memalloc_noreclaim_save();
5127 else
5128 memalloc_noreclaim_restore(noreclaim_flag);
5129 }
5130 }
5131 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005132 if (!list_empty(head))
5133 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005134 /* Restore pflags */
5135 if (pfmemalloc)
5136 memalloc_noreclaim_restore(noreclaim_flag);
5137}
5138
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005139static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005140{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005141 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005142 struct bpf_prog *new = xdp->prog;
5143 int ret = 0;
5144
5145 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005146 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005147 rcu_assign_pointer(dev->xdp_prog, new);
5148 if (old)
5149 bpf_prog_put(old);
5150
5151 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005152 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005153 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005154 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005155 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005156 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005157 }
5158 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005159
5160 case XDP_QUERY_PROG:
Martin KaFai Lau58038692017-06-15 17:29:09 -07005161 xdp->prog_id = old ? old->aux->id : 0;
David S. Millerb5cdae32017-04-18 15:36:58 -04005162 break;
5163
5164 default:
5165 ret = -EINVAL;
5166 break;
5167 }
5168
5169 return ret;
5170}
5171
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005172static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005173{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005174 int ret;
5175
Eric Dumazet588f0332011-11-15 04:12:55 +00005176 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005177
Richard Cochranc1f19b52010-07-17 08:49:36 +00005178 if (skb_defer_rx_timestamp(skb))
5179 return NET_RX_SUCCESS;
5180
Davidlohr Bueso02786472018-05-08 09:07:02 -07005181 if (static_branch_unlikely(&generic_xdp_needed_key)) {
John Fastabendbbbe2112017-09-08 14:00:30 -07005182 int ret;
David S. Millerb5cdae32017-04-18 15:36:58 -04005183
John Fastabendbbbe2112017-09-08 14:00:30 -07005184 preempt_disable();
5185 rcu_read_lock();
5186 ret = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5187 rcu_read_unlock();
5188 preempt_enable();
5189
5190 if (ret != XDP_PASS)
John Fastabendd4455162017-07-17 09:26:45 -07005191 return NET_RX_DROP;
David S. Millerb5cdae32017-04-18 15:36:58 -04005192 }
5193
John Fastabendbbbe2112017-09-08 14:00:30 -07005194 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005195#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005196 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005197 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005198 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005199
Eric Dumazet3b098e22010-05-15 23:57:10 -07005200 if (cpu >= 0) {
5201 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5202 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005203 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005204 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005205 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005206#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005207 ret = __netif_receive_skb(skb);
5208 rcu_read_unlock();
5209 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005210}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005211
Edward Cree7da517a2018-07-02 16:13:24 +01005212static void netif_receive_skb_list_internal(struct list_head *head)
5213{
5214 struct bpf_prog *xdp_prog = NULL;
5215 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005216 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005217
Edward Cree8c057ef2018-07-09 18:09:54 +01005218 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005219 list_for_each_entry_safe(skb, next, head, list) {
5220 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005221 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005222 if (!skb_defer_rx_timestamp(skb))
5223 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005224 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005225 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005226
5227 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5228 preempt_disable();
5229 rcu_read_lock();
5230 list_for_each_entry_safe(skb, next, head, list) {
5231 xdp_prog = rcu_dereference(skb->dev->xdp_prog);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005232 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005233 if (do_xdp_generic(xdp_prog, skb) == XDP_PASS)
5234 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005235 }
5236 rcu_read_unlock();
5237 preempt_enable();
Edward Cree8c057ef2018-07-09 18:09:54 +01005238 /* Put passed packets back on main list */
5239 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005240 }
5241
5242 rcu_read_lock();
5243#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005244 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005245 list_for_each_entry_safe(skb, next, head, list) {
5246 struct rps_dev_flow voidflow, *rflow = &voidflow;
5247 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5248
5249 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005250 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005251 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005252 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005253 }
5254 }
5255 }
5256#endif
5257 __netif_receive_skb_list(head);
5258 rcu_read_unlock();
5259}
5260
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005261/**
5262 * netif_receive_skb - process receive buffer from network
5263 * @skb: buffer to process
5264 *
5265 * netif_receive_skb() is the main receive data processing function.
5266 * It always succeeds. The buffer may be dropped during processing
5267 * for congestion control or by the protocol layers.
5268 *
5269 * This function may only be called from softirq context and interrupts
5270 * should be enabled.
5271 *
5272 * Return values (usually ignored):
5273 * NET_RX_SUCCESS: no congestion
5274 * NET_RX_DROP: packet was dropped
5275 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005276int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005277{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005278 int ret;
5279
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005280 trace_netif_receive_skb_entry(skb);
5281
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005282 ret = netif_receive_skb_internal(skb);
5283 trace_netif_receive_skb_exit(ret);
5284
5285 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005286}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005287EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
Edward Creef6ad8c12018-07-02 16:12:45 +01005289/**
5290 * netif_receive_skb_list - process many receive buffers from network
5291 * @head: list of skbs to process.
5292 *
Edward Cree7da517a2018-07-02 16:13:24 +01005293 * Since return value of netif_receive_skb() is normally ignored, and
5294 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005295 *
5296 * This function may only be called from softirq context and interrupts
5297 * should be enabled.
5298 */
5299void netif_receive_skb_list(struct list_head *head)
5300{
Edward Cree7da517a2018-07-02 16:13:24 +01005301 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005302
Edward Creeb9f463d2018-07-02 16:14:44 +01005303 if (list_empty(head))
5304 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005305 if (trace_netif_receive_skb_list_entry_enabled()) {
5306 list_for_each_entry(skb, head, list)
5307 trace_netif_receive_skb_list_entry(skb);
5308 }
Edward Cree7da517a2018-07-02 16:13:24 +01005309 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005310 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005311}
5312EXPORT_SYMBOL(netif_receive_skb_list);
5313
Eric Dumazet41852492016-08-26 12:50:39 -07005314DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005315
5316/* Network device is going away, flush any packets still pending */
5317static void flush_backlog(struct work_struct *work)
5318{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005319 struct sk_buff *skb, *tmp;
5320 struct softnet_data *sd;
5321
5322 local_bh_disable();
5323 sd = this_cpu_ptr(&softnet_data);
5324
5325 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005326 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005327 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005328 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005329 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005330 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005331 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005332 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005333 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005334 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005335 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005336
5337 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005338 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005339 __skb_unlink(skb, &sd->process_queue);
5340 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005341 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005342 }
5343 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005344 local_bh_enable();
5345}
5346
Eric Dumazet41852492016-08-26 12:50:39 -07005347static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005348{
5349 unsigned int cpu;
5350
5351 get_online_cpus();
5352
Eric Dumazet41852492016-08-26 12:50:39 -07005353 for_each_online_cpu(cpu)
5354 queue_work_on(cpu, system_highpri_wq,
5355 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005356
5357 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07005358 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005359
5360 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005361}
5362
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005363INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
5364INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
Herbert Xud565b0a2008-12-15 23:38:52 -08005365static int napi_gro_complete(struct sk_buff *skb)
5366{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005367 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005368 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005369 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005370 int err = -ENOENT;
5371
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005372 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5373
Herbert Xufc59f9a2009-04-14 15:11:06 -07005374 if (NAPI_GRO_CB(skb)->count == 1) {
5375 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005376 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005377 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005378
5379 rcu_read_lock();
5380 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005381 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005382 continue;
5383
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005384 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5385 ipv6_gro_complete, inet_gro_complete,
5386 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005387 break;
5388 }
5389 rcu_read_unlock();
5390
5391 if (err) {
5392 WARN_ON(&ptype->list == head);
5393 kfree_skb(skb);
5394 return NET_RX_SUCCESS;
5395 }
5396
5397out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005398 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005399}
5400
Li RongQing6312fe72018-07-05 14:34:32 +08005401static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005402 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005403{
Li RongQing6312fe72018-07-05 14:34:32 +08005404 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005405 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005406
David Miller07d78362018-06-24 14:14:02 +09005407 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005408 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5409 return;
David S. Miller992cba72018-07-31 15:27:56 -07005410 skb_list_del_init(skb);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005411 napi_gro_complete(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005412 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005413 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005414
5415 if (!napi->gro_hash[index].count)
5416 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005417}
David Miller07d78362018-06-24 14:14:02 +09005418
Li RongQing6312fe72018-07-05 14:34:32 +08005419/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005420 * youngest packets at the head of it.
5421 * Complete skbs in reverse order to reduce latencies.
5422 */
5423void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5424{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005425 unsigned long bitmask = napi->gro_bitmask;
5426 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005427
Eric Dumazet42519ed2018-11-21 11:39:28 -08005428 while ((i = ffs(bitmask)) != 0) {
5429 bitmask >>= i;
5430 base += i;
5431 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005432 }
David Miller07d78362018-06-24 14:14:02 +09005433}
Eric Dumazet86cac582010-08-31 18:25:32 +00005434EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005435
David Miller07d78362018-06-24 14:14:02 +09005436static struct list_head *gro_list_prepare(struct napi_struct *napi,
5437 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005438{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005439 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005440 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005441 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005442 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005443
Li RongQing6312fe72018-07-05 14:34:32 +08005444 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005445 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005446 unsigned long diffs;
5447
Tom Herbert0b4cec82014-01-15 08:58:06 -08005448 NAPI_GRO_CB(p)->flush = 0;
5449
5450 if (hash != skb_get_hash_raw(p)) {
5451 NAPI_GRO_CB(p)->same_flow = 0;
5452 continue;
5453 }
5454
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005455 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005456 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5457 if (skb_vlan_tag_present(p))
5458 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08005459 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005460 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005461 if (maclen == ETH_HLEN)
5462 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005463 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005464 else if (!diffs)
5465 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005466 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005467 maclen);
5468 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005469 }
David Miller07d78362018-06-24 14:14:02 +09005470
5471 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005472}
5473
Jerry Chu299603e82013-12-11 20:53:45 -08005474static void skb_gro_reset_offset(struct sk_buff *skb)
5475{
5476 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5477 const skb_frag_t *frag0 = &pinfo->frags[0];
5478
5479 NAPI_GRO_CB(skb)->data_offset = 0;
5480 NAPI_GRO_CB(skb)->frag0 = NULL;
5481 NAPI_GRO_CB(skb)->frag0_len = 0;
5482
5483 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
5484 pinfo->nr_frags &&
5485 !PageHighMem(skb_frag_page(frag0))) {
5486 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005487 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5488 skb_frag_size(frag0),
5489 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005490 }
5491}
5492
Eric Dumazeta50e2332014-03-29 21:28:21 -07005493static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5494{
5495 struct skb_shared_info *pinfo = skb_shinfo(skb);
5496
5497 BUG_ON(skb->end - skb->tail < grow);
5498
5499 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5500
5501 skb->data_len -= grow;
5502 skb->tail += grow;
5503
5504 pinfo->frags[0].page_offset += grow;
5505 skb_frag_size_sub(&pinfo->frags[0], grow);
5506
5507 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5508 skb_frag_unref(skb, 0);
5509 memmove(pinfo->frags, pinfo->frags + 1,
5510 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5511 }
5512}
5513
Li RongQing6312fe72018-07-05 14:34:32 +08005514static void gro_flush_oldest(struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005515{
Li RongQing6312fe72018-07-05 14:34:32 +08005516 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005517
Li RongQing6312fe72018-07-05 14:34:32 +08005518 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005519
Li RongQing6312fe72018-07-05 14:34:32 +08005520 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005521 * impossible.
5522 */
5523 if (WARN_ON_ONCE(!oldest))
5524 return;
5525
Li RongQingd9f37d02018-07-13 14:41:36 +08005526 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5527 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005528 */
David S. Millerece23712018-10-28 10:35:12 -07005529 skb_list_del_init(oldest);
David Miller07d78362018-06-24 14:14:02 +09005530 napi_gro_complete(oldest);
5531}
5532
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005533INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
5534 struct sk_buff *));
5535INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
5536 struct sk_buff *));
Rami Rosenbb728822012-11-28 21:55:25 +00005537static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005538{
Li RongQing6312fe72018-07-05 14:34:32 +08005539 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005540 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005541 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005542 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005543 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005544 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005545 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005546 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005547 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005548
David S. Millerb5cdae32017-04-18 15:36:58 -04005549 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005550 goto normal;
5551
David Miller07d78362018-06-24 14:14:02 +09005552 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005553
Herbert Xud565b0a2008-12-15 23:38:52 -08005554 rcu_read_lock();
5555 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005556 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005557 continue;
5558
Herbert Xu86911732009-01-29 14:19:50 +00005559 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005560 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005561 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005562 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005563 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005564 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005565 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005566 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005567 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005568 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005569
Tom Herbert662880f2014-08-27 21:26:56 -07005570 /* Setup for GRO checksum validation */
5571 switch (skb->ip_summed) {
5572 case CHECKSUM_COMPLETE:
5573 NAPI_GRO_CB(skb)->csum = skb->csum;
5574 NAPI_GRO_CB(skb)->csum_valid = 1;
5575 NAPI_GRO_CB(skb)->csum_cnt = 0;
5576 break;
5577 case CHECKSUM_UNNECESSARY:
5578 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5579 NAPI_GRO_CB(skb)->csum_valid = 0;
5580 break;
5581 default:
5582 NAPI_GRO_CB(skb)->csum_cnt = 0;
5583 NAPI_GRO_CB(skb)->csum_valid = 0;
5584 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005585
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005586 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
5587 ipv6_gro_receive, inet_gro_receive,
5588 gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005589 break;
5590 }
5591 rcu_read_unlock();
5592
5593 if (&ptype->list == head)
5594 goto normal;
5595
Steffen Klassert25393d32017-02-15 09:39:44 +01005596 if (IS_ERR(pp) && PTR_ERR(pp) == -EINPROGRESS) {
5597 ret = GRO_CONSUMED;
5598 goto ok;
5599 }
5600
Herbert Xu0da2afd52008-12-26 14:57:42 -08005601 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005602 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005603
Herbert Xud565b0a2008-12-15 23:38:52 -08005604 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07005605 skb_list_del_init(pp);
David Millerd4546c22018-06-24 14:13:49 +09005606 napi_gro_complete(pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005607 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005608 }
5609
Herbert Xu0da2afd52008-12-26 14:57:42 -08005610 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005611 goto ok;
5612
Eric Dumazet600adc12014-01-09 14:12:19 -08005613 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005614 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005615
Li RongQing6312fe72018-07-05 14:34:32 +08005616 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
5617 gro_flush_oldest(gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005618 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005619 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005620 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005621 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005622 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005623 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005624 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005625 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005626 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005627
Herbert Xuad0f9902009-02-01 01:24:55 -08005628pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005629 grow = skb_gro_offset(skb) - skb_headlen(skb);
5630 if (grow > 0)
5631 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08005632ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08005633 if (napi->gro_hash[hash].count) {
5634 if (!test_bit(hash, &napi->gro_bitmask))
5635 __set_bit(hash, &napi->gro_bitmask);
5636 } else if (test_bit(hash, &napi->gro_bitmask)) {
5637 __clear_bit(hash, &napi->gro_bitmask);
5638 }
5639
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005640 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005641
5642normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08005643 ret = GRO_NORMAL;
5644 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08005645}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005646
Jerry Chubf5a7552014-01-07 10:23:19 -08005647struct packet_offload *gro_find_receive_by_type(__be16 type)
5648{
5649 struct list_head *offload_head = &offload_base;
5650 struct packet_offload *ptype;
5651
5652 list_for_each_entry_rcu(ptype, offload_head, list) {
5653 if (ptype->type != type || !ptype->callbacks.gro_receive)
5654 continue;
5655 return ptype;
5656 }
5657 return NULL;
5658}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005659EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08005660
5661struct packet_offload *gro_find_complete_by_type(__be16 type)
5662{
5663 struct list_head *offload_head = &offload_base;
5664 struct packet_offload *ptype;
5665
5666 list_for_each_entry_rcu(ptype, offload_head, list) {
5667 if (ptype->type != type || !ptype->callbacks.gro_complete)
5668 continue;
5669 return ptype;
5670 }
5671 return NULL;
5672}
Or Gerlitze27a2f82014-01-20 13:59:20 +02005673EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005674
Michal Kubečeke44699d2017-06-29 11:13:36 +02005675static void napi_skb_free_stolen_head(struct sk_buff *skb)
5676{
5677 skb_dst_drop(skb);
5678 secpath_reset(skb);
5679 kmem_cache_free(skbuff_head_cache, skb);
5680}
5681
Rami Rosenbb728822012-11-28 21:55:25 +00005682static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08005683{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005684 switch (ret) {
5685 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005686 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005687 ret = GRO_DROP;
5688 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005689
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005690 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08005691 kfree_skb(skb);
5692 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005693
Eric Dumazetdaa86542012-04-19 07:07:40 +00005694 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02005695 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5696 napi_skb_free_stolen_head(skb);
5697 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00005698 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00005699 break;
5700
Ben Hutchings5b252f02009-10-29 07:17:09 +00005701 case GRO_HELD:
5702 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005703 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005704 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08005705 }
5706
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005707 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005708}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005709
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005710gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005711{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005712 gro_result_t ret;
5713
Eric Dumazet93f93a42015-11-18 06:30:59 -08005714 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005715 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00005716
Eric Dumazeta50e2332014-03-29 21:28:21 -07005717 skb_gro_reset_offset(skb);
5718
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005719 ret = napi_skb_finish(dev_gro_receive(napi, skb), skb);
5720 trace_napi_gro_receive_exit(ret);
5721
5722 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08005723}
5724EXPORT_SYMBOL(napi_gro_receive);
5725
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00005726static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005727{
Eric Dumazet93a35f52014-10-23 06:30:30 -07005728 if (unlikely(skb->pfmemalloc)) {
5729 consume_skb(skb);
5730 return;
5731 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005732 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00005733 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
5734 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01005735 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08005736 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08005737 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08005738
5739 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
5740 skb->pkt_type = PACKET_HOST;
5741
Jerry Chuc3caf112014-07-14 15:54:46 -07005742 skb->encapsulation = 0;
5743 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07005744 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Steffen Klassertf991bb92017-01-30 06:45:38 +01005745 secpath_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005746
5747 napi->skb = skb;
5748}
Herbert Xu96e93ea2009-01-06 10:49:34 -08005749
Herbert Xu76620aa2009-04-16 02:02:07 -07005750struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08005751{
Herbert Xu5d38a072009-01-04 16:13:40 -08005752 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08005753
5754 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08005755 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08005756 if (skb) {
5757 napi->skb = skb;
5758 skb_mark_napi_id(skb, napi);
5759 }
Herbert Xu5d38a072009-01-04 16:13:40 -08005760 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08005761 return skb;
5762}
Herbert Xu76620aa2009-04-16 02:02:07 -07005763EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005764
Eric Dumazeta50e2332014-03-29 21:28:21 -07005765static gro_result_t napi_frags_finish(struct napi_struct *napi,
5766 struct sk_buff *skb,
5767 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005768{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005769 switch (ret) {
5770 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005771 case GRO_HELD:
5772 __skb_push(skb, ETH_HLEN);
5773 skb->protocol = eth_type_trans(skb, skb->dev);
5774 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005775 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00005776 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005777
5778 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005779 napi_reuse_skb(napi, skb);
5780 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005781
Michal Kubečeke44699d2017-06-29 11:13:36 +02005782 case GRO_MERGED_FREE:
5783 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
5784 napi_skb_free_stolen_head(skb);
5785 else
5786 napi_reuse_skb(napi, skb);
5787 break;
5788
Ben Hutchings5b252f02009-10-29 07:17:09 +00005789 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01005790 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00005791 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005792 }
5793
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005794 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005795}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005796
Eric Dumazeta50e2332014-03-29 21:28:21 -07005797/* Upper GRO stack assumes network header starts at gro_offset=0
5798 * Drivers could call both napi_gro_frags() and napi_gro_receive()
5799 * We copy ethernet header into skb->data to have a common layout.
5800 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00005801static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08005802{
Herbert Xu76620aa2009-04-16 02:02:07 -07005803 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005804 const struct ethhdr *eth;
5805 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07005806
5807 napi->skb = NULL;
5808
Eric Dumazeta50e2332014-03-29 21:28:21 -07005809 skb_reset_mac_header(skb);
5810 skb_gro_reset_offset(skb);
5811
5812 eth = skb_gro_header_fast(skb, 0);
5813 if (unlikely(skb_gro_header_hard(skb, hlen))) {
5814 eth = skb_gro_header_slow(skb, hlen, 0);
5815 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04005816 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
5817 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005818 napi_reuse_skb(napi, skb);
5819 return NULL;
5820 }
5821 } else {
5822 gro_pull_from_frag0(skb, hlen);
5823 NAPI_GRO_CB(skb)->frag0 += hlen;
5824 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07005825 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07005826 __skb_pull(skb, hlen);
5827
5828 /*
5829 * This works because the only protocols we care about don't require
5830 * special handling.
5831 * We'll fix it up properly in napi_frags_finish()
5832 */
5833 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07005834
Herbert Xu76620aa2009-04-16 02:02:07 -07005835 return skb;
5836}
Herbert Xu76620aa2009-04-16 02:02:07 -07005837
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005838gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07005839{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005840 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07005841 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08005842
5843 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07005844 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08005845
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005846 trace_napi_gro_frags_entry(skb);
5847
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005848 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
5849 trace_napi_gro_frags_exit(ret);
5850
5851 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08005852}
5853EXPORT_SYMBOL(napi_gro_frags);
5854
Tom Herbert573e8fc2014-08-22 13:33:47 -07005855/* Compute the checksum from gro_offset and return the folded value
5856 * after adding in any pseudo checksum.
5857 */
5858__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
5859{
5860 __wsum wsum;
5861 __sum16 sum;
5862
5863 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
5864
5865 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
5866 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08005867 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07005868 if (likely(!sum)) {
5869 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
5870 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08005871 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07005872 }
5873
5874 NAPI_GRO_CB(skb)->csum = wsum;
5875 NAPI_GRO_CB(skb)->csum_valid = 1;
5876
5877 return sum;
5878}
5879EXPORT_SYMBOL(__skb_gro_checksum_complete);
5880
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305881static void net_rps_send_ipi(struct softnet_data *remsd)
5882{
5883#ifdef CONFIG_RPS
5884 while (remsd) {
5885 struct softnet_data *next = remsd->rps_ipi_next;
5886
5887 if (cpu_online(remsd->cpu))
5888 smp_call_function_single_async(remsd->cpu, &remsd->csd);
5889 remsd = next;
5890 }
5891#endif
5892}
5893
Eric Dumazete326bed2010-04-22 00:22:45 -07005894/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08005895 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07005896 * Note: called with local irq disabled, but exits with local irq enabled.
5897 */
5898static void net_rps_action_and_irq_enable(struct softnet_data *sd)
5899{
5900#ifdef CONFIG_RPS
5901 struct softnet_data *remsd = sd->rps_ipi_list;
5902
5903 if (remsd) {
5904 sd->rps_ipi_list = NULL;
5905
5906 local_irq_enable();
5907
5908 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05305909 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07005910 } else
5911#endif
5912 local_irq_enable();
5913}
5914
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005915static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
5916{
5917#ifdef CONFIG_RPS
5918 return sd->rps_ipi_list != NULL;
5919#else
5920 return false;
5921#endif
5922}
5923
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005924static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005926 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005927 bool again = true;
5928 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005929
Eric Dumazete326bed2010-04-22 00:22:45 -07005930 /* Check if we have pending ipi, its better to send them now,
5931 * not waiting net_rx_action() end.
5932 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005933 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005934 local_irq_disable();
5935 net_rps_action_and_irq_enable(sd);
5936 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005937
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01005938 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005939 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941
Changli Gao6e7676c2010-04-27 15:07:33 -07005942 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005943 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005944 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005945 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005946 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005947 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00005948 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005949
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005952 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005953 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005954 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005955 /*
5956 * Inline a custom version of __napi_complete().
5957 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005958 * and NAPI_STATE_SCHED is the only possible flag set
5959 * on backlog.
5960 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005961 * and we dont need an smp_mb() memory barrier.
5962 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005963 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005964 again = false;
5965 } else {
5966 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5967 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005968 }
5969 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005970 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005973 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974}
5975
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005976/**
5977 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005978 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005979 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005980 * The entry's receive function will be scheduled to run.
5981 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005982 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005983void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005984{
5985 unsigned long flags;
5986
5987 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005988 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005989 local_irq_restore(flags);
5990}
5991EXPORT_SYMBOL(__napi_schedule);
5992
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005993/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08005994 * napi_schedule_prep - check if napi can be scheduled
5995 * @n: napi context
5996 *
5997 * Test if NAPI routine is already running, and if not mark
5998 * it as running. This is used as a condition variable
5999 * insure only one NAPI poll instance runs. We also make
6000 * sure there is no pending NAPI disable.
6001 */
6002bool napi_schedule_prep(struct napi_struct *n)
6003{
6004 unsigned long val, new;
6005
6006 do {
6007 val = READ_ONCE(n->state);
6008 if (unlikely(val & NAPIF_STATE_DISABLE))
6009 return false;
6010 new = val | NAPIF_STATE_SCHED;
6011
6012 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6013 * This was suggested by Alexander Duyck, as compiler
6014 * emits better code than :
6015 * if (val & NAPIF_STATE_SCHED)
6016 * new |= NAPIF_STATE_MISSED;
6017 */
6018 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6019 NAPIF_STATE_MISSED;
6020 } while (cmpxchg(&n->state, val, new) != val);
6021
6022 return !(val & NAPIF_STATE_SCHED);
6023}
6024EXPORT_SYMBOL(napi_schedule_prep);
6025
6026/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006027 * __napi_schedule_irqoff - schedule for receive
6028 * @n: entry to schedule
6029 *
6030 * Variant of __napi_schedule() assuming hard irqs are masked
6031 */
6032void __napi_schedule_irqoff(struct napi_struct *n)
6033{
6034 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6035}
6036EXPORT_SYMBOL(__napi_schedule_irqoff);
6037
Eric Dumazet364b6052016-11-15 10:15:13 -08006038bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006039{
Eric Dumazet39e6c822017-02-28 10:34:50 -08006040 unsigned long flags, val, new;
Herbert Xud565b0a2008-12-15 23:38:52 -08006041
6042 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006043 * 1) Don't let napi dequeue from the cpu poll list
6044 * just in case its running on a different cpu.
6045 * 2) If we are busy polling, do nothing here, we have
6046 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006047 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006048 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6049 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006050 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006051
Li RongQingd9f37d02018-07-13 14:41:36 +08006052 if (n->gro_bitmask) {
Eric Dumazet3b47d302014-11-06 21:09:44 -08006053 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006054
Eric Dumazet3b47d302014-11-06 21:09:44 -08006055 if (work_done)
6056 timeout = n->dev->gro_flush_timeout;
6057
Paolo Abeni605108a2018-11-21 18:21:35 +01006058 /* When the NAPI instance uses a timeout and keeps postponing
6059 * it, we need to bound somehow the time packets are kept in
6060 * the GRO layer
6061 */
6062 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006063 if (timeout)
6064 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6065 HRTIMER_MODE_REL_PINNED);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006066 }
Eric Dumazet02c16022017-02-04 15:25:02 -08006067 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006068 /* If n->poll_list is not empty, we need to mask irqs */
6069 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006070 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006071 local_irq_restore(flags);
6072 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006073
6074 do {
6075 val = READ_ONCE(n->state);
6076
6077 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6078
6079 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
6080
6081 /* If STATE_MISSED was set, leave STATE_SCHED set,
6082 * because we will call napi->poll() one more time.
6083 * This C code was suggested by Alexander Duyck to help gcc.
6084 */
6085 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6086 NAPIF_STATE_SCHED;
6087 } while (cmpxchg(&n->state, val, new) != val);
6088
6089 if (unlikely(val & NAPIF_STATE_MISSED)) {
6090 __napi_schedule(n);
6091 return false;
6092 }
6093
Eric Dumazet364b6052016-11-15 10:15:13 -08006094 return true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006095}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006096EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006097
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006098/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006099static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006100{
6101 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6102 struct napi_struct *napi;
6103
6104 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6105 if (napi->napi_id == napi_id)
6106 return napi;
6107
6108 return NULL;
6109}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006110
6111#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006112
Eric Dumazetce6aea92015-11-18 06:30:54 -08006113#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08006114
6115static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
6116{
6117 int rc;
6118
Eric Dumazet39e6c822017-02-28 10:34:50 -08006119 /* Busy polling means there is a high chance device driver hard irq
6120 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6121 * set in napi_schedule_prep().
6122 * Since we are about to call napi->poll() once more, we can safely
6123 * clear NAPI_STATE_MISSED.
6124 *
6125 * Note: x86 could use a single "lock and ..." instruction
6126 * to perform these two clear_bit()
6127 */
6128 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006129 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6130
6131 local_bh_disable();
6132
6133 /* All we really want here is to re-enable device interrupts.
6134 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6135 */
6136 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02006137 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006138 netpoll_poll_unlock(have_poll_lock);
6139 if (rc == BUSY_POLL_BUDGET)
6140 __napi_schedule(napi);
6141 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006142}
6143
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006144void napi_busy_loop(unsigned int napi_id,
6145 bool (*loop_end)(void *, unsigned long),
6146 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006147{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006148 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006149 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006150 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006151 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006152
6153restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006154 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006155
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006156 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006157
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006158 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006159 if (!napi)
6160 goto out;
6161
Eric Dumazet217f6972016-11-15 10:15:11 -08006162 preempt_disable();
6163 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006164 int work = 0;
6165
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006166 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006167 if (!napi_poll) {
6168 unsigned long val = READ_ONCE(napi->state);
6169
6170 /* If multiple threads are competing for this napi,
6171 * we avoid dirtying napi->state as much as we can.
6172 */
6173 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6174 NAPIF_STATE_IN_BUSY_POLL))
6175 goto count;
6176 if (cmpxchg(&napi->state, val,
6177 val | NAPIF_STATE_IN_BUSY_POLL |
6178 NAPIF_STATE_SCHED) != val)
6179 goto count;
6180 have_poll_lock = netpoll_poll_lock(napi);
6181 napi_poll = napi->poll;
6182 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006183 work = napi_poll(napi, BUSY_POLL_BUDGET);
6184 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006185count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006186 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006187 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006188 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006189 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006190
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006191 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006192 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006193
Eric Dumazet217f6972016-11-15 10:15:11 -08006194 if (unlikely(need_resched())) {
6195 if (napi_poll)
6196 busy_poll_stop(napi, have_poll_lock);
6197 preempt_enable();
6198 rcu_read_unlock();
6199 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006200 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006201 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006202 goto restart;
6203 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006204 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006205 }
6206 if (napi_poll)
6207 busy_poll_stop(napi, have_poll_lock);
6208 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006209out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006210 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006211}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006212EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006213
6214#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006215
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006216static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006217{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08006218 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
6219 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006220 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006221
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006222 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006223
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006224 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006225 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006226 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6227 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006228 } while (napi_by_id(napi_gen_id));
6229 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006230
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006231 hlist_add_head_rcu(&napi->napi_hash_node,
6232 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006233
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006234 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006235}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006236
6237/* Warning : caller is responsible to make sure rcu grace period
6238 * is respected before freeing memory containing @napi
6239 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08006240bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006241{
Eric Dumazet34cbe272015-11-18 06:31:02 -08006242 bool rcu_sync_needed = false;
6243
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006244 spin_lock(&napi_hash_lock);
6245
Eric Dumazet34cbe272015-11-18 06:31:02 -08006246 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
6247 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006248 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006249 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006250 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08006251 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006252}
6253EXPORT_SYMBOL_GPL(napi_hash_del);
6254
Eric Dumazet3b47d302014-11-06 21:09:44 -08006255static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6256{
6257 struct napi_struct *napi;
6258
6259 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006260
6261 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6262 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6263 */
Li RongQingd9f37d02018-07-13 14:41:36 +08006264 if (napi->gro_bitmask && !napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006265 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6266 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006267
6268 return HRTIMER_NORESTART;
6269}
6270
David S. Miller7c4ec742018-07-20 23:37:55 -07006271static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006272{
David Miller07d78362018-06-24 14:14:02 +09006273 int i;
6274
Li RongQing6312fe72018-07-05 14:34:32 +08006275 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6276 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6277 napi->gro_hash[i].count = 0;
6278 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006279 napi->gro_bitmask = 0;
6280}
6281
6282void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6283 int (*poll)(struct napi_struct *, int), int weight)
6284{
6285 INIT_LIST_HEAD(&napi->poll_list);
6286 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6287 napi->timer.function = napi_watchdog;
6288 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006289 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08006290 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006291 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006292 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6293 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006294 napi->weight = weight;
6295 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08006296 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006297#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006298 napi->poll_owner = -1;
6299#endif
6300 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006301 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006302}
6303EXPORT_SYMBOL(netif_napi_add);
6304
Eric Dumazet3b47d302014-11-06 21:09:44 -08006305void napi_disable(struct napi_struct *n)
6306{
6307 might_sleep();
6308 set_bit(NAPI_STATE_DISABLE, &n->state);
6309
6310 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6311 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006312 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6313 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006314
6315 hrtimer_cancel(&n->timer);
6316
6317 clear_bit(NAPI_STATE_DISABLE, &n->state);
6318}
6319EXPORT_SYMBOL(napi_disable);
6320
David Miller07d78362018-06-24 14:14:02 +09006321static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006322{
David Miller07d78362018-06-24 14:14:02 +09006323 int i;
David Millerd4546c22018-06-24 14:13:49 +09006324
David Miller07d78362018-06-24 14:14:02 +09006325 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6326 struct sk_buff *skb, *n;
6327
Li RongQing6312fe72018-07-05 14:34:32 +08006328 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006329 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006330 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006331 }
David Millerd4546c22018-06-24 14:13:49 +09006332}
6333
Eric Dumazet93d05d42015-11-18 06:31:03 -08006334/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08006335void netif_napi_del(struct napi_struct *napi)
6336{
Eric Dumazet93d05d42015-11-18 06:31:03 -08006337 might_sleep();
6338 if (napi_hash_del(napi))
6339 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08006340 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006341 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006342
David Miller07d78362018-06-24 14:14:02 +09006343 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006344 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006345}
6346EXPORT_SYMBOL(netif_napi_del);
6347
Herbert Xu726ce702014-12-21 07:16:21 +11006348static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6349{
6350 void *have;
6351 int work, weight;
6352
6353 list_del_init(&n->poll_list);
6354
6355 have = netpoll_poll_lock(n);
6356
6357 weight = n->weight;
6358
6359 /* This NAPI_STATE_SCHED test is for avoiding a race
6360 * with netpoll's poll_napi(). Only the entity which
6361 * obtains the lock and sees NAPI_STATE_SCHED set will
6362 * actually make the ->poll() call. Therefore we avoid
6363 * accidentally calling ->poll() when NAPI is not scheduled.
6364 */
6365 work = 0;
6366 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6367 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006368 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006369 }
6370
6371 WARN_ON_ONCE(work > weight);
6372
6373 if (likely(work < weight))
6374 goto out_unlock;
6375
6376 /* Drivers must not modify the NAPI state if they
6377 * consume the entire weight. In such cases this code
6378 * still "owns" the NAPI instance and therefore can
6379 * move the instance around on the list at-will.
6380 */
6381 if (unlikely(napi_disable_pending(n))) {
6382 napi_complete(n);
6383 goto out_unlock;
6384 }
6385
Li RongQingd9f37d02018-07-13 14:41:36 +08006386 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006387 /* flush too old packets
6388 * If HZ < 1000, flush all packets.
6389 */
6390 napi_gro_flush(n, HZ >= 1000);
6391 }
6392
Herbert Xu001ce542014-12-21 07:16:22 +11006393 /* Some drivers may have called napi_schedule
6394 * prior to exhausting their budget.
6395 */
6396 if (unlikely(!list_empty(&n->poll_list))) {
6397 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6398 n->dev ? n->dev->name : "backlog");
6399 goto out_unlock;
6400 }
6401
Herbert Xu726ce702014-12-21 07:16:21 +11006402 list_add_tail(&n->poll_list, repoll);
6403
6404out_unlock:
6405 netpoll_poll_unlock(have);
6406
6407 return work;
6408}
6409
Emese Revfy0766f782016-06-20 20:42:34 +02006410static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006412 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006413 unsigned long time_limit = jiffies +
6414 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006415 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006416 LIST_HEAD(list);
6417 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006418
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006420 list_splice_init(&sd->poll_list, &list);
6421 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006423 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006424 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006426 if (list_empty(&list)) {
6427 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006428 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006429 break;
6430 }
6431
Herbert Xu6bd373e2014-12-21 07:16:24 +11006432 n = list_first_entry(&list, struct napi_struct, poll_list);
6433 budget -= napi_poll(n, &repoll);
6434
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006435 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006436 * Allow this to run for 2 jiffies since which will allow
6437 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006438 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006439 if (unlikely(budget <= 0 ||
6440 time_after_eq(jiffies, time_limit))) {
6441 sd->time_squeeze++;
6442 break;
6443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006445
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006446 local_irq_disable();
6447
6448 list_splice_tail_init(&sd->poll_list, &list);
6449 list_splice_tail(&repoll, &list);
6450 list_splice(&list, &sd->poll_list);
6451 if (!list_empty(&sd->poll_list))
6452 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6453
Eric Dumazete326bed2010-04-22 00:22:45 -07006454 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006455out:
6456 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457}
6458
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006459struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006460 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006461
6462 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006463 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006464
Veaceslav Falico5d261912013-08-28 23:25:05 +02006465 /* counter for the number of times this device was added to us */
6466 u16 ref_nr;
6467
Veaceslav Falico402dae92013-09-25 09:20:09 +02006468 /* private field for the users */
6469 void *private;
6470
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006471 struct list_head list;
6472 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006473};
6474
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006475static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006476 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006477{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006478 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006479
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006480 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006481 if (adj->dev == adj_dev)
6482 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006483 }
6484 return NULL;
6485}
6486
David Ahernf1170fd2016-10-17 19:15:51 -07006487static int __netdev_has_upper_dev(struct net_device *upper_dev, void *data)
6488{
6489 struct net_device *dev = data;
6490
6491 return upper_dev == dev;
6492}
6493
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006494/**
6495 * netdev_has_upper_dev - Check if device is linked to an upper device
6496 * @dev: device
6497 * @upper_dev: upper device to check
6498 *
6499 * Find out if a device is linked to specified upper device and return true
6500 * in case it is. Note that this checks only immediate upper device,
6501 * not through a complete stack of devices. The caller must hold the RTNL lock.
6502 */
6503bool netdev_has_upper_dev(struct net_device *dev,
6504 struct net_device *upper_dev)
6505{
6506 ASSERT_RTNL();
6507
David Ahernf1170fd2016-10-17 19:15:51 -07006508 return netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6509 upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006510}
6511EXPORT_SYMBOL(netdev_has_upper_dev);
6512
6513/**
David Ahern1a3f0602016-10-17 19:15:44 -07006514 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6515 * @dev: device
6516 * @upper_dev: upper device to check
6517 *
6518 * Find out if a device is linked to specified upper device and return true
6519 * in case it is. Note that this checks the entire upper device chain.
6520 * The caller must hold rcu lock.
6521 */
6522
David Ahern1a3f0602016-10-17 19:15:44 -07006523bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6524 struct net_device *upper_dev)
6525{
6526 return !!netdev_walk_all_upper_dev_rcu(dev, __netdev_has_upper_dev,
6527 upper_dev);
6528}
6529EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6530
6531/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006532 * netdev_has_any_upper_dev - Check if device is linked to some device
6533 * @dev: device
6534 *
6535 * Find out if a device is linked to an upper device and return true in case
6536 * it is. The caller must hold the RTNL lock.
6537 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006538bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006539{
6540 ASSERT_RTNL();
6541
David Ahernf1170fd2016-10-17 19:15:51 -07006542 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006543}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006544EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006545
6546/**
6547 * netdev_master_upper_dev_get - Get master upper device
6548 * @dev: device
6549 *
6550 * Find a master upper device and return pointer to it or NULL in case
6551 * it's not there. The caller must hold the RTNL lock.
6552 */
6553struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6554{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006555 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006556
6557 ASSERT_RTNL();
6558
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006559 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006560 return NULL;
6561
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006562 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006563 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006564 if (likely(upper->master))
6565 return upper->dev;
6566 return NULL;
6567}
6568EXPORT_SYMBOL(netdev_master_upper_dev_get);
6569
David Ahern0f524a82016-10-17 19:15:52 -07006570/**
6571 * netdev_has_any_lower_dev - Check if device is linked to some device
6572 * @dev: device
6573 *
6574 * Find out if a device is linked to a lower device and return true in case
6575 * it is. The caller must hold the RTNL lock.
6576 */
6577static bool netdev_has_any_lower_dev(struct net_device *dev)
6578{
6579 ASSERT_RTNL();
6580
6581 return !list_empty(&dev->adj_list.lower);
6582}
6583
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02006584void *netdev_adjacent_get_private(struct list_head *adj_list)
6585{
6586 struct netdev_adjacent *adj;
6587
6588 adj = list_entry(adj_list, struct netdev_adjacent, list);
6589
6590 return adj->private;
6591}
6592EXPORT_SYMBOL(netdev_adjacent_get_private);
6593
Veaceslav Falico31088a12013-09-25 09:20:12 +02006594/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04006595 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
6596 * @dev: device
6597 * @iter: list_head ** of the current position
6598 *
6599 * Gets the next device from the dev's upper list, starting from iter
6600 * position. The caller must hold RCU read lock.
6601 */
6602struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
6603 struct list_head **iter)
6604{
6605 struct netdev_adjacent *upper;
6606
6607 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6608
6609 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6610
6611 if (&upper->list == &dev->adj_list.upper)
6612 return NULL;
6613
6614 *iter = &upper->list;
6615
6616 return upper->dev;
6617}
6618EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
6619
David Ahern1a3f0602016-10-17 19:15:44 -07006620static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
6621 struct list_head **iter)
6622{
6623 struct netdev_adjacent *upper;
6624
6625 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
6626
6627 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6628
6629 if (&upper->list == &dev->adj_list.upper)
6630 return NULL;
6631
6632 *iter = &upper->list;
6633
6634 return upper->dev;
6635}
6636
6637int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
6638 int (*fn)(struct net_device *dev,
6639 void *data),
6640 void *data)
6641{
6642 struct net_device *udev;
6643 struct list_head *iter;
6644 int ret;
6645
6646 for (iter = &dev->adj_list.upper,
6647 udev = netdev_next_upper_dev_rcu(dev, &iter);
6648 udev;
6649 udev = netdev_next_upper_dev_rcu(dev, &iter)) {
6650 /* first is the upper device itself */
6651 ret = fn(udev, data);
6652 if (ret)
6653 return ret;
6654
6655 /* then look at all of its upper devices */
6656 ret = netdev_walk_all_upper_dev_rcu(udev, fn, data);
6657 if (ret)
6658 return ret;
6659 }
6660
6661 return 0;
6662}
6663EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
6664
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006665/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02006666 * netdev_lower_get_next_private - Get the next ->private from the
6667 * lower neighbour list
6668 * @dev: device
6669 * @iter: list_head ** of the current position
6670 *
6671 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6672 * list, starting from iter position. The caller must hold either hold the
6673 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006674 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02006675 */
6676void *netdev_lower_get_next_private(struct net_device *dev,
6677 struct list_head **iter)
6678{
6679 struct netdev_adjacent *lower;
6680
6681 lower = list_entry(*iter, struct netdev_adjacent, list);
6682
6683 if (&lower->list == &dev->adj_list.lower)
6684 return NULL;
6685
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006686 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006687
6688 return lower->private;
6689}
6690EXPORT_SYMBOL(netdev_lower_get_next_private);
6691
6692/**
6693 * netdev_lower_get_next_private_rcu - Get the next ->private from the
6694 * lower neighbour list, RCU
6695 * variant
6696 * @dev: device
6697 * @iter: list_head ** of the current position
6698 *
6699 * Gets the next netdev_adjacent->private from the dev's lower neighbour
6700 * list, starting from iter position. The caller must hold RCU read lock.
6701 */
6702void *netdev_lower_get_next_private_rcu(struct net_device *dev,
6703 struct list_head **iter)
6704{
6705 struct netdev_adjacent *lower;
6706
6707 WARN_ON_ONCE(!rcu_read_lock_held());
6708
6709 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6710
6711 if (&lower->list == &dev->adj_list.lower)
6712 return NULL;
6713
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02006714 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02006715
6716 return lower->private;
6717}
6718EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
6719
6720/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006721 * netdev_lower_get_next - Get the next device from the lower neighbour
6722 * list
6723 * @dev: device
6724 * @iter: list_head ** of the current position
6725 *
6726 * Gets the next netdev_adjacent from the dev's lower neighbour
6727 * list, starting from iter position. The caller must hold RTNL lock or
6728 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00006729 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006730 */
6731void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
6732{
6733 struct netdev_adjacent *lower;
6734
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006735 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006736
6737 if (&lower->list == &dev->adj_list.lower)
6738 return NULL;
6739
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01006740 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006741
6742 return lower->dev;
6743}
6744EXPORT_SYMBOL(netdev_lower_get_next);
6745
David Ahern1a3f0602016-10-17 19:15:44 -07006746static struct net_device *netdev_next_lower_dev(struct net_device *dev,
6747 struct list_head **iter)
6748{
6749 struct netdev_adjacent *lower;
6750
David Ahern46b5ab12016-10-26 13:21:33 -07006751 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07006752
6753 if (&lower->list == &dev->adj_list.lower)
6754 return NULL;
6755
David Ahern46b5ab12016-10-26 13:21:33 -07006756 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07006757
6758 return lower->dev;
6759}
6760
6761int netdev_walk_all_lower_dev(struct net_device *dev,
6762 int (*fn)(struct net_device *dev,
6763 void *data),
6764 void *data)
6765{
6766 struct net_device *ldev;
6767 struct list_head *iter;
6768 int ret;
6769
6770 for (iter = &dev->adj_list.lower,
6771 ldev = netdev_next_lower_dev(dev, &iter);
6772 ldev;
6773 ldev = netdev_next_lower_dev(dev, &iter)) {
6774 /* first is the lower device itself */
6775 ret = fn(ldev, data);
6776 if (ret)
6777 return ret;
6778
6779 /* then look at all of its lower devices */
6780 ret = netdev_walk_all_lower_dev(ldev, fn, data);
6781 if (ret)
6782 return ret;
6783 }
6784
6785 return 0;
6786}
6787EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
6788
David Ahern1a3f0602016-10-17 19:15:44 -07006789static struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
6790 struct list_head **iter)
6791{
6792 struct netdev_adjacent *lower;
6793
6794 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
6795 if (&lower->list == &dev->adj_list.lower)
6796 return NULL;
6797
6798 *iter = &lower->list;
6799
6800 return lower->dev;
6801}
6802
6803int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
6804 int (*fn)(struct net_device *dev,
6805 void *data),
6806 void *data)
6807{
6808 struct net_device *ldev;
6809 struct list_head *iter;
6810 int ret;
6811
6812 for (iter = &dev->adj_list.lower,
6813 ldev = netdev_next_lower_dev_rcu(dev, &iter);
6814 ldev;
6815 ldev = netdev_next_lower_dev_rcu(dev, &iter)) {
6816 /* first is the lower device itself */
6817 ret = fn(ldev, data);
6818 if (ret)
6819 return ret;
6820
6821 /* then look at all of its lower devices */
6822 ret = netdev_walk_all_lower_dev_rcu(ldev, fn, data);
6823 if (ret)
6824 return ret;
6825 }
6826
6827 return 0;
6828}
6829EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
6830
Jiri Pirko7ce856a2016-07-04 08:23:12 +02006831/**
dingtianhonge001bfa2013-12-13 10:19:55 +08006832 * netdev_lower_get_first_private_rcu - Get the first ->private from the
6833 * lower neighbour list, RCU
6834 * variant
6835 * @dev: device
6836 *
6837 * Gets the first netdev_adjacent->private from the dev's lower neighbour
6838 * list. The caller must hold RCU read lock.
6839 */
6840void *netdev_lower_get_first_private_rcu(struct net_device *dev)
6841{
6842 struct netdev_adjacent *lower;
6843
6844 lower = list_first_or_null_rcu(&dev->adj_list.lower,
6845 struct netdev_adjacent, list);
6846 if (lower)
6847 return lower->private;
6848 return NULL;
6849}
6850EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
6851
6852/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006853 * netdev_master_upper_dev_get_rcu - Get master upper device
6854 * @dev: device
6855 *
6856 * Find a master upper device and return pointer to it or NULL in case
6857 * it's not there. The caller must hold the RCU read lock.
6858 */
6859struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
6860{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006861 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006862
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006863 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006864 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006865 if (upper && likely(upper->master))
6866 return upper->dev;
6867 return NULL;
6868}
6869EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
6870
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306871static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006872 struct net_device *adj_dev,
6873 struct list_head *dev_list)
6874{
6875 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006876
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006877 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6878 "upper_%s" : "lower_%s", adj_dev->name);
6879 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
6880 linkname);
6881}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05306882static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006883 char *name,
6884 struct list_head *dev_list)
6885{
6886 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11006887
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006888 sprintf(linkname, dev_list == &dev->adj_list.upper ?
6889 "upper_%s" : "lower_%s", name);
6890 sysfs_remove_link(&(dev->dev.kobj), linkname);
6891}
6892
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006893static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
6894 struct net_device *adj_dev,
6895 struct list_head *dev_list)
6896{
6897 return (dev_list == &dev->adj_list.upper ||
6898 dev_list == &dev->adj_list.lower) &&
6899 net_eq(dev_net(dev), dev_net(adj_dev));
6900}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006901
Veaceslav Falico5d261912013-08-28 23:25:05 +02006902static int __netdev_adjacent_dev_insert(struct net_device *dev,
6903 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02006904 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006905 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006906{
6907 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006908 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006909
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006910 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006911
6912 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07006913 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07006914 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
6915 dev->name, adj_dev->name, adj->ref_nr);
6916
Veaceslav Falico5d261912013-08-28 23:25:05 +02006917 return 0;
6918 }
6919
6920 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
6921 if (!adj)
6922 return -ENOMEM;
6923
6924 adj->dev = adj_dev;
6925 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07006926 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006927 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006928 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006929
David Ahern67b62f92016-10-17 19:15:53 -07006930 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
6931 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006932
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006933 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006934 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006935 if (ret)
6936 goto free_adj;
6937 }
6938
Veaceslav Falico7863c052013-09-25 09:20:06 +02006939 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006940 if (master) {
6941 ret = sysfs_create_link(&(dev->dev.kobj),
6942 &(adj_dev->dev.kobj), "master");
6943 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02006944 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006945
Veaceslav Falico7863c052013-09-25 09:20:06 +02006946 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006947 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02006948 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006949 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006950
6951 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006952
Veaceslav Falico5831d662013-09-25 09:20:32 +02006953remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006954 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006955 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006956free_adj:
6957 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02006958 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006959
6960 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006961}
6962
stephen hemminger1d143d92013-12-29 14:01:29 -08006963static void __netdev_adjacent_dev_remove(struct net_device *dev,
6964 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06006965 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08006966 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02006967{
6968 struct netdev_adjacent *adj;
6969
David Ahern67b62f92016-10-17 19:15:53 -07006970 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
6971 dev->name, adj_dev->name, ref_nr);
6972
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006973 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006974
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006975 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07006976 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006977 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07006978 WARN_ON(1);
6979 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006980 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02006981
Andrew Collins93409032016-10-03 13:43:02 -06006982 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07006983 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
6984 dev->name, adj_dev->name, ref_nr,
6985 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06006986 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006987 return;
6988 }
6989
Veaceslav Falico842d67a2013-09-25 09:20:31 +02006990 if (adj->master)
6991 sysfs_remove_link(&(dev->dev.kobj), "master");
6992
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04006993 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01006994 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02006995
Veaceslav Falico5d261912013-08-28 23:25:05 +02006996 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07006997 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006998 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006999 dev_put(adj_dev);
7000 kfree_rcu(adj, rcu);
7001}
7002
stephen hemminger1d143d92013-12-29 14:01:29 -08007003static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7004 struct net_device *upper_dev,
7005 struct list_head *up_list,
7006 struct list_head *down_list,
7007 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007008{
7009 int ret;
7010
David Ahern790510d2016-10-17 19:15:43 -07007011 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06007012 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007013 if (ret)
7014 return ret;
7015
David Ahern790510d2016-10-17 19:15:43 -07007016 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06007017 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007018 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07007019 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007020 return ret;
7021 }
7022
7023 return 0;
7024}
7025
stephen hemminger1d143d92013-12-29 14:01:29 -08007026static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7027 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007028 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007029 struct list_head *up_list,
7030 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007031{
Andrew Collins93409032016-10-03 13:43:02 -06007032 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7033 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007034}
7035
stephen hemminger1d143d92013-12-29 14:01:29 -08007036static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7037 struct net_device *upper_dev,
7038 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007039{
David Ahernf1170fd2016-10-17 19:15:51 -07007040 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7041 &dev->adj_list.upper,
7042 &upper_dev->adj_list.lower,
7043 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007044}
7045
stephen hemminger1d143d92013-12-29 14:01:29 -08007046static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7047 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007048{
Andrew Collins93409032016-10-03 13:43:02 -06007049 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007050 &dev->adj_list.upper,
7051 &upper_dev->adj_list.lower);
7052}
Veaceslav Falico5d261912013-08-28 23:25:05 +02007053
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007054static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007055 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07007056 void *upper_priv, void *upper_info,
7057 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007058{
David Ahern51d0c0472017-10-04 17:48:45 -07007059 struct netdev_notifier_changeupper_info changeupper_info = {
7060 .info = {
7061 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007062 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07007063 },
7064 .upper_dev = upper_dev,
7065 .master = master,
7066 .linking = true,
7067 .upper_info = upper_info,
7068 };
Mike Manning50d629e2018-02-26 23:49:30 +00007069 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007070 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007071
7072 ASSERT_RTNL();
7073
7074 if (dev == upper_dev)
7075 return -EBUSY;
7076
7077 /* To prevent loops, check if dev is not upper device to upper_dev. */
David Ahernf1170fd2016-10-17 19:15:51 -07007078 if (netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007079 return -EBUSY;
7080
Mike Manning50d629e2018-02-26 23:49:30 +00007081 if (!master) {
7082 if (netdev_has_upper_dev(dev, upper_dev))
7083 return -EEXIST;
7084 } else {
7085 master_dev = netdev_master_upper_dev_get(dev);
7086 if (master_dev)
7087 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7088 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007089
David Ahern51d0c0472017-10-04 17:48:45 -07007090 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007091 &changeupper_info.info);
7092 ret = notifier_to_errno(ret);
7093 if (ret)
7094 return ret;
7095
Jiri Pirko6dffb042015-12-03 12:12:10 +01007096 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007097 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007098 if (ret)
7099 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007100
David Ahern51d0c0472017-10-04 17:48:45 -07007101 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01007102 &changeupper_info.info);
7103 ret = notifier_to_errno(ret);
7104 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07007105 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01007106
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007107 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007108
David Ahernf1170fd2016-10-17 19:15:51 -07007109rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007110 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007111
7112 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007113}
7114
7115/**
7116 * netdev_upper_dev_link - Add a link to the upper device
7117 * @dev: device
7118 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007119 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007120 *
7121 * Adds a link to device which is upper to this one. The caller must hold
7122 * the RTNL lock. On a failure a negative errno code is returned.
7123 * On success the reference counts are adjusted and the function
7124 * returns zero.
7125 */
7126int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007127 struct net_device *upper_dev,
7128 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007129{
David Ahern42ab19e2017-10-04 17:48:47 -07007130 return __netdev_upper_dev_link(dev, upper_dev, false,
7131 NULL, NULL, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007132}
7133EXPORT_SYMBOL(netdev_upper_dev_link);
7134
7135/**
7136 * netdev_master_upper_dev_link - Add a master link to the upper device
7137 * @dev: device
7138 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007139 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007140 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007141 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007142 *
7143 * Adds a link to device which is upper to this one. In this case, only
7144 * one master upper device can be linked, although other non-master devices
7145 * might be linked as well. The caller must hold the RTNL lock.
7146 * On a failure a negative errno code is returned. On success the reference
7147 * counts are adjusted and the function returns zero.
7148 */
7149int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007150 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007151 void *upper_priv, void *upper_info,
7152 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007153{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007154 return __netdev_upper_dev_link(dev, upper_dev, true,
David Ahern42ab19e2017-10-04 17:48:47 -07007155 upper_priv, upper_info, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007156}
7157EXPORT_SYMBOL(netdev_master_upper_dev_link);
7158
7159/**
7160 * netdev_upper_dev_unlink - Removes a link to upper device
7161 * @dev: device
7162 * @upper_dev: new upper device
7163 *
7164 * Removes a link to device which is upper to this one. The caller must hold
7165 * the RTNL lock.
7166 */
7167void netdev_upper_dev_unlink(struct net_device *dev,
7168 struct net_device *upper_dev)
7169{
David Ahern51d0c0472017-10-04 17:48:45 -07007170 struct netdev_notifier_changeupper_info changeupper_info = {
7171 .info = {
7172 .dev = dev,
7173 },
7174 .upper_dev = upper_dev,
7175 .linking = false,
7176 };
tchardingf4563a72017-02-09 17:56:07 +11007177
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007178 ASSERT_RTNL();
7179
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007180 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007181
David Ahern51d0c0472017-10-04 17:48:45 -07007182 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007183 &changeupper_info.info);
7184
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007185 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007186
David Ahern51d0c0472017-10-04 17:48:45 -07007187 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007188 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007189}
7190EXPORT_SYMBOL(netdev_upper_dev_unlink);
7191
Moni Shoua61bd3852015-02-03 16:48:29 +02007192/**
7193 * netdev_bonding_info_change - Dispatch event about slave change
7194 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09007195 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02007196 *
7197 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
7198 * The caller must hold the RTNL lock.
7199 */
7200void netdev_bonding_info_change(struct net_device *dev,
7201 struct netdev_bonding_info *bonding_info)
7202{
David Ahern51d0c0472017-10-04 17:48:45 -07007203 struct netdev_notifier_bonding_info info = {
7204 .info.dev = dev,
7205 };
Moni Shoua61bd3852015-02-03 16:48:29 +02007206
7207 memcpy(&info.bonding_info, bonding_info,
7208 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07007209 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02007210 &info.info);
7211}
7212EXPORT_SYMBOL(netdev_bonding_info_change);
7213
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007214static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007215{
7216 struct netdev_adjacent *iter;
7217
7218 struct net *net = dev_net(dev);
7219
7220 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007221 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007222 continue;
7223 netdev_adjacent_sysfs_add(iter->dev, dev,
7224 &iter->dev->adj_list.lower);
7225 netdev_adjacent_sysfs_add(dev, iter->dev,
7226 &dev->adj_list.upper);
7227 }
7228
7229 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007230 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007231 continue;
7232 netdev_adjacent_sysfs_add(iter->dev, dev,
7233 &iter->dev->adj_list.upper);
7234 netdev_adjacent_sysfs_add(dev, iter->dev,
7235 &dev->adj_list.lower);
7236 }
7237}
7238
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007239static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007240{
7241 struct netdev_adjacent *iter;
7242
7243 struct net *net = dev_net(dev);
7244
7245 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007246 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007247 continue;
7248 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7249 &iter->dev->adj_list.lower);
7250 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7251 &dev->adj_list.upper);
7252 }
7253
7254 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007255 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007256 continue;
7257 netdev_adjacent_sysfs_del(iter->dev, dev->name,
7258 &iter->dev->adj_list.upper);
7259 netdev_adjacent_sysfs_del(dev, iter->dev->name,
7260 &dev->adj_list.lower);
7261 }
7262}
7263
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007264void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02007265{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007266 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007267
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007268 struct net *net = dev_net(dev);
7269
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007270 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007271 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007272 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007273 netdev_adjacent_sysfs_del(iter->dev, oldname,
7274 &iter->dev->adj_list.lower);
7275 netdev_adjacent_sysfs_add(iter->dev, dev,
7276 &iter->dev->adj_list.lower);
7277 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007278
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007279 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08007280 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007281 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01007282 netdev_adjacent_sysfs_del(iter->dev, oldname,
7283 &iter->dev->adj_list.upper);
7284 netdev_adjacent_sysfs_add(iter->dev, dev,
7285 &iter->dev->adj_list.upper);
7286 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02007287}
Veaceslav Falico402dae92013-09-25 09:20:09 +02007288
7289void *netdev_lower_dev_get_private(struct net_device *dev,
7290 struct net_device *lower_dev)
7291{
7292 struct netdev_adjacent *lower;
7293
7294 if (!lower_dev)
7295 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007296 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02007297 if (!lower)
7298 return NULL;
7299
7300 return lower->private;
7301}
7302EXPORT_SYMBOL(netdev_lower_dev_get_private);
7303
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007304
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007305int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007306{
7307 struct net_device *lower = NULL;
7308 struct list_head *iter;
7309 int max_nest = -1;
7310 int nest;
7311
7312 ASSERT_RTNL();
7313
7314 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007315 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007316 if (max_nest < nest)
7317 max_nest = nest;
7318 }
7319
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02007320 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007321}
7322EXPORT_SYMBOL(dev_get_nest_level);
7323
Jiri Pirko04d48262015-12-03 12:12:15 +01007324/**
7325 * netdev_lower_change - Dispatch event about lower device state change
7326 * @lower_dev: device
7327 * @lower_state_info: state to dispatch
7328 *
7329 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
7330 * The caller must hold the RTNL lock.
7331 */
7332void netdev_lower_state_changed(struct net_device *lower_dev,
7333 void *lower_state_info)
7334{
David Ahern51d0c0472017-10-04 17:48:45 -07007335 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
7336 .info.dev = lower_dev,
7337 };
Jiri Pirko04d48262015-12-03 12:12:15 +01007338
7339 ASSERT_RTNL();
7340 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07007341 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01007342 &changelowerstate_info.info);
7343}
7344EXPORT_SYMBOL(netdev_lower_state_changed);
7345
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007346static void dev_change_rx_flags(struct net_device *dev, int flags)
7347{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007348 const struct net_device_ops *ops = dev->netdev_ops;
7349
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05007350 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007351 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007352}
7353
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007354static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07007355{
Eric Dumazetb536db92011-11-30 21:42:26 +00007356 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06007357 kuid_t uid;
7358 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07007359
Patrick McHardy24023452007-07-14 18:51:31 -07007360 ASSERT_RTNL();
7361
Wang Chendad9b332008-06-18 01:48:28 -07007362 dev->flags |= IFF_PROMISC;
7363 dev->promiscuity += inc;
7364 if (dev->promiscuity == 0) {
7365 /*
7366 * Avoid overflow.
7367 * If inc causes overflow, untouch promisc and return error.
7368 */
7369 if (inc < 0)
7370 dev->flags &= ~IFF_PROMISC;
7371 else {
7372 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007373 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
7374 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007375 return -EOVERFLOW;
7376 }
7377 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007378 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007379 pr_info("device %s %s promiscuous mode\n",
7380 dev->name,
7381 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11007382 if (audit_enabled) {
7383 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04007384 audit_log(audit_context(), GFP_ATOMIC,
7385 AUDIT_ANOM_PROMISCUOUS,
7386 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
7387 dev->name, (dev->flags & IFF_PROMISC),
7388 (old_flags & IFF_PROMISC),
7389 from_kuid(&init_user_ns, audit_get_loginuid(current)),
7390 from_kuid(&init_user_ns, uid),
7391 from_kgid(&init_user_ns, gid),
7392 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11007393 }
Patrick McHardy24023452007-07-14 18:51:31 -07007394
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007395 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07007396 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007397 if (notify)
7398 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07007399 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007400}
7401
Linus Torvalds1da177e2005-04-16 15:20:36 -07007402/**
7403 * dev_set_promiscuity - update promiscuity count on a device
7404 * @dev: device
7405 * @inc: modifier
7406 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07007407 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007408 * remains above zero the interface remains promiscuous. Once it hits zero
7409 * the device reverts back to normal filtering operation. A negative inc
7410 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07007411 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412 */
Wang Chendad9b332008-06-18 01:48:28 -07007413int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414{
Eric Dumazetb536db92011-11-30 21:42:26 +00007415 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07007416 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007418 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07007419 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07007420 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07007421 if (dev->flags != old_flags)
7422 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07007423 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007425EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007426
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007427static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007429 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007430
Patrick McHardy24023452007-07-14 18:51:31 -07007431 ASSERT_RTNL();
7432
Linus Torvalds1da177e2005-04-16 15:20:36 -07007433 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07007434 dev->allmulti += inc;
7435 if (dev->allmulti == 0) {
7436 /*
7437 * Avoid overflow.
7438 * If inc causes overflow, untouch allmulti and return error.
7439 */
7440 if (inc < 0)
7441 dev->flags &= ~IFF_ALLMULTI;
7442 else {
7443 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007444 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
7445 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07007446 return -EOVERFLOW;
7447 }
7448 }
Patrick McHardy24023452007-07-14 18:51:31 -07007449 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007450 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07007451 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007452 if (notify)
7453 __dev_notify_flags(dev, old_flags,
7454 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07007455 }
Wang Chendad9b332008-06-18 01:48:28 -07007456 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07007457}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007458
7459/**
7460 * dev_set_allmulti - update allmulti count on a device
7461 * @dev: device
7462 * @inc: modifier
7463 *
7464 * Add or remove reception of all multicast frames to a device. While the
7465 * count in the device remains above zero the interface remains listening
7466 * to all interfaces. Once it hits zero the device reverts back to normal
7467 * filtering operation. A negative @inc value is used to drop the counter
7468 * when releasing a resource needing all multicasts.
7469 * Return 0 if successful or a negative errno code on error.
7470 */
7471
7472int dev_set_allmulti(struct net_device *dev, int inc)
7473{
7474 return __dev_set_allmulti(dev, inc, true);
7475}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007476EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07007477
7478/*
7479 * Upload unicast and multicast address lists to device and
7480 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08007481 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07007482 * are present.
7483 */
7484void __dev_set_rx_mode(struct net_device *dev)
7485{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007486 const struct net_device_ops *ops = dev->netdev_ops;
7487
Patrick McHardy4417da62007-06-27 01:28:10 -07007488 /* dev_open will call this function so the list will stay sane. */
7489 if (!(dev->flags&IFF_UP))
7490 return;
7491
7492 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09007493 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07007494
Jiri Pirko01789342011-08-16 06:29:00 +00007495 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07007496 /* Unicast addresses changes may only happen under the rtnl,
7497 * therefore calling __dev_set_promiscuity here is safe.
7498 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007499 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007500 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007501 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08007502 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007503 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07007504 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07007505 }
Patrick McHardy4417da62007-06-27 01:28:10 -07007506 }
Jiri Pirko01789342011-08-16 06:29:00 +00007507
7508 if (ops->ndo_set_rx_mode)
7509 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007510}
7511
7512void dev_set_rx_mode(struct net_device *dev)
7513{
David S. Millerb9e40852008-07-15 00:15:08 -07007514 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07007515 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07007516 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007517}
7518
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007519/**
7520 * dev_get_flags - get flags reported to userspace
7521 * @dev: device
7522 *
7523 * Get the combination of flag bits exported through APIs to userspace.
7524 */
Eric Dumazet95c96172012-04-15 05:58:06 +00007525unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526{
Eric Dumazet95c96172012-04-15 05:58:06 +00007527 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528
7529 flags = (dev->flags & ~(IFF_PROMISC |
7530 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08007531 IFF_RUNNING |
7532 IFF_LOWER_UP |
7533 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07007534 (dev->gflags & (IFF_PROMISC |
7535 IFF_ALLMULTI));
7536
Stefan Rompfb00055a2006-03-20 17:09:11 -08007537 if (netif_running(dev)) {
7538 if (netif_oper_up(dev))
7539 flags |= IFF_RUNNING;
7540 if (netif_carrier_ok(dev))
7541 flags |= IFF_LOWER_UP;
7542 if (netif_dormant(dev))
7543 flags |= IFF_DORMANT;
7544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007545
7546 return flags;
7547}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007548EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007549
Petr Machata6d040322018-12-06 17:05:43 +00007550int __dev_change_flags(struct net_device *dev, unsigned int flags,
7551 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552{
Eric Dumazetb536db92011-11-30 21:42:26 +00007553 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00007554 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555
Patrick McHardy24023452007-07-14 18:51:31 -07007556 ASSERT_RTNL();
7557
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558 /*
7559 * Set the flags on our device.
7560 */
7561
7562 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
7563 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
7564 IFF_AUTOMEDIA)) |
7565 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
7566 IFF_ALLMULTI));
7567
7568 /*
7569 * Load in the correct multicast list now the flags have changed.
7570 */
7571
Patrick McHardyb6c40d62008-10-07 15:26:48 -07007572 if ((old_flags ^ flags) & IFF_MULTICAST)
7573 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07007574
Patrick McHardy4417da62007-06-27 01:28:10 -07007575 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576
7577 /*
7578 * Have we downed the interface. We handle IFF_UP ourselves
7579 * according to user attempts to set it, rather than blindly
7580 * setting it.
7581 */
7582
7583 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07007584 if ((old_flags ^ flags) & IFF_UP) {
7585 if (old_flags & IFF_UP)
7586 __dev_close(dev);
7587 else
Petr Machata40c900a2018-12-06 17:05:47 +00007588 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07007589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007592 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007593 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007594
Linus Torvalds1da177e2005-04-16 15:20:36 -07007595 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007596
7597 if (__dev_set_promiscuity(dev, inc, false) >= 0)
7598 if (dev->flags != old_flags)
7599 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600 }
7601
7602 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11007603 * is important. Some (broken) drivers set IFF_PROMISC, when
7604 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007605 */
7606 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007607 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
7608
Linus Torvalds1da177e2005-04-16 15:20:36 -07007609 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007610 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611 }
7612
Patrick McHardybd380812010-02-26 06:34:53 +00007613 return ret;
7614}
7615
Nicolas Dichtela528c212013-09-25 12:02:44 +02007616void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
7617 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00007618{
7619 unsigned int changes = dev->flags ^ old_flags;
7620
Nicolas Dichtela528c212013-09-25 12:02:44 +02007621 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007622 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007623
Patrick McHardybd380812010-02-26 06:34:53 +00007624 if (changes & IFF_UP) {
7625 if (dev->flags & IFF_UP)
7626 call_netdevice_notifiers(NETDEV_UP, dev);
7627 else
7628 call_netdevice_notifiers(NETDEV_DOWN, dev);
7629 }
7630
7631 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007632 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07007633 struct netdev_notifier_change_info change_info = {
7634 .info = {
7635 .dev = dev,
7636 },
7637 .flags_changed = changes,
7638 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007639
David Ahern51d0c0472017-10-04 17:48:45 -07007640 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00007641 }
Patrick McHardybd380812010-02-26 06:34:53 +00007642}
7643
7644/**
7645 * dev_change_flags - change device settings
7646 * @dev: device
7647 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00007648 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00007649 *
7650 * Change settings on device based state flags. The flags are
7651 * in the userspace exported format.
7652 */
Petr Machata567c5e12018-12-06 17:05:42 +00007653int dev_change_flags(struct net_device *dev, unsigned int flags,
7654 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00007655{
Eric Dumazetb536db92011-11-30 21:42:26 +00007656 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007657 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00007658
Petr Machata6d040322018-12-06 17:05:43 +00007659 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00007660 if (ret < 0)
7661 return ret;
7662
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02007663 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02007664 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007665 return ret;
7666}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007667EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007668
WANG Congf51048c2017-07-06 15:01:57 -07007669int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007670{
7671 const struct net_device_ops *ops = dev->netdev_ops;
7672
7673 if (ops->ndo_change_mtu)
7674 return ops->ndo_change_mtu(dev, new_mtu);
7675
7676 dev->mtu = new_mtu;
7677 return 0;
7678}
WANG Congf51048c2017-07-06 15:01:57 -07007679EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007680
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007681/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007682 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007683 * @dev: device
7684 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007685 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007686 *
7687 * Change the maximum transfer size of the network device.
7688 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007689int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
7690 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007691{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007692 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007693
7694 if (new_mtu == dev->mtu)
7695 return 0;
7696
Jarod Wilson61e84622016-10-07 22:04:33 -04007697 /* MTU must be positive, and in range */
7698 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007699 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700 return -EINVAL;
Jarod Wilson61e84622016-10-07 22:04:33 -04007701 }
7702
7703 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007704 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
Jarod Wilson61e84622016-10-07 22:04:33 -04007705 return -EINVAL;
7706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707
7708 if (!netif_device_present(dev))
7709 return -ENODEV;
7710
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01007711 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
7712 err = notifier_to_errno(err);
7713 if (err)
7714 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007715
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007716 orig_mtu = dev->mtu;
7717 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007718
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007719 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007720 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7721 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007722 err = notifier_to_errno(err);
7723 if (err) {
7724 /* setting mtu back and notifying everyone again,
7725 * so that they have a chance to revert changes.
7726 */
7727 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02007728 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
7729 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01007730 }
7731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007732 return err;
7733}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007734
7735int dev_set_mtu(struct net_device *dev, int new_mtu)
7736{
7737 struct netlink_ext_ack extack;
7738 int err;
7739
Li RongQinga6bcfc82018-08-03 15:45:21 +08007740 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007741 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08007742 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07007743 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
7744 return err;
7745}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007746EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007747
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007748/**
Cong Wang6a643dd2018-01-25 18:26:22 -08007749 * dev_change_tx_queue_len - Change TX queue length of a netdevice
7750 * @dev: device
7751 * @new_len: new tx queue length
7752 */
7753int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
7754{
7755 unsigned int orig_len = dev->tx_queue_len;
7756 int res;
7757
7758 if (new_len != (unsigned int)new_len)
7759 return -ERANGE;
7760
7761 if (new_len != orig_len) {
7762 dev->tx_queue_len = new_len;
7763 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
7764 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03007765 if (res)
7766 goto err_rollback;
7767 res = dev_qdisc_change_tx_queue_len(dev);
7768 if (res)
7769 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08007770 }
7771
7772 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03007773
7774err_rollback:
7775 netdev_err(dev, "refused to change device tx_queue_len\n");
7776 dev->tx_queue_len = orig_len;
7777 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08007778}
7779
7780/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007781 * dev_set_group - Change group this device belongs to
7782 * @dev: device
7783 * @new_group: group this device should belong to
7784 */
7785void dev_set_group(struct net_device *dev, int new_group)
7786{
7787 dev->group = new_group;
7788}
7789EXPORT_SYMBOL(dev_set_group);
7790
7791/**
Petr Machatad59cdf92018-12-13 11:54:35 +00007792 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
7793 * @dev: device
7794 * @addr: new address
7795 * @extack: netlink extended ack
7796 */
7797int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
7798 struct netlink_ext_ack *extack)
7799{
7800 struct netdev_notifier_pre_changeaddr_info info = {
7801 .info.dev = dev,
7802 .info.extack = extack,
7803 .dev_addr = addr,
7804 };
7805 int rc;
7806
7807 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
7808 return notifier_to_errno(rc);
7809}
7810EXPORT_SYMBOL(dev_pre_changeaddr_notify);
7811
7812/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007813 * dev_set_mac_address - Change Media Access Control Address
7814 * @dev: device
7815 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00007816 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007817 *
7818 * Change the hardware (MAC) address of the device
7819 */
Petr Machata3a37a962018-12-13 11:54:30 +00007820int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
7821 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007823 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824 int err;
7825
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007826 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007827 return -EOPNOTSUPP;
7828 if (sa->sa_family != dev->type)
7829 return -EINVAL;
7830 if (!netif_device_present(dev))
7831 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00007832 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
7833 if (err)
7834 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007835 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00007836 if (err)
7837 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00007838 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00007839 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007840 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00007841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007843EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007845/**
7846 * dev_change_carrier - Change device carrier
7847 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00007848 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00007849 *
7850 * Change device carrier
7851 */
7852int dev_change_carrier(struct net_device *dev, bool new_carrier)
7853{
7854 const struct net_device_ops *ops = dev->netdev_ops;
7855
7856 if (!ops->ndo_change_carrier)
7857 return -EOPNOTSUPP;
7858 if (!netif_device_present(dev))
7859 return -ENODEV;
7860 return ops->ndo_change_carrier(dev, new_carrier);
7861}
7862EXPORT_SYMBOL(dev_change_carrier);
7863
Linus Torvalds1da177e2005-04-16 15:20:36 -07007864/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02007865 * dev_get_phys_port_id - Get device physical port ID
7866 * @dev: device
7867 * @ppid: port ID
7868 *
7869 * Get device physical port ID
7870 */
7871int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01007872 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02007873{
7874 const struct net_device_ops *ops = dev->netdev_ops;
7875
7876 if (!ops->ndo_get_phys_port_id)
7877 return -EOPNOTSUPP;
7878 return ops->ndo_get_phys_port_id(dev, ppid);
7879}
7880EXPORT_SYMBOL(dev_get_phys_port_id);
7881
7882/**
David Aherndb24a902015-03-17 20:23:15 -06007883 * dev_get_phys_port_name - Get device physical port name
7884 * @dev: device
7885 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00007886 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06007887 *
7888 * Get device physical port name
7889 */
7890int dev_get_phys_port_name(struct net_device *dev,
7891 char *name, size_t len)
7892{
7893 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01007894 int err;
David Aherndb24a902015-03-17 20:23:15 -06007895
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01007896 if (ops->ndo_get_phys_port_name) {
7897 err = ops->ndo_get_phys_port_name(dev, name, len);
7898 if (err != -EOPNOTSUPP)
7899 return err;
7900 }
7901 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06007902}
7903EXPORT_SYMBOL(dev_get_phys_port_name);
7904
7905/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08007906 * dev_get_port_parent_id - Get the device's port parent identifier
7907 * @dev: network device
7908 * @ppid: pointer to a storage for the port's parent identifier
7909 * @recurse: allow/disallow recursion to lower devices
7910 *
7911 * Get the devices's port parent identifier
7912 */
7913int dev_get_port_parent_id(struct net_device *dev,
7914 struct netdev_phys_item_id *ppid,
7915 bool recurse)
7916{
7917 const struct net_device_ops *ops = dev->netdev_ops;
7918 struct netdev_phys_item_id first = { };
7919 struct net_device *lower_dev;
7920 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02007921 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08007922
Jiri Pirko7e1146e2019-04-03 14:24:17 +02007923 if (ops->ndo_get_port_parent_id) {
7924 err = ops->ndo_get_port_parent_id(dev, ppid);
7925 if (err != -EOPNOTSUPP)
7926 return err;
7927 }
7928
7929 err = devlink_compat_switch_id_get(dev, ppid);
7930 if (!err || err != -EOPNOTSUPP)
7931 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08007932
7933 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02007934 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08007935
7936 netdev_for_each_lower_dev(dev, lower_dev, iter) {
7937 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
7938 if (err)
7939 break;
7940 if (!first.id_len)
7941 first = *ppid;
7942 else if (memcmp(&first, ppid, sizeof(*ppid)))
7943 return -ENODATA;
7944 }
7945
7946 return err;
7947}
7948EXPORT_SYMBOL(dev_get_port_parent_id);
7949
7950/**
7951 * netdev_port_same_parent_id - Indicate if two network devices have
7952 * the same port parent identifier
7953 * @a: first network device
7954 * @b: second network device
7955 */
7956bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
7957{
7958 struct netdev_phys_item_id a_id = { };
7959 struct netdev_phys_item_id b_id = { };
7960
7961 if (dev_get_port_parent_id(a, &a_id, true) ||
7962 dev_get_port_parent_id(b, &b_id, true))
7963 return false;
7964
7965 return netdev_phys_item_id_same(&a_id, &b_id);
7966}
7967EXPORT_SYMBOL(netdev_port_same_parent_id);
7968
7969/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07007970 * dev_change_proto_down - update protocol port state information
7971 * @dev: device
7972 * @proto_down: new value
7973 *
7974 * This info can be used by switch drivers to set the phys state of the
7975 * port.
7976 */
7977int dev_change_proto_down(struct net_device *dev, bool proto_down)
7978{
7979 const struct net_device_ops *ops = dev->netdev_ops;
7980
7981 if (!ops->ndo_change_proto_down)
7982 return -EOPNOTSUPP;
7983 if (!netif_device_present(dev))
7984 return -ENODEV;
7985 return ops->ndo_change_proto_down(dev, proto_down);
7986}
7987EXPORT_SYMBOL(dev_change_proto_down);
7988
Andy Roulinb5899672019-02-22 18:06:36 +00007989/**
7990 * dev_change_proto_down_generic - generic implementation for
7991 * ndo_change_proto_down that sets carrier according to
7992 * proto_down.
7993 *
7994 * @dev: device
7995 * @proto_down: new value
7996 */
7997int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
7998{
7999 if (proto_down)
8000 netif_carrier_off(dev);
8001 else
8002 netif_carrier_on(dev);
8003 dev->proto_down = proto_down;
8004 return 0;
8005}
8006EXPORT_SYMBOL(dev_change_proto_down_generic);
8007
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008008u32 __dev_xdp_query(struct net_device *dev, bpf_op_t bpf_op,
8009 enum bpf_netdev_command cmd)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008010{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008011 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008012
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008013 if (!bpf_op)
8014 return 0;
Martin KaFai Lau58038692017-06-15 17:29:09 -07008015
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008016 memset(&xdp, 0, sizeof(xdp));
8017 xdp.command = cmd;
8018
8019 /* Query must always succeed. */
8020 WARN_ON(bpf_op(dev, &xdp) < 0 && cmd == XDP_QUERY_PROG);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008021
Jakub Kicinski6b867582018-07-11 20:36:39 -07008022 return xdp.prog_id;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008023}
8024
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008025static int dev_xdp_install(struct net_device *dev, bpf_op_t bpf_op,
Jakub Kicinski32d60272017-06-21 18:25:03 -07008026 struct netlink_ext_ack *extack, u32 flags,
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008027 struct bpf_prog *prog)
8028{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008029 struct netdev_bpf xdp;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008030
8031 memset(&xdp, 0, sizeof(xdp));
Jakub Kicinskiee5d0322017-06-21 18:25:04 -07008032 if (flags & XDP_FLAGS_HW_MODE)
8033 xdp.command = XDP_SETUP_PROG_HW;
8034 else
8035 xdp.command = XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008036 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07008037 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008038 xdp.prog = prog;
8039
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008040 return bpf_op(dev, &xdp);
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008041}
8042
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008043static void dev_xdp_uninstall(struct net_device *dev)
8044{
8045 struct netdev_bpf xdp;
8046 bpf_op_t ndo_bpf;
8047
8048 /* Remove generic XDP */
8049 WARN_ON(dev_xdp_install(dev, generic_xdp_install, NULL, 0, NULL));
8050
8051 /* Remove from the driver */
8052 ndo_bpf = dev->netdev_ops->ndo_bpf;
8053 if (!ndo_bpf)
8054 return;
8055
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008056 memset(&xdp, 0, sizeof(xdp));
8057 xdp.command = XDP_QUERY_PROG;
8058 WARN_ON(ndo_bpf(dev, &xdp));
8059 if (xdp.prog_id)
8060 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
8061 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008062
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008063 /* Remove HW offload */
8064 memset(&xdp, 0, sizeof(xdp));
8065 xdp.command = XDP_QUERY_PROG_HW;
8066 if (!ndo_bpf(dev, &xdp) && xdp.prog_id)
8067 WARN_ON(dev_xdp_install(dev, ndo_bpf, NULL, xdp.prog_flags,
8068 NULL));
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008069}
8070
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07008071/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07008072 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
8073 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07008074 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07008075 * @fd: new program fd or negative value to clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01008076 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07008077 *
8078 * Set or clear a bpf program for a device
8079 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07008080int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
8081 int fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07008082{
8083 const struct net_device_ops *ops = dev->netdev_ops;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008084 enum bpf_netdev_command query;
Brenden Blancoa7862b42016-07-19 12:16:48 -07008085 struct bpf_prog *prog = NULL;
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008086 bpf_op_t bpf_op, bpf_chk;
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008087 bool offload;
Brenden Blancoa7862b42016-07-19 12:16:48 -07008088 int err;
8089
Daniel Borkmann85de8572016-11-28 23:16:54 +01008090 ASSERT_RTNL();
8091
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008092 offload = flags & XDP_FLAGS_HW_MODE;
8093 query = offload ? XDP_QUERY_PROG_HW : XDP_QUERY_PROG;
Jakub Kicinskia25717d2018-07-11 20:36:41 -07008094
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008095 bpf_op = bpf_chk = ops->ndo_bpf;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008096 if (!bpf_op && (flags & (XDP_FLAGS_DRV_MODE | XDP_FLAGS_HW_MODE))) {
8097 NL_SET_ERR_MSG(extack, "underlying driver does not support XDP in native mode");
Daniel Borkmann0489df92017-05-12 01:04:45 +02008098 return -EOPNOTSUPP;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008099 }
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008100 if (!bpf_op || (flags & XDP_FLAGS_SKB_MODE))
8101 bpf_op = generic_xdp_install;
8102 if (bpf_op == bpf_chk)
8103 bpf_chk = generic_xdp_install;
David S. Millerb5cdae32017-04-18 15:36:58 -04008104
Brenden Blancoa7862b42016-07-19 12:16:48 -07008105 if (fd >= 0) {
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008106 if (!offload && __dev_xdp_query(dev, bpf_chk, XDP_QUERY_PROG)) {
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008107 NL_SET_ERR_MSG(extack, "native and generic XDP can't be active at the same time");
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008108 return -EEXIST;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008109 }
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008110 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) &&
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008111 __dev_xdp_query(dev, bpf_op, query)) {
8112 NL_SET_ERR_MSG(extack, "XDP program already attached");
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008113 return -EBUSY;
Maciej Fijalkowski01dde202019-02-01 22:42:27 +01008114 }
Daniel Borkmann85de8572016-11-28 23:16:54 +01008115
Jakub Kicinski288b3de2017-11-20 15:21:54 -08008116 prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
8117 bpf_op == ops->ndo_bpf);
Brenden Blancoa7862b42016-07-19 12:16:48 -07008118 if (IS_ERR(prog))
8119 return PTR_ERR(prog);
Jakub Kicinski441a3302017-11-20 15:21:55 -08008120
Jakub Kicinski9ee963d2019-02-05 20:03:21 -08008121 if (!offload && bpf_prog_is_dev_bound(prog->aux)) {
Jakub Kicinski441a3302017-11-20 15:21:55 -08008122 NL_SET_ERR_MSG(extack, "using device-bound program without HW_MODE flag is not supported");
8123 bpf_prog_put(prog);
8124 return -EINVAL;
8125 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07008126 }
8127
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008128 err = dev_xdp_install(dev, bpf_op, extack, flags, prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07008129 if (err < 0 && prog)
8130 bpf_prog_put(prog);
8131
8132 return err;
8133}
Brenden Blancoa7862b42016-07-19 12:16:48 -07008134
8135/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008136 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07008137 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07008138 *
8139 * Returns a suitable unique value for a new device interface
8140 * number. The caller must hold the rtnl semaphore or the
8141 * dev_base_lock to be sure it remains unique.
8142 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07008143static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008144{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00008145 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11008146
Linus Torvalds1da177e2005-04-16 15:20:36 -07008147 for (;;) {
8148 if (++ifindex <= 0)
8149 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008150 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00008151 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008152 }
8153}
8154
Linus Torvalds1da177e2005-04-16 15:20:36 -07008155/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08008156static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07008157DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008158
Stephen Hemminger6f05f622007-03-08 20:46:03 -08008159static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008160{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008161 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008162 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163}
8164
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008165static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008166{
Krishna Kumare93737b2009-12-08 22:26:02 +00008167 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008168 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008169
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008170 BUG_ON(dev_boot_phase);
8171 ASSERT_RTNL();
8172
Krishna Kumare93737b2009-12-08 22:26:02 +00008173 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008174 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00008175 * for initialization unwind. Remove those
8176 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008177 */
8178 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008179 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
8180 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008181
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008182 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00008183 list_del(&dev->unreg_list);
8184 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008185 }
Eric Dumazet449f4542011-05-19 12:24:16 +00008186 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008187 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00008188 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008189
Octavian Purdila44345722010-12-13 12:44:07 +00008190 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07008191 list_for_each_entry(dev, head, unreg_list)
8192 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04008193 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008194
Octavian Purdila44345722010-12-13 12:44:07 +00008195 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008196 /* And unlink it from device chain. */
8197 unlist_netdevice(dev);
8198
8199 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008200 }
Eric Dumazet41852492016-08-26 12:50:39 -07008201 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008202
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008203 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008204
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008205 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008206 struct sk_buff *skb = NULL;
8207
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008208 /* Shutdown queueing discipline. */
8209 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008210
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008211 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008212
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008213 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11008214 * this device. They should clean all the things.
8215 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008216 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
8217
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008218 if (!dev->rtnl_link_ops ||
8219 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04008220 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01008221 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008222
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008223 /*
8224 * Flush the unicast and multicast chains
8225 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008226 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00008227 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008228
8229 if (dev->netdev_ops->ndo_uninit)
8230 dev->netdev_ops->ndo_uninit(dev);
8231
Mahesh Bandewar395eea62014-12-03 13:46:24 -08008232 if (skb)
8233 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07008234
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008235 /* Notifier chain MUST detach us all upper devices. */
8236 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07008237 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008238
8239 /* Remove entries from kobject tree */
8240 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00008241#ifdef CONFIG_XPS
8242 /* Remove XPS queueing entries */
8243 netif_reset_xps_queues_gt(dev, 0);
8244#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008245 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008246
Eric W. Biederman850a5452011-10-13 22:25:23 +00008247 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008248
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00008249 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008250 dev_put(dev);
8251}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008252
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008253static void rollback_registered(struct net_device *dev)
8254{
8255 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008256
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008257 list_add(&dev->unreg_list, &single);
8258 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00008259 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008260}
8261
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008262static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
8263 struct net_device *upper, netdev_features_t features)
8264{
8265 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8266 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008267 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008268
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01008269 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008270 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008271 if (!(upper->wanted_features & feature)
8272 && (features & feature)) {
8273 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
8274 &feature, upper->name);
8275 features &= ~feature;
8276 }
8277 }
8278
8279 return features;
8280}
8281
8282static void netdev_sync_lower_features(struct net_device *upper,
8283 struct net_device *lower, netdev_features_t features)
8284{
8285 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
8286 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008287 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008288
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01008289 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05008290 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008291 if (!(features & feature) && (lower->features & feature)) {
8292 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
8293 &feature, lower->name);
8294 lower->wanted_features &= ~feature;
8295 netdev_update_features(lower);
8296
8297 if (unlikely(lower->features & feature))
8298 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
8299 &feature, lower->name);
8300 }
8301 }
8302}
8303
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008304static netdev_features_t netdev_fix_features(struct net_device *dev,
8305 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07008306{
Michał Mirosław57422dc2011-01-22 12:14:12 +00008307 /* Fix illegal checksum combinations */
8308 if ((features & NETIF_F_HW_CSUM) &&
8309 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008310 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00008311 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
8312 }
8313
Herbert Xub63365a2008-10-23 01:11:29 -07008314 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008315 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008316 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00008317 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07008318 }
8319
Pravin B Shelarec5f0612013-03-07 09:28:01 +00008320 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
8321 !(features & NETIF_F_IP_CSUM)) {
8322 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
8323 features &= ~NETIF_F_TSO;
8324 features &= ~NETIF_F_TSO_ECN;
8325 }
8326
8327 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
8328 !(features & NETIF_F_IPV6_CSUM)) {
8329 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
8330 features &= ~NETIF_F_TSO6;
8331 }
8332
Alexander Duyckb1dc4972016-05-02 09:38:24 -07008333 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
8334 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
8335 features &= ~NETIF_F_TSO_MANGLEID;
8336
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00008337 /* TSO ECN requires that TSO is present as well. */
8338 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
8339 features &= ~NETIF_F_TSO_ECN;
8340
Michał Mirosław212b5732011-02-15 16:59:16 +00008341 /* Software GSO depends on SG. */
8342 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04008343 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00008344 features &= ~NETIF_F_GSO;
8345 }
8346
Alexander Duyck802ab552016-04-10 21:45:03 -04008347 /* GSO partial features require GSO partial be set */
8348 if ((features & dev->gso_partial_features) &&
8349 !(features & NETIF_F_GSO_PARTIAL)) {
8350 netdev_dbg(dev,
8351 "Dropping partially supported GSO features since no GSO partial.\n");
8352 features &= ~dev->gso_partial_features;
8353 }
8354
Michael Chanfb1f5f72017-12-16 03:09:40 -05008355 if (!(features & NETIF_F_RXCSUM)) {
8356 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
8357 * successfully merged by hardware must also have the
8358 * checksum verified by hardware. If the user does not
8359 * want to enable RXCSUM, logically, we should disable GRO_HW.
8360 */
8361 if (features & NETIF_F_GRO_HW) {
8362 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
8363 features &= ~NETIF_F_GRO_HW;
8364 }
8365 }
8366
Gal Pressmande8d5ab2018-03-12 11:48:49 +02008367 /* LRO/HW-GRO features cannot be combined with RX-FCS */
8368 if (features & NETIF_F_RXFCS) {
8369 if (features & NETIF_F_LRO) {
8370 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
8371 features &= ~NETIF_F_LRO;
8372 }
8373
8374 if (features & NETIF_F_GRO_HW) {
8375 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
8376 features &= ~NETIF_F_GRO_HW;
8377 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02008378 }
8379
Herbert Xub63365a2008-10-23 01:11:29 -07008380 return features;
8381}
Herbert Xub63365a2008-10-23 01:11:29 -07008382
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008383int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00008384{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008385 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008386 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008387 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05008388 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00008389
Michał Mirosław87267482011-04-12 09:56:38 +00008390 ASSERT_RTNL();
8391
Michał Mirosław5455c692011-02-15 16:59:17 +00008392 features = netdev_get_wanted_features(dev);
8393
8394 if (dev->netdev_ops->ndo_fix_features)
8395 features = dev->netdev_ops->ndo_fix_features(dev, features);
8396
8397 /* driver might be less strict about feature dependencies */
8398 features = netdev_fix_features(dev, features);
8399
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008400 /* some features can't be enabled if they're off an an upper device */
8401 netdev_for_each_upper_dev_rcu(dev, upper, iter)
8402 features = netdev_sync_upper_features(dev, upper, features);
8403
Michał Mirosław5455c692011-02-15 16:59:17 +00008404 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05008405 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00008406
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008407 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
8408 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00008409
8410 if (dev->netdev_ops->ndo_set_features)
8411 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01008412 else
8413 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00008414
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008415 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00008416 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008417 "set_features() failed (%d); wanted %pNF, left %pNF\n",
8418 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01008419 /* return non-0 since some features might have changed and
8420 * it's better to fire a spurious notification than miss it
8421 */
8422 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008423 }
8424
Jarod Wilsone7868a82015-11-03 23:09:32 -05008425sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05008426 /* some features must be disabled on lower devices when disabled
8427 * on an upper device (think: bonding master or bridge)
8428 */
8429 netdev_for_each_lower_dev(dev, lower, iter)
8430 netdev_sync_lower_features(dev, lower, features);
8431
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008432 if (!err) {
8433 netdev_features_t diff = features ^ dev->features;
8434
8435 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
8436 /* udp_tunnel_{get,drop}_rx_info both need
8437 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
8438 * device, or they won't do anything.
8439 * Thus we need to update dev->features
8440 * *before* calling udp_tunnel_get_rx_info,
8441 * but *after* calling udp_tunnel_drop_rx_info.
8442 */
8443 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
8444 dev->features = features;
8445 udp_tunnel_get_rx_info(dev);
8446 } else {
8447 udp_tunnel_drop_rx_info(dev);
8448 }
8449 }
8450
Gal Pressman9daae9b2018-03-28 17:46:54 +03008451 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
8452 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
8453 dev->features = features;
8454 err |= vlan_get_rx_ctag_filter_info(dev);
8455 } else {
8456 vlan_drop_rx_ctag_filter_info(dev);
8457 }
8458 }
8459
8460 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
8461 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
8462 dev->features = features;
8463 err |= vlan_get_rx_stag_filter_info(dev);
8464 } else {
8465 vlan_drop_rx_stag_filter_info(dev);
8466 }
8467 }
8468
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008469 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02008470 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008471
Jarod Wilsone7868a82015-11-03 23:09:32 -05008472 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008473}
8474
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008475/**
8476 * netdev_update_features - recalculate device features
8477 * @dev: the device to check
8478 *
8479 * Recalculate dev->features set and send notifications if it
8480 * has changed. Should be called after driver or hardware dependent
8481 * conditions might have changed that influence the features.
8482 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008483void netdev_update_features(struct net_device *dev)
8484{
8485 if (__netdev_update_features(dev))
8486 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00008487}
8488EXPORT_SYMBOL(netdev_update_features);
8489
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00008491 * netdev_change_features - recalculate device features
8492 * @dev: the device to check
8493 *
8494 * Recalculate dev->features set and send notifications even
8495 * if they have not changed. Should be called instead of
8496 * netdev_update_features() if also dev->vlan_features might
8497 * have changed to allow the changes to be propagated to stacked
8498 * VLAN devices.
8499 */
8500void netdev_change_features(struct net_device *dev)
8501{
8502 __netdev_update_features(dev);
8503 netdev_features_change(dev);
8504}
8505EXPORT_SYMBOL(netdev_change_features);
8506
8507/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008508 * netif_stacked_transfer_operstate - transfer operstate
8509 * @rootdev: the root or lower level device to transfer state from
8510 * @dev: the device to transfer operstate to
8511 *
8512 * Transfer operational state from root to device. This is normally
8513 * called when a stacking relationship exists between the root
8514 * device and the device(a leaf device).
8515 */
8516void netif_stacked_transfer_operstate(const struct net_device *rootdev,
8517 struct net_device *dev)
8518{
8519 if (rootdev->operstate == IF_OPER_DORMANT)
8520 netif_dormant_on(dev);
8521 else
8522 netif_dormant_off(dev);
8523
Zhang Shengju0575c862017-04-26 17:49:38 +08008524 if (netif_carrier_ok(rootdev))
8525 netif_carrier_on(dev);
8526 else
8527 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008528}
8529EXPORT_SYMBOL(netif_stacked_transfer_operstate);
8530
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008531static int netif_alloc_rx_queues(struct net_device *dev)
8532{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008533 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00008534 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05308535 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008536 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008537
Tom Herbertbd25fa72010-10-18 18:00:16 +00008538 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008539
Michal Hockodcda9b02017-07-12 14:36:45 -07008540 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008541 if (!rx)
8542 return -ENOMEM;
8543
Tom Herbertbd25fa72010-10-18 18:00:16 +00008544 dev->_rx = rx;
8545
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008546 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00008547 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008548
8549 /* XDP RX-queue setup */
8550 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
8551 if (err < 0)
8552 goto err_rxq_info;
8553 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008554 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008555
8556err_rxq_info:
8557 /* Rollback successful reg's and free other resources */
8558 while (i--)
8559 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08008560 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008561 dev->_rx = NULL;
8562 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008563}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008564
8565static void netif_free_rx_queues(struct net_device *dev)
8566{
8567 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008568
8569 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
8570 if (!dev->_rx)
8571 return;
8572
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008573 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08008574 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
8575
8576 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01008577}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00008578
Changli Gaoaa942102010-12-04 02:31:41 +00008579static void netdev_init_one_queue(struct net_device *dev,
8580 struct netdev_queue *queue, void *_unused)
8581{
8582 /* Initialize queue lock */
8583 spin_lock_init(&queue->_xmit_lock);
8584 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
8585 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00008586 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00008587 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00008588#ifdef CONFIG_BQL
8589 dql_init(&queue->dql, HZ);
8590#endif
Changli Gaoaa942102010-12-04 02:31:41 +00008591}
8592
Eric Dumazet60877a32013-06-20 01:15:51 -07008593static void netif_free_tx_queues(struct net_device *dev)
8594{
WANG Cong4cb28972014-06-02 15:55:22 -07008595 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07008596}
8597
Tom Herberte6484932010-10-18 18:04:39 +00008598static int netif_alloc_netdev_queues(struct net_device *dev)
8599{
8600 unsigned int count = dev->num_tx_queues;
8601 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07008602 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00008603
Eric Dumazetd3397272015-07-06 17:13:26 +02008604 if (count < 1 || count > 0xffff)
8605 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00008606
Michal Hockodcda9b02017-07-12 14:36:45 -07008607 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07008608 if (!tx)
8609 return -ENOMEM;
8610
Tom Herberte6484932010-10-18 18:04:39 +00008611 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00008612
Tom Herberte6484932010-10-18 18:04:39 +00008613 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
8614 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00008615
8616 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00008617}
8618
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008619void netif_tx_stop_all_queues(struct net_device *dev)
8620{
8621 unsigned int i;
8622
8623 for (i = 0; i < dev->num_tx_queues; i++) {
8624 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11008625
Denys Vlasenkoa2029242015-05-11 21:17:53 +02008626 netif_tx_stop_queue(txq);
8627 }
8628}
8629EXPORT_SYMBOL(netif_tx_stop_all_queues);
8630
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08008631/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632 * register_netdevice - register a network device
8633 * @dev: device to register
8634 *
8635 * Take a completed network device structure and add it to the kernel
8636 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8637 * chain. 0 is returned on success. A negative errno code is returned
8638 * on a failure to set up the device, or if the name is a duplicate.
8639 *
8640 * Callers must hold the rtnl semaphore. You may want
8641 * register_netdev() instead of this.
8642 *
8643 * BUGS:
8644 * The locking appears insufficient to guarantee two parallel registers
8645 * will not get the same name.
8646 */
8647
8648int register_netdevice(struct net_device *dev)
8649{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008650 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008651 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008652
Florian Fainellie283de32018-04-30 14:20:05 -07008653 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
8654 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008655 BUG_ON(dev_boot_phase);
8656 ASSERT_RTNL();
8657
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008658 might_sleep();
8659
Linus Torvalds1da177e2005-04-16 15:20:36 -07008660 /* When net_device's are persistent, this will be fatal. */
8661 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008662 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663
David S. Millerf1f28aa2008-07-15 00:08:33 -07008664 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07008665 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008666
Gao feng828de4f2012-09-13 20:58:27 +00008667 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00008668 if (ret < 0)
8669 goto out;
8670
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008672 if (dev->netdev_ops->ndo_init) {
8673 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008674 if (ret) {
8675 if (ret > 0)
8676 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08008677 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008678 }
8679 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008680
Patrick McHardyf6469682013-04-19 02:04:27 +00008681 if (((dev->hw_features | dev->features) &
8682 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00008683 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
8684 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
8685 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
8686 ret = -EINVAL;
8687 goto err_uninit;
8688 }
8689
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00008690 ret = -EBUSY;
8691 if (!dev->ifindex)
8692 dev->ifindex = dev_new_index(net);
8693 else if (__dev_get_by_index(net, dev->ifindex))
8694 goto err_uninit;
8695
Michał Mirosław5455c692011-02-15 16:59:17 +00008696 /* Transfer changeable features to wanted_features and enable
8697 * software offloads (GSO and GRO).
8698 */
8699 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00008700 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02008701
8702 if (dev->netdev_ops->ndo_udp_tunnel_add) {
8703 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8704 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
8705 }
8706
Michał Mirosław14d12322011-02-22 16:52:28 +00008707 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008708
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008709 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00008710 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008711
Alexander Duyck7f348a62016-04-20 16:51:00 -04008712 /* If IPv4 TCP segmentation offload is supported we should also
8713 * allow the device to enable segmenting the frame with the option
8714 * of ignoring a static IP ID value. This doesn't enable the
8715 * feature itself but allows the user to enable it later.
8716 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04008717 if (dev->hw_features & NETIF_F_TSO)
8718 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04008719 if (dev->vlan_features & NETIF_F_TSO)
8720 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
8721 if (dev->mpls_features & NETIF_F_TSO)
8722 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
8723 if (dev->hw_enc_features & NETIF_F_TSO)
8724 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07008725
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008726 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00008727 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07008728 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00008729
Pravin B Shelaree579672013-03-07 09:28:08 +00008730 /* Make NETIF_F_SG inheritable to tunnel devices.
8731 */
Alexander Duyck802ab552016-04-10 21:45:03 -04008732 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00008733
Simon Horman0d89d202013-05-23 21:02:52 +00008734 /* Make NETIF_F_SG inheritable to MPLS.
8735 */
8736 dev->mpls_features |= NETIF_F_SG;
8737
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00008738 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
8739 ret = notifier_to_errno(ret);
8740 if (ret)
8741 goto err_uninit;
8742
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008743 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008744 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008745 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008746 dev->reg_state = NETREG_REGISTERED;
8747
Michał Mirosław6cb6a272011-04-02 22:48:47 -07008748 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00008749
Linus Torvalds1da177e2005-04-16 15:20:36 -07008750 /*
8751 * Default initial state at registry is that the
8752 * device is present.
8753 */
8754
8755 set_bit(__LINK_STATE_PRESENT, &dev->state);
8756
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01008757 linkwatch_init_dev(dev);
8758
Linus Torvalds1da177e2005-04-16 15:20:36 -07008759 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008760 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008761 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008762 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008763
Jiri Pirko948b3372013-01-08 01:38:25 +00008764 /* If the device has permanent device address, driver should
8765 * set dev_addr and also addr_assign_type should be set to
8766 * NET_ADDR_PERM (default value).
8767 */
8768 if (dev->addr_assign_type == NET_ADDR_PERM)
8769 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
8770
Linus Torvalds1da177e2005-04-16 15:20:36 -07008771 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008772 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07008773 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07008774 if (ret) {
8775 rollback_registered(dev);
8776 dev->reg_state = NETREG_UNREGISTERED;
8777 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008778 /*
8779 * Prevent userspace races by waiting until the network
8780 * device is fully setup before sending notifications.
8781 */
Patrick McHardya2835762010-02-26 06:34:51 +00008782 if (!dev->rtnl_link_ops ||
8783 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008784 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008785
8786out:
8787 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008788
8789err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008790 if (dev->netdev_ops->ndo_uninit)
8791 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -04008792 if (dev->priv_destructor)
8793 dev->priv_destructor(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07008794 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008795}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008796EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008797
8798/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008799 * init_dummy_netdev - init a dummy network device for NAPI
8800 * @dev: device to init
8801 *
8802 * This takes a network device structure and initialize the minimum
8803 * amount of fields so it can be used to schedule NAPI polls without
8804 * registering a full blown interface. This is to be used by drivers
8805 * that need to tie several hardware interfaces to a single NAPI
8806 * poll scheduler due to HW limitations.
8807 */
8808int init_dummy_netdev(struct net_device *dev)
8809{
8810 /* Clear everything. Note we don't initialize spinlocks
8811 * are they aren't supposed to be taken by any of the
8812 * NAPI code and this dummy netdev is supposed to be
8813 * only ever used for NAPI polls
8814 */
8815 memset(dev, 0, sizeof(struct net_device));
8816
8817 /* make sure we BUG if trying to hit standard
8818 * register/unregister code path
8819 */
8820 dev->reg_state = NETREG_DUMMY;
8821
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008822 /* NAPI wants this */
8823 INIT_LIST_HEAD(&dev->napi_list);
8824
8825 /* a dummy interface is started by default */
8826 set_bit(__LINK_STATE_PRESENT, &dev->state);
8827 set_bit(__LINK_STATE_START, &dev->state);
8828
Josh Elsasser35edfdc2019-01-26 14:38:33 -08008829 /* napi_busy_loop stats accounting wants this */
8830 dev_net_set(dev, &init_net);
8831
Eric Dumazet29b44332010-10-11 10:22:12 +00008832 /* Note : We dont allocate pcpu_refcnt for dummy devices,
8833 * because users of this 'device' dont need to change
8834 * its refcount.
8835 */
8836
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08008837 return 0;
8838}
8839EXPORT_SYMBOL_GPL(init_dummy_netdev);
8840
8841
8842/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008843 * register_netdev - register a network device
8844 * @dev: device to register
8845 *
8846 * Take a completed network device structure and add it to the kernel
8847 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
8848 * chain. 0 is returned on success. A negative errno code is returned
8849 * on a failure to set up the device, or if the name is a duplicate.
8850 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07008851 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07008852 * and expands the device name if you passed a format string to
8853 * alloc_netdev.
8854 */
8855int register_netdev(struct net_device *dev)
8856{
8857 int err;
8858
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +03008859 if (rtnl_lock_killable())
8860 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008861 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008862 rtnl_unlock();
8863 return err;
8864}
8865EXPORT_SYMBOL(register_netdev);
8866
Eric Dumazet29b44332010-10-11 10:22:12 +00008867int netdev_refcnt_read(const struct net_device *dev)
8868{
8869 int i, refcnt = 0;
8870
8871 for_each_possible_cpu(i)
8872 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
8873 return refcnt;
8874}
8875EXPORT_SYMBOL(netdev_refcnt_read);
8876
Ben Hutchings2c530402012-07-10 10:55:09 +00008877/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008878 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00008879 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008880 *
8881 * This is called when unregistering network devices.
8882 *
8883 * Any protocol or device that holds a reference should register
8884 * for netdevice notification, and cleanup and put back the
8885 * reference if they receive an UNREGISTER event.
8886 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09008887 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008888 */
8889static void netdev_wait_allrefs(struct net_device *dev)
8890{
8891 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00008892 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008893
Eric Dumazete014deb2009-11-17 05:59:21 +00008894 linkwatch_forget_dev(dev);
8895
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00008897 refcnt = netdev_refcnt_read(dev);
8898
8899 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07008900 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008901 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008902
8903 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07008904 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008905
Eric Dumazet748e2d92012-08-22 21:50:59 +00008906 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008907 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00008908 rtnl_lock();
8909
Linus Torvalds1da177e2005-04-16 15:20:36 -07008910 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
8911 &dev->state)) {
8912 /* We must not have linkwatch events
8913 * pending on unregister. If this
8914 * happens, we simply run the queue
8915 * unscheduled, resulting in a noop
8916 * for this device.
8917 */
8918 linkwatch_run_queue();
8919 }
8920
Stephen Hemminger6756ae42006-03-20 22:23:58 -08008921 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008922
8923 rebroadcast_time = jiffies;
8924 }
8925
8926 msleep(250);
8927
Eric Dumazet29b44332010-10-11 10:22:12 +00008928 refcnt = netdev_refcnt_read(dev);
8929
Eric Dumazetd7c04b02019-05-16 08:09:57 -07008930 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008931 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
8932 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008933 warning_time = jiffies;
8934 }
8935 }
8936}
8937
8938/* The sequence is:
8939 *
8940 * rtnl_lock();
8941 * ...
8942 * register_netdevice(x1);
8943 * register_netdevice(x2);
8944 * ...
8945 * unregister_netdevice(y1);
8946 * unregister_netdevice(y2);
8947 * ...
8948 * rtnl_unlock();
8949 * free_netdev(y1);
8950 * free_netdev(y2);
8951 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07008952 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07008953 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008954 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07008955 * without deadlocking with linkwatch via keventd.
8956 * 2) Since we run with the RTNL semaphore not held, we can sleep
8957 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07008958 *
8959 * We must not return until all unregister events added during
8960 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008961 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008962void netdev_run_todo(void)
8963{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008964 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965
Linus Torvalds1da177e2005-04-16 15:20:36 -07008966 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008967 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07008968
8969 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07008970
Eric Dumazet0115e8e2012-08-22 17:19:46 +00008971
8972 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00008973 if (!list_empty(&list))
8974 rcu_barrier();
8975
Linus Torvalds1da177e2005-04-16 15:20:36 -07008976 while (!list_empty(&list)) {
8977 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00008978 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008979 list_del(&dev->todo_list);
8980
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008981 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008982 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07008983 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008984 dump_stack();
8985 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008986 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008987
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07008988 dev->reg_state = NETREG_UNREGISTERED;
8989
8990 netdev_wait_allrefs(dev);
8991
8992 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00008993 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08008994 BUG_ON(!list_empty(&dev->ptype_all));
8995 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00008996 WARN_ON(rcu_access_pointer(dev->ip_ptr));
8997 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -08008998#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -07008999 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -08009000#endif
David S. Millercf124db2017-05-08 12:52:56 -04009001 if (dev->priv_destructor)
9002 dev->priv_destructor(dev);
9003 if (dev->needs_free_netdev)
9004 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07009005
Eric W. Biederman50624c92013-09-23 21:19:49 -07009006 /* Report a network device has been unregistered */
9007 rtnl_lock();
9008 dev_net(dev)->dev_unreg_count--;
9009 __rtnl_unlock();
9010 wake_up(&netdev_unregistering_wq);
9011
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07009012 /* Free network device */
9013 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009015}
9016
Jarod Wilson92566452016-02-01 18:51:04 -05009017/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
9018 * all the same fields in the same order as net_device_stats, with only
9019 * the type differing, but rtnl_link_stats64 may have additional fields
9020 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00009021 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00009022void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
9023 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00009024{
9025#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05009026 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +02009027 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05009028 /* zero out counters that only exist in rtnl_link_stats64 */
9029 memset((char *)stats64 + sizeof(*netdev_stats), 0,
9030 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00009031#else
Jarod Wilson92566452016-02-01 18:51:04 -05009032 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00009033 const unsigned long *src = (const unsigned long *)netdev_stats;
9034 u64 *dst = (u64 *)stats64;
9035
Jarod Wilson92566452016-02-01 18:51:04 -05009036 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00009037 for (i = 0; i < n; i++)
9038 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05009039 /* zero out counters that only exist in rtnl_link_stats64 */
9040 memset((char *)stats64 + n * sizeof(u64), 0,
9041 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00009042#endif
9043}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00009044EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00009045
Eric Dumazetd83345a2009-11-16 03:36:51 +00009046/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009047 * dev_get_stats - get network device statistics
9048 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07009049 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009050 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00009051 * Get network statistics from device. Return @storage.
9052 * The device driver may provide its own method by setting
9053 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
9054 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009055 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00009056struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
9057 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00009058{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009059 const struct net_device_ops *ops = dev->netdev_ops;
9060
Eric Dumazet28172732010-07-07 14:58:56 -07009061 if (ops->ndo_get_stats64) {
9062 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00009063 ops->ndo_get_stats64(dev, storage);
9064 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00009065 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00009066 } else {
9067 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07009068 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -07009069 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
9070 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
9071 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07009072 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07009073}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08009074EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07009075
Eric Dumazet24824a02010-10-02 06:11:55 +00009076struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07009077{
Eric Dumazet24824a02010-10-02 06:11:55 +00009078 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07009079
Eric Dumazet24824a02010-10-02 06:11:55 +00009080#ifdef CONFIG_NET_CLS_ACT
9081 if (queue)
9082 return queue;
9083 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
9084 if (!queue)
9085 return NULL;
9086 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08009087 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00009088 queue->qdisc_sleeping = &noop_qdisc;
9089 rcu_assign_pointer(dev->ingress_queue, queue);
9090#endif
9091 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07009092}
9093
Eric Dumazet2c60db02012-09-16 09:17:26 +00009094static const struct ethtool_ops default_ethtool_ops;
9095
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00009096void netdev_set_default_ethtool_ops(struct net_device *dev,
9097 const struct ethtool_ops *ops)
9098{
9099 if (dev->ethtool_ops == &default_ethtool_ops)
9100 dev->ethtool_ops = ops;
9101}
9102EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
9103
Eric Dumazet74d332c2013-10-30 13:10:44 -07009104void netdev_freemem(struct net_device *dev)
9105{
9106 char *addr = (char *)dev - dev->padded;
9107
WANG Cong4cb28972014-06-02 15:55:22 -07009108 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07009109}
9110
Linus Torvalds1da177e2005-04-16 15:20:36 -07009111/**
tcharding722c9a02017-02-09 17:56:04 +11009112 * alloc_netdev_mqs - allocate network device
9113 * @sizeof_priv: size of private data to allocate space for
9114 * @name: device name format string
9115 * @name_assign_type: origin of device name
9116 * @setup: callback to initialize device
9117 * @txqs: the number of TX subqueues to allocate
9118 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07009119 *
tcharding722c9a02017-02-09 17:56:04 +11009120 * Allocates a struct net_device with private data area for driver use
9121 * and performs basic initialization. Also allocates subqueue structs
9122 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009123 */
Tom Herbert36909ea2011-01-09 19:36:31 +00009124struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02009125 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00009126 void (*setup)(struct net_device *),
9127 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009129 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +03009130 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009131 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009132
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07009133 BUG_ON(strlen(name) >= sizeof(dev->name));
9134
Tom Herbert36909ea2011-01-09 19:36:31 +00009135 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009136 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00009137 return NULL;
9138 }
9139
Tom Herbert36909ea2011-01-09 19:36:31 +00009140 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009141 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00009142 return NULL;
9143 }
Tom Herbert36909ea2011-01-09 19:36:31 +00009144
David S. Millerfd2ea0a2008-07-17 01:56:23 -07009145 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07009146 if (sizeof_priv) {
9147 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009148 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07009149 alloc_size += sizeof_priv;
9150 }
9151 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009152 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009153
Michal Hockodcda9b02017-07-12 14:36:45 -07009154 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +00009155 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009156 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009157
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00009158 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009159 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009160
Eric Dumazet29b44332010-10-11 10:22:12 +00009161 dev->pcpu_refcnt = alloc_percpu(int);
9162 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07009163 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009164
Linus Torvalds1da177e2005-04-16 15:20:36 -07009165 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00009166 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009167
Jiri Pirko22bedad32010-04-01 21:22:57 +00009168 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009169 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00009170
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009171 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009172
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07009173 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00009174 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009175
Herbert Xud565b0a2008-12-15 23:38:52 -08009176 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009177 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009178 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00009179 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02009180 INIT_LIST_HEAD(&dev->adj_list.upper);
9181 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08009182 INIT_LIST_HEAD(&dev->ptype_all);
9183 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02009184#ifdef CONFIG_NET_SCHED
9185 hash_init(dev->qdisc_hash);
9186#endif
Eric Dumazet02875872014-10-05 18:38:35 -07009187 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009188 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009189
Phil Suttera8131042016-02-17 15:37:43 +01009190 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02009191 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +01009192 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +01009193 }
Phil Sutter906470c2015-08-18 10:30:48 +02009194
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009195 dev->num_tx_queues = txqs;
9196 dev->real_num_tx_queues = txqs;
9197 if (netif_alloc_netdev_queues(dev))
9198 goto free_all;
9199
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009200 dev->num_rx_queues = rxqs;
9201 dev->real_num_rx_queues = rxqs;
9202 if (netif_alloc_rx_queues(dev))
9203 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009204
Linus Torvalds1da177e2005-04-16 15:20:36 -07009205 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02009206 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00009207 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00009208 if (!dev->ethtool_ops)
9209 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02009210
9211 nf_hook_ingress_init(dev);
9212
Linus Torvalds1da177e2005-04-16 15:20:36 -07009213 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009214
David S. Miller8d3bdbd2011-02-08 15:02:50 -08009215free_all:
9216 free_netdev(dev);
9217 return NULL;
9218
Eric Dumazet29b44332010-10-11 10:22:12 +00009219free_pcpu:
9220 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07009221free_dev:
9222 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00009223 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009224}
Tom Herbert36909ea2011-01-09 19:36:31 +00009225EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009226
9227/**
tcharding722c9a02017-02-09 17:56:04 +11009228 * free_netdev - free network device
9229 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -07009230 *
tcharding722c9a02017-02-09 17:56:04 +11009231 * This function does the last stage of destroying an allocated device
9232 * interface. The reference to the device object is released. If this
9233 * is the last reference then it will be freed.Must be called in process
9234 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009235 */
9236void free_netdev(struct net_device *dev)
9237{
Herbert Xud565b0a2008-12-15 23:38:52 -08009238 struct napi_struct *p, *n;
9239
Eric Dumazet93d05d42015-11-18 06:31:03 -08009240 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07009241 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009242 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -07009243
Eric Dumazet33d480c2011-08-11 19:30:52 +00009244 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00009245
Jiri Pirkof001fde2009-05-05 02:48:28 +00009246 /* Flush device addresses */
9247 dev_addr_flush(dev);
9248
Herbert Xud565b0a2008-12-15 23:38:52 -08009249 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
9250 netif_napi_del(p);
9251
Eric Dumazet29b44332010-10-11 10:22:12 +00009252 free_percpu(dev->pcpu_refcnt);
9253 dev->pcpu_refcnt = NULL;
9254
Stephen Hemminger3041a062006-05-26 13:25:24 -07009255 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009256 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07009257 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009258 return;
9259 }
9260
9261 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
9262 dev->reg_state = NETREG_RELEASED;
9263
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07009264 /* will free via device release */
9265 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009266}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009267EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009268
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009269/**
9270 * synchronize_net - Synchronize with packet receive processing
9271 *
9272 * Wait for packets currently being received to be done.
9273 * Does not block later packets from starting.
9274 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009275void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009276{
9277 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00009278 if (rtnl_is_locked())
9279 synchronize_rcu_expedited();
9280 else
9281 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07009282}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009283EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009284
9285/**
Eric Dumazet44a08732009-10-27 07:03:04 +00009286 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07009287 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00009288 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08009289 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009290 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009291 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00009292 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009293 *
9294 * Callers must hold the rtnl semaphore. You may want
9295 * unregister_netdev() instead of this.
9296 */
9297
Eric Dumazet44a08732009-10-27 07:03:04 +00009298void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009299{
Herbert Xua6620712007-12-12 19:21:56 -08009300 ASSERT_RTNL();
9301
Eric Dumazet44a08732009-10-27 07:03:04 +00009302 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00009303 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00009304 } else {
9305 rollback_registered(dev);
9306 /* Finish processing unregister after unlock */
9307 net_set_todo(dev);
9308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009309}
Eric Dumazet44a08732009-10-27 07:03:04 +00009310EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009311
9312/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009313 * unregister_netdevice_many - unregister many devices
9314 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07009315 *
9316 * Note: As most callers use a stack allocated list_head,
9317 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009318 */
9319void unregister_netdevice_many(struct list_head *head)
9320{
9321 struct net_device *dev;
9322
9323 if (!list_empty(head)) {
9324 rollback_registered_many(head);
9325 list_for_each_entry(dev, head, unreg_list)
9326 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07009327 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009328 }
9329}
Eric Dumazet63c80992009-10-27 07:06:49 +00009330EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009331
9332/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009333 * unregister_netdev - remove device from the kernel
9334 * @dev: device
9335 *
9336 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08009337 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338 *
9339 * This is just a wrapper for unregister_netdevice that takes
9340 * the rtnl semaphore. In general you want to use this and not
9341 * unregister_netdevice.
9342 */
9343void unregister_netdev(struct net_device *dev)
9344{
9345 rtnl_lock();
9346 unregister_netdevice(dev);
9347 rtnl_unlock();
9348}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009349EXPORT_SYMBOL(unregister_netdev);
9350
Eric W. Biedermance286d32007-09-12 13:53:49 +02009351/**
9352 * dev_change_net_namespace - move device to different nethost namespace
9353 * @dev: device
9354 * @net: network namespace
9355 * @pat: If not NULL name pattern to try if the current device name
9356 * is already taken in the destination network namespace.
9357 *
9358 * This function shuts down a device interface and moves it
9359 * to a new network namespace. On success 0 is returned, on
9360 * a failure a netagive errno code is returned.
9361 *
9362 * Callers must hold the rtnl semaphore.
9363 */
9364
9365int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
9366{
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009367 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009368
9369 ASSERT_RTNL();
9370
9371 /* Don't allow namespace local devices to be moved. */
9372 err = -EINVAL;
9373 if (dev->features & NETIF_F_NETNS_LOCAL)
9374 goto out;
9375
9376 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009377 if (dev->reg_state != NETREG_REGISTERED)
9378 goto out;
9379
9380 /* Get out if there is nothing todo */
9381 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09009382 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02009383 goto out;
9384
9385 /* Pick the destination device name, and ensure
9386 * we can use it in the destination network namespace.
9387 */
9388 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00009389 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009390 /* We get here if we can't use the current device name */
9391 if (!pat)
9392 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +08009393 err = dev_get_valid_name(net, dev, pat);
9394 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009395 goto out;
9396 }
9397
9398 /*
9399 * And now a mini version of register_netdevice unregister_netdevice.
9400 */
9401
9402 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07009403 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009404
9405 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009406 unlist_netdevice(dev);
9407
9408 synchronize_net();
9409
9410 /* Shutdown queueing discipline. */
9411 dev_shutdown(dev);
9412
9413 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009414 * this device. They should clean all the things.
9415 *
9416 * Note that dev->reg_state stays at NETREG_REGISTERED.
9417 * This is wanted because this way 8021q and macvlan know
9418 * the device is just moving and can keep their slaves up.
9419 */
Eric W. Biedermance286d32007-09-12 13:53:49 +02009420 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00009421 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009422
Nicolas Dichtelc36ac8e2018-01-25 15:01:38 +01009423 new_nsid = peernet2id_alloc(dev_net(dev), net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009424 /* If there is an ifindex conflict assign a new one */
9425 if (__dev_get_by_index(net, dev->ifindex))
9426 new_ifindex = dev_new_index(net);
9427 else
9428 new_ifindex = dev->ifindex;
9429
9430 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
9431 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009432
9433 /*
9434 * Flush the unicast and multicast chains
9435 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009436 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009437 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009438
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009439 /* Send a netdev-removed uevent to the old namespace */
9440 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009441 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009442
Eric W. Biedermance286d32007-09-12 13:53:49 +02009443 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09009444 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009445 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009446
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009447 /* Send a netdev-add uevent to the new namespace */
9448 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04009449 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00009450
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009451 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07009452 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009453 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009454
9455 /* Add the device back in the hashes */
9456 list_netdevice(dev);
9457
9458 /* Notify protocols, that a new device appeared. */
9459 call_netdevice_notifiers(NETDEV_REGISTER, dev);
9460
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009461 /*
9462 * Prevent userspace races by waiting until the network
9463 * device is fully setup before sending notifications.
9464 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07009465 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00009466
Eric W. Biedermance286d32007-09-12 13:53:49 +02009467 synchronize_net();
9468 err = 0;
9469out:
9470 return err;
9471}
Johannes Berg463d0182009-07-14 00:33:35 +02009472EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009473
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009474static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009475{
9476 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009477 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009478 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +05309479 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009480
Linus Torvalds1da177e2005-04-16 15:20:36 -07009481 local_irq_disable();
9482 cpu = smp_processor_id();
9483 sd = &per_cpu(softnet_data, cpu);
9484 oldsd = &per_cpu(softnet_data, oldcpu);
9485
9486 /* Find end of our completion_queue. */
9487 list_skb = &sd->completion_queue;
9488 while (*list_skb)
9489 list_skb = &(*list_skb)->next;
9490 /* Append completion queue from offline CPU. */
9491 *list_skb = oldsd->completion_queue;
9492 oldsd->completion_queue = NULL;
9493
Linus Torvalds1da177e2005-04-16 15:20:36 -07009494 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00009495 if (oldsd->output_queue) {
9496 *sd->output_queue_tailp = oldsd->output_queue;
9497 sd->output_queue_tailp = oldsd->output_queue_tailp;
9498 oldsd->output_queue = NULL;
9499 oldsd->output_queue_tailp = &oldsd->output_queue;
9500 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009501 /* Append NAPI poll list from offline CPU, with one exception :
9502 * process_backlog() must be called by cpu owning percpu backlog.
9503 * We properly handle process_queue & input_pkt_queue later.
9504 */
9505 while (!list_empty(&oldsd->poll_list)) {
9506 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
9507 struct napi_struct,
9508 poll_list);
9509
9510 list_del_init(&napi->poll_list);
9511 if (napi->poll == process_backlog)
9512 napi->state = 0;
9513 else
9514 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00009515 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009516
9517 raise_softirq_irqoff(NET_TX_SOFTIRQ);
9518 local_irq_enable();
9519
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05309520#ifdef CONFIG_RPS
9521 remsd = oldsd->rps_ipi_list;
9522 oldsd->rps_ipi_list = NULL;
9523#endif
9524 /* send out pending IPI's on offline CPU */
9525 net_rps_send_ipi(remsd);
9526
Linus Torvalds1da177e2005-04-16 15:20:36 -07009527 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00009528 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009529 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009530 input_queue_head_incr(oldsd);
9531 }
Eric Dumazetac64da02015-01-15 17:04:22 -08009532 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08009533 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00009534 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07009535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07009536
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009537 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07009539
Herbert Xu7f353bf2007-08-10 15:47:58 -07009540/**
Herbert Xub63365a2008-10-23 01:11:29 -07009541 * netdev_increment_features - increment feature set by one
9542 * @all: current feature set
9543 * @one: new feature set
9544 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07009545 *
9546 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07009547 * @one to the master device with current feature set @all. Will not
9548 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07009549 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009550netdev_features_t netdev_increment_features(netdev_features_t all,
9551 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07009552{
Tom Herbertc8cd0982015-12-14 11:19:44 -08009553 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08009554 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00009555 mask |= NETIF_F_VLAN_CHALLENGED;
9556
Tom Herberta1882222015-12-14 11:19:43 -08009557 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00009558 all &= one | ~NETIF_F_ALL_FOR_ALL;
9559
Michał Mirosław1742f182011-04-22 06:31:16 +00009560 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08009561 if (all & NETIF_F_HW_CSUM)
9562 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009563
9564 return all;
9565}
Herbert Xub63365a2008-10-23 01:11:29 -07009566EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07009567
Baruch Siach430f03c2013-06-02 20:43:55 +00009568static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009569{
9570 int i;
9571 struct hlist_head *hash;
9572
Kees Cook6da2ec52018-06-12 13:55:00 -07009573 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009574 if (hash != NULL)
9575 for (i = 0; i < NETDEV_HASHENTRIES; i++)
9576 INIT_HLIST_HEAD(&hash[i]);
9577
9578 return hash;
9579}
9580
Eric W. Biederman881d9662007-09-17 11:56:21 -07009581/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07009582static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009583{
Li RongQingd9f37d02018-07-13 14:41:36 +08009584 BUILD_BUG_ON(GRO_HASH_BUCKETS >
David S. Millerccdb5172018-07-16 17:02:04 -07009585 8 * FIELD_SIZEOF(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +08009586
Rustad, Mark D734b6542012-07-18 09:06:07 +00009587 if (net != &init_net)
9588 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07009589
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009590 net->dev_name_head = netdev_create_hash();
9591 if (net->dev_name_head == NULL)
9592 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009593
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009594 net->dev_index_head = netdev_create_hash();
9595 if (net->dev_index_head == NULL)
9596 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009597
9598 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07009599
9600err_idx:
9601 kfree(net->dev_name_head);
9602err_name:
9603 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009604}
9605
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009606/**
9607 * netdev_drivername - network driver for the device
9608 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009609 *
9610 * Determine network driver for device.
9611 */
David S. Miller3019de12011-06-06 16:41:33 -07009612const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07009613{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07009614 const struct device_driver *driver;
9615 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07009616 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07009617
9618 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009619 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07009620 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009621
9622 driver = parent->driver;
9623 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07009624 return driver->name;
9625 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07009626}
9627
Joe Perches6ea754e2014-09-22 11:10:50 -07009628static void __netdev_printk(const char *level, const struct net_device *dev,
9629 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00009630{
Joe Perchesb004ff42012-09-12 20:12:19 -07009631 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009632 dev_printk_emit(level[1] - '0',
9633 dev->dev.parent,
9634 "%s %s %s%s: %pV",
9635 dev_driver_string(dev->dev.parent),
9636 dev_name(dev->dev.parent),
9637 netdev_name(dev), netdev_reg_state(dev),
9638 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009639 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07009640 printk("%s%s%s: %pV",
9641 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009642 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07009643 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009644 }
Joe Perches256df2f2010-06-27 01:02:35 +00009645}
9646
Joe Perches6ea754e2014-09-22 11:10:50 -07009647void netdev_printk(const char *level, const struct net_device *dev,
9648 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00009649{
9650 struct va_format vaf;
9651 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00009652
9653 va_start(args, format);
9654
9655 vaf.fmt = format;
9656 vaf.va = &args;
9657
Joe Perches6ea754e2014-09-22 11:10:50 -07009658 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07009659
Joe Perches256df2f2010-06-27 01:02:35 +00009660 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00009661}
9662EXPORT_SYMBOL(netdev_printk);
9663
9664#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07009665void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00009666{ \
Joe Perches256df2f2010-06-27 01:02:35 +00009667 struct va_format vaf; \
9668 va_list args; \
9669 \
9670 va_start(args, fmt); \
9671 \
9672 vaf.fmt = fmt; \
9673 vaf.va = &args; \
9674 \
Joe Perches6ea754e2014-09-22 11:10:50 -07009675 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07009676 \
Joe Perches256df2f2010-06-27 01:02:35 +00009677 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00009678} \
9679EXPORT_SYMBOL(func);
9680
9681define_netdev_printk_level(netdev_emerg, KERN_EMERG);
9682define_netdev_printk_level(netdev_alert, KERN_ALERT);
9683define_netdev_printk_level(netdev_crit, KERN_CRIT);
9684define_netdev_printk_level(netdev_err, KERN_ERR);
9685define_netdev_printk_level(netdev_warn, KERN_WARNING);
9686define_netdev_printk_level(netdev_notice, KERN_NOTICE);
9687define_netdev_printk_level(netdev_info, KERN_INFO);
9688
Pavel Emelyanov46650792007-10-08 20:38:39 -07009689static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07009690{
9691 kfree(net->dev_name_head);
9692 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +03009693 if (net != &init_net)
9694 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -07009695}
9696
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009697static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07009698 .init = netdev_init,
9699 .exit = netdev_exit,
9700};
9701
Pavel Emelyanov46650792007-10-08 20:38:39 -07009702static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02009703{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009704 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02009705 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009706 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02009707 * initial network namespace
9708 */
9709 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009710 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009711 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009712 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02009713
9714 /* Ignore unmoveable devices (i.e. loopback) */
9715 if (dev->features & NETIF_F_NETNS_LOCAL)
9716 continue;
9717
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00009718 /* Leave virtual devices for the generic cleanup */
9719 if (dev->rtnl_link_ops)
9720 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08009721
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009722 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009723 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
9724 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009725 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009726 pr_emerg("%s: failed to move %s to init_net: %d\n",
9727 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07009728 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02009729 }
9730 }
9731 rtnl_unlock();
9732}
9733
Eric W. Biederman50624c92013-09-23 21:19:49 -07009734static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
9735{
9736 /* Return with the rtnl_lock held when there are no network
9737 * devices unregistering in any network namespace in net_list.
9738 */
9739 struct net *net;
9740 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01009741 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009742
Peter Zijlstraff960a72014-10-29 17:04:56 +01009743 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009744 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07009745 unregistering = false;
9746 rtnl_lock();
9747 list_for_each_entry(net, net_list, exit_list) {
9748 if (net->dev_unreg_count > 0) {
9749 unregistering = true;
9750 break;
9751 }
9752 }
9753 if (!unregistering)
9754 break;
9755 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01009756
9757 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009758 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01009759 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009760}
9761
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009762static void __net_exit default_device_exit_batch(struct list_head *net_list)
9763{
9764 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04009765 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009766 * Do this across as many network namespaces as possible to
9767 * improve batching efficiency.
9768 */
9769 struct net_device *dev;
9770 struct net *net;
9771 LIST_HEAD(dev_kill_list);
9772
Eric W. Biederman50624c92013-09-23 21:19:49 -07009773 /* To prevent network device cleanup code from dereferencing
9774 * loopback devices or network devices that have been freed
9775 * wait here for all pending unregistrations to complete,
9776 * before unregistring the loopback device and allowing the
9777 * network namespace be freed.
9778 *
9779 * The netdev todo list containing all network devices
9780 * unregistrations that happen in default_device_exit_batch
9781 * will run in the rtnl_unlock() at the end of
9782 * default_device_exit_batch.
9783 */
9784 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009785 list_for_each_entry(net, net_list, exit_list) {
9786 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02009787 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009788 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
9789 else
9790 unregister_netdevice_queue(dev, &dev_kill_list);
9791 }
9792 }
9793 unregister_netdevice_many(&dev_kill_list);
9794 rtnl_unlock();
9795}
9796
Denis V. Lunev022cbae2007-11-13 03:23:50 -08009797static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02009798 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00009799 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02009800};
9801
Linus Torvalds1da177e2005-04-16 15:20:36 -07009802/*
9803 * Initialize the DEV module. At boot time this walks the device list and
9804 * unhooks any devices that fail to initialise (normally hardware not
9805 * present) and leaves us with a valid list of present and active devices.
9806 *
9807 */
9808
9809/*
9810 * This is called single threaded during boot, so no need
9811 * to take the rtnl semaphore.
9812 */
9813static int __init net_dev_init(void)
9814{
9815 int i, rc = -ENOMEM;
9816
9817 BUG_ON(!dev_boot_phase);
9818
Linus Torvalds1da177e2005-04-16 15:20:36 -07009819 if (dev_proc_init())
9820 goto out;
9821
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009822 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07009823 goto out;
9824
9825 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08009826 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009827 INIT_LIST_HEAD(&ptype_base[i]);
9828
Vlad Yasevich62532da2012-11-15 08:49:10 +00009829 INIT_LIST_HEAD(&offload_base);
9830
Eric W. Biederman881d9662007-09-17 11:56:21 -07009831 if (register_pernet_subsys(&netdev_net_ops))
9832 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009833
9834 /*
9835 * Initialise the packet receive queues.
9836 */
9837
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07009838 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07009839 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009840 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009841
Eric Dumazet41852492016-08-26 12:50:39 -07009842 INIT_WORK(flush, flush_backlog);
9843
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009844 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07009845 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +01009846#ifdef CONFIG_XFRM_OFFLOAD
9847 skb_queue_head_init(&sd->xfrm_backlog);
9848#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009849 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00009850 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00009851#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009852 sd->csd.func = rps_trigger_softirq;
9853 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009854 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07009855#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00009856
David S. Miller7c4ec742018-07-20 23:37:55 -07009857 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00009858 sd->backlog.poll = process_backlog;
9859 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009860 }
9861
Linus Torvalds1da177e2005-04-16 15:20:36 -07009862 dev_boot_phase = 0;
9863
Eric W. Biederman505d4f72008-11-07 22:54:20 -08009864 /* The loopback device is special if any other network devices
9865 * is present in a network namespace the loopback device must
9866 * be present. Since we now dynamically allocate and free the
9867 * loopback device ensure this invariant is maintained by
9868 * keeping the loopback device as the first device on the
9869 * list of network devices. Ensuring the loopback devices
9870 * is the first device that appears and the last network device
9871 * that disappears.
9872 */
9873 if (register_pernet_device(&loopback_net_ops))
9874 goto out;
9875
9876 if (register_pernet_device(&default_device_ops))
9877 goto out;
9878
Carlos R. Mafra962cf362008-05-15 11:15:37 -03009879 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
9880 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009881
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +01009882 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
9883 NULL, dev_cpu_dead);
9884 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009885 rc = 0;
9886out:
9887 return rc;
9888}
9889
9890subsys_initcall(net_dev_init);