blob: bde98cfd166fdea6ceb12595e033450f14468681 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
tcharding722c9a02017-02-09 17:56:04 +11003 * NET3 Protocol independent device support routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Derived from the non IP parts of dev.c 1.0.19
tcharding722c9a02017-02-09 17:56:04 +11006 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
8 * Mark Evans, <evansmp@uhura.aston.ac.uk>
9 *
10 * Additional Authors:
11 * Florian la Roche <rzsfl@rz.uni-sb.de>
12 * Alan Cox <gw4pts@gw4pts.ampr.org>
13 * David Hinds <dahinds@users.sourceforge.net>
14 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
15 * Adam Sulmicki <adam@cfar.umd.edu>
16 * Pekka Riikonen <priikone@poesidon.pspt.fi>
17 *
18 * Changes:
19 * D.J. Barrow : Fixed bug where dev->refcnt gets set
tcharding722c9a02017-02-09 17:56:04 +110020 * to 2 if register_netdev gets called
21 * before net_dev_init & also removed a
22 * few lines of code in the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Alan Cox : device private ioctl copies fields back.
24 * Alan Cox : Transmit queue code does relevant
25 * stunts to keep the queue safe.
26 * Alan Cox : Fixed double lock.
27 * Alan Cox : Fixed promisc NULL pointer trap
28 * ???????? : Support the full private ioctl range
29 * Alan Cox : Moved ioctl permission check into
30 * drivers
31 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
32 * Alan Cox : 100 backlog just doesn't cut it when
33 * you start doing multicast video 8)
34 * Alan Cox : Rewrote net_bh and list manager.
tcharding722c9a02017-02-09 17:56:04 +110035 * Alan Cox : Fix ETH_P_ALL echoback lengths.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * Alan Cox : Took out transmit every packet pass
37 * Saved a few bytes in the ioctl handler
38 * Alan Cox : Network driver sets packet type before
39 * calling netif_rx. Saves a function
40 * call a packet.
41 * Alan Cox : Hashed net_bh()
42 * Richard Kooijman: Timestamp fixes.
43 * Alan Cox : Wrong field in SIOCGIFDSTADDR
44 * Alan Cox : Device lock protection.
tcharding722c9a02017-02-09 17:56:04 +110045 * Alan Cox : Fixed nasty side effect of device close
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * changes.
47 * Rudi Cilibrasi : Pass the right thing to
48 * set_mac_address()
49 * Dave Miller : 32bit quantity for the device lock to
50 * make it work out on a Sparc.
51 * Bjorn Ekwall : Added KERNELD hack.
52 * Alan Cox : Cleaned up the backlog initialise.
53 * Craig Metz : SIOCGIFCONF fix if space for under
54 * 1 device.
55 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
56 * is no device open function.
57 * Andi Kleen : Fix error reporting for SIOCGIFCONF
58 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
59 * Cyrus Durgin : Cleaned for KMOD
60 * Adam Sulmicki : Bug Fix : Network Device Unload
61 * A network device unload needs to purge
62 * the backlog queue.
63 * Paul Rusty Russell : SIOCSIFNAME
64 * Pekka Riikonen : Netdev boot-time settings code
65 * Andrew Morton : Make unregister_netdevice wait
tcharding722c9a02017-02-09 17:56:04 +110066 * indefinitely on dev->refcnt
67 * J Hadi Salim : - Backlog queue sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * - netif_rx() feedback
69 */
70
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080071#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080073#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/cpu.h>
75#include <linux/types.h>
76#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000077#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090078#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070080#include <linux/sched/mm.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080081#include <linux/mutex.h>
Ahmed S. Darwish11d60112020-06-03 16:49:44 +020082#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/string.h>
84#include <linux/mm.h>
85#include <linux/socket.h>
86#include <linux/sockios.h>
87#include <linux/errno.h>
88#include <linux/interrupt.h>
89#include <linux/if_ether.h>
90#include <linux/netdevice.h>
91#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070092#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070094#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040095#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020096#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -080098#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/stat.h>
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +0300101#include <net/dsa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700103#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200105#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000107#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/highmem.h>
109#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <linux/netpoll.h>
112#include <linux/rcupdate.h>
113#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500116#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700117#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700118#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700119#include <linux/ctype.h>
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700120#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700121#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700123#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700124#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ipv6.h>
126#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700127#include <linux/jhash.h>
128#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700129#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900130#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900131#include <trace/events/skb.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700132#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000133#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100134#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300135#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700136#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100137#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400138#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800139#include <linux/hrtimer.h>
Daniel Borkmann357b6cc2020-03-18 10:33:22 +0100140#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530141#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200142#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200143#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200144#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100145#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100146#include <net/devlink.h>
Heiner Kallweitbd869242020-06-20 22:35:42 +0200147#include <linux/pm_runtime.h>
Willy Tarreau37447412020-08-10 10:27:42 +0200148#include <linux/prandom.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
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200201static DECLARE_RWSEM(devnet_rename_sem);
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
Jiri Pirkoff927412019-09-30 11:48:15 +0200235static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
236 const char *name)
237{
238 struct netdev_name_node *name_node;
239
240 name_node = kmalloc(sizeof(*name_node), GFP_KERNEL);
241 if (!name_node)
242 return NULL;
243 INIT_HLIST_NODE(&name_node->hlist);
244 name_node->dev = dev;
245 name_node->name = name;
246 return name_node;
247}
248
249static struct netdev_name_node *
250netdev_name_node_head_alloc(struct net_device *dev)
251{
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200252 struct netdev_name_node *name_node;
253
254 name_node = netdev_name_node_alloc(dev, dev->name);
255 if (!name_node)
256 return NULL;
257 INIT_LIST_HEAD(&name_node->list);
258 return name_node;
Jiri Pirkoff927412019-09-30 11:48:15 +0200259}
260
261static void netdev_name_node_free(struct netdev_name_node *name_node)
262{
263 kfree(name_node);
264}
265
266static void netdev_name_node_add(struct net *net,
267 struct netdev_name_node *name_node)
268{
269 hlist_add_head_rcu(&name_node->hlist,
270 dev_name_hash(net, name_node->name));
271}
272
273static void netdev_name_node_del(struct netdev_name_node *name_node)
274{
275 hlist_del_rcu(&name_node->hlist);
276}
277
278static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
279 const char *name)
280{
281 struct hlist_head *head = dev_name_hash(net, name);
282 struct netdev_name_node *name_node;
283
284 hlist_for_each_entry(name_node, head, hlist)
285 if (!strcmp(name_node->name, name))
286 return name_node;
287 return NULL;
288}
289
290static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
291 const char *name)
292{
293 struct hlist_head *head = dev_name_hash(net, name);
294 struct netdev_name_node *name_node;
295
296 hlist_for_each_entry_rcu(name_node, head, hlist)
297 if (!strcmp(name_node->name, name))
298 return name_node;
299 return NULL;
300}
301
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200302int netdev_name_node_alt_create(struct net_device *dev, const char *name)
303{
304 struct netdev_name_node *name_node;
305 struct net *net = dev_net(dev);
306
307 name_node = netdev_name_node_lookup(net, name);
308 if (name_node)
309 return -EEXIST;
310 name_node = netdev_name_node_alloc(dev, name);
311 if (!name_node)
312 return -ENOMEM;
313 netdev_name_node_add(net, name_node);
314 /* The node that holds dev->name acts as a head of per-device list. */
315 list_add_tail(&name_node->list, &dev->name_node->list);
316
317 return 0;
318}
319EXPORT_SYMBOL(netdev_name_node_alt_create);
320
321static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
322{
323 list_del(&name_node->list);
324 netdev_name_node_del(name_node);
325 kfree(name_node->name);
326 netdev_name_node_free(name_node);
327}
328
329int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
330{
331 struct netdev_name_node *name_node;
332 struct net *net = dev_net(dev);
333
334 name_node = netdev_name_node_lookup(net, name);
335 if (!name_node)
336 return -ENOENT;
Eric Dumazete08ad802020-02-14 07:53:53 -0800337 /* lookup might have found our primary name or a name belonging
338 * to another device.
339 */
340 if (name_node == dev->name_node || name_node->dev != dev)
341 return -EINVAL;
342
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200343 __netdev_name_node_alt_destroy(name_node);
344
345 return 0;
346}
347EXPORT_SYMBOL(netdev_name_node_alt_destroy);
348
349static void netdev_name_node_alt_flush(struct net_device *dev)
350{
351 struct netdev_name_node *name_node, *tmp;
352
353 list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list)
354 __netdev_name_node_alt_destroy(name_node);
355}
356
Eric W. Biedermance286d32007-09-12 13:53:49 +0200357/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000358static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200359{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900360 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200361
362 ASSERT_RTNL();
363
364 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800365 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Jiri Pirkoff927412019-09-30 11:48:15 +0200366 netdev_name_node_add(net, dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000367 hlist_add_head_rcu(&dev->index_hlist,
368 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200369 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000370
371 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200372}
373
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000374/* Device list removal
375 * caller must respect a RCU grace period before freeing/reusing dev
376 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200377static void unlist_netdevice(struct net_device *dev)
378{
379 ASSERT_RTNL();
380
381 /* Unlink dev from the device chain */
382 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800383 list_del_rcu(&dev->dev_list);
Jiri Pirkoff927412019-09-30 11:48:15 +0200384 netdev_name_node_del(dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000385 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200386 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000387
388 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
392 * Our notifier list
393 */
394
Alan Sternf07d5b92006-05-09 15:23:03 -0700395static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/*
398 * Device drivers call our routines to queue packets here. We empty the
399 * queue in the local softnet handler.
400 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700401
Eric Dumazet9958da02010-04-17 04:17:02 +0000402DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700403EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Cong Wang1a33e102020-05-02 22:22:19 -0700405#ifdef CONFIG_LOCKDEP
406/*
407 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
408 * according to dev->type
409 */
410static const unsigned short netdev_lock_type[] = {
411 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
412 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
413 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
414 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
415 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
416 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
417 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
418 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
419 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
420 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
421 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
422 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
423 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
424 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
425 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
426
427static const char *const netdev_lock_name[] = {
428 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
429 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
430 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
431 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
432 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
433 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
434 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
435 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
436 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
437 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
438 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
439 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
440 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
441 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
442 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
443
444static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang845e0eb2020-06-08 14:53:01 -0700445static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang1a33e102020-05-02 22:22:19 -0700446
447static inline unsigned short netdev_lock_pos(unsigned short dev_type)
448{
449 int i;
450
451 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
452 if (netdev_lock_type[i] == dev_type)
453 return i;
454 /* the last key is used by default */
455 return ARRAY_SIZE(netdev_lock_type) - 1;
456}
457
458static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
459 unsigned short dev_type)
460{
461 int i;
462
463 i = netdev_lock_pos(dev_type);
464 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
465 netdev_lock_name[i]);
466}
Cong Wang845e0eb2020-06-08 14:53:01 -0700467
468static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
469{
470 int i;
471
472 i = netdev_lock_pos(dev->type);
473 lockdep_set_class_and_name(&dev->addr_list_lock,
474 &netdev_addr_lock_key[i],
475 netdev_lock_name[i]);
476}
Cong Wang1a33e102020-05-02 22:22:19 -0700477#else
478static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
479 unsigned short dev_type)
480{
481}
Cong Wang845e0eb2020-06-08 14:53:01 -0700482
483static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
484{
485}
Cong Wang1a33e102020-05-02 22:22:19 -0700486#endif
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100489 *
490 * Protocol management and registration routines
491 *
492 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * Add a protocol ID to the list. Now that the input handler is
497 * smarter we can dispense with all the messy stuff that used to be
498 * here.
499 *
500 * BEWARE!!! Protocol handlers, mangling input packets,
501 * MUST BE last in hash buckets and checking protocol handlers
502 * MUST start from promiscuous ptype_all chain in net_bh.
503 * It is true now, do not change it.
504 * Explanation follows: if protocol handler, mangling packet, will
505 * be the first on list, it is not able to sense, that packet
506 * is cloned and should be copied-on-write, so that it will
507 * change it and subsequent readers will get broken packet.
508 * --ANK (980803)
509 */
510
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000511static inline struct list_head *ptype_head(const struct packet_type *pt)
512{
513 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800514 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000515 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800516 return pt->dev ? &pt->dev->ptype_specific :
517 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/**
521 * dev_add_pack - add packet handler
522 * @pt: packet type declaration
523 *
524 * Add a protocol handler to the networking stack. The passed &packet_type
525 * is linked into kernel lists and may not be freed until it has been
526 * removed from the kernel lists.
527 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900528 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * guarantee all CPU's that are in middle of receiving packets
530 * will see the new packet type (until the next received packet).
531 */
532
533void dev_add_pack(struct packet_type *pt)
534{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000535 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000537 spin_lock(&ptype_lock);
538 list_add_rcu(&pt->list, head);
539 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700541EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
544 * __dev_remove_pack - remove packet handler
545 * @pt: packet type declaration
546 *
547 * Remove a protocol handler that was previously added to the kernel
548 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
549 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900550 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 *
552 * The packet type might still be in use by receivers
553 * and must not be freed until after all the CPU's have gone
554 * through a quiescent state.
555 */
556void __dev_remove_pack(struct packet_type *pt)
557{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000558 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct packet_type *pt1;
560
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000561 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 list_for_each_entry(pt1, head, list) {
564 if (pt == pt1) {
565 list_del_rcu(&pt->list);
566 goto out;
567 }
568 }
569
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000570 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000572 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700574EXPORT_SYMBOL(__dev_remove_pack);
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/**
577 * dev_remove_pack - remove packet handler
578 * @pt: packet type declaration
579 *
580 * Remove a protocol handler that was previously added to the kernel
581 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
582 * from the kernel lists and can be freed or reused once this function
583 * returns.
584 *
585 * This call sleeps to guarantee that no CPU is looking at the packet
586 * type after return.
587 */
588void dev_remove_pack(struct packet_type *pt)
589{
590 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 synchronize_net();
593}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700594EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Vlad Yasevich62532da2012-11-15 08:49:10 +0000596
597/**
598 * dev_add_offload - register offload handlers
599 * @po: protocol offload declaration
600 *
601 * Add protocol offload handlers to the networking stack. The passed
602 * &proto_offload is linked into kernel lists and may not be freed until
603 * it has been removed from the kernel lists.
604 *
605 * This call does not sleep therefore it can not
606 * guarantee all CPU's that are in middle of receiving packets
607 * will see the new offload handlers (until the next received packet).
608 */
609void dev_add_offload(struct packet_offload *po)
610{
David S. Millerbdef7de2015-06-01 14:56:09 -0700611 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000612
613 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700614 list_for_each_entry(elem, &offload_base, list) {
615 if (po->priority < elem->priority)
616 break;
617 }
618 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000619 spin_unlock(&offload_lock);
620}
621EXPORT_SYMBOL(dev_add_offload);
622
623/**
624 * __dev_remove_offload - remove offload handler
625 * @po: packet offload declaration
626 *
627 * Remove a protocol offload handler that was previously added to the
628 * kernel offload handlers by dev_add_offload(). The passed &offload_type
629 * is removed from the kernel lists and can be freed or reused once this
630 * function returns.
631 *
632 * The packet type might still be in use by receivers
633 * and must not be freed until after all the CPU's have gone
634 * through a quiescent state.
635 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800636static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000637{
638 struct list_head *head = &offload_base;
639 struct packet_offload *po1;
640
Eric Dumazetc53aa502012-11-16 08:08:23 +0000641 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000642
643 list_for_each_entry(po1, head, list) {
644 if (po == po1) {
645 list_del_rcu(&po->list);
646 goto out;
647 }
648 }
649
650 pr_warn("dev_remove_offload: %p not found\n", po);
651out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000652 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000653}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000654
655/**
656 * dev_remove_offload - remove packet offload handler
657 * @po: packet offload declaration
658 *
659 * Remove a packet offload handler that was previously added to the kernel
660 * offload handlers by dev_add_offload(). The passed &offload_type is
661 * removed from the kernel lists and can be freed or reused once this
662 * function returns.
663 *
664 * This call sleeps to guarantee that no CPU is looking at the packet
665 * type after return.
666 */
667void dev_remove_offload(struct packet_offload *po)
668{
669 __dev_remove_offload(po);
670
671 synchronize_net();
672}
673EXPORT_SYMBOL(dev_remove_offload);
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100676 *
677 * Device Boot-time Settings Routines
678 *
679 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681/* Boot time configuration table */
682static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
683
684/**
685 * netdev_boot_setup_add - add new setup entry
686 * @name: name of the device
687 * @map: configured settings for the device
688 *
689 * Adds new setup entry to the dev_boot_setup list. The function
690 * returns 0 on error and 1 on success. This is a generic routine to
691 * all netdevices.
692 */
693static int netdev_boot_setup_add(char *name, struct ifmap *map)
694{
695 struct netdev_boot_setup *s;
696 int i;
697
698 s = dev_boot_setup;
699 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
700 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
701 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff92008-07-01 19:57:19 -0700702 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 memcpy(&s[i].map, map, sizeof(s[i].map));
704 break;
705 }
706 }
707
708 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
709}
710
711/**
tcharding722c9a02017-02-09 17:56:04 +1100712 * netdev_boot_setup_check - check boot time settings
713 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *
tcharding722c9a02017-02-09 17:56:04 +1100715 * Check boot time settings for the device.
716 * The found settings are set for the device to be used
717 * later in the device probing.
718 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
720int netdev_boot_setup_check(struct net_device *dev)
721{
722 struct netdev_boot_setup *s = dev_boot_setup;
723 int i;
724
725 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
726 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff92008-07-01 19:57:19 -0700727 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100728 dev->irq = s[i].map.irq;
729 dev->base_addr = s[i].map.base_addr;
730 dev->mem_start = s[i].map.mem_start;
731 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return 1;
733 }
734 }
735 return 0;
736}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700737EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739
740/**
tcharding722c9a02017-02-09 17:56:04 +1100741 * netdev_boot_base - get address from boot time settings
742 * @prefix: prefix for network device
743 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 *
tcharding722c9a02017-02-09 17:56:04 +1100745 * Check boot time settings for the base address of device.
746 * The found settings are set for the device to be used
747 * later in the device probing.
748 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
750unsigned long netdev_boot_base(const char *prefix, int unit)
751{
752 const struct netdev_boot_setup *s = dev_boot_setup;
753 char name[IFNAMSIZ];
754 int i;
755
756 sprintf(name, "%s%d", prefix, unit);
757
758 /*
759 * If device already registered then return base of 1
760 * to indicate not to probe for this interface
761 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700762 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return 1;
764
765 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
766 if (!strcmp(name, s[i].name))
767 return s[i].map.base_addr;
768 return 0;
769}
770
771/*
772 * Saves at boot time configured settings for any netdevice.
773 */
774int __init netdev_boot_setup(char *str)
775{
776 int ints[5];
777 struct ifmap map;
778
779 str = get_options(str, ARRAY_SIZE(ints), ints);
780 if (!str || !*str)
781 return 0;
782
783 /* Save settings */
784 memset(&map, 0, sizeof(map));
785 if (ints[0] > 0)
786 map.irq = ints[1];
787 if (ints[0] > 1)
788 map.base_addr = ints[2];
789 if (ints[0] > 2)
790 map.mem_start = ints[3];
791 if (ints[0] > 3)
792 map.mem_end = ints[4];
793
794 /* Add new entry to the list */
795 return netdev_boot_setup_add(str, &map);
796}
797
798__setup("netdev=", netdev_boot_setup);
799
800/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100801 *
802 * Device Interface Subroutines
803 *
804 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200807 * dev_get_iflink - get 'iflink' value of a interface
808 * @dev: targeted interface
809 *
810 * Indicates the ifindex the interface is linked to.
811 * Physical interfaces have the same 'ifindex' and 'iflink' values.
812 */
813
814int dev_get_iflink(const struct net_device *dev)
815{
816 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
817 return dev->netdev_ops->ndo_get_iflink(dev);
818
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200819 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200820}
821EXPORT_SYMBOL(dev_get_iflink);
822
823/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700824 * dev_fill_metadata_dst - Retrieve tunnel egress information.
825 * @dev: targeted interface
826 * @skb: The packet.
827 *
828 * For better visibility of tunnel traffic OVS needs to retrieve
829 * egress tunnel information for a packet. Following API allows
830 * user to get this info.
831 */
832int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
833{
834 struct ip_tunnel_info *info;
835
836 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
837 return -EINVAL;
838
839 info = skb_tunnel_info_unclone(skb);
840 if (!info)
841 return -ENOMEM;
842 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
843 return -EINVAL;
844
845 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
846}
847EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
848
849/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700851 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 * @name: name to find
853 *
854 * Find an interface by name. Must be called under RTNL semaphore
855 * or @dev_base_lock. If the name is found a pointer to the device
856 * is returned. If the name is not found then %NULL is returned. The
857 * reference counters are not incremented so the caller must be
858 * careful with locks.
859 */
860
Eric W. Biederman881d9662007-09-17 11:56:21 -0700861struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Jiri Pirkoff927412019-09-30 11:48:15 +0200863 struct netdev_name_node *node_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jiri Pirkoff927412019-09-30 11:48:15 +0200865 node_name = netdev_name_node_lookup(net, name);
866 return node_name ? node_name->dev : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700868EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870/**
tcharding722c9a02017-02-09 17:56:04 +1100871 * dev_get_by_name_rcu - find a device by its name
872 * @net: the applicable net namespace
873 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000874 *
tcharding722c9a02017-02-09 17:56:04 +1100875 * Find an interface by name.
876 * If the name is found a pointer to the device is returned.
877 * If the name is not found then %NULL is returned.
878 * The reference counters are not incremented so the caller must be
879 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000880 */
881
882struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
883{
Jiri Pirkoff927412019-09-30 11:48:15 +0200884 struct netdev_name_node *node_name;
Eric Dumazet72c95282009-10-30 07:11:27 +0000885
Jiri Pirkoff927412019-09-30 11:48:15 +0200886 node_name = netdev_name_node_lookup_rcu(net, name);
887 return node_name ? node_name->dev : NULL;
Eric Dumazet72c95282009-10-30 07:11:27 +0000888}
889EXPORT_SYMBOL(dev_get_by_name_rcu);
890
891/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700893 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * @name: name to find
895 *
896 * Find an interface by name. This can be called from any
897 * context and does its own locking. The returned handle has
898 * the usage count incremented and the caller must use dev_put() to
899 * release it when it is no longer needed. %NULL is returned if no
900 * matching device is found.
901 */
902
Eric W. Biederman881d9662007-09-17 11:56:21 -0700903struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct net_device *dev;
906
Eric Dumazet72c95282009-10-30 07:11:27 +0000907 rcu_read_lock();
908 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (dev)
910 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000911 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return dev;
913}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700914EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916/**
917 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700918 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * @ifindex: index of device
920 *
921 * Search for an interface by index. Returns %NULL if the device
922 * is not found or a pointer to the device. The device has not
923 * had its reference counter increased so the caller must be careful
924 * about locking. The caller must hold either the RTNL semaphore
925 * or @dev_base_lock.
926 */
927
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700930 struct net_device *dev;
931 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Sasha Levinb67bfe02013-02-27 17:06:00 -0800933 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (dev->ifindex == ifindex)
935 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return NULL;
938}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700939EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000941/**
942 * dev_get_by_index_rcu - find a device by its ifindex
943 * @net: the applicable net namespace
944 * @ifindex: index of device
945 *
946 * Search for an interface by index. Returns %NULL if the device
947 * is not found or a pointer to the device. The device has not
948 * had its reference counter increased so the caller must be careful
949 * about locking. The caller must hold RCU lock.
950 */
951
952struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
953{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000954 struct net_device *dev;
955 struct hlist_head *head = dev_index_hash(net, ifindex);
956
Sasha Levinb67bfe02013-02-27 17:06:00 -0800957 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000958 if (dev->ifindex == ifindex)
959 return dev;
960
961 return NULL;
962}
963EXPORT_SYMBOL(dev_get_by_index_rcu);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966/**
967 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700968 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 * @ifindex: index of device
970 *
971 * Search for an interface by index. Returns NULL if the device
972 * is not found or a pointer to the device. The device returned has
973 * had a reference added and the pointer is safe until the user calls
974 * dev_put to indicate they have finished with it.
975 */
976
Eric W. Biederman881d9662007-09-17 11:56:21 -0700977struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 struct net_device *dev;
980
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000981 rcu_read_lock();
982 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (dev)
984 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000985 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return dev;
987}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700988EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200991 * dev_get_by_napi_id - find a device by napi_id
992 * @napi_id: ID of the NAPI struct
993 *
994 * Search for an interface by NAPI ID. Returns %NULL if the device
995 * is not found or a pointer to the device. The device has not had
996 * its reference counter increased so the caller must be careful
997 * about locking. The caller must hold RCU lock.
998 */
999
1000struct net_device *dev_get_by_napi_id(unsigned int napi_id)
1001{
1002 struct napi_struct *napi;
1003
1004 WARN_ON_ONCE(!rcu_read_lock_held());
1005
1006 if (napi_id < MIN_NAPI_ID)
1007 return NULL;
1008
1009 napi = napi_by_id(napi_id);
1010
1011 return napi ? napi->dev : NULL;
1012}
1013EXPORT_SYMBOL(dev_get_by_napi_id);
1014
1015/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001016 * netdev_get_name - get a netdevice name, knowing its ifindex.
1017 * @net: network namespace
1018 * @name: a pointer to the buffer where the name will be stored.
1019 * @ifindex: the ifindex of the interface to get the name from.
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001020 */
1021int netdev_get_name(struct net *net, char *name, int ifindex)
1022{
1023 struct net_device *dev;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001024 int ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001025
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001026 down_read(&devnet_rename_sem);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001027 rcu_read_lock();
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001028
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001029 dev = dev_get_by_index_rcu(net, ifindex);
1030 if (!dev) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001031 ret = -ENODEV;
1032 goto out;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001033 }
1034
1035 strcpy(name, dev->name);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001036
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001037 ret = 0;
1038out:
1039 rcu_read_unlock();
1040 up_read(&devnet_rename_sem);
1041 return ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001042}
1043
1044/**
Eric Dumazet941666c2010-12-05 01:23:53 +00001045 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001046 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 * @type: media type of device
1048 * @ha: hardware address
1049 *
1050 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -08001051 * is not found or a pointer to the device.
1052 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +00001053 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 * and the caller must therefore be careful about locking
1055 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
1057
Eric Dumazet941666c2010-12-05 01:23:53 +00001058struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
1059 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct net_device *dev;
1062
Eric Dumazet941666c2010-12-05 01:23:53 +00001063 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (dev->type == type &&
1065 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -07001066 return dev;
1067
1068 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
Eric Dumazet941666c2010-12-05 01:23:53 +00001070EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -03001071
Eric W. Biederman881d9662007-09-17 11:56:21 -07001072struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001074 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001076 rcu_read_lock();
1077 for_each_netdev_rcu(net, dev)
1078 if (dev->type == type) {
1079 dev_hold(dev);
1080 ret = dev;
1081 break;
1082 }
1083 rcu_read_unlock();
1084 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086EXPORT_SYMBOL(dev_getfirstbyhwtype);
1087
1088/**
WANG Cong6c555492014-09-11 15:35:09 -07001089 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001090 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 * @if_flags: IFF_* values
1092 * @mask: bitmask of bits in if_flags to check
1093 *
1094 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +00001095 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -07001096 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 */
1098
WANG Cong6c555492014-09-11 15:35:09 -07001099struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1100 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001102 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
WANG Cong6c555492014-09-11 15:35:09 -07001104 ASSERT_RTNL();
1105
Pavel Emelianov7562f872007-05-03 15:13:45 -07001106 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001107 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001109 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 break;
1111 }
1112 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001113 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
WANG Cong6c555492014-09-11 15:35:09 -07001115EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117/**
1118 * dev_valid_name - check if name is okay for network device
1119 * @name: name string
1120 *
1121 * Network device names need to be valid file names to
Randy Dunlap4250b752020-09-17 21:35:15 -07001122 * allow sysfs to work. We also disallow any kind of
David S. Millerc7fa9d12006-08-15 16:34:13 -07001123 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 */
David S. Miller95f050b2012-03-06 16:12:15 -05001125bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001127 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001128 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001129 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001130 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001131 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001132 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001133
1134 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001135 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001136 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001137 name++;
1138 }
David S. Miller95f050b2012-03-06 16:12:15 -05001139 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001141EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001144 * __dev_alloc_name - allocate a name for a device
1145 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001147 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 *
1149 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001150 * id. It scans list of devices to build up a free map, then chooses
1151 * the first empty slot. The caller must hold the dev_base or rtnl lock
1152 * while allocating the name and adding the device in order to avoid
1153 * duplicates.
1154 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1155 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
1157
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001158static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
1160 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 const char *p;
1162 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001163 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 struct net_device *d;
1165
Rasmus Villemoes93809102017-11-13 00:15:08 +01001166 if (!dev_valid_name(name))
1167 return -EINVAL;
1168
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001169 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (p) {
1171 /*
1172 * Verify the string as this thing may have come from
1173 * the user. There must be either one "%d" and no other "%"
1174 * characters.
1175 */
1176 if (p[1] != 'd' || strchr(p + 2, '%'))
1177 return -EINVAL;
1178
1179 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001180 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (!inuse)
1182 return -ENOMEM;
1183
Eric W. Biederman881d9662007-09-17 11:56:21 -07001184 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (!sscanf(d->name, name, &i))
1186 continue;
1187 if (i < 0 || i >= max_netdevices)
1188 continue;
1189
1190 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001191 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (!strncmp(buf, d->name, IFNAMSIZ))
1193 set_bit(i, inuse);
1194 }
1195
1196 i = find_first_zero_bit(inuse, max_netdevices);
1197 free_page((unsigned long) inuse);
1198 }
1199
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001200 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001201 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204 /* It is possible to run out of possible slots
1205 * when the name is long and there isn't enough space left
1206 * for the digits, or if all bits are used.
1207 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001208 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001211static int dev_alloc_name_ns(struct net *net,
1212 struct net_device *dev,
1213 const char *name)
1214{
1215 char buf[IFNAMSIZ];
1216 int ret;
1217
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001218 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001219 ret = __dev_alloc_name(net, name, buf);
1220 if (ret >= 0)
1221 strlcpy(dev->name, buf, IFNAMSIZ);
1222 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001225/**
1226 * dev_alloc_name - allocate a name for a device
1227 * @dev: device
1228 * @name: name format string
1229 *
1230 * Passed a format string - eg "lt%d" it will try and find a suitable
1231 * id. It scans list of devices to build up a free map, then chooses
1232 * the first empty slot. The caller must hold the dev_base or rtnl lock
1233 * while allocating the name and adding the device in order to avoid
1234 * duplicates.
1235 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1236 * Returns the number of the unit assigned or a negative errno code.
1237 */
1238
1239int dev_alloc_name(struct net_device *dev, const char *name)
1240{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001241 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001242}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001243EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001244
Eric Dumazetbacb7e12019-10-08 14:20:34 -07001245static int dev_get_valid_name(struct net *net, struct net_device *dev,
1246 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001247{
David S. Miller55a5ec92018-01-02 11:45:07 -05001248 BUG_ON(!net);
1249
1250 if (!dev_valid_name(name))
1251 return -EINVAL;
1252
1253 if (strchr(name, '%'))
1254 return dev_alloc_name_ns(net, dev, name);
1255 else if (__dev_get_by_name(net, name))
1256 return -EEXIST;
1257 else if (dev->name != name)
1258 strlcpy(dev->name, name, IFNAMSIZ);
1259
1260 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001261}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263/**
1264 * dev_change_name - change name of a device
1265 * @dev: device
1266 * @newname: name (or format string) must be at least IFNAMSIZ
1267 *
1268 * Change name of a device, can pass format strings "eth%d".
1269 * for wildcarding.
1270 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001271int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
Tom Gundersen238fa362014-07-14 16:37:23 +02001273 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001274 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001276 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001277 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001280 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001282 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001283
1284 /* Some auto-enslaved devices e.g. failover slaves are
1285 * special, as userspace might rename the device after
1286 * the interface had been brought up and running since
1287 * the point kernel initiated auto-enslavement. Allow
1288 * live name change even when these slave devices are
1289 * up and running.
1290 *
1291 * Typically, users of these auto-enslaving devices
1292 * don't actually care about slave name change, as
1293 * they are supposed to operate on master interface
1294 * directly.
1295 */
1296 if (dev->flags & IFF_UP &&
1297 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return -EBUSY;
1299
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001300 down_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001301
1302 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001303 up_write(&devnet_rename_sem);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001304 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001305 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001306
Herbert Xufcc5a032007-07-30 17:03:38 -07001307 memcpy(oldname, dev->name, IFNAMSIZ);
1308
Gao feng828de4f2012-09-13 20:58:27 +00001309 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001310 if (err < 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001311 up_write(&devnet_rename_sem);
Octavian Purdilad9031022009-11-18 02:36:59 +00001312 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001315 if (oldname[0] && !strchr(oldname, '%'))
1316 netdev_info(dev, "renamed from %s\n", oldname);
1317
Tom Gundersen238fa362014-07-14 16:37:23 +02001318 old_assign_type = dev->name_assign_type;
1319 dev->name_assign_type = NET_NAME_RENAMED;
1320
Herbert Xufcc5a032007-07-30 17:03:38 -07001321rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001322 ret = device_rename(&dev->dev, dev->name);
1323 if (ret) {
1324 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001325 dev->name_assign_type = old_assign_type;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001326 up_write(&devnet_rename_sem);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001327 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001328 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001329
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001330 up_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001331
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001332 netdev_adjacent_rename_links(dev, oldname);
1333
Herbert Xu7f988ea2007-07-30 16:35:46 -07001334 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001335 netdev_name_node_del(dev->name_node);
Eric Dumazet72c95282009-10-30 07:11:27 +00001336 write_unlock_bh(&dev_base_lock);
1337
1338 synchronize_rcu();
1339
1340 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001341 netdev_name_node_add(net, dev->name_node);
Herbert Xu7f988ea2007-07-30 16:35:46 -07001342 write_unlock_bh(&dev_base_lock);
1343
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001344 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001345 ret = notifier_to_errno(ret);
1346
1347 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001348 /* err >= 0 after dev_alloc_name() or stores the first errno */
1349 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001350 err = ret;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001351 down_write(&devnet_rename_sem);
Herbert Xufcc5a032007-07-30 17:03:38 -07001352 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001353 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001354 dev->name_assign_type = old_assign_type;
1355 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001356 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001357 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001358 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001359 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001360 }
1361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 return err;
1364}
1365
1366/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001367 * dev_set_alias - change ifalias of a device
1368 * @dev: device
1369 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001370 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001371 *
1372 * Set ifalias for a device,
1373 */
1374int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1375{
Florian Westphal6c557002017-10-02 23:50:05 +02001376 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001377
1378 if (len >= IFALIASZ)
1379 return -EINVAL;
1380
Florian Westphal6c557002017-10-02 23:50:05 +02001381 if (len) {
1382 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1383 if (!new_alias)
1384 return -ENOMEM;
1385
1386 memcpy(new_alias->ifalias, alias, len);
1387 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001388 }
1389
Florian Westphal6c557002017-10-02 23:50:05 +02001390 mutex_lock(&ifalias_mutex);
Paul E. McKenneye3f0d762019-09-23 15:42:28 -07001391 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1392 mutex_is_locked(&ifalias_mutex));
Florian Westphal6c557002017-10-02 23:50:05 +02001393 mutex_unlock(&ifalias_mutex);
1394
1395 if (new_alias)
1396 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001397
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001398 return len;
1399}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001400EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001401
Florian Westphal6c557002017-10-02 23:50:05 +02001402/**
1403 * dev_get_alias - get ifalias of a device
1404 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001405 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001406 * @len: size of buffer
1407 *
1408 * get ifalias for a device. Caller must make sure dev cannot go
1409 * away, e.g. rcu read lock or own a reference count to device.
1410 */
1411int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1412{
1413 const struct dev_ifalias *alias;
1414 int ret = 0;
1415
1416 rcu_read_lock();
1417 alias = rcu_dereference(dev->ifalias);
1418 if (alias)
1419 ret = snprintf(name, len, "%s", alias->ifalias);
1420 rcu_read_unlock();
1421
1422 return ret;
1423}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001424
1425/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001426 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001427 * @dev: device to cause notification
1428 *
1429 * Called to indicate a device has changed features.
1430 */
1431void netdev_features_change(struct net_device *dev)
1432{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001433 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001434}
1435EXPORT_SYMBOL(netdev_features_change);
1436
1437/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 * netdev_state_change - device changes state
1439 * @dev: device to cause notification
1440 *
1441 * Called to indicate a device has changed state. This function calls
1442 * the notifier chains for netdev_chain and sends a NEWLINK message
1443 * to the routing socket.
1444 */
1445void netdev_state_change(struct net_device *dev)
1446{
1447 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001448 struct netdev_notifier_change_info change_info = {
1449 .info.dev = dev,
1450 };
Loic Prylli54951192014-07-01 21:39:43 -07001451
David Ahern51d0c0472017-10-04 17:48:45 -07001452 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001453 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001454 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001457EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Amerigo Wangee89bab2012-08-09 22:14:56 +00001459/**
tcharding722c9a02017-02-09 17:56:04 +11001460 * netdev_notify_peers - notify network peers about existence of @dev
1461 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001462 *
1463 * Generate traffic such that interested network peers are aware of
1464 * @dev, such as by generating a gratuitous ARP. This may be used when
1465 * a device wants to inform the rest of the network about some sort of
1466 * reconfiguration such as a failover event or virtual machine
1467 * migration.
1468 */
1469void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001470{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001471 rtnl_lock();
1472 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001473 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001474 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001475}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001476EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001477
Petr Machata40c900a2018-12-06 17:05:47 +00001478static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001480 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001481 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001483 ASSERT_RTNL();
1484
Heiner Kallweitbd869242020-06-20 22:35:42 +02001485 if (!netif_device_present(dev)) {
1486 /* may be detached because parent is runtime-suspended */
1487 if (dev->dev.parent)
1488 pm_runtime_resume(dev->dev.parent);
1489 if (!netif_device_present(dev))
1490 return -ENODEV;
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Neil Hormanca99ca12013-02-05 08:05:43 +00001493 /* Block netpoll from trying to do any rx path servicing.
1494 * If we don't do this there is a chance ndo_poll_controller
1495 * or ndo_poll may be running while we open the device
1496 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001497 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001498
Petr Machata40c900a2018-12-06 17:05:47 +00001499 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001500 ret = notifier_to_errno(ret);
1501 if (ret)
1502 return ret;
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001505
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001506 if (ops->ndo_validate_addr)
1507 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001508
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001509 if (!ret && ops->ndo_open)
1510 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Eric W. Biederman66b55522014-03-27 15:39:03 -07001512 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001513
Jeff Garzikbada3392007-10-23 20:19:37 -07001514 if (ret)
1515 clear_bit(__LINK_STATE_START, &dev->state);
1516 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001518 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001520 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return ret;
1524}
Patrick McHardybd380812010-02-26 06:34:53 +00001525
1526/**
1527 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001528 * @dev: device to open
1529 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001530 *
1531 * Takes a device from down to up state. The device's private open
1532 * function is invoked and then the multicast lists are loaded. Finally
1533 * the device is moved into the up state and a %NETDEV_UP message is
1534 * sent to the netdev notifier chain.
1535 *
1536 * Calling this function on an active interface is a nop. On a failure
1537 * a negative errno code is returned.
1538 */
Petr Machata00f54e62018-12-06 17:05:36 +00001539int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001540{
1541 int ret;
1542
Patrick McHardybd380812010-02-26 06:34:53 +00001543 if (dev->flags & IFF_UP)
1544 return 0;
1545
Petr Machata40c900a2018-12-06 17:05:47 +00001546 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001547 if (ret < 0)
1548 return ret;
1549
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001550 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001551 call_netdevice_notifiers(NETDEV_UP, dev);
1552
1553 return ret;
1554}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001555EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
stephen hemminger7051b882017-07-18 15:59:27 -07001557static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Octavian Purdila44345722010-12-13 12:44:07 +00001559 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001560
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001561 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001562 might_sleep();
1563
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001564 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001565 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001566 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001567
Octavian Purdila44345722010-12-13 12:44:07 +00001568 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Octavian Purdila44345722010-12-13 12:44:07 +00001570 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Octavian Purdila44345722010-12-13 12:44:07 +00001572 /* Synchronize to scheduled poll. We cannot touch poll list, it
1573 * can be even on different cpu. So just clear netif_running().
1574 *
1575 * dev->stop() will invoke napi_disable() on all of it's
1576 * napi_struct instances on this device.
1577 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001578 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Octavian Purdila44345722010-12-13 12:44:07 +00001581 dev_deactivate_many(head);
1582
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001583 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001584 const struct net_device_ops *ops = dev->netdev_ops;
1585
1586 /*
1587 * Call the device specific close. This cannot fail.
1588 * Only if device is UP
1589 *
1590 * We allow it to be called even after a DETACH hot-plug
1591 * event.
1592 */
1593 if (ops->ndo_stop)
1594 ops->ndo_stop(dev);
1595
Octavian Purdila44345722010-12-13 12:44:07 +00001596 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001597 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001598 }
Octavian Purdila44345722010-12-13 12:44:07 +00001599}
1600
stephen hemminger7051b882017-07-18 15:59:27 -07001601static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001602{
1603 LIST_HEAD(single);
1604
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001605 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001606 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001607 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001608}
1609
stephen hemminger7051b882017-07-18 15:59:27 -07001610void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001611{
1612 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001613
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001614 /* Remove the devices that don't need to be closed */
1615 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001616 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001617 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001618
1619 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001620
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001621 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001622 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001623 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001624 if (unlink)
1625 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627}
David S. Miller99c4a262015-03-18 22:52:33 -04001628EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001629
1630/**
1631 * dev_close - shutdown an interface.
1632 * @dev: device to shutdown
1633 *
1634 * This function moves an active device into down state. A
1635 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1636 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1637 * chain.
1638 */
stephen hemminger7051b882017-07-18 15:59:27 -07001639void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001640{
Eric Dumazete14a5992011-05-10 12:26:06 -07001641 if (dev->flags & IFF_UP) {
1642 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001643
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001644 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001645 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001646 list_del(&single);
1647 }
Patrick McHardybd380812010-02-26 06:34:53 +00001648}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001649EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001652/**
1653 * dev_disable_lro - disable Large Receive Offload on a device
1654 * @dev: device
1655 *
1656 * Disable Large Receive Offload (LRO) on a net device. Must be
1657 * called under RTNL. This is needed if received packets may be
1658 * forwarded to another interface.
1659 */
1660void dev_disable_lro(struct net_device *dev)
1661{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001662 struct net_device *lower_dev;
1663 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001664
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001665 dev->wanted_features &= ~NETIF_F_LRO;
1666 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001667
Michał Mirosław22d59692011-04-21 12:42:15 +00001668 if (unlikely(dev->features & NETIF_F_LRO))
1669 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001670
1671 netdev_for_each_lower_dev(dev, lower_dev, iter)
1672 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001673}
1674EXPORT_SYMBOL(dev_disable_lro);
1675
Michael Chan56f5aa72017-12-16 03:09:41 -05001676/**
1677 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1678 * @dev: device
1679 *
1680 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1681 * called under RTNL. This is needed if Generic XDP is installed on
1682 * the device.
1683 */
1684static void dev_disable_gro_hw(struct net_device *dev)
1685{
1686 dev->wanted_features &= ~NETIF_F_GRO_HW;
1687 netdev_update_features(dev);
1688
1689 if (unlikely(dev->features & NETIF_F_GRO_HW))
1690 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1691}
1692
Kirill Tkhaiede27622018-03-23 19:47:19 +03001693const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1694{
1695#define N(val) \
1696 case NETDEV_##val: \
1697 return "NETDEV_" __stringify(val);
1698 switch (cmd) {
1699 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1700 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1701 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1702 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1703 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1704 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1705 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001706 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1707 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001708 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001709 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001710#undef N
1711 return "UNKNOWN_NETDEV_EVENT";
1712}
1713EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1714
Jiri Pirko351638e2013-05-28 01:30:21 +00001715static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1716 struct net_device *dev)
1717{
David Ahern51d0c0472017-10-04 17:48:45 -07001718 struct netdev_notifier_info info = {
1719 .dev = dev,
1720 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001721
Jiri Pirko351638e2013-05-28 01:30:21 +00001722 return nb->notifier_call(nb, val, &info);
1723}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001724
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001725static int call_netdevice_register_notifiers(struct notifier_block *nb,
1726 struct net_device *dev)
1727{
1728 int err;
1729
1730 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1731 err = notifier_to_errno(err);
1732 if (err)
1733 return err;
1734
1735 if (!(dev->flags & IFF_UP))
1736 return 0;
1737
1738 call_netdevice_notifier(nb, NETDEV_UP, dev);
1739 return 0;
1740}
1741
1742static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1743 struct net_device *dev)
1744{
1745 if (dev->flags & IFF_UP) {
1746 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1747 dev);
1748 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1749 }
1750 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1751}
1752
1753static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1754 struct net *net)
1755{
1756 struct net_device *dev;
1757 int err;
1758
1759 for_each_netdev(net, dev) {
1760 err = call_netdevice_register_notifiers(nb, dev);
1761 if (err)
1762 goto rollback;
1763 }
1764 return 0;
1765
1766rollback:
1767 for_each_netdev_continue_reverse(net, dev)
1768 call_netdevice_unregister_notifiers(nb, dev);
1769 return err;
1770}
1771
1772static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1773 struct net *net)
1774{
1775 struct net_device *dev;
1776
1777 for_each_netdev(net, dev)
1778 call_netdevice_unregister_notifiers(nb, dev);
1779}
1780
Eric W. Biederman881d9662007-09-17 11:56:21 -07001781static int dev_boot_phase = 1;
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783/**
tcharding722c9a02017-02-09 17:56:04 +11001784 * register_netdevice_notifier - register a network notifier block
1785 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 *
tcharding722c9a02017-02-09 17:56:04 +11001787 * Register a notifier to be called when network device events occur.
1788 * The notifier passed is linked into the kernel structures and must
1789 * not be reused until it has been unregistered. A negative errno code
1790 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 *
tcharding722c9a02017-02-09 17:56:04 +11001792 * When registered all registration and up events are replayed
1793 * to the new notifier to allow device to have a race free
1794 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 */
1796
1797int register_netdevice_notifier(struct notifier_block *nb)
1798{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001799 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 int err;
1801
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001802 /* Close race with setup_net() and cleanup_net() */
1803 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001805 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001806 if (err)
1807 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001808 if (dev_boot_phase)
1809 goto unlock;
1810 for_each_net(net) {
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001811 err = call_netdevice_register_net_notifiers(nb, net);
1812 if (err)
1813 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001815
1816unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001818 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001820
1821rollback:
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001822 for_each_net_continue_reverse(net)
1823 call_netdevice_unregister_net_notifiers(nb, net);
Herbert Xufcc5a032007-07-30 17:03:38 -07001824
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001825 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001826 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001828EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
1830/**
tcharding722c9a02017-02-09 17:56:04 +11001831 * unregister_netdevice_notifier - unregister a network notifier block
1832 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 *
tcharding722c9a02017-02-09 17:56:04 +11001834 * Unregister a notifier previously registered by
1835 * register_netdevice_notifier(). The notifier is unlinked into the
1836 * kernel structures and may then be reused. A negative errno code
1837 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001838 *
tcharding722c9a02017-02-09 17:56:04 +11001839 * After unregistering unregister and down device events are synthesized
1840 * for all devices on the device list to the removed notifier to remove
1841 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 */
1843
1844int unregister_netdevice_notifier(struct notifier_block *nb)
1845{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001846 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001847 int err;
1848
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001849 /* Close race with setup_net() and cleanup_net() */
1850 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001851 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001852 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001853 if (err)
1854 goto unlock;
1855
Jiri Pirko48b3a132020-01-25 12:17:06 +01001856 for_each_net(net)
1857 call_netdevice_unregister_net_notifiers(nb, net);
1858
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001859unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001860 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001861 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001862 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001864EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Jiri Pirko1f637702020-01-25 12:17:07 +01001866static int __register_netdevice_notifier_net(struct net *net,
1867 struct notifier_block *nb,
1868 bool ignore_call_fail)
1869{
1870 int err;
1871
1872 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1873 if (err)
1874 return err;
1875 if (dev_boot_phase)
1876 return 0;
1877
1878 err = call_netdevice_register_net_notifiers(nb, net);
1879 if (err && !ignore_call_fail)
1880 goto chain_unregister;
1881
1882 return 0;
1883
1884chain_unregister:
1885 raw_notifier_chain_unregister(&net->netdev_chain, nb);
1886 return err;
1887}
1888
1889static int __unregister_netdevice_notifier_net(struct net *net,
1890 struct notifier_block *nb)
1891{
1892 int err;
1893
1894 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1895 if (err)
1896 return err;
1897
1898 call_netdevice_unregister_net_notifiers(nb, net);
1899 return 0;
1900}
1901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902/**
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001903 * register_netdevice_notifier_net - register a per-netns network notifier block
1904 * @net: network namespace
1905 * @nb: notifier
1906 *
1907 * Register a notifier to be called when network device events occur.
1908 * The notifier passed is linked into the kernel structures and must
1909 * not be reused until it has been unregistered. A negative errno code
1910 * is returned on a failure.
1911 *
1912 * When registered all registration and up events are replayed
1913 * to the new notifier to allow device to have a race free
1914 * view of the network device list.
1915 */
1916
1917int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
1918{
1919 int err;
1920
1921 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001922 err = __register_netdevice_notifier_net(net, nb, false);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001923 rtnl_unlock();
1924 return err;
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001925}
1926EXPORT_SYMBOL(register_netdevice_notifier_net);
1927
1928/**
1929 * unregister_netdevice_notifier_net - unregister a per-netns
1930 * network notifier block
1931 * @net: network namespace
1932 * @nb: notifier
1933 *
1934 * Unregister a notifier previously registered by
1935 * register_netdevice_notifier(). The notifier is unlinked into the
1936 * kernel structures and may then be reused. A negative errno code
1937 * is returned on a failure.
1938 *
1939 * After unregistering unregister and down device events are synthesized
1940 * for all devices on the device list to the removed notifier to remove
1941 * the need for special case cleanup code.
1942 */
1943
1944int unregister_netdevice_notifier_net(struct net *net,
1945 struct notifier_block *nb)
1946{
1947 int err;
1948
1949 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001950 err = __unregister_netdevice_notifier_net(net, nb);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001951 rtnl_unlock();
1952 return err;
1953}
1954EXPORT_SYMBOL(unregister_netdevice_notifier_net);
1955
Jiri Pirko93642e12020-01-25 12:17:08 +01001956int register_netdevice_notifier_dev_net(struct net_device *dev,
1957 struct notifier_block *nb,
1958 struct netdev_net_notifier *nn)
1959{
1960 int err;
1961
1962 rtnl_lock();
1963 err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
1964 if (!err) {
1965 nn->nb = nb;
1966 list_add(&nn->list, &dev->net_notifier_list);
1967 }
1968 rtnl_unlock();
1969 return err;
1970}
1971EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
1972
1973int unregister_netdevice_notifier_dev_net(struct net_device *dev,
1974 struct notifier_block *nb,
1975 struct netdev_net_notifier *nn)
1976{
1977 int err;
1978
1979 rtnl_lock();
1980 list_del(&nn->list);
1981 err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
1982 rtnl_unlock();
1983 return err;
1984}
1985EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
1986
1987static void move_netdevice_notifiers_dev_net(struct net_device *dev,
1988 struct net *net)
1989{
1990 struct netdev_net_notifier *nn;
1991
1992 list_for_each_entry(nn, &dev->net_notifier_list, list) {
1993 __unregister_netdevice_notifier_net(dev_net(dev), nn->nb);
1994 __register_netdevice_notifier_net(net, nn->nb, true);
1995 }
1996}
1997
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001998/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001999 * call_netdevice_notifiers_info - call all network notifier blocks
2000 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00002001 * @info: notifier information data
2002 *
2003 * Call all network notifier blocks. Parameters and return value
2004 * are as for raw_notifier_call_chain().
2005 */
2006
stephen hemminger1d143d92013-12-29 14:01:29 -08002007static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08002008 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00002009{
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002010 struct net *net = dev_net(info->dev);
2011 int ret;
2012
Jiri Pirko351638e2013-05-28 01:30:21 +00002013 ASSERT_RTNL();
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002014
2015 /* Run per-netns notifier block chain first, then run the global one.
2016 * Hopefully, one day, the global one is going to be removed after
2017 * all notifier block registrators get converted to be per-netns.
2018 */
2019 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2020 if (ret & NOTIFY_STOP_MASK)
2021 return ret;
Jiri Pirko351638e2013-05-28 01:30:21 +00002022 return raw_notifier_call_chain(&netdev_chain, val, info);
2023}
Jiri Pirko351638e2013-05-28 01:30:21 +00002024
Petr Machata26372602018-12-06 17:05:45 +00002025static int call_netdevice_notifiers_extack(unsigned long val,
2026 struct net_device *dev,
2027 struct netlink_ext_ack *extack)
2028{
2029 struct netdev_notifier_info info = {
2030 .dev = dev,
2031 .extack = extack,
2032 };
2033
2034 return call_netdevice_notifiers_info(val, &info);
2035}
2036
Jiri Pirko351638e2013-05-28 01:30:21 +00002037/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 * call_netdevice_notifiers - call all network notifier blocks
2039 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002040 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 *
2042 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07002043 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 */
2045
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07002046int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
Petr Machata26372602018-12-06 17:05:45 +00002048 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
stephen hemmingeredf947f2011-03-24 13:24:01 +00002050EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02002052/**
2053 * call_netdevice_notifiers_mtu - call all network notifier blocks
2054 * @val: value passed unmodified to notifier function
2055 * @dev: net_device pointer passed unmodified to notifier function
2056 * @arg: additional u32 argument passed to the notifier function
2057 *
2058 * Call all network notifier blocks. Parameters and return value
2059 * are as for raw_notifier_call_chain().
2060 */
2061static int call_netdevice_notifiers_mtu(unsigned long val,
2062 struct net_device *dev, u32 arg)
2063{
2064 struct netdev_notifier_info_ext info = {
2065 .info.dev = dev,
2066 .ext.mtu = arg,
2067 };
2068
2069 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2070
2071 return call_netdevice_notifiers_info(val, &info.info);
2072}
2073
Pablo Neira1cf519002015-05-13 18:19:37 +02002074#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002075static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002076
2077void net_inc_ingress_queue(void)
2078{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002079 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002080}
2081EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2082
2083void net_dec_ingress_queue(void)
2084{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002085 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002086}
2087EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2088#endif
2089
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002090#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002091static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002092
2093void net_inc_egress_queue(void)
2094{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002095 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002096}
2097EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2098
2099void net_dec_egress_queue(void)
2100{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002101 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002102}
2103EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2104#endif
2105
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002106static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002107#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00002108static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08002109static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002110static void netstamp_clear(struct work_struct *work)
2111{
2112 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08002113 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002114
Eric Dumazet13baa002017-03-01 14:28:39 -08002115 wanted = atomic_add_return(deferred, &netstamp_wanted);
2116 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002117 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002118 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002119 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002120}
2121static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00002122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124void net_enable_timestamp(void)
2125{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002126#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002127 int wanted;
2128
2129 while (1) {
2130 wanted = atomic_read(&netstamp_wanted);
2131 if (wanted <= 0)
2132 break;
2133 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2134 return;
2135 }
2136 atomic_inc(&netstamp_needed_deferred);
2137 schedule_work(&netstamp_work);
2138#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002139 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002140#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002142EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
2144void net_disable_timestamp(void)
2145{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002146#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002147 int wanted;
2148
2149 while (1) {
2150 wanted = atomic_read(&netstamp_wanted);
2151 if (wanted <= 1)
2152 break;
2153 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2154 return;
2155 }
2156 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002157 schedule_work(&netstamp_work);
2158#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002159 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002160#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002162EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Eric Dumazet3b098e22010-05-15 23:57:10 -07002164static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
Thomas Gleixner2456e852016-12-25 11:38:40 +01002166 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002167 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002168 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002171#define net_timestamp_check(COND, SKB) \
2172 if (static_branch_unlikely(&netstamp_needed_key)) { \
2173 if ((COND) && !(SKB)->tstamp) \
2174 __net_timestamp(SKB); \
2175 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07002176
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02002177bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002178{
2179 unsigned int len;
2180
2181 if (!(dev->flags & IFF_UP))
2182 return false;
2183
2184 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
2185 if (skb->len <= len)
2186 return true;
2187
2188 /* if TSO is enabled, we don't care about the length as the packet
2189 * could be forwarded without being segmented before
2190 */
2191 if (skb_is_gso(skb))
2192 return true;
2193
2194 return false;
2195}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04002196EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002197
Herbert Xua0265d22014-04-17 13:45:03 +08002198int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2199{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002200 int ret = ____dev_forward_skb(dev, skb);
2201
2202 if (likely(!ret)) {
2203 skb->protocol = eth_type_trans(skb, dev);
2204 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08002205 }
2206
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002207 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08002208}
2209EXPORT_SYMBOL_GPL(__dev_forward_skb);
2210
Arnd Bergmann44540962009-11-26 06:07:08 +00002211/**
2212 * dev_forward_skb - loopback an skb to another netif
2213 *
2214 * @dev: destination network device
2215 * @skb: buffer to forward
2216 *
2217 * return values:
2218 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07002219 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00002220 *
2221 * dev_forward_skb can be used for injecting an skb from the
2222 * start_xmit function of one device into the receive queue
2223 * of another device.
2224 *
2225 * The receiving device may be in another namespace, so
2226 * we have to clear all information in the skb that could
2227 * impact namespace isolation.
2228 */
2229int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2230{
Herbert Xua0265d22014-04-17 13:45:03 +08002231 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00002232}
2233EXPORT_SYMBOL_GPL(dev_forward_skb);
2234
Changli Gao71d9dec2010-12-15 19:57:25 +00002235static inline int deliver_skb(struct sk_buff *skb,
2236 struct packet_type *pt_prev,
2237 struct net_device *orig_dev)
2238{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04002239 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00002240 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03002241 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00002242 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2243}
2244
Salam Noureddine7866a622015-01-27 11:35:48 -08002245static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2246 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002247 struct net_device *orig_dev,
2248 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08002249 struct list_head *ptype_list)
2250{
2251 struct packet_type *ptype, *pt_prev = *pt;
2252
2253 list_for_each_entry_rcu(ptype, ptype_list, list) {
2254 if (ptype->type != type)
2255 continue;
2256 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002257 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08002258 pt_prev = ptype;
2259 }
2260 *pt = pt_prev;
2261}
2262
Eric Leblondc0de08d2012-08-16 22:02:58 +00002263static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2264{
Eric Leblonda3d744e2012-11-06 02:10:10 +00002265 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00002266 return false;
2267
2268 if (ptype->id_match)
2269 return ptype->id_match(ptype, skb->sk);
2270 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2271 return true;
2272
2273 return false;
2274}
2275
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002276/**
2277 * dev_nit_active - return true if any network interface taps are in use
2278 *
2279 * @dev: network device to check for the presence of taps
2280 */
2281bool dev_nit_active(struct net_device *dev)
2282{
2283 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2284}
2285EXPORT_SYMBOL_GPL(dev_nit_active);
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287/*
2288 * Support routine. Sends outgoing frames to any network
2289 * taps currently in use.
2290 */
2291
David Ahern74b20582016-05-10 11:19:50 -07002292void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002295 struct sk_buff *skb2 = NULL;
2296 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002297 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002300again:
2301 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002302 if (ptype->ignore_outgoing)
2303 continue;
2304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 /* Never send packets back to the socket
2306 * they originated from - MvS (miquels@drinkel.ow.org)
2307 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002308 if (skb_loop_sk(ptype, skb))
2309 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002310
Salam Noureddine7866a622015-01-27 11:35:48 -08002311 if (pt_prev) {
2312 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002313 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002314 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002316
2317 /* need to clone skb, done only once */
2318 skb2 = skb_clone(skb, GFP_ATOMIC);
2319 if (!skb2)
2320 goto out_unlock;
2321
2322 net_timestamp_set(skb2);
2323
2324 /* skb->nh should be correctly
2325 * set by sender, so that the second statement is
2326 * just protection against buggy protocols.
2327 */
2328 skb_reset_mac_header(skb2);
2329
2330 if (skb_network_header(skb2) < skb2->data ||
2331 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2332 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2333 ntohs(skb2->protocol),
2334 dev->name);
2335 skb_reset_network_header(skb2);
2336 }
2337
2338 skb2->transport_header = skb2->network_header;
2339 skb2->pkt_type = PACKET_OUTGOING;
2340 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002342
2343 if (ptype_list == &ptype_all) {
2344 ptype_list = &dev->ptype_all;
2345 goto again;
2346 }
2347out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002348 if (pt_prev) {
2349 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2350 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2351 else
2352 kfree_skb(skb2);
2353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 rcu_read_unlock();
2355}
David Ahern74b20582016-05-10 11:19:50 -07002356EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Ben Hutchings2c530402012-07-10 10:55:09 +00002358/**
2359 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002360 * @dev: Network device
2361 * @txq: number of queues available
2362 *
2363 * If real_num_tx_queues is changed the tc mappings may no longer be
2364 * valid. To resolve this verify the tc mapping remains valid and if
2365 * not NULL the mapping. With no priorities mapping to this
2366 * offset/count pair it will no longer be used. In the worst case TC0
2367 * is invalid nothing can be done so disable priority mappings. If is
2368 * expected that drivers will fix this mapping if they can before
2369 * calling netif_set_real_num_tx_queues.
2370 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002371static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002372{
2373 int i;
2374 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2375
2376 /* If TC0 is invalidated disable TC mapping */
2377 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002378 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002379 dev->num_tc = 0;
2380 return;
2381 }
2382
2383 /* Invalidated prio to tc mappings set to TC0 */
2384 for (i = 1; i < TC_BITMASK + 1; i++) {
2385 int q = netdev_get_prio_tc_map(dev, i);
2386
2387 tc = &dev->tc_to_txq[q];
2388 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002389 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2390 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002391 netdev_set_prio_tc_map(dev, i, 0);
2392 }
2393 }
2394}
2395
Alexander Duyck8d059b02016-10-28 11:43:49 -04002396int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2397{
2398 if (dev->num_tc) {
2399 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2400 int i;
2401
Alexander Duyckffcfe252018-07-09 12:19:38 -04002402 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002403 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2404 if ((txq - tc->offset) < tc->count)
2405 return i;
2406 }
2407
Alexander Duyckffcfe252018-07-09 12:19:38 -04002408 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002409 return -1;
2410 }
2411
2412 return 0;
2413}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002414EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002415
Alexander Duyck537c00d2013-01-10 08:57:02 +00002416#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002417struct static_key xps_needed __read_mostly;
2418EXPORT_SYMBOL(xps_needed);
2419struct static_key xps_rxqs_needed __read_mostly;
2420EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002421static DEFINE_MUTEX(xps_map_mutex);
2422#define xmap_dereference(P) \
2423 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2424
Alexander Duyck6234f872016-10-28 11:46:49 -04002425static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2426 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002427{
2428 struct xps_map *map = NULL;
2429 int pos;
2430
2431 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002432 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002433 if (!map)
2434 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002435
Alexander Duyck6234f872016-10-28 11:46:49 -04002436 for (pos = map->len; pos--;) {
2437 if (map->queues[pos] != index)
2438 continue;
2439
2440 if (map->len > 1) {
2441 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002442 break;
2443 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002444
Amritha Nambiar80d19662018-06-29 21:26:41 -07002445 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002446 kfree_rcu(map, rcu);
2447 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002448 }
2449
Alexander Duyck6234f872016-10-28 11:46:49 -04002450 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002451}
2452
Alexander Duyck6234f872016-10-28 11:46:49 -04002453static bool remove_xps_queue_cpu(struct net_device *dev,
2454 struct xps_dev_maps *dev_maps,
2455 int cpu, u16 offset, u16 count)
2456{
Alexander Duyck184c4492016-10-28 11:50:13 -04002457 int num_tc = dev->num_tc ? : 1;
2458 bool active = false;
2459 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002460
Alexander Duyck184c4492016-10-28 11:50:13 -04002461 for (tci = cpu * num_tc; num_tc--; tci++) {
2462 int i, j;
2463
2464 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002465 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002466 break;
2467 }
2468
2469 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002470 }
2471
Alexander Duyck184c4492016-10-28 11:50:13 -04002472 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002473}
2474
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002475static void reset_xps_maps(struct net_device *dev,
2476 struct xps_dev_maps *dev_maps,
2477 bool is_rxqs_map)
2478{
2479 if (is_rxqs_map) {
2480 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2481 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2482 } else {
2483 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2484 }
2485 static_key_slow_dec_cpuslocked(&xps_needed);
2486 kfree_rcu(dev_maps, rcu);
2487}
2488
Amritha Nambiar80d19662018-06-29 21:26:41 -07002489static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2490 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2491 u16 offset, u16 count, bool is_rxqs_map)
2492{
2493 bool active = false;
2494 int i, j;
2495
2496 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2497 j < nr_ids;)
2498 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2499 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002500 if (!active)
2501 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002502
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002503 if (!is_rxqs_map) {
2504 for (i = offset + (count - 1); count--; i--) {
2505 netdev_queue_numa_node_write(
2506 netdev_get_tx_queue(dev, i),
2507 NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002508 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002509 }
2510}
2511
Alexander Duyck6234f872016-10-28 11:46:49 -04002512static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2513 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002514{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002515 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002516 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002517 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002518
Amritha Nambiar04157462018-06-29 21:26:46 -07002519 if (!static_key_false(&xps_needed))
2520 return;
2521
Andrei Vagin4d99f662018-08-08 20:07:35 -07002522 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002523 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002524
Amritha Nambiar04157462018-06-29 21:26:46 -07002525 if (static_key_false(&xps_rxqs_needed)) {
2526 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2527 if (dev_maps) {
2528 nr_ids = dev->num_rx_queues;
2529 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2530 offset, count, true);
2531 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002532 }
2533
2534 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002535 if (!dev_maps)
2536 goto out_no_maps;
2537
Amritha Nambiar80d19662018-06-29 21:26:41 -07002538 if (num_possible_cpus() > 1)
2539 possible_mask = cpumask_bits(cpu_possible_mask);
2540 nr_ids = nr_cpu_ids;
2541 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2542 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002543
Alexander Duyck537c00d2013-01-10 08:57:02 +00002544out_no_maps:
2545 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002546 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002547}
2548
Alexander Duyck6234f872016-10-28 11:46:49 -04002549static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2550{
2551 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2552}
2553
Amritha Nambiar80d19662018-06-29 21:26:41 -07002554static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2555 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002556{
2557 struct xps_map *new_map;
2558 int alloc_len = XPS_MIN_MAP_ALLOC;
2559 int i, pos;
2560
2561 for (pos = 0; map && pos < map->len; pos++) {
2562 if (map->queues[pos] != index)
2563 continue;
2564 return map;
2565 }
2566
Amritha Nambiar80d19662018-06-29 21:26:41 -07002567 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002568 if (map) {
2569 if (pos < map->alloc_len)
2570 return map;
2571
2572 alloc_len = map->alloc_len * 2;
2573 }
2574
Amritha Nambiar80d19662018-06-29 21:26:41 -07002575 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2576 * map
2577 */
2578 if (is_rxqs_map)
2579 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2580 else
2581 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2582 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002583 if (!new_map)
2584 return NULL;
2585
2586 for (i = 0; i < pos; i++)
2587 new_map->queues[i] = map->queues[i];
2588 new_map->alloc_len = alloc_len;
2589 new_map->len = pos;
2590
2591 return new_map;
2592}
2593
Andrei Vagin4d99f662018-08-08 20:07:35 -07002594/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002595int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2596 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002597{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002598 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002599 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002600 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002601 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002602 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002603 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002604 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002605
Alexander Duyck184c4492016-10-28 11:50:13 -04002606 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002607 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002608 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002609 if (num_tc < 0)
2610 return -EINVAL;
2611
2612 /* If queue belongs to subordinate dev use its map */
2613 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2614
Alexander Duyck184c4492016-10-28 11:50:13 -04002615 tc = netdev_txq_to_tc(dev, index);
2616 if (tc < 0)
2617 return -EINVAL;
2618 }
2619
Amritha Nambiar80d19662018-06-29 21:26:41 -07002620 mutex_lock(&xps_map_mutex);
2621 if (is_rxqs_map) {
2622 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2623 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2624 nr_ids = dev->num_rx_queues;
2625 } else {
2626 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2627 if (num_possible_cpus() > 1) {
2628 online_mask = cpumask_bits(cpu_online_mask);
2629 possible_mask = cpumask_bits(cpu_possible_mask);
2630 }
2631 dev_maps = xmap_dereference(dev->xps_cpus_map);
2632 nr_ids = nr_cpu_ids;
2633 }
2634
Alexander Duyck184c4492016-10-28 11:50:13 -04002635 if (maps_sz < L1_CACHE_BYTES)
2636 maps_sz = L1_CACHE_BYTES;
2637
Alexander Duyck01c5f862013-01-10 08:57:35 +00002638 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002639 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2640 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002641 if (!new_dev_maps)
2642 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002643 if (!new_dev_maps) {
2644 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002645 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002646 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002647
Amritha Nambiar80d19662018-06-29 21:26:41 -07002648 tci = j * num_tc + tc;
2649 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002650 NULL;
2651
Amritha Nambiar80d19662018-06-29 21:26:41 -07002652 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002653 if (!map)
2654 goto error;
2655
Amritha Nambiar80d19662018-06-29 21:26:41 -07002656 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002657 }
2658
2659 if (!new_dev_maps)
2660 goto out_no_new_maps;
2661
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002662 if (!dev_maps) {
2663 /* Increment static keys at most once per type */
2664 static_key_slow_inc_cpuslocked(&xps_needed);
2665 if (is_rxqs_map)
2666 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2667 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002668
Amritha Nambiar80d19662018-06-29 21:26:41 -07002669 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2670 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002671 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002672 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002673 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002674 map = xmap_dereference(dev_maps->attr_map[tci]);
2675 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002676 }
2677
2678 /* We need to explicitly update tci as prevous loop
2679 * could break out early if dev_maps is NULL.
2680 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002681 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002682
Amritha Nambiar80d19662018-06-29 21:26:41 -07002683 if (netif_attr_test_mask(j, mask, nr_ids) &&
2684 netif_attr_test_online(j, online_mask, nr_ids)) {
2685 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002686 int pos = 0;
2687
Amritha Nambiar80d19662018-06-29 21:26:41 -07002688 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002689 while ((pos < map->len) && (map->queues[pos] != index))
2690 pos++;
2691
2692 if (pos == map->len)
2693 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002694#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002695 if (!is_rxqs_map) {
2696 if (numa_node_id == -2)
2697 numa_node_id = cpu_to_node(j);
2698 else if (numa_node_id != cpu_to_node(j))
2699 numa_node_id = -1;
2700 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002701#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002702 } else if (dev_maps) {
2703 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002704 map = xmap_dereference(dev_maps->attr_map[tci]);
2705 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002706 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002707
Alexander Duyck184c4492016-10-28 11:50:13 -04002708 /* copy maps belonging to foreign traffic classes */
2709 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2710 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002711 map = xmap_dereference(dev_maps->attr_map[tci]);
2712 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002713 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002714 }
2715
Amritha Nambiar80d19662018-06-29 21:26:41 -07002716 if (is_rxqs_map)
2717 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2718 else
2719 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002720
Alexander Duyck537c00d2013-01-10 08:57:02 +00002721 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002722 if (!dev_maps)
2723 goto out_no_old_maps;
2724
Amritha Nambiar80d19662018-06-29 21:26:41 -07002725 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2726 j < nr_ids;) {
2727 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2728 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2729 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002730 if (map && map != new_map)
2731 kfree_rcu(map, rcu);
2732 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002733 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002734
Alexander Duyck184c4492016-10-28 11:50:13 -04002735 kfree_rcu(dev_maps, rcu);
2736
2737out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002738 dev_maps = new_dev_maps;
2739 active = true;
2740
2741out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002742 if (!is_rxqs_map) {
2743 /* update Tx queue numa node */
2744 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2745 (numa_node_id >= 0) ?
2746 numa_node_id : NUMA_NO_NODE);
2747 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002748
Alexander Duyck01c5f862013-01-10 08:57:35 +00002749 if (!dev_maps)
2750 goto out_no_maps;
2751
Amritha Nambiar80d19662018-06-29 21:26:41 -07002752 /* removes tx-queue from unused CPUs/rx-queues */
2753 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2754 j < nr_ids;) {
2755 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002756 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002757 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2758 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002759 active |= remove_xps_queue(dev_maps, tci, index);
2760 for (i = num_tc - tc, tci++; --i; tci++)
2761 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002762 }
2763
2764 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002765 if (!active)
2766 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002767
2768out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002769 mutex_unlock(&xps_map_mutex);
2770
2771 return 0;
2772error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002773 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002774 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2775 j < nr_ids;) {
2776 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2777 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002778 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002779 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002780 NULL;
2781 if (new_map && new_map != map)
2782 kfree(new_map);
2783 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002784 }
2785
Alexander Duyck537c00d2013-01-10 08:57:02 +00002786 mutex_unlock(&xps_map_mutex);
2787
Alexander Duyck537c00d2013-01-10 08:57:02 +00002788 kfree(new_dev_maps);
2789 return -ENOMEM;
2790}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002791EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002792
2793int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2794 u16 index)
2795{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002796 int ret;
2797
2798 cpus_read_lock();
2799 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2800 cpus_read_unlock();
2801
2802 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002803}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002804EXPORT_SYMBOL(netif_set_xps_queue);
2805
2806#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002807static void netdev_unbind_all_sb_channels(struct net_device *dev)
2808{
2809 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2810
2811 /* Unbind any subordinate channels */
2812 while (txq-- != &dev->_tx[0]) {
2813 if (txq->sb_dev)
2814 netdev_unbind_sb_channel(dev, txq->sb_dev);
2815 }
2816}
2817
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002818void netdev_reset_tc(struct net_device *dev)
2819{
Alexander Duyck6234f872016-10-28 11:46:49 -04002820#ifdef CONFIG_XPS
2821 netif_reset_xps_queues_gt(dev, 0);
2822#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002823 netdev_unbind_all_sb_channels(dev);
2824
2825 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002826 dev->num_tc = 0;
2827 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2828 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2829}
2830EXPORT_SYMBOL(netdev_reset_tc);
2831
2832int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2833{
2834 if (tc >= dev->num_tc)
2835 return -EINVAL;
2836
Alexander Duyck6234f872016-10-28 11:46:49 -04002837#ifdef CONFIG_XPS
2838 netif_reset_xps_queues(dev, offset, count);
2839#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002840 dev->tc_to_txq[tc].count = count;
2841 dev->tc_to_txq[tc].offset = offset;
2842 return 0;
2843}
2844EXPORT_SYMBOL(netdev_set_tc_queue);
2845
2846int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2847{
2848 if (num_tc > TC_MAX_QUEUE)
2849 return -EINVAL;
2850
Alexander Duyck6234f872016-10-28 11:46:49 -04002851#ifdef CONFIG_XPS
2852 netif_reset_xps_queues_gt(dev, 0);
2853#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002854 netdev_unbind_all_sb_channels(dev);
2855
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002856 dev->num_tc = num_tc;
2857 return 0;
2858}
2859EXPORT_SYMBOL(netdev_set_num_tc);
2860
Alexander Duyckffcfe252018-07-09 12:19:38 -04002861void netdev_unbind_sb_channel(struct net_device *dev,
2862 struct net_device *sb_dev)
2863{
2864 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2865
2866#ifdef CONFIG_XPS
2867 netif_reset_xps_queues_gt(sb_dev, 0);
2868#endif
2869 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2870 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2871
2872 while (txq-- != &dev->_tx[0]) {
2873 if (txq->sb_dev == sb_dev)
2874 txq->sb_dev = NULL;
2875 }
2876}
2877EXPORT_SYMBOL(netdev_unbind_sb_channel);
2878
2879int netdev_bind_sb_channel_queue(struct net_device *dev,
2880 struct net_device *sb_dev,
2881 u8 tc, u16 count, u16 offset)
2882{
2883 /* Make certain the sb_dev and dev are already configured */
2884 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2885 return -EINVAL;
2886
2887 /* We cannot hand out queues we don't have */
2888 if ((offset + count) > dev->real_num_tx_queues)
2889 return -EINVAL;
2890
2891 /* Record the mapping */
2892 sb_dev->tc_to_txq[tc].count = count;
2893 sb_dev->tc_to_txq[tc].offset = offset;
2894
2895 /* Provide a way for Tx queue to find the tc_to_txq map or
2896 * XPS map for itself.
2897 */
2898 while (count--)
2899 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2900
2901 return 0;
2902}
2903EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2904
2905int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2906{
2907 /* Do not use a multiqueue device to represent a subordinate channel */
2908 if (netif_is_multiqueue(dev))
2909 return -ENODEV;
2910
2911 /* We allow channels 1 - 32767 to be used for subordinate channels.
2912 * Channel 0 is meant to be "native" mode and used only to represent
2913 * the main root device. We allow writing 0 to reset the device back
2914 * to normal mode after being used as a subordinate channel.
2915 */
2916 if (channel > S16_MAX)
2917 return -EINVAL;
2918
2919 dev->num_tc = -channel;
2920
2921 return 0;
2922}
2923EXPORT_SYMBOL(netdev_set_sb_channel);
2924
John Fastabendf0796d52010-07-01 13:21:57 +00002925/*
2926 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002927 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002928 */
Tom Herberte6484932010-10-18 18:04:39 +00002929int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002930{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002931 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002932 int rc;
2933
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002934 disabling = txq < dev->real_num_tx_queues;
2935
Tom Herberte6484932010-10-18 18:04:39 +00002936 if (txq < 1 || txq > dev->num_tx_queues)
2937 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002938
Ben Hutchings5c565802011-02-15 19:39:21 +00002939 if (dev->reg_state == NETREG_REGISTERED ||
2940 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002941 ASSERT_RTNL();
2942
Tom Herbert1d24eb42010-11-21 13:17:27 +00002943 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2944 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002945 if (rc)
2946 return rc;
2947
John Fastabend4f57c082011-01-17 08:06:04 +00002948 if (dev->num_tc)
2949 netif_setup_tc(dev, txq);
2950
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002951 dev->real_num_tx_queues = txq;
2952
2953 if (disabling) {
2954 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002955 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002956#ifdef CONFIG_XPS
2957 netif_reset_xps_queues_gt(dev, txq);
2958#endif
2959 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002960 } else {
2961 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002962 }
Tom Herberte6484932010-10-18 18:04:39 +00002963
Tom Herberte6484932010-10-18 18:04:39 +00002964 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002965}
2966EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002967
Michael Daltona953be52014-01-16 22:23:28 -08002968#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002969/**
2970 * netif_set_real_num_rx_queues - set actual number of RX queues used
2971 * @dev: Network device
2972 * @rxq: Actual number of RX queues
2973 *
2974 * This must be called either with the rtnl_lock held or before
2975 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002976 * negative error code. If called before registration, it always
2977 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002978 */
2979int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2980{
2981 int rc;
2982
Tom Herbertbd25fa72010-10-18 18:00:16 +00002983 if (rxq < 1 || rxq > dev->num_rx_queues)
2984 return -EINVAL;
2985
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002986 if (dev->reg_state == NETREG_REGISTERED) {
2987 ASSERT_RTNL();
2988
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002989 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2990 rxq);
2991 if (rc)
2992 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002993 }
2994
2995 dev->real_num_rx_queues = rxq;
2996 return 0;
2997}
2998EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2999#endif
3000
Ben Hutchings2c530402012-07-10 10:55:09 +00003001/**
3002 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00003003 *
3004 * This routine should set an upper limit on the number of RSS queues
3005 * used by default by multiqueue devices.
3006 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00003007int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00003008{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05303009 return is_kdump_kernel() ?
3010 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00003011}
3012EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3013
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003014static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003015{
3016 struct softnet_data *sd;
3017 unsigned long flags;
3018
3019 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05003020 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00003021 q->next_sched = NULL;
3022 *sd->output_queue_tailp = q;
3023 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003024 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3025 local_irq_restore(flags);
3026}
3027
David S. Miller37437bb2008-07-16 02:15:04 -07003028void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08003029{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003030 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3031 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08003032}
3033EXPORT_SYMBOL(__netif_schedule);
3034
Eric Dumazete6247022013-12-05 04:45:08 -08003035struct dev_kfree_skb_cb {
3036 enum skb_free_reason reason;
3037};
3038
3039static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08003040{
Eric Dumazete6247022013-12-05 04:45:08 -08003041 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08003042}
Denis Vlasenko56079432006-03-29 15:57:29 -08003043
John Fastabend46e5da40a2014-09-12 20:04:52 -07003044void netif_schedule_queue(struct netdev_queue *txq)
3045{
3046 rcu_read_lock();
Julio Faracco5be55152019-10-01 11:39:04 -03003047 if (!netif_xmit_stopped(txq)) {
John Fastabend46e5da40a2014-09-12 20:04:52 -07003048 struct Qdisc *q = rcu_dereference(txq->qdisc);
3049
3050 __netif_schedule(q);
3051 }
3052 rcu_read_unlock();
3053}
3054EXPORT_SYMBOL(netif_schedule_queue);
3055
John Fastabend46e5da40a2014-09-12 20:04:52 -07003056void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3057{
3058 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3059 struct Qdisc *q;
3060
3061 rcu_read_lock();
3062 q = rcu_dereference(dev_queue->qdisc);
3063 __netif_schedule(q);
3064 rcu_read_unlock();
3065 }
3066}
3067EXPORT_SYMBOL(netif_tx_wake_queue);
3068
Eric Dumazete6247022013-12-05 04:45:08 -08003069void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
3070{
3071 unsigned long flags;
3072
Myungho Jung98998862017-04-25 11:58:15 -07003073 if (unlikely(!skb))
3074 return;
3075
Reshetova, Elena63354792017-06-30 13:07:58 +03003076 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08003077 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03003078 refcount_set(&skb->users, 0);
3079 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08003080 return;
3081 }
3082 get_kfree_skb_cb(skb)->reason = reason;
3083 local_irq_save(flags);
3084 skb->next = __this_cpu_read(softnet_data.completion_queue);
3085 __this_cpu_write(softnet_data.completion_queue, skb);
3086 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3087 local_irq_restore(flags);
3088}
3089EXPORT_SYMBOL(__dev_kfree_skb_irq);
3090
3091void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08003092{
3093 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08003094 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08003095 else
3096 dev_kfree_skb(skb);
3097}
Eric Dumazete6247022013-12-05 04:45:08 -08003098EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08003099
3100
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003101/**
3102 * netif_device_detach - mark device as removed
3103 * @dev: network device
3104 *
3105 * Mark device as removed from system and therefore no longer available.
3106 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003107void netif_device_detach(struct net_device *dev)
3108{
3109 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3110 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003111 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003112 }
3113}
3114EXPORT_SYMBOL(netif_device_detach);
3115
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003116/**
3117 * netif_device_attach - mark device as attached
3118 * @dev: network device
3119 *
3120 * Mark device as attached from system and restart if needed.
3121 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003122void netif_device_attach(struct net_device *dev)
3123{
3124 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3125 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003126 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003127 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003128 }
3129}
3130EXPORT_SYMBOL(netif_device_attach);
3131
Jiri Pirko5605c762015-05-12 14:56:12 +02003132/*
3133 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3134 * to be used as a distribution range.
3135 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003136static u16 skb_tx_hash(const struct net_device *dev,
3137 const struct net_device *sb_dev,
3138 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02003139{
3140 u32 hash;
3141 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003142 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02003143
Alexander Duyckeadec8772018-07-09 12:19:48 -04003144 if (dev->num_tc) {
3145 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3146
3147 qoffset = sb_dev->tc_to_txq[tc].offset;
3148 qcount = sb_dev->tc_to_txq[tc].count;
3149 }
3150
Jiri Pirko5605c762015-05-12 14:56:12 +02003151 if (skb_rx_queue_recorded(skb)) {
3152 hash = skb_get_rx_queue(skb);
Amritha Nambiar6e11d152020-02-24 10:56:00 -08003153 if (hash >= qoffset)
3154 hash -= qoffset;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003155 while (unlikely(hash >= qcount))
3156 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04003157 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02003158 }
3159
3160 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3161}
Jiri Pirko5605c762015-05-12 14:56:12 +02003162
Ben Hutchings36c92472012-01-17 07:57:56 +00003163static void skb_warn_bad_offload(const struct sk_buff *skb)
3164{
Wei Tang84d15ae2016-06-16 21:17:49 +08003165 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00003166 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01003167 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00003168
Ben Greearc846ad92013-04-19 10:45:52 +00003169 if (!net_ratelimit())
3170 return;
3171
Bjørn Mork88ad4172015-11-16 19:16:40 +01003172 if (dev) {
3173 if (dev->dev.parent)
3174 name = dev_driver_string(dev->dev.parent);
3175 else
3176 name = netdev_name(dev);
3177 }
Willem de Bruijn64131392019-07-07 05:51:55 -04003178 skb_dump(KERN_WARNING, skb, false);
3179 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01003180 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04003181 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00003182}
3183
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184/*
3185 * Invalidate hardware checksum when packet is to be mangled, and
3186 * complete checksum manually on outgoing path.
3187 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003188int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189{
Al Virod3bc23e2006-11-14 21:24:49 -08003190 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07003191 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Patrick McHardy84fa7932006-08-29 16:44:56 -07003193 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07003194 goto out_set_summed;
3195
Yi Li3aefd7d2020-10-27 13:59:04 +08003196 if (unlikely(skb_is_gso(skb))) {
Ben Hutchings36c92472012-01-17 07:57:56 +00003197 skb_warn_bad_offload(skb);
3198 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 }
3200
Eric Dumazetcef401d2013-01-25 20:34:37 +00003201 /* Before computing a checksum, we should make sure no frag could
3202 * be modified by an external entity : checksum could be wrong.
3203 */
3204 if (skb_has_shared_frag(skb)) {
3205 ret = __skb_linearize(skb);
3206 if (ret)
3207 goto out;
3208 }
3209
Michał Mirosław55508d62010-12-14 15:24:08 +00003210 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07003211 BUG_ON(offset >= skb_headlen(skb));
3212 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3213
3214 offset += skb->csum_offset;
3215 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3216
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003217 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3218 if (ret)
3219 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07003221 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07003222out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003224out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 return ret;
3226}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003227EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Davide Carattib72b5bf2017-05-18 15:44:38 +02003229int skb_crc32c_csum_help(struct sk_buff *skb)
3230{
3231 __le32 crc32c_csum;
3232 int ret = 0, offset, start;
3233
3234 if (skb->ip_summed != CHECKSUM_PARTIAL)
3235 goto out;
3236
3237 if (unlikely(skb_is_gso(skb)))
3238 goto out;
3239
3240 /* Before computing a checksum, we should make sure no frag could
3241 * be modified by an external entity : checksum could be wrong.
3242 */
3243 if (unlikely(skb_has_shared_frag(skb))) {
3244 ret = __skb_linearize(skb);
3245 if (ret)
3246 goto out;
3247 }
3248 start = skb_checksum_start_offset(skb);
3249 offset = start + offsetof(struct sctphdr, checksum);
3250 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3251 ret = -EINVAL;
3252 goto out;
3253 }
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003254
3255 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3256 if (ret)
3257 goto out;
3258
Davide Carattib72b5bf2017-05-18 15:44:38 +02003259 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3260 skb->len - start, ~(__u32)0,
3261 crc32c_csum_stub));
3262 *(__le32 *)(skb->data + offset) = crc32c_csum;
3263 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02003264 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003265out:
3266 return ret;
3267}
3268
Vlad Yasevich53d64712014-03-27 17:26:18 -04003269__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003270{
3271 __be16 type = skb->protocol;
3272
Pravin B Shelar19acc322013-05-07 20:41:07 +00003273 /* Tunnel gso handlers can set protocol to ethernet. */
3274 if (type == htons(ETH_P_TEB)) {
3275 struct ethhdr *eth;
3276
3277 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3278 return 0;
3279
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003280 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003281 type = eth->h_proto;
3282 }
3283
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003284 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003285}
3286
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003287/**
3288 * skb_mac_gso_segment - mac layer segmentation handler.
3289 * @skb: buffer to segment
3290 * @features: features for the output path (see dev->features)
3291 */
3292struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3293 netdev_features_t features)
3294{
3295 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3296 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003297 int vlan_depth = skb->mac_len;
3298 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003299
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003300 if (unlikely(!type))
3301 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003302
Vlad Yasevich53d64712014-03-27 17:26:18 -04003303 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003304
3305 rcu_read_lock();
3306 list_for_each_entry_rcu(ptype, &offload_base, list) {
3307 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003308 segs = ptype->callbacks.gso_segment(skb, features);
3309 break;
3310 }
3311 }
3312 rcu_read_unlock();
3313
3314 __skb_push(skb, skb->data - skb_mac_header(skb));
3315
3316 return segs;
3317}
3318EXPORT_SYMBOL(skb_mac_gso_segment);
3319
3320
Cong Wang12b00042013-02-05 16:36:38 +00003321/* openvswitch calls this on rx path, so we need a different check.
3322 */
3323static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3324{
3325 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003326 return skb->ip_summed != CHECKSUM_PARTIAL &&
3327 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003328
3329 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003330}
3331
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003332/**
Cong Wang12b00042013-02-05 16:36:38 +00003333 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003334 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003335 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003336 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003337 *
3338 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003339 *
3340 * It may return NULL if the skb requires no segmentation. This is
3341 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003342 *
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003343 * Segmentation preserves SKB_GSO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003344 */
Cong Wang12b00042013-02-05 16:36:38 +00003345struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3346 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003347{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003348 struct sk_buff *segs;
3349
Cong Wang12b00042013-02-05 16:36:38 +00003350 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003351 int err;
3352
Eric Dumazetb2504a52017-01-31 10:20:32 -08003353 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003354 err = skb_cow_head(skb, 0);
3355 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003356 return ERR_PTR(err);
3357 }
3358
Alexander Duyck802ab552016-04-10 21:45:03 -04003359 /* Only report GSO partial support if it will enable us to
3360 * support segmentation on this frame without needing additional
3361 * work.
3362 */
3363 if (features & NETIF_F_GSO_PARTIAL) {
3364 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3365 struct net_device *dev = skb->dev;
3366
3367 partial_features |= dev->features & dev->gso_partial_features;
3368 if (!skb_gso_ok(skb, features | partial_features))
3369 features &= ~NETIF_F_GSO_PARTIAL;
3370 }
3371
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003372 BUILD_BUG_ON(SKB_GSO_CB_OFFSET +
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003373 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3374
Pravin B Shelar68c33162013-02-14 14:02:41 +00003375 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003376 SKB_GSO_CB(skb)->encap_level = 0;
3377
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003378 skb_reset_mac_header(skb);
3379 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003380
Eric Dumazetb2504a52017-01-31 10:20:32 -08003381 segs = skb_mac_gso_segment(skb, features);
3382
Steffen Klassert3a1296a2020-01-25 11:26:44 +01003383 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003384 skb_warn_bad_offload(skb);
3385
3386 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003387}
Cong Wang12b00042013-02-05 16:36:38 +00003388EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003389
Herbert Xufb286bb2005-11-10 13:01:24 -08003390/* Take action when hardware reception checksum errors are detected. */
3391#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003392void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003393{
3394 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003395 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Willem de Bruijn64131392019-07-07 05:51:55 -04003396 skb_dump(KERN_ERR, skb, true);
Herbert Xufb286bb2005-11-10 13:01:24 -08003397 dump_stack();
3398 }
3399}
3400EXPORT_SYMBOL(netdev_rx_csum_fault);
3401#endif
3402
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003403/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003404static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003406#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 int i;
tchardingf4563a72017-02-09 17:56:07 +11003408
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003409 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003410 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3411 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003412
Ian Campbellea2ab692011-08-22 23:44:58 +00003413 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003414 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003415 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003416 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003417#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 return 0;
3419}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
Simon Horman3b392dd2014-06-04 08:53:17 +09003421/* If MPLS offload request, verify we are testing hardware MPLS features
3422 * instead of standard features for the netdev.
3423 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003424#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003425static netdev_features_t net_mpls_features(struct sk_buff *skb,
3426 netdev_features_t features,
3427 __be16 type)
3428{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003429 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003430 features &= skb->dev->mpls_features;
3431
3432 return features;
3433}
3434#else
3435static netdev_features_t net_mpls_features(struct sk_buff *skb,
3436 netdev_features_t features,
3437 __be16 type)
3438{
3439 return features;
3440}
3441#endif
3442
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003443static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003444 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003445{
Simon Horman3b392dd2014-06-04 08:53:17 +09003446 __be16 type;
3447
Miaohe Lin9fc95f52020-07-30 19:02:36 +08003448 type = skb_network_protocol(skb, NULL);
Simon Horman3b392dd2014-06-04 08:53:17 +09003449 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003450
Ed Cashinc0d680e2012-09-19 15:49:00 +00003451 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003452 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003453 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003454 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003455 if (illegal_highdma(skb->dev, skb))
3456 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003457
3458 return features;
3459}
3460
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003461netdev_features_t passthru_features_check(struct sk_buff *skb,
3462 struct net_device *dev,
3463 netdev_features_t features)
3464{
3465 return features;
3466}
3467EXPORT_SYMBOL(passthru_features_check);
3468
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003469static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003470 struct net_device *dev,
3471 netdev_features_t features)
3472{
3473 return vlan_features_check(skb, features);
3474}
3475
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003476static netdev_features_t gso_features_check(const struct sk_buff *skb,
3477 struct net_device *dev,
3478 netdev_features_t features)
3479{
3480 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3481
3482 if (gso_segs > dev->gso_max_segs)
3483 return features & ~NETIF_F_GSO_MASK;
3484
Heiner Kallweit1d155df2020-11-21 00:22:20 +01003485 if (!skb_shinfo(skb)->gso_type) {
3486 skb_warn_bad_offload(skb);
3487 return features & ~NETIF_F_GSO_MASK;
3488 }
3489
Alexander Duyck802ab552016-04-10 21:45:03 -04003490 /* Support for GSO partial features requires software
3491 * intervention before we can actually process the packets
3492 * so we need to strip support for any partial features now
3493 * and we can pull them back in after we have partially
3494 * segmented the frame.
3495 */
3496 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3497 features &= ~dev->gso_partial_features;
3498
3499 /* Make sure to clear the IPv4 ID mangling feature if the
3500 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003501 */
3502 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3503 struct iphdr *iph = skb->encapsulation ?
3504 inner_ip_hdr(skb) : ip_hdr(skb);
3505
3506 if (!(iph->frag_off & htons(IP_DF)))
3507 features &= ~NETIF_F_TSO_MANGLEID;
3508 }
3509
3510 return features;
3511}
3512
Florian Westphalc1e756b2014-05-05 15:00:44 +02003513netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003514{
Jesse Gross5f352272014-12-23 22:37:26 -08003515 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003516 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003517
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003518 if (skb_is_gso(skb))
3519 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003520
Jesse Gross5f352272014-12-23 22:37:26 -08003521 /* If encapsulation offload request, verify we are testing
3522 * hardware encapsulation features instead of standard
3523 * features for the netdev
3524 */
3525 if (skb->encapsulation)
3526 features &= dev->hw_enc_features;
3527
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003528 if (skb_vlan_tagged(skb))
3529 features = netdev_intersect_features(features,
3530 dev->vlan_features |
3531 NETIF_F_HW_VLAN_CTAG_TX |
3532 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003533
Jesse Gross5f352272014-12-23 22:37:26 -08003534 if (dev->netdev_ops->ndo_features_check)
3535 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3536 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003537 else
3538 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003539
Florian Westphalc1e756b2014-05-05 15:00:44 +02003540 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003541}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003542EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003543
David S. Miller2ea25512014-08-29 21:10:01 -07003544static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003545 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003546{
David S. Miller2ea25512014-08-29 21:10:01 -07003547 unsigned int len;
3548 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003549
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003550 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003551 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003552
David S. Miller2ea25512014-08-29 21:10:01 -07003553 len = skb->len;
Willy Tarreau37447412020-08-10 10:27:42 +02003554 PRANDOM_ADD_NOISE(skb, dev, txq, len + jiffies);
David S. Miller2ea25512014-08-29 21:10:01 -07003555 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003556 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003557 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003558
Patrick McHardy572a9d72009-11-10 06:14:14 +00003559 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003560}
David S. Miller2ea25512014-08-29 21:10:01 -07003561
David S. Miller8dcda222014-09-01 15:06:40 -07003562struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3563 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003564{
3565 struct sk_buff *skb = first;
3566 int rc = NETDEV_TX_OK;
3567
3568 while (skb) {
3569 struct sk_buff *next = skb->next;
3570
David S. Millera8305bf2018-07-29 20:42:53 -07003571 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003572 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003573 if (unlikely(!dev_xmit_complete(rc))) {
3574 skb->next = next;
3575 goto out;
3576 }
3577
3578 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003579 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003580 rc = NETDEV_TX_BUSY;
3581 break;
3582 }
3583 }
3584
3585out:
3586 *ret = rc;
3587 return skb;
3588}
3589
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003590static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3591 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003592{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003593 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003594 !vlan_hw_offload_capable(features, skb->vlan_proto))
3595 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003596 return skb;
3597}
3598
Davide Caratti43c26a12017-05-18 15:44:41 +02003599int skb_csum_hwoffload_help(struct sk_buff *skb,
3600 const netdev_features_t features)
3601{
3602 if (unlikely(skb->csum_not_inet))
3603 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3604 skb_crc32c_csum_help(skb);
3605
3606 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3607}
3608EXPORT_SYMBOL(skb_csum_hwoffload_help);
3609
Steffen Klassertf53c7232017-12-20 10:41:36 +01003610static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003611{
3612 netdev_features_t features;
3613
David S. Millereae3f882014-08-30 15:17:13 -07003614 features = netif_skb_features(skb);
3615 skb = validate_xmit_vlan(skb, features);
3616 if (unlikely(!skb))
3617 goto out_null;
3618
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003619 skb = sk_validate_xmit_skb(skb, dev);
3620 if (unlikely(!skb))
3621 goto out_null;
3622
Johannes Berg8b86a612015-04-17 15:45:04 +02003623 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003624 struct sk_buff *segs;
3625
3626 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003627 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003628 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003629 } else if (segs) {
3630 consume_skb(skb);
3631 skb = segs;
3632 }
David S. Millereae3f882014-08-30 15:17:13 -07003633 } else {
3634 if (skb_needs_linearize(skb, features) &&
3635 __skb_linearize(skb))
3636 goto out_kfree_skb;
3637
3638 /* If packet is not checksummed and device does not
3639 * support checksumming for this protocol, complete
3640 * checksumming here.
3641 */
3642 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3643 if (skb->encapsulation)
3644 skb_set_inner_transport_header(skb,
3645 skb_checksum_start_offset(skb));
3646 else
3647 skb_set_transport_header(skb,
3648 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003649 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003650 goto out_kfree_skb;
3651 }
3652 }
3653
Steffen Klassertf53c7232017-12-20 10:41:36 +01003654 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003655
David S. Millereae3f882014-08-30 15:17:13 -07003656 return skb;
3657
3658out_kfree_skb:
3659 kfree_skb(skb);
3660out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003661 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003662 return NULL;
3663}
3664
Steffen Klassertf53c7232017-12-20 10:41:36 +01003665struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003666{
3667 struct sk_buff *next, *head = NULL, *tail;
3668
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003669 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003670 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003671 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003672
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003673 /* in case skb wont be segmented, point to itself */
3674 skb->prev = skb;
3675
Steffen Klassertf53c7232017-12-20 10:41:36 +01003676 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003677 if (!skb)
3678 continue;
3679
3680 if (!head)
3681 head = skb;
3682 else
3683 tail->next = skb;
3684 /* If skb was segmented, skb->prev points to
3685 * the last segment. If not, it still contains skb.
3686 */
3687 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003688 }
3689 return head;
3690}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003691EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003692
Eric Dumazet1def9232013-01-10 12:36:42 +00003693static void qdisc_pkt_len_init(struct sk_buff *skb)
3694{
3695 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3696
3697 qdisc_skb_cb(skb)->pkt_len = skb->len;
3698
3699 /* To get more precise estimation of bytes sent on wire,
3700 * we add to pkt_len the headers size of all segments
3701 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003702 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003703 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003704 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003705
Eric Dumazet757b8b12013-01-15 21:14:21 -08003706 /* mac layer + network layer */
3707 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3708
3709 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003710 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3711 const struct tcphdr *th;
3712 struct tcphdr _tcphdr;
3713
3714 th = skb_header_pointer(skb, skb_transport_offset(skb),
3715 sizeof(_tcphdr), &_tcphdr);
3716 if (likely(th))
3717 hdr_len += __tcp_hdrlen(th);
3718 } else {
3719 struct udphdr _udphdr;
3720
3721 if (skb_header_pointer(skb, skb_transport_offset(skb),
3722 sizeof(_udphdr), &_udphdr))
3723 hdr_len += sizeof(struct udphdr);
3724 }
Jason Wang15e5a032013-03-25 20:19:59 +00003725
3726 if (shinfo->gso_type & SKB_GSO_DODGY)
3727 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3728 shinfo->gso_size);
3729
3730 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003731 }
3732}
3733
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003734static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3735 struct net_device *dev,
3736 struct netdev_queue *txq)
3737{
3738 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003739 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003740 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003741 int rc;
3742
Eric Dumazeta2da5702011-01-20 03:48:19 +00003743 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003744
3745 if (q->flags & TCQ_F_NOLOCK) {
Petr Machataac5c66f2020-07-14 20:03:08 +03003746 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni379349e2020-02-18 18:15:44 +01003747 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003748
3749 if (unlikely(to_free))
3750 kfree_skb_list(to_free);
3751 return rc;
3752 }
3753
Eric Dumazet79640a42010-06-02 05:09:29 -07003754 /*
3755 * Heuristic to force contended enqueues to serialize on a
3756 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003757 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003758 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003759 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003760 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003761 if (unlikely(contended))
3762 spin_lock(&q->busylock);
3763
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003764 spin_lock(root_lock);
3765 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003766 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003767 rc = NET_XMIT_DROP;
3768 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003769 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003770 /*
3771 * This is a work-conserving queue; there are no old skbs
3772 * waiting to be sent out; and the qdisc is not running -
3773 * xmit the skb directly.
3774 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003775
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003776 qdisc_bstats_update(q, skb);
3777
Eric Dumazet55a93b32014-10-03 15:31:07 -07003778 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003779 if (unlikely(contended)) {
3780 spin_unlock(&q->busylock);
3781 contended = false;
3782 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003783 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003784 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003785
John Fastabend6c148182017-12-07 09:54:06 -08003786 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003787 rc = NET_XMIT_SUCCESS;
3788 } else {
Petr Machataac5c66f2020-07-14 20:03:08 +03003789 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003790 if (qdisc_run_begin(q)) {
3791 if (unlikely(contended)) {
3792 spin_unlock(&q->busylock);
3793 contended = false;
3794 }
3795 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003796 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003797 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003798 }
3799 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003800 if (unlikely(to_free))
3801 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003802 if (unlikely(contended))
3803 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003804 return rc;
3805}
3806
Daniel Borkmann86f85152013-12-29 17:27:11 +01003807#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003808static void skb_update_prio(struct sk_buff *skb)
3809{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003810 const struct netprio_map *map;
3811 const struct sock *sk;
3812 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003813
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003814 if (skb->priority)
3815 return;
3816 map = rcu_dereference_bh(skb->dev->priomap);
3817 if (!map)
3818 return;
3819 sk = skb_to_full_sk(skb);
3820 if (!sk)
3821 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003822
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003823 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3824
3825 if (prioidx < map->priomap_len)
3826 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003827}
3828#else
3829#define skb_update_prio(skb)
3830#endif
3831
Dave Jonesd29f7492008-07-22 14:09:06 -07003832/**
Michel Machado95603e22012-06-12 10:16:35 +00003833 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003834 * @net: network namespace this loopback is happening in
3835 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003836 * @skb: buffer to transmit
3837 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003838int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003839{
3840 skb_reset_mac_header(skb);
3841 __skb_pull(skb, skb_network_offset(skb));
3842 skb->pkt_type = PACKET_LOOPBACK;
3843 skb->ip_summed = CHECKSUM_UNNECESSARY;
3844 WARN_ON(!skb_dst(skb));
3845 skb_dst_force(skb);
3846 netif_rx_ni(skb);
3847 return 0;
3848}
3849EXPORT_SYMBOL(dev_loopback_xmit);
3850
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003851#ifdef CONFIG_NET_EGRESS
3852static struct sk_buff *
3853sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3854{
Jiri Pirko46209402017-11-03 11:46:25 +01003855 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003856 struct tcf_result cl_res;
3857
Jiri Pirko46209402017-11-03 11:46:25 +01003858 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003859 return skb;
3860
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003861 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
wenxuaadaca92020-11-25 12:01:21 +08003862 qdisc_skb_cb(skb)->mru = 0;
Jiri Pirko46209402017-11-03 11:46:25 +01003863 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003864
Jiri Pirko46209402017-11-03 11:46:25 +01003865 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003866 case TC_ACT_OK:
3867 case TC_ACT_RECLASSIFY:
3868 skb->tc_index = TC_H_MIN(cl_res.classid);
3869 break;
3870 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003871 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003872 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003873 kfree_skb(skb);
3874 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003875 case TC_ACT_STOLEN:
3876 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003877 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003878 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003879 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003880 return NULL;
3881 case TC_ACT_REDIRECT:
3882 /* No need to push/pop skb's mac_header here on egress! */
3883 skb_do_redirect(skb);
3884 *ret = NET_XMIT_SUCCESS;
3885 return NULL;
3886 default:
3887 break;
3888 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01003889
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003890 return skb;
3891}
3892#endif /* CONFIG_NET_EGRESS */
3893
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003894#ifdef CONFIG_XPS
3895static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3896 struct xps_dev_maps *dev_maps, unsigned int tci)
3897{
3898 struct xps_map *map;
3899 int queue_index = -1;
3900
3901 if (dev->num_tc) {
3902 tci *= dev->num_tc;
3903 tci += netdev_get_prio_tc_map(dev, skb->priority);
3904 }
3905
3906 map = rcu_dereference(dev_maps->attr_map[tci]);
3907 if (map) {
3908 if (map->len == 1)
3909 queue_index = map->queues[0];
3910 else
3911 queue_index = map->queues[reciprocal_scale(
3912 skb_get_hash(skb), map->len)];
3913 if (unlikely(queue_index >= dev->real_num_tx_queues))
3914 queue_index = -1;
3915 }
3916 return queue_index;
3917}
3918#endif
3919
Alexander Duyckeadec8772018-07-09 12:19:48 -04003920static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3921 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003922{
3923#ifdef CONFIG_XPS
3924 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003925 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003926 int queue_index = -1;
3927
Amritha Nambiar04157462018-06-29 21:26:46 -07003928 if (!static_key_false(&xps_needed))
3929 return -1;
3930
Jiri Pirko638b2a62015-05-12 14:56:13 +02003931 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003932 if (!static_key_false(&xps_rxqs_needed))
3933 goto get_cpus_map;
3934
Alexander Duyckeadec8772018-07-09 12:19:48 -04003935 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003936 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003937 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003938
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003939 if (tci >= 0 && tci < dev->num_rx_queues)
3940 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3941 tci);
3942 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003943
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003944get_cpus_map:
3945 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003946 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003947 if (dev_maps) {
3948 unsigned int tci = skb->sender_cpu - 1;
3949
3950 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3951 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003952 }
3953 }
3954 rcu_read_unlock();
3955
3956 return queue_index;
3957#else
3958 return -1;
3959#endif
3960}
3961
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003962u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003963 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003964{
3965 return 0;
3966}
3967EXPORT_SYMBOL(dev_pick_tx_zero);
3968
3969u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003970 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003971{
3972 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3973}
3974EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3975
Paolo Abenib71b5832019-03-20 11:02:05 +01003976u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3977 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003978{
3979 struct sock *sk = skb->sk;
3980 int queue_index = sk_tx_queue_get(sk);
3981
Alexander Duyckeadec8772018-07-09 12:19:48 -04003982 sb_dev = sb_dev ? : dev;
3983
Jiri Pirko638b2a62015-05-12 14:56:13 +02003984 if (queue_index < 0 || skb->ooo_okay ||
3985 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003986 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003987
Jiri Pirko638b2a62015-05-12 14:56:13 +02003988 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003989 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003990
3991 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003992 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003993 rcu_access_pointer(sk->sk_dst_cache))
3994 sk_tx_queue_set(sk, new_index);
3995
3996 queue_index = new_index;
3997 }
3998
3999 return queue_index;
4000}
Paolo Abenib71b5832019-03-20 11:02:05 +01004001EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004002
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004003struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4004 struct sk_buff *skb,
4005 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004006{
4007 int queue_index = 0;
4008
4009#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08004010 u32 sender_cpu = skb->sender_cpu - 1;
4011
4012 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004013 skb->sender_cpu = raw_smp_processor_id() + 1;
4014#endif
4015
4016 if (dev->real_num_tx_queues != 1) {
4017 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11004018
Jiri Pirko638b2a62015-05-12 14:56:13 +02004019 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01004020 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004021 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004022 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004023
Alexander Duyckd5845272017-11-22 10:57:41 -08004024 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004025 }
4026
4027 skb_set_queue_mapping(skb, queue_index);
4028 return netdev_get_tx_queue(dev, queue_index);
4029}
4030
Michel Machado95603e22012-06-12 10:16:35 +00004031/**
Jason Wang9d08dd32014-01-20 11:25:13 +08004032 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07004033 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04004034 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07004035 *
4036 * Queue a buffer for transmission to a network device. The caller must
4037 * have set the device and priority and built the buffer before calling
4038 * this function. The function can be called from an interrupt.
4039 *
4040 * A negative errno code is returned on a failure. A success does not
4041 * guarantee the frame will be transmitted as it may be dropped due
4042 * to congestion or traffic shaping.
4043 *
4044 * -----------------------------------------------------------------------------------
4045 * I notice this method can also return errors from the queue disciplines,
4046 * including NET_XMIT_DROP, which is a positive value. So, errors can also
4047 * be positive.
4048 *
4049 * Regardless of the return value, the skb is consumed, so it is currently
4050 * difficult to retry a send to this method. (You can bump the ref count
4051 * before sending to hold a reference for retry if you are careful.)
4052 *
4053 * When calling this method, interrupts MUST be enabled. This is because
4054 * the BH enable code must have IRQs enabled so that it will not deadlock.
4055 * --BLG
4056 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04004057static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058{
4059 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07004060 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 struct Qdisc *q;
4062 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01004063 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00004065 skb_reset_mac_header(skb);
4066
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004067 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
4068 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
4069
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004070 /* Disable soft irqs for various locks below. Also
4071 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004073 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Neil Horman5bc14212011-11-22 05:10:51 +00004075 skb_update_prio(skb);
4076
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004077 qdisc_pkt_len_init(skb);
4078#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004079 skb->tc_at_ingress = 0;
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004080# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004081 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004082 skb = sch_handle_egress(skb, &rc, dev);
4083 if (!skb)
4084 goto out;
4085 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004086# endif
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004087#endif
Eric Dumazet02875872014-10-05 18:38:35 -07004088 /* If device/qdisc don't need skb->dst, release it right now while
4089 * its hot in this cpu cache.
4090 */
4091 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4092 skb_dst_drop(skb);
4093 else
4094 skb_dst_force(skb);
4095
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004096 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08004097 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07004098
Koki Sanagicf66ba52010-08-23 18:45:02 +09004099 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00004101 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07004102 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 }
4104
4105 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11004106 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
tchardingeb13da12017-02-09 17:56:06 +11004108 * Really, it is unlikely that netif_tx_lock protection is necessary
4109 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
4110 * counters.)
4111 * However, it is possible, that they rely on protection
4112 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
tchardingeb13da12017-02-09 17:56:06 +11004114 * Check this and shot the lock. It is not prone from deadlocks.
4115 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 */
4117 if (dev->flags & IFF_UP) {
4118 int cpu = smp_processor_id(); /* ok because BHs are off */
4119
David S. Millerc773e842008-07-08 23:13:53 -07004120 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004121 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07004122 goto recursion_alert;
4123
Steffen Klassertf53c7232017-12-20 10:41:36 +01004124 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004125 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07004126 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004127
Willy Tarreau37447412020-08-10 10:27:42 +02004128 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
David S. Millerc773e842008-07-08 23:13:53 -07004129 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Tom Herbert734664982011-11-28 16:32:44 +00004131 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004132 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07004133 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02004134 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00004135 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07004136 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 goto out;
4138 }
4139 }
David S. Millerc773e842008-07-08 23:13:53 -07004140 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00004141 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4142 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 } else {
4144 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07004145 * unfortunately
4146 */
4147recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00004148 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4149 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 }
4151 }
4152
4153 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07004154 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
Eric Dumazet015f0682014-03-27 08:45:56 -07004156 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004157 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 return rc;
4159out:
Herbert Xud4828d82006-06-22 02:28:18 -07004160 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 return rc;
4162}
Jason Wangf663dd92014-01-10 16:18:26 +08004163
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004164int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08004165{
4166 return __dev_queue_xmit(skb, NULL);
4167}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004168EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
Alexander Duyckeadec8772018-07-09 12:19:48 -04004170int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08004171{
Alexander Duyckeadec8772018-07-09 12:19:48 -04004172 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08004173}
4174EXPORT_SYMBOL(dev_queue_xmit_accel);
4175
Björn Töpel36ccdf82020-11-23 18:56:00 +01004176int __dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004177{
4178 struct net_device *dev = skb->dev;
4179 struct sk_buff *orig_skb = skb;
4180 struct netdev_queue *txq;
4181 int ret = NETDEV_TX_BUSY;
4182 bool again = false;
4183
4184 if (unlikely(!netif_running(dev) ||
4185 !netif_carrier_ok(dev)))
4186 goto drop;
4187
4188 skb = validate_xmit_skb_list(skb, dev, &again);
4189 if (skb != orig_skb)
4190 goto drop;
4191
4192 skb_set_queue_mapping(skb, queue_id);
4193 txq = skb_get_tx_queue(dev, skb);
Willy Tarreau37447412020-08-10 10:27:42 +02004194 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004195
4196 local_bh_disable();
4197
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004198 dev_xmit_recursion_inc();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004199 HARD_TX_LOCK(dev, txq, smp_processor_id());
4200 if (!netif_xmit_frozen_or_drv_stopped(txq))
4201 ret = netdev_start_xmit(skb, dev, txq, false);
4202 HARD_TX_UNLOCK(dev, txq);
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004203 dev_xmit_recursion_dec();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004204
4205 local_bh_enable();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004206 return ret;
4207drop:
4208 atomic_long_inc(&dev->tx_dropped);
4209 kfree_skb_list(skb);
4210 return NET_XMIT_DROP;
4211}
Björn Töpel36ccdf82020-11-23 18:56:00 +01004212EXPORT_SYMBOL(__dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
tchardingeb13da12017-02-09 17:56:06 +11004214/*************************************************************************
4215 * Receiver routines
4216 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004218int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00004219EXPORT_SYMBOL(netdev_max_backlog);
4220
Eric Dumazet3b098e22010-05-15 23:57:10 -07004221int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004222int netdev_budget __read_mostly = 300;
Konstantin Khlebnikova48379802020-04-06 14:39:32 +03004223/* Must be at least 2 jiffes to guarantee 1 jiffy timeout */
4224unsigned int __read_mostly netdev_budget_usecs = 2 * USEC_PER_SEC / HZ;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01004225int weight_p __read_mostly = 64; /* old backlog weight */
4226int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4227int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4228int dev_rx_weight __read_mostly = 64;
4229int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01004230/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4231int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004233/* Called with irq disabled */
4234static inline void ____napi_schedule(struct softnet_data *sd,
4235 struct napi_struct *napi)
4236{
4237 list_add_tail(&napi->poll_list, &sd->poll_list);
4238 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4239}
4240
Eric Dumazetdf334542010-03-24 19:13:54 +00004241#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07004242
4243/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00004244struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07004245EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004246u32 rps_cpu_mask __read_mostly;
4247EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07004248
Eric Dumazetdc053602019-03-22 08:56:38 -07004249struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04004250EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07004251struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08004252EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00004253
Ben Hutchingsc4454772011-01-19 11:03:53 +00004254static struct rps_dev_flow *
4255set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4256 struct rps_dev_flow *rflow, u16 next_cpu)
4257{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004258 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004259#ifdef CONFIG_RFS_ACCEL
4260 struct netdev_rx_queue *rxqueue;
4261 struct rps_dev_flow_table *flow_table;
4262 struct rps_dev_flow *old_rflow;
4263 u32 flow_id;
4264 u16 rxq_index;
4265 int rc;
4266
4267 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004268 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4269 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004270 goto out;
4271 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4272 if (rxq_index == skb_get_rx_queue(skb))
4273 goto out;
4274
4275 rxqueue = dev->_rx + rxq_index;
4276 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4277 if (!flow_table)
4278 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004279 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004280 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4281 rxq_index, flow_id);
4282 if (rc < 0)
4283 goto out;
4284 old_rflow = rflow;
4285 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004286 rflow->filter = rc;
4287 if (old_rflow->filter == rflow->filter)
4288 old_rflow->filter = RPS_NO_FILTER;
4289 out:
4290#endif
4291 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004292 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004293 }
4294
Ben Hutchings09994d12011-10-03 04:42:46 +00004295 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004296 return rflow;
4297}
4298
Tom Herbert0a9627f2010-03-16 08:03:29 +00004299/*
4300 * get_rps_cpu is called from netif_receive_skb and returns the target
4301 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004302 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004303 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004304static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4305 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004306{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004307 const struct rps_sock_flow_table *sock_flow_table;
4308 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004309 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004310 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004311 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004312 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004313 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004314
Tom Herbert0a9627f2010-03-16 08:03:29 +00004315 if (skb_rx_queue_recorded(skb)) {
4316 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004317
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004318 if (unlikely(index >= dev->real_num_rx_queues)) {
4319 WARN_ONCE(dev->real_num_rx_queues > 1,
4320 "%s received packet on queue %u, but number "
4321 "of RX queues is %u\n",
4322 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004323 goto done;
4324 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004325 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004326 }
4327
Eric Dumazet567e4b72015-02-06 12:59:01 -08004328 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4329
4330 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4331 map = rcu_dereference(rxqueue->rps_map);
4332 if (!flow_table && !map)
4333 goto done;
4334
Changli Gao2d47b452010-08-17 19:00:56 +00004335 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004336 hash = skb_get_hash(skb);
4337 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004338 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004339
Tom Herbertfec5e652010-04-16 16:01:27 -07004340 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4341 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004342 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004343 u32 next_cpu;
4344 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004345
Eric Dumazet567e4b72015-02-06 12:59:01 -08004346 /* First check into global flow table if there is a match */
4347 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4348 if ((ident ^ hash) & ~rps_cpu_mask)
4349 goto try_rps;
4350
4351 next_cpu = ident & rps_cpu_mask;
4352
4353 /* OK, now we know there is a match,
4354 * we can look at the local (per receive queue) flow table
4355 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004356 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004357 tcpu = rflow->cpu;
4358
Tom Herbertfec5e652010-04-16 16:01:27 -07004359 /*
4360 * If the desired CPU (where last recvmsg was done) is
4361 * different from current CPU (one in the rx-queue flow
4362 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004363 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004364 * - Current CPU is offline.
4365 * - The current CPU's queue tail has advanced beyond the
4366 * last packet that was enqueued using this table entry.
4367 * This guarantees that all previous packets for the flow
4368 * have been dequeued, thus preserving in order delivery.
4369 */
4370 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004371 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004372 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004373 rflow->last_qtail)) >= 0)) {
4374 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004375 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004376 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004377
Eric Dumazeta31196b2015-04-25 09:35:24 -07004378 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004379 *rflowp = rflow;
4380 cpu = tcpu;
4381 goto done;
4382 }
4383 }
4384
Eric Dumazet567e4b72015-02-06 12:59:01 -08004385try_rps:
4386
Tom Herbert0a9627f2010-03-16 08:03:29 +00004387 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004388 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004389 if (cpu_online(tcpu)) {
4390 cpu = tcpu;
4391 goto done;
4392 }
4393 }
4394
4395done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004396 return cpu;
4397}
4398
Ben Hutchingsc4454772011-01-19 11:03:53 +00004399#ifdef CONFIG_RFS_ACCEL
4400
4401/**
4402 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4403 * @dev: Device on which the filter was set
4404 * @rxq_index: RX queue index
4405 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4406 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4407 *
4408 * Drivers that implement ndo_rx_flow_steer() should periodically call
4409 * this function for each installed filter and remove the filters for
4410 * which it returns %true.
4411 */
4412bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4413 u32 flow_id, u16 filter_id)
4414{
4415 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4416 struct rps_dev_flow_table *flow_table;
4417 struct rps_dev_flow *rflow;
4418 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004419 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004420
4421 rcu_read_lock();
4422 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4423 if (flow_table && flow_id <= flow_table->mask) {
4424 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004425 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004426 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004427 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4428 rflow->last_qtail) <
4429 (int)(10 * flow_table->mask)))
4430 expire = false;
4431 }
4432 rcu_read_unlock();
4433 return expire;
4434}
4435EXPORT_SYMBOL(rps_may_expire_flow);
4436
4437#endif /* CONFIG_RFS_ACCEL */
4438
Tom Herbert0a9627f2010-03-16 08:03:29 +00004439/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004440static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004441{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004442 struct softnet_data *sd = data;
4443
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004444 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004445 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004446}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004447
Tom Herbertfec5e652010-04-16 16:01:27 -07004448#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004449
4450/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004451 * Check if this softnet_data structure is another cpu one
4452 * If yes, queue it to our IPI list and return 1
4453 * If no, return 0
4454 */
4455static int rps_ipi_queued(struct softnet_data *sd)
4456{
4457#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004458 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004459
4460 if (sd != mysd) {
4461 sd->rps_ipi_next = mysd->rps_ipi_list;
4462 mysd->rps_ipi_list = sd;
4463
4464 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4465 return 1;
4466 }
4467#endif /* CONFIG_RPS */
4468 return 0;
4469}
4470
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004471#ifdef CONFIG_NET_FLOW_LIMIT
4472int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4473#endif
4474
4475static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4476{
4477#ifdef CONFIG_NET_FLOW_LIMIT
4478 struct sd_flow_limit *fl;
4479 struct softnet_data *sd;
4480 unsigned int old_flow, new_flow;
4481
4482 if (qlen < (netdev_max_backlog >> 1))
4483 return false;
4484
Christoph Lameter903ceff2014-08-17 12:30:35 -05004485 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004486
4487 rcu_read_lock();
4488 fl = rcu_dereference(sd->flow_limit);
4489 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004490 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004491 old_flow = fl->history[fl->history_head];
4492 fl->history[fl->history_head] = new_flow;
4493
4494 fl->history_head++;
4495 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4496
4497 if (likely(fl->buckets[old_flow]))
4498 fl->buckets[old_flow]--;
4499
4500 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4501 fl->count++;
4502 rcu_read_unlock();
4503 return true;
4504 }
4505 }
4506 rcu_read_unlock();
4507#endif
4508 return false;
4509}
4510
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004511/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004512 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4513 * queue (may be a remote CPU queue).
4514 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004515static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4516 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004517{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004518 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004519 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004520 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004521
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004522 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004523
4524 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004525
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004526 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004527 if (!netif_running(skb->dev))
4528 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004529 qlen = skb_queue_len(&sd->input_pkt_queue);
4530 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004531 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004532enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004533 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004534 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004535 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004536 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004537 return NET_RX_SUCCESS;
4538 }
4539
Eric Dumazetebda37c22010-05-06 23:51:21 +00004540 /* Schedule NAPI for backlog device
4541 * We can use non atomic operation since we own the queue lock
4542 */
4543 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004544 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004545 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004546 }
4547 goto enqueue;
4548 }
4549
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004550drop:
Changli Gaodee42872010-05-02 05:42:16 +00004551 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004552 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004553
Tom Herbert0a9627f2010-03-16 08:03:29 +00004554 local_irq_restore(flags);
4555
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004556 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004557 kfree_skb(skb);
4558 return NET_RX_DROP;
4559}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004561static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4562{
4563 struct net_device *dev = skb->dev;
4564 struct netdev_rx_queue *rxqueue;
4565
4566 rxqueue = dev->_rx;
4567
4568 if (skb_rx_queue_recorded(skb)) {
4569 u16 index = skb_get_rx_queue(skb);
4570
4571 if (unlikely(index >= dev->real_num_rx_queues)) {
4572 WARN_ONCE(dev->real_num_rx_queues > 1,
4573 "%s received packet on queue %u, but number "
4574 "of RX queues is %u\n",
4575 dev->name, index, dev->real_num_rx_queues);
4576
4577 return rxqueue; /* Return first rxqueue */
4578 }
4579 rxqueue += index;
4580 }
4581 return rxqueue;
4582}
4583
John Fastabendd4455162017-07-17 09:26:45 -07004584static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004585 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004586 struct bpf_prog *xdp_prog)
4587{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004588 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004589 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004590 u32 metalen, act = XDP_DROP;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004591 __be16 orig_eth_type;
4592 struct ethhdr *eth;
4593 bool orig_bcast;
John Fastabendd4455162017-07-17 09:26:45 -07004594 int hlen, off;
4595 u32 mac_len;
4596
4597 /* Reinjected packets coming from act_mirred or similar should
4598 * not get XDP generic processing.
4599 */
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01004600 if (skb_is_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004601 return XDP_PASS;
4602
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004603 /* XDP packets must be linear and must have sufficient headroom
4604 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4605 * native XDP provides, thus we need to do it here as well.
4606 */
Toke Høiland-Jørgensenad1e03b2020-02-10 17:10:46 +01004607 if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004608 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4609 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4610 int troom = skb->tail + skb->data_len - skb->end;
4611
4612 /* In case we have to go down the path and also linearize,
4613 * then lets do the pskb_expand_head() work just once here.
4614 */
4615 if (pskb_expand_head(skb,
4616 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4617 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4618 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004619 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004620 goto do_drop;
4621 }
John Fastabendd4455162017-07-17 09:26:45 -07004622
4623 /* The XDP program wants to see the packet starting at the MAC
4624 * header.
4625 */
4626 mac_len = skb->data - skb_mac_header(skb);
4627 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004628 xdp->data = skb->data - mac_len;
4629 xdp->data_meta = xdp->data;
4630 xdp->data_end = xdp->data + hlen;
4631 xdp->data_hard_start = skb->data - skb_headroom(skb);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004632
4633 /* SKB "head" area always have tailroom for skb_shared_info */
4634 xdp->frame_sz = (void *)skb_end_pointer(skb) - xdp->data_hard_start;
4635 xdp->frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4636
Björn Töpel02671e22018-05-02 13:01:30 +02004637 orig_data_end = xdp->data_end;
4638 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004639 eth = (struct ethhdr *)xdp->data;
4640 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4641 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004642
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004643 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004644 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004645
Björn Töpel02671e22018-05-02 13:01:30 +02004646 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004647
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004648 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004649 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004650 if (off) {
4651 if (off > 0)
4652 __skb_pull(skb, off);
4653 else if (off < 0)
4654 __skb_push(skb, -off);
4655
4656 skb->mac_header += off;
4657 skb_reset_network_header(skb);
4658 }
John Fastabendd4455162017-07-17 09:26:45 -07004659
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004660 /* check if bpf_xdp_adjust_tail was used */
4661 off = xdp->data_end - orig_data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004662 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004663 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004664 skb->len += off; /* positive on grow, negative on shrink */
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004665 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004666
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004667 /* check if XDP changed eth hdr such SKB needs update */
4668 eth = (struct ethhdr *)xdp->data;
4669 if ((orig_eth_type != eth->h_proto) ||
4670 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4671 __skb_push(skb, ETH_HLEN);
4672 skb->protocol = eth_type_trans(skb, skb->dev);
4673 }
4674
John Fastabendd4455162017-07-17 09:26:45 -07004675 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004676 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004677 case XDP_TX:
4678 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004679 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004680 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004681 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004682 if (metalen)
4683 skb_metadata_set(skb, metalen);
4684 break;
John Fastabendd4455162017-07-17 09:26:45 -07004685 default:
4686 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004687 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004688 case XDP_ABORTED:
4689 trace_xdp_exception(skb->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004690 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004691 case XDP_DROP:
4692 do_drop:
4693 kfree_skb(skb);
4694 break;
4695 }
4696
4697 return act;
4698}
4699
4700/* When doing generic XDP we have to bypass the qdisc layer and the
4701 * network taps in order to match in-driver-XDP behavior.
4702 */
Jason Wang7c497472017-08-11 19:41:17 +08004703void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004704{
4705 struct net_device *dev = skb->dev;
4706 struct netdev_queue *txq;
4707 bool free_skb = true;
4708 int cpu, rc;
4709
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004710 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004711 cpu = smp_processor_id();
4712 HARD_TX_LOCK(dev, txq, cpu);
4713 if (!netif_xmit_stopped(txq)) {
4714 rc = netdev_start_xmit(skb, dev, txq, 0);
4715 if (dev_xmit_complete(rc))
4716 free_skb = false;
4717 }
4718 HARD_TX_UNLOCK(dev, txq);
4719 if (free_skb) {
4720 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4721 kfree_skb(skb);
4722 }
4723}
4724
Davidlohr Bueso02786472018-05-08 09:07:02 -07004725static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004726
Jason Wang7c497472017-08-11 19:41:17 +08004727int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004728{
John Fastabendd4455162017-07-17 09:26:45 -07004729 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004730 struct xdp_buff xdp;
4731 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004732 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004733
Björn Töpel02671e22018-05-02 13:01:30 +02004734 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004735 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004736 switch (act) {
4737 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004738 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004739 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004740 if (err)
4741 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004742 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004743 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004744 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004745 break;
4746 }
John Fastabendd4455162017-07-17 09:26:45 -07004747 return XDP_DROP;
4748 }
4749 }
4750 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004751out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004752 kfree_skb(skb);
4753 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004754}
Jason Wang7c497472017-08-11 19:41:17 +08004755EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004756
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004757static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004759 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760
Eric Dumazet588f0332011-11-15 04:12:55 +00004761 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
Koki Sanagicf66ba52010-08-23 18:45:02 +09004763 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004764
Eric Dumazetdf334542010-03-24 19:13:54 +00004765#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004766 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004767 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004768 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Changli Gaocece1942010-08-07 20:35:43 -07004770 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004771 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004772
4773 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004774 if (cpu < 0)
4775 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004776
4777 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4778
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004779 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004780 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004781 } else
4782#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004783 {
4784 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004785
Tom Herbertfec5e652010-04-16 16:01:27 -07004786 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4787 put_cpu();
4788 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004789 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004791
4792/**
4793 * netif_rx - post buffer to the network code
4794 * @skb: buffer to post
4795 *
4796 * This function receives a packet from a device driver and queues it for
4797 * the upper (protocol) levels to process. It always succeeds. The buffer
4798 * may be dropped during processing for congestion control or by the
4799 * protocol layers.
4800 *
4801 * return values:
4802 * NET_RX_SUCCESS (no congestion)
4803 * NET_RX_DROP (packet was dropped)
4804 *
4805 */
4806
4807int netif_rx(struct sk_buff *skb)
4808{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004809 int ret;
4810
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004811 trace_netif_rx_entry(skb);
4812
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004813 ret = netif_rx_internal(skb);
4814 trace_netif_rx_exit(ret);
4815
4816 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004817}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004818EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819
4820int netif_rx_ni(struct sk_buff *skb)
4821{
4822 int err;
4823
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004824 trace_netif_rx_ni_entry(skb);
4825
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004827 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 if (local_softirq_pending())
4829 do_softirq();
4830 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004831 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
4833 return err;
4834}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835EXPORT_SYMBOL(netif_rx_ni);
4836
Sebastian Andrzej Siewiorc11171a2020-09-29 22:25:12 +02004837int netif_rx_any_context(struct sk_buff *skb)
4838{
4839 /*
4840 * If invoked from contexts which do not invoke bottom half
4841 * processing either at return from interrupt or when softrqs are
4842 * reenabled, use netif_rx_ni() which invokes bottomhalf processing
4843 * directly.
4844 */
4845 if (in_interrupt())
4846 return netif_rx(skb);
4847 else
4848 return netif_rx_ni(skb);
4849}
4850EXPORT_SYMBOL(netif_rx_any_context);
4851
Emese Revfy0766f782016-06-20 20:42:34 +02004852static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004854 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855
4856 if (sd->completion_queue) {
4857 struct sk_buff *clist;
4858
4859 local_irq_disable();
4860 clist = sd->completion_queue;
4861 sd->completion_queue = NULL;
4862 local_irq_enable();
4863
4864 while (clist) {
4865 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004866
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 clist = clist->next;
4868
Reshetova, Elena63354792017-06-30 13:07:58 +03004869 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004870 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4871 trace_consume_skb(skb);
4872 else
4873 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004874
4875 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4876 __kfree_skb(skb);
4877 else
4878 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004880
4881 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 }
4883
4884 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004885 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887 local_irq_disable();
4888 head = sd->output_queue;
4889 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004890 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891 local_irq_enable();
4892
4893 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004894 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004895 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004896
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897 head = head->next_sched;
4898
John Fastabend6b3ba912017-12-07 09:54:25 -08004899 if (!(q->flags & TCQ_F_NOLOCK)) {
4900 root_lock = qdisc_lock(q);
4901 spin_lock(root_lock);
4902 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004903 /* We need to make sure head->next_sched is read
4904 * before clearing __QDISC_STATE_SCHED
4905 */
4906 smp_mb__before_atomic();
4907 clear_bit(__QDISC_STATE_SCHED, &q->state);
4908 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004909 if (root_lock)
4910 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 }
4912 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004913
4914 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915}
4916
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004917#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004918/* This hook is defined here for ATM LANE */
4919int (*br_fdb_test_addr_hook)(struct net_device *dev,
4920 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004921EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004924static inline struct sk_buff *
4925sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004926 struct net_device *orig_dev, bool *another)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004927{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004928#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004929 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004930 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004931
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004932 /* If there's at least one ingress present somewhere (so
4933 * we get here via enabled static key), remaining devices
4934 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004935 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004936 */
Jiri Pirko46209402017-11-03 11:46:25 +01004937 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004938 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004939
Herbert Xuf697c3e2007-10-14 00:38:47 -07004940 if (*pt_prev) {
4941 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4942 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004943 }
4944
Florian Westphal33654952015-05-14 00:36:28 +02004945 qdisc_skb_cb(skb)->pkt_len = skb->len;
wenxuaadaca92020-11-25 12:01:21 +08004946 qdisc_skb_cb(skb)->mru = 0;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004947 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004948 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004949
Paul Blakey7d17c542020-02-16 12:01:22 +02004950 switch (tcf_classify_ingress(skb, miniq->block, miniq->filter_list,
4951 &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004952 case TC_ACT_OK:
4953 case TC_ACT_RECLASSIFY:
4954 skb->tc_index = TC_H_MIN(cl_res.classid);
4955 break;
4956 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004957 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004958 kfree_skb(skb);
4959 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004960 case TC_ACT_STOLEN:
4961 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004962 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004963 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004964 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004965 case TC_ACT_REDIRECT:
4966 /* skb_mac_header check was done by cls/act_bpf, so
4967 * we can safely push the L2 header back before
4968 * redirecting to another netdev
4969 */
4970 __skb_push(skb, skb->mac_len);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004971 if (skb_do_redirect(skb) == -EAGAIN) {
4972 __skb_pull(skb, skb->mac_len);
4973 *another = true;
4974 break;
4975 }
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004976 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01004977 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02004978 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004979 default:
4980 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004981 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004982#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004983 return skb;
4984}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004986/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004987 * netdev_is_rx_handler_busy - check if receive handler is registered
4988 * @dev: device to check
4989 *
4990 * Check if a receive handler is already registered for a given device.
4991 * Return true if there one.
4992 *
4993 * The caller must hold the rtnl_mutex.
4994 */
4995bool netdev_is_rx_handler_busy(struct net_device *dev)
4996{
4997 ASSERT_RTNL();
4998 return dev && rtnl_dereference(dev->rx_handler);
4999}
5000EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5001
5002/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005003 * netdev_rx_handler_register - register receive handler
5004 * @dev: device to register a handler for
5005 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00005006 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005007 *
Masanari Iidae2278672014-02-18 22:54:36 +09005008 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005009 * called from __netif_receive_skb. A negative errno code is returned
5010 * on a failure.
5011 *
5012 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005013 *
5014 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005015 */
5016int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00005017 rx_handler_func_t *rx_handler,
5018 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005019{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08005020 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005021 return -EBUSY;
5022
Paolo Abenif54262502018-03-09 10:39:24 +01005023 if (dev->priv_flags & IFF_NO_RX_HANDLER)
5024 return -EINVAL;
5025
Eric Dumazet00cfec32013-03-29 03:01:22 +00005026 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00005027 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005028 rcu_assign_pointer(dev->rx_handler, rx_handler);
5029
5030 return 0;
5031}
5032EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5033
5034/**
5035 * netdev_rx_handler_unregister - unregister receive handler
5036 * @dev: device to unregister a handler from
5037 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00005038 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005039 *
5040 * The caller must hold the rtnl_mutex.
5041 */
5042void netdev_rx_handler_unregister(struct net_device *dev)
5043{
5044
5045 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005046 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00005047 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5048 * section has a guarantee to see a non NULL rx_handler_data
5049 * as well.
5050 */
5051 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005052 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005053}
5054EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5055
Mel Gormanb4b9e352012-07-31 16:44:26 -07005056/*
5057 * Limit the use of PFMEMALLOC reserves to those protocols that implement
5058 * the special handling of PFMEMALLOC skbs.
5059 */
5060static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5061{
5062 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07005063 case htons(ETH_P_ARP):
5064 case htons(ETH_P_IP):
5065 case htons(ETH_P_IPV6):
5066 case htons(ETH_P_8021Q):
5067 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07005068 return true;
5069 default:
5070 return false;
5071 }
5072}
5073
Pablo Neirae687ad62015-05-13 18:19:38 +02005074static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5075 int *ret, struct net_device *orig_dev)
5076{
5077 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04005078 int ingress_retval;
5079
Pablo Neirae687ad62015-05-13 18:19:38 +02005080 if (*pt_prev) {
5081 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5082 *pt_prev = NULL;
5083 }
5084
Aaron Conole2c1e2702016-09-21 11:35:03 -04005085 rcu_read_lock();
5086 ingress_retval = nf_hook_ingress(skb);
5087 rcu_read_unlock();
5088 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02005089 }
5090 return 0;
5091}
Pablo Neirae687ad62015-05-13 18:19:38 +02005092
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005093static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
Edward Cree88eb1942018-07-02 16:13:56 +01005094 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095{
5096 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005097 rx_handler_func_t *rx_handler;
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005098 struct sk_buff *skb = *pskb;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07005099 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005100 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08005102 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
Eric Dumazet588f0332011-11-15 04:12:55 +00005104 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07005105
Koki Sanagicf66ba52010-08-23 18:45:02 +09005106 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08005107
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07005108 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00005109
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07005110 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00005111 if (!skb_transport_header_was_set(skb))
5112 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00005113 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
5115 pt_prev = NULL;
5116
David S. Miller63d8ea72011-02-28 10:48:59 -08005117another_round:
David S. Millerb6858172012-07-23 16:27:54 -07005118 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08005119
5120 __this_cpu_inc(softnet_data.processed);
5121
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005122 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5123 int ret2;
5124
5125 preempt_disable();
5126 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5127 preempt_enable();
5128
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005129 if (ret2 != XDP_PASS) {
5130 ret = NET_RX_DROP;
5131 goto out;
5132 }
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005133 skb_reset_mac_len(skb);
5134 }
5135
Patrick McHardy8ad227f2013-04-19 02:04:31 +00005136 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5137 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04005138 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005139 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005140 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005141 }
5142
Willem de Bruijne7246e12017-01-07 17:06:35 -05005143 if (skb_skip_tc_classify(skb))
5144 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
David S. Miller9754e292013-02-14 15:57:38 -05005146 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07005147 goto skip_taps;
5148
Linus Torvalds1da177e2005-04-16 15:20:36 -07005149 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08005150 if (pt_prev)
5151 ret = deliver_skb(skb, pt_prev, orig_dev);
5152 pt_prev = ptype;
5153 }
5154
5155 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5156 if (pt_prev)
5157 ret = deliver_skb(skb, pt_prev, orig_dev);
5158 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 }
5160
Mel Gormanb4b9e352012-07-31 16:44:26 -07005161skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02005162#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07005163 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005164 bool another = false;
5165
5166 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
5167 &another);
5168 if (another)
5169 goto another_round;
Daniel Borkmann45771392015-04-10 23:07:54 +02005170 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005171 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02005172
5173 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005174 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02005175 }
Pablo Neira1cf519002015-05-13 18:19:37 +02005176#endif
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01005177 skb_reset_redirect(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05005178skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05005179 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07005180 goto drop;
5181
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005182 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00005183 if (pt_prev) {
5184 ret = deliver_skb(skb, pt_prev, orig_dev);
5185 pt_prev = NULL;
5186 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005187 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00005188 goto another_round;
5189 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005190 goto out;
John Fastabend24257172011-10-10 09:16:41 +00005191 }
5192
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005193 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005194 if (rx_handler) {
5195 if (pt_prev) {
5196 ret = deliver_skb(skb, pt_prev, orig_dev);
5197 pt_prev = NULL;
5198 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005199 switch (rx_handler(&skb)) {
5200 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00005201 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005202 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005203 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08005204 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005205 case RX_HANDLER_EXACT:
5206 deliver_exact = true;
5207 case RX_HANDLER_PASS:
5208 break;
5209 default:
5210 BUG();
5211 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +03005214 if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005215check_vlan_id:
5216 if (skb_vlan_tag_get_id(skb)) {
5217 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5218 * find vlan device.
5219 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005220 skb->pkt_type = PACKET_OTHERHOST;
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005221 } else if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5222 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
5223 /* Outer header is 802.1P with vlan 0, inner header is
5224 * 802.1Q or 802.1AD and vlan_do_receive() above could
5225 * not find vlan dev for vlan id 0.
5226 */
5227 __vlan_hwaccel_clear_tag(skb);
5228 skb = skb_vlan_untag(skb);
5229 if (unlikely(!skb))
5230 goto out;
5231 if (vlan_do_receive(&skb))
5232 /* After stripping off 802.1P header with vlan 0
5233 * vlan dev is found for inner header.
5234 */
5235 goto another_round;
5236 else if (unlikely(!skb))
5237 goto out;
5238 else
5239 /* We have stripped outer 802.1P vlan 0 header.
5240 * But could not find vlan dev.
5241 * check again for vlan id to set OTHERHOST.
5242 */
5243 goto check_vlan_id;
5244 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005245 /* Note: we might in the future use prio bits
5246 * and set skb->priority like in vlan_do_receive()
5247 * For the time being, just ignore Priority Code Point
5248 */
Michał Mirosławb18175242018-11-09 00:18:02 +01005249 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005250 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005251
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08005253
5254 /* deliver only exact match when indicated */
5255 if (likely(!deliver_exact)) {
5256 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5257 &ptype_base[ntohs(type) &
5258 PTYPE_HASH_MASK]);
5259 }
5260
5261 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5262 &orig_dev->ptype_specific);
5263
5264 if (unlikely(skb->dev != orig_dev)) {
5265 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5266 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 }
5268
5269 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04005270 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00005271 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01005272 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07005274drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05005275 if (!deliver_exact)
5276 atomic_long_inc(&skb->dev->rx_dropped);
5277 else
5278 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 kfree_skb(skb);
5280 /* Jamal, now you will not able to escape explaining
5281 * me how you were going to use this. :-)
5282 */
5283 ret = NET_RX_DROP;
5284 }
5285
Julian Anastasov2c17d272015-07-09 09:59:10 +03005286out:
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005287 /* The invariant here is that if *ppt_prev is not NULL
5288 * then skb should also be non-NULL.
5289 *
5290 * Apparently *ppt_prev assignment above holds this invariant due to
5291 * skb dereferencing near it.
5292 */
5293 *pskb = skb;
David S. Miller9754e292013-02-14 15:57:38 -05005294 return ret;
5295}
5296
Edward Cree88eb1942018-07-02 16:13:56 +01005297static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5298{
5299 struct net_device *orig_dev = skb->dev;
5300 struct packet_type *pt_prev = NULL;
5301 int ret;
5302
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005303 ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree88eb1942018-07-02 16:13:56 +01005304 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005305 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5306 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005307 return ret;
5308}
5309
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005310/**
5311 * netif_receive_skb_core - special purpose version of netif_receive_skb
5312 * @skb: buffer to process
5313 *
5314 * More direct receive version of netif_receive_skb(). It should
5315 * only be used by callers that have a need to skip RPS and Generic XDP.
Mauro Carvalho Chehab2de97802020-03-17 15:54:20 +01005316 * Caller must also take care of handling if ``(page_is_)pfmemalloc``.
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005317 *
5318 * This function may only be called from softirq context and interrupts
5319 * should be enabled.
5320 *
5321 * Return values (usually ignored):
5322 * NET_RX_SUCCESS: no congestion
5323 * NET_RX_DROP: packet was dropped
5324 */
5325int netif_receive_skb_core(struct sk_buff *skb)
5326{
5327 int ret;
5328
5329 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005330 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005331 rcu_read_unlock();
5332
5333 return ret;
5334}
5335EXPORT_SYMBOL(netif_receive_skb_core);
5336
Edward Cree88eb1942018-07-02 16:13:56 +01005337static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5338 struct packet_type *pt_prev,
5339 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005340{
5341 struct sk_buff *skb, *next;
5342
Edward Cree88eb1942018-07-02 16:13:56 +01005343 if (!pt_prev)
5344 return;
5345 if (list_empty(head))
5346 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005347 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005348 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5349 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005350 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005351 list_for_each_entry_safe(skb, next, head, list) {
5352 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005353 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005354 }
Edward Cree88eb1942018-07-02 16:13:56 +01005355}
5356
5357static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5358{
5359 /* Fast-path assumptions:
5360 * - There is no RX handler.
5361 * - Only one packet_type matches.
5362 * If either of these fails, we will end up doing some per-packet
5363 * processing in-line, then handling the 'last ptype' for the whole
5364 * sublist. This can't cause out-of-order delivery to any single ptype,
5365 * because the 'last ptype' must be constant across the sublist, and all
5366 * other ptypes are handled per-packet.
5367 */
5368 /* Current (common) ptype of sublist */
5369 struct packet_type *pt_curr = NULL;
5370 /* Current (common) orig_dev of sublist */
5371 struct net_device *od_curr = NULL;
5372 struct list_head sublist;
5373 struct sk_buff *skb, *next;
5374
Edward Cree9af86f92018-07-09 18:10:19 +01005375 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005376 list_for_each_entry_safe(skb, next, head, list) {
5377 struct net_device *orig_dev = skb->dev;
5378 struct packet_type *pt_prev = NULL;
5379
Edward Cree22f6bbb2018-12-04 17:37:57 +00005380 skb_list_del_init(skb);
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005381 __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01005382 if (!pt_prev)
5383 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005384 if (pt_curr != pt_prev || od_curr != orig_dev) {
5385 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005386 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5387 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005388 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005389 pt_curr = pt_prev;
5390 od_curr = orig_dev;
5391 }
Edward Cree9af86f92018-07-09 18:10:19 +01005392 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005393 }
5394
5395 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005396 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005397}
5398
David S. Miller9754e292013-02-14 15:57:38 -05005399static int __netif_receive_skb(struct sk_buff *skb)
5400{
5401 int ret;
5402
5403 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005404 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005405
5406 /*
5407 * PFMEMALLOC skbs are special, they should
5408 * - be delivered to SOCK_MEMALLOC sockets only
5409 * - stay away from userspace
5410 * - have bounded memory usage
5411 *
5412 * Use PF_MEMALLOC as this saves us from propagating the allocation
5413 * context down to all allocation sites.
5414 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005415 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005416 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005417 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005418 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005419 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005420
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 return ret;
5422}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005423
Edward Cree4ce00172018-07-02 16:13:40 +01005424static void __netif_receive_skb_list(struct list_head *head)
5425{
5426 unsigned long noreclaim_flag = 0;
5427 struct sk_buff *skb, *next;
5428 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5429
5430 list_for_each_entry_safe(skb, next, head, list) {
5431 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5432 struct list_head sublist;
5433
5434 /* Handle the previous sublist */
5435 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005436 if (!list_empty(&sublist))
5437 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005438 pfmemalloc = !pfmemalloc;
5439 /* See comments in __netif_receive_skb */
5440 if (pfmemalloc)
5441 noreclaim_flag = memalloc_noreclaim_save();
5442 else
5443 memalloc_noreclaim_restore(noreclaim_flag);
5444 }
5445 }
5446 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005447 if (!list_empty(head))
5448 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005449 /* Restore pflags */
5450 if (pfmemalloc)
5451 memalloc_noreclaim_restore(noreclaim_flag);
5452}
5453
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005454static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005455{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005456 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005457 struct bpf_prog *new = xdp->prog;
5458 int ret = 0;
5459
David Ahernfbee97f2020-05-29 16:07:13 -06005460 if (new) {
5461 u32 i;
5462
YiFei Zhu984fe942020-09-15 16:45:39 -07005463 mutex_lock(&new->aux->used_maps_mutex);
5464
David Ahernfbee97f2020-05-29 16:07:13 -06005465 /* generic XDP does not work with DEVMAPs that can
5466 * have a bpf_prog installed on an entry
5467 */
5468 for (i = 0; i < new->aux->used_map_cnt; i++) {
YiFei Zhu984fe942020-09-15 16:45:39 -07005469 if (dev_map_can_have_prog(new->aux->used_maps[i]) ||
5470 cpu_map_prog_allowed(new->aux->used_maps[i])) {
5471 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005472 return -EINVAL;
YiFei Zhu984fe942020-09-15 16:45:39 -07005473 }
David Ahernfbee97f2020-05-29 16:07:13 -06005474 }
YiFei Zhu984fe942020-09-15 16:45:39 -07005475
5476 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005477 }
5478
David S. Millerb5cdae32017-04-18 15:36:58 -04005479 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005480 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005481 rcu_assign_pointer(dev->xdp_prog, new);
5482 if (old)
5483 bpf_prog_put(old);
5484
5485 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005486 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005487 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005488 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005489 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005490 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005491 }
5492 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005493
David S. Millerb5cdae32017-04-18 15:36:58 -04005494 default:
5495 ret = -EINVAL;
5496 break;
5497 }
5498
5499 return ret;
5500}
5501
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005502static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005503{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005504 int ret;
5505
Eric Dumazet588f0332011-11-15 04:12:55 +00005506 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005507
Richard Cochranc1f19b52010-07-17 08:49:36 +00005508 if (skb_defer_rx_timestamp(skb))
5509 return NET_RX_SUCCESS;
5510
John Fastabendbbbe2112017-09-08 14:00:30 -07005511 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005512#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005513 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005514 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005515 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005516
Eric Dumazet3b098e22010-05-15 23:57:10 -07005517 if (cpu >= 0) {
5518 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5519 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005520 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005521 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005522 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005523#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005524 ret = __netif_receive_skb(skb);
5525 rcu_read_unlock();
5526 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005527}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005528
Edward Cree7da517a2018-07-02 16:13:24 +01005529static void netif_receive_skb_list_internal(struct list_head *head)
5530{
Edward Cree7da517a2018-07-02 16:13:24 +01005531 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005532 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005533
Edward Cree8c057ef2018-07-09 18:09:54 +01005534 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005535 list_for_each_entry_safe(skb, next, head, list) {
5536 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005537 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005538 if (!skb_defer_rx_timestamp(skb))
5539 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005540 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005541 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005542
Edward Cree7da517a2018-07-02 16:13:24 +01005543 rcu_read_lock();
5544#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005545 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005546 list_for_each_entry_safe(skb, next, head, list) {
5547 struct rps_dev_flow voidflow, *rflow = &voidflow;
5548 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5549
5550 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005551 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005552 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005553 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005554 }
5555 }
5556 }
5557#endif
5558 __netif_receive_skb_list(head);
5559 rcu_read_unlock();
5560}
5561
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005562/**
5563 * netif_receive_skb - process receive buffer from network
5564 * @skb: buffer to process
5565 *
5566 * netif_receive_skb() is the main receive data processing function.
5567 * It always succeeds. The buffer may be dropped during processing
5568 * for congestion control or by the protocol layers.
5569 *
5570 * This function may only be called from softirq context and interrupts
5571 * should be enabled.
5572 *
5573 * Return values (usually ignored):
5574 * NET_RX_SUCCESS: no congestion
5575 * NET_RX_DROP: packet was dropped
5576 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005577int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005578{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005579 int ret;
5580
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005581 trace_netif_receive_skb_entry(skb);
5582
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005583 ret = netif_receive_skb_internal(skb);
5584 trace_netif_receive_skb_exit(ret);
5585
5586 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005587}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005588EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005589
Edward Creef6ad8c12018-07-02 16:12:45 +01005590/**
5591 * netif_receive_skb_list - process many receive buffers from network
5592 * @head: list of skbs to process.
5593 *
Edward Cree7da517a2018-07-02 16:13:24 +01005594 * Since return value of netif_receive_skb() is normally ignored, and
5595 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005596 *
5597 * This function may only be called from softirq context and interrupts
5598 * should be enabled.
5599 */
5600void netif_receive_skb_list(struct list_head *head)
5601{
Edward Cree7da517a2018-07-02 16:13:24 +01005602 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005603
Edward Creeb9f463d2018-07-02 16:14:44 +01005604 if (list_empty(head))
5605 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005606 if (trace_netif_receive_skb_list_entry_enabled()) {
5607 list_for_each_entry(skb, head, list)
5608 trace_netif_receive_skb_list_entry(skb);
5609 }
Edward Cree7da517a2018-07-02 16:13:24 +01005610 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005611 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005612}
5613EXPORT_SYMBOL(netif_receive_skb_list);
5614
Wei Yongjunce1e2a72020-07-13 22:23:44 +08005615static DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005616
5617/* Network device is going away, flush any packets still pending */
5618static void flush_backlog(struct work_struct *work)
5619{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005620 struct sk_buff *skb, *tmp;
5621 struct softnet_data *sd;
5622
5623 local_bh_disable();
5624 sd = this_cpu_ptr(&softnet_data);
5625
5626 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005627 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005628 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005629 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005630 __skb_unlink(skb, &sd->input_pkt_queue);
Subash Abhinov Kasiviswanathan7df5cb752020-07-23 11:31:48 -06005631 dev_kfree_skb_irq(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005632 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005633 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005634 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005635 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005636 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005637
5638 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005639 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005640 __skb_unlink(skb, &sd->process_queue);
5641 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005642 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005643 }
5644 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005645 local_bh_enable();
5646}
5647
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005648static bool flush_required(int cpu)
5649{
5650#if IS_ENABLED(CONFIG_RPS)
5651 struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5652 bool do_flush;
5653
5654 local_irq_disable();
5655 rps_lock(sd);
5656
5657 /* as insertion into process_queue happens with the rps lock held,
5658 * process_queue access may race only with dequeue
5659 */
5660 do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
5661 !skb_queue_empty_lockless(&sd->process_queue);
5662 rps_unlock(sd);
5663 local_irq_enable();
5664
5665 return do_flush;
5666#endif
5667 /* without RPS we can't safely check input_pkt_queue: during a
5668 * concurrent remote skb_queue_splice() we can detect as empty both
5669 * input_pkt_queue and process_queue even if the latter could end-up
5670 * containing a lot of packets.
5671 */
5672 return true;
5673}
5674
Eric Dumazet41852492016-08-26 12:50:39 -07005675static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005676{
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005677 static cpumask_t flush_cpus;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005678 unsigned int cpu;
5679
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005680 /* since we are under rtnl lock protection we can use static data
5681 * for the cpumask and avoid allocating on stack the possibly
5682 * large mask
5683 */
5684 ASSERT_RTNL();
5685
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005686 get_online_cpus();
5687
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005688 cpumask_clear(&flush_cpus);
5689 for_each_online_cpu(cpu) {
5690 if (flush_required(cpu)) {
5691 queue_work_on(cpu, system_highpri_wq,
5692 per_cpu_ptr(&flush_works, cpu));
5693 cpumask_set_cpu(cpu, &flush_cpus);
5694 }
5695 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005696
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005697 /* we can have in flight packet[s] on the cpus we are not flushing,
5698 * synchronize_net() in rollback_registered_many() will take care of
5699 * them
5700 */
5701 for_each_cpu(cpu, &flush_cpus)
Eric Dumazet41852492016-08-26 12:50:39 -07005702 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005703
5704 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005705}
5706
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005707/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5708static void gro_normal_list(struct napi_struct *napi)
5709{
5710 if (!napi->rx_count)
5711 return;
5712 netif_receive_skb_list_internal(&napi->rx_list);
5713 INIT_LIST_HEAD(&napi->rx_list);
5714 napi->rx_count = 0;
5715}
5716
5717/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5718 * pass the whole batch up to the stack.
5719 */
5720static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb)
5721{
5722 list_add_tail(&skb->list, &napi->rx_list);
5723 if (++napi->rx_count >= gro_normal_batch)
5724 gro_normal_list(napi);
5725}
5726
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005727INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
5728INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005729static int napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005730{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005731 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005732 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005733 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005734 int err = -ENOENT;
5735
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005736 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5737
Herbert Xufc59f9a2009-04-14 15:11:06 -07005738 if (NAPI_GRO_CB(skb)->count == 1) {
5739 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005740 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005741 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005742
5743 rcu_read_lock();
5744 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005745 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005746 continue;
5747
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005748 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5749 ipv6_gro_complete, inet_gro_complete,
5750 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005751 break;
5752 }
5753 rcu_read_unlock();
5754
5755 if (err) {
5756 WARN_ON(&ptype->list == head);
5757 kfree_skb(skb);
5758 return NET_RX_SUCCESS;
5759 }
5760
5761out:
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005762 gro_normal_one(napi, skb);
5763 return NET_RX_SUCCESS;
Herbert Xud565b0a2008-12-15 23:38:52 -08005764}
5765
Li RongQing6312fe72018-07-05 14:34:32 +08005766static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005767 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005768{
Li RongQing6312fe72018-07-05 14:34:32 +08005769 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005770 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005771
David Miller07d78362018-06-24 14:14:02 +09005772 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005773 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5774 return;
David S. Miller992cba72018-07-31 15:27:56 -07005775 skb_list_del_init(skb);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005776 napi_gro_complete(napi, skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005777 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005778 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005779
5780 if (!napi->gro_hash[index].count)
5781 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005782}
David Miller07d78362018-06-24 14:14:02 +09005783
Li RongQing6312fe72018-07-05 14:34:32 +08005784/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005785 * youngest packets at the head of it.
5786 * Complete skbs in reverse order to reduce latencies.
5787 */
5788void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5789{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005790 unsigned long bitmask = napi->gro_bitmask;
5791 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005792
Eric Dumazet42519ed2018-11-21 11:39:28 -08005793 while ((i = ffs(bitmask)) != 0) {
5794 bitmask >>= i;
5795 base += i;
5796 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005797 }
David Miller07d78362018-06-24 14:14:02 +09005798}
Eric Dumazet86cac582010-08-31 18:25:32 +00005799EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005800
David Miller07d78362018-06-24 14:14:02 +09005801static struct list_head *gro_list_prepare(struct napi_struct *napi,
5802 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005803{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005804 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005805 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005806 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005807 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005808
Li RongQing6312fe72018-07-05 14:34:32 +08005809 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005810 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005811 unsigned long diffs;
5812
Tom Herbert0b4cec82014-01-15 08:58:06 -08005813 NAPI_GRO_CB(p)->flush = 0;
5814
5815 if (hash != skb_get_hash_raw(p)) {
5816 NAPI_GRO_CB(p)->same_flow = 0;
5817 continue;
5818 }
5819
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005820 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005821 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5822 if (skb_vlan_tag_present(p))
Tonghao Zhangfc5141c2019-11-22 20:38:01 +08005823 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
Jesse Grossce87fc62016-01-20 17:59:49 -08005824 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005825 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005826 if (maclen == ETH_HLEN)
5827 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005828 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005829 else if (!diffs)
5830 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005831 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005832 maclen);
5833 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005834 }
David Miller07d78362018-06-24 14:14:02 +09005835
5836 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005837}
5838
Jerry Chu299603e82013-12-11 20:53:45 -08005839static void skb_gro_reset_offset(struct sk_buff *skb)
5840{
5841 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5842 const skb_frag_t *frag0 = &pinfo->frags[0];
5843
5844 NAPI_GRO_CB(skb)->data_offset = 0;
5845 NAPI_GRO_CB(skb)->frag0 = NULL;
5846 NAPI_GRO_CB(skb)->frag0_len = 0;
5847
Alexander Lobakin8aef9982019-11-15 12:11:35 +03005848 if (!skb_headlen(skb) && pinfo->nr_frags &&
Jerry Chu299603e82013-12-11 20:53:45 -08005849 !PageHighMem(skb_frag_page(frag0))) {
5850 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005851 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5852 skb_frag_size(frag0),
5853 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005854 }
5855}
5856
Eric Dumazeta50e2332014-03-29 21:28:21 -07005857static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5858{
5859 struct skb_shared_info *pinfo = skb_shinfo(skb);
5860
5861 BUG_ON(skb->end - skb->tail < grow);
5862
5863 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5864
5865 skb->data_len -= grow;
5866 skb->tail += grow;
5867
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07005868 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005869 skb_frag_size_sub(&pinfo->frags[0], grow);
5870
5871 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5872 skb_frag_unref(skb, 0);
5873 memmove(pinfo->frags, pinfo->frags + 1,
5874 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5875 }
5876}
5877
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005878static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005879{
Li RongQing6312fe72018-07-05 14:34:32 +08005880 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005881
Li RongQing6312fe72018-07-05 14:34:32 +08005882 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005883
Li RongQing6312fe72018-07-05 14:34:32 +08005884 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005885 * impossible.
5886 */
5887 if (WARN_ON_ONCE(!oldest))
5888 return;
5889
Li RongQingd9f37d02018-07-13 14:41:36 +08005890 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5891 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005892 */
David S. Millerece23712018-10-28 10:35:12 -07005893 skb_list_del_init(oldest);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005894 napi_gro_complete(napi, oldest);
David Miller07d78362018-06-24 14:14:02 +09005895}
5896
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005897INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
5898 struct sk_buff *));
5899INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
5900 struct sk_buff *));
Rami Rosenbb728822012-11-28 21:55:25 +00005901static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005902{
Li RongQing6312fe72018-07-05 14:34:32 +08005903 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005904 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005905 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005906 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005907 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005908 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005909 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005910 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005911 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005912
David S. Millerb5cdae32017-04-18 15:36:58 -04005913 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005914 goto normal;
5915
David Miller07d78362018-06-24 14:14:02 +09005916 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005917
Herbert Xud565b0a2008-12-15 23:38:52 -08005918 rcu_read_lock();
5919 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005920 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005921 continue;
5922
Herbert Xu86911732009-01-29 14:19:50 +00005923 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005924 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005925 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005926 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005927 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005928 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005929 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005930 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005931 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005932 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005933
Tom Herbert662880f2014-08-27 21:26:56 -07005934 /* Setup for GRO checksum validation */
5935 switch (skb->ip_summed) {
5936 case CHECKSUM_COMPLETE:
5937 NAPI_GRO_CB(skb)->csum = skb->csum;
5938 NAPI_GRO_CB(skb)->csum_valid = 1;
5939 NAPI_GRO_CB(skb)->csum_cnt = 0;
5940 break;
5941 case CHECKSUM_UNNECESSARY:
5942 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5943 NAPI_GRO_CB(skb)->csum_valid = 0;
5944 break;
5945 default:
5946 NAPI_GRO_CB(skb)->csum_cnt = 0;
5947 NAPI_GRO_CB(skb)->csum_valid = 0;
5948 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005949
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005950 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
5951 ipv6_gro_receive, inet_gro_receive,
5952 gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005953 break;
5954 }
5955 rcu_read_unlock();
5956
5957 if (&ptype->list == head)
5958 goto normal;
5959
Masahiro Yamada45586c72020-02-03 17:37:45 -08005960 if (PTR_ERR(pp) == -EINPROGRESS) {
Steffen Klassert25393d32017-02-15 09:39:44 +01005961 ret = GRO_CONSUMED;
5962 goto ok;
5963 }
5964
Herbert Xu0da2afd52008-12-26 14:57:42 -08005965 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005966 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005967
Herbert Xud565b0a2008-12-15 23:38:52 -08005968 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07005969 skb_list_del_init(pp);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005970 napi_gro_complete(napi, pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005971 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005972 }
5973
Herbert Xu0da2afd52008-12-26 14:57:42 -08005974 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005975 goto ok;
5976
Eric Dumazet600adc12014-01-09 14:12:19 -08005977 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005978 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005979
Li RongQing6312fe72018-07-05 14:34:32 +08005980 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005981 gro_flush_oldest(napi, gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005982 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005983 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005984 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005985 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005986 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005987 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005988 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005989 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005990 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005991
Herbert Xuad0f99042009-02-01 01:24:55 -08005992pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005993 grow = skb_gro_offset(skb) - skb_headlen(skb);
5994 if (grow > 0)
5995 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08005996ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08005997 if (napi->gro_hash[hash].count) {
5998 if (!test_bit(hash, &napi->gro_bitmask))
5999 __set_bit(hash, &napi->gro_bitmask);
6000 } else if (test_bit(hash, &napi->gro_bitmask)) {
6001 __clear_bit(hash, &napi->gro_bitmask);
6002 }
6003
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006004 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006005
6006normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08006007 ret = GRO_NORMAL;
6008 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08006009}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006010
Jerry Chubf5a7552014-01-07 10:23:19 -08006011struct packet_offload *gro_find_receive_by_type(__be16 type)
6012{
6013 struct list_head *offload_head = &offload_base;
6014 struct packet_offload *ptype;
6015
6016 list_for_each_entry_rcu(ptype, offload_head, list) {
6017 if (ptype->type != type || !ptype->callbacks.gro_receive)
6018 continue;
6019 return ptype;
6020 }
6021 return NULL;
6022}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006023EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08006024
6025struct packet_offload *gro_find_complete_by_type(__be16 type)
6026{
6027 struct list_head *offload_head = &offload_base;
6028 struct packet_offload *ptype;
6029
6030 list_for_each_entry_rcu(ptype, offload_head, list) {
6031 if (ptype->type != type || !ptype->callbacks.gro_complete)
6032 continue;
6033 return ptype;
6034 }
6035 return NULL;
6036}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006037EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006038
Michal Kubečeke44699d2017-06-29 11:13:36 +02006039static void napi_skb_free_stolen_head(struct sk_buff *skb)
6040{
6041 skb_dst_drop(skb);
Florian Westphal174e2382019-09-26 20:37:05 +02006042 skb_ext_put(skb);
Michal Kubečeke44699d2017-06-29 11:13:36 +02006043 kmem_cache_free(skbuff_head_cache, skb);
6044}
6045
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006046static gro_result_t napi_skb_finish(struct napi_struct *napi,
6047 struct sk_buff *skb,
6048 gro_result_t ret)
Herbert Xu5d38a072009-01-04 16:13:40 -08006049{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006050 switch (ret) {
6051 case GRO_NORMAL:
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006052 gro_normal_one(napi, skb);
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006053 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006054
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006055 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08006056 kfree_skb(skb);
6057 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006058
Eric Dumazetdaa86542012-04-19 07:07:40 +00006059 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02006060 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6061 napi_skb_free_stolen_head(skb);
6062 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00006063 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00006064 break;
6065
Ben Hutchings5b252f02009-10-29 07:17:09 +00006066 case GRO_HELD:
6067 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006068 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006069 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006070 }
6071
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006072 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006073}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006074
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006075gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006076{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006077 gro_result_t ret;
6078
Eric Dumazet93f93a42015-11-18 06:30:59 -08006079 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006080 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00006081
Eric Dumazeta50e2332014-03-29 21:28:21 -07006082 skb_gro_reset_offset(skb);
6083
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006084 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006085 trace_napi_gro_receive_exit(ret);
6086
6087 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006088}
6089EXPORT_SYMBOL(napi_gro_receive);
6090
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00006091static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006092{
Eric Dumazet93a35f52014-10-23 06:30:30 -07006093 if (unlikely(skb->pfmemalloc)) {
6094 consume_skb(skb);
6095 return;
6096 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006097 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00006098 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
6099 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01006100 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08006101 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08006102 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08006103
6104 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
6105 skb->pkt_type = PACKET_HOST;
6106
Jerry Chuc3caf112014-07-14 15:54:46 -07006107 skb->encapsulation = 0;
6108 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07006109 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Florian Westphal174e2382019-09-26 20:37:05 +02006110 skb_ext_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006111
6112 napi->skb = skb;
6113}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006114
Herbert Xu76620aa2009-04-16 02:02:07 -07006115struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08006116{
Herbert Xu5d38a072009-01-04 16:13:40 -08006117 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08006118
6119 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08006120 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08006121 if (skb) {
6122 napi->skb = skb;
6123 skb_mark_napi_id(skb, napi);
6124 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006125 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006126 return skb;
6127}
Herbert Xu76620aa2009-04-16 02:02:07 -07006128EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006129
Eric Dumazeta50e2332014-03-29 21:28:21 -07006130static gro_result_t napi_frags_finish(struct napi_struct *napi,
6131 struct sk_buff *skb,
6132 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006133{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006134 switch (ret) {
6135 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006136 case GRO_HELD:
6137 __skb_push(skb, ETH_HLEN);
6138 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01006139 if (ret == GRO_NORMAL)
6140 gro_normal_one(napi, skb);
Herbert Xu86911732009-01-29 14:19:50 +00006141 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006142
6143 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006144 napi_reuse_skb(napi, skb);
6145 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006146
Michal Kubečeke44699d2017-06-29 11:13:36 +02006147 case GRO_MERGED_FREE:
6148 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6149 napi_skb_free_stolen_head(skb);
6150 else
6151 napi_reuse_skb(napi, skb);
6152 break;
6153
Ben Hutchings5b252f02009-10-29 07:17:09 +00006154 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006155 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006156 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006157 }
6158
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006159 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006160}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006161
Eric Dumazeta50e2332014-03-29 21:28:21 -07006162/* Upper GRO stack assumes network header starts at gro_offset=0
6163 * Drivers could call both napi_gro_frags() and napi_gro_receive()
6164 * We copy ethernet header into skb->data to have a common layout.
6165 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00006166static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006167{
Herbert Xu76620aa2009-04-16 02:02:07 -07006168 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006169 const struct ethhdr *eth;
6170 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07006171
6172 napi->skb = NULL;
6173
Eric Dumazeta50e2332014-03-29 21:28:21 -07006174 skb_reset_mac_header(skb);
6175 skb_gro_reset_offset(skb);
6176
Eric Dumazeta50e2332014-03-29 21:28:21 -07006177 if (unlikely(skb_gro_header_hard(skb, hlen))) {
6178 eth = skb_gro_header_slow(skb, hlen, 0);
6179 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04006180 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
6181 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006182 napi_reuse_skb(napi, skb);
6183 return NULL;
6184 }
6185 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07006186 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006187 gro_pull_from_frag0(skb, hlen);
6188 NAPI_GRO_CB(skb)->frag0 += hlen;
6189 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07006190 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07006191 __skb_pull(skb, hlen);
6192
6193 /*
6194 * This works because the only protocols we care about don't require
6195 * special handling.
6196 * We'll fix it up properly in napi_frags_finish()
6197 */
6198 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07006199
Herbert Xu76620aa2009-04-16 02:02:07 -07006200 return skb;
6201}
Herbert Xu76620aa2009-04-16 02:02:07 -07006202
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006203gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07006204{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006205 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07006206 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006207
6208 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006209 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08006210
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006211 trace_napi_gro_frags_entry(skb);
6212
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006213 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6214 trace_napi_gro_frags_exit(ret);
6215
6216 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08006217}
6218EXPORT_SYMBOL(napi_gro_frags);
6219
Tom Herbert573e8fc2014-08-22 13:33:47 -07006220/* Compute the checksum from gro_offset and return the folded value
6221 * after adding in any pseudo checksum.
6222 */
6223__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6224{
6225 __wsum wsum;
6226 __sum16 sum;
6227
6228 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6229
6230 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6231 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08006232 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07006233 if (likely(!sum)) {
6234 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6235 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08006236 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07006237 }
6238
6239 NAPI_GRO_CB(skb)->csum = wsum;
6240 NAPI_GRO_CB(skb)->csum_valid = 1;
6241
6242 return sum;
6243}
6244EXPORT_SYMBOL(__skb_gro_checksum_complete);
6245
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306246static void net_rps_send_ipi(struct softnet_data *remsd)
6247{
6248#ifdef CONFIG_RPS
6249 while (remsd) {
6250 struct softnet_data *next = remsd->rps_ipi_next;
6251
6252 if (cpu_online(remsd->cpu))
6253 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6254 remsd = next;
6255 }
6256#endif
6257}
6258
Eric Dumazete326bed2010-04-22 00:22:45 -07006259/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08006260 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07006261 * Note: called with local irq disabled, but exits with local irq enabled.
6262 */
6263static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6264{
6265#ifdef CONFIG_RPS
6266 struct softnet_data *remsd = sd->rps_ipi_list;
6267
6268 if (remsd) {
6269 sd->rps_ipi_list = NULL;
6270
6271 local_irq_enable();
6272
6273 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306274 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07006275 } else
6276#endif
6277 local_irq_enable();
6278}
6279
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006280static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6281{
6282#ifdef CONFIG_RPS
6283 return sd->rps_ipi_list != NULL;
6284#else
6285 return false;
6286#endif
6287}
6288
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006289static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006291 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006292 bool again = true;
6293 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294
Eric Dumazete326bed2010-04-22 00:22:45 -07006295 /* Check if we have pending ipi, its better to send them now,
6296 * not waiting net_rx_action() end.
6297 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006298 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07006299 local_irq_disable();
6300 net_rps_action_and_irq_enable(sd);
6301 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006302
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01006303 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006304 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306
Changli Gao6e7676c2010-04-27 15:07:33 -07006307 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03006308 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07006309 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03006310 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00006311 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006312 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00006313 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006314
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006317 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006318 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07006319 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006320 /*
6321 * Inline a custom version of __napi_complete().
6322 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07006323 * and NAPI_STATE_SCHED is the only possible flag set
6324 * on backlog.
6325 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006326 * and we dont need an smp_mb() memory barrier.
6327 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006328 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006329 again = false;
6330 } else {
6331 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6332 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07006333 }
6334 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006335 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006338 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339}
6340
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006341/**
6342 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006343 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006344 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006345 * The entry's receive function will be scheduled to run.
6346 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006347 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08006348void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006349{
6350 unsigned long flags;
6351
6352 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05006353 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006354 local_irq_restore(flags);
6355}
6356EXPORT_SYMBOL(__napi_schedule);
6357
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006358/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006359 * napi_schedule_prep - check if napi can be scheduled
6360 * @n: napi context
6361 *
6362 * Test if NAPI routine is already running, and if not mark
Jonathan Neuschäferee1a4c82020-09-05 20:32:18 +02006363 * it as running. This is used as a condition variable to
Eric Dumazet39e6c822017-02-28 10:34:50 -08006364 * insure only one NAPI poll instance runs. We also make
6365 * sure there is no pending NAPI disable.
6366 */
6367bool napi_schedule_prep(struct napi_struct *n)
6368{
6369 unsigned long val, new;
6370
6371 do {
6372 val = READ_ONCE(n->state);
6373 if (unlikely(val & NAPIF_STATE_DISABLE))
6374 return false;
6375 new = val | NAPIF_STATE_SCHED;
6376
6377 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6378 * This was suggested by Alexander Duyck, as compiler
6379 * emits better code than :
6380 * if (val & NAPIF_STATE_SCHED)
6381 * new |= NAPIF_STATE_MISSED;
6382 */
6383 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6384 NAPIF_STATE_MISSED;
6385 } while (cmpxchg(&n->state, val, new) != val);
6386
6387 return !(val & NAPIF_STATE_SCHED);
6388}
6389EXPORT_SYMBOL(napi_schedule_prep);
6390
6391/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006392 * __napi_schedule_irqoff - schedule for receive
6393 * @n: entry to schedule
6394 *
6395 * Variant of __napi_schedule() assuming hard irqs are masked
6396 */
6397void __napi_schedule_irqoff(struct napi_struct *n)
6398{
6399 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6400}
6401EXPORT_SYMBOL(__napi_schedule_irqoff);
6402
Eric Dumazet364b6052016-11-15 10:15:13 -08006403bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006404{
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006405 unsigned long flags, val, new, timeout = 0;
6406 bool ret = true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006407
6408 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006409 * 1) Don't let napi dequeue from the cpu poll list
6410 * just in case its running on a different cpu.
6411 * 2) If we are busy polling, do nothing here, we have
6412 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006413 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006414 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6415 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006416 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006417
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006418 if (work_done) {
6419 if (n->gro_bitmask)
Eric Dumazet7e417a62020-04-22 09:13:28 -07006420 timeout = READ_ONCE(n->dev->gro_flush_timeout);
6421 n->defer_hard_irqs_count = READ_ONCE(n->dev->napi_defer_hard_irqs);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006422 }
6423 if (n->defer_hard_irqs_count > 0) {
6424 n->defer_hard_irqs_count--;
Eric Dumazet7e417a62020-04-22 09:13:28 -07006425 timeout = READ_ONCE(n->dev->gro_flush_timeout);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006426 if (timeout)
6427 ret = false;
6428 }
6429 if (n->gro_bitmask) {
Paolo Abeni605108a2018-11-21 18:21:35 +01006430 /* When the NAPI instance uses a timeout and keeps postponing
6431 * it, we need to bound somehow the time packets are kept in
6432 * the GRO layer
6433 */
6434 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006435 }
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006436
6437 gro_normal_list(n);
6438
Eric Dumazet02c16022017-02-04 15:25:02 -08006439 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006440 /* If n->poll_list is not empty, we need to mask irqs */
6441 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006442 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006443 local_irq_restore(flags);
6444 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006445
6446 do {
6447 val = READ_ONCE(n->state);
6448
6449 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6450
Björn Töpel7fd32532020-11-30 19:51:56 +01006451 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED |
6452 NAPIF_STATE_PREFER_BUSY_POLL);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006453
6454 /* If STATE_MISSED was set, leave STATE_SCHED set,
6455 * because we will call napi->poll() one more time.
6456 * This C code was suggested by Alexander Duyck to help gcc.
6457 */
6458 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6459 NAPIF_STATE_SCHED;
6460 } while (cmpxchg(&n->state, val, new) != val);
6461
6462 if (unlikely(val & NAPIF_STATE_MISSED)) {
6463 __napi_schedule(n);
6464 return false;
6465 }
6466
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006467 if (timeout)
6468 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6469 HRTIMER_MODE_REL_PINNED);
6470 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006471}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006472EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006473
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006474/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006475static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006476{
6477 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6478 struct napi_struct *napi;
6479
6480 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6481 if (napi->napi_id == napi_id)
6482 return napi;
6483
6484 return NULL;
6485}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006486
6487#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006488
Björn Töpel7fd32532020-11-30 19:51:56 +01006489static void __busy_poll_stop(struct napi_struct *napi, bool skip_schedule)
Eric Dumazet217f6972016-11-15 10:15:11 -08006490{
Björn Töpel7fd32532020-11-30 19:51:56 +01006491 if (!skip_schedule) {
6492 gro_normal_list(napi);
6493 __napi_schedule(napi);
6494 return;
6495 }
6496
6497 if (napi->gro_bitmask) {
6498 /* flush too old packets
6499 * If HZ < 1000, flush all packets.
6500 */
6501 napi_gro_flush(napi, HZ >= 1000);
6502 }
6503
6504 gro_normal_list(napi);
6505 clear_bit(NAPI_STATE_SCHED, &napi->state);
6506}
6507
Björn Töpel7c951caf2020-11-30 19:51:57 +01006508static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock, bool prefer_busy_poll,
6509 u16 budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006510{
6511 bool skip_schedule = false;
6512 unsigned long timeout;
Eric Dumazet217f6972016-11-15 10:15:11 -08006513 int rc;
6514
Eric Dumazet39e6c822017-02-28 10:34:50 -08006515 /* Busy polling means there is a high chance device driver hard irq
6516 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6517 * set in napi_schedule_prep().
6518 * Since we are about to call napi->poll() once more, we can safely
6519 * clear NAPI_STATE_MISSED.
6520 *
6521 * Note: x86 could use a single "lock and ..." instruction
6522 * to perform these two clear_bit()
6523 */
6524 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006525 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6526
6527 local_bh_disable();
6528
Björn Töpel7fd32532020-11-30 19:51:56 +01006529 if (prefer_busy_poll) {
6530 napi->defer_hard_irqs_count = READ_ONCE(napi->dev->napi_defer_hard_irqs);
6531 timeout = READ_ONCE(napi->dev->gro_flush_timeout);
6532 if (napi->defer_hard_irqs_count && timeout) {
6533 hrtimer_start(&napi->timer, ns_to_ktime(timeout), HRTIMER_MODE_REL_PINNED);
6534 skip_schedule = true;
6535 }
6536 }
6537
Eric Dumazet217f6972016-11-15 10:15:11 -08006538 /* All we really want here is to re-enable device interrupts.
6539 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6540 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006541 rc = napi->poll(napi, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006542 /* We can't gro_normal_list() here, because napi->poll() might have
6543 * rearmed the napi (napi_complete_done()) in which case it could
6544 * already be running on another CPU.
6545 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006546 trace_napi_poll(napi, rc, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006547 netpoll_poll_unlock(have_poll_lock);
Björn Töpel7c951caf2020-11-30 19:51:57 +01006548 if (rc == budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006549 __busy_poll_stop(napi, skip_schedule);
Eric Dumazet217f6972016-11-15 10:15:11 -08006550 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006551}
6552
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006553void napi_busy_loop(unsigned int napi_id,
6554 bool (*loop_end)(void *, unsigned long),
Björn Töpel7c951caf2020-11-30 19:51:57 +01006555 void *loop_end_arg, bool prefer_busy_poll, u16 budget)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006556{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006557 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006558 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006559 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006560 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006561
6562restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006563 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006564
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006565 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006566
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006567 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006568 if (!napi)
6569 goto out;
6570
Eric Dumazet217f6972016-11-15 10:15:11 -08006571 preempt_disable();
6572 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006573 int work = 0;
6574
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006575 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006576 if (!napi_poll) {
6577 unsigned long val = READ_ONCE(napi->state);
6578
6579 /* If multiple threads are competing for this napi,
6580 * we avoid dirtying napi->state as much as we can.
6581 */
6582 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
Björn Töpel7fd32532020-11-30 19:51:56 +01006583 NAPIF_STATE_IN_BUSY_POLL)) {
6584 if (prefer_busy_poll)
6585 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006586 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006587 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006588 if (cmpxchg(&napi->state, val,
6589 val | NAPIF_STATE_IN_BUSY_POLL |
Björn Töpel7fd32532020-11-30 19:51:56 +01006590 NAPIF_STATE_SCHED) != val) {
6591 if (prefer_busy_poll)
6592 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006593 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006594 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006595 have_poll_lock = netpoll_poll_lock(napi);
6596 napi_poll = napi->poll;
6597 }
Björn Töpel7c951caf2020-11-30 19:51:57 +01006598 work = napi_poll(napi, budget);
6599 trace_napi_poll(napi, work, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006600 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006601count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006602 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006603 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006604 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006605 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006606
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006607 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006608 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006609
Eric Dumazet217f6972016-11-15 10:15:11 -08006610 if (unlikely(need_resched())) {
6611 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006612 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006613 preempt_enable();
6614 rcu_read_unlock();
6615 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006616 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006617 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006618 goto restart;
6619 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006620 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006621 }
6622 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006623 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006624 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006625out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006626 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006627}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006628EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006629
6630#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006631
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006632static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006633{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006634 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006635 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006636
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006637 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006638
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006639 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006640 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006641 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6642 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006643 } while (napi_by_id(napi_gen_id));
6644 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006645
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006646 hlist_add_head_rcu(&napi->napi_hash_node,
6647 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006648
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006649 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006650}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006651
6652/* Warning : caller is responsible to make sure rcu grace period
6653 * is respected before freeing memory containing @napi
6654 */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006655static void napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006656{
6657 spin_lock(&napi_hash_lock);
6658
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006659 hlist_del_init_rcu(&napi->napi_hash_node);
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006660
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006661 spin_unlock(&napi_hash_lock);
6662}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006663
Eric Dumazet3b47d302014-11-06 21:09:44 -08006664static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6665{
6666 struct napi_struct *napi;
6667
6668 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006669
6670 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6671 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6672 */
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006673 if (!napi_disable_pending(napi) &&
Björn Töpel7fd32532020-11-30 19:51:56 +01006674 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state)) {
6675 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006676 __napi_schedule_irqoff(napi);
Björn Töpel7fd32532020-11-30 19:51:56 +01006677 }
Eric Dumazet3b47d302014-11-06 21:09:44 -08006678
6679 return HRTIMER_NORESTART;
6680}
6681
David S. Miller7c4ec742018-07-20 23:37:55 -07006682static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006683{
David Miller07d78362018-06-24 14:14:02 +09006684 int i;
6685
Li RongQing6312fe72018-07-05 14:34:32 +08006686 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6687 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6688 napi->gro_hash[i].count = 0;
6689 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006690 napi->gro_bitmask = 0;
6691}
6692
6693void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6694 int (*poll)(struct napi_struct *, int), int weight)
6695{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006696 if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
6697 return;
6698
David S. Miller7c4ec742018-07-20 23:37:55 -07006699 INIT_LIST_HEAD(&napi->poll_list);
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006700 INIT_HLIST_NODE(&napi->napi_hash_node);
David S. Miller7c4ec742018-07-20 23:37:55 -07006701 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6702 napi->timer.function = napi_watchdog;
6703 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006704 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006705 INIT_LIST_HEAD(&napi->rx_list);
6706 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006707 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006708 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006709 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6710 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006711 napi->weight = weight;
Herbert Xud565b0a2008-12-15 23:38:52 -08006712 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006713#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006714 napi->poll_owner = -1;
6715#endif
6716 set_bit(NAPI_STATE_SCHED, &napi->state);
Jakub Kicinski96e97bc2020-08-26 12:40:06 -07006717 set_bit(NAPI_STATE_NPSVC, &napi->state);
6718 list_add_rcu(&napi->dev_list, &dev->napi_list);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006719 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006720}
6721EXPORT_SYMBOL(netif_napi_add);
6722
Eric Dumazet3b47d302014-11-06 21:09:44 -08006723void napi_disable(struct napi_struct *n)
6724{
6725 might_sleep();
6726 set_bit(NAPI_STATE_DISABLE, &n->state);
6727
6728 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6729 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006730 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6731 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006732
6733 hrtimer_cancel(&n->timer);
6734
Björn Töpel7fd32532020-11-30 19:51:56 +01006735 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &n->state);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006736 clear_bit(NAPI_STATE_DISABLE, &n->state);
6737}
6738EXPORT_SYMBOL(napi_disable);
6739
David Miller07d78362018-06-24 14:14:02 +09006740static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006741{
David Miller07d78362018-06-24 14:14:02 +09006742 int i;
David Millerd4546c22018-06-24 14:13:49 +09006743
David Miller07d78362018-06-24 14:14:02 +09006744 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6745 struct sk_buff *skb, *n;
6746
Li RongQing6312fe72018-07-05 14:34:32 +08006747 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006748 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006749 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006750 }
David Millerd4546c22018-06-24 14:13:49 +09006751}
6752
Eric Dumazet93d05d42015-11-18 06:31:03 -08006753/* Must be called in process context */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006754void __netif_napi_del(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006755{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006756 if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
6757 return;
6758
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006759 napi_hash_del(napi);
Jakub Kicinski5251ef82020-09-09 10:37:53 -07006760 list_del_rcu(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006761 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006762
David Miller07d78362018-06-24 14:14:02 +09006763 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006764 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006765}
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006766EXPORT_SYMBOL(__netif_napi_del);
Herbert Xud565b0a2008-12-15 23:38:52 -08006767
Herbert Xu726ce702014-12-21 07:16:21 +11006768static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6769{
6770 void *have;
6771 int work, weight;
6772
6773 list_del_init(&n->poll_list);
6774
6775 have = netpoll_poll_lock(n);
6776
6777 weight = n->weight;
6778
6779 /* This NAPI_STATE_SCHED test is for avoiding a race
6780 * with netpoll's poll_napi(). Only the entity which
6781 * obtains the lock and sees NAPI_STATE_SCHED set will
6782 * actually make the ->poll() call. Therefore we avoid
6783 * accidentally calling ->poll() when NAPI is not scheduled.
6784 */
6785 work = 0;
6786 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6787 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006788 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006789 }
6790
Eric Dumazet427d5832020-06-17 09:40:51 -07006791 if (unlikely(work > weight))
6792 pr_err_once("NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
6793 n->poll, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006794
6795 if (likely(work < weight))
6796 goto out_unlock;
6797
6798 /* Drivers must not modify the NAPI state if they
6799 * consume the entire weight. In such cases this code
6800 * still "owns" the NAPI instance and therefore can
6801 * move the instance around on the list at-will.
6802 */
6803 if (unlikely(napi_disable_pending(n))) {
6804 napi_complete(n);
6805 goto out_unlock;
6806 }
6807
Björn Töpel7fd32532020-11-30 19:51:56 +01006808 /* The NAPI context has more processing work, but busy-polling
6809 * is preferred. Exit early.
6810 */
6811 if (napi_prefer_busy_poll(n)) {
6812 if (napi_complete_done(n, work)) {
6813 /* If timeout is not set, we need to make sure
6814 * that the NAPI is re-scheduled.
6815 */
6816 napi_schedule(n);
6817 }
6818 goto out_unlock;
6819 }
6820
Li RongQingd9f37d02018-07-13 14:41:36 +08006821 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006822 /* flush too old packets
6823 * If HZ < 1000, flush all packets.
6824 */
6825 napi_gro_flush(n, HZ >= 1000);
6826 }
6827
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006828 gro_normal_list(n);
6829
Herbert Xu001ce542014-12-21 07:16:22 +11006830 /* Some drivers may have called napi_schedule
6831 * prior to exhausting their budget.
6832 */
6833 if (unlikely(!list_empty(&n->poll_list))) {
6834 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6835 n->dev ? n->dev->name : "backlog");
6836 goto out_unlock;
6837 }
6838
Herbert Xu726ce702014-12-21 07:16:21 +11006839 list_add_tail(&n->poll_list, repoll);
6840
6841out_unlock:
6842 netpoll_poll_unlock(have);
6843
6844 return work;
6845}
6846
Emese Revfy0766f782016-06-20 20:42:34 +02006847static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006849 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006850 unsigned long time_limit = jiffies +
6851 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006852 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006853 LIST_HEAD(list);
6854 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006855
Linus Torvalds1da177e2005-04-16 15:20:36 -07006856 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006857 list_splice_init(&sd->poll_list, &list);
6858 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006860 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006861 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006862
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006863 if (list_empty(&list)) {
6864 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006865 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006866 break;
6867 }
6868
Herbert Xu6bd373e2014-12-21 07:16:24 +11006869 n = list_first_entry(&list, struct napi_struct, poll_list);
6870 budget -= napi_poll(n, &repoll);
6871
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006872 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006873 * Allow this to run for 2 jiffies since which will allow
6874 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006875 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006876 if (unlikely(budget <= 0 ||
6877 time_after_eq(jiffies, time_limit))) {
6878 sd->time_squeeze++;
6879 break;
6880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006881 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006882
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006883 local_irq_disable();
6884
6885 list_splice_tail_init(&sd->poll_list, &list);
6886 list_splice_tail(&repoll, &list);
6887 list_splice(&list, &sd->poll_list);
6888 if (!list_empty(&sd->poll_list))
6889 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6890
Eric Dumazete326bed2010-04-22 00:22:45 -07006891 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006892out:
6893 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894}
6895
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006896struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006897 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006898
6899 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006900 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006901
Taehee Yoo32b6d342019-10-21 18:47:56 +00006902 /* lookup ignore flag */
6903 bool ignore;
6904
Veaceslav Falico5d261912013-08-28 23:25:05 +02006905 /* counter for the number of times this device was added to us */
6906 u16 ref_nr;
6907
Veaceslav Falico402dae92013-09-25 09:20:09 +02006908 /* private field for the users */
6909 void *private;
6910
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006911 struct list_head list;
6912 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006913};
6914
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006915static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006916 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006917{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006918 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006919
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006920 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006921 if (adj->dev == adj_dev)
6922 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006923 }
6924 return NULL;
6925}
6926
Taehee Yooeff74232020-09-25 18:13:12 +00006927static int ____netdev_has_upper_dev(struct net_device *upper_dev,
6928 struct netdev_nested_priv *priv)
David Ahernf1170fd2016-10-17 19:15:51 -07006929{
Taehee Yooeff74232020-09-25 18:13:12 +00006930 struct net_device *dev = (struct net_device *)priv->data;
David Ahernf1170fd2016-10-17 19:15:51 -07006931
6932 return upper_dev == dev;
6933}
6934
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006935/**
6936 * netdev_has_upper_dev - Check if device is linked to an upper device
6937 * @dev: device
6938 * @upper_dev: upper device to check
6939 *
6940 * Find out if a device is linked to specified upper device and return true
6941 * in case it is. Note that this checks only immediate upper device,
6942 * not through a complete stack of devices. The caller must hold the RTNL lock.
6943 */
6944bool netdev_has_upper_dev(struct net_device *dev,
6945 struct net_device *upper_dev)
6946{
Taehee Yooeff74232020-09-25 18:13:12 +00006947 struct netdev_nested_priv priv = {
6948 .data = (void *)upper_dev,
6949 };
6950
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006951 ASSERT_RTNL();
6952
Taehee Yoo32b6d342019-10-21 18:47:56 +00006953 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00006954 &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006955}
6956EXPORT_SYMBOL(netdev_has_upper_dev);
6957
6958/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01006959 * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device
David Ahern1a3f0602016-10-17 19:15:44 -07006960 * @dev: device
6961 * @upper_dev: upper device to check
6962 *
6963 * Find out if a device is linked to specified upper device and return true
6964 * in case it is. Note that this checks the entire upper device chain.
6965 * The caller must hold rcu lock.
6966 */
6967
David Ahern1a3f0602016-10-17 19:15:44 -07006968bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6969 struct net_device *upper_dev)
6970{
Taehee Yooeff74232020-09-25 18:13:12 +00006971 struct netdev_nested_priv priv = {
6972 .data = (void *)upper_dev,
6973 };
6974
Taehee Yoo32b6d342019-10-21 18:47:56 +00006975 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00006976 &priv);
David Ahern1a3f0602016-10-17 19:15:44 -07006977}
6978EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6979
6980/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006981 * netdev_has_any_upper_dev - Check if device is linked to some device
6982 * @dev: device
6983 *
6984 * Find out if a device is linked to an upper device and return true in case
6985 * it is. The caller must hold the RTNL lock.
6986 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006987bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006988{
6989 ASSERT_RTNL();
6990
David Ahernf1170fd2016-10-17 19:15:51 -07006991 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006992}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006993EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006994
6995/**
6996 * netdev_master_upper_dev_get - Get master upper device
6997 * @dev: device
6998 *
6999 * Find a master upper device and return pointer to it or NULL in case
7000 * it's not there. The caller must hold the RTNL lock.
7001 */
7002struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
7003{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007004 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007005
7006 ASSERT_RTNL();
7007
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007008 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007009 return NULL;
7010
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007011 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007012 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007013 if (likely(upper->master))
7014 return upper->dev;
7015 return NULL;
7016}
7017EXPORT_SYMBOL(netdev_master_upper_dev_get);
7018
Taehee Yoo32b6d342019-10-21 18:47:56 +00007019static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
7020{
7021 struct netdev_adjacent *upper;
7022
7023 ASSERT_RTNL();
7024
7025 if (list_empty(&dev->adj_list.upper))
7026 return NULL;
7027
7028 upper = list_first_entry(&dev->adj_list.upper,
7029 struct netdev_adjacent, list);
7030 if (likely(upper->master) && !upper->ignore)
7031 return upper->dev;
7032 return NULL;
7033}
7034
David Ahern0f524a82016-10-17 19:15:52 -07007035/**
7036 * netdev_has_any_lower_dev - Check if device is linked to some device
7037 * @dev: device
7038 *
7039 * Find out if a device is linked to a lower device and return true in case
7040 * it is. The caller must hold the RTNL lock.
7041 */
7042static bool netdev_has_any_lower_dev(struct net_device *dev)
7043{
7044 ASSERT_RTNL();
7045
7046 return !list_empty(&dev->adj_list.lower);
7047}
7048
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02007049void *netdev_adjacent_get_private(struct list_head *adj_list)
7050{
7051 struct netdev_adjacent *adj;
7052
7053 adj = list_entry(adj_list, struct netdev_adjacent, list);
7054
7055 return adj->private;
7056}
7057EXPORT_SYMBOL(netdev_adjacent_get_private);
7058
Veaceslav Falico31088a12013-09-25 09:20:12 +02007059/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04007060 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
7061 * @dev: device
7062 * @iter: list_head ** of the current position
7063 *
7064 * Gets the next device from the dev's upper list, starting from iter
7065 * position. The caller must hold RCU read lock.
7066 */
7067struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
7068 struct list_head **iter)
7069{
7070 struct netdev_adjacent *upper;
7071
7072 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7073
7074 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7075
7076 if (&upper->list == &dev->adj_list.upper)
7077 return NULL;
7078
7079 *iter = &upper->list;
7080
7081 return upper->dev;
7082}
7083EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
7084
Taehee Yoo32b6d342019-10-21 18:47:56 +00007085static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
7086 struct list_head **iter,
7087 bool *ignore)
Taehee Yoo5343da42019-10-21 18:47:50 +00007088{
7089 struct netdev_adjacent *upper;
7090
7091 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
7092
7093 if (&upper->list == &dev->adj_list.upper)
7094 return NULL;
7095
7096 *iter = &upper->list;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007097 *ignore = upper->ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007098
7099 return upper->dev;
7100}
7101
David Ahern1a3f0602016-10-17 19:15:44 -07007102static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
7103 struct list_head **iter)
7104{
7105 struct netdev_adjacent *upper;
7106
7107 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7108
7109 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7110
7111 if (&upper->list == &dev->adj_list.upper)
7112 return NULL;
7113
7114 *iter = &upper->list;
7115
7116 return upper->dev;
7117}
7118
Taehee Yoo32b6d342019-10-21 18:47:56 +00007119static int __netdev_walk_all_upper_dev(struct net_device *dev,
7120 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007121 struct netdev_nested_priv *priv),
7122 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007123{
7124 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7125 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7126 int ret, cur = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007127 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007128
7129 now = dev;
7130 iter = &dev->adj_list.upper;
7131
7132 while (1) {
7133 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007134 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007135 if (ret)
7136 return ret;
7137 }
7138
7139 next = NULL;
7140 while (1) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007141 udev = __netdev_next_upper_dev(now, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007142 if (!udev)
7143 break;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007144 if (ignore)
7145 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007146
7147 next = udev;
7148 niter = &udev->adj_list.upper;
7149 dev_stack[cur] = now;
7150 iter_stack[cur++] = iter;
7151 break;
7152 }
7153
7154 if (!next) {
7155 if (!cur)
7156 return 0;
7157 next = dev_stack[--cur];
7158 niter = iter_stack[cur];
7159 }
7160
7161 now = next;
7162 iter = niter;
7163 }
7164
7165 return 0;
7166}
7167
David Ahern1a3f0602016-10-17 19:15:44 -07007168int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
7169 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007170 struct netdev_nested_priv *priv),
7171 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007172{
Taehee Yoo5343da42019-10-21 18:47:50 +00007173 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7174 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7175 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007176
Taehee Yoo5343da42019-10-21 18:47:50 +00007177 now = dev;
7178 iter = &dev->adj_list.upper;
David Ahern1a3f0602016-10-17 19:15:44 -07007179
Taehee Yoo5343da42019-10-21 18:47:50 +00007180 while (1) {
7181 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007182 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007183 if (ret)
7184 return ret;
7185 }
7186
7187 next = NULL;
7188 while (1) {
7189 udev = netdev_next_upper_dev_rcu(now, &iter);
7190 if (!udev)
7191 break;
7192
7193 next = udev;
7194 niter = &udev->adj_list.upper;
7195 dev_stack[cur] = now;
7196 iter_stack[cur++] = iter;
7197 break;
7198 }
7199
7200 if (!next) {
7201 if (!cur)
7202 return 0;
7203 next = dev_stack[--cur];
7204 niter = iter_stack[cur];
7205 }
7206
7207 now = next;
7208 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007209 }
7210
7211 return 0;
7212}
7213EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
7214
Taehee Yoo32b6d342019-10-21 18:47:56 +00007215static bool __netdev_has_upper_dev(struct net_device *dev,
7216 struct net_device *upper_dev)
7217{
Taehee Yooeff74232020-09-25 18:13:12 +00007218 struct netdev_nested_priv priv = {
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007219 .flags = 0,
Taehee Yooeff74232020-09-25 18:13:12 +00007220 .data = (void *)upper_dev,
7221 };
7222
Taehee Yoo32b6d342019-10-21 18:47:56 +00007223 ASSERT_RTNL();
7224
7225 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007226 &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007227}
7228
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007229/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02007230 * netdev_lower_get_next_private - Get the next ->private from the
7231 * lower neighbour list
7232 * @dev: device
7233 * @iter: list_head ** of the current position
7234 *
7235 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7236 * list, starting from iter position. The caller must hold either hold the
7237 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007238 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02007239 */
7240void *netdev_lower_get_next_private(struct net_device *dev,
7241 struct list_head **iter)
7242{
7243 struct netdev_adjacent *lower;
7244
7245 lower = list_entry(*iter, struct netdev_adjacent, list);
7246
7247 if (&lower->list == &dev->adj_list.lower)
7248 return NULL;
7249
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007250 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007251
7252 return lower->private;
7253}
7254EXPORT_SYMBOL(netdev_lower_get_next_private);
7255
7256/**
7257 * netdev_lower_get_next_private_rcu - Get the next ->private from the
7258 * lower neighbour list, RCU
7259 * variant
7260 * @dev: device
7261 * @iter: list_head ** of the current position
7262 *
7263 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7264 * list, starting from iter position. The caller must hold RCU read lock.
7265 */
7266void *netdev_lower_get_next_private_rcu(struct net_device *dev,
7267 struct list_head **iter)
7268{
7269 struct netdev_adjacent *lower;
7270
7271 WARN_ON_ONCE(!rcu_read_lock_held());
7272
7273 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7274
7275 if (&lower->list == &dev->adj_list.lower)
7276 return NULL;
7277
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007278 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007279
7280 return lower->private;
7281}
7282EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7283
7284/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007285 * netdev_lower_get_next - Get the next device from the lower neighbour
7286 * list
7287 * @dev: device
7288 * @iter: list_head ** of the current position
7289 *
7290 * Gets the next netdev_adjacent from the dev's lower neighbour
7291 * list, starting from iter position. The caller must hold RTNL lock or
7292 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007293 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007294 */
7295void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7296{
7297 struct netdev_adjacent *lower;
7298
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007299 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007300
7301 if (&lower->list == &dev->adj_list.lower)
7302 return NULL;
7303
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007304 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007305
7306 return lower->dev;
7307}
7308EXPORT_SYMBOL(netdev_lower_get_next);
7309
David Ahern1a3f0602016-10-17 19:15:44 -07007310static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7311 struct list_head **iter)
7312{
7313 struct netdev_adjacent *lower;
7314
David Ahern46b5ab12016-10-26 13:21:33 -07007315 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07007316
7317 if (&lower->list == &dev->adj_list.lower)
7318 return NULL;
7319
David Ahern46b5ab12016-10-26 13:21:33 -07007320 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07007321
7322 return lower->dev;
7323}
7324
Taehee Yoo32b6d342019-10-21 18:47:56 +00007325static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7326 struct list_head **iter,
7327 bool *ignore)
7328{
7329 struct netdev_adjacent *lower;
7330
7331 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7332
7333 if (&lower->list == &dev->adj_list.lower)
7334 return NULL;
7335
7336 *iter = &lower->list;
7337 *ignore = lower->ignore;
7338
7339 return lower->dev;
7340}
7341
David Ahern1a3f0602016-10-17 19:15:44 -07007342int netdev_walk_all_lower_dev(struct net_device *dev,
7343 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007344 struct netdev_nested_priv *priv),
7345 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007346{
Taehee Yoo5343da42019-10-21 18:47:50 +00007347 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7348 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7349 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007350
Taehee Yoo5343da42019-10-21 18:47:50 +00007351 now = dev;
7352 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007353
Taehee Yoo5343da42019-10-21 18:47:50 +00007354 while (1) {
7355 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007356 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007357 if (ret)
7358 return ret;
7359 }
7360
7361 next = NULL;
7362 while (1) {
7363 ldev = netdev_next_lower_dev(now, &iter);
7364 if (!ldev)
7365 break;
7366
7367 next = ldev;
7368 niter = &ldev->adj_list.lower;
7369 dev_stack[cur] = now;
7370 iter_stack[cur++] = iter;
7371 break;
7372 }
7373
7374 if (!next) {
7375 if (!cur)
7376 return 0;
7377 next = dev_stack[--cur];
7378 niter = iter_stack[cur];
7379 }
7380
7381 now = next;
7382 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007383 }
7384
7385 return 0;
7386}
7387EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7388
Taehee Yoo32b6d342019-10-21 18:47:56 +00007389static int __netdev_walk_all_lower_dev(struct net_device *dev,
7390 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007391 struct netdev_nested_priv *priv),
7392 struct netdev_nested_priv *priv)
Taehee Yoo32b6d342019-10-21 18:47:56 +00007393{
7394 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7395 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7396 int ret, cur = 0;
7397 bool ignore;
7398
7399 now = dev;
7400 iter = &dev->adj_list.lower;
7401
7402 while (1) {
7403 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007404 ret = fn(now, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007405 if (ret)
7406 return ret;
7407 }
7408
7409 next = NULL;
7410 while (1) {
7411 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7412 if (!ldev)
7413 break;
7414 if (ignore)
7415 continue;
7416
7417 next = ldev;
7418 niter = &ldev->adj_list.lower;
7419 dev_stack[cur] = now;
7420 iter_stack[cur++] = iter;
7421 break;
7422 }
7423
7424 if (!next) {
7425 if (!cur)
7426 return 0;
7427 next = dev_stack[--cur];
7428 niter = iter_stack[cur];
7429 }
7430
7431 now = next;
7432 iter = niter;
7433 }
7434
7435 return 0;
7436}
7437
Taehee Yoo7151aff2020-02-15 10:50:21 +00007438struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7439 struct list_head **iter)
David Ahern1a3f0602016-10-17 19:15:44 -07007440{
7441 struct netdev_adjacent *lower;
7442
7443 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7444 if (&lower->list == &dev->adj_list.lower)
7445 return NULL;
7446
7447 *iter = &lower->list;
7448
7449 return lower->dev;
7450}
Taehee Yoo7151aff2020-02-15 10:50:21 +00007451EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
David Ahern1a3f0602016-10-17 19:15:44 -07007452
Taehee Yoo5343da42019-10-21 18:47:50 +00007453static u8 __netdev_upper_depth(struct net_device *dev)
7454{
7455 struct net_device *udev;
7456 struct list_head *iter;
7457 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007458 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007459
7460 for (iter = &dev->adj_list.upper,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007461 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007462 udev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007463 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7464 if (ignore)
7465 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007466 if (max_depth < udev->upper_level)
7467 max_depth = udev->upper_level;
7468 }
7469
7470 return max_depth;
7471}
7472
7473static u8 __netdev_lower_depth(struct net_device *dev)
7474{
7475 struct net_device *ldev;
7476 struct list_head *iter;
7477 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007478 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007479
7480 for (iter = &dev->adj_list.lower,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007481 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007482 ldev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007483 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7484 if (ignore)
7485 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007486 if (max_depth < ldev->lower_level)
7487 max_depth = ldev->lower_level;
7488 }
7489
7490 return max_depth;
7491}
7492
Taehee Yooeff74232020-09-25 18:13:12 +00007493static int __netdev_update_upper_level(struct net_device *dev,
7494 struct netdev_nested_priv *__unused)
Taehee Yoo5343da42019-10-21 18:47:50 +00007495{
7496 dev->upper_level = __netdev_upper_depth(dev) + 1;
7497 return 0;
7498}
7499
Taehee Yooeff74232020-09-25 18:13:12 +00007500static int __netdev_update_lower_level(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007501 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007502{
7503 dev->lower_level = __netdev_lower_depth(dev) + 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007504
7505#ifdef CONFIG_LOCKDEP
7506 if (!priv)
7507 return 0;
7508
7509 if (priv->flags & NESTED_SYNC_IMM)
7510 dev->nested_level = dev->lower_level - 1;
7511 if (priv->flags & NESTED_SYNC_TODO)
7512 net_unlink_todo(dev);
7513#endif
Taehee Yoo5343da42019-10-21 18:47:50 +00007514 return 0;
7515}
7516
David Ahern1a3f0602016-10-17 19:15:44 -07007517int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7518 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007519 struct netdev_nested_priv *priv),
7520 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007521{
Taehee Yoo5343da42019-10-21 18:47:50 +00007522 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7523 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7524 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007525
Taehee Yoo5343da42019-10-21 18:47:50 +00007526 now = dev;
7527 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007528
Taehee Yoo5343da42019-10-21 18:47:50 +00007529 while (1) {
7530 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007531 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007532 if (ret)
7533 return ret;
7534 }
7535
7536 next = NULL;
7537 while (1) {
7538 ldev = netdev_next_lower_dev_rcu(now, &iter);
7539 if (!ldev)
7540 break;
7541
7542 next = ldev;
7543 niter = &ldev->adj_list.lower;
7544 dev_stack[cur] = now;
7545 iter_stack[cur++] = iter;
7546 break;
7547 }
7548
7549 if (!next) {
7550 if (!cur)
7551 return 0;
7552 next = dev_stack[--cur];
7553 niter = iter_stack[cur];
7554 }
7555
7556 now = next;
7557 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007558 }
7559
7560 return 0;
7561}
7562EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7563
Jiri Pirko7ce856a2016-07-04 08:23:12 +02007564/**
dingtianhonge001bfa2013-12-13 10:19:55 +08007565 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7566 * lower neighbour list, RCU
7567 * variant
7568 * @dev: device
7569 *
7570 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7571 * list. The caller must hold RCU read lock.
7572 */
7573void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7574{
7575 struct netdev_adjacent *lower;
7576
7577 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7578 struct netdev_adjacent, list);
7579 if (lower)
7580 return lower->private;
7581 return NULL;
7582}
7583EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7584
7585/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007586 * netdev_master_upper_dev_get_rcu - Get master upper device
7587 * @dev: device
7588 *
7589 * Find a master upper device and return pointer to it or NULL in case
7590 * it's not there. The caller must hold the RCU read lock.
7591 */
7592struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7593{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007594 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007595
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007596 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007597 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007598 if (upper && likely(upper->master))
7599 return upper->dev;
7600 return NULL;
7601}
7602EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7603
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307604static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007605 struct net_device *adj_dev,
7606 struct list_head *dev_list)
7607{
7608 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007609
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007610 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7611 "upper_%s" : "lower_%s", adj_dev->name);
7612 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7613 linkname);
7614}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307615static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007616 char *name,
7617 struct list_head *dev_list)
7618{
7619 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007620
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007621 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7622 "upper_%s" : "lower_%s", name);
7623 sysfs_remove_link(&(dev->dev.kobj), linkname);
7624}
7625
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007626static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7627 struct net_device *adj_dev,
7628 struct list_head *dev_list)
7629{
7630 return (dev_list == &dev->adj_list.upper ||
7631 dev_list == &dev->adj_list.lower) &&
7632 net_eq(dev_net(dev), dev_net(adj_dev));
7633}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007634
Veaceslav Falico5d261912013-08-28 23:25:05 +02007635static int __netdev_adjacent_dev_insert(struct net_device *dev,
7636 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02007637 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007638 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007639{
7640 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007641 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007642
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007643 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007644
7645 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07007646 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07007647 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7648 dev->name, adj_dev->name, adj->ref_nr);
7649
Veaceslav Falico5d261912013-08-28 23:25:05 +02007650 return 0;
7651 }
7652
7653 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7654 if (!adj)
7655 return -ENOMEM;
7656
7657 adj->dev = adj_dev;
7658 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07007659 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007660 adj->private = private;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007661 adj->ignore = false;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007662 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007663
David Ahern67b62f92016-10-17 19:15:53 -07007664 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7665 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007666
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007667 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007668 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007669 if (ret)
7670 goto free_adj;
7671 }
7672
Veaceslav Falico7863c052013-09-25 09:20:06 +02007673 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007674 if (master) {
7675 ret = sysfs_create_link(&(dev->dev.kobj),
7676 &(adj_dev->dev.kobj), "master");
7677 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02007678 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007679
Veaceslav Falico7863c052013-09-25 09:20:06 +02007680 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007681 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02007682 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007683 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007684
7685 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007686
Veaceslav Falico5831d662013-09-25 09:20:32 +02007687remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007688 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007689 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007690free_adj:
7691 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02007692 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007693
7694 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007695}
7696
stephen hemminger1d143d92013-12-29 14:01:29 -08007697static void __netdev_adjacent_dev_remove(struct net_device *dev,
7698 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007699 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007700 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007701{
7702 struct netdev_adjacent *adj;
7703
David Ahern67b62f92016-10-17 19:15:53 -07007704 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
7705 dev->name, adj_dev->name, ref_nr);
7706
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007707 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007708
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007709 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07007710 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007711 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07007712 WARN_ON(1);
7713 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007714 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007715
Andrew Collins93409032016-10-03 13:43:02 -06007716 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07007717 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7718 dev->name, adj_dev->name, ref_nr,
7719 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06007720 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007721 return;
7722 }
7723
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007724 if (adj->master)
7725 sysfs_remove_link(&(dev->dev.kobj), "master");
7726
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007727 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007728 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007729
Veaceslav Falico5d261912013-08-28 23:25:05 +02007730 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07007731 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007732 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007733 dev_put(adj_dev);
7734 kfree_rcu(adj, rcu);
7735}
7736
stephen hemminger1d143d92013-12-29 14:01:29 -08007737static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7738 struct net_device *upper_dev,
7739 struct list_head *up_list,
7740 struct list_head *down_list,
7741 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007742{
7743 int ret;
7744
David Ahern790510d2016-10-17 19:15:43 -07007745 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06007746 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007747 if (ret)
7748 return ret;
7749
David Ahern790510d2016-10-17 19:15:43 -07007750 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06007751 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007752 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07007753 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007754 return ret;
7755 }
7756
7757 return 0;
7758}
7759
stephen hemminger1d143d92013-12-29 14:01:29 -08007760static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7761 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007762 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007763 struct list_head *up_list,
7764 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007765{
Andrew Collins93409032016-10-03 13:43:02 -06007766 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7767 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007768}
7769
stephen hemminger1d143d92013-12-29 14:01:29 -08007770static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7771 struct net_device *upper_dev,
7772 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007773{
David Ahernf1170fd2016-10-17 19:15:51 -07007774 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7775 &dev->adj_list.upper,
7776 &upper_dev->adj_list.lower,
7777 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007778}
7779
stephen hemminger1d143d92013-12-29 14:01:29 -08007780static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7781 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007782{
Andrew Collins93409032016-10-03 13:43:02 -06007783 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007784 &dev->adj_list.upper,
7785 &upper_dev->adj_list.lower);
7786}
Veaceslav Falico5d261912013-08-28 23:25:05 +02007787
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007788static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007789 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07007790 void *upper_priv, void *upper_info,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007791 struct netdev_nested_priv *priv,
David Ahern42ab19e2017-10-04 17:48:47 -07007792 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007793{
David Ahern51d0c0472017-10-04 17:48:45 -07007794 struct netdev_notifier_changeupper_info changeupper_info = {
7795 .info = {
7796 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007797 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07007798 },
7799 .upper_dev = upper_dev,
7800 .master = master,
7801 .linking = true,
7802 .upper_info = upper_info,
7803 };
Mike Manning50d629e2018-02-26 23:49:30 +00007804 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007805 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007806
7807 ASSERT_RTNL();
7808
7809 if (dev == upper_dev)
7810 return -EBUSY;
7811
7812 /* To prevent loops, check if dev is not upper device to upper_dev. */
Taehee Yoo32b6d342019-10-21 18:47:56 +00007813 if (__netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007814 return -EBUSY;
7815
Taehee Yoo5343da42019-10-21 18:47:50 +00007816 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
7817 return -EMLINK;
7818
Mike Manning50d629e2018-02-26 23:49:30 +00007819 if (!master) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007820 if (__netdev_has_upper_dev(dev, upper_dev))
Mike Manning50d629e2018-02-26 23:49:30 +00007821 return -EEXIST;
7822 } else {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007823 master_dev = __netdev_master_upper_dev_get(dev);
Mike Manning50d629e2018-02-26 23:49:30 +00007824 if (master_dev)
7825 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7826 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007827
David Ahern51d0c0472017-10-04 17:48:45 -07007828 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007829 &changeupper_info.info);
7830 ret = notifier_to_errno(ret);
7831 if (ret)
7832 return ret;
7833
Jiri Pirko6dffb042015-12-03 12:12:10 +01007834 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007835 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007836 if (ret)
7837 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007838
David Ahern51d0c0472017-10-04 17:48:45 -07007839 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01007840 &changeupper_info.info);
7841 ret = notifier_to_errno(ret);
7842 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07007843 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01007844
Taehee Yoo5343da42019-10-21 18:47:50 +00007845 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007846 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00007847
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007848 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007849 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007850 priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007851
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007852 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007853
David Ahernf1170fd2016-10-17 19:15:51 -07007854rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007855 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007856
7857 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007858}
7859
7860/**
7861 * netdev_upper_dev_link - Add a link to the upper device
7862 * @dev: device
7863 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007864 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007865 *
7866 * Adds a link to device which is upper to this one. The caller must hold
7867 * the RTNL lock. On a failure a negative errno code is returned.
7868 * On success the reference counts are adjusted and the function
7869 * returns zero.
7870 */
7871int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007872 struct net_device *upper_dev,
7873 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007874{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007875 struct netdev_nested_priv priv = {
7876 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7877 .data = NULL,
7878 };
7879
David Ahern42ab19e2017-10-04 17:48:47 -07007880 return __netdev_upper_dev_link(dev, upper_dev, false,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007881 NULL, NULL, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007882}
7883EXPORT_SYMBOL(netdev_upper_dev_link);
7884
7885/**
7886 * netdev_master_upper_dev_link - Add a master link to the upper device
7887 * @dev: device
7888 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007889 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007890 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007891 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007892 *
7893 * Adds a link to device which is upper to this one. In this case, only
7894 * one master upper device can be linked, although other non-master devices
7895 * might be linked as well. The caller must hold the RTNL lock.
7896 * On a failure a negative errno code is returned. On success the reference
7897 * counts are adjusted and the function returns zero.
7898 */
7899int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007900 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007901 void *upper_priv, void *upper_info,
7902 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007903{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007904 struct netdev_nested_priv priv = {
7905 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7906 .data = NULL,
7907 };
7908
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007909 return __netdev_upper_dev_link(dev, upper_dev, true,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007910 upper_priv, upper_info, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007911}
7912EXPORT_SYMBOL(netdev_master_upper_dev_link);
7913
Taehee Yoofe8300f2020-09-25 18:13:02 +00007914static void __netdev_upper_dev_unlink(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007915 struct net_device *upper_dev,
7916 struct netdev_nested_priv *priv)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007917{
David Ahern51d0c0472017-10-04 17:48:45 -07007918 struct netdev_notifier_changeupper_info changeupper_info = {
7919 .info = {
7920 .dev = dev,
7921 },
7922 .upper_dev = upper_dev,
7923 .linking = false,
7924 };
tchardingf4563a72017-02-09 17:56:07 +11007925
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007926 ASSERT_RTNL();
7927
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007928 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007929
David Ahern51d0c0472017-10-04 17:48:45 -07007930 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007931 &changeupper_info.info);
7932
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007933 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007934
David Ahern51d0c0472017-10-04 17:48:45 -07007935 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007936 &changeupper_info.info);
Taehee Yoo5343da42019-10-21 18:47:50 +00007937
7938 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007939 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00007940
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007941 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007942 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007943 priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007944}
Taehee Yoofe8300f2020-09-25 18:13:02 +00007945
7946/**
7947 * netdev_upper_dev_unlink - Removes a link to upper device
7948 * @dev: device
7949 * @upper_dev: new upper device
7950 *
7951 * Removes a link to device which is upper to this one. The caller must hold
7952 * the RTNL lock.
7953 */
7954void netdev_upper_dev_unlink(struct net_device *dev,
7955 struct net_device *upper_dev)
7956{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007957 struct netdev_nested_priv priv = {
7958 .flags = NESTED_SYNC_TODO,
7959 .data = NULL,
7960 };
7961
7962 __netdev_upper_dev_unlink(dev, upper_dev, &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007963}
7964EXPORT_SYMBOL(netdev_upper_dev_unlink);
7965
Taehee Yoo32b6d342019-10-21 18:47:56 +00007966static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
7967 struct net_device *lower_dev,
7968 bool val)
7969{
7970 struct netdev_adjacent *adj;
7971
7972 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
7973 if (adj)
7974 adj->ignore = val;
7975
7976 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
7977 if (adj)
7978 adj->ignore = val;
7979}
7980
7981static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
7982 struct net_device *lower_dev)
7983{
7984 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
7985}
7986
7987static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
7988 struct net_device *lower_dev)
7989{
7990 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
7991}
7992
7993int netdev_adjacent_change_prepare(struct net_device *old_dev,
7994 struct net_device *new_dev,
7995 struct net_device *dev,
7996 struct netlink_ext_ack *extack)
7997{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007998 struct netdev_nested_priv priv = {
7999 .flags = 0,
8000 .data = NULL,
8001 };
Taehee Yoo32b6d342019-10-21 18:47:56 +00008002 int err;
8003
8004 if (!new_dev)
8005 return 0;
8006
8007 if (old_dev && new_dev != old_dev)
8008 netdev_adjacent_dev_disable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008009 err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
8010 extack);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008011 if (err) {
8012 if (old_dev && new_dev != old_dev)
8013 netdev_adjacent_dev_enable(dev, old_dev);
8014 return err;
8015 }
8016
8017 return 0;
8018}
8019EXPORT_SYMBOL(netdev_adjacent_change_prepare);
8020
8021void netdev_adjacent_change_commit(struct net_device *old_dev,
8022 struct net_device *new_dev,
8023 struct net_device *dev)
8024{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008025 struct netdev_nested_priv priv = {
8026 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8027 .data = NULL,
8028 };
8029
Taehee Yoo32b6d342019-10-21 18:47:56 +00008030 if (!new_dev || !old_dev)
8031 return;
8032
8033 if (new_dev == old_dev)
8034 return;
8035
8036 netdev_adjacent_dev_enable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008037 __netdev_upper_dev_unlink(old_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008038}
8039EXPORT_SYMBOL(netdev_adjacent_change_commit);
8040
8041void netdev_adjacent_change_abort(struct net_device *old_dev,
8042 struct net_device *new_dev,
8043 struct net_device *dev)
8044{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008045 struct netdev_nested_priv priv = {
8046 .flags = 0,
8047 .data = NULL,
8048 };
8049
Taehee Yoo32b6d342019-10-21 18:47:56 +00008050 if (!new_dev)
8051 return;
8052
8053 if (old_dev && new_dev != old_dev)
8054 netdev_adjacent_dev_enable(dev, old_dev);
8055
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008056 __netdev_upper_dev_unlink(new_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008057}
8058EXPORT_SYMBOL(netdev_adjacent_change_abort);
8059
Moni Shoua61bd3852015-02-03 16:48:29 +02008060/**
8061 * netdev_bonding_info_change - Dispatch event about slave change
8062 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09008063 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02008064 *
8065 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
8066 * The caller must hold the RTNL lock.
8067 */
8068void netdev_bonding_info_change(struct net_device *dev,
8069 struct netdev_bonding_info *bonding_info)
8070{
David Ahern51d0c0472017-10-04 17:48:45 -07008071 struct netdev_notifier_bonding_info info = {
8072 .info.dev = dev,
8073 };
Moni Shoua61bd3852015-02-03 16:48:29 +02008074
8075 memcpy(&info.bonding_info, bonding_info,
8076 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07008077 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02008078 &info.info);
8079}
8080EXPORT_SYMBOL(netdev_bonding_info_change);
8081
Maor Gottliebcff9f122020-04-30 22:21:31 +03008082/**
8083 * netdev_get_xmit_slave - Get the xmit slave of master device
Andrew Lunn88425002020-07-13 01:14:59 +02008084 * @dev: device
Maor Gottliebcff9f122020-04-30 22:21:31 +03008085 * @skb: The packet
8086 * @all_slaves: assume all the slaves are active
8087 *
8088 * The reference counters are not incremented so the caller must be
8089 * careful with locks. The caller must hold RCU lock.
8090 * %NULL is returned if no slave is found.
8091 */
8092
8093struct net_device *netdev_get_xmit_slave(struct net_device *dev,
8094 struct sk_buff *skb,
8095 bool all_slaves)
8096{
8097 const struct net_device_ops *ops = dev->netdev_ops;
8098
8099 if (!ops->ndo_get_xmit_slave)
8100 return NULL;
8101 return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
8102}
8103EXPORT_SYMBOL(netdev_get_xmit_slave);
8104
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008105static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008106{
8107 struct netdev_adjacent *iter;
8108
8109 struct net *net = dev_net(dev);
8110
8111 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008112 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008113 continue;
8114 netdev_adjacent_sysfs_add(iter->dev, dev,
8115 &iter->dev->adj_list.lower);
8116 netdev_adjacent_sysfs_add(dev, iter->dev,
8117 &dev->adj_list.upper);
8118 }
8119
8120 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008121 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008122 continue;
8123 netdev_adjacent_sysfs_add(iter->dev, dev,
8124 &iter->dev->adj_list.upper);
8125 netdev_adjacent_sysfs_add(dev, iter->dev,
8126 &dev->adj_list.lower);
8127 }
8128}
8129
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008130static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008131{
8132 struct netdev_adjacent *iter;
8133
8134 struct net *net = dev_net(dev);
8135
8136 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008137 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008138 continue;
8139 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8140 &iter->dev->adj_list.lower);
8141 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8142 &dev->adj_list.upper);
8143 }
8144
8145 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008146 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008147 continue;
8148 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8149 &iter->dev->adj_list.upper);
8150 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8151 &dev->adj_list.lower);
8152 }
8153}
8154
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008155void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02008156{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008157 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02008158
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008159 struct net *net = dev_net(dev);
8160
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008161 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008162 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008163 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008164 netdev_adjacent_sysfs_del(iter->dev, oldname,
8165 &iter->dev->adj_list.lower);
8166 netdev_adjacent_sysfs_add(iter->dev, dev,
8167 &iter->dev->adj_list.lower);
8168 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008169
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008170 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008171 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008172 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008173 netdev_adjacent_sysfs_del(iter->dev, oldname,
8174 &iter->dev->adj_list.upper);
8175 netdev_adjacent_sysfs_add(iter->dev, dev,
8176 &iter->dev->adj_list.upper);
8177 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008178}
Veaceslav Falico402dae92013-09-25 09:20:09 +02008179
8180void *netdev_lower_dev_get_private(struct net_device *dev,
8181 struct net_device *lower_dev)
8182{
8183 struct netdev_adjacent *lower;
8184
8185 if (!lower_dev)
8186 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008187 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02008188 if (!lower)
8189 return NULL;
8190
8191 return lower->private;
8192}
8193EXPORT_SYMBOL(netdev_lower_dev_get_private);
8194
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04008195
Jiri Pirko04d48262015-12-03 12:12:15 +01008196/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01008197 * netdev_lower_state_changed - Dispatch event about lower device state change
Jiri Pirko04d48262015-12-03 12:12:15 +01008198 * @lower_dev: device
8199 * @lower_state_info: state to dispatch
8200 *
8201 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
8202 * The caller must hold the RTNL lock.
8203 */
8204void netdev_lower_state_changed(struct net_device *lower_dev,
8205 void *lower_state_info)
8206{
David Ahern51d0c0472017-10-04 17:48:45 -07008207 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
8208 .info.dev = lower_dev,
8209 };
Jiri Pirko04d48262015-12-03 12:12:15 +01008210
8211 ASSERT_RTNL();
8212 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07008213 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01008214 &changelowerstate_info.info);
8215}
8216EXPORT_SYMBOL(netdev_lower_state_changed);
8217
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008218static void dev_change_rx_flags(struct net_device *dev, int flags)
8219{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008220 const struct net_device_ops *ops = dev->netdev_ops;
8221
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05008222 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008223 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008224}
8225
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008226static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07008227{
Eric Dumazetb536db92011-11-30 21:42:26 +00008228 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06008229 kuid_t uid;
8230 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07008231
Patrick McHardy24023452007-07-14 18:51:31 -07008232 ASSERT_RTNL();
8233
Wang Chendad9b332008-06-18 01:48:28 -07008234 dev->flags |= IFF_PROMISC;
8235 dev->promiscuity += inc;
8236 if (dev->promiscuity == 0) {
8237 /*
8238 * Avoid overflow.
8239 * If inc causes overflow, untouch promisc and return error.
8240 */
8241 if (inc < 0)
8242 dev->flags &= ~IFF_PROMISC;
8243 else {
8244 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008245 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
8246 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008247 return -EOVERFLOW;
8248 }
8249 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008250 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008251 pr_info("device %s %s promiscuous mode\n",
8252 dev->name,
8253 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11008254 if (audit_enabled) {
8255 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04008256 audit_log(audit_context(), GFP_ATOMIC,
8257 AUDIT_ANOM_PROMISCUOUS,
8258 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
8259 dev->name, (dev->flags & IFF_PROMISC),
8260 (old_flags & IFF_PROMISC),
8261 from_kuid(&init_user_ns, audit_get_loginuid(current)),
8262 from_kuid(&init_user_ns, uid),
8263 from_kgid(&init_user_ns, gid),
8264 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11008265 }
Patrick McHardy24023452007-07-14 18:51:31 -07008266
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008267 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07008268 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008269 if (notify)
8270 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07008271 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008272}
8273
Linus Torvalds1da177e2005-04-16 15:20:36 -07008274/**
8275 * dev_set_promiscuity - update promiscuity count on a device
8276 * @dev: device
8277 * @inc: modifier
8278 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07008279 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008280 * remains above zero the interface remains promiscuous. Once it hits zero
8281 * the device reverts back to normal filtering operation. A negative inc
8282 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07008283 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008284 */
Wang Chendad9b332008-06-18 01:48:28 -07008285int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008286{
Eric Dumazetb536db92011-11-30 21:42:26 +00008287 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07008288 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008289
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008290 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07008291 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07008292 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07008293 if (dev->flags != old_flags)
8294 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07008295 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008296}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008297EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008299static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008300{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008301 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008302
Patrick McHardy24023452007-07-14 18:51:31 -07008303 ASSERT_RTNL();
8304
Linus Torvalds1da177e2005-04-16 15:20:36 -07008305 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07008306 dev->allmulti += inc;
8307 if (dev->allmulti == 0) {
8308 /*
8309 * Avoid overflow.
8310 * If inc causes overflow, untouch allmulti and return error.
8311 */
8312 if (inc < 0)
8313 dev->flags &= ~IFF_ALLMULTI;
8314 else {
8315 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008316 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
8317 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008318 return -EOVERFLOW;
8319 }
8320 }
Patrick McHardy24023452007-07-14 18:51:31 -07008321 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008322 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07008323 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008324 if (notify)
8325 __dev_notify_flags(dev, old_flags,
8326 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07008327 }
Wang Chendad9b332008-06-18 01:48:28 -07008328 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008329}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008330
8331/**
8332 * dev_set_allmulti - update allmulti count on a device
8333 * @dev: device
8334 * @inc: modifier
8335 *
8336 * Add or remove reception of all multicast frames to a device. While the
8337 * count in the device remains above zero the interface remains listening
8338 * to all interfaces. Once it hits zero the device reverts back to normal
8339 * filtering operation. A negative @inc value is used to drop the counter
8340 * when releasing a resource needing all multicasts.
8341 * Return 0 if successful or a negative errno code on error.
8342 */
8343
8344int dev_set_allmulti(struct net_device *dev, int inc)
8345{
8346 return __dev_set_allmulti(dev, inc, true);
8347}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008348EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07008349
8350/*
8351 * Upload unicast and multicast address lists to device and
8352 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08008353 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07008354 * are present.
8355 */
8356void __dev_set_rx_mode(struct net_device *dev)
8357{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008358 const struct net_device_ops *ops = dev->netdev_ops;
8359
Patrick McHardy4417da62007-06-27 01:28:10 -07008360 /* dev_open will call this function so the list will stay sane. */
8361 if (!(dev->flags&IFF_UP))
8362 return;
8363
8364 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09008365 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07008366
Jiri Pirko01789342011-08-16 06:29:00 +00008367 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07008368 /* Unicast addresses changes may only happen under the rtnl,
8369 * therefore calling __dev_set_promiscuity here is safe.
8370 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008371 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008372 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008373 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008374 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008375 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008376 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07008377 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008378 }
Jiri Pirko01789342011-08-16 06:29:00 +00008379
8380 if (ops->ndo_set_rx_mode)
8381 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008382}
8383
8384void dev_set_rx_mode(struct net_device *dev)
8385{
David S. Millerb9e40852008-07-15 00:15:08 -07008386 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008387 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07008388 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008389}
8390
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008391/**
8392 * dev_get_flags - get flags reported to userspace
8393 * @dev: device
8394 *
8395 * Get the combination of flag bits exported through APIs to userspace.
8396 */
Eric Dumazet95c96172012-04-15 05:58:06 +00008397unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008398{
Eric Dumazet95c96172012-04-15 05:58:06 +00008399 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008400
8401 flags = (dev->flags & ~(IFF_PROMISC |
8402 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08008403 IFF_RUNNING |
8404 IFF_LOWER_UP |
8405 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008406 (dev->gflags & (IFF_PROMISC |
8407 IFF_ALLMULTI));
8408
Stefan Rompfb00055a2006-03-20 17:09:11 -08008409 if (netif_running(dev)) {
8410 if (netif_oper_up(dev))
8411 flags |= IFF_RUNNING;
8412 if (netif_carrier_ok(dev))
8413 flags |= IFF_LOWER_UP;
8414 if (netif_dormant(dev))
8415 flags |= IFF_DORMANT;
8416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008417
8418 return flags;
8419}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008420EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008421
Petr Machata6d040322018-12-06 17:05:43 +00008422int __dev_change_flags(struct net_device *dev, unsigned int flags,
8423 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008424{
Eric Dumazetb536db92011-11-30 21:42:26 +00008425 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00008426 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008427
Patrick McHardy24023452007-07-14 18:51:31 -07008428 ASSERT_RTNL();
8429
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430 /*
8431 * Set the flags on our device.
8432 */
8433
8434 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8435 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8436 IFF_AUTOMEDIA)) |
8437 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8438 IFF_ALLMULTI));
8439
8440 /*
8441 * Load in the correct multicast list now the flags have changed.
8442 */
8443
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008444 if ((old_flags ^ flags) & IFF_MULTICAST)
8445 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07008446
Patrick McHardy4417da62007-06-27 01:28:10 -07008447 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008448
8449 /*
8450 * Have we downed the interface. We handle IFF_UP ourselves
8451 * according to user attempts to set it, rather than blindly
8452 * setting it.
8453 */
8454
8455 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07008456 if ((old_flags ^ flags) & IFF_UP) {
8457 if (old_flags & IFF_UP)
8458 __dev_close(dev);
8459 else
Petr Machata40c900a2018-12-06 17:05:47 +00008460 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07008461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008462
Linus Torvalds1da177e2005-04-16 15:20:36 -07008463 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008464 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008465 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008466
Linus Torvalds1da177e2005-04-16 15:20:36 -07008467 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008468
8469 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8470 if (dev->flags != old_flags)
8471 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008472 }
8473
8474 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11008475 * is important. Some (broken) drivers set IFF_PROMISC, when
8476 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008477 */
8478 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008479 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8480
Linus Torvalds1da177e2005-04-16 15:20:36 -07008481 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008482 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483 }
8484
Patrick McHardybd380812010-02-26 06:34:53 +00008485 return ret;
8486}
8487
Nicolas Dichtela528c212013-09-25 12:02:44 +02008488void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8489 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00008490{
8491 unsigned int changes = dev->flags ^ old_flags;
8492
Nicolas Dichtela528c212013-09-25 12:02:44 +02008493 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008494 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008495
Patrick McHardybd380812010-02-26 06:34:53 +00008496 if (changes & IFF_UP) {
8497 if (dev->flags & IFF_UP)
8498 call_netdevice_notifiers(NETDEV_UP, dev);
8499 else
8500 call_netdevice_notifiers(NETDEV_DOWN, dev);
8501 }
8502
8503 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008504 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07008505 struct netdev_notifier_change_info change_info = {
8506 .info = {
8507 .dev = dev,
8508 },
8509 .flags_changed = changes,
8510 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008511
David Ahern51d0c0472017-10-04 17:48:45 -07008512 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008513 }
Patrick McHardybd380812010-02-26 06:34:53 +00008514}
8515
8516/**
8517 * dev_change_flags - change device settings
8518 * @dev: device
8519 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00008520 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00008521 *
8522 * Change settings on device based state flags. The flags are
8523 * in the userspace exported format.
8524 */
Petr Machata567c5e12018-12-06 17:05:42 +00008525int dev_change_flags(struct net_device *dev, unsigned int flags,
8526 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00008527{
Eric Dumazetb536db92011-11-30 21:42:26 +00008528 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008529 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00008530
Petr Machata6d040322018-12-06 17:05:43 +00008531 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00008532 if (ret < 0)
8533 return ret;
8534
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008535 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008536 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537 return ret;
8538}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008539EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008540
WANG Congf51048c2017-07-06 15:01:57 -07008541int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008542{
8543 const struct net_device_ops *ops = dev->netdev_ops;
8544
8545 if (ops->ndo_change_mtu)
8546 return ops->ndo_change_mtu(dev, new_mtu);
8547
Eric Dumazet501a90c2019-12-05 20:43:46 -08008548 /* Pairs with all the lockless reads of dev->mtu in the stack */
8549 WRITE_ONCE(dev->mtu, new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008550 return 0;
8551}
WANG Congf51048c2017-07-06 15:01:57 -07008552EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008553
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008554int dev_validate_mtu(struct net_device *dev, int new_mtu,
8555 struct netlink_ext_ack *extack)
8556{
8557 /* MTU must be positive, and in range */
8558 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
8559 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
8560 return -EINVAL;
8561 }
8562
8563 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
8564 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
8565 return -EINVAL;
8566 }
8567 return 0;
8568}
8569
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008570/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008571 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008572 * @dev: device
8573 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008574 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008575 *
8576 * Change the maximum transfer size of the network device.
8577 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008578int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8579 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008580{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008581 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008582
8583 if (new_mtu == dev->mtu)
8584 return 0;
8585
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008586 err = dev_validate_mtu(dev, new_mtu, extack);
8587 if (err)
8588 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008589
8590 if (!netif_device_present(dev))
8591 return -ENODEV;
8592
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01008593 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8594 err = notifier_to_errno(err);
8595 if (err)
8596 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008597
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008598 orig_mtu = dev->mtu;
8599 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008600
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008601 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008602 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8603 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008604 err = notifier_to_errno(err);
8605 if (err) {
8606 /* setting mtu back and notifying everyone again,
8607 * so that they have a chance to revert changes.
8608 */
8609 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008610 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8611 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008612 }
8613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614 return err;
8615}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008616
8617int dev_set_mtu(struct net_device *dev, int new_mtu)
8618{
8619 struct netlink_ext_ack extack;
8620 int err;
8621
Li RongQinga6bcfc82018-08-03 15:45:21 +08008622 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008623 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08008624 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008625 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8626 return err;
8627}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008628EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008630/**
Cong Wang6a643dd2018-01-25 18:26:22 -08008631 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8632 * @dev: device
8633 * @new_len: new tx queue length
8634 */
8635int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8636{
8637 unsigned int orig_len = dev->tx_queue_len;
8638 int res;
8639
8640 if (new_len != (unsigned int)new_len)
8641 return -ERANGE;
8642
8643 if (new_len != orig_len) {
8644 dev->tx_queue_len = new_len;
8645 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8646 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03008647 if (res)
8648 goto err_rollback;
8649 res = dev_qdisc_change_tx_queue_len(dev);
8650 if (res)
8651 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08008652 }
8653
8654 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03008655
8656err_rollback:
8657 netdev_err(dev, "refused to change device tx_queue_len\n");
8658 dev->tx_queue_len = orig_len;
8659 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08008660}
8661
8662/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008663 * dev_set_group - Change group this device belongs to
8664 * @dev: device
8665 * @new_group: group this device should belong to
8666 */
8667void dev_set_group(struct net_device *dev, int new_group)
8668{
8669 dev->group = new_group;
8670}
8671EXPORT_SYMBOL(dev_set_group);
8672
8673/**
Petr Machatad59cdf92018-12-13 11:54:35 +00008674 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
8675 * @dev: device
8676 * @addr: new address
8677 * @extack: netlink extended ack
8678 */
8679int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
8680 struct netlink_ext_ack *extack)
8681{
8682 struct netdev_notifier_pre_changeaddr_info info = {
8683 .info.dev = dev,
8684 .info.extack = extack,
8685 .dev_addr = addr,
8686 };
8687 int rc;
8688
8689 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
8690 return notifier_to_errno(rc);
8691}
8692EXPORT_SYMBOL(dev_pre_changeaddr_notify);
8693
8694/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008695 * dev_set_mac_address - Change Media Access Control Address
8696 * @dev: device
8697 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00008698 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008699 *
8700 * Change the hardware (MAC) address of the device
8701 */
Petr Machata3a37a962018-12-13 11:54:30 +00008702int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
8703 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008704{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008705 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008706 int err;
8707
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008708 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709 return -EOPNOTSUPP;
8710 if (sa->sa_family != dev->type)
8711 return -EINVAL;
8712 if (!netif_device_present(dev))
8713 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00008714 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
8715 if (err)
8716 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008717 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00008718 if (err)
8719 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00008720 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00008721 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008722 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00008723 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008724}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008725EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008726
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008727/**
8728 * dev_change_carrier - Change device carrier
8729 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00008730 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008731 *
8732 * Change device carrier
8733 */
8734int dev_change_carrier(struct net_device *dev, bool new_carrier)
8735{
8736 const struct net_device_ops *ops = dev->netdev_ops;
8737
8738 if (!ops->ndo_change_carrier)
8739 return -EOPNOTSUPP;
8740 if (!netif_device_present(dev))
8741 return -ENODEV;
8742 return ops->ndo_change_carrier(dev, new_carrier);
8743}
8744EXPORT_SYMBOL(dev_change_carrier);
8745
Linus Torvalds1da177e2005-04-16 15:20:36 -07008746/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02008747 * dev_get_phys_port_id - Get device physical port ID
8748 * @dev: device
8749 * @ppid: port ID
8750 *
8751 * Get device physical port ID
8752 */
8753int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008754 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02008755{
8756 const struct net_device_ops *ops = dev->netdev_ops;
8757
8758 if (!ops->ndo_get_phys_port_id)
8759 return -EOPNOTSUPP;
8760 return ops->ndo_get_phys_port_id(dev, ppid);
8761}
8762EXPORT_SYMBOL(dev_get_phys_port_id);
8763
8764/**
David Aherndb24a902015-03-17 20:23:15 -06008765 * dev_get_phys_port_name - Get device physical port name
8766 * @dev: device
8767 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00008768 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06008769 *
8770 * Get device physical port name
8771 */
8772int dev_get_phys_port_name(struct net_device *dev,
8773 char *name, size_t len)
8774{
8775 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01008776 int err;
David Aherndb24a902015-03-17 20:23:15 -06008777
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01008778 if (ops->ndo_get_phys_port_name) {
8779 err = ops->ndo_get_phys_port_name(dev, name, len);
8780 if (err != -EOPNOTSUPP)
8781 return err;
8782 }
8783 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06008784}
8785EXPORT_SYMBOL(dev_get_phys_port_name);
8786
8787/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08008788 * dev_get_port_parent_id - Get the device's port parent identifier
8789 * @dev: network device
8790 * @ppid: pointer to a storage for the port's parent identifier
8791 * @recurse: allow/disallow recursion to lower devices
8792 *
8793 * Get the devices's port parent identifier
8794 */
8795int dev_get_port_parent_id(struct net_device *dev,
8796 struct netdev_phys_item_id *ppid,
8797 bool recurse)
8798{
8799 const struct net_device_ops *ops = dev->netdev_ops;
8800 struct netdev_phys_item_id first = { };
8801 struct net_device *lower_dev;
8802 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008803 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008804
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008805 if (ops->ndo_get_port_parent_id) {
8806 err = ops->ndo_get_port_parent_id(dev, ppid);
8807 if (err != -EOPNOTSUPP)
8808 return err;
8809 }
8810
8811 err = devlink_compat_switch_id_get(dev, ppid);
8812 if (!err || err != -EOPNOTSUPP)
8813 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008814
8815 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008816 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008817
8818 netdev_for_each_lower_dev(dev, lower_dev, iter) {
8819 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
8820 if (err)
8821 break;
8822 if (!first.id_len)
8823 first = *ppid;
8824 else if (memcmp(&first, ppid, sizeof(*ppid)))
Ido Schimmele1b9efe2020-09-10 14:01:26 +03008825 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008826 }
8827
8828 return err;
8829}
8830EXPORT_SYMBOL(dev_get_port_parent_id);
8831
8832/**
8833 * netdev_port_same_parent_id - Indicate if two network devices have
8834 * the same port parent identifier
8835 * @a: first network device
8836 * @b: second network device
8837 */
8838bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
8839{
8840 struct netdev_phys_item_id a_id = { };
8841 struct netdev_phys_item_id b_id = { };
8842
8843 if (dev_get_port_parent_id(a, &a_id, true) ||
8844 dev_get_port_parent_id(b, &b_id, true))
8845 return false;
8846
8847 return netdev_phys_item_id_same(&a_id, &b_id);
8848}
8849EXPORT_SYMBOL(netdev_port_same_parent_id);
8850
8851/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07008852 * dev_change_proto_down - update protocol port state information
8853 * @dev: device
8854 * @proto_down: new value
8855 *
8856 * This info can be used by switch drivers to set the phys state of the
8857 * port.
8858 */
8859int dev_change_proto_down(struct net_device *dev, bool proto_down)
8860{
8861 const struct net_device_ops *ops = dev->netdev_ops;
8862
8863 if (!ops->ndo_change_proto_down)
8864 return -EOPNOTSUPP;
8865 if (!netif_device_present(dev))
8866 return -ENODEV;
8867 return ops->ndo_change_proto_down(dev, proto_down);
8868}
8869EXPORT_SYMBOL(dev_change_proto_down);
8870
Andy Roulinb5899672019-02-22 18:06:36 +00008871/**
8872 * dev_change_proto_down_generic - generic implementation for
8873 * ndo_change_proto_down that sets carrier according to
8874 * proto_down.
8875 *
8876 * @dev: device
8877 * @proto_down: new value
8878 */
8879int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
8880{
8881 if (proto_down)
8882 netif_carrier_off(dev);
8883 else
8884 netif_carrier_on(dev);
8885 dev->proto_down = proto_down;
8886 return 0;
8887}
8888EXPORT_SYMBOL(dev_change_proto_down_generic);
8889
Roopa Prabhu829eb202020-07-31 17:34:01 -07008890/**
8891 * dev_change_proto_down_reason - proto down reason
8892 *
8893 * @dev: device
8894 * @mask: proto down mask
8895 * @value: proto down value
8896 */
8897void dev_change_proto_down_reason(struct net_device *dev, unsigned long mask,
8898 u32 value)
8899{
8900 int b;
8901
8902 if (!mask) {
8903 dev->proto_down_reason = value;
8904 } else {
8905 for_each_set_bit(b, &mask, 32) {
8906 if (value & (1 << b))
8907 dev->proto_down_reason |= BIT(b);
8908 else
8909 dev->proto_down_reason &= ~BIT(b);
8910 }
8911 }
8912}
8913EXPORT_SYMBOL(dev_change_proto_down_reason);
8914
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008915struct bpf_xdp_link {
8916 struct bpf_link link;
8917 struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
8918 int flags;
8919};
8920
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07008921static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008922{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008923 if (flags & XDP_FLAGS_HW_MODE)
8924 return XDP_MODE_HW;
8925 if (flags & XDP_FLAGS_DRV_MODE)
8926 return XDP_MODE_DRV;
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07008927 if (flags & XDP_FLAGS_SKB_MODE)
8928 return XDP_MODE_SKB;
8929 return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008930}
8931
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008932static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008933{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008934 switch (mode) {
8935 case XDP_MODE_SKB:
8936 return generic_xdp_install;
8937 case XDP_MODE_DRV:
8938 case XDP_MODE_HW:
8939 return dev->netdev_ops->ndo_bpf;
8940 default:
8941 return NULL;
Tom Rix5d867242020-11-01 07:36:47 -08008942 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008943}
8944
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008945static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
8946 enum bpf_xdp_mode mode)
8947{
8948 return dev->xdp_state[mode].link;
8949}
8950
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008951static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
8952 enum bpf_xdp_mode mode)
8953{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008954 struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
8955
8956 if (link)
8957 return link->link.prog;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008958 return dev->xdp_state[mode].prog;
8959}
8960
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01008961static u8 dev_xdp_prog_count(struct net_device *dev)
8962{
8963 u8 count = 0;
8964 int i;
8965
8966 for (i = 0; i < __MAX_XDP_MODE; i++)
8967 if (dev->xdp_state[i].prog || dev->xdp_state[i].link)
8968 count++;
8969 return count;
8970}
8971
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008972u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
8973{
8974 struct bpf_prog *prog = dev_xdp_prog(dev, mode);
8975
8976 return prog ? prog->aux->id : 0;
8977}
8978
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008979static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
8980 struct bpf_xdp_link *link)
8981{
8982 dev->xdp_state[mode].link = link;
8983 dev->xdp_state[mode].prog = NULL;
8984}
8985
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008986static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
8987 struct bpf_prog *prog)
8988{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008989 dev->xdp_state[mode].link = NULL;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008990 dev->xdp_state[mode].prog = prog;
8991}
8992
8993static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
8994 bpf_op_t bpf_op, struct netlink_ext_ack *extack,
8995 u32 flags, struct bpf_prog *prog)
8996{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008997 struct netdev_bpf xdp;
Björn Töpel7e6897f2019-12-13 18:51:09 +01008998 int err;
8999
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009000 memset(&xdp, 0, sizeof(xdp));
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009001 xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009002 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07009003 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009004 xdp.prog = prog;
9005
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009006 /* Drivers assume refcnt is already incremented (i.e, prog pointer is
9007 * "moved" into driver), so they don't increment it on their own, but
9008 * they do decrement refcnt when program is detached or replaced.
9009 * Given net_device also owns link/prog, we need to bump refcnt here
9010 * to prevent drivers from underflowing it.
9011 */
9012 if (prog)
9013 bpf_prog_inc(prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009014 err = bpf_op(dev, &xdp);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009015 if (err) {
9016 if (prog)
9017 bpf_prog_put(prog);
9018 return err;
9019 }
Björn Töpel7e6897f2019-12-13 18:51:09 +01009020
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009021 if (mode != XDP_MODE_HW)
9022 bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009023
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009024 return 0;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009025}
9026
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009027static void dev_xdp_uninstall(struct net_device *dev)
9028{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009029 struct bpf_xdp_link *link;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009030 struct bpf_prog *prog;
9031 enum bpf_xdp_mode mode;
9032 bpf_op_t bpf_op;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009033
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009034 ASSERT_RTNL();
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009035
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009036 for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
9037 prog = dev_xdp_prog(dev, mode);
9038 if (!prog)
9039 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009040
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009041 bpf_op = dev_xdp_bpf_op(dev, mode);
9042 if (!bpf_op)
9043 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009044
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009045 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9046
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009047 /* auto-detach link from net device */
9048 link = dev_xdp_link(dev, mode);
9049 if (link)
9050 link->dev = NULL;
9051 else
9052 bpf_prog_put(prog);
9053
9054 dev_xdp_set_link(dev, mode, NULL);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009055 }
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009056}
9057
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009058static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009059 struct bpf_xdp_link *link, struct bpf_prog *new_prog,
9060 struct bpf_prog *old_prog, u32 flags)
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009061{
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009062 unsigned int num_modes = hweight32(flags & XDP_FLAGS_MODES);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009063 struct bpf_prog *cur_prog;
9064 enum bpf_xdp_mode mode;
9065 bpf_op_t bpf_op;
9066 int err;
9067
9068 ASSERT_RTNL();
9069
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009070 /* either link or prog attachment, never both */
9071 if (link && (new_prog || old_prog))
9072 return -EINVAL;
9073 /* link supports only XDP mode flags */
9074 if (link && (flags & ~XDP_FLAGS_MODES)) {
9075 NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
9076 return -EINVAL;
9077 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009078 /* just one XDP mode bit should be set, zero defaults to drv/skb mode */
9079 if (num_modes > 1) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009080 NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
9081 return -EINVAL;
9082 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009083 /* avoid ambiguity if offload + drv/skb mode progs are both loaded */
9084 if (!num_modes && dev_xdp_prog_count(dev) > 1) {
9085 NL_SET_ERR_MSG(extack,
9086 "More than one program loaded, unset mode is ambiguous");
9087 return -EINVAL;
9088 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009089 /* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
9090 if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
9091 NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
9092 return -EINVAL;
9093 }
9094
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009095 mode = dev_xdp_mode(dev, flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009096 /* can't replace attached link */
9097 if (dev_xdp_link(dev, mode)) {
9098 NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
9099 return -EBUSY;
9100 }
9101
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009102 cur_prog = dev_xdp_prog(dev, mode);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009103 /* can't replace attached prog with link */
9104 if (link && cur_prog) {
9105 NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
9106 return -EBUSY;
9107 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009108 if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
9109 NL_SET_ERR_MSG(extack, "Active program does not match expected");
9110 return -EEXIST;
9111 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009112
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009113 /* put effective new program into new_prog */
9114 if (link)
9115 new_prog = link->link.prog;
9116
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009117 if (new_prog) {
9118 bool offload = mode == XDP_MODE_HW;
9119 enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
9120 ? XDP_MODE_DRV : XDP_MODE_SKB;
9121
Andrii Nakryiko068d9d12020-08-11 19:29:23 -07009122 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
9123 NL_SET_ERR_MSG(extack, "XDP program already attached");
9124 return -EBUSY;
9125 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009126 if (!offload && dev_xdp_prog(dev, other_mode)) {
9127 NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
9128 return -EEXIST;
9129 }
9130 if (!offload && bpf_prog_is_dev_bound(new_prog->aux)) {
9131 NL_SET_ERR_MSG(extack, "Using device-bound program without HW_MODE flag is not supported");
9132 return -EINVAL;
9133 }
9134 if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
9135 NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
9136 return -EINVAL;
9137 }
9138 if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
9139 NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
9140 return -EINVAL;
9141 }
9142 }
9143
9144 /* don't call drivers if the effective program didn't change */
9145 if (new_prog != cur_prog) {
9146 bpf_op = dev_xdp_bpf_op(dev, mode);
9147 if (!bpf_op) {
9148 NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
9149 return -EOPNOTSUPP;
9150 }
9151
9152 err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
9153 if (err)
9154 return err;
9155 }
9156
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009157 if (link)
9158 dev_xdp_set_link(dev, mode, link);
9159 else
9160 dev_xdp_set_prog(dev, mode, new_prog);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009161 if (cur_prog)
9162 bpf_prog_put(cur_prog);
9163
9164 return 0;
9165}
9166
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009167static int dev_xdp_attach_link(struct net_device *dev,
9168 struct netlink_ext_ack *extack,
9169 struct bpf_xdp_link *link)
9170{
9171 return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
9172}
9173
9174static int dev_xdp_detach_link(struct net_device *dev,
9175 struct netlink_ext_ack *extack,
9176 struct bpf_xdp_link *link)
9177{
9178 enum bpf_xdp_mode mode;
9179 bpf_op_t bpf_op;
9180
9181 ASSERT_RTNL();
9182
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009183 mode = dev_xdp_mode(dev, link->flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009184 if (dev_xdp_link(dev, mode) != link)
9185 return -EINVAL;
9186
9187 bpf_op = dev_xdp_bpf_op(dev, mode);
9188 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9189 dev_xdp_set_link(dev, mode, NULL);
9190 return 0;
9191}
9192
9193static void bpf_xdp_link_release(struct bpf_link *link)
9194{
9195 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9196
9197 rtnl_lock();
9198
9199 /* if racing with net_device's tear down, xdp_link->dev might be
9200 * already NULL, in which case link was already auto-detached
9201 */
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009202 if (xdp_link->dev) {
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009203 WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009204 xdp_link->dev = NULL;
9205 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009206
9207 rtnl_unlock();
9208}
9209
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009210static int bpf_xdp_link_detach(struct bpf_link *link)
9211{
9212 bpf_xdp_link_release(link);
9213 return 0;
9214}
9215
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009216static void bpf_xdp_link_dealloc(struct bpf_link *link)
9217{
9218 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9219
9220 kfree(xdp_link);
9221}
9222
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009223static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
9224 struct seq_file *seq)
9225{
9226 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9227 u32 ifindex = 0;
9228
9229 rtnl_lock();
9230 if (xdp_link->dev)
9231 ifindex = xdp_link->dev->ifindex;
9232 rtnl_unlock();
9233
9234 seq_printf(seq, "ifindex:\t%u\n", ifindex);
9235}
9236
9237static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
9238 struct bpf_link_info *info)
9239{
9240 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9241 u32 ifindex = 0;
9242
9243 rtnl_lock();
9244 if (xdp_link->dev)
9245 ifindex = xdp_link->dev->ifindex;
9246 rtnl_unlock();
9247
9248 info->xdp.ifindex = ifindex;
9249 return 0;
9250}
9251
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009252static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
9253 struct bpf_prog *old_prog)
9254{
9255 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9256 enum bpf_xdp_mode mode;
9257 bpf_op_t bpf_op;
9258 int err = 0;
9259
9260 rtnl_lock();
9261
9262 /* link might have been auto-released already, so fail */
9263 if (!xdp_link->dev) {
9264 err = -ENOLINK;
9265 goto out_unlock;
9266 }
9267
9268 if (old_prog && link->prog != old_prog) {
9269 err = -EPERM;
9270 goto out_unlock;
9271 }
9272 old_prog = link->prog;
9273 if (old_prog == new_prog) {
9274 /* no-op, don't disturb drivers */
9275 bpf_prog_put(new_prog);
9276 goto out_unlock;
9277 }
9278
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009279 mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009280 bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
9281 err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
9282 xdp_link->flags, new_prog);
9283 if (err)
9284 goto out_unlock;
9285
9286 old_prog = xchg(&link->prog, new_prog);
9287 bpf_prog_put(old_prog);
9288
9289out_unlock:
9290 rtnl_unlock();
9291 return err;
9292}
9293
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009294static const struct bpf_link_ops bpf_xdp_link_lops = {
9295 .release = bpf_xdp_link_release,
9296 .dealloc = bpf_xdp_link_dealloc,
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009297 .detach = bpf_xdp_link_detach,
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009298 .show_fdinfo = bpf_xdp_link_show_fdinfo,
9299 .fill_link_info = bpf_xdp_link_fill_link_info,
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009300 .update_prog = bpf_xdp_link_update,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009301};
9302
9303int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
9304{
9305 struct net *net = current->nsproxy->net_ns;
9306 struct bpf_link_primer link_primer;
9307 struct bpf_xdp_link *link;
9308 struct net_device *dev;
9309 int err, fd;
9310
9311 dev = dev_get_by_index(net, attr->link_create.target_ifindex);
9312 if (!dev)
9313 return -EINVAL;
9314
9315 link = kzalloc(sizeof(*link), GFP_USER);
9316 if (!link) {
9317 err = -ENOMEM;
9318 goto out_put_dev;
9319 }
9320
9321 bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog);
9322 link->dev = dev;
9323 link->flags = attr->link_create.flags;
9324
9325 err = bpf_link_prime(&link->link, &link_primer);
9326 if (err) {
9327 kfree(link);
9328 goto out_put_dev;
9329 }
9330
9331 rtnl_lock();
9332 err = dev_xdp_attach_link(dev, NULL, link);
9333 rtnl_unlock();
9334
9335 if (err) {
9336 bpf_link_cleanup(&link_primer);
9337 goto out_put_dev;
9338 }
9339
9340 fd = bpf_link_settle(&link_primer);
9341 /* link itself doesn't hold dev's refcnt to not complicate shutdown */
9342 dev_put(dev);
9343 return fd;
9344
9345out_put_dev:
9346 dev_put(dev);
9347 return err;
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009348}
9349
9350/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07009351 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
9352 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07009353 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07009354 * @fd: new program fd or negative value to clear
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009355 * @expected_fd: old program fd that userspace expects to replace or clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01009356 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07009357 *
9358 * Set or clear a bpf program for a device
9359 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07009360int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009361 int fd, int expected_fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07009362{
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009363 enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009364 struct bpf_prog *new_prog = NULL, *old_prog = NULL;
Brenden Blancoa7862b42016-07-19 12:16:48 -07009365 int err;
9366
Daniel Borkmann85de8572016-11-28 23:16:54 +01009367 ASSERT_RTNL();
9368
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009369 if (fd >= 0) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009370 new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
9371 mode != XDP_MODE_SKB);
9372 if (IS_ERR(new_prog))
9373 return PTR_ERR(new_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009374 }
9375
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009376 if (expected_fd >= 0) {
9377 old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
9378 mode != XDP_MODE_SKB);
9379 if (IS_ERR(old_prog)) {
9380 err = PTR_ERR(old_prog);
9381 old_prog = NULL;
9382 goto err_out;
9383 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009384 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07009385
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009386 err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009387
9388err_out:
9389 if (err && new_prog)
9390 bpf_prog_put(new_prog);
9391 if (old_prog)
9392 bpf_prog_put(old_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009393 return err;
9394}
Brenden Blancoa7862b42016-07-19 12:16:48 -07009395
9396/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009397 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07009398 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07009399 *
9400 * Returns a suitable unique value for a new device interface
9401 * number. The caller must hold the rtnl semaphore or the
9402 * dev_base_lock to be sure it remains unique.
9403 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07009404static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009405{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009406 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11009407
Linus Torvalds1da177e2005-04-16 15:20:36 -07009408 for (;;) {
9409 if (++ifindex <= 0)
9410 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009411 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009412 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009413 }
9414}
9415
Linus Torvalds1da177e2005-04-16 15:20:36 -07009416/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08009417static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07009418DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009419
Stephen Hemminger6f05f622007-03-08 20:46:03 -08009420static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009421{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009422 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009423 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009424}
9425
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009426static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009427{
Krishna Kumare93737b2009-12-08 22:26:02 +00009428 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009429 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009430
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009431 BUG_ON(dev_boot_phase);
9432 ASSERT_RTNL();
9433
Krishna Kumare93737b2009-12-08 22:26:02 +00009434 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009435 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00009436 * for initialization unwind. Remove those
9437 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009438 */
9439 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009440 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
9441 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009442
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009443 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00009444 list_del(&dev->unreg_list);
9445 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009446 }
Eric Dumazet449f4542011-05-19 12:24:16 +00009447 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009448 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00009449 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009450
Octavian Purdila44345722010-12-13 12:44:07 +00009451 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009452 list_for_each_entry(dev, head, unreg_list)
9453 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04009454 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009455
Octavian Purdila44345722010-12-13 12:44:07 +00009456 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009457 /* And unlink it from device chain. */
9458 unlist_netdevice(dev);
9459
9460 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009461 }
Eric Dumazet41852492016-08-26 12:50:39 -07009462 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009463
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009464 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009465
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009466 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009467 struct sk_buff *skb = NULL;
9468
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009469 /* Shutdown queueing discipline. */
9470 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009471
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009472 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009473
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009474 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009475 * this device. They should clean all the things.
9476 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009477 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
9478
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009479 if (!dev->rtnl_link_ops ||
9480 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04009481 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009482 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009483
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009484 /*
9485 * Flush the unicast and multicast chains
9486 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009487 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009488 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009489
Jiri Pirko36fbf1e2019-09-30 11:48:16 +02009490 netdev_name_node_alt_flush(dev);
Jiri Pirkoff927412019-09-30 11:48:15 +02009491 netdev_name_node_free(dev->name_node);
9492
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009493 if (dev->netdev_ops->ndo_uninit)
9494 dev->netdev_ops->ndo_uninit(dev);
9495
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009496 if (skb)
9497 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07009498
Jiri Pirko9ff162a2013-01-03 22:48:49 +00009499 /* Notifier chain MUST detach us all upper devices. */
9500 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07009501 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009502
9503 /* Remove entries from kobject tree */
9504 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00009505#ifdef CONFIG_XPS
9506 /* Remove XPS queueing entries */
9507 netif_reset_xps_queues_gt(dev, 0);
9508#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009509 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009510
Eric W. Biederman850a5452011-10-13 22:25:23 +00009511 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009512
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00009513 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009514 dev_put(dev);
9515}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009516
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009517static void rollback_registered(struct net_device *dev)
9518{
9519 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009520
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009521 list_add(&dev->unreg_list, &single);
9522 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00009523 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009524}
9525
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009526static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
9527 struct net_device *upper, netdev_features_t features)
9528{
9529 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9530 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009531 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009532
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009533 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009534 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009535 if (!(upper->wanted_features & feature)
9536 && (features & feature)) {
9537 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
9538 &feature, upper->name);
9539 features &= ~feature;
9540 }
9541 }
9542
9543 return features;
9544}
9545
9546static void netdev_sync_lower_features(struct net_device *upper,
9547 struct net_device *lower, netdev_features_t features)
9548{
9549 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9550 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009551 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009552
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009553 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009554 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009555 if (!(features & feature) && (lower->features & feature)) {
9556 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
9557 &feature, lower->name);
9558 lower->wanted_features &= ~feature;
Cong Wangdd912302020-05-07 12:19:03 -07009559 __netdev_update_features(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009560
9561 if (unlikely(lower->features & feature))
9562 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
9563 &feature, lower->name);
Cong Wangdd912302020-05-07 12:19:03 -07009564 else
9565 netdev_features_change(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009566 }
9567 }
9568}
9569
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009570static netdev_features_t netdev_fix_features(struct net_device *dev,
9571 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07009572{
Michał Mirosław57422dc2011-01-22 12:14:12 +00009573 /* Fix illegal checksum combinations */
9574 if ((features & NETIF_F_HW_CSUM) &&
9575 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009576 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00009577 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
9578 }
9579
Herbert Xub63365a2008-10-23 01:11:29 -07009580 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009581 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009582 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009583 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07009584 }
9585
Pravin B Shelarec5f0612013-03-07 09:28:01 +00009586 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
9587 !(features & NETIF_F_IP_CSUM)) {
9588 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
9589 features &= ~NETIF_F_TSO;
9590 features &= ~NETIF_F_TSO_ECN;
9591 }
9592
9593 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
9594 !(features & NETIF_F_IPV6_CSUM)) {
9595 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
9596 features &= ~NETIF_F_TSO6;
9597 }
9598
Alexander Duyckb1dc4972016-05-02 09:38:24 -07009599 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
9600 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
9601 features &= ~NETIF_F_TSO_MANGLEID;
9602
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00009603 /* TSO ECN requires that TSO is present as well. */
9604 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
9605 features &= ~NETIF_F_TSO_ECN;
9606
Michał Mirosław212b5732011-02-15 16:59:16 +00009607 /* Software GSO depends on SG. */
9608 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009609 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00009610 features &= ~NETIF_F_GSO;
9611 }
9612
Alexander Duyck802ab552016-04-10 21:45:03 -04009613 /* GSO partial features require GSO partial be set */
9614 if ((features & dev->gso_partial_features) &&
9615 !(features & NETIF_F_GSO_PARTIAL)) {
9616 netdev_dbg(dev,
9617 "Dropping partially supported GSO features since no GSO partial.\n");
9618 features &= ~dev->gso_partial_features;
9619 }
9620
Michael Chanfb1f5f72017-12-16 03:09:40 -05009621 if (!(features & NETIF_F_RXCSUM)) {
9622 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
9623 * successfully merged by hardware must also have the
9624 * checksum verified by hardware. If the user does not
9625 * want to enable RXCSUM, logically, we should disable GRO_HW.
9626 */
9627 if (features & NETIF_F_GRO_HW) {
9628 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
9629 features &= ~NETIF_F_GRO_HW;
9630 }
9631 }
9632
Gal Pressmande8d5ab2018-03-12 11:48:49 +02009633 /* LRO/HW-GRO features cannot be combined with RX-FCS */
9634 if (features & NETIF_F_RXFCS) {
9635 if (features & NETIF_F_LRO) {
9636 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
9637 features &= ~NETIF_F_LRO;
9638 }
9639
9640 if (features & NETIF_F_GRO_HW) {
9641 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
9642 features &= ~NETIF_F_GRO_HW;
9643 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02009644 }
9645
Herbert Xub63365a2008-10-23 01:11:29 -07009646 return features;
9647}
Herbert Xub63365a2008-10-23 01:11:29 -07009648
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009649int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00009650{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009651 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009652 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009653 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05009654 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00009655
Michał Mirosław87267482011-04-12 09:56:38 +00009656 ASSERT_RTNL();
9657
Michał Mirosław5455c692011-02-15 16:59:17 +00009658 features = netdev_get_wanted_features(dev);
9659
9660 if (dev->netdev_ops->ndo_fix_features)
9661 features = dev->netdev_ops->ndo_fix_features(dev, features);
9662
9663 /* driver might be less strict about feature dependencies */
9664 features = netdev_fix_features(dev, features);
9665
Randy Dunlap4250b752020-09-17 21:35:15 -07009666 /* some features can't be enabled if they're off on an upper device */
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009667 netdev_for_each_upper_dev_rcu(dev, upper, iter)
9668 features = netdev_sync_upper_features(dev, upper, features);
9669
Michał Mirosław5455c692011-02-15 16:59:17 +00009670 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05009671 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00009672
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009673 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
9674 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00009675
9676 if (dev->netdev_ops->ndo_set_features)
9677 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01009678 else
9679 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00009680
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009681 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00009682 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009683 "set_features() failed (%d); wanted %pNF, left %pNF\n",
9684 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01009685 /* return non-0 since some features might have changed and
9686 * it's better to fire a spurious notification than miss it
9687 */
9688 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009689 }
9690
Jarod Wilsone7868a82015-11-03 23:09:32 -05009691sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009692 /* some features must be disabled on lower devices when disabled
9693 * on an upper device (think: bonding master or bridge)
9694 */
9695 netdev_for_each_lower_dev(dev, lower, iter)
9696 netdev_sync_lower_features(dev, lower, features);
9697
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009698 if (!err) {
9699 netdev_features_t diff = features ^ dev->features;
9700
9701 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
9702 /* udp_tunnel_{get,drop}_rx_info both need
9703 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
9704 * device, or they won't do anything.
9705 * Thus we need to update dev->features
9706 * *before* calling udp_tunnel_get_rx_info,
9707 * but *after* calling udp_tunnel_drop_rx_info.
9708 */
9709 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
9710 dev->features = features;
9711 udp_tunnel_get_rx_info(dev);
9712 } else {
9713 udp_tunnel_drop_rx_info(dev);
9714 }
9715 }
9716
Gal Pressman9daae9b2018-03-28 17:46:54 +03009717 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
9718 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
9719 dev->features = features;
9720 err |= vlan_get_rx_ctag_filter_info(dev);
9721 } else {
9722 vlan_drop_rx_ctag_filter_info(dev);
9723 }
9724 }
9725
9726 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
9727 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
9728 dev->features = features;
9729 err |= vlan_get_rx_stag_filter_info(dev);
9730 } else {
9731 vlan_drop_rx_stag_filter_info(dev);
9732 }
9733 }
9734
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009735 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009736 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009737
Jarod Wilsone7868a82015-11-03 23:09:32 -05009738 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009739}
9740
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009741/**
9742 * netdev_update_features - recalculate device features
9743 * @dev: the device to check
9744 *
9745 * Recalculate dev->features set and send notifications if it
9746 * has changed. Should be called after driver or hardware dependent
9747 * conditions might have changed that influence the features.
9748 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009749void netdev_update_features(struct net_device *dev)
9750{
9751 if (__netdev_update_features(dev))
9752 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00009753}
9754EXPORT_SYMBOL(netdev_update_features);
9755
Linus Torvalds1da177e2005-04-16 15:20:36 -07009756/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009757 * netdev_change_features - recalculate device features
9758 * @dev: the device to check
9759 *
9760 * Recalculate dev->features set and send notifications even
9761 * if they have not changed. Should be called instead of
9762 * netdev_update_features() if also dev->vlan_features might
9763 * have changed to allow the changes to be propagated to stacked
9764 * VLAN devices.
9765 */
9766void netdev_change_features(struct net_device *dev)
9767{
9768 __netdev_update_features(dev);
9769 netdev_features_change(dev);
9770}
9771EXPORT_SYMBOL(netdev_change_features);
9772
9773/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009774 * netif_stacked_transfer_operstate - transfer operstate
9775 * @rootdev: the root or lower level device to transfer state from
9776 * @dev: the device to transfer operstate to
9777 *
9778 * Transfer operational state from root to device. This is normally
9779 * called when a stacking relationship exists between the root
9780 * device and the device(a leaf device).
9781 */
9782void netif_stacked_transfer_operstate(const struct net_device *rootdev,
9783 struct net_device *dev)
9784{
9785 if (rootdev->operstate == IF_OPER_DORMANT)
9786 netif_dormant_on(dev);
9787 else
9788 netif_dormant_off(dev);
9789
Andrew Lunneec517cd2020-04-20 00:11:50 +02009790 if (rootdev->operstate == IF_OPER_TESTING)
9791 netif_testing_on(dev);
9792 else
9793 netif_testing_off(dev);
9794
Zhang Shengju0575c862017-04-26 17:49:38 +08009795 if (netif_carrier_ok(rootdev))
9796 netif_carrier_on(dev);
9797 else
9798 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009799}
9800EXPORT_SYMBOL(netif_stacked_transfer_operstate);
9801
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009802static int netif_alloc_rx_queues(struct net_device *dev)
9803{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009804 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00009805 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05309806 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009807 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009808
Tom Herbertbd25fa72010-10-18 18:00:16 +00009809 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009810
Michal Hockodcda9b02017-07-12 14:36:45 -07009811 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009812 if (!rx)
9813 return -ENOMEM;
9814
Tom Herbertbd25fa72010-10-18 18:00:16 +00009815 dev->_rx = rx;
9816
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009817 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00009818 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009819
9820 /* XDP RX-queue setup */
Björn Töpelb02e5a02020-11-30 19:52:01 +01009821 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i, 0);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009822 if (err < 0)
9823 goto err_rxq_info;
9824 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009825 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009826
9827err_rxq_info:
9828 /* Rollback successful reg's and free other resources */
9829 while (i--)
9830 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08009831 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009832 dev->_rx = NULL;
9833 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009834}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009835
9836static void netif_free_rx_queues(struct net_device *dev)
9837{
9838 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009839
9840 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
9841 if (!dev->_rx)
9842 return;
9843
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009844 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08009845 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
9846
9847 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009848}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009849
Changli Gaoaa942102010-12-04 02:31:41 +00009850static void netdev_init_one_queue(struct net_device *dev,
9851 struct netdev_queue *queue, void *_unused)
9852{
9853 /* Initialize queue lock */
9854 spin_lock_init(&queue->_xmit_lock);
Cong Wang1a33e102020-05-02 22:22:19 -07009855 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
Changli Gaoaa942102010-12-04 02:31:41 +00009856 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00009857 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00009858 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00009859#ifdef CONFIG_BQL
9860 dql_init(&queue->dql, HZ);
9861#endif
Changli Gaoaa942102010-12-04 02:31:41 +00009862}
9863
Eric Dumazet60877a32013-06-20 01:15:51 -07009864static void netif_free_tx_queues(struct net_device *dev)
9865{
WANG Cong4cb28972014-06-02 15:55:22 -07009866 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07009867}
9868
Tom Herberte6484932010-10-18 18:04:39 +00009869static int netif_alloc_netdev_queues(struct net_device *dev)
9870{
9871 unsigned int count = dev->num_tx_queues;
9872 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07009873 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00009874
Eric Dumazetd3397272015-07-06 17:13:26 +02009875 if (count < 1 || count > 0xffff)
9876 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00009877
Michal Hockodcda9b02017-07-12 14:36:45 -07009878 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009879 if (!tx)
9880 return -ENOMEM;
9881
Tom Herberte6484932010-10-18 18:04:39 +00009882 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00009883
Tom Herberte6484932010-10-18 18:04:39 +00009884 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
9885 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00009886
9887 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00009888}
9889
Denys Vlasenkoa2029242015-05-11 21:17:53 +02009890void netif_tx_stop_all_queues(struct net_device *dev)
9891{
9892 unsigned int i;
9893
9894 for (i = 0; i < dev->num_tx_queues; i++) {
9895 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11009896
Denys Vlasenkoa2029242015-05-11 21:17:53 +02009897 netif_tx_stop_queue(txq);
9898 }
9899}
9900EXPORT_SYMBOL(netif_tx_stop_all_queues);
9901
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009902/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009903 * register_netdevice - register a network device
9904 * @dev: device to register
9905 *
9906 * Take a completed network device structure and add it to the kernel
9907 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
9908 * chain. 0 is returned on success. A negative errno code is returned
9909 * on a failure to set up the device, or if the name is a duplicate.
9910 *
9911 * Callers must hold the rtnl semaphore. You may want
9912 * register_netdev() instead of this.
9913 *
9914 * BUGS:
9915 * The locking appears insufficient to guarantee two parallel registers
9916 * will not get the same name.
9917 */
9918
9919int register_netdevice(struct net_device *dev)
9920{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009921 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009922 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009923
Florian Fainellie283de32018-04-30 14:20:05 -07009924 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
9925 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009926 BUG_ON(dev_boot_phase);
9927 ASSERT_RTNL();
9928
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009929 might_sleep();
9930
Linus Torvalds1da177e2005-04-16 15:20:36 -07009931 /* When net_device's are persistent, this will be fatal. */
9932 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009933 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009934
Jakub Kicinski9000edb2020-03-16 13:47:12 -07009935 ret = ethtool_check_ops(dev->ethtool_ops);
9936 if (ret)
9937 return ret;
9938
David S. Millerf1f28aa2008-07-15 00:08:33 -07009939 spin_lock_init(&dev->addr_list_lock);
Cong Wang845e0eb2020-06-08 14:53:01 -07009940 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009941
Gao feng828de4f2012-09-13 20:58:27 +00009942 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00009943 if (ret < 0)
9944 goto out;
9945
Eric Dumazet9077f052019-10-03 08:59:24 -07009946 ret = -ENOMEM;
Jiri Pirkoff927412019-09-30 11:48:15 +02009947 dev->name_node = netdev_name_node_head_alloc(dev);
9948 if (!dev->name_node)
9949 goto out;
9950
Linus Torvalds1da177e2005-04-16 15:20:36 -07009951 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009952 if (dev->netdev_ops->ndo_init) {
9953 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009954 if (ret) {
9955 if (ret > 0)
9956 ret = -EIO;
Dan Carpenter42c17fa2019-12-03 17:12:39 +03009957 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009958 }
9959 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009960
Patrick McHardyf6469682013-04-19 02:04:27 +00009961 if (((dev->hw_features | dev->features) &
9962 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00009963 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
9964 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
9965 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
9966 ret = -EINVAL;
9967 goto err_uninit;
9968 }
9969
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00009970 ret = -EBUSY;
9971 if (!dev->ifindex)
9972 dev->ifindex = dev_new_index(net);
9973 else if (__dev_get_by_index(net, dev->ifindex))
9974 goto err_uninit;
9975
Michał Mirosław5455c692011-02-15 16:59:17 +00009976 /* Transfer changeable features to wanted_features and enable
9977 * software offloads (GSO and GRO).
9978 */
Steffen Klassert1a3c9982020-01-25 11:26:43 +01009979 dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
Michał Mirosław14d12322011-02-22 16:52:28 +00009980 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02009981
9982 if (dev->netdev_ops->ndo_udp_tunnel_add) {
9983 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9984 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9985 }
9986
Michał Mirosław14d12322011-02-22 16:52:28 +00009987 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009988
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009989 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00009990 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009991
Alexander Duyck7f348a62016-04-20 16:51:00 -04009992 /* If IPv4 TCP segmentation offload is supported we should also
9993 * allow the device to enable segmenting the frame with the option
9994 * of ignoring a static IP ID value. This doesn't enable the
9995 * feature itself but allows the user to enable it later.
9996 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009997 if (dev->hw_features & NETIF_F_TSO)
9998 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04009999 if (dev->vlan_features & NETIF_F_TSO)
10000 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
10001 if (dev->mpls_features & NETIF_F_TSO)
10002 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
10003 if (dev->hw_enc_features & NETIF_F_TSO)
10004 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -070010005
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010006 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +000010007 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010008 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +000010009
Pravin B Shelaree579672013-03-07 09:28:08 +000010010 /* Make NETIF_F_SG inheritable to tunnel devices.
10011 */
Alexander Duyck802ab552016-04-10 21:45:03 -040010012 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +000010013
Simon Horman0d89d202013-05-23 21:02:52 +000010014 /* Make NETIF_F_SG inheritable to MPLS.
10015 */
10016 dev->mpls_features |= NETIF_F_SG;
10017
Johannes Berg7ffbe3f2009-10-02 05:15:27 +000010018 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
10019 ret = notifier_to_errno(ret);
10020 if (ret)
10021 goto err_uninit;
10022
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010023 ret = netdev_register_kobject(dev);
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010024 if (ret) {
10025 dev->reg_state = NETREG_UNREGISTERED;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010026 goto err_uninit;
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010027 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010028 dev->reg_state = NETREG_REGISTERED;
10029
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010030 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +000010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070010032 /*
10033 * Default initial state at registry is that the
10034 * device is present.
10035 */
10036
10037 set_bit(__LINK_STATE_PRESENT, &dev->state);
10038
Ben Hutchings8f4cccb2012-08-20 22:16:51 +010010039 linkwatch_init_dev(dev);
10040
Linus Torvalds1da177e2005-04-16 15:20:36 -070010041 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010042 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010043 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -040010044 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010045
Jiri Pirko948b3372013-01-08 01:38:25 +000010046 /* If the device has permanent device address, driver should
10047 * set dev_addr and also addr_assign_type should be set to
10048 * NET_ADDR_PERM (default value).
10049 */
10050 if (dev->addr_assign_type == NET_ADDR_PERM)
10051 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
10052
Linus Torvalds1da177e2005-04-16 15:20:36 -070010053 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010054 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -070010055 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010056 if (ret) {
10057 rollback_registered(dev);
Subash Abhinov Kasiviswanathan10cc5142019-09-10 14:02:57 -060010058 rcu_barrier();
10059
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010060 dev->reg_state = NETREG_UNREGISTERED;
Yang Yingliang814152a2020-06-16 09:39:21 +000010061 /* We should put the kobject that hold in
10062 * netdev_unregister_kobject(), otherwise
10063 * the net device cannot be freed when
10064 * driver calls free_netdev(), because the
10065 * kobject is being hold.
10066 */
10067 kobject_put(&dev->dev.kobj);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010068 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010069 /*
10070 * Prevent userspace races by waiting until the network
10071 * device is fully setup before sending notifications.
10072 */
Patrick McHardya2835762010-02-26 06:34:51 +000010073 if (!dev->rtnl_link_ops ||
10074 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010075 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010076
10077out:
10078 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010079
10080err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010081 if (dev->netdev_ops->ndo_uninit)
10082 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -040010083 if (dev->priv_destructor)
10084 dev->priv_destructor(dev);
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010085err_free_name:
10086 netdev_name_node_free(dev->name_node);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010087 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010088}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010089EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010090
10091/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010092 * init_dummy_netdev - init a dummy network device for NAPI
10093 * @dev: device to init
10094 *
10095 * This takes a network device structure and initialize the minimum
10096 * amount of fields so it can be used to schedule NAPI polls without
10097 * registering a full blown interface. This is to be used by drivers
10098 * that need to tie several hardware interfaces to a single NAPI
10099 * poll scheduler due to HW limitations.
10100 */
10101int init_dummy_netdev(struct net_device *dev)
10102{
10103 /* Clear everything. Note we don't initialize spinlocks
10104 * are they aren't supposed to be taken by any of the
10105 * NAPI code and this dummy netdev is supposed to be
10106 * only ever used for NAPI polls
10107 */
10108 memset(dev, 0, sizeof(struct net_device));
10109
10110 /* make sure we BUG if trying to hit standard
10111 * register/unregister code path
10112 */
10113 dev->reg_state = NETREG_DUMMY;
10114
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010115 /* NAPI wants this */
10116 INIT_LIST_HEAD(&dev->napi_list);
10117
10118 /* a dummy interface is started by default */
10119 set_bit(__LINK_STATE_PRESENT, &dev->state);
10120 set_bit(__LINK_STATE_START, &dev->state);
10121
Josh Elsasser35edfdc2019-01-26 14:38:33 -080010122 /* napi_busy_loop stats accounting wants this */
10123 dev_net_set(dev, &init_net);
10124
Eric Dumazet29b44332010-10-11 10:22:12 +000010125 /* Note : We dont allocate pcpu_refcnt for dummy devices,
10126 * because users of this 'device' dont need to change
10127 * its refcount.
10128 */
10129
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010130 return 0;
10131}
10132EXPORT_SYMBOL_GPL(init_dummy_netdev);
10133
10134
10135/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136 * register_netdev - register a network device
10137 * @dev: device to register
10138 *
10139 * Take a completed network device structure and add it to the kernel
10140 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10141 * chain. 0 is returned on success. A negative errno code is returned
10142 * on a failure to set up the device, or if the name is a duplicate.
10143 *
Borislav Petkov38b4da382007-04-20 22:14:10 -070010144 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145 * and expands the device name if you passed a format string to
10146 * alloc_netdev.
10147 */
10148int register_netdev(struct net_device *dev)
10149{
10150 int err;
10151
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +030010152 if (rtnl_lock_killable())
10153 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010155 rtnl_unlock();
10156 return err;
10157}
10158EXPORT_SYMBOL(register_netdev);
10159
Eric Dumazet29b44332010-10-11 10:22:12 +000010160int netdev_refcnt_read(const struct net_device *dev)
10161{
10162 int i, refcnt = 0;
10163
10164 for_each_possible_cpu(i)
10165 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
10166 return refcnt;
10167}
10168EXPORT_SYMBOL(netdev_refcnt_read);
10169
Mauro Carvalho Chehabde2b5412020-09-22 13:22:52 +020010170#define WAIT_REFS_MIN_MSECS 1
10171#define WAIT_REFS_MAX_MSECS 250
Ben Hutchings2c530402012-07-10 10:55:09 +000010172/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +000010174 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010175 *
10176 * This is called when unregistering network devices.
10177 *
10178 * Any protocol or device that holds a reference should register
10179 * for netdevice notification, and cleanup and put back the
10180 * reference if they receive an UNREGISTER event.
10181 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010182 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010183 */
10184static void netdev_wait_allrefs(struct net_device *dev)
10185{
10186 unsigned long rebroadcast_time, warning_time;
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010187 int wait = 0, refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010188
Eric Dumazete014deb2009-11-17 05:59:21 +000010189 linkwatch_forget_dev(dev);
10190
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +000010192 refcnt = netdev_refcnt_read(dev);
10193
10194 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010195 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010196 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197
10198 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010199 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010200
Eric Dumazet748e2d92012-08-22 21:50:59 +000010201 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010202 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +000010203 rtnl_lock();
10204
Linus Torvalds1da177e2005-04-16 15:20:36 -070010205 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
10206 &dev->state)) {
10207 /* We must not have linkwatch events
10208 * pending on unregister. If this
10209 * happens, we simply run the queue
10210 * unscheduled, resulting in a noop
10211 * for this device.
10212 */
10213 linkwatch_run_queue();
10214 }
10215
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010216 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010217
10218 rebroadcast_time = jiffies;
10219 }
10220
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010221 if (!wait) {
10222 rcu_barrier();
10223 wait = WAIT_REFS_MIN_MSECS;
10224 } else {
10225 msleep(wait);
10226 wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
10227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010228
Eric Dumazet29b44332010-10-11 10:22:12 +000010229 refcnt = netdev_refcnt_read(dev);
10230
Eric Dumazetd7c04b02019-05-16 08:09:57 -070010231 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010232 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
10233 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010234 warning_time = jiffies;
10235 }
10236 }
10237}
10238
10239/* The sequence is:
10240 *
10241 * rtnl_lock();
10242 * ...
10243 * register_netdevice(x1);
10244 * register_netdevice(x2);
10245 * ...
10246 * unregister_netdevice(y1);
10247 * unregister_netdevice(y2);
10248 * ...
10249 * rtnl_unlock();
10250 * free_netdev(y1);
10251 * free_netdev(y2);
10252 *
Herbert Xu58ec3b42008-10-07 15:50:03 -070010253 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -070010254 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010255 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070010256 * without deadlocking with linkwatch via keventd.
10257 * 2) Since we run with the RTNL semaphore not held, we can sleep
10258 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -070010259 *
10260 * We must not return until all unregister events added during
10261 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010262 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010263void netdev_run_todo(void)
10264{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010265 struct list_head list;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010266#ifdef CONFIG_LOCKDEP
10267 struct list_head unlink_list;
10268
10269 list_replace_init(&net_unlink_list, &unlink_list);
10270
10271 while (!list_empty(&unlink_list)) {
10272 struct net_device *dev = list_first_entry(&unlink_list,
10273 struct net_device,
10274 unlink_list);
Taehee Yoo0e8b8d62020-10-15 16:26:06 +000010275 list_del_init(&dev->unlink_list);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010276 dev->nested_level = dev->lower_level - 1;
10277 }
10278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010279
Linus Torvalds1da177e2005-04-16 15:20:36 -070010280 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010281 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -070010282
10283 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010284
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010285
10286 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +000010287 if (!list_empty(&list))
10288 rcu_barrier();
10289
Linus Torvalds1da177e2005-04-16 15:20:36 -070010290 while (!list_empty(&list)) {
10291 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +000010292 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010293 list_del(&dev->todo_list);
10294
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010295 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010296 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070010297 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010298 dump_stack();
10299 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010300 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010301
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010302 dev->reg_state = NETREG_UNREGISTERED;
10303
10304 netdev_wait_allrefs(dev);
10305
10306 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +000010307 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -080010308 BUG_ON(!list_empty(&dev->ptype_all));
10309 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +000010310 WARN_ON(rcu_access_pointer(dev->ip_ptr));
10311 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -080010312#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -070010313 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -080010314#endif
David S. Millercf124db2017-05-08 12:52:56 -040010315 if (dev->priv_destructor)
10316 dev->priv_destructor(dev);
10317 if (dev->needs_free_netdev)
10318 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010319
Eric W. Biederman50624c92013-09-23 21:19:49 -070010320 /* Report a network device has been unregistered */
10321 rtnl_lock();
10322 dev_net(dev)->dev_unreg_count--;
10323 __rtnl_unlock();
10324 wake_up(&netdev_unregistering_wq);
10325
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010326 /* Free network device */
10327 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010329}
10330
Jarod Wilson92566452016-02-01 18:51:04 -050010331/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
10332 * all the same fields in the same order as net_device_stats, with only
10333 * the type differing, but rtnl_link_stats64 may have additional fields
10334 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +000010335 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010336void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
10337 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +000010338{
10339#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -050010340 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +020010341 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -050010342 /* zero out counters that only exist in rtnl_link_stats64 */
10343 memset((char *)stats64 + sizeof(*netdev_stats), 0,
10344 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010345#else
Jarod Wilson92566452016-02-01 18:51:04 -050010346 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010347 const unsigned long *src = (const unsigned long *)netdev_stats;
10348 u64 *dst = (u64 *)stats64;
10349
Jarod Wilson92566452016-02-01 18:51:04 -050010350 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010351 for (i = 0; i < n; i++)
10352 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -050010353 /* zero out counters that only exist in rtnl_link_stats64 */
10354 memset((char *)stats64 + n * sizeof(u64), 0,
10355 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010356#endif
10357}
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010358EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010359
Eric Dumazetd83345a2009-11-16 03:36:51 +000010360/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010361 * dev_get_stats - get network device statistics
10362 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -070010363 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010364 *
Ben Hutchingsd7753512010-07-09 09:12:41 +000010365 * Get network statistics from device. Return @storage.
10366 * The device driver may provide its own method by setting
10367 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
10368 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010369 */
Ben Hutchingsd7753512010-07-09 09:12:41 +000010370struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
10371 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +000010372{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010373 const struct net_device_ops *ops = dev->netdev_ops;
10374
Eric Dumazet28172732010-07-07 14:58:56 -070010375 if (ops->ndo_get_stats64) {
10376 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010377 ops->ndo_get_stats64(dev, storage);
10378 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +000010379 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010380 } else {
10381 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -070010382 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -070010383 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
10384 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
10385 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -070010386 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -070010387}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010388EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -070010389
Heiner Kallweit44fa32f2020-10-12 10:01:27 +020010390/**
10391 * dev_fetch_sw_netstats - get per-cpu network device statistics
10392 * @s: place to store stats
10393 * @netstats: per-cpu network stats to read from
10394 *
10395 * Read per-cpu network statistics and populate the related fields in @s.
10396 */
10397void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
10398 const struct pcpu_sw_netstats __percpu *netstats)
10399{
10400 int cpu;
10401
10402 for_each_possible_cpu(cpu) {
10403 const struct pcpu_sw_netstats *stats;
10404 struct pcpu_sw_netstats tmp;
10405 unsigned int start;
10406
10407 stats = per_cpu_ptr(netstats, cpu);
10408 do {
10409 start = u64_stats_fetch_begin_irq(&stats->syncp);
10410 tmp.rx_packets = stats->rx_packets;
10411 tmp.rx_bytes = stats->rx_bytes;
10412 tmp.tx_packets = stats->tx_packets;
10413 tmp.tx_bytes = stats->tx_bytes;
10414 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
10415
10416 s->rx_packets += tmp.rx_packets;
10417 s->rx_bytes += tmp.rx_bytes;
10418 s->tx_packets += tmp.tx_packets;
10419 s->tx_bytes += tmp.tx_bytes;
10420 }
10421}
10422EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
10423
Heiner Kallweita1839422020-11-07 21:49:07 +010010424/**
10425 * dev_get_tstats64 - ndo_get_stats64 implementation
10426 * @dev: device to get statistics from
10427 * @s: place to store stats
10428 *
10429 * Populate @s from dev->stats and dev->tstats. Can be used as
10430 * ndo_get_stats64() callback.
10431 */
10432void dev_get_tstats64(struct net_device *dev, struct rtnl_link_stats64 *s)
10433{
10434 netdev_stats_to_stats64(s, &dev->stats);
10435 dev_fetch_sw_netstats(s, dev->tstats);
10436}
10437EXPORT_SYMBOL_GPL(dev_get_tstats64);
10438
Eric Dumazet24824a02010-10-02 06:11:55 +000010439struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -070010440{
Eric Dumazet24824a02010-10-02 06:11:55 +000010441 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -070010442
Eric Dumazet24824a02010-10-02 06:11:55 +000010443#ifdef CONFIG_NET_CLS_ACT
10444 if (queue)
10445 return queue;
10446 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10447 if (!queue)
10448 return NULL;
10449 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -080010450 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +000010451 queue->qdisc_sleeping = &noop_qdisc;
10452 rcu_assign_pointer(dev->ingress_queue, queue);
10453#endif
10454 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -070010455}
10456
Eric Dumazet2c60db02012-09-16 09:17:26 +000010457static const struct ethtool_ops default_ethtool_ops;
10458
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +000010459void netdev_set_default_ethtool_ops(struct net_device *dev,
10460 const struct ethtool_ops *ops)
10461{
10462 if (dev->ethtool_ops == &default_ethtool_ops)
10463 dev->ethtool_ops = ops;
10464}
10465EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
10466
Eric Dumazet74d332c2013-10-30 13:10:44 -070010467void netdev_freemem(struct net_device *dev)
10468{
10469 char *addr = (char *)dev - dev->padded;
10470
WANG Cong4cb28972014-06-02 15:55:22 -070010471 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010472}
10473
Linus Torvalds1da177e2005-04-16 15:20:36 -070010474/**
tcharding722c9a02017-02-09 17:56:04 +110010475 * alloc_netdev_mqs - allocate network device
10476 * @sizeof_priv: size of private data to allocate space for
10477 * @name: device name format string
10478 * @name_assign_type: origin of device name
10479 * @setup: callback to initialize device
10480 * @txqs: the number of TX subqueues to allocate
10481 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -070010482 *
tcharding722c9a02017-02-09 17:56:04 +110010483 * Allocates a struct net_device with private data area for driver use
10484 * and performs basic initialization. Also allocates subqueue structs
10485 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010486 */
Tom Herbert36909ea2011-01-09 19:36:31 +000010487struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +020010488 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +000010489 void (*setup)(struct net_device *),
10490 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010491{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010492 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +030010493 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010494 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010495
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -070010496 BUG_ON(strlen(name) >= sizeof(dev->name));
10497
Tom Herbert36909ea2011-01-09 19:36:31 +000010498 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010499 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +000010500 return NULL;
10501 }
10502
Tom Herbert36909ea2011-01-09 19:36:31 +000010503 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010504 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +000010505 return NULL;
10506 }
Tom Herbert36909ea2011-01-09 19:36:31 +000010507
David S. Millerfd2ea0a2008-07-17 01:56:23 -070010508 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010509 if (sizeof_priv) {
10510 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010511 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010512 alloc_size += sizeof_priv;
10513 }
10514 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010515 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010516
Michal Hockodcda9b02017-07-12 14:36:45 -070010517 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +000010518 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010519 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010520
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010521 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010522 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010523
Eric Dumazet29b44332010-10-11 10:22:12 +000010524 dev->pcpu_refcnt = alloc_percpu(int);
10525 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -070010526 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010527
Linus Torvalds1da177e2005-04-16 15:20:36 -070010528 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +000010529 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010530
Jiri Pirko22bedad32010-04-01 21:22:57 +000010531 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010532 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +000010533
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010534 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010535
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -070010536 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +000010537 dev->gso_max_segs = GSO_MAX_SEGS;
Taehee Yoo5343da42019-10-21 18:47:50 +000010538 dev->upper_level = 1;
10539 dev->lower_level = 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010540#ifdef CONFIG_LOCKDEP
10541 dev->nested_level = 0;
10542 INIT_LIST_HEAD(&dev->unlink_list);
10543#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010544
Herbert Xud565b0a2008-12-15 23:38:52 -080010545 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010546 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -070010547 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +000010548 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +020010549 INIT_LIST_HEAD(&dev->adj_list.upper);
10550 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -080010551 INIT_LIST_HEAD(&dev->ptype_all);
10552 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Pirko93642e12020-01-25 12:17:08 +010010553 INIT_LIST_HEAD(&dev->net_notifier_list);
Jiri Kosina59cc1f62016-08-10 11:05:15 +020010554#ifdef CONFIG_NET_SCHED
10555 hash_init(dev->qdisc_hash);
10556#endif
Eric Dumazet02875872014-10-05 18:38:35 -070010557 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010558 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010559
Phil Suttera8131042016-02-17 15:37:43 +010010560 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +020010561 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +010010562 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +010010563 }
Phil Sutter906470c2015-08-18 10:30:48 +020010564
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010565 dev->num_tx_queues = txqs;
10566 dev->real_num_tx_queues = txqs;
10567 if (netif_alloc_netdev_queues(dev))
10568 goto free_all;
10569
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010570 dev->num_rx_queues = rxqs;
10571 dev->real_num_rx_queues = rxqs;
10572 if (netif_alloc_rx_queues(dev))
10573 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010574
Linus Torvalds1da177e2005-04-16 15:20:36 -070010575 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +020010576 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +000010577 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +000010578 if (!dev->ethtool_ops)
10579 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +020010580
Daniel Borkmann357b6cc2020-03-18 10:33:22 +010010581 nf_hook_ingress_init(dev);
Pablo Neirae687ad62015-05-13 18:19:38 +020010582
Linus Torvalds1da177e2005-04-16 15:20:36 -070010583 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010584
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010585free_all:
10586 free_netdev(dev);
10587 return NULL;
10588
Eric Dumazet29b44332010-10-11 10:22:12 +000010589free_pcpu:
10590 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010591free_dev:
10592 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010593 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010594}
Tom Herbert36909ea2011-01-09 19:36:31 +000010595EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010596
10597/**
tcharding722c9a02017-02-09 17:56:04 +110010598 * free_netdev - free network device
10599 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010600 *
tcharding722c9a02017-02-09 17:56:04 +110010601 * This function does the last stage of destroying an allocated device
10602 * interface. The reference to the device object is released. If this
10603 * is the last reference then it will be freed.Must be called in process
10604 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010605 */
10606void free_netdev(struct net_device *dev)
10607{
Herbert Xud565b0a2008-12-15 23:38:52 -080010608 struct napi_struct *p, *n;
10609
Eric Dumazet93d05d42015-11-18 06:31:03 -080010610 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -070010611 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010612 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -070010613
Eric Dumazet33d480c2011-08-11 19:30:52 +000010614 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +000010615
Jiri Pirkof001fde2009-05-05 02:48:28 +000010616 /* Flush device addresses */
10617 dev_addr_flush(dev);
10618
Herbert Xud565b0a2008-12-15 23:38:52 -080010619 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
10620 netif_napi_del(p);
10621
Eric Dumazet29b44332010-10-11 10:22:12 +000010622 free_percpu(dev->pcpu_refcnt);
10623 dev->pcpu_refcnt = NULL;
Toke Høiland-Jørgensen75ccae62020-01-16 16:14:44 +010010624 free_percpu(dev->xdp_bulkq);
10625 dev->xdp_bulkq = NULL;
Eric Dumazet29b44332010-10-11 10:22:12 +000010626
Stephen Hemminger3041a062006-05-26 13:25:24 -070010627 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010628 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -070010629 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010630 return;
10631 }
10632
10633 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
10634 dev->reg_state = NETREG_RELEASED;
10635
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070010636 /* will free via device release */
10637 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010638}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010639EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010640
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010641/**
10642 * synchronize_net - Synchronize with packet receive processing
10643 *
10644 * Wait for packets currently being received to be done.
10645 * Does not block later packets from starting.
10646 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010647void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010648{
10649 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +000010650 if (rtnl_is_locked())
10651 synchronize_rcu_expedited();
10652 else
10653 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010654}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010655EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010656
10657/**
Eric Dumazet44a08732009-10-27 07:03:04 +000010658 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070010659 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +000010660 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -080010661 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010662 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010663 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +000010664 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010665 *
10666 * Callers must hold the rtnl semaphore. You may want
10667 * unregister_netdev() instead of this.
10668 */
10669
Eric Dumazet44a08732009-10-27 07:03:04 +000010670void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010671{
Herbert Xua6620712007-12-12 19:21:56 -080010672 ASSERT_RTNL();
10673
Eric Dumazet44a08732009-10-27 07:03:04 +000010674 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010675 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +000010676 } else {
10677 rollback_registered(dev);
10678 /* Finish processing unregister after unlock */
10679 net_set_todo(dev);
10680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010681}
Eric Dumazet44a08732009-10-27 07:03:04 +000010682EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010683
10684/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010685 * unregister_netdevice_many - unregister many devices
10686 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -070010687 *
10688 * Note: As most callers use a stack allocated list_head,
10689 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010690 */
10691void unregister_netdevice_many(struct list_head *head)
10692{
10693 struct net_device *dev;
10694
10695 if (!list_empty(head)) {
10696 rollback_registered_many(head);
10697 list_for_each_entry(dev, head, unreg_list)
10698 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -070010699 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010700 }
10701}
Eric Dumazet63c80992009-10-27 07:06:49 +000010702EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010703
10704/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010705 * unregister_netdev - remove device from the kernel
10706 * @dev: device
10707 *
10708 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010709 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010710 *
10711 * This is just a wrapper for unregister_netdevice that takes
10712 * the rtnl semaphore. In general you want to use this and not
10713 * unregister_netdevice.
10714 */
10715void unregister_netdev(struct net_device *dev)
10716{
10717 rtnl_lock();
10718 unregister_netdevice(dev);
10719 rtnl_unlock();
10720}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010721EXPORT_SYMBOL(unregister_netdev);
10722
Eric W. Biedermance286d32007-09-12 13:53:49 +020010723/**
10724 * dev_change_net_namespace - move device to different nethost namespace
10725 * @dev: device
10726 * @net: network namespace
10727 * @pat: If not NULL name pattern to try if the current device name
10728 * is already taken in the destination network namespace.
10729 *
10730 * This function shuts down a device interface and moves it
10731 * to a new network namespace. On success 0 is returned, on
10732 * a failure a netagive errno code is returned.
10733 *
10734 * Callers must hold the rtnl semaphore.
10735 */
10736
10737int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
10738{
Christian Brauneref6a4c82020-02-27 04:37:19 +010010739 struct net *net_old = dev_net(dev);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010740 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010741
10742 ASSERT_RTNL();
10743
10744 /* Don't allow namespace local devices to be moved. */
10745 err = -EINVAL;
10746 if (dev->features & NETIF_F_NETNS_LOCAL)
10747 goto out;
10748
10749 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010750 if (dev->reg_state != NETREG_REGISTERED)
10751 goto out;
10752
10753 /* Get out if there is nothing todo */
10754 err = 0;
Christian Brauneref6a4c82020-02-27 04:37:19 +010010755 if (net_eq(net_old, net))
Eric W. Biedermance286d32007-09-12 13:53:49 +020010756 goto out;
10757
10758 /* Pick the destination device name, and ensure
10759 * we can use it in the destination network namespace.
10760 */
10761 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +000010762 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020010763 /* We get here if we can't use the current device name */
10764 if (!pat)
10765 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +080010766 err = dev_get_valid_name(net, dev, pat);
10767 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +020010768 goto out;
10769 }
10770
10771 /*
10772 * And now a mini version of register_netdevice unregister_netdevice.
10773 */
10774
10775 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -070010776 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010777
10778 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010779 unlist_netdevice(dev);
10780
10781 synchronize_net();
10782
10783 /* Shutdown queueing discipline. */
10784 dev_shutdown(dev);
10785
10786 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +110010787 * this device. They should clean all the things.
10788 *
10789 * Note that dev->reg_state stays at NETREG_REGISTERED.
10790 * This is wanted because this way 8021q and macvlan know
10791 * the device is just moving and can keep their slaves up.
10792 */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010793 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +000010794 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010795
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +020010796 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010797 /* If there is an ifindex conflict assign a new one */
10798 if (__dev_get_by_index(net, dev->ifindex))
10799 new_ifindex = dev_new_index(net);
10800 else
10801 new_ifindex = dev->ifindex;
10802
10803 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
10804 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010805
10806 /*
10807 * Flush the unicast and multicast chains
10808 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010809 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +000010810 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010811
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010812 /* Send a netdev-removed uevent to the old namespace */
10813 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040010814 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010815
Jiri Pirko93642e12020-01-25 12:17:08 +010010816 /* Move per-net netdevice notifiers that are following the netdevice */
10817 move_netdevice_notifiers_dev_net(dev, net);
10818
Eric W. Biedermance286d32007-09-12 13:53:49 +020010819 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010820 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010821 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010822
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010823 /* Send a netdev-add uevent to the new namespace */
10824 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040010825 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010826
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010827 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -070010828 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010829 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010830
Christian Brauneref6a4c82020-02-27 04:37:19 +010010831 /* Adapt owner in case owning user namespace of target network
10832 * namespace is different from the original one.
10833 */
10834 err = netdev_change_owner(dev, net_old, net);
10835 WARN_ON(err);
10836
Eric W. Biedermance286d32007-09-12 13:53:49 +020010837 /* Add the device back in the hashes */
10838 list_netdevice(dev);
10839
10840 /* Notify protocols, that a new device appeared. */
10841 call_netdevice_notifiers(NETDEV_REGISTER, dev);
10842
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010843 /*
10844 * Prevent userspace races by waiting until the network
10845 * device is fully setup before sending notifications.
10846 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010847 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010848
Eric W. Biedermance286d32007-09-12 13:53:49 +020010849 synchronize_net();
10850 err = 0;
10851out:
10852 return err;
10853}
Johannes Berg463d0182009-07-14 00:33:35 +020010854EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010855
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010856static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010857{
10858 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010859 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010860 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +053010861 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010862
Linus Torvalds1da177e2005-04-16 15:20:36 -070010863 local_irq_disable();
10864 cpu = smp_processor_id();
10865 sd = &per_cpu(softnet_data, cpu);
10866 oldsd = &per_cpu(softnet_data, oldcpu);
10867
10868 /* Find end of our completion_queue. */
10869 list_skb = &sd->completion_queue;
10870 while (*list_skb)
10871 list_skb = &(*list_skb)->next;
10872 /* Append completion queue from offline CPU. */
10873 *list_skb = oldsd->completion_queue;
10874 oldsd->completion_queue = NULL;
10875
Linus Torvalds1da177e2005-04-16 15:20:36 -070010876 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +000010877 if (oldsd->output_queue) {
10878 *sd->output_queue_tailp = oldsd->output_queue;
10879 sd->output_queue_tailp = oldsd->output_queue_tailp;
10880 oldsd->output_queue = NULL;
10881 oldsd->output_queue_tailp = &oldsd->output_queue;
10882 }
Eric Dumazetac64da02015-01-15 17:04:22 -080010883 /* Append NAPI poll list from offline CPU, with one exception :
10884 * process_backlog() must be called by cpu owning percpu backlog.
10885 * We properly handle process_queue & input_pkt_queue later.
10886 */
10887 while (!list_empty(&oldsd->poll_list)) {
10888 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
10889 struct napi_struct,
10890 poll_list);
10891
10892 list_del_init(&napi->poll_list);
10893 if (napi->poll == process_backlog)
10894 napi->state = 0;
10895 else
10896 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +000010897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010898
10899 raise_softirq_irqoff(NET_TX_SOFTIRQ);
10900 local_irq_enable();
10901
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +053010902#ifdef CONFIG_RPS
10903 remsd = oldsd->rps_ipi_list;
10904 oldsd->rps_ipi_list = NULL;
10905#endif
10906 /* send out pending IPI's on offline CPU */
10907 net_rps_send_ipi(remsd);
10908
Linus Torvalds1da177e2005-04-16 15:20:36 -070010909 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +000010910 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080010911 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000010912 input_queue_head_incr(oldsd);
10913 }
Eric Dumazetac64da02015-01-15 17:04:22 -080010914 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080010915 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000010916 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -070010917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010918
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010919 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010920}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010921
Herbert Xu7f353bf2007-08-10 15:47:58 -070010922/**
Herbert Xub63365a2008-10-23 01:11:29 -070010923 * netdev_increment_features - increment feature set by one
10924 * @all: current feature set
10925 * @one: new feature set
10926 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -070010927 *
10928 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -070010929 * @one to the master device with current feature set @all. Will not
10930 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -070010931 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +000010932netdev_features_t netdev_increment_features(netdev_features_t all,
10933 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -070010934{
Tom Herbertc8cd0982015-12-14 11:19:44 -080010935 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -080010936 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +000010937 mask |= NETIF_F_VLAN_CHALLENGED;
10938
Tom Herberta1882222015-12-14 11:19:43 -080010939 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +000010940 all &= one | ~NETIF_F_ALL_FOR_ALL;
10941
Michał Mirosław1742f182011-04-22 06:31:16 +000010942 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -080010943 if (all & NETIF_F_HW_CSUM)
10944 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -070010945
10946 return all;
10947}
Herbert Xub63365a2008-10-23 01:11:29 -070010948EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -070010949
Baruch Siach430f03c2013-06-02 20:43:55 +000010950static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010951{
10952 int i;
10953 struct hlist_head *hash;
10954
Kees Cook6da2ec52018-06-12 13:55:00 -070010955 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010956 if (hash != NULL)
10957 for (i = 0; i < NETDEV_HASHENTRIES; i++)
10958 INIT_HLIST_HEAD(&hash[i]);
10959
10960 return hash;
10961}
10962
Eric W. Biederman881d9662007-09-17 11:56:21 -070010963/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -070010964static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070010965{
Li RongQingd9f37d02018-07-13 14:41:36 +080010966 BUILD_BUG_ON(GRO_HASH_BUCKETS >
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080010967 8 * sizeof_field(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +080010968
Rustad, Mark D734b6542012-07-18 09:06:07 +000010969 if (net != &init_net)
10970 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -070010971
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010972 net->dev_name_head = netdev_create_hash();
10973 if (net->dev_name_head == NULL)
10974 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010975
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010976 net->dev_index_head = netdev_create_hash();
10977 if (net->dev_index_head == NULL)
10978 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010979
Jiri Pirkoa30c7b42019-09-30 10:15:10 +020010980 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
10981
Eric W. Biederman881d9662007-09-17 11:56:21 -070010982 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010983
10984err_idx:
10985 kfree(net->dev_name_head);
10986err_name:
10987 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010988}
10989
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010990/**
10991 * netdev_drivername - network driver for the device
10992 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010993 *
10994 * Determine network driver for device.
10995 */
David S. Miller3019de12011-06-06 16:41:33 -070010996const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -070010997{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -070010998 const struct device_driver *driver;
10999 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -070011000 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -070011001
11002 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011003 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -070011004 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011005
11006 driver = parent->driver;
11007 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -070011008 return driver->name;
11009 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011010}
11011
Joe Perches6ea754e2014-09-22 11:10:50 -070011012static void __netdev_printk(const char *level, const struct net_device *dev,
11013 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +000011014{
Joe Perchesb004ff42012-09-12 20:12:19 -070011015 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011016 dev_printk_emit(level[1] - '0',
11017 dev->dev.parent,
11018 "%s %s %s%s: %pV",
11019 dev_driver_string(dev->dev.parent),
11020 dev_name(dev->dev.parent),
11021 netdev_name(dev), netdev_reg_state(dev),
11022 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011023 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011024 printk("%s%s%s: %pV",
11025 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011026 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -070011027 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011028 }
Joe Perches256df2f2010-06-27 01:02:35 +000011029}
11030
Joe Perches6ea754e2014-09-22 11:10:50 -070011031void netdev_printk(const char *level, const struct net_device *dev,
11032 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +000011033{
11034 struct va_format vaf;
11035 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +000011036
11037 va_start(args, format);
11038
11039 vaf.fmt = format;
11040 vaf.va = &args;
11041
Joe Perches6ea754e2014-09-22 11:10:50 -070011042 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011043
Joe Perches256df2f2010-06-27 01:02:35 +000011044 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +000011045}
11046EXPORT_SYMBOL(netdev_printk);
11047
11048#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -070011049void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +000011050{ \
Joe Perches256df2f2010-06-27 01:02:35 +000011051 struct va_format vaf; \
11052 va_list args; \
11053 \
11054 va_start(args, fmt); \
11055 \
11056 vaf.fmt = fmt; \
11057 vaf.va = &args; \
11058 \
Joe Perches6ea754e2014-09-22 11:10:50 -070011059 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -070011060 \
Joe Perches256df2f2010-06-27 01:02:35 +000011061 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +000011062} \
11063EXPORT_SYMBOL(func);
11064
11065define_netdev_printk_level(netdev_emerg, KERN_EMERG);
11066define_netdev_printk_level(netdev_alert, KERN_ALERT);
11067define_netdev_printk_level(netdev_crit, KERN_CRIT);
11068define_netdev_printk_level(netdev_err, KERN_ERR);
11069define_netdev_printk_level(netdev_warn, KERN_WARNING);
11070define_netdev_printk_level(netdev_notice, KERN_NOTICE);
11071define_netdev_printk_level(netdev_info, KERN_INFO);
11072
Pavel Emelyanov46650792007-10-08 20:38:39 -070011073static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011074{
11075 kfree(net->dev_name_head);
11076 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +030011077 if (net != &init_net)
11078 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -070011079}
11080
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011081static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -070011082 .init = netdev_init,
11083 .exit = netdev_exit,
11084};
11085
Pavel Emelyanov46650792007-10-08 20:38:39 -070011086static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011087{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011088 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011089 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011090 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +020011091 * initial network namespace
11092 */
11093 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011094 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011095 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011096 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +020011097
11098 /* Ignore unmoveable devices (i.e. loopback) */
11099 if (dev->features & NETIF_F_NETNS_LOCAL)
11100 continue;
11101
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011102 /* Leave virtual devices for the generic cleanup */
11103 if (dev->rtnl_link_ops)
11104 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -080011105
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011106 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011107 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko55b40db2019-07-28 14:56:36 +020011108 if (__dev_get_by_name(&init_net, fb_name))
11109 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011110 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011111 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000011112 pr_emerg("%s: failed to move %s to init_net: %d\n",
11113 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011114 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +020011115 }
11116 }
11117 rtnl_unlock();
11118}
11119
Eric W. Biederman50624c92013-09-23 21:19:49 -070011120static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
11121{
11122 /* Return with the rtnl_lock held when there are no network
11123 * devices unregistering in any network namespace in net_list.
11124 */
11125 struct net *net;
11126 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +010011127 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011128
Peter Zijlstraff960a72014-10-29 17:04:56 +010011129 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011130 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -070011131 unregistering = false;
11132 rtnl_lock();
11133 list_for_each_entry(net, net_list, exit_list) {
11134 if (net->dev_unreg_count > 0) {
11135 unregistering = true;
11136 break;
11137 }
11138 }
11139 if (!unregistering)
11140 break;
11141 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +010011142
11143 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011144 }
Peter Zijlstraff960a72014-10-29 17:04:56 +010011145 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011146}
11147
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011148static void __net_exit default_device_exit_batch(struct list_head *net_list)
11149{
11150 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011151 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011152 * Do this across as many network namespaces as possible to
11153 * improve batching efficiency.
11154 */
11155 struct net_device *dev;
11156 struct net *net;
11157 LIST_HEAD(dev_kill_list);
11158
Eric W. Biederman50624c92013-09-23 21:19:49 -070011159 /* To prevent network device cleanup code from dereferencing
11160 * loopback devices or network devices that have been freed
11161 * wait here for all pending unregistrations to complete,
11162 * before unregistring the loopback device and allowing the
11163 * network namespace be freed.
11164 *
11165 * The netdev todo list containing all network devices
11166 * unregistrations that happen in default_device_exit_batch
11167 * will run in the rtnl_unlock() at the end of
11168 * default_device_exit_batch.
11169 */
11170 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011171 list_for_each_entry(net, net_list, exit_list) {
11172 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +020011173 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011174 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
11175 else
11176 unregister_netdevice_queue(dev, &dev_kill_list);
11177 }
11178 }
11179 unregister_netdevice_many(&dev_kill_list);
11180 rtnl_unlock();
11181}
11182
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011183static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011184 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011185 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +020011186};
11187
Linus Torvalds1da177e2005-04-16 15:20:36 -070011188/*
11189 * Initialize the DEV module. At boot time this walks the device list and
11190 * unhooks any devices that fail to initialise (normally hardware not
11191 * present) and leaves us with a valid list of present and active devices.
11192 *
11193 */
11194
11195/*
11196 * This is called single threaded during boot, so no need
11197 * to take the rtnl semaphore.
11198 */
11199static int __init net_dev_init(void)
11200{
11201 int i, rc = -ENOMEM;
11202
11203 BUG_ON(!dev_boot_phase);
11204
Linus Torvalds1da177e2005-04-16 15:20:36 -070011205 if (dev_proc_init())
11206 goto out;
11207
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011208 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -070011209 goto out;
11210
11211 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +080011212 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011213 INIT_LIST_HEAD(&ptype_base[i]);
11214
Vlad Yasevich62532da2012-11-15 08:49:10 +000011215 INIT_LIST_HEAD(&offload_base);
11216
Eric W. Biederman881d9662007-09-17 11:56:21 -070011217 if (register_pernet_subsys(&netdev_net_ops))
11218 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011219
11220 /*
11221 * Initialise the packet receive queues.
11222 */
11223
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070011224 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -070011225 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011226 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011227
Eric Dumazet41852492016-08-26 12:50:39 -070011228 INIT_WORK(flush, flush_backlog);
11229
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011230 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -070011231 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +010011232#ifdef CONFIG_XFRM_OFFLOAD
11233 skb_queue_head_init(&sd->xfrm_backlog);
11234#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011235 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +000011236 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +000011237#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011238 sd->csd.func = rps_trigger_softirq;
11239 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011240 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -070011241#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +000011242
David S. Miller7c4ec742018-07-20 23:37:55 -070011243 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011244 sd->backlog.poll = process_backlog;
11245 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011246 }
11247
Linus Torvalds1da177e2005-04-16 15:20:36 -070011248 dev_boot_phase = 0;
11249
Eric W. Biederman505d4f72008-11-07 22:54:20 -080011250 /* The loopback device is special if any other network devices
11251 * is present in a network namespace the loopback device must
11252 * be present. Since we now dynamically allocate and free the
11253 * loopback device ensure this invariant is maintained by
11254 * keeping the loopback device as the first device on the
11255 * list of network devices. Ensuring the loopback devices
11256 * is the first device that appears and the last network device
11257 * that disappears.
11258 */
11259 if (register_pernet_device(&loopback_net_ops))
11260 goto out;
11261
11262 if (register_pernet_device(&default_device_ops))
11263 goto out;
11264
Carlos R. Mafra962cf362008-05-15 11:15:37 -030011265 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
11266 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011267
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011268 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
11269 NULL, dev_cpu_dead);
11270 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011271 rc = 0;
11272out:
11273 return rc;
11274}
11275
11276subsys_initcall(net_dev_init);