blob: c4708e2487fb67e09df99ff0cb2f17cb51795b5d [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>
Wei Wang29863d42021-02-08 11:34:09 -080094#include <linux/kthread.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070095#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040096#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020097#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -080099#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/stat.h>
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +0300102#include <net/dsa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700104#include <net/dst_metadata.h>
Leon Romanovsky04f00ab2021-02-03 15:51:11 +0200105#include <net/gro.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200107#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000109#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/highmem.h>
111#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#include <linux/netpoll.h>
114#include <linux/rcupdate.h>
115#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500118#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700119#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700120#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700121#include <linux/ctype.h>
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700122#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700123#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700124#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700125#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700126#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700127#include <linux/ipv6.h>
128#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700129#include <linux/jhash.h>
130#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700131#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900132#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900133#include <trace/events/skb.h>
Qitao Xu70713dd2021-07-14 23:03:24 -0700134#include <trace/events/qdisc.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700135#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000136#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100137#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300138#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700139#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100140#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400141#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800142#include <linux/hrtimer.h>
Lukas Wunner7463acf2021-10-08 22:06:01 +0200143#include <linux/netfilter_netdev.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530144#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200145#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200146#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200147#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100148#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100149#include <net/devlink.h>
Heiner Kallweitbd869242020-06-20 22:35:42 +0200150#include <linux/pm_runtime.h>
Willy Tarreau37447412020-08-10 10:27:42 +0200151#include <linux/prandom.h>
Tanner Love127d7352021-06-28 09:50:07 -0400152#include <linux/once_lite.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700154#include "net-sysfs.h"
155
Herbert Xud565b0a2008-12-15 23:38:52 -0800156#define MAX_GRO_SKBS 8
157
Herbert Xu5d38a072009-01-04 16:13:40 -0800158/* This should be increased if a protocol with a bigger head is added. */
159#define GRO_MAX_HEAD (MAX_HEADER + 128)
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000162static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000163struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
164struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000165static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000167static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700168static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700169 struct netdev_notifier_info *info);
Petr Machata26372602018-12-06 17:05:45 +0000170static int call_netdevice_notifiers_extack(unsigned long val,
171 struct net_device *dev,
172 struct netlink_ext_ack *extack);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200173static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700176 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * semaphore.
178 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800179 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *
181 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700182 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * actual updates. This allows pure readers to access the list even
184 * while a writer is preparing to update it.
185 *
186 * To put it another way, dev_base_lock is held for writing only to
187 * protect against pure readers; the rtnl semaphore provides the
188 * protection against other writers.
189 *
190 * See, for example usages, register_netdevice() and
191 * unregister_netdevice(), which must be called with the rtnl
192 * semaphore held.
193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195EXPORT_SYMBOL(dev_base_lock);
196
Florian Westphal6c557002017-10-02 23:50:05 +0200197static DEFINE_MUTEX(ifalias_mutex);
198
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300199/* protects napi_hash addition/deletion and napi_gen_id */
200static DEFINE_SPINLOCK(napi_hash_lock);
201
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800202static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800203static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300204
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200205static DECLARE_RWSEM(devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +0000206
Thomas Graf4e985ad2011-06-21 03:11:20 +0000207static inline void dev_base_seq_inc(struct net *net)
208{
tcharding643aa9c2017-02-09 17:56:05 +1100209 while (++net->dev_base_seq == 0)
210 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000211}
212
Eric W. Biederman881d9662007-09-17 11:56:21 -0700213static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700215 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000216
stephen hemminger08e98972009-11-10 07:20:34 +0000217 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Eric W. Biederman881d9662007-09-17 11:56:21 -0700220static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700222 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000225static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000226{
227#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000228 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000229#endif
230}
231
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000232static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000233{
234#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000235 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000236#endif
237}
238
Jiri Pirkoff927412019-09-30 11:48:15 +0200239static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
240 const char *name)
241{
242 struct netdev_name_node *name_node;
243
244 name_node = kmalloc(sizeof(*name_node), GFP_KERNEL);
245 if (!name_node)
246 return NULL;
247 INIT_HLIST_NODE(&name_node->hlist);
248 name_node->dev = dev;
249 name_node->name = name;
250 return name_node;
251}
252
253static struct netdev_name_node *
254netdev_name_node_head_alloc(struct net_device *dev)
255{
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200256 struct netdev_name_node *name_node;
257
258 name_node = netdev_name_node_alloc(dev, dev->name);
259 if (!name_node)
260 return NULL;
261 INIT_LIST_HEAD(&name_node->list);
262 return name_node;
Jiri Pirkoff927412019-09-30 11:48:15 +0200263}
264
265static void netdev_name_node_free(struct netdev_name_node *name_node)
266{
267 kfree(name_node);
268}
269
270static void netdev_name_node_add(struct net *net,
271 struct netdev_name_node *name_node)
272{
273 hlist_add_head_rcu(&name_node->hlist,
274 dev_name_hash(net, name_node->name));
275}
276
277static void netdev_name_node_del(struct netdev_name_node *name_node)
278{
279 hlist_del_rcu(&name_node->hlist);
280}
281
282static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
283 const char *name)
284{
285 struct hlist_head *head = dev_name_hash(net, name);
286 struct netdev_name_node *name_node;
287
288 hlist_for_each_entry(name_node, head, hlist)
289 if (!strcmp(name_node->name, name))
290 return name_node;
291 return NULL;
292}
293
294static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
295 const char *name)
296{
297 struct hlist_head *head = dev_name_hash(net, name);
298 struct netdev_name_node *name_node;
299
300 hlist_for_each_entry_rcu(name_node, head, hlist)
301 if (!strcmp(name_node->name, name))
302 return name_node;
303 return NULL;
304}
305
Antoine Tenart75ea27d2021-10-07 18:16:50 +0200306bool netdev_name_in_use(struct net *net, const char *name)
307{
308 return netdev_name_node_lookup(net, name);
309}
310EXPORT_SYMBOL(netdev_name_in_use);
311
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200312int netdev_name_node_alt_create(struct net_device *dev, const char *name)
313{
314 struct netdev_name_node *name_node;
315 struct net *net = dev_net(dev);
316
317 name_node = netdev_name_node_lookup(net, name);
318 if (name_node)
319 return -EEXIST;
320 name_node = netdev_name_node_alloc(dev, name);
321 if (!name_node)
322 return -ENOMEM;
323 netdev_name_node_add(net, name_node);
324 /* The node that holds dev->name acts as a head of per-device list. */
325 list_add_tail(&name_node->list, &dev->name_node->list);
326
327 return 0;
328}
329EXPORT_SYMBOL(netdev_name_node_alt_create);
330
331static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
332{
333 list_del(&name_node->list);
334 netdev_name_node_del(name_node);
335 kfree(name_node->name);
336 netdev_name_node_free(name_node);
337}
338
339int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
340{
341 struct netdev_name_node *name_node;
342 struct net *net = dev_net(dev);
343
344 name_node = netdev_name_node_lookup(net, name);
345 if (!name_node)
346 return -ENOENT;
Eric Dumazete08ad802020-02-14 07:53:53 -0800347 /* lookup might have found our primary name or a name belonging
348 * to another device.
349 */
350 if (name_node == dev->name_node || name_node->dev != dev)
351 return -EINVAL;
352
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200353 __netdev_name_node_alt_destroy(name_node);
354
355 return 0;
356}
357EXPORT_SYMBOL(netdev_name_node_alt_destroy);
358
359static void netdev_name_node_alt_flush(struct net_device *dev)
360{
361 struct netdev_name_node *name_node, *tmp;
362
363 list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list)
364 __netdev_name_node_alt_destroy(name_node);
365}
366
Eric W. Biedermance286d32007-09-12 13:53:49 +0200367/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000368static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200369{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900370 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200371
372 ASSERT_RTNL();
373
374 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800375 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Jiri Pirkoff927412019-09-30 11:48:15 +0200376 netdev_name_node_add(net, dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000377 hlist_add_head_rcu(&dev->index_hlist,
378 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200379 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000380
381 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200382}
383
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000384/* Device list removal
385 * caller must respect a RCU grace period before freeing/reusing dev
386 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200387static void unlist_netdevice(struct net_device *dev)
388{
389 ASSERT_RTNL();
390
391 /* Unlink dev from the device chain */
392 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800393 list_del_rcu(&dev->dev_list);
Jiri Pirkoff927412019-09-30 11:48:15 +0200394 netdev_name_node_del(dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000395 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200396 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000397
398 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200399}
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/*
402 * Our notifier list
403 */
404
Alan Sternf07d5b92006-05-09 15:23:03 -0700405static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407/*
408 * Device drivers call our routines to queue packets here. We empty the
409 * queue in the local softnet handler.
410 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700411
Eric Dumazet9958da02010-04-17 04:17:02 +0000412DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700413EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Cong Wang1a33e102020-05-02 22:22:19 -0700415#ifdef CONFIG_LOCKDEP
416/*
417 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
418 * according to dev->type
419 */
420static const unsigned short netdev_lock_type[] = {
421 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
422 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
423 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
424 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
425 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
426 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
427 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
428 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
429 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
430 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
431 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
432 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
433 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
434 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
435 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
436
437static const char *const netdev_lock_name[] = {
438 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
439 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
440 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
441 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
442 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
443 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
444 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
445 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
446 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
447 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
448 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
449 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
450 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
451 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
452 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
453
454static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang845e0eb2020-06-08 14:53:01 -0700455static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang1a33e102020-05-02 22:22:19 -0700456
457static inline unsigned short netdev_lock_pos(unsigned short dev_type)
458{
459 int i;
460
461 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
462 if (netdev_lock_type[i] == dev_type)
463 return i;
464 /* the last key is used by default */
465 return ARRAY_SIZE(netdev_lock_type) - 1;
466}
467
468static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
469 unsigned short dev_type)
470{
471 int i;
472
473 i = netdev_lock_pos(dev_type);
474 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
475 netdev_lock_name[i]);
476}
Cong Wang845e0eb2020-06-08 14:53:01 -0700477
478static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
479{
480 int i;
481
482 i = netdev_lock_pos(dev->type);
483 lockdep_set_class_and_name(&dev->addr_list_lock,
484 &netdev_addr_lock_key[i],
485 netdev_lock_name[i]);
486}
Cong Wang1a33e102020-05-02 22:22:19 -0700487#else
488static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
489 unsigned short dev_type)
490{
491}
Cong Wang845e0eb2020-06-08 14:53:01 -0700492
493static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
494{
495}
Cong Wang1a33e102020-05-02 22:22:19 -0700496#endif
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100499 *
500 * Protocol management and registration routines
501 *
502 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 * Add a protocol ID to the list. Now that the input handler is
507 * smarter we can dispense with all the messy stuff that used to be
508 * here.
509 *
510 * BEWARE!!! Protocol handlers, mangling input packets,
511 * MUST BE last in hash buckets and checking protocol handlers
512 * MUST start from promiscuous ptype_all chain in net_bh.
513 * It is true now, do not change it.
514 * Explanation follows: if protocol handler, mangling packet, will
515 * be the first on list, it is not able to sense, that packet
516 * is cloned and should be copied-on-write, so that it will
517 * change it and subsequent readers will get broken packet.
518 * --ANK (980803)
519 */
520
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000521static inline struct list_head *ptype_head(const struct packet_type *pt)
522{
523 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800524 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000525 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800526 return pt->dev ? &pt->dev->ptype_specific :
527 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000528}
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530/**
531 * dev_add_pack - add packet handler
532 * @pt: packet type declaration
533 *
534 * Add a protocol handler to the networking stack. The passed &packet_type
535 * is linked into kernel lists and may not be freed until it has been
536 * removed from the kernel lists.
537 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900538 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 * guarantee all CPU's that are in middle of receiving packets
540 * will see the new packet type (until the next received packet).
541 */
542
543void dev_add_pack(struct packet_type *pt)
544{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000545 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000547 spin_lock(&ptype_lock);
548 list_add_rcu(&pt->list, head);
549 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700551EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/**
554 * __dev_remove_pack - remove packet handler
555 * @pt: packet type declaration
556 *
557 * Remove a protocol handler that was previously added to the kernel
558 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
559 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900560 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 *
562 * The packet type might still be in use by receivers
563 * and must not be freed until after all the CPU's have gone
564 * through a quiescent state.
565 */
566void __dev_remove_pack(struct packet_type *pt)
567{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000568 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct packet_type *pt1;
570
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000571 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 list_for_each_entry(pt1, head, list) {
574 if (pt == pt1) {
575 list_del_rcu(&pt->list);
576 goto out;
577 }
578 }
579
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000580 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000582 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700584EXPORT_SYMBOL(__dev_remove_pack);
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/**
587 * dev_remove_pack - remove packet handler
588 * @pt: packet type declaration
589 *
590 * Remove a protocol handler that was previously added to the kernel
591 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
592 * from the kernel lists and can be freed or reused once this function
593 * returns.
594 *
595 * This call sleeps to guarantee that no CPU is looking at the packet
596 * type after return.
597 */
598void dev_remove_pack(struct packet_type *pt)
599{
600 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 synchronize_net();
603}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700604EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Vlad Yasevich62532da2012-11-15 08:49:10 +0000606
607/**
608 * dev_add_offload - register offload handlers
609 * @po: protocol offload declaration
610 *
611 * Add protocol offload handlers to the networking stack. The passed
612 * &proto_offload is linked into kernel lists and may not be freed until
613 * it has been removed from the kernel lists.
614 *
615 * This call does not sleep therefore it can not
616 * guarantee all CPU's that are in middle of receiving packets
617 * will see the new offload handlers (until the next received packet).
618 */
619void dev_add_offload(struct packet_offload *po)
620{
David S. Millerbdef7de2015-06-01 14:56:09 -0700621 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000622
623 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700624 list_for_each_entry(elem, &offload_base, list) {
625 if (po->priority < elem->priority)
626 break;
627 }
628 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000629 spin_unlock(&offload_lock);
630}
631EXPORT_SYMBOL(dev_add_offload);
632
633/**
634 * __dev_remove_offload - remove offload handler
635 * @po: packet offload declaration
636 *
637 * Remove a protocol offload handler that was previously added to the
638 * kernel offload handlers by dev_add_offload(). The passed &offload_type
639 * is removed from the kernel lists and can be freed or reused once this
640 * function returns.
641 *
642 * The packet type might still be in use by receivers
643 * and must not be freed until after all the CPU's have gone
644 * through a quiescent state.
645 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800646static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000647{
648 struct list_head *head = &offload_base;
649 struct packet_offload *po1;
650
Eric Dumazetc53aa502012-11-16 08:08:23 +0000651 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000652
653 list_for_each_entry(po1, head, list) {
654 if (po == po1) {
655 list_del_rcu(&po->list);
656 goto out;
657 }
658 }
659
660 pr_warn("dev_remove_offload: %p not found\n", po);
661out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000662 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000663}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000664
665/**
666 * dev_remove_offload - remove packet offload handler
667 * @po: packet offload declaration
668 *
669 * Remove a packet offload handler that was previously added to the kernel
670 * offload handlers by dev_add_offload(). The passed &offload_type is
671 * removed from the kernel lists and can be freed or reused once this
672 * function returns.
673 *
674 * This call sleeps to guarantee that no CPU is looking at the packet
675 * type after return.
676 */
677void dev_remove_offload(struct packet_offload *po)
678{
679 __dev_remove_offload(po);
680
681 synchronize_net();
682}
683EXPORT_SYMBOL(dev_remove_offload);
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100686 *
687 * Device Interface Subroutines
688 *
689 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200692 * dev_get_iflink - get 'iflink' value of a interface
693 * @dev: targeted interface
694 *
695 * Indicates the ifindex the interface is linked to.
696 * Physical interfaces have the same 'ifindex' and 'iflink' values.
697 */
698
699int dev_get_iflink(const struct net_device *dev)
700{
701 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
702 return dev->netdev_ops->ndo_get_iflink(dev);
703
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200704 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200705}
706EXPORT_SYMBOL(dev_get_iflink);
707
708/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700709 * dev_fill_metadata_dst - Retrieve tunnel egress information.
710 * @dev: targeted interface
711 * @skb: The packet.
712 *
713 * For better visibility of tunnel traffic OVS needs to retrieve
714 * egress tunnel information for a packet. Following API allows
715 * user to get this info.
716 */
717int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
718{
719 struct ip_tunnel_info *info;
720
721 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
722 return -EINVAL;
723
724 info = skb_tunnel_info_unclone(skb);
725 if (!info)
726 return -ENOMEM;
727 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
728 return -EINVAL;
729
730 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
731}
732EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
733
Pablo Neira Ayusoddb94ea2021-03-24 02:30:32 +0100734static struct net_device_path *dev_fwd_path(struct net_device_path_stack *stack)
735{
736 int k = stack->num_paths++;
737
738 if (WARN_ON_ONCE(k >= NET_DEVICE_PATH_STACK_MAX))
739 return NULL;
740
741 return &stack->path[k];
742}
743
744int dev_fill_forward_path(const struct net_device *dev, const u8 *daddr,
745 struct net_device_path_stack *stack)
746{
747 const struct net_device *last_dev;
748 struct net_device_path_ctx ctx = {
749 .dev = dev,
750 .daddr = daddr,
751 };
752 struct net_device_path *path;
753 int ret = 0;
754
755 stack->num_paths = 0;
756 while (ctx.dev && ctx.dev->netdev_ops->ndo_fill_forward_path) {
757 last_dev = ctx.dev;
758 path = dev_fwd_path(stack);
759 if (!path)
760 return -1;
761
762 memset(path, 0, sizeof(struct net_device_path));
763 ret = ctx.dev->netdev_ops->ndo_fill_forward_path(&ctx, path);
764 if (ret < 0)
765 return -1;
766
767 if (WARN_ON_ONCE(last_dev == ctx.dev))
768 return -1;
769 }
770 path = dev_fwd_path(stack);
771 if (!path)
772 return -1;
773 path->type = DEV_PATH_ETHERNET;
774 path->dev = ctx.dev;
775
776 return ret;
777}
778EXPORT_SYMBOL_GPL(dev_fill_forward_path);
779
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700780/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700782 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 * @name: name to find
784 *
785 * Find an interface by name. Must be called under RTNL semaphore
786 * or @dev_base_lock. If the name is found a pointer to the device
787 * is returned. If the name is not found then %NULL is returned. The
788 * reference counters are not incremented so the caller must be
789 * careful with locks.
790 */
791
Eric W. Biederman881d9662007-09-17 11:56:21 -0700792struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Jiri Pirkoff927412019-09-30 11:48:15 +0200794 struct netdev_name_node *node_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Jiri Pirkoff927412019-09-30 11:48:15 +0200796 node_name = netdev_name_node_lookup(net, name);
797 return node_name ? node_name->dev : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700799EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801/**
tcharding722c9a02017-02-09 17:56:04 +1100802 * dev_get_by_name_rcu - find a device by its name
803 * @net: the applicable net namespace
804 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000805 *
tcharding722c9a02017-02-09 17:56:04 +1100806 * Find an interface by name.
807 * If the name is found a pointer to the device is returned.
808 * If the name is not found then %NULL is returned.
809 * The reference counters are not incremented so the caller must be
810 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000811 */
812
813struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
814{
Jiri Pirkoff927412019-09-30 11:48:15 +0200815 struct netdev_name_node *node_name;
Eric Dumazet72c95282009-10-30 07:11:27 +0000816
Jiri Pirkoff927412019-09-30 11:48:15 +0200817 node_name = netdev_name_node_lookup_rcu(net, name);
818 return node_name ? node_name->dev : NULL;
Eric Dumazet72c95282009-10-30 07:11:27 +0000819}
820EXPORT_SYMBOL(dev_get_by_name_rcu);
821
822/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700824 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 * @name: name to find
826 *
827 * Find an interface by name. This can be called from any
828 * context and does its own locking. The returned handle has
829 * the usage count incremented and the caller must use dev_put() to
830 * release it when it is no longer needed. %NULL is returned if no
831 * matching device is found.
832 */
833
Eric W. Biederman881d9662007-09-17 11:56:21 -0700834struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 struct net_device *dev;
837
Eric Dumazet72c95282009-10-30 07:11:27 +0000838 rcu_read_lock();
839 dev = dev_get_by_name_rcu(net, name);
Yajun Deng1160dfa2021-08-05 19:55:27 +0800840 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000841 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return dev;
843}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700844EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846/**
847 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700848 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 * @ifindex: index of device
850 *
851 * Search for an interface by index. Returns %NULL if the device
852 * is not found or a pointer to the device. The device has not
853 * had its reference counter increased so the caller must be careful
854 * about locking. The caller must hold either the RTNL semaphore
855 * or @dev_base_lock.
856 */
857
Eric W. Biederman881d9662007-09-17 11:56:21 -0700858struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700860 struct net_device *dev;
861 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Sasha Levinb67bfe02013-02-27 17:06:00 -0800863 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (dev->ifindex == ifindex)
865 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return NULL;
868}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700869EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000871/**
872 * dev_get_by_index_rcu - find a device by its ifindex
873 * @net: the applicable net namespace
874 * @ifindex: index of device
875 *
876 * Search for an interface by index. Returns %NULL if the device
877 * is not found or a pointer to the device. The device has not
878 * had its reference counter increased so the caller must be careful
879 * about locking. The caller must hold RCU lock.
880 */
881
882struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
883{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000884 struct net_device *dev;
885 struct hlist_head *head = dev_index_hash(net, ifindex);
886
Sasha Levinb67bfe02013-02-27 17:06:00 -0800887 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000888 if (dev->ifindex == ifindex)
889 return dev;
890
891 return NULL;
892}
893EXPORT_SYMBOL(dev_get_by_index_rcu);
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896/**
897 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700898 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * @ifindex: index of device
900 *
901 * Search for an interface by index. Returns NULL if the device
902 * is not found or a pointer to the device. The device returned has
903 * had a reference added and the pointer is safe until the user calls
904 * dev_put to indicate they have finished with it.
905 */
906
Eric W. Biederman881d9662007-09-17 11:56:21 -0700907struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
909 struct net_device *dev;
910
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000911 rcu_read_lock();
912 dev = dev_get_by_index_rcu(net, ifindex);
Yajun Deng1160dfa2021-08-05 19:55:27 +0800913 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000914 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return dev;
916}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700917EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200920 * dev_get_by_napi_id - find a device by napi_id
921 * @napi_id: ID of the NAPI struct
922 *
923 * Search for an interface by NAPI ID. Returns %NULL if the device
924 * is not found or a pointer to the device. The device has not had
925 * its reference counter increased so the caller must be careful
926 * about locking. The caller must hold RCU lock.
927 */
928
929struct net_device *dev_get_by_napi_id(unsigned int napi_id)
930{
931 struct napi_struct *napi;
932
933 WARN_ON_ONCE(!rcu_read_lock_held());
934
935 if (napi_id < MIN_NAPI_ID)
936 return NULL;
937
938 napi = napi_by_id(napi_id);
939
940 return napi ? napi->dev : NULL;
941}
942EXPORT_SYMBOL(dev_get_by_napi_id);
943
944/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200945 * netdev_get_name - get a netdevice name, knowing its ifindex.
946 * @net: network namespace
947 * @name: a pointer to the buffer where the name will be stored.
948 * @ifindex: the ifindex of the interface to get the name from.
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200949 */
950int netdev_get_name(struct net *net, char *name, int ifindex)
951{
952 struct net_device *dev;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200953 int ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200954
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200955 down_read(&devnet_rename_sem);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200956 rcu_read_lock();
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200957
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200958 dev = dev_get_by_index_rcu(net, ifindex);
959 if (!dev) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200960 ret = -ENODEV;
961 goto out;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200962 }
963
964 strcpy(name, dev->name);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200965
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200966 ret = 0;
967out:
968 rcu_read_unlock();
969 up_read(&devnet_rename_sem);
970 return ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200971}
972
973/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000974 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700975 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * @type: media type of device
977 * @ha: hardware address
978 *
979 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800980 * is not found or a pointer to the device.
981 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000982 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 * and the caller must therefore be careful about locking
984 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
986
Eric Dumazet941666c2010-12-05 01:23:53 +0000987struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
988 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 struct net_device *dev;
991
Eric Dumazet941666c2010-12-05 01:23:53 +0000992 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (dev->type == type &&
994 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700995 return dev;
996
997 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
Eric Dumazet941666c2010-12-05 01:23:53 +0000999EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -03001000
Eric W. Biederman881d9662007-09-17 11:56:21 -07001001struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001003 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001005 rcu_read_lock();
1006 for_each_netdev_rcu(net, dev)
1007 if (dev->type == type) {
1008 dev_hold(dev);
1009 ret = dev;
1010 break;
1011 }
1012 rcu_read_unlock();
1013 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015EXPORT_SYMBOL(dev_getfirstbyhwtype);
1016
1017/**
WANG Cong6c555492014-09-11 15:35:09 -07001018 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001019 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 * @if_flags: IFF_* values
1021 * @mask: bitmask of bits in if_flags to check
1022 *
1023 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +00001024 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -07001025 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 */
1027
WANG Cong6c555492014-09-11 15:35:09 -07001028struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1029 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001031 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
WANG Cong6c555492014-09-11 15:35:09 -07001033 ASSERT_RTNL();
1034
Pavel Emelianov7562f872007-05-03 15:13:45 -07001035 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001036 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001038 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
1040 }
1041 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001042 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
WANG Cong6c555492014-09-11 15:35:09 -07001044EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046/**
1047 * dev_valid_name - check if name is okay for network device
1048 * @name: name string
1049 *
1050 * Network device names need to be valid file names to
Randy Dunlap4250b752020-09-17 21:35:15 -07001051 * allow sysfs to work. We also disallow any kind of
David S. Millerc7fa9d12006-08-15 16:34:13 -07001052 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
David S. Miller95f050b2012-03-06 16:12:15 -05001054bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001056 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001057 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001058 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001059 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001060 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001061 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001062
1063 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001064 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001065 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001066 name++;
1067 }
David S. Miller95f050b2012-03-06 16:12:15 -05001068 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001070EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001073 * __dev_alloc_name - allocate a name for a device
1074 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001076 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 *
1078 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001079 * id. It scans list of devices to build up a free map, then chooses
1080 * the first empty slot. The caller must hold the dev_base or rtnl lock
1081 * while allocating the name and adding the device in order to avoid
1082 * duplicates.
1083 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1084 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 */
1086
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001087static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 const char *p;
1091 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001092 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct net_device *d;
1094
Rasmus Villemoes93809102017-11-13 00:15:08 +01001095 if (!dev_valid_name(name))
1096 return -EINVAL;
1097
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001098 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (p) {
1100 /*
1101 * Verify the string as this thing may have come from
1102 * the user. There must be either one "%d" and no other "%"
1103 * characters.
1104 */
1105 if (p[1] != 'd' || strchr(p + 2, '%'))
1106 return -EINVAL;
1107
1108 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001109 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (!inuse)
1111 return -ENOMEM;
1112
Eric W. Biederman881d9662007-09-17 11:56:21 -07001113 for_each_netdev(net, d) {
Jiri Bohac6c015a22021-03-18 04:42:53 +01001114 struct netdev_name_node *name_node;
1115 list_for_each_entry(name_node, &d->name_node->list, list) {
1116 if (!sscanf(name_node->name, name, &i))
1117 continue;
1118 if (i < 0 || i >= max_netdevices)
1119 continue;
1120
1121 /* avoid cases where sscanf is not exact inverse of printf */
1122 snprintf(buf, IFNAMSIZ, name, i);
1123 if (!strncmp(buf, name_node->name, IFNAMSIZ))
1124 set_bit(i, inuse);
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (!sscanf(d->name, name, &i))
1127 continue;
1128 if (i < 0 || i >= max_netdevices)
1129 continue;
1130
1131 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001132 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (!strncmp(buf, d->name, IFNAMSIZ))
1134 set_bit(i, inuse);
1135 }
1136
1137 i = find_first_zero_bit(inuse, max_netdevices);
1138 free_page((unsigned long) inuse);
1139 }
1140
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001141 snprintf(buf, IFNAMSIZ, name, i);
Antoine Tenart75ea27d2021-10-07 18:16:50 +02001142 if (!netdev_name_in_use(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 /* It is possible to run out of possible slots
1146 * when the name is long and there isn't enough space left
1147 * for the digits, or if all bits are used.
1148 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001149 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001152static int dev_alloc_name_ns(struct net *net,
1153 struct net_device *dev,
1154 const char *name)
1155{
1156 char buf[IFNAMSIZ];
1157 int ret;
1158
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001159 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001160 ret = __dev_alloc_name(net, name, buf);
1161 if (ret >= 0)
1162 strlcpy(dev->name, buf, IFNAMSIZ);
1163 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001166/**
1167 * dev_alloc_name - allocate a name for a device
1168 * @dev: device
1169 * @name: name format string
1170 *
1171 * Passed a format string - eg "lt%d" it will try and find a suitable
1172 * id. It scans list of devices to build up a free map, then chooses
1173 * the first empty slot. The caller must hold the dev_base or rtnl lock
1174 * while allocating the name and adding the device in order to avoid
1175 * duplicates.
1176 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1177 * Returns the number of the unit assigned or a negative errno code.
1178 */
1179
1180int dev_alloc_name(struct net_device *dev, const char *name)
1181{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001182 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001183}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001184EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001185
Eric Dumazetbacb7e12019-10-08 14:20:34 -07001186static int dev_get_valid_name(struct net *net, struct net_device *dev,
1187 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001188{
David S. Miller55a5ec92018-01-02 11:45:07 -05001189 BUG_ON(!net);
1190
1191 if (!dev_valid_name(name))
1192 return -EINVAL;
1193
1194 if (strchr(name, '%'))
1195 return dev_alloc_name_ns(net, dev, name);
Antoine Tenart75ea27d2021-10-07 18:16:50 +02001196 else if (netdev_name_in_use(net, name))
David S. Miller55a5ec92018-01-02 11:45:07 -05001197 return -EEXIST;
1198 else if (dev->name != name)
1199 strlcpy(dev->name, name, IFNAMSIZ);
1200
1201 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001202}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
1204/**
1205 * dev_change_name - change name of a device
1206 * @dev: device
1207 * @newname: name (or format string) must be at least IFNAMSIZ
1208 *
1209 * Change name of a device, can pass format strings "eth%d".
1210 * for wildcarding.
1211 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001212int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Tom Gundersen238fa362014-07-14 16:37:23 +02001214 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001215 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001217 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001218 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001221 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001223 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001224
1225 /* Some auto-enslaved devices e.g. failover slaves are
1226 * special, as userspace might rename the device after
1227 * the interface had been brought up and running since
1228 * the point kernel initiated auto-enslavement. Allow
1229 * live name change even when these slave devices are
1230 * up and running.
1231 *
1232 * Typically, users of these auto-enslaving devices
1233 * don't actually care about slave name change, as
1234 * they are supposed to operate on master interface
1235 * directly.
1236 */
1237 if (dev->flags & IFF_UP &&
1238 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return -EBUSY;
1240
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001241 down_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001242
1243 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001244 up_write(&devnet_rename_sem);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001245 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001246 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001247
Herbert Xufcc5a032007-07-30 17:03:38 -07001248 memcpy(oldname, dev->name, IFNAMSIZ);
1249
Gao feng828de4f2012-09-13 20:58:27 +00001250 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001251 if (err < 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001252 up_write(&devnet_rename_sem);
Octavian Purdilad9031022009-11-18 02:36:59 +00001253 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001256 if (oldname[0] && !strchr(oldname, '%'))
1257 netdev_info(dev, "renamed from %s\n", oldname);
1258
Tom Gundersen238fa362014-07-14 16:37:23 +02001259 old_assign_type = dev->name_assign_type;
1260 dev->name_assign_type = NET_NAME_RENAMED;
1261
Herbert Xufcc5a032007-07-30 17:03:38 -07001262rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001263 ret = device_rename(&dev->dev, dev->name);
1264 if (ret) {
1265 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001266 dev->name_assign_type = old_assign_type;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001267 up_write(&devnet_rename_sem);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001268 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001269 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001270
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001271 up_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001272
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001273 netdev_adjacent_rename_links(dev, oldname);
1274
Herbert Xu7f988ea2007-07-30 16:35:46 -07001275 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001276 netdev_name_node_del(dev->name_node);
Eric Dumazet72c95282009-10-30 07:11:27 +00001277 write_unlock_bh(&dev_base_lock);
1278
1279 synchronize_rcu();
1280
1281 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001282 netdev_name_node_add(net, dev->name_node);
Herbert Xu7f988ea2007-07-30 16:35:46 -07001283 write_unlock_bh(&dev_base_lock);
1284
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001285 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001286 ret = notifier_to_errno(ret);
1287
1288 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001289 /* err >= 0 after dev_alloc_name() or stores the first errno */
1290 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001291 err = ret;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001292 down_write(&devnet_rename_sem);
Herbert Xufcc5a032007-07-30 17:03:38 -07001293 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001294 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001295 dev->name_assign_type = old_assign_type;
1296 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001297 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001298 } else {
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07001299 netdev_err(dev, "name change rollback failed: %d\n",
1300 ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001301 }
1302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 return err;
1305}
1306
1307/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001308 * dev_set_alias - change ifalias of a device
1309 * @dev: device
1310 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001311 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001312 *
1313 * Set ifalias for a device,
1314 */
1315int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1316{
Florian Westphal6c557002017-10-02 23:50:05 +02001317 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001318
1319 if (len >= IFALIASZ)
1320 return -EINVAL;
1321
Florian Westphal6c557002017-10-02 23:50:05 +02001322 if (len) {
1323 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1324 if (!new_alias)
1325 return -ENOMEM;
1326
1327 memcpy(new_alias->ifalias, alias, len);
1328 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001329 }
1330
Florian Westphal6c557002017-10-02 23:50:05 +02001331 mutex_lock(&ifalias_mutex);
Paul E. McKenneye3f0d762019-09-23 15:42:28 -07001332 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1333 mutex_is_locked(&ifalias_mutex));
Florian Westphal6c557002017-10-02 23:50:05 +02001334 mutex_unlock(&ifalias_mutex);
1335
1336 if (new_alias)
1337 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001338
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001339 return len;
1340}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001341EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001342
Florian Westphal6c557002017-10-02 23:50:05 +02001343/**
1344 * dev_get_alias - get ifalias of a device
1345 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001346 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001347 * @len: size of buffer
1348 *
1349 * get ifalias for a device. Caller must make sure dev cannot go
1350 * away, e.g. rcu read lock or own a reference count to device.
1351 */
1352int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1353{
1354 const struct dev_ifalias *alias;
1355 int ret = 0;
1356
1357 rcu_read_lock();
1358 alias = rcu_dereference(dev->ifalias);
1359 if (alias)
1360 ret = snprintf(name, len, "%s", alias->ifalias);
1361 rcu_read_unlock();
1362
1363 return ret;
1364}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001365
1366/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001367 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001368 * @dev: device to cause notification
1369 *
1370 * Called to indicate a device has changed features.
1371 */
1372void netdev_features_change(struct net_device *dev)
1373{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001374 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001375}
1376EXPORT_SYMBOL(netdev_features_change);
1377
1378/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * netdev_state_change - device changes state
1380 * @dev: device to cause notification
1381 *
1382 * Called to indicate a device has changed state. This function calls
1383 * the notifier chains for netdev_chain and sends a NEWLINK message
1384 * to the routing socket.
1385 */
1386void netdev_state_change(struct net_device *dev)
1387{
1388 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001389 struct netdev_notifier_change_info change_info = {
1390 .info.dev = dev,
1391 };
Loic Prylli54951192014-07-01 21:39:43 -07001392
David Ahern51d0c0472017-10-04 17:48:45 -07001393 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001394 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001395 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001398EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Amerigo Wangee89bab2012-08-09 22:14:56 +00001400/**
Lijun Pan7061eb82020-12-14 15:19:28 -06001401 * __netdev_notify_peers - notify network peers about existence of @dev,
1402 * to be called when rtnl lock is already held.
1403 * @dev: network device
1404 *
1405 * Generate traffic such that interested network peers are aware of
1406 * @dev, such as by generating a gratuitous ARP. This may be used when
1407 * a device wants to inform the rest of the network about some sort of
1408 * reconfiguration such as a failover event or virtual machine
1409 * migration.
1410 */
1411void __netdev_notify_peers(struct net_device *dev)
1412{
1413 ASSERT_RTNL();
1414 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1415 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
1416}
1417EXPORT_SYMBOL(__netdev_notify_peers);
1418
1419/**
tcharding722c9a02017-02-09 17:56:04 +11001420 * netdev_notify_peers - notify network peers about existence of @dev
1421 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001422 *
1423 * Generate traffic such that interested network peers are aware of
1424 * @dev, such as by generating a gratuitous ARP. This may be used when
1425 * a device wants to inform the rest of the network about some sort of
1426 * reconfiguration such as a failover event or virtual machine
1427 * migration.
1428 */
1429void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001430{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001431 rtnl_lock();
Lijun Pan7061eb82020-12-14 15:19:28 -06001432 __netdev_notify_peers(dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001433 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001434}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001435EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001436
Wei Wang29863d42021-02-08 11:34:09 -08001437static int napi_threaded_poll(void *data);
1438
1439static int napi_kthread_create(struct napi_struct *n)
1440{
1441 int err = 0;
1442
1443 /* Create and wake up the kthread once to put it in
1444 * TASK_INTERRUPTIBLE mode to avoid the blocked task
1445 * warning and work with loadavg.
1446 */
1447 n->thread = kthread_run(napi_threaded_poll, n, "napi/%s-%d",
1448 n->dev->name, n->napi_id);
1449 if (IS_ERR(n->thread)) {
1450 err = PTR_ERR(n->thread);
1451 pr_err("kthread_run failed with err %d\n", err);
1452 n->thread = NULL;
1453 }
1454
1455 return err;
1456}
1457
Petr Machata40c900a2018-12-06 17:05:47 +00001458static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001460 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001461 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001463 ASSERT_RTNL();
1464
Heiner Kallweitbd869242020-06-20 22:35:42 +02001465 if (!netif_device_present(dev)) {
1466 /* may be detached because parent is runtime-suspended */
1467 if (dev->dev.parent)
1468 pm_runtime_resume(dev->dev.parent);
1469 if (!netif_device_present(dev))
1470 return -ENODEV;
1471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Neil Hormanca99ca12013-02-05 08:05:43 +00001473 /* Block netpoll from trying to do any rx path servicing.
1474 * If we don't do this there is a chance ndo_poll_controller
1475 * or ndo_poll may be running while we open the device
1476 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001477 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001478
Petr Machata40c900a2018-12-06 17:05:47 +00001479 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001480 ret = notifier_to_errno(ret);
1481 if (ret)
1482 return ret;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001485
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001486 if (ops->ndo_validate_addr)
1487 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001488
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001489 if (!ret && ops->ndo_open)
1490 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Eric W. Biederman66b55522014-03-27 15:39:03 -07001492 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001493
Jeff Garzikbada3392007-10-23 20:19:37 -07001494 if (ret)
1495 clear_bit(__LINK_STATE_START, &dev->state);
1496 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001498 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001500 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return ret;
1504}
Patrick McHardybd380812010-02-26 06:34:53 +00001505
1506/**
1507 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001508 * @dev: device to open
1509 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001510 *
1511 * Takes a device from down to up state. The device's private open
1512 * function is invoked and then the multicast lists are loaded. Finally
1513 * the device is moved into the up state and a %NETDEV_UP message is
1514 * sent to the netdev notifier chain.
1515 *
1516 * Calling this function on an active interface is a nop. On a failure
1517 * a negative errno code is returned.
1518 */
Petr Machata00f54e62018-12-06 17:05:36 +00001519int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001520{
1521 int ret;
1522
Patrick McHardybd380812010-02-26 06:34:53 +00001523 if (dev->flags & IFF_UP)
1524 return 0;
1525
Petr Machata40c900a2018-12-06 17:05:47 +00001526 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001527 if (ret < 0)
1528 return ret;
1529
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001530 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001531 call_netdevice_notifiers(NETDEV_UP, dev);
1532
1533 return ret;
1534}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001535EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
stephen hemminger7051b882017-07-18 15:59:27 -07001537static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Octavian Purdila44345722010-12-13 12:44:07 +00001539 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001540
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001541 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001542 might_sleep();
1543
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001544 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001545 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001546 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001547
Octavian Purdila44345722010-12-13 12:44:07 +00001548 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Octavian Purdila44345722010-12-13 12:44:07 +00001550 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Octavian Purdila44345722010-12-13 12:44:07 +00001552 /* Synchronize to scheduled poll. We cannot touch poll list, it
1553 * can be even on different cpu. So just clear netif_running().
1554 *
1555 * dev->stop() will invoke napi_disable() on all of it's
1556 * napi_struct instances on this device.
1557 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001558 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Octavian Purdila44345722010-12-13 12:44:07 +00001561 dev_deactivate_many(head);
1562
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001563 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001564 const struct net_device_ops *ops = dev->netdev_ops;
1565
1566 /*
1567 * Call the device specific close. This cannot fail.
1568 * Only if device is UP
1569 *
1570 * We allow it to be called even after a DETACH hot-plug
1571 * event.
1572 */
1573 if (ops->ndo_stop)
1574 ops->ndo_stop(dev);
1575
Octavian Purdila44345722010-12-13 12:44:07 +00001576 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001577 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001578 }
Octavian Purdila44345722010-12-13 12:44:07 +00001579}
1580
stephen hemminger7051b882017-07-18 15:59:27 -07001581static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001582{
1583 LIST_HEAD(single);
1584
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001585 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001586 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001587 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001588}
1589
stephen hemminger7051b882017-07-18 15:59:27 -07001590void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001591{
1592 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001593
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001594 /* Remove the devices that don't need to be closed */
1595 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001596 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001597 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001598
1599 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001600
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001601 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001602 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001603 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001604 if (unlink)
1605 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
David S. Miller99c4a262015-03-18 22:52:33 -04001608EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001609
1610/**
1611 * dev_close - shutdown an interface.
1612 * @dev: device to shutdown
1613 *
1614 * This function moves an active device into down state. A
1615 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1616 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1617 * chain.
1618 */
stephen hemminger7051b882017-07-18 15:59:27 -07001619void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001620{
Eric Dumazete14a5992011-05-10 12:26:06 -07001621 if (dev->flags & IFF_UP) {
1622 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001623
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001624 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001625 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001626 list_del(&single);
1627 }
Patrick McHardybd380812010-02-26 06:34:53 +00001628}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001629EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001632/**
1633 * dev_disable_lro - disable Large Receive Offload on a device
1634 * @dev: device
1635 *
1636 * Disable Large Receive Offload (LRO) on a net device. Must be
1637 * called under RTNL. This is needed if received packets may be
1638 * forwarded to another interface.
1639 */
1640void dev_disable_lro(struct net_device *dev)
1641{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001642 struct net_device *lower_dev;
1643 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001644
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001645 dev->wanted_features &= ~NETIF_F_LRO;
1646 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001647
Michał Mirosław22d59692011-04-21 12:42:15 +00001648 if (unlikely(dev->features & NETIF_F_LRO))
1649 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001650
1651 netdev_for_each_lower_dev(dev, lower_dev, iter)
1652 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001653}
1654EXPORT_SYMBOL(dev_disable_lro);
1655
Michael Chan56f5aa72017-12-16 03:09:41 -05001656/**
1657 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1658 * @dev: device
1659 *
1660 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1661 * called under RTNL. This is needed if Generic XDP is installed on
1662 * the device.
1663 */
1664static void dev_disable_gro_hw(struct net_device *dev)
1665{
1666 dev->wanted_features &= ~NETIF_F_GRO_HW;
1667 netdev_update_features(dev);
1668
1669 if (unlikely(dev->features & NETIF_F_GRO_HW))
1670 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1671}
1672
Kirill Tkhaiede27622018-03-23 19:47:19 +03001673const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1674{
1675#define N(val) \
1676 case NETDEV_##val: \
1677 return "NETDEV_" __stringify(val);
1678 switch (cmd) {
1679 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1680 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1681 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1682 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1683 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1684 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1685 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001686 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1687 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001688 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001689 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001690#undef N
1691 return "UNKNOWN_NETDEV_EVENT";
1692}
1693EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1694
Jiri Pirko351638e2013-05-28 01:30:21 +00001695static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1696 struct net_device *dev)
1697{
David Ahern51d0c0472017-10-04 17:48:45 -07001698 struct netdev_notifier_info info = {
1699 .dev = dev,
1700 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001701
Jiri Pirko351638e2013-05-28 01:30:21 +00001702 return nb->notifier_call(nb, val, &info);
1703}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001704
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001705static int call_netdevice_register_notifiers(struct notifier_block *nb,
1706 struct net_device *dev)
1707{
1708 int err;
1709
1710 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1711 err = notifier_to_errno(err);
1712 if (err)
1713 return err;
1714
1715 if (!(dev->flags & IFF_UP))
1716 return 0;
1717
1718 call_netdevice_notifier(nb, NETDEV_UP, dev);
1719 return 0;
1720}
1721
1722static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1723 struct net_device *dev)
1724{
1725 if (dev->flags & IFF_UP) {
1726 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1727 dev);
1728 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1729 }
1730 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1731}
1732
1733static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1734 struct net *net)
1735{
1736 struct net_device *dev;
1737 int err;
1738
1739 for_each_netdev(net, dev) {
1740 err = call_netdevice_register_notifiers(nb, dev);
1741 if (err)
1742 goto rollback;
1743 }
1744 return 0;
1745
1746rollback:
1747 for_each_netdev_continue_reverse(net, dev)
1748 call_netdevice_unregister_notifiers(nb, dev);
1749 return err;
1750}
1751
1752static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1753 struct net *net)
1754{
1755 struct net_device *dev;
1756
1757 for_each_netdev(net, dev)
1758 call_netdevice_unregister_notifiers(nb, dev);
1759}
1760
Eric W. Biederman881d9662007-09-17 11:56:21 -07001761static int dev_boot_phase = 1;
1762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763/**
tcharding722c9a02017-02-09 17:56:04 +11001764 * register_netdevice_notifier - register a network notifier block
1765 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 *
tcharding722c9a02017-02-09 17:56:04 +11001767 * Register a notifier to be called when network device events occur.
1768 * The notifier passed is linked into the kernel structures and must
1769 * not be reused until it has been unregistered. A negative errno code
1770 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 *
tcharding722c9a02017-02-09 17:56:04 +11001772 * When registered all registration and up events are replayed
1773 * to the new notifier to allow device to have a race free
1774 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 */
1776
1777int register_netdevice_notifier(struct notifier_block *nb)
1778{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001779 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 int err;
1781
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001782 /* Close race with setup_net() and cleanup_net() */
1783 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001785 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001786 if (err)
1787 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001788 if (dev_boot_phase)
1789 goto unlock;
1790 for_each_net(net) {
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001791 err = call_netdevice_register_net_notifiers(nb, net);
1792 if (err)
1793 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001795
1796unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001798 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001800
1801rollback:
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001802 for_each_net_continue_reverse(net)
1803 call_netdevice_unregister_net_notifiers(nb, net);
Herbert Xufcc5a032007-07-30 17:03:38 -07001804
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001805 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001806 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001808EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
1810/**
tcharding722c9a02017-02-09 17:56:04 +11001811 * unregister_netdevice_notifier - unregister a network notifier block
1812 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 *
tcharding722c9a02017-02-09 17:56:04 +11001814 * Unregister a notifier previously registered by
1815 * register_netdevice_notifier(). The notifier is unlinked into the
1816 * kernel structures and may then be reused. A negative errno code
1817 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001818 *
tcharding722c9a02017-02-09 17:56:04 +11001819 * After unregistering unregister and down device events are synthesized
1820 * for all devices on the device list to the removed notifier to remove
1821 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 */
1823
1824int unregister_netdevice_notifier(struct notifier_block *nb)
1825{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001826 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001827 int err;
1828
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001829 /* Close race with setup_net() and cleanup_net() */
1830 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001831 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001832 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001833 if (err)
1834 goto unlock;
1835
Jiri Pirko48b3a132020-01-25 12:17:06 +01001836 for_each_net(net)
1837 call_netdevice_unregister_net_notifiers(nb, net);
1838
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001839unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001840 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001841 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001842 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001844EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Jiri Pirko1f637702020-01-25 12:17:07 +01001846static int __register_netdevice_notifier_net(struct net *net,
1847 struct notifier_block *nb,
1848 bool ignore_call_fail)
1849{
1850 int err;
1851
1852 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1853 if (err)
1854 return err;
1855 if (dev_boot_phase)
1856 return 0;
1857
1858 err = call_netdevice_register_net_notifiers(nb, net);
1859 if (err && !ignore_call_fail)
1860 goto chain_unregister;
1861
1862 return 0;
1863
1864chain_unregister:
1865 raw_notifier_chain_unregister(&net->netdev_chain, nb);
1866 return err;
1867}
1868
1869static int __unregister_netdevice_notifier_net(struct net *net,
1870 struct notifier_block *nb)
1871{
1872 int err;
1873
1874 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1875 if (err)
1876 return err;
1877
1878 call_netdevice_unregister_net_notifiers(nb, net);
1879 return 0;
1880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882/**
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001883 * register_netdevice_notifier_net - register a per-netns network notifier block
1884 * @net: network namespace
1885 * @nb: notifier
1886 *
1887 * Register a notifier to be called when network device events occur.
1888 * The notifier passed is linked into the kernel structures and must
1889 * not be reused until it has been unregistered. A negative errno code
1890 * is returned on a failure.
1891 *
1892 * When registered all registration and up events are replayed
1893 * to the new notifier to allow device to have a race free
1894 * view of the network device list.
1895 */
1896
1897int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
1898{
1899 int err;
1900
1901 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001902 err = __register_netdevice_notifier_net(net, nb, false);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001903 rtnl_unlock();
1904 return err;
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001905}
1906EXPORT_SYMBOL(register_netdevice_notifier_net);
1907
1908/**
1909 * unregister_netdevice_notifier_net - unregister a per-netns
1910 * network notifier block
1911 * @net: network namespace
1912 * @nb: notifier
1913 *
1914 * Unregister a notifier previously registered by
1915 * register_netdevice_notifier(). The notifier is unlinked into the
1916 * kernel structures and may then be reused. A negative errno code
1917 * is returned on a failure.
1918 *
1919 * After unregistering unregister and down device events are synthesized
1920 * for all devices on the device list to the removed notifier to remove
1921 * the need for special case cleanup code.
1922 */
1923
1924int unregister_netdevice_notifier_net(struct net *net,
1925 struct notifier_block *nb)
1926{
1927 int err;
1928
1929 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001930 err = __unregister_netdevice_notifier_net(net, nb);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001931 rtnl_unlock();
1932 return err;
1933}
1934EXPORT_SYMBOL(unregister_netdevice_notifier_net);
1935
Jiri Pirko93642e12020-01-25 12:17:08 +01001936int register_netdevice_notifier_dev_net(struct net_device *dev,
1937 struct notifier_block *nb,
1938 struct netdev_net_notifier *nn)
1939{
1940 int err;
1941
1942 rtnl_lock();
1943 err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
1944 if (!err) {
1945 nn->nb = nb;
1946 list_add(&nn->list, &dev->net_notifier_list);
1947 }
1948 rtnl_unlock();
1949 return err;
1950}
1951EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
1952
1953int unregister_netdevice_notifier_dev_net(struct net_device *dev,
1954 struct notifier_block *nb,
1955 struct netdev_net_notifier *nn)
1956{
1957 int err;
1958
1959 rtnl_lock();
1960 list_del(&nn->list);
1961 err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
1962 rtnl_unlock();
1963 return err;
1964}
1965EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
1966
1967static void move_netdevice_notifiers_dev_net(struct net_device *dev,
1968 struct net *net)
1969{
1970 struct netdev_net_notifier *nn;
1971
1972 list_for_each_entry(nn, &dev->net_notifier_list, list) {
1973 __unregister_netdevice_notifier_net(dev_net(dev), nn->nb);
1974 __register_netdevice_notifier_net(net, nn->nb, true);
1975 }
1976}
1977
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001978/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001979 * call_netdevice_notifiers_info - call all network notifier blocks
1980 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00001981 * @info: notifier information data
1982 *
1983 * Call all network notifier blocks. Parameters and return value
1984 * are as for raw_notifier_call_chain().
1985 */
1986
stephen hemminger1d143d92013-12-29 14:01:29 -08001987static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08001988 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001989{
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001990 struct net *net = dev_net(info->dev);
1991 int ret;
1992
Jiri Pirko351638e2013-05-28 01:30:21 +00001993 ASSERT_RTNL();
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001994
1995 /* Run per-netns notifier block chain first, then run the global one.
1996 * Hopefully, one day, the global one is going to be removed after
1997 * all notifier block registrators get converted to be per-netns.
1998 */
1999 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2000 if (ret & NOTIFY_STOP_MASK)
2001 return ret;
Jiri Pirko351638e2013-05-28 01:30:21 +00002002 return raw_notifier_call_chain(&netdev_chain, val, info);
2003}
Jiri Pirko351638e2013-05-28 01:30:21 +00002004
Petr Machata26372602018-12-06 17:05:45 +00002005static int call_netdevice_notifiers_extack(unsigned long val,
2006 struct net_device *dev,
2007 struct netlink_ext_ack *extack)
2008{
2009 struct netdev_notifier_info info = {
2010 .dev = dev,
2011 .extack = extack,
2012 };
2013
2014 return call_netdevice_notifiers_info(val, &info);
2015}
2016
Jiri Pirko351638e2013-05-28 01:30:21 +00002017/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 * call_netdevice_notifiers - call all network notifier blocks
2019 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002020 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 *
2022 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07002023 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
2025
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07002026int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Petr Machata26372602018-12-06 17:05:45 +00002028 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
stephen hemmingeredf947f2011-03-24 13:24:01 +00002030EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02002032/**
2033 * call_netdevice_notifiers_mtu - call all network notifier blocks
2034 * @val: value passed unmodified to notifier function
2035 * @dev: net_device pointer passed unmodified to notifier function
2036 * @arg: additional u32 argument passed to the notifier function
2037 *
2038 * Call all network notifier blocks. Parameters and return value
2039 * are as for raw_notifier_call_chain().
2040 */
2041static int call_netdevice_notifiers_mtu(unsigned long val,
2042 struct net_device *dev, u32 arg)
2043{
2044 struct netdev_notifier_info_ext info = {
2045 .info.dev = dev,
2046 .ext.mtu = arg,
2047 };
2048
2049 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2050
2051 return call_netdevice_notifiers_info(val, &info.info);
2052}
2053
Pablo Neira1cf519002015-05-13 18:19:37 +02002054#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002055static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002056
2057void net_inc_ingress_queue(void)
2058{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002059 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002060}
2061EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2062
2063void net_dec_ingress_queue(void)
2064{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002065 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002066}
2067EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2068#endif
2069
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002070#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002071static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002072
2073void net_inc_egress_queue(void)
2074{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002075 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002076}
2077EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2078
2079void net_dec_egress_queue(void)
2080{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002081 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002082}
2083EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2084#endif
2085
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002086static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002087#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00002088static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08002089static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002090static void netstamp_clear(struct work_struct *work)
2091{
2092 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08002093 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002094
Eric Dumazet13baa002017-03-01 14:28:39 -08002095 wanted = atomic_add_return(deferred, &netstamp_wanted);
2096 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002097 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002098 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002099 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002100}
2101static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00002102#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104void net_enable_timestamp(void)
2105{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002106#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002107 int wanted;
2108
2109 while (1) {
2110 wanted = atomic_read(&netstamp_wanted);
2111 if (wanted <= 0)
2112 break;
2113 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2114 return;
2115 }
2116 atomic_inc(&netstamp_needed_deferred);
2117 schedule_work(&netstamp_work);
2118#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002119 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002120#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002122EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
2124void net_disable_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 <= 1)
2132 break;
2133 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2134 return;
2135 }
2136 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002137 schedule_work(&netstamp_work);
2138#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002139 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002140#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002142EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Eric Dumazet3b098e22010-05-15 23:57:10 -07002144static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Thomas Gleixner2456e852016-12-25 11:38:40 +01002146 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002147 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002148 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002151#define net_timestamp_check(COND, SKB) \
2152 if (static_branch_unlikely(&netstamp_needed_key)) { \
2153 if ((COND) && !(SKB)->tstamp) \
2154 __net_timestamp(SKB); \
2155 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07002156
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02002157bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002158{
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002159 return __is_skb_forwardable(dev, skb, true);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002160}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04002161EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002162
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002163static int __dev_forward_skb2(struct net_device *dev, struct sk_buff *skb,
2164 bool check_mtu)
Herbert Xua0265d22014-04-17 13:45:03 +08002165{
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002166 int ret = ____dev_forward_skb(dev, skb, check_mtu);
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002167
2168 if (likely(!ret)) {
2169 skb->protocol = eth_type_trans(skb, dev);
2170 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08002171 }
2172
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002173 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08002174}
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002175
2176int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2177{
2178 return __dev_forward_skb2(dev, skb, true);
2179}
Herbert Xua0265d22014-04-17 13:45:03 +08002180EXPORT_SYMBOL_GPL(__dev_forward_skb);
2181
Arnd Bergmann44540962009-11-26 06:07:08 +00002182/**
2183 * dev_forward_skb - loopback an skb to another netif
2184 *
2185 * @dev: destination network device
2186 * @skb: buffer to forward
2187 *
2188 * return values:
2189 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07002190 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00002191 *
2192 * dev_forward_skb can be used for injecting an skb from the
2193 * start_xmit function of one device into the receive queue
2194 * of another device.
2195 *
2196 * The receiving device may be in another namespace, so
2197 * we have to clear all information in the skb that could
2198 * impact namespace isolation.
2199 */
2200int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2201{
Herbert Xua0265d22014-04-17 13:45:03 +08002202 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00002203}
2204EXPORT_SYMBOL_GPL(dev_forward_skb);
2205
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002206int dev_forward_skb_nomtu(struct net_device *dev, struct sk_buff *skb)
2207{
2208 return __dev_forward_skb2(dev, skb, false) ?: netif_rx_internal(skb);
2209}
2210
Changli Gao71d9dec2010-12-15 19:57:25 +00002211static inline int deliver_skb(struct sk_buff *skb,
2212 struct packet_type *pt_prev,
2213 struct net_device *orig_dev)
2214{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04002215 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00002216 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03002217 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00002218 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2219}
2220
Salam Noureddine7866a622015-01-27 11:35:48 -08002221static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2222 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002223 struct net_device *orig_dev,
2224 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08002225 struct list_head *ptype_list)
2226{
2227 struct packet_type *ptype, *pt_prev = *pt;
2228
2229 list_for_each_entry_rcu(ptype, ptype_list, list) {
2230 if (ptype->type != type)
2231 continue;
2232 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002233 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08002234 pt_prev = ptype;
2235 }
2236 *pt = pt_prev;
2237}
2238
Eric Leblondc0de08d2012-08-16 22:02:58 +00002239static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2240{
Eric Leblonda3d744e2012-11-06 02:10:10 +00002241 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00002242 return false;
2243
2244 if (ptype->id_match)
2245 return ptype->id_match(ptype, skb->sk);
2246 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2247 return true;
2248
2249 return false;
2250}
2251
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002252/**
2253 * dev_nit_active - return true if any network interface taps are in use
2254 *
2255 * @dev: network device to check for the presence of taps
2256 */
2257bool dev_nit_active(struct net_device *dev)
2258{
2259 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2260}
2261EXPORT_SYMBOL_GPL(dev_nit_active);
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263/*
2264 * Support routine. Sends outgoing frames to any network
2265 * taps currently in use.
2266 */
2267
David Ahern74b20582016-05-10 11:19:50 -07002268void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002271 struct sk_buff *skb2 = NULL;
2272 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002273 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002276again:
2277 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002278 if (ptype->ignore_outgoing)
2279 continue;
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 /* Never send packets back to the socket
2282 * they originated from - MvS (miquels@drinkel.ow.org)
2283 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002284 if (skb_loop_sk(ptype, skb))
2285 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002286
Salam Noureddine7866a622015-01-27 11:35:48 -08002287 if (pt_prev) {
2288 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002289 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002290 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002292
2293 /* need to clone skb, done only once */
2294 skb2 = skb_clone(skb, GFP_ATOMIC);
2295 if (!skb2)
2296 goto out_unlock;
2297
2298 net_timestamp_set(skb2);
2299
2300 /* skb->nh should be correctly
2301 * set by sender, so that the second statement is
2302 * just protection against buggy protocols.
2303 */
2304 skb_reset_mac_header(skb2);
2305
2306 if (skb_network_header(skb2) < skb2->data ||
2307 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2308 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2309 ntohs(skb2->protocol),
2310 dev->name);
2311 skb_reset_network_header(skb2);
2312 }
2313
2314 skb2->transport_header = skb2->network_header;
2315 skb2->pkt_type = PACKET_OUTGOING;
2316 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002318
2319 if (ptype_list == &ptype_all) {
2320 ptype_list = &dev->ptype_all;
2321 goto again;
2322 }
2323out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002324 if (pt_prev) {
2325 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2326 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2327 else
2328 kfree_skb(skb2);
2329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 rcu_read_unlock();
2331}
David Ahern74b20582016-05-10 11:19:50 -07002332EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Ben Hutchings2c530402012-07-10 10:55:09 +00002334/**
2335 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002336 * @dev: Network device
2337 * @txq: number of queues available
2338 *
2339 * If real_num_tx_queues is changed the tc mappings may no longer be
2340 * valid. To resolve this verify the tc mapping remains valid and if
2341 * not NULL the mapping. With no priorities mapping to this
2342 * offset/count pair it will no longer be used. In the worst case TC0
2343 * is invalid nothing can be done so disable priority mappings. If is
2344 * expected that drivers will fix this mapping if they can before
2345 * calling netif_set_real_num_tx_queues.
2346 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002347static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002348{
2349 int i;
2350 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2351
2352 /* If TC0 is invalidated disable TC mapping */
2353 if (tc->offset + tc->count > txq) {
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07002354 netdev_warn(dev, "Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002355 dev->num_tc = 0;
2356 return;
2357 }
2358
2359 /* Invalidated prio to tc mappings set to TC0 */
2360 for (i = 1; i < TC_BITMASK + 1; i++) {
2361 int q = netdev_get_prio_tc_map(dev, i);
2362
2363 tc = &dev->tc_to_txq[q];
2364 if (tc->offset + tc->count > txq) {
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07002365 netdev_warn(dev, "Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2366 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002367 netdev_set_prio_tc_map(dev, i, 0);
2368 }
2369 }
2370}
2371
Alexander Duyck8d059b02016-10-28 11:43:49 -04002372int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2373{
2374 if (dev->num_tc) {
2375 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2376 int i;
2377
Alexander Duyckffcfe252018-07-09 12:19:38 -04002378 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002379 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2380 if ((txq - tc->offset) < tc->count)
2381 return i;
2382 }
2383
Alexander Duyckffcfe252018-07-09 12:19:38 -04002384 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002385 return -1;
2386 }
2387
2388 return 0;
2389}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002390EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002391
Alexander Duyck537c00d2013-01-10 08:57:02 +00002392#ifdef CONFIG_XPS
Vladimir Oltean5da9ace32021-03-22 13:30:19 +02002393static struct static_key xps_needed __read_mostly;
2394static struct static_key xps_rxqs_needed __read_mostly;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002395static DEFINE_MUTEX(xps_map_mutex);
2396#define xmap_dereference(P) \
2397 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2398
Alexander Duyck6234f872016-10-28 11:46:49 -04002399static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002400 struct xps_dev_maps *old_maps, int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002401{
2402 struct xps_map *map = NULL;
2403 int pos;
2404
2405 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002406 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002407 if (!map)
2408 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002409
Alexander Duyck6234f872016-10-28 11:46:49 -04002410 for (pos = map->len; pos--;) {
2411 if (map->queues[pos] != index)
2412 continue;
2413
2414 if (map->len > 1) {
2415 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002416 break;
2417 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002418
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002419 if (old_maps)
2420 RCU_INIT_POINTER(old_maps->attr_map[tci], NULL);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002421 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002422 kfree_rcu(map, rcu);
2423 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002424 }
2425
Alexander Duyck6234f872016-10-28 11:46:49 -04002426 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002427}
2428
Alexander Duyck6234f872016-10-28 11:46:49 -04002429static bool remove_xps_queue_cpu(struct net_device *dev,
2430 struct xps_dev_maps *dev_maps,
2431 int cpu, u16 offset, u16 count)
2432{
Antoine Tenart255c04a2021-03-18 19:37:43 +01002433 int num_tc = dev_maps->num_tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002434 bool active = false;
2435 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002436
Alexander Duyck184c4492016-10-28 11:50:13 -04002437 for (tci = cpu * num_tc; num_tc--; tci++) {
2438 int i, j;
2439
2440 for (i = count, j = offset; i--; j++) {
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002441 if (!remove_xps_queue(dev_maps, NULL, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002442 break;
2443 }
2444
2445 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002446 }
2447
Alexander Duyck184c4492016-10-28 11:50:13 -04002448 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002449}
2450
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002451static void reset_xps_maps(struct net_device *dev,
2452 struct xps_dev_maps *dev_maps,
Antoine Tenart044ab862021-03-18 19:37:46 +01002453 enum xps_map_type type)
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002454{
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002455 static_key_slow_dec_cpuslocked(&xps_needed);
Antoine Tenart044ab862021-03-18 19:37:46 +01002456 if (type == XPS_RXQS)
2457 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2458
2459 RCU_INIT_POINTER(dev->xps_maps[type], NULL);
2460
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002461 kfree_rcu(dev_maps, rcu);
2462}
2463
Antoine Tenart044ab862021-03-18 19:37:46 +01002464static void clean_xps_maps(struct net_device *dev, enum xps_map_type type,
2465 u16 offset, u16 count)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002466{
Antoine Tenart044ab862021-03-18 19:37:46 +01002467 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002468 bool active = false;
2469 int i, j;
2470
Antoine Tenart044ab862021-03-18 19:37:46 +01002471 dev_maps = xmap_dereference(dev->xps_maps[type]);
2472 if (!dev_maps)
2473 return;
2474
Antoine Tenart6f361582021-03-18 19:37:45 +01002475 for (j = 0; j < dev_maps->nr_ids; j++)
2476 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset, count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002477 if (!active)
Antoine Tenart044ab862021-03-18 19:37:46 +01002478 reset_xps_maps(dev, dev_maps, type);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002479
Antoine Tenart044ab862021-03-18 19:37:46 +01002480 if (type == XPS_CPUS) {
Antoine Tenart6f361582021-03-18 19:37:45 +01002481 for (i = offset + (count - 1); count--; i--)
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002482 netdev_queue_numa_node_write(
Antoine Tenart6f361582021-03-18 19:37:45 +01002483 netdev_get_tx_queue(dev, i), NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002484 }
2485}
2486
Alexander Duyck6234f872016-10-28 11:46:49 -04002487static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2488 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002489{
Amritha Nambiar04157462018-06-29 21:26:46 -07002490 if (!static_key_false(&xps_needed))
2491 return;
2492
Andrei Vagin4d99f662018-08-08 20:07:35 -07002493 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002494 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002495
Antoine Tenart044ab862021-03-18 19:37:46 +01002496 if (static_key_false(&xps_rxqs_needed))
2497 clean_xps_maps(dev, XPS_RXQS, offset, count);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002498
Antoine Tenart044ab862021-03-18 19:37:46 +01002499 clean_xps_maps(dev, XPS_CPUS, offset, count);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002500
Alexander Duyck537c00d2013-01-10 08:57:02 +00002501 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002502 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002503}
2504
Alexander Duyck6234f872016-10-28 11:46:49 -04002505static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2506{
2507 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2508}
2509
Amritha Nambiar80d19662018-06-29 21:26:41 -07002510static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2511 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002512{
2513 struct xps_map *new_map;
2514 int alloc_len = XPS_MIN_MAP_ALLOC;
2515 int i, pos;
2516
2517 for (pos = 0; map && pos < map->len; pos++) {
2518 if (map->queues[pos] != index)
2519 continue;
2520 return map;
2521 }
2522
Amritha Nambiar80d19662018-06-29 21:26:41 -07002523 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002524 if (map) {
2525 if (pos < map->alloc_len)
2526 return map;
2527
2528 alloc_len = map->alloc_len * 2;
2529 }
2530
Amritha Nambiar80d19662018-06-29 21:26:41 -07002531 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2532 * map
2533 */
2534 if (is_rxqs_map)
2535 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2536 else
2537 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2538 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002539 if (!new_map)
2540 return NULL;
2541
2542 for (i = 0; i < pos; i++)
2543 new_map->queues[i] = map->queues[i];
2544 new_map->alloc_len = alloc_len;
2545 new_map->len = pos;
2546
2547 return new_map;
2548}
2549
Antoine Tenart402fbb92021-03-18 19:37:47 +01002550/* Copy xps maps at a given index */
2551static void xps_copy_dev_maps(struct xps_dev_maps *dev_maps,
2552 struct xps_dev_maps *new_dev_maps, int index,
2553 int tc, bool skip_tc)
2554{
2555 int i, tci = index * dev_maps->num_tc;
2556 struct xps_map *map;
2557
2558 /* copy maps belonging to foreign traffic classes */
2559 for (i = 0; i < dev_maps->num_tc; i++, tci++) {
2560 if (i == tc && skip_tc)
2561 continue;
2562
2563 /* fill in the new device map from the old device map */
2564 map = xmap_dereference(dev_maps->attr_map[tci]);
2565 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
2566 }
2567}
2568
Andrei Vagin4d99f662018-08-08 20:07:35 -07002569/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002570int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
Antoine Tenart044ab862021-03-18 19:37:46 +01002571 u16 index, enum xps_map_type type)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002572{
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002573 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL, *old_dev_maps = NULL;
Antoine Tenart6f361582021-03-18 19:37:45 +01002574 const unsigned long *online_mask = NULL;
Antoine Tenart255c04a2021-03-18 19:37:43 +01002575 bool active = false, copy = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002576 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002577 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002578 struct xps_map *map, *new_map;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002579 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002580
Alexander Duyck184c4492016-10-28 11:50:13 -04002581 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002582 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002583 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002584 if (num_tc < 0)
2585 return -EINVAL;
2586
2587 /* If queue belongs to subordinate dev use its map */
2588 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2589
Alexander Duyck184c4492016-10-28 11:50:13 -04002590 tc = netdev_txq_to_tc(dev, index);
2591 if (tc < 0)
2592 return -EINVAL;
2593 }
2594
Amritha Nambiar80d19662018-06-29 21:26:41 -07002595 mutex_lock(&xps_map_mutex);
Antoine Tenart044ab862021-03-18 19:37:46 +01002596
2597 dev_maps = xmap_dereference(dev->xps_maps[type]);
2598 if (type == XPS_RXQS) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002599 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002600 nr_ids = dev->num_rx_queues;
2601 } else {
2602 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
Antoine Tenart6f361582021-03-18 19:37:45 +01002603 if (num_possible_cpus() > 1)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002604 online_mask = cpumask_bits(cpu_online_mask);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002605 nr_ids = nr_cpu_ids;
2606 }
2607
Alexander Duyck184c4492016-10-28 11:50:13 -04002608 if (maps_sz < L1_CACHE_BYTES)
2609 maps_sz = L1_CACHE_BYTES;
2610
Antoine Tenart255c04a2021-03-18 19:37:43 +01002611 /* The old dev_maps could be larger or smaller than the one we're
Antoine Tenart5478fcd2021-03-18 19:37:44 +01002612 * setting up now, as dev->num_tc or nr_ids could have been updated in
2613 * between. We could try to be smart, but let's be safe instead and only
2614 * copy foreign traffic classes if the two map sizes match.
Antoine Tenart255c04a2021-03-18 19:37:43 +01002615 */
Antoine Tenart5478fcd2021-03-18 19:37:44 +01002616 if (dev_maps &&
2617 dev_maps->num_tc == num_tc && dev_maps->nr_ids == nr_ids)
Antoine Tenart255c04a2021-03-18 19:37:43 +01002618 copy = true;
2619
Alexander Duyck01c5f862013-01-10 08:57:35 +00002620 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002621 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2622 j < nr_ids;) {
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002623 if (!new_dev_maps) {
Antoine Tenart255c04a2021-03-18 19:37:43 +01002624 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
2625 if (!new_dev_maps) {
2626 mutex_unlock(&xps_map_mutex);
2627 return -ENOMEM;
2628 }
2629
Antoine Tenart5478fcd2021-03-18 19:37:44 +01002630 new_dev_maps->nr_ids = nr_ids;
Antoine Tenart255c04a2021-03-18 19:37:43 +01002631 new_dev_maps->num_tc = num_tc;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002632 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002633
Amritha Nambiar80d19662018-06-29 21:26:41 -07002634 tci = j * num_tc + tc;
Antoine Tenart255c04a2021-03-18 19:37:43 +01002635 map = copy ? xmap_dereference(dev_maps->attr_map[tci]) : NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002636
Antoine Tenart044ab862021-03-18 19:37:46 +01002637 map = expand_xps_map(map, j, index, type == XPS_RXQS);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002638 if (!map)
2639 goto error;
2640
Amritha Nambiar80d19662018-06-29 21:26:41 -07002641 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002642 }
2643
2644 if (!new_dev_maps)
2645 goto out_no_new_maps;
2646
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002647 if (!dev_maps) {
2648 /* Increment static keys at most once per type */
2649 static_key_slow_inc_cpuslocked(&xps_needed);
Antoine Tenart044ab862021-03-18 19:37:46 +01002650 if (type == XPS_RXQS)
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002651 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2652 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002653
Antoine Tenart6f361582021-03-18 19:37:45 +01002654 for (j = 0; j < nr_ids; j++) {
Antoine Tenart402fbb92021-03-18 19:37:47 +01002655 bool skip_tc = false;
Alexander Duyck184c4492016-10-28 11:50:13 -04002656
Amritha Nambiar80d19662018-06-29 21:26:41 -07002657 tci = j * num_tc + tc;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002658 if (netif_attr_test_mask(j, mask, nr_ids) &&
2659 netif_attr_test_online(j, online_mask, nr_ids)) {
2660 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002661 int pos = 0;
2662
Antoine Tenart402fbb92021-03-18 19:37:47 +01002663 skip_tc = true;
2664
Amritha Nambiar80d19662018-06-29 21:26:41 -07002665 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002666 while ((pos < map->len) && (map->queues[pos] != index))
2667 pos++;
2668
2669 if (pos == map->len)
2670 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002671#ifdef CONFIG_NUMA
Antoine Tenart044ab862021-03-18 19:37:46 +01002672 if (type == XPS_CPUS) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002673 if (numa_node_id == -2)
2674 numa_node_id = cpu_to_node(j);
2675 else if (numa_node_id != cpu_to_node(j))
2676 numa_node_id = -1;
2677 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002678#endif
Alexander Duyck537c00d2013-01-10 08:57:02 +00002679 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002680
Antoine Tenart402fbb92021-03-18 19:37:47 +01002681 if (copy)
2682 xps_copy_dev_maps(dev_maps, new_dev_maps, j, tc,
2683 skip_tc);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002684 }
2685
Antoine Tenart044ab862021-03-18 19:37:46 +01002686 rcu_assign_pointer(dev->xps_maps[type], new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002687
Alexander Duyck537c00d2013-01-10 08:57:02 +00002688 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002689 if (!dev_maps)
2690 goto out_no_old_maps;
2691
Antoine Tenart6f361582021-03-18 19:37:45 +01002692 for (j = 0; j < dev_maps->nr_ids; j++) {
Antoine Tenart255c04a2021-03-18 19:37:43 +01002693 for (i = num_tc, tci = j * dev_maps->num_tc; i--; tci++) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002694 map = xmap_dereference(dev_maps->attr_map[tci]);
Antoine Tenart255c04a2021-03-18 19:37:43 +01002695 if (!map)
2696 continue;
2697
2698 if (copy) {
2699 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2700 if (map == new_map)
2701 continue;
2702 }
2703
Antoine Tenart75b27582021-03-18 19:37:52 +01002704 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Antoine Tenart255c04a2021-03-18 19:37:43 +01002705 kfree_rcu(map, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002706 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002707 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002708
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002709 old_dev_maps = dev_maps;
Alexander Duyck184c4492016-10-28 11:50:13 -04002710
2711out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002712 dev_maps = new_dev_maps;
2713 active = true;
2714
2715out_no_new_maps:
Antoine Tenart044ab862021-03-18 19:37:46 +01002716 if (type == XPS_CPUS)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002717 /* update Tx queue numa node */
2718 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2719 (numa_node_id >= 0) ?
2720 numa_node_id : NUMA_NO_NODE);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002721
Alexander Duyck01c5f862013-01-10 08:57:35 +00002722 if (!dev_maps)
2723 goto out_no_maps;
2724
Amritha Nambiar80d19662018-06-29 21:26:41 -07002725 /* removes tx-queue from unused CPUs/rx-queues */
Antoine Tenart6f361582021-03-18 19:37:45 +01002726 for (j = 0; j < dev_maps->nr_ids; j++) {
Antoine Tenart132f7432021-03-18 19:37:48 +01002727 tci = j * dev_maps->num_tc;
2728
2729 for (i = 0; i < dev_maps->num_tc; i++, tci++) {
2730 if (i == tc &&
2731 netif_attr_test_mask(j, mask, dev_maps->nr_ids) &&
2732 netif_attr_test_online(j, online_mask, dev_maps->nr_ids))
2733 continue;
2734
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002735 active |= remove_xps_queue(dev_maps,
2736 copy ? old_dev_maps : NULL,
2737 tci, index);
Antoine Tenart132f7432021-03-18 19:37:48 +01002738 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002739 }
2740
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002741 if (old_dev_maps)
2742 kfree_rcu(old_dev_maps, rcu);
2743
Alexander Duyck01c5f862013-01-10 08:57:35 +00002744 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002745 if (!active)
Antoine Tenart044ab862021-03-18 19:37:46 +01002746 reset_xps_maps(dev, dev_maps, type);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002747
2748out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002749 mutex_unlock(&xps_map_mutex);
2750
2751 return 0;
2752error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002753 /* remove any maps that we added */
Antoine Tenart6f361582021-03-18 19:37:45 +01002754 for (j = 0; j < nr_ids; j++) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002755 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2756 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Antoine Tenart255c04a2021-03-18 19:37:43 +01002757 map = copy ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002758 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002759 NULL;
2760 if (new_map && new_map != map)
2761 kfree(new_map);
2762 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002763 }
2764
Alexander Duyck537c00d2013-01-10 08:57:02 +00002765 mutex_unlock(&xps_map_mutex);
2766
Alexander Duyck537c00d2013-01-10 08:57:02 +00002767 kfree(new_dev_maps);
2768 return -ENOMEM;
2769}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002770EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002771
2772int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2773 u16 index)
2774{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002775 int ret;
2776
2777 cpus_read_lock();
Antoine Tenart044ab862021-03-18 19:37:46 +01002778 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, XPS_CPUS);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002779 cpus_read_unlock();
2780
2781 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002782}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002783EXPORT_SYMBOL(netif_set_xps_queue);
2784
2785#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002786static void netdev_unbind_all_sb_channels(struct net_device *dev)
2787{
2788 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2789
2790 /* Unbind any subordinate channels */
2791 while (txq-- != &dev->_tx[0]) {
2792 if (txq->sb_dev)
2793 netdev_unbind_sb_channel(dev, txq->sb_dev);
2794 }
2795}
2796
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002797void netdev_reset_tc(struct net_device *dev)
2798{
Alexander Duyck6234f872016-10-28 11:46:49 -04002799#ifdef CONFIG_XPS
2800 netif_reset_xps_queues_gt(dev, 0);
2801#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002802 netdev_unbind_all_sb_channels(dev);
2803
2804 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002805 dev->num_tc = 0;
2806 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2807 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2808}
2809EXPORT_SYMBOL(netdev_reset_tc);
2810
2811int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2812{
2813 if (tc >= dev->num_tc)
2814 return -EINVAL;
2815
Alexander Duyck6234f872016-10-28 11:46:49 -04002816#ifdef CONFIG_XPS
2817 netif_reset_xps_queues(dev, offset, count);
2818#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002819 dev->tc_to_txq[tc].count = count;
2820 dev->tc_to_txq[tc].offset = offset;
2821 return 0;
2822}
2823EXPORT_SYMBOL(netdev_set_tc_queue);
2824
2825int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2826{
2827 if (num_tc > TC_MAX_QUEUE)
2828 return -EINVAL;
2829
Alexander Duyck6234f872016-10-28 11:46:49 -04002830#ifdef CONFIG_XPS
2831 netif_reset_xps_queues_gt(dev, 0);
2832#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002833 netdev_unbind_all_sb_channels(dev);
2834
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002835 dev->num_tc = num_tc;
2836 return 0;
2837}
2838EXPORT_SYMBOL(netdev_set_num_tc);
2839
Alexander Duyckffcfe252018-07-09 12:19:38 -04002840void netdev_unbind_sb_channel(struct net_device *dev,
2841 struct net_device *sb_dev)
2842{
2843 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2844
2845#ifdef CONFIG_XPS
2846 netif_reset_xps_queues_gt(sb_dev, 0);
2847#endif
2848 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2849 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2850
2851 while (txq-- != &dev->_tx[0]) {
2852 if (txq->sb_dev == sb_dev)
2853 txq->sb_dev = NULL;
2854 }
2855}
2856EXPORT_SYMBOL(netdev_unbind_sb_channel);
2857
2858int netdev_bind_sb_channel_queue(struct net_device *dev,
2859 struct net_device *sb_dev,
2860 u8 tc, u16 count, u16 offset)
2861{
2862 /* Make certain the sb_dev and dev are already configured */
2863 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2864 return -EINVAL;
2865
2866 /* We cannot hand out queues we don't have */
2867 if ((offset + count) > dev->real_num_tx_queues)
2868 return -EINVAL;
2869
2870 /* Record the mapping */
2871 sb_dev->tc_to_txq[tc].count = count;
2872 sb_dev->tc_to_txq[tc].offset = offset;
2873
2874 /* Provide a way for Tx queue to find the tc_to_txq map or
2875 * XPS map for itself.
2876 */
2877 while (count--)
2878 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2879
2880 return 0;
2881}
2882EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2883
2884int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2885{
2886 /* Do not use a multiqueue device to represent a subordinate channel */
2887 if (netif_is_multiqueue(dev))
2888 return -ENODEV;
2889
2890 /* We allow channels 1 - 32767 to be used for subordinate channels.
2891 * Channel 0 is meant to be "native" mode and used only to represent
2892 * the main root device. We allow writing 0 to reset the device back
2893 * to normal mode after being used as a subordinate channel.
2894 */
2895 if (channel > S16_MAX)
2896 return -EINVAL;
2897
2898 dev->num_tc = -channel;
2899
2900 return 0;
2901}
2902EXPORT_SYMBOL(netdev_set_sb_channel);
2903
John Fastabendf0796d52010-07-01 13:21:57 +00002904/*
2905 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002906 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002907 */
Tom Herberte6484932010-10-18 18:04:39 +00002908int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002909{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002910 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002911 int rc;
2912
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002913 disabling = txq < dev->real_num_tx_queues;
2914
Tom Herberte6484932010-10-18 18:04:39 +00002915 if (txq < 1 || txq > dev->num_tx_queues)
2916 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002917
Ben Hutchings5c565802011-02-15 19:39:21 +00002918 if (dev->reg_state == NETREG_REGISTERED ||
2919 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002920 ASSERT_RTNL();
2921
Tom Herbert1d24eb42010-11-21 13:17:27 +00002922 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2923 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002924 if (rc)
2925 return rc;
2926
John Fastabend4f57c082011-01-17 08:06:04 +00002927 if (dev->num_tc)
2928 netif_setup_tc(dev, txq);
2929
Jakub Kicinski1e080f12021-09-13 15:53:30 -07002930 dev_qdisc_change_real_num_tx(dev, txq);
2931
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002932 dev->real_num_tx_queues = txq;
2933
2934 if (disabling) {
2935 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002936 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002937#ifdef CONFIG_XPS
2938 netif_reset_xps_queues_gt(dev, txq);
2939#endif
2940 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002941 } else {
2942 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002943 }
Tom Herberte6484932010-10-18 18:04:39 +00002944
Tom Herberte6484932010-10-18 18:04:39 +00002945 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002946}
2947EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002948
Michael Daltona953be52014-01-16 22:23:28 -08002949#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002950/**
2951 * netif_set_real_num_rx_queues - set actual number of RX queues used
2952 * @dev: Network device
2953 * @rxq: Actual number of RX queues
2954 *
2955 * This must be called either with the rtnl_lock held or before
2956 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002957 * negative error code. If called before registration, it always
2958 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002959 */
2960int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2961{
2962 int rc;
2963
Tom Herbertbd25fa72010-10-18 18:00:16 +00002964 if (rxq < 1 || rxq > dev->num_rx_queues)
2965 return -EINVAL;
2966
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002967 if (dev->reg_state == NETREG_REGISTERED) {
2968 ASSERT_RTNL();
2969
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002970 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2971 rxq);
2972 if (rc)
2973 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002974 }
2975
2976 dev->real_num_rx_queues = rxq;
2977 return 0;
2978}
2979EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2980#endif
2981
Ben Hutchings2c530402012-07-10 10:55:09 +00002982/**
Jakub Kicinski271e5b72021-08-03 06:05:26 -07002983 * netif_set_real_num_queues - set actual number of RX and TX queues used
2984 * @dev: Network device
2985 * @txq: Actual number of TX queues
2986 * @rxq: Actual number of RX queues
2987 *
2988 * Set the real number of both TX and RX queues.
2989 * Does nothing if the number of queues is already correct.
2990 */
2991int netif_set_real_num_queues(struct net_device *dev,
2992 unsigned int txq, unsigned int rxq)
2993{
2994 unsigned int old_rxq = dev->real_num_rx_queues;
2995 int err;
2996
2997 if (txq < 1 || txq > dev->num_tx_queues ||
2998 rxq < 1 || rxq > dev->num_rx_queues)
2999 return -EINVAL;
3000
3001 /* Start from increases, so the error path only does decreases -
3002 * decreases can't fail.
3003 */
3004 if (rxq > dev->real_num_rx_queues) {
3005 err = netif_set_real_num_rx_queues(dev, rxq);
3006 if (err)
3007 return err;
3008 }
3009 if (txq > dev->real_num_tx_queues) {
3010 err = netif_set_real_num_tx_queues(dev, txq);
3011 if (err)
3012 goto undo_rx;
3013 }
3014 if (rxq < dev->real_num_rx_queues)
3015 WARN_ON(netif_set_real_num_rx_queues(dev, rxq));
3016 if (txq < dev->real_num_tx_queues)
3017 WARN_ON(netif_set_real_num_tx_queues(dev, txq));
3018
3019 return 0;
3020undo_rx:
3021 WARN_ON(netif_set_real_num_rx_queues(dev, old_rxq));
3022 return err;
3023}
3024EXPORT_SYMBOL(netif_set_real_num_queues);
3025
3026/**
Ben Hutchings2c530402012-07-10 10:55:09 +00003027 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00003028 *
3029 * This routine should set an upper limit on the number of RSS queues
3030 * used by default by multiqueue devices.
3031 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00003032int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00003033{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05303034 return is_kdump_kernel() ?
3035 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00003036}
3037EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3038
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003039static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003040{
3041 struct softnet_data *sd;
3042 unsigned long flags;
3043
3044 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05003045 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00003046 q->next_sched = NULL;
3047 *sd->output_queue_tailp = q;
3048 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003049 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3050 local_irq_restore(flags);
3051}
3052
David S. Miller37437bb2008-07-16 02:15:04 -07003053void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08003054{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003055 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3056 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08003057}
3058EXPORT_SYMBOL(__netif_schedule);
3059
Eric Dumazete6247022013-12-05 04:45:08 -08003060struct dev_kfree_skb_cb {
3061 enum skb_free_reason reason;
3062};
3063
3064static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08003065{
Eric Dumazete6247022013-12-05 04:45:08 -08003066 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08003067}
Denis Vlasenko56079432006-03-29 15:57:29 -08003068
John Fastabend46e5da40a2014-09-12 20:04:52 -07003069void netif_schedule_queue(struct netdev_queue *txq)
3070{
3071 rcu_read_lock();
Julio Faracco5be55152019-10-01 11:39:04 -03003072 if (!netif_xmit_stopped(txq)) {
John Fastabend46e5da40a2014-09-12 20:04:52 -07003073 struct Qdisc *q = rcu_dereference(txq->qdisc);
3074
3075 __netif_schedule(q);
3076 }
3077 rcu_read_unlock();
3078}
3079EXPORT_SYMBOL(netif_schedule_queue);
3080
John Fastabend46e5da40a2014-09-12 20:04:52 -07003081void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3082{
3083 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3084 struct Qdisc *q;
3085
3086 rcu_read_lock();
3087 q = rcu_dereference(dev_queue->qdisc);
3088 __netif_schedule(q);
3089 rcu_read_unlock();
3090 }
3091}
3092EXPORT_SYMBOL(netif_tx_wake_queue);
3093
Eric Dumazete6247022013-12-05 04:45:08 -08003094void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
3095{
3096 unsigned long flags;
3097
Myungho Jung98998862017-04-25 11:58:15 -07003098 if (unlikely(!skb))
3099 return;
3100
Reshetova, Elena63354792017-06-30 13:07:58 +03003101 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08003102 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03003103 refcount_set(&skb->users, 0);
3104 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08003105 return;
3106 }
3107 get_kfree_skb_cb(skb)->reason = reason;
3108 local_irq_save(flags);
3109 skb->next = __this_cpu_read(softnet_data.completion_queue);
3110 __this_cpu_write(softnet_data.completion_queue, skb);
3111 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3112 local_irq_restore(flags);
3113}
3114EXPORT_SYMBOL(__dev_kfree_skb_irq);
3115
3116void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08003117{
Changbin Duafa79d02021-08-13 22:57:49 +08003118 if (in_hardirq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08003119 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08003120 else
3121 dev_kfree_skb(skb);
3122}
Eric Dumazete6247022013-12-05 04:45:08 -08003123EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08003124
3125
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003126/**
3127 * netif_device_detach - mark device as removed
3128 * @dev: network device
3129 *
3130 * Mark device as removed from system and therefore no longer available.
3131 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003132void netif_device_detach(struct net_device *dev)
3133{
3134 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3135 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003136 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003137 }
3138}
3139EXPORT_SYMBOL(netif_device_detach);
3140
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003141/**
3142 * netif_device_attach - mark device as attached
3143 * @dev: network device
3144 *
3145 * Mark device as attached from system and restart if needed.
3146 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003147void netif_device_attach(struct net_device *dev)
3148{
3149 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3150 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003151 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003152 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003153 }
3154}
3155EXPORT_SYMBOL(netif_device_attach);
3156
Jiri Pirko5605c762015-05-12 14:56:12 +02003157/*
3158 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3159 * to be used as a distribution range.
3160 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003161static u16 skb_tx_hash(const struct net_device *dev,
3162 const struct net_device *sb_dev,
3163 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02003164{
3165 u32 hash;
3166 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003167 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02003168
Alexander Duyckeadec8772018-07-09 12:19:48 -04003169 if (dev->num_tc) {
3170 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3171
3172 qoffset = sb_dev->tc_to_txq[tc].offset;
3173 qcount = sb_dev->tc_to_txq[tc].count;
Michael Chan0c57eee2021-10-25 05:05:28 -04003174 if (unlikely(!qcount)) {
3175 net_warn_ratelimited("%s: invalid qcount, qoffset %u for tc %u\n",
3176 sb_dev->name, qoffset, tc);
3177 qoffset = 0;
3178 qcount = dev->real_num_tx_queues;
3179 }
Alexander Duyckeadec8772018-07-09 12:19:48 -04003180 }
3181
Jiri Pirko5605c762015-05-12 14:56:12 +02003182 if (skb_rx_queue_recorded(skb)) {
3183 hash = skb_get_rx_queue(skb);
Amritha Nambiar6e11d152020-02-24 10:56:00 -08003184 if (hash >= qoffset)
3185 hash -= qoffset;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003186 while (unlikely(hash >= qcount))
3187 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04003188 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02003189 }
3190
3191 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3192}
Jiri Pirko5605c762015-05-12 14:56:12 +02003193
Ben Hutchings36c92472012-01-17 07:57:56 +00003194static void skb_warn_bad_offload(const struct sk_buff *skb)
3195{
Wei Tang84d15ae2016-06-16 21:17:49 +08003196 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00003197 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01003198 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00003199
Ben Greearc846ad92013-04-19 10:45:52 +00003200 if (!net_ratelimit())
3201 return;
3202
Bjørn Mork88ad4172015-11-16 19:16:40 +01003203 if (dev) {
3204 if (dev->dev.parent)
3205 name = dev_driver_string(dev->dev.parent);
3206 else
3207 name = netdev_name(dev);
3208 }
Willem de Bruijn64131392019-07-07 05:51:55 -04003209 skb_dump(KERN_WARNING, skb, false);
3210 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01003211 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04003212 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00003213}
3214
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215/*
3216 * Invalidate hardware checksum when packet is to be mangled, and
3217 * complete checksum manually on outgoing path.
3218 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003219int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220{
Al Virod3bc23e2006-11-14 21:24:49 -08003221 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07003222 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Patrick McHardy84fa7932006-08-29 16:44:56 -07003224 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07003225 goto out_set_summed;
3226
Yi Li3aefd7d2020-10-27 13:59:04 +08003227 if (unlikely(skb_is_gso(skb))) {
Ben Hutchings36c92472012-01-17 07:57:56 +00003228 skb_warn_bad_offload(skb);
3229 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 }
3231
Eric Dumazetcef401d2013-01-25 20:34:37 +00003232 /* Before computing a checksum, we should make sure no frag could
3233 * be modified by an external entity : checksum could be wrong.
3234 */
3235 if (skb_has_shared_frag(skb)) {
3236 ret = __skb_linearize(skb);
3237 if (ret)
3238 goto out;
3239 }
3240
Michał Mirosław55508d62010-12-14 15:24:08 +00003241 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07003242 BUG_ON(offset >= skb_headlen(skb));
3243 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3244
3245 offset += skb->csum_offset;
3246 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3247
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003248 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3249 if (ret)
3250 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07003252 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07003253out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003255out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 return ret;
3257}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003258EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Davide Carattib72b5bf2017-05-18 15:44:38 +02003260int skb_crc32c_csum_help(struct sk_buff *skb)
3261{
3262 __le32 crc32c_csum;
3263 int ret = 0, offset, start;
3264
3265 if (skb->ip_summed != CHECKSUM_PARTIAL)
3266 goto out;
3267
3268 if (unlikely(skb_is_gso(skb)))
3269 goto out;
3270
3271 /* Before computing a checksum, we should make sure no frag could
3272 * be modified by an external entity : checksum could be wrong.
3273 */
3274 if (unlikely(skb_has_shared_frag(skb))) {
3275 ret = __skb_linearize(skb);
3276 if (ret)
3277 goto out;
3278 }
3279 start = skb_checksum_start_offset(skb);
3280 offset = start + offsetof(struct sctphdr, checksum);
3281 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3282 ret = -EINVAL;
3283 goto out;
3284 }
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003285
3286 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3287 if (ret)
3288 goto out;
3289
Davide Carattib72b5bf2017-05-18 15:44:38 +02003290 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3291 skb->len - start, ~(__u32)0,
3292 crc32c_csum_stub));
3293 *(__le32 *)(skb->data + offset) = crc32c_csum;
3294 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02003295 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003296out:
3297 return ret;
3298}
3299
Vlad Yasevich53d64712014-03-27 17:26:18 -04003300__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003301{
3302 __be16 type = skb->protocol;
3303
Pravin B Shelar19acc322013-05-07 20:41:07 +00003304 /* Tunnel gso handlers can set protocol to ethernet. */
3305 if (type == htons(ETH_P_TEB)) {
3306 struct ethhdr *eth;
3307
3308 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3309 return 0;
3310
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003311 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003312 type = eth->h_proto;
3313 }
3314
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003315 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003316}
3317
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003318/**
3319 * skb_mac_gso_segment - mac layer segmentation handler.
3320 * @skb: buffer to segment
3321 * @features: features for the output path (see dev->features)
3322 */
3323struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3324 netdev_features_t features)
3325{
3326 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3327 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003328 int vlan_depth = skb->mac_len;
3329 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003330
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003331 if (unlikely(!type))
3332 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003333
Vlad Yasevich53d64712014-03-27 17:26:18 -04003334 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003335
3336 rcu_read_lock();
3337 list_for_each_entry_rcu(ptype, &offload_base, list) {
3338 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003339 segs = ptype->callbacks.gso_segment(skb, features);
3340 break;
3341 }
3342 }
3343 rcu_read_unlock();
3344
3345 __skb_push(skb, skb->data - skb_mac_header(skb));
3346
3347 return segs;
3348}
3349EXPORT_SYMBOL(skb_mac_gso_segment);
3350
3351
Cong Wang12b00042013-02-05 16:36:38 +00003352/* openvswitch calls this on rx path, so we need a different check.
3353 */
3354static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3355{
3356 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003357 return skb->ip_summed != CHECKSUM_PARTIAL &&
3358 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003359
3360 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003361}
3362
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003363/**
Cong Wang12b00042013-02-05 16:36:38 +00003364 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003365 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003366 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003367 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003368 *
3369 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003370 *
3371 * It may return NULL if the skb requires no segmentation. This is
3372 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003373 *
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003374 * Segmentation preserves SKB_GSO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003375 */
Cong Wang12b00042013-02-05 16:36:38 +00003376struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3377 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003378{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003379 struct sk_buff *segs;
3380
Cong Wang12b00042013-02-05 16:36:38 +00003381 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003382 int err;
3383
Eric Dumazetb2504a52017-01-31 10:20:32 -08003384 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003385 err = skb_cow_head(skb, 0);
3386 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003387 return ERR_PTR(err);
3388 }
3389
Alexander Duyck802ab552016-04-10 21:45:03 -04003390 /* Only report GSO partial support if it will enable us to
3391 * support segmentation on this frame without needing additional
3392 * work.
3393 */
3394 if (features & NETIF_F_GSO_PARTIAL) {
3395 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3396 struct net_device *dev = skb->dev;
3397
3398 partial_features |= dev->features & dev->gso_partial_features;
3399 if (!skb_gso_ok(skb, features | partial_features))
3400 features &= ~NETIF_F_GSO_PARTIAL;
3401 }
3402
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003403 BUILD_BUG_ON(SKB_GSO_CB_OFFSET +
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003404 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3405
Pravin B Shelar68c33162013-02-14 14:02:41 +00003406 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003407 SKB_GSO_CB(skb)->encap_level = 0;
3408
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003409 skb_reset_mac_header(skb);
3410 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003411
Eric Dumazetb2504a52017-01-31 10:20:32 -08003412 segs = skb_mac_gso_segment(skb, features);
3413
Steffen Klassert3a1296a2020-01-25 11:26:44 +01003414 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003415 skb_warn_bad_offload(skb);
3416
3417 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003418}
Cong Wang12b00042013-02-05 16:36:38 +00003419EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003420
Herbert Xufb286bb2005-11-10 13:01:24 -08003421/* Take action when hardware reception checksum errors are detected. */
3422#ifdef CONFIG_BUG
Tanner Love127d7352021-06-28 09:50:07 -04003423static void do_netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
3424{
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07003425 netdev_err(dev, "hw csum failure\n");
Tanner Love127d7352021-06-28 09:50:07 -04003426 skb_dump(KERN_ERR, skb, true);
3427 dump_stack();
3428}
3429
Cong Wang7fe50ac2018-11-12 14:47:18 -08003430void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003431{
Tanner Love127d7352021-06-28 09:50:07 -04003432 DO_ONCE_LITE(do_netdev_rx_csum_fault, dev, skb);
Herbert Xufb286bb2005-11-10 13:01:24 -08003433}
3434EXPORT_SYMBOL(netdev_rx_csum_fault);
3435#endif
3436
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003437/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003438static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003440#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 int i;
tchardingf4563a72017-02-09 17:56:07 +11003442
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003443 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003444 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3445 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003446
Ian Campbellea2ab692011-08-22 23:44:58 +00003447 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003448 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003449 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003450 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003451#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 return 0;
3453}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Simon Horman3b392dd2014-06-04 08:53:17 +09003455/* If MPLS offload request, verify we are testing hardware MPLS features
3456 * instead of standard features for the netdev.
3457 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003458#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003459static netdev_features_t net_mpls_features(struct sk_buff *skb,
3460 netdev_features_t features,
3461 __be16 type)
3462{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003463 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003464 features &= skb->dev->mpls_features;
3465
3466 return features;
3467}
3468#else
3469static netdev_features_t net_mpls_features(struct sk_buff *skb,
3470 netdev_features_t features,
3471 __be16 type)
3472{
3473 return features;
3474}
3475#endif
3476
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003477static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003478 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003479{
Simon Horman3b392dd2014-06-04 08:53:17 +09003480 __be16 type;
3481
Miaohe Lin9fc95f52020-07-30 19:02:36 +08003482 type = skb_network_protocol(skb, NULL);
Simon Horman3b392dd2014-06-04 08:53:17 +09003483 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003484
Ed Cashinc0d680e2012-09-19 15:49:00 +00003485 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003486 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003487 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003488 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003489 if (illegal_highdma(skb->dev, skb))
3490 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003491
3492 return features;
3493}
3494
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003495netdev_features_t passthru_features_check(struct sk_buff *skb,
3496 struct net_device *dev,
3497 netdev_features_t features)
3498{
3499 return features;
3500}
3501EXPORT_SYMBOL(passthru_features_check);
3502
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003503static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003504 struct net_device *dev,
3505 netdev_features_t features)
3506{
3507 return vlan_features_check(skb, features);
3508}
3509
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003510static netdev_features_t gso_features_check(const struct sk_buff *skb,
3511 struct net_device *dev,
3512 netdev_features_t features)
3513{
3514 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3515
3516 if (gso_segs > dev->gso_max_segs)
3517 return features & ~NETIF_F_GSO_MASK;
3518
Heiner Kallweit1d155df2020-11-21 00:22:20 +01003519 if (!skb_shinfo(skb)->gso_type) {
3520 skb_warn_bad_offload(skb);
3521 return features & ~NETIF_F_GSO_MASK;
3522 }
3523
Alexander Duyck802ab552016-04-10 21:45:03 -04003524 /* Support for GSO partial features requires software
3525 * intervention before we can actually process the packets
3526 * so we need to strip support for any partial features now
3527 * and we can pull them back in after we have partially
3528 * segmented the frame.
3529 */
3530 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3531 features &= ~dev->gso_partial_features;
3532
3533 /* Make sure to clear the IPv4 ID mangling feature if the
3534 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003535 */
3536 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3537 struct iphdr *iph = skb->encapsulation ?
3538 inner_ip_hdr(skb) : ip_hdr(skb);
3539
3540 if (!(iph->frag_off & htons(IP_DF)))
3541 features &= ~NETIF_F_TSO_MANGLEID;
3542 }
3543
3544 return features;
3545}
3546
Florian Westphalc1e756b2014-05-05 15:00:44 +02003547netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003548{
Jesse Gross5f352272014-12-23 22:37:26 -08003549 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003550 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003551
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003552 if (skb_is_gso(skb))
3553 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003554
Jesse Gross5f352272014-12-23 22:37:26 -08003555 /* If encapsulation offload request, verify we are testing
3556 * hardware encapsulation features instead of standard
3557 * features for the netdev
3558 */
3559 if (skb->encapsulation)
3560 features &= dev->hw_enc_features;
3561
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003562 if (skb_vlan_tagged(skb))
3563 features = netdev_intersect_features(features,
3564 dev->vlan_features |
3565 NETIF_F_HW_VLAN_CTAG_TX |
3566 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003567
Jesse Gross5f352272014-12-23 22:37:26 -08003568 if (dev->netdev_ops->ndo_features_check)
3569 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3570 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003571 else
3572 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003573
Florian Westphalc1e756b2014-05-05 15:00:44 +02003574 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003575}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003576EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003577
David S. Miller2ea25512014-08-29 21:10:01 -07003578static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003579 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003580{
David S. Miller2ea25512014-08-29 21:10:01 -07003581 unsigned int len;
3582 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003583
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003584 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003585 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003586
David S. Miller2ea25512014-08-29 21:10:01 -07003587 len = skb->len;
Willy Tarreau37447412020-08-10 10:27:42 +02003588 PRANDOM_ADD_NOISE(skb, dev, txq, len + jiffies);
David S. Miller2ea25512014-08-29 21:10:01 -07003589 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003590 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003591 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003592
Patrick McHardy572a9d72009-11-10 06:14:14 +00003593 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003594}
David S. Miller2ea25512014-08-29 21:10:01 -07003595
David S. Miller8dcda222014-09-01 15:06:40 -07003596struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3597 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003598{
3599 struct sk_buff *skb = first;
3600 int rc = NETDEV_TX_OK;
3601
3602 while (skb) {
3603 struct sk_buff *next = skb->next;
3604
David S. Millera8305bf2018-07-29 20:42:53 -07003605 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003606 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003607 if (unlikely(!dev_xmit_complete(rc))) {
3608 skb->next = next;
3609 goto out;
3610 }
3611
3612 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003613 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003614 rc = NETDEV_TX_BUSY;
3615 break;
3616 }
3617 }
3618
3619out:
3620 *ret = rc;
3621 return skb;
3622}
3623
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003624static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3625 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003626{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003627 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003628 !vlan_hw_offload_capable(features, skb->vlan_proto))
3629 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003630 return skb;
3631}
3632
Davide Caratti43c26a12017-05-18 15:44:41 +02003633int skb_csum_hwoffload_help(struct sk_buff *skb,
3634 const netdev_features_t features)
3635{
Xin Longfa821172021-01-16 14:13:37 +08003636 if (unlikely(skb_csum_is_sctp(skb)))
Davide Caratti43c26a12017-05-18 15:44:41 +02003637 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3638 skb_crc32c_csum_help(skb);
3639
Xin Long62fafcd2021-01-28 17:18:31 +08003640 if (features & NETIF_F_HW_CSUM)
3641 return 0;
3642
3643 if (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
3644 switch (skb->csum_offset) {
3645 case offsetof(struct tcphdr, check):
3646 case offsetof(struct udphdr, check):
3647 return 0;
3648 }
3649 }
3650
3651 return skb_checksum_help(skb);
Davide Caratti43c26a12017-05-18 15:44:41 +02003652}
3653EXPORT_SYMBOL(skb_csum_hwoffload_help);
3654
Steffen Klassertf53c7232017-12-20 10:41:36 +01003655static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003656{
3657 netdev_features_t features;
3658
David S. Millereae3f882014-08-30 15:17:13 -07003659 features = netif_skb_features(skb);
3660 skb = validate_xmit_vlan(skb, features);
3661 if (unlikely(!skb))
3662 goto out_null;
3663
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003664 skb = sk_validate_xmit_skb(skb, dev);
3665 if (unlikely(!skb))
3666 goto out_null;
3667
Johannes Berg8b86a612015-04-17 15:45:04 +02003668 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003669 struct sk_buff *segs;
3670
3671 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003672 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003673 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003674 } else if (segs) {
3675 consume_skb(skb);
3676 skb = segs;
3677 }
David S. Millereae3f882014-08-30 15:17:13 -07003678 } else {
3679 if (skb_needs_linearize(skb, features) &&
3680 __skb_linearize(skb))
3681 goto out_kfree_skb;
3682
3683 /* If packet is not checksummed and device does not
3684 * support checksumming for this protocol, complete
3685 * checksumming here.
3686 */
3687 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3688 if (skb->encapsulation)
3689 skb_set_inner_transport_header(skb,
3690 skb_checksum_start_offset(skb));
3691 else
3692 skb_set_transport_header(skb,
3693 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003694 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003695 goto out_kfree_skb;
3696 }
3697 }
3698
Steffen Klassertf53c7232017-12-20 10:41:36 +01003699 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003700
David S. Millereae3f882014-08-30 15:17:13 -07003701 return skb;
3702
3703out_kfree_skb:
3704 kfree_skb(skb);
3705out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003706 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003707 return NULL;
3708}
3709
Steffen Klassertf53c7232017-12-20 10:41:36 +01003710struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003711{
3712 struct sk_buff *next, *head = NULL, *tail;
3713
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003714 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003715 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003716 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003717
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003718 /* in case skb wont be segmented, point to itself */
3719 skb->prev = skb;
3720
Steffen Klassertf53c7232017-12-20 10:41:36 +01003721 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003722 if (!skb)
3723 continue;
3724
3725 if (!head)
3726 head = skb;
3727 else
3728 tail->next = skb;
3729 /* If skb was segmented, skb->prev points to
3730 * the last segment. If not, it still contains skb.
3731 */
3732 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003733 }
3734 return head;
3735}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003736EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003737
Eric Dumazet1def9232013-01-10 12:36:42 +00003738static void qdisc_pkt_len_init(struct sk_buff *skb)
3739{
3740 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3741
3742 qdisc_skb_cb(skb)->pkt_len = skb->len;
3743
3744 /* To get more precise estimation of bytes sent on wire,
3745 * we add to pkt_len the headers size of all segments
3746 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003747 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003748 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003749 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003750
Eric Dumazet757b8b12013-01-15 21:14:21 -08003751 /* mac layer + network layer */
3752 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3753
3754 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003755 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3756 const struct tcphdr *th;
3757 struct tcphdr _tcphdr;
3758
3759 th = skb_header_pointer(skb, skb_transport_offset(skb),
3760 sizeof(_tcphdr), &_tcphdr);
3761 if (likely(th))
3762 hdr_len += __tcp_hdrlen(th);
3763 } else {
3764 struct udphdr _udphdr;
3765
3766 if (skb_header_pointer(skb, skb_transport_offset(skb),
3767 sizeof(_udphdr), &_udphdr))
3768 hdr_len += sizeof(struct udphdr);
3769 }
Jason Wang15e5a032013-03-25 20:19:59 +00003770
3771 if (shinfo->gso_type & SKB_GSO_DODGY)
3772 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3773 shinfo->gso_size);
3774
3775 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003776 }
3777}
3778
Qitao Xu70713dd2021-07-14 23:03:24 -07003779static int dev_qdisc_enqueue(struct sk_buff *skb, struct Qdisc *q,
3780 struct sk_buff **to_free,
3781 struct netdev_queue *txq)
3782{
3783 int rc;
3784
3785 rc = q->enqueue(skb, q, to_free) & NET_XMIT_MASK;
3786 if (rc == NET_XMIT_SUCCESS)
3787 trace_qdisc_enqueue(q, txq, skb);
3788 return rc;
3789}
3790
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003791static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3792 struct net_device *dev,
3793 struct netdev_queue *txq)
3794{
3795 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003796 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003797 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003798 int rc;
3799
Eric Dumazeta2da5702011-01-20 03:48:19 +00003800 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003801
3802 if (q->flags & TCQ_F_NOLOCK) {
Yunsheng Linc4fef012021-06-22 14:49:56 +08003803 if (q->flags & TCQ_F_CAN_BYPASS && nolock_qdisc_is_empty(q) &&
3804 qdisc_run_begin(q)) {
3805 /* Retest nolock_qdisc_is_empty() within the protection
3806 * of q->seqlock to protect from racing with requeuing.
3807 */
3808 if (unlikely(!nolock_qdisc_is_empty(q))) {
Qitao Xu70713dd2021-07-14 23:03:24 -07003809 rc = dev_qdisc_enqueue(skb, q, &to_free, txq);
Yunsheng Linc4fef012021-06-22 14:49:56 +08003810 __qdisc_run(q);
3811 qdisc_run_end(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003812
Yunsheng Linc4fef012021-06-22 14:49:56 +08003813 goto no_lock_out;
3814 }
3815
3816 qdisc_bstats_cpu_update(q, skb);
3817 if (sch_direct_xmit(skb, q, dev, txq, NULL, true) &&
3818 !nolock_qdisc_is_empty(q))
3819 __qdisc_run(q);
3820
3821 qdisc_run_end(q);
3822 return NET_XMIT_SUCCESS;
3823 }
3824
Qitao Xu70713dd2021-07-14 23:03:24 -07003825 rc = dev_qdisc_enqueue(skb, q, &to_free, txq);
Yunsheng Linc4fef012021-06-22 14:49:56 +08003826 qdisc_run(q);
3827
3828no_lock_out:
John Fastabend6b3ba912017-12-07 09:54:25 -08003829 if (unlikely(to_free))
3830 kfree_skb_list(to_free);
3831 return rc;
3832 }
3833
Eric Dumazet79640a42010-06-02 05:09:29 -07003834 /*
3835 * Heuristic to force contended enqueues to serialize on a
3836 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003837 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003838 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003839 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003840 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003841 if (unlikely(contended))
3842 spin_lock(&q->busylock);
3843
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003844 spin_lock(root_lock);
3845 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003846 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003847 rc = NET_XMIT_DROP;
3848 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003849 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003850 /*
3851 * This is a work-conserving queue; there are no old skbs
3852 * waiting to be sent out; and the qdisc is not running -
3853 * xmit the skb directly.
3854 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003855
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003856 qdisc_bstats_update(q, skb);
3857
Eric Dumazet55a93b32014-10-03 15:31:07 -07003858 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003859 if (unlikely(contended)) {
3860 spin_unlock(&q->busylock);
3861 contended = false;
3862 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003863 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003864 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003865
John Fastabend6c148182017-12-07 09:54:06 -08003866 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003867 rc = NET_XMIT_SUCCESS;
3868 } else {
Qitao Xu70713dd2021-07-14 23:03:24 -07003869 rc = dev_qdisc_enqueue(skb, q, &to_free, txq);
Eric Dumazet79640a42010-06-02 05:09:29 -07003870 if (qdisc_run_begin(q)) {
3871 if (unlikely(contended)) {
3872 spin_unlock(&q->busylock);
3873 contended = false;
3874 }
3875 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003876 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003877 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003878 }
3879 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003880 if (unlikely(to_free))
3881 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003882 if (unlikely(contended))
3883 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003884 return rc;
3885}
3886
Daniel Borkmann86f85152013-12-29 17:27:11 +01003887#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003888static void skb_update_prio(struct sk_buff *skb)
3889{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003890 const struct netprio_map *map;
3891 const struct sock *sk;
3892 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003893
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003894 if (skb->priority)
3895 return;
3896 map = rcu_dereference_bh(skb->dev->priomap);
3897 if (!map)
3898 return;
3899 sk = skb_to_full_sk(skb);
3900 if (!sk)
3901 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003902
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003903 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3904
3905 if (prioidx < map->priomap_len)
3906 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003907}
3908#else
3909#define skb_update_prio(skb)
3910#endif
3911
Dave Jonesd29f7492008-07-22 14:09:06 -07003912/**
Michel Machado95603e22012-06-12 10:16:35 +00003913 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003914 * @net: network namespace this loopback is happening in
3915 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003916 * @skb: buffer to transmit
3917 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003918int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003919{
3920 skb_reset_mac_header(skb);
3921 __skb_pull(skb, skb_network_offset(skb));
3922 skb->pkt_type = PACKET_LOOPBACK;
Cyril Strejc9122a702021-10-24 22:14:25 +02003923 if (skb->ip_summed == CHECKSUM_NONE)
3924 skb->ip_summed = CHECKSUM_UNNECESSARY;
Michel Machado95603e22012-06-12 10:16:35 +00003925 WARN_ON(!skb_dst(skb));
3926 skb_dst_force(skb);
3927 netif_rx_ni(skb);
3928 return 0;
3929}
3930EXPORT_SYMBOL(dev_loopback_xmit);
3931
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003932#ifdef CONFIG_NET_EGRESS
3933static struct sk_buff *
3934sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3935{
Lukas Wunner42df6e12021-10-08 22:06:03 +02003936#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01003937 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003938 struct tcf_result cl_res;
3939
Jiri Pirko46209402017-11-03 11:46:25 +01003940 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003941 return skb;
3942
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003943 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Paul Blakeyec624fe2021-12-14 19:24:33 +02003944 tc_skb_cb(skb)->mru = 0;
3945 tc_skb_cb(skb)->post_ct = false;
Jiri Pirko46209402017-11-03 11:46:25 +01003946 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003947
Davide Caratti3aa26052021-07-28 20:08:00 +02003948 switch (tcf_classify(skb, miniq->block, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003949 case TC_ACT_OK:
3950 case TC_ACT_RECLASSIFY:
3951 skb->tc_index = TC_H_MIN(cl_res.classid);
3952 break;
3953 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003954 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003955 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003956 kfree_skb(skb);
3957 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003958 case TC_ACT_STOLEN:
3959 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003960 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003961 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003962 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003963 return NULL;
3964 case TC_ACT_REDIRECT:
3965 /* No need to push/pop skb's mac_header here on egress! */
3966 skb_do_redirect(skb);
3967 *ret = NET_XMIT_SUCCESS;
3968 return NULL;
3969 default:
3970 break;
3971 }
Lukas Wunner42df6e12021-10-08 22:06:03 +02003972#endif /* CONFIG_NET_CLS_ACT */
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01003973
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003974 return skb;
3975}
3976#endif /* CONFIG_NET_EGRESS */
3977
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003978#ifdef CONFIG_XPS
3979static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3980 struct xps_dev_maps *dev_maps, unsigned int tci)
3981{
Antoine Tenart255c04a2021-03-18 19:37:43 +01003982 int tc = netdev_get_prio_tc_map(dev, skb->priority);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003983 struct xps_map *map;
3984 int queue_index = -1;
3985
Antoine Tenart5478fcd2021-03-18 19:37:44 +01003986 if (tc >= dev_maps->num_tc || tci >= dev_maps->nr_ids)
Antoine Tenart255c04a2021-03-18 19:37:43 +01003987 return queue_index;
3988
3989 tci *= dev_maps->num_tc;
3990 tci += tc;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003991
3992 map = rcu_dereference(dev_maps->attr_map[tci]);
3993 if (map) {
3994 if (map->len == 1)
3995 queue_index = map->queues[0];
3996 else
3997 queue_index = map->queues[reciprocal_scale(
3998 skb_get_hash(skb), map->len)];
3999 if (unlikely(queue_index >= dev->real_num_tx_queues))
4000 queue_index = -1;
4001 }
4002 return queue_index;
4003}
4004#endif
4005
Alexander Duyckeadec8772018-07-09 12:19:48 -04004006static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
4007 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004008{
4009#ifdef CONFIG_XPS
4010 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004011 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02004012 int queue_index = -1;
4013
Amritha Nambiar04157462018-06-29 21:26:46 -07004014 if (!static_key_false(&xps_needed))
4015 return -1;
4016
Jiri Pirko638b2a62015-05-12 14:56:13 +02004017 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004018 if (!static_key_false(&xps_rxqs_needed))
4019 goto get_cpus_map;
4020
Antoine Tenart044ab862021-03-18 19:37:46 +01004021 dev_maps = rcu_dereference(sb_dev->xps_maps[XPS_RXQS]);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004022 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004023 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04004024
Antoine Tenart5478fcd2021-03-18 19:37:44 +01004025 if (tci >= 0)
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004026 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4027 tci);
4028 }
Alexander Duyck184c4492016-10-28 11:50:13 -04004029
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004030get_cpus_map:
4031 if (queue_index < 0) {
Antoine Tenart044ab862021-03-18 19:37:46 +01004032 dev_maps = rcu_dereference(sb_dev->xps_maps[XPS_CPUS]);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004033 if (dev_maps) {
4034 unsigned int tci = skb->sender_cpu - 1;
4035
4036 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4037 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004038 }
4039 }
4040 rcu_read_unlock();
4041
4042 return queue_index;
4043#else
4044 return -1;
4045#endif
4046}
4047
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004048u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01004049 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004050{
4051 return 0;
4052}
4053EXPORT_SYMBOL(dev_pick_tx_zero);
4054
4055u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01004056 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004057{
4058 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
4059}
4060EXPORT_SYMBOL(dev_pick_tx_cpu_id);
4061
Paolo Abenib71b5832019-03-20 11:02:05 +01004062u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
4063 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004064{
4065 struct sock *sk = skb->sk;
4066 int queue_index = sk_tx_queue_get(sk);
4067
Alexander Duyckeadec8772018-07-09 12:19:48 -04004068 sb_dev = sb_dev ? : dev;
4069
Jiri Pirko638b2a62015-05-12 14:56:13 +02004070 if (queue_index < 0 || skb->ooo_okay ||
4071 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04004072 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11004073
Jiri Pirko638b2a62015-05-12 14:56:13 +02004074 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04004075 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004076
4077 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07004078 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02004079 rcu_access_pointer(sk->sk_dst_cache))
4080 sk_tx_queue_set(sk, new_index);
4081
4082 queue_index = new_index;
4083 }
4084
4085 return queue_index;
4086}
Paolo Abenib71b5832019-03-20 11:02:05 +01004087EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004088
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004089struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4090 struct sk_buff *skb,
4091 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004092{
4093 int queue_index = 0;
4094
4095#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08004096 u32 sender_cpu = skb->sender_cpu - 1;
4097
4098 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004099 skb->sender_cpu = raw_smp_processor_id() + 1;
4100#endif
4101
4102 if (dev->real_num_tx_queues != 1) {
4103 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11004104
Jiri Pirko638b2a62015-05-12 14:56:13 +02004105 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01004106 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004107 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004108 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004109
Alexander Duyckd5845272017-11-22 10:57:41 -08004110 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004111 }
4112
4113 skb_set_queue_mapping(skb, queue_index);
4114 return netdev_get_tx_queue(dev, queue_index);
4115}
4116
Michel Machado95603e22012-06-12 10:16:35 +00004117/**
Jason Wang9d08dd32014-01-20 11:25:13 +08004118 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07004119 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04004120 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07004121 *
4122 * Queue a buffer for transmission to a network device. The caller must
4123 * have set the device and priority and built the buffer before calling
4124 * this function. The function can be called from an interrupt.
4125 *
4126 * A negative errno code is returned on a failure. A success does not
4127 * guarantee the frame will be transmitted as it may be dropped due
4128 * to congestion or traffic shaping.
4129 *
4130 * -----------------------------------------------------------------------------------
4131 * I notice this method can also return errors from the queue disciplines,
4132 * including NET_XMIT_DROP, which is a positive value. So, errors can also
4133 * be positive.
4134 *
4135 * Regardless of the return value, the skb is consumed, so it is currently
4136 * difficult to retry a send to this method. (You can bump the ref count
4137 * before sending to hold a reference for retry if you are careful.)
4138 *
4139 * When calling this method, interrupts MUST be enabled. This is because
4140 * the BH enable code must have IRQs enabled so that it will not deadlock.
4141 * --BLG
4142 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04004143static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144{
4145 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07004146 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 struct Qdisc *q;
4148 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01004149 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00004151 skb_reset_mac_header(skb);
4152
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004153 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
Yousuk Seunge7ed11e2021-01-20 12:41:55 -08004154 __skb_tstamp_tx(skb, NULL, NULL, skb->sk, SCM_TSTAMP_SCHED);
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004155
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004156 /* Disable soft irqs for various locks below. Also
4157 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004159 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Neil Horman5bc14212011-11-22 05:10:51 +00004161 skb_update_prio(skb);
4162
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004163 qdisc_pkt_len_init(skb);
4164#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004165 skb->tc_at_ingress = 0;
Lukas Wunner42df6e12021-10-08 22:06:03 +02004166#endif
4167#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004168 if (static_branch_unlikely(&egress_needed_key)) {
Lukas Wunner42df6e12021-10-08 22:06:03 +02004169 if (nf_hook_egress_active()) {
4170 skb = nf_hook_egress(skb, &rc, dev);
4171 if (!skb)
4172 goto out;
4173 }
4174 nf_skip_egress(skb, true);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004175 skb = sch_handle_egress(skb, &rc, dev);
4176 if (!skb)
4177 goto out;
Lukas Wunner42df6e12021-10-08 22:06:03 +02004178 nf_skip_egress(skb, false);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004179 }
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004180#endif
Eric Dumazet02875872014-10-05 18:38:35 -07004181 /* If device/qdisc don't need skb->dst, release it right now while
4182 * its hot in this cpu cache.
4183 */
4184 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4185 skb_dst_drop(skb);
4186 else
4187 skb_dst_force(skb);
4188
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004189 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08004190 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07004191
Koki Sanagicf66ba52010-08-23 18:45:02 +09004192 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00004194 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07004195 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 }
4197
4198 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11004199 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
tchardingeb13da12017-02-09 17:56:06 +11004201 * Really, it is unlikely that netif_tx_lock protection is necessary
4202 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
4203 * counters.)
4204 * However, it is possible, that they rely on protection
4205 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
tchardingeb13da12017-02-09 17:56:06 +11004207 * Check this and shot the lock. It is not prone from deadlocks.
4208 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 */
4210 if (dev->flags & IFF_UP) {
4211 int cpu = smp_processor_id(); /* ok because BHs are off */
4212
Eric Dumazet7a10d8c2021-11-30 09:01:55 -08004213 /* Other cpus might concurrently change txq->xmit_lock_owner
4214 * to -1 or to their cpu id, but not to our id.
4215 */
4216 if (READ_ONCE(txq->xmit_lock_owner) != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004217 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07004218 goto recursion_alert;
4219
Steffen Klassertf53c7232017-12-20 10:41:36 +01004220 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004221 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07004222 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004223
Willy Tarreau37447412020-08-10 10:27:42 +02004224 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
David S. Millerc773e842008-07-08 23:13:53 -07004225 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
Tom Herbert734664982011-11-28 16:32:44 +00004227 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004228 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07004229 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02004230 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00004231 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07004232 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 goto out;
4234 }
4235 }
David S. Millerc773e842008-07-08 23:13:53 -07004236 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00004237 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4238 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 } else {
4240 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07004241 * unfortunately
4242 */
4243recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00004244 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4245 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 }
4247 }
4248
4249 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07004250 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
Eric Dumazet015f0682014-03-27 08:45:56 -07004252 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004253 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 return rc;
4255out:
Herbert Xud4828d82006-06-22 02:28:18 -07004256 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 return rc;
4258}
Jason Wangf663dd92014-01-10 16:18:26 +08004259
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004260int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08004261{
4262 return __dev_queue_xmit(skb, NULL);
4263}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004264EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Alexander Duyckeadec8772018-07-09 12:19:48 -04004266int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08004267{
Alexander Duyckeadec8772018-07-09 12:19:48 -04004268 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08004269}
4270EXPORT_SYMBOL(dev_queue_xmit_accel);
4271
Björn Töpel36ccdf82020-11-23 18:56:00 +01004272int __dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004273{
4274 struct net_device *dev = skb->dev;
4275 struct sk_buff *orig_skb = skb;
4276 struct netdev_queue *txq;
4277 int ret = NETDEV_TX_BUSY;
4278 bool again = false;
4279
4280 if (unlikely(!netif_running(dev) ||
4281 !netif_carrier_ok(dev)))
4282 goto drop;
4283
4284 skb = validate_xmit_skb_list(skb, dev, &again);
4285 if (skb != orig_skb)
4286 goto drop;
4287
4288 skb_set_queue_mapping(skb, queue_id);
4289 txq = skb_get_tx_queue(dev, skb);
Willy Tarreau37447412020-08-10 10:27:42 +02004290 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004291
4292 local_bh_disable();
4293
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004294 dev_xmit_recursion_inc();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004295 HARD_TX_LOCK(dev, txq, smp_processor_id());
4296 if (!netif_xmit_frozen_or_drv_stopped(txq))
4297 ret = netdev_start_xmit(skb, dev, txq, false);
4298 HARD_TX_UNLOCK(dev, txq);
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004299 dev_xmit_recursion_dec();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004300
4301 local_bh_enable();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004302 return ret;
4303drop:
4304 atomic_long_inc(&dev->tx_dropped);
4305 kfree_skb_list(skb);
4306 return NET_XMIT_DROP;
4307}
Björn Töpel36ccdf82020-11-23 18:56:00 +01004308EXPORT_SYMBOL(__dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
tchardingeb13da12017-02-09 17:56:06 +11004310/*************************************************************************
4311 * Receiver routines
4312 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004314int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00004315EXPORT_SYMBOL(netdev_max_backlog);
4316
Eric Dumazet3b098e22010-05-15 23:57:10 -07004317int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004318int netdev_budget __read_mostly = 300;
Konstantin Khlebnikova48379802020-04-06 14:39:32 +03004319/* Must be at least 2 jiffes to guarantee 1 jiffy timeout */
4320unsigned int __read_mostly netdev_budget_usecs = 2 * USEC_PER_SEC / HZ;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01004321int weight_p __read_mostly = 64; /* old backlog weight */
4322int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4323int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4324int dev_rx_weight __read_mostly = 64;
4325int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01004326/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4327int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004329/* Called with irq disabled */
4330static inline void ____napi_schedule(struct softnet_data *sd,
4331 struct napi_struct *napi)
4332{
Wei Wang29863d42021-02-08 11:34:09 -08004333 struct task_struct *thread;
4334
4335 if (test_bit(NAPI_STATE_THREADED, &napi->state)) {
4336 /* Paired with smp_mb__before_atomic() in
Wei Wang5fdd2f02021-02-08 11:34:10 -08004337 * napi_enable()/dev_set_threaded().
4338 * Use READ_ONCE() to guarantee a complete
4339 * read on napi->thread. Only call
Wei Wang29863d42021-02-08 11:34:09 -08004340 * wake_up_process() when it's not NULL.
4341 */
4342 thread = READ_ONCE(napi->thread);
4343 if (thread) {
Wei Wangcb038352021-03-16 15:36:47 -07004344 /* Avoid doing set_bit() if the thread is in
4345 * INTERRUPTIBLE state, cause napi_thread_wait()
4346 * makes sure to proceed with napi polling
4347 * if the thread is explicitly woken from here.
4348 */
Peter Zijlstra2f064a52021-06-11 10:28:17 +02004349 if (READ_ONCE(thread->__state) != TASK_INTERRUPTIBLE)
Wei Wangcb038352021-03-16 15:36:47 -07004350 set_bit(NAPI_STATE_SCHED_THREADED, &napi->state);
Wei Wang29863d42021-02-08 11:34:09 -08004351 wake_up_process(thread);
4352 return;
4353 }
4354 }
4355
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004356 list_add_tail(&napi->poll_list, &sd->poll_list);
4357 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4358}
4359
Eric Dumazetdf334542010-03-24 19:13:54 +00004360#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07004361
4362/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00004363struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07004364EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004365u32 rps_cpu_mask __read_mostly;
4366EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07004367
Eric Dumazetdc053602019-03-22 08:56:38 -07004368struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04004369EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07004370struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08004371EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00004372
Ben Hutchingsc4454772011-01-19 11:03:53 +00004373static struct rps_dev_flow *
4374set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4375 struct rps_dev_flow *rflow, u16 next_cpu)
4376{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004377 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004378#ifdef CONFIG_RFS_ACCEL
4379 struct netdev_rx_queue *rxqueue;
4380 struct rps_dev_flow_table *flow_table;
4381 struct rps_dev_flow *old_rflow;
4382 u32 flow_id;
4383 u16 rxq_index;
4384 int rc;
4385
4386 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004387 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4388 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004389 goto out;
4390 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4391 if (rxq_index == skb_get_rx_queue(skb))
4392 goto out;
4393
4394 rxqueue = dev->_rx + rxq_index;
4395 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4396 if (!flow_table)
4397 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004398 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004399 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4400 rxq_index, flow_id);
4401 if (rc < 0)
4402 goto out;
4403 old_rflow = rflow;
4404 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004405 rflow->filter = rc;
4406 if (old_rflow->filter == rflow->filter)
4407 old_rflow->filter = RPS_NO_FILTER;
4408 out:
4409#endif
4410 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004411 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004412 }
4413
Ben Hutchings09994d12011-10-03 04:42:46 +00004414 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004415 return rflow;
4416}
4417
Tom Herbert0a9627f2010-03-16 08:03:29 +00004418/*
4419 * get_rps_cpu is called from netif_receive_skb and returns the target
4420 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004421 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004422 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004423static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4424 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004425{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004426 const struct rps_sock_flow_table *sock_flow_table;
4427 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004428 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004429 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004430 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004431 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004432 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004433
Tom Herbert0a9627f2010-03-16 08:03:29 +00004434 if (skb_rx_queue_recorded(skb)) {
4435 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004436
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004437 if (unlikely(index >= dev->real_num_rx_queues)) {
4438 WARN_ONCE(dev->real_num_rx_queues > 1,
4439 "%s received packet on queue %u, but number "
4440 "of RX queues is %u\n",
4441 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004442 goto done;
4443 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004444 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004445 }
4446
Eric Dumazet567e4b72015-02-06 12:59:01 -08004447 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4448
4449 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4450 map = rcu_dereference(rxqueue->rps_map);
4451 if (!flow_table && !map)
4452 goto done;
4453
Changli Gao2d47b452010-08-17 19:00:56 +00004454 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004455 hash = skb_get_hash(skb);
4456 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004457 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004458
Tom Herbertfec5e652010-04-16 16:01:27 -07004459 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4460 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004461 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004462 u32 next_cpu;
4463 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004464
Eric Dumazet567e4b72015-02-06 12:59:01 -08004465 /* First check into global flow table if there is a match */
4466 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4467 if ((ident ^ hash) & ~rps_cpu_mask)
4468 goto try_rps;
4469
4470 next_cpu = ident & rps_cpu_mask;
4471
4472 /* OK, now we know there is a match,
4473 * we can look at the local (per receive queue) flow table
4474 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004475 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004476 tcpu = rflow->cpu;
4477
Tom Herbertfec5e652010-04-16 16:01:27 -07004478 /*
4479 * If the desired CPU (where last recvmsg was done) is
4480 * different from current CPU (one in the rx-queue flow
4481 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004482 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004483 * - Current CPU is offline.
4484 * - The current CPU's queue tail has advanced beyond the
4485 * last packet that was enqueued using this table entry.
4486 * This guarantees that all previous packets for the flow
4487 * have been dequeued, thus preserving in order delivery.
4488 */
4489 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004490 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004491 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004492 rflow->last_qtail)) >= 0)) {
4493 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004494 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004495 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004496
Eric Dumazeta31196b2015-04-25 09:35:24 -07004497 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004498 *rflowp = rflow;
4499 cpu = tcpu;
4500 goto done;
4501 }
4502 }
4503
Eric Dumazet567e4b72015-02-06 12:59:01 -08004504try_rps:
4505
Tom Herbert0a9627f2010-03-16 08:03:29 +00004506 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004507 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004508 if (cpu_online(tcpu)) {
4509 cpu = tcpu;
4510 goto done;
4511 }
4512 }
4513
4514done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004515 return cpu;
4516}
4517
Ben Hutchingsc4454772011-01-19 11:03:53 +00004518#ifdef CONFIG_RFS_ACCEL
4519
4520/**
4521 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4522 * @dev: Device on which the filter was set
4523 * @rxq_index: RX queue index
4524 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4525 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4526 *
4527 * Drivers that implement ndo_rx_flow_steer() should periodically call
4528 * this function for each installed filter and remove the filters for
4529 * which it returns %true.
4530 */
4531bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4532 u32 flow_id, u16 filter_id)
4533{
4534 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4535 struct rps_dev_flow_table *flow_table;
4536 struct rps_dev_flow *rflow;
4537 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004538 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004539
4540 rcu_read_lock();
4541 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4542 if (flow_table && flow_id <= flow_table->mask) {
4543 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004544 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004545 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004546 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4547 rflow->last_qtail) <
4548 (int)(10 * flow_table->mask)))
4549 expire = false;
4550 }
4551 rcu_read_unlock();
4552 return expire;
4553}
4554EXPORT_SYMBOL(rps_may_expire_flow);
4555
4556#endif /* CONFIG_RFS_ACCEL */
4557
Tom Herbert0a9627f2010-03-16 08:03:29 +00004558/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004559static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004560{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004561 struct softnet_data *sd = data;
4562
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004563 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004564 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004565}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004566
Tom Herbertfec5e652010-04-16 16:01:27 -07004567#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004568
4569/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004570 * Check if this softnet_data structure is another cpu one
4571 * If yes, queue it to our IPI list and return 1
4572 * If no, return 0
4573 */
4574static int rps_ipi_queued(struct softnet_data *sd)
4575{
4576#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004577 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004578
4579 if (sd != mysd) {
4580 sd->rps_ipi_next = mysd->rps_ipi_list;
4581 mysd->rps_ipi_list = sd;
4582
4583 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4584 return 1;
4585 }
4586#endif /* CONFIG_RPS */
4587 return 0;
4588}
4589
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004590#ifdef CONFIG_NET_FLOW_LIMIT
4591int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4592#endif
4593
4594static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4595{
4596#ifdef CONFIG_NET_FLOW_LIMIT
4597 struct sd_flow_limit *fl;
4598 struct softnet_data *sd;
4599 unsigned int old_flow, new_flow;
4600
4601 if (qlen < (netdev_max_backlog >> 1))
4602 return false;
4603
Christoph Lameter903ceff2014-08-17 12:30:35 -05004604 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004605
4606 rcu_read_lock();
4607 fl = rcu_dereference(sd->flow_limit);
4608 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004609 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004610 old_flow = fl->history[fl->history_head];
4611 fl->history[fl->history_head] = new_flow;
4612
4613 fl->history_head++;
4614 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4615
4616 if (likely(fl->buckets[old_flow]))
4617 fl->buckets[old_flow]--;
4618
4619 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4620 fl->count++;
4621 rcu_read_unlock();
4622 return true;
4623 }
4624 }
4625 rcu_read_unlock();
4626#endif
4627 return false;
4628}
4629
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004630/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004631 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4632 * queue (may be a remote CPU queue).
4633 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004634static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4635 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004636{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004637 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004638 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004639 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004640
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004641 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004642
4643 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004644
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004645 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004646 if (!netif_running(skb->dev))
4647 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004648 qlen = skb_queue_len(&sd->input_pkt_queue);
4649 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004650 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004651enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004652 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004653 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004654 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004655 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004656 return NET_RX_SUCCESS;
4657 }
4658
Eric Dumazetebda37c22010-05-06 23:51:21 +00004659 /* Schedule NAPI for backlog device
4660 * We can use non atomic operation since we own the queue lock
4661 */
4662 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004663 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004664 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004665 }
4666 goto enqueue;
4667 }
4668
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004669drop:
Changli Gaodee42872010-05-02 05:42:16 +00004670 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004671 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004672
Tom Herbert0a9627f2010-03-16 08:03:29 +00004673 local_irq_restore(flags);
4674
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004675 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004676 kfree_skb(skb);
4677 return NET_RX_DROP;
4678}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004680static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4681{
4682 struct net_device *dev = skb->dev;
4683 struct netdev_rx_queue *rxqueue;
4684
4685 rxqueue = dev->_rx;
4686
4687 if (skb_rx_queue_recorded(skb)) {
4688 u16 index = skb_get_rx_queue(skb);
4689
4690 if (unlikely(index >= dev->real_num_rx_queues)) {
4691 WARN_ONCE(dev->real_num_rx_queues > 1,
4692 "%s received packet on queue %u, but number "
4693 "of RX queues is %u\n",
4694 dev->name, index, dev->real_num_rx_queues);
4695
4696 return rxqueue; /* Return first rxqueue */
4697 }
4698 rxqueue += index;
4699 }
4700 return rxqueue;
4701}
4702
Kumar Kartikeya Dwivedife21cb92021-07-02 16:48:21 +05304703u32 bpf_prog_run_generic_xdp(struct sk_buff *skb, struct xdp_buff *xdp,
4704 struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004705{
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004706 void *orig_data, *orig_data_end, *hard_start;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004707 struct netdev_rx_queue *rxqueue;
Martin Willi22b60342021-04-19 16:15:59 +02004708 bool orig_bcast, orig_host;
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01004709 u32 mac_len, frame_sz;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004710 __be16 orig_eth_type;
4711 struct ethhdr *eth;
Kumar Kartikeya Dwivedife21cb92021-07-02 16:48:21 +05304712 u32 metalen, act;
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004713 int off;
John Fastabendd4455162017-07-17 09:26:45 -07004714
John Fastabendd4455162017-07-17 09:26:45 -07004715 /* The XDP program wants to see the packet starting at the MAC
4716 * header.
4717 */
4718 mac_len = skb->data - skb_mac_header(skb);
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004719 hard_start = skb->data - skb_headroom(skb);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004720
4721 /* SKB "head" area always have tailroom for skb_shared_info */
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004722 frame_sz = (void *)skb_end_pointer(skb) - hard_start;
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01004723 frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004724
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004725 rxqueue = netif_get_rxqueue(skb);
4726 xdp_init_buff(xdp, frame_sz, &rxqueue->xdp_rxq);
4727 xdp_prepare_buff(xdp, hard_start, skb_headroom(skb) - mac_len,
4728 skb_headlen(skb) + mac_len, true);
Björn Töpel02671e22018-05-02 13:01:30 +02004729
4730 orig_data_end = xdp->data_end;
4731 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004732 eth = (struct ethhdr *)xdp->data;
Martin Willi22b60342021-04-19 16:15:59 +02004733 orig_host = ether_addr_equal_64bits(eth->h_dest, skb->dev->dev_addr);
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004734 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4735 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004736
Björn Töpel02671e22018-05-02 13:01:30 +02004737 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004738
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004739 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004740 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004741 if (off) {
4742 if (off > 0)
4743 __skb_pull(skb, off);
4744 else if (off < 0)
4745 __skb_push(skb, -off);
4746
4747 skb->mac_header += off;
4748 skb_reset_network_header(skb);
4749 }
John Fastabendd4455162017-07-17 09:26:45 -07004750
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004751 /* check if bpf_xdp_adjust_tail was used */
4752 off = xdp->data_end - orig_data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004753 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004754 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004755 skb->len += off; /* positive on grow, negative on shrink */
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004756 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004757
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004758 /* check if XDP changed eth hdr such SKB needs update */
4759 eth = (struct ethhdr *)xdp->data;
4760 if ((orig_eth_type != eth->h_proto) ||
Martin Willi22b60342021-04-19 16:15:59 +02004761 (orig_host != ether_addr_equal_64bits(eth->h_dest,
4762 skb->dev->dev_addr)) ||
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004763 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4764 __skb_push(skb, ETH_HLEN);
Martin Willi22b60342021-04-19 16:15:59 +02004765 skb->pkt_type = PACKET_HOST;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004766 skb->protocol = eth_type_trans(skb, skb->dev);
4767 }
4768
Kumar Kartikeya Dwivedife21cb92021-07-02 16:48:21 +05304769 /* Redirect/Tx gives L2 packet, code that will reuse skb must __skb_pull
4770 * before calling us again on redirect path. We do not call do_redirect
4771 * as we leave that up to the caller.
4772 *
4773 * Caller is responsible for managing lifetime of skb (i.e. calling
4774 * kfree_skb in response to actions it cannot handle/XDP_DROP).
4775 */
John Fastabendd4455162017-07-17 09:26:45 -07004776 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004777 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004778 case XDP_TX:
4779 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004780 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004781 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004782 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004783 if (metalen)
4784 skb_metadata_set(skb, metalen);
4785 break;
Kumar Kartikeya Dwivedife21cb92021-07-02 16:48:21 +05304786 }
4787
4788 return act;
4789}
4790
4791static u32 netif_receive_generic_xdp(struct sk_buff *skb,
4792 struct xdp_buff *xdp,
4793 struct bpf_prog *xdp_prog)
4794{
4795 u32 act = XDP_DROP;
4796
4797 /* Reinjected packets coming from act_mirred or similar should
4798 * not get XDP generic processing.
4799 */
4800 if (skb_is_redirected(skb))
4801 return XDP_PASS;
4802
4803 /* XDP packets must be linear and must have sufficient headroom
4804 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4805 * native XDP provides, thus we need to do it here as well.
4806 */
4807 if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
4808 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4809 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4810 int troom = skb->tail + skb->data_len - skb->end;
4811
4812 /* In case we have to go down the path and also linearize,
4813 * then lets do the pskb_expand_head() work just once here.
4814 */
4815 if (pskb_expand_head(skb,
4816 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4817 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4818 goto do_drop;
4819 if (skb_linearize(skb))
4820 goto do_drop;
4821 }
4822
4823 act = bpf_prog_run_generic_xdp(skb, xdp, xdp_prog);
4824 switch (act) {
4825 case XDP_REDIRECT:
4826 case XDP_TX:
4827 case XDP_PASS:
4828 break;
John Fastabendd4455162017-07-17 09:26:45 -07004829 default:
4830 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004831 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004832 case XDP_ABORTED:
4833 trace_xdp_exception(skb->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004834 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004835 case XDP_DROP:
4836 do_drop:
4837 kfree_skb(skb);
4838 break;
4839 }
4840
4841 return act;
4842}
4843
4844/* When doing generic XDP we have to bypass the qdisc layer and the
4845 * network taps in order to match in-driver-XDP behavior.
4846 */
Jason Wang7c497472017-08-11 19:41:17 +08004847void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004848{
4849 struct net_device *dev = skb->dev;
4850 struct netdev_queue *txq;
4851 bool free_skb = true;
4852 int cpu, rc;
4853
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004854 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004855 cpu = smp_processor_id();
4856 HARD_TX_LOCK(dev, txq, cpu);
4857 if (!netif_xmit_stopped(txq)) {
4858 rc = netdev_start_xmit(skb, dev, txq, 0);
4859 if (dev_xmit_complete(rc))
4860 free_skb = false;
4861 }
4862 HARD_TX_UNLOCK(dev, txq);
4863 if (free_skb) {
4864 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4865 kfree_skb(skb);
4866 }
4867}
4868
Davidlohr Bueso02786472018-05-08 09:07:02 -07004869static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004870
Jason Wang7c497472017-08-11 19:41:17 +08004871int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004872{
John Fastabendd4455162017-07-17 09:26:45 -07004873 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004874 struct xdp_buff xdp;
4875 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004876 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004877
Björn Töpel02671e22018-05-02 13:01:30 +02004878 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004879 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004880 switch (act) {
4881 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004882 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004883 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004884 if (err)
4885 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004886 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004887 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004888 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004889 break;
4890 }
John Fastabendd4455162017-07-17 09:26:45 -07004891 return XDP_DROP;
4892 }
4893 }
4894 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004895out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004896 kfree_skb(skb);
4897 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004898}
Jason Wang7c497472017-08-11 19:41:17 +08004899EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004900
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004901static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004903 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904
Eric Dumazet588f0332011-11-15 04:12:55 +00004905 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
Koki Sanagicf66ba52010-08-23 18:45:02 +09004907 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004908
Eric Dumazetdf334542010-03-24 19:13:54 +00004909#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004910 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004911 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004912 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913
Changli Gaocece1942010-08-07 20:35:43 -07004914 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004915 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004916
4917 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004918 if (cpu < 0)
4919 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004920
4921 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4922
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004923 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004924 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004925 } else
4926#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004927 {
4928 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004929
Tom Herbertfec5e652010-04-16 16:01:27 -07004930 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4931 put_cpu();
4932 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004933 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004935
4936/**
4937 * netif_rx - post buffer to the network code
4938 * @skb: buffer to post
4939 *
4940 * This function receives a packet from a device driver and queues it for
4941 * the upper (protocol) levels to process. It always succeeds. The buffer
4942 * may be dropped during processing for congestion control or by the
4943 * protocol layers.
4944 *
4945 * return values:
4946 * NET_RX_SUCCESS (no congestion)
4947 * NET_RX_DROP (packet was dropped)
4948 *
4949 */
4950
4951int netif_rx(struct sk_buff *skb)
4952{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004953 int ret;
4954
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004955 trace_netif_rx_entry(skb);
4956
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004957 ret = netif_rx_internal(skb);
4958 trace_netif_rx_exit(ret);
4959
4960 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004961}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004962EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964int netif_rx_ni(struct sk_buff *skb)
4965{
4966 int err;
4967
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004968 trace_netif_rx_ni_entry(skb);
4969
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004971 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 if (local_softirq_pending())
4973 do_softirq();
4974 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004975 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976
4977 return err;
4978}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004979EXPORT_SYMBOL(netif_rx_ni);
4980
Sebastian Andrzej Siewiorc11171a2020-09-29 22:25:12 +02004981int netif_rx_any_context(struct sk_buff *skb)
4982{
4983 /*
4984 * If invoked from contexts which do not invoke bottom half
4985 * processing either at return from interrupt or when softrqs are
4986 * reenabled, use netif_rx_ni() which invokes bottomhalf processing
4987 * directly.
4988 */
4989 if (in_interrupt())
4990 return netif_rx(skb);
4991 else
4992 return netif_rx_ni(skb);
4993}
4994EXPORT_SYMBOL(netif_rx_any_context);
4995
Emese Revfy0766f782016-06-20 20:42:34 +02004996static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004998 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999
5000 if (sd->completion_queue) {
5001 struct sk_buff *clist;
5002
5003 local_irq_disable();
5004 clist = sd->completion_queue;
5005 sd->completion_queue = NULL;
5006 local_irq_enable();
5007
5008 while (clist) {
5009 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11005010
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 clist = clist->next;
5012
Reshetova, Elena63354792017-06-30 13:07:58 +03005013 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08005014 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
5015 trace_consume_skb(skb);
5016 else
5017 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01005018
5019 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
5020 __kfree_skb(skb);
5021 else
5022 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023 }
5024 }
5025
5026 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07005027 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
5029 local_irq_disable();
5030 head = sd->output_queue;
5031 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00005032 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 local_irq_enable();
5034
Yunsheng Lin102b55e2021-05-14 11:17:00 +08005035 rcu_read_lock();
5036
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07005038 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08005039 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07005040
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 head = head->next_sched;
5042
Eric Dumazet3bcb8462016-06-04 20:02:28 -07005043 /* We need to make sure head->next_sched is read
5044 * before clearing __QDISC_STATE_SCHED
5045 */
5046 smp_mb__before_atomic();
Yunsheng Lin102b55e2021-05-14 11:17:00 +08005047
5048 if (!(q->flags & TCQ_F_NOLOCK)) {
5049 root_lock = qdisc_lock(q);
5050 spin_lock(root_lock);
5051 } else if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED,
5052 &q->state))) {
5053 /* There is a synchronize_net() between
5054 * STATE_DEACTIVATED flag being set and
5055 * qdisc_reset()/some_qdisc_is_busy() in
5056 * dev_deactivate(), so we can safely bail out
5057 * early here to avoid data race between
5058 * qdisc_deactivate() and some_qdisc_is_busy()
5059 * for lockless qdisc.
5060 */
5061 clear_bit(__QDISC_STATE_SCHED, &q->state);
5062 continue;
5063 }
5064
Eric Dumazet3bcb8462016-06-04 20:02:28 -07005065 clear_bit(__QDISC_STATE_SCHED, &q->state);
5066 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08005067 if (root_lock)
5068 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069 }
Yunsheng Lin102b55e2021-05-14 11:17:00 +08005070
5071 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01005073
5074 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075}
5076
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04005077#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00005078/* This hook is defined here for ATM LANE */
5079int (*br_fdb_test_addr_hook)(struct net_device *dev,
5080 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07005081EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00005082#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
Daniel Borkmann1f211a12016-01-07 22:29:47 +01005084static inline struct sk_buff *
5085sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005086 struct net_device *orig_dev, bool *another)
Herbert Xuf697c3e2007-10-14 00:38:47 -07005087{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02005088#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01005089 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005090 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00005091
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005092 /* If there's at least one ingress present somewhere (so
5093 * we get here via enabled static key), remaining devices
5094 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005095 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005096 */
Jiri Pirko46209402017-11-03 11:46:25 +01005097 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02005098 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01005099
Herbert Xuf697c3e2007-10-14 00:38:47 -07005100 if (*pt_prev) {
5101 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5102 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07005103 }
5104
Florian Westphal33654952015-05-14 00:36:28 +02005105 qdisc_skb_cb(skb)->pkt_len = skb->len;
Paul Blakeyec624fe2021-12-14 19:24:33 +02005106 tc_skb_cb(skb)->mru = 0;
5107 tc_skb_cb(skb)->post_ct = false;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05005108 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01005109 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005110
Davide Caratti3aa26052021-07-28 20:08:00 +02005111 switch (tcf_classify(skb, miniq->block, miniq->filter_list, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005112 case TC_ACT_OK:
5113 case TC_ACT_RECLASSIFY:
5114 skb->tc_index = TC_H_MIN(cl_res.classid);
5115 break;
5116 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01005117 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07005118 kfree_skb(skb);
5119 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005120 case TC_ACT_STOLEN:
5121 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02005122 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07005123 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005124 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07005125 case TC_ACT_REDIRECT:
5126 /* skb_mac_header check was done by cls/act_bpf, so
5127 * we can safely push the L2 header back before
5128 * redirecting to another netdev
5129 */
5130 __skb_push(skb, skb->mac_len);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005131 if (skb_do_redirect(skb) == -EAGAIN) {
5132 __skb_pull(skb, skb->mac_len);
5133 *another = true;
5134 break;
5135 }
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07005136 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01005137 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02005138 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005139 default:
5140 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07005141 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02005142#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07005143 return skb;
5144}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005146/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07005147 * netdev_is_rx_handler_busy - check if receive handler is registered
5148 * @dev: device to check
5149 *
5150 * Check if a receive handler is already registered for a given device.
5151 * Return true if there one.
5152 *
5153 * The caller must hold the rtnl_mutex.
5154 */
5155bool netdev_is_rx_handler_busy(struct net_device *dev)
5156{
5157 ASSERT_RTNL();
5158 return dev && rtnl_dereference(dev->rx_handler);
5159}
5160EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5161
5162/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005163 * netdev_rx_handler_register - register receive handler
5164 * @dev: device to register a handler for
5165 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00005166 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005167 *
Masanari Iidae2278672014-02-18 22:54:36 +09005168 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005169 * called from __netif_receive_skb. A negative errno code is returned
5170 * on a failure.
5171 *
5172 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005173 *
5174 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005175 */
5176int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00005177 rx_handler_func_t *rx_handler,
5178 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005179{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08005180 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005181 return -EBUSY;
5182
Paolo Abenif54262502018-03-09 10:39:24 +01005183 if (dev->priv_flags & IFF_NO_RX_HANDLER)
5184 return -EINVAL;
5185
Eric Dumazet00cfec32013-03-29 03:01:22 +00005186 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00005187 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005188 rcu_assign_pointer(dev->rx_handler, rx_handler);
5189
5190 return 0;
5191}
5192EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5193
5194/**
5195 * netdev_rx_handler_unregister - unregister receive handler
5196 * @dev: device to unregister a handler from
5197 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00005198 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005199 *
5200 * The caller must hold the rtnl_mutex.
5201 */
5202void netdev_rx_handler_unregister(struct net_device *dev)
5203{
5204
5205 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005206 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00005207 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5208 * section has a guarantee to see a non NULL rx_handler_data
5209 * as well.
5210 */
5211 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005212 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005213}
5214EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5215
Mel Gormanb4b9e352012-07-31 16:44:26 -07005216/*
5217 * Limit the use of PFMEMALLOC reserves to those protocols that implement
5218 * the special handling of PFMEMALLOC skbs.
5219 */
5220static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5221{
5222 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07005223 case htons(ETH_P_ARP):
5224 case htons(ETH_P_IP):
5225 case htons(ETH_P_IPV6):
5226 case htons(ETH_P_8021Q):
5227 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07005228 return true;
5229 default:
5230 return false;
5231 }
5232}
5233
Pablo Neirae687ad62015-05-13 18:19:38 +02005234static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5235 int *ret, struct net_device *orig_dev)
5236{
5237 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04005238 int ingress_retval;
5239
Pablo Neirae687ad62015-05-13 18:19:38 +02005240 if (*pt_prev) {
5241 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5242 *pt_prev = NULL;
5243 }
5244
Aaron Conole2c1e2702016-09-21 11:35:03 -04005245 rcu_read_lock();
5246 ingress_retval = nf_hook_ingress(skb);
5247 rcu_read_unlock();
5248 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02005249 }
5250 return 0;
5251}
Pablo Neirae687ad62015-05-13 18:19:38 +02005252
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005253static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
Edward Cree88eb1942018-07-02 16:13:56 +01005254 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255{
5256 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005257 rx_handler_func_t *rx_handler;
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005258 struct sk_buff *skb = *pskb;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07005259 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005260 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08005262 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263
Eric Dumazet588f0332011-11-15 04:12:55 +00005264 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07005265
Koki Sanagicf66ba52010-08-23 18:45:02 +09005266 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08005267
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07005268 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00005269
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07005270 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00005271 if (!skb_transport_header_was_set(skb))
5272 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00005273 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
5275 pt_prev = NULL;
5276
David S. Miller63d8ea72011-02-28 10:48:59 -08005277another_round:
David S. Millerb6858172012-07-23 16:27:54 -07005278 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08005279
5280 __this_cpu_inc(softnet_data.processed);
5281
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005282 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5283 int ret2;
5284
Sebastian Andrzej Siewior2b4cd142021-06-17 09:38:17 +02005285 migrate_disable();
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005286 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
Sebastian Andrzej Siewior2b4cd142021-06-17 09:38:17 +02005287 migrate_enable();
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005288
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005289 if (ret2 != XDP_PASS) {
5290 ret = NET_RX_DROP;
5291 goto out;
5292 }
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005293 }
5294
Menglong Dong324cefa2021-01-11 02:42:21 -08005295 if (eth_type_vlan(skb->protocol)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04005296 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005297 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005298 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005299 }
5300
Willem de Bruijne7246e12017-01-07 17:06:35 -05005301 if (skb_skip_tc_classify(skb))
5302 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
David S. Miller9754e292013-02-14 15:57:38 -05005304 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07005305 goto skip_taps;
5306
Linus Torvalds1da177e2005-04-16 15:20:36 -07005307 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08005308 if (pt_prev)
5309 ret = deliver_skb(skb, pt_prev, orig_dev);
5310 pt_prev = ptype;
5311 }
5312
5313 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5314 if (pt_prev)
5315 ret = deliver_skb(skb, pt_prev, orig_dev);
5316 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317 }
5318
Mel Gormanb4b9e352012-07-31 16:44:26 -07005319skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02005320#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07005321 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005322 bool another = false;
5323
Lukas Wunner42df6e12021-10-08 22:06:03 +02005324 nf_skip_egress(skb, true);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005325 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
5326 &another);
5327 if (another)
5328 goto another_round;
Daniel Borkmann45771392015-04-10 23:07:54 +02005329 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005330 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02005331
Lukas Wunner42df6e12021-10-08 22:06:03 +02005332 nf_skip_egress(skb, false);
Pablo Neirae687ad62015-05-13 18:19:38 +02005333 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005334 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02005335 }
Pablo Neira1cf519002015-05-13 18:19:37 +02005336#endif
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01005337 skb_reset_redirect(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05005338skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05005339 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07005340 goto drop;
5341
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005342 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00005343 if (pt_prev) {
5344 ret = deliver_skb(skb, pt_prev, orig_dev);
5345 pt_prev = NULL;
5346 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005347 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00005348 goto another_round;
5349 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005350 goto out;
John Fastabend24257172011-10-10 09:16:41 +00005351 }
5352
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005353 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005354 if (rx_handler) {
5355 if (pt_prev) {
5356 ret = deliver_skb(skb, pt_prev, orig_dev);
5357 pt_prev = NULL;
5358 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005359 switch (rx_handler(&skb)) {
5360 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00005361 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005362 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005363 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08005364 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005365 case RX_HANDLER_EXACT:
5366 deliver_exact = true;
Gustavo A. R. Silvab1866bf2021-03-09 23:42:43 -06005367 break;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005368 case RX_HANDLER_PASS:
5369 break;
5370 default:
5371 BUG();
5372 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +03005375 if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005376check_vlan_id:
5377 if (skb_vlan_tag_get_id(skb)) {
5378 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5379 * find vlan device.
5380 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005381 skb->pkt_type = PACKET_OTHERHOST;
Menglong Dong324cefa2021-01-11 02:42:21 -08005382 } else if (eth_type_vlan(skb->protocol)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005383 /* Outer header is 802.1P with vlan 0, inner header is
5384 * 802.1Q or 802.1AD and vlan_do_receive() above could
5385 * not find vlan dev for vlan id 0.
5386 */
5387 __vlan_hwaccel_clear_tag(skb);
5388 skb = skb_vlan_untag(skb);
5389 if (unlikely(!skb))
5390 goto out;
5391 if (vlan_do_receive(&skb))
5392 /* After stripping off 802.1P header with vlan 0
5393 * vlan dev is found for inner header.
5394 */
5395 goto another_round;
5396 else if (unlikely(!skb))
5397 goto out;
5398 else
5399 /* We have stripped outer 802.1P vlan 0 header.
5400 * But could not find vlan dev.
5401 * check again for vlan id to set OTHERHOST.
5402 */
5403 goto check_vlan_id;
5404 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005405 /* Note: we might in the future use prio bits
5406 * and set skb->priority like in vlan_do_receive()
5407 * For the time being, just ignore Priority Code Point
5408 */
Michał Mirosławb18175242018-11-09 00:18:02 +01005409 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005410 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005411
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08005413
5414 /* deliver only exact match when indicated */
5415 if (likely(!deliver_exact)) {
5416 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5417 &ptype_base[ntohs(type) &
5418 PTYPE_HASH_MASK]);
5419 }
5420
5421 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5422 &orig_dev->ptype_specific);
5423
5424 if (unlikely(skb->dev != orig_dev)) {
5425 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5426 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 }
5428
5429 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04005430 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00005431 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01005432 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07005434drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05005435 if (!deliver_exact)
5436 atomic_long_inc(&skb->dev->rx_dropped);
5437 else
5438 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 kfree_skb(skb);
5440 /* Jamal, now you will not able to escape explaining
5441 * me how you were going to use this. :-)
5442 */
5443 ret = NET_RX_DROP;
5444 }
5445
Julian Anastasov2c17d272015-07-09 09:59:10 +03005446out:
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005447 /* The invariant here is that if *ppt_prev is not NULL
5448 * then skb should also be non-NULL.
5449 *
5450 * Apparently *ppt_prev assignment above holds this invariant due to
5451 * skb dereferencing near it.
5452 */
5453 *pskb = skb;
David S. Miller9754e292013-02-14 15:57:38 -05005454 return ret;
5455}
5456
Edward Cree88eb1942018-07-02 16:13:56 +01005457static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5458{
5459 struct net_device *orig_dev = skb->dev;
5460 struct packet_type *pt_prev = NULL;
5461 int ret;
5462
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005463 ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree88eb1942018-07-02 16:13:56 +01005464 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005465 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5466 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005467 return ret;
5468}
5469
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005470/**
5471 * netif_receive_skb_core - special purpose version of netif_receive_skb
5472 * @skb: buffer to process
5473 *
5474 * More direct receive version of netif_receive_skb(). It should
5475 * only be used by callers that have a need to skip RPS and Generic XDP.
Mauro Carvalho Chehab2de97802020-03-17 15:54:20 +01005476 * Caller must also take care of handling if ``(page_is_)pfmemalloc``.
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005477 *
5478 * This function may only be called from softirq context and interrupts
5479 * should be enabled.
5480 *
5481 * Return values (usually ignored):
5482 * NET_RX_SUCCESS: no congestion
5483 * NET_RX_DROP: packet was dropped
5484 */
5485int netif_receive_skb_core(struct sk_buff *skb)
5486{
5487 int ret;
5488
5489 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005490 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005491 rcu_read_unlock();
5492
5493 return ret;
5494}
5495EXPORT_SYMBOL(netif_receive_skb_core);
5496
Edward Cree88eb1942018-07-02 16:13:56 +01005497static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5498 struct packet_type *pt_prev,
5499 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005500{
5501 struct sk_buff *skb, *next;
5502
Edward Cree88eb1942018-07-02 16:13:56 +01005503 if (!pt_prev)
5504 return;
5505 if (list_empty(head))
5506 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005507 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005508 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5509 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005510 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005511 list_for_each_entry_safe(skb, next, head, list) {
5512 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005513 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005514 }
Edward Cree88eb1942018-07-02 16:13:56 +01005515}
5516
5517static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5518{
5519 /* Fast-path assumptions:
5520 * - There is no RX handler.
5521 * - Only one packet_type matches.
5522 * If either of these fails, we will end up doing some per-packet
5523 * processing in-line, then handling the 'last ptype' for the whole
5524 * sublist. This can't cause out-of-order delivery to any single ptype,
5525 * because the 'last ptype' must be constant across the sublist, and all
5526 * other ptypes are handled per-packet.
5527 */
5528 /* Current (common) ptype of sublist */
5529 struct packet_type *pt_curr = NULL;
5530 /* Current (common) orig_dev of sublist */
5531 struct net_device *od_curr = NULL;
5532 struct list_head sublist;
5533 struct sk_buff *skb, *next;
5534
Edward Cree9af86f92018-07-09 18:10:19 +01005535 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005536 list_for_each_entry_safe(skb, next, head, list) {
5537 struct net_device *orig_dev = skb->dev;
5538 struct packet_type *pt_prev = NULL;
5539
Edward Cree22f6bbb2018-12-04 17:37:57 +00005540 skb_list_del_init(skb);
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005541 __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01005542 if (!pt_prev)
5543 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005544 if (pt_curr != pt_prev || od_curr != orig_dev) {
5545 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005546 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5547 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005548 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005549 pt_curr = pt_prev;
5550 od_curr = orig_dev;
5551 }
Edward Cree9af86f92018-07-09 18:10:19 +01005552 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005553 }
5554
5555 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005556 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005557}
5558
David S. Miller9754e292013-02-14 15:57:38 -05005559static int __netif_receive_skb(struct sk_buff *skb)
5560{
5561 int ret;
5562
5563 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005564 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005565
5566 /*
5567 * PFMEMALLOC skbs are special, they should
5568 * - be delivered to SOCK_MEMALLOC sockets only
5569 * - stay away from userspace
5570 * - have bounded memory usage
5571 *
5572 * Use PF_MEMALLOC as this saves us from propagating the allocation
5573 * context down to all allocation sites.
5574 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005575 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005576 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005577 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005578 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005579 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005580
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 return ret;
5582}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005583
Edward Cree4ce00172018-07-02 16:13:40 +01005584static void __netif_receive_skb_list(struct list_head *head)
5585{
5586 unsigned long noreclaim_flag = 0;
5587 struct sk_buff *skb, *next;
5588 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5589
5590 list_for_each_entry_safe(skb, next, head, list) {
5591 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5592 struct list_head sublist;
5593
5594 /* Handle the previous sublist */
5595 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005596 if (!list_empty(&sublist))
5597 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005598 pfmemalloc = !pfmemalloc;
5599 /* See comments in __netif_receive_skb */
5600 if (pfmemalloc)
5601 noreclaim_flag = memalloc_noreclaim_save();
5602 else
5603 memalloc_noreclaim_restore(noreclaim_flag);
5604 }
5605 }
5606 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005607 if (!list_empty(head))
5608 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005609 /* Restore pflags */
5610 if (pfmemalloc)
5611 memalloc_noreclaim_restore(noreclaim_flag);
5612}
5613
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005614static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005615{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005616 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005617 struct bpf_prog *new = xdp->prog;
5618 int ret = 0;
5619
5620 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005621 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005622 rcu_assign_pointer(dev->xdp_prog, new);
5623 if (old)
5624 bpf_prog_put(old);
5625
5626 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005627 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005628 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005629 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005630 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005631 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005632 }
5633 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005634
David S. Millerb5cdae32017-04-18 15:36:58 -04005635 default:
5636 ret = -EINVAL;
5637 break;
5638 }
5639
5640 return ret;
5641}
5642
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005643static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005644{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005645 int ret;
5646
Eric Dumazet588f0332011-11-15 04:12:55 +00005647 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005648
Richard Cochranc1f19b52010-07-17 08:49:36 +00005649 if (skb_defer_rx_timestamp(skb))
5650 return NET_RX_SUCCESS;
5651
John Fastabendbbbe2112017-09-08 14:00:30 -07005652 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005653#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005654 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005655 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005656 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005657
Eric Dumazet3b098e22010-05-15 23:57:10 -07005658 if (cpu >= 0) {
5659 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5660 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005661 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005662 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005663 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005664#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005665 ret = __netif_receive_skb(skb);
5666 rcu_read_unlock();
5667 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005668}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005669
Edward Cree7da517a2018-07-02 16:13:24 +01005670static void netif_receive_skb_list_internal(struct list_head *head)
5671{
Edward Cree7da517a2018-07-02 16:13:24 +01005672 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005673 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005674
Edward Cree8c057ef2018-07-09 18:09:54 +01005675 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005676 list_for_each_entry_safe(skb, next, head, list) {
5677 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005678 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005679 if (!skb_defer_rx_timestamp(skb))
5680 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005681 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005682 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005683
Edward Cree7da517a2018-07-02 16:13:24 +01005684 rcu_read_lock();
5685#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005686 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005687 list_for_each_entry_safe(skb, next, head, list) {
5688 struct rps_dev_flow voidflow, *rflow = &voidflow;
5689 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5690
5691 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005692 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005693 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005694 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005695 }
5696 }
5697 }
5698#endif
5699 __netif_receive_skb_list(head);
5700 rcu_read_unlock();
5701}
5702
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005703/**
5704 * netif_receive_skb - process receive buffer from network
5705 * @skb: buffer to process
5706 *
5707 * netif_receive_skb() is the main receive data processing function.
5708 * It always succeeds. The buffer may be dropped during processing
5709 * for congestion control or by the protocol layers.
5710 *
5711 * This function may only be called from softirq context and interrupts
5712 * should be enabled.
5713 *
5714 * Return values (usually ignored):
5715 * NET_RX_SUCCESS: no congestion
5716 * NET_RX_DROP: packet was dropped
5717 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005718int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005719{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005720 int ret;
5721
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005722 trace_netif_receive_skb_entry(skb);
5723
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005724 ret = netif_receive_skb_internal(skb);
5725 trace_netif_receive_skb_exit(ret);
5726
5727 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005728}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005729EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005730
Edward Creef6ad8c12018-07-02 16:12:45 +01005731/**
5732 * netif_receive_skb_list - process many receive buffers from network
5733 * @head: list of skbs to process.
5734 *
Edward Cree7da517a2018-07-02 16:13:24 +01005735 * Since return value of netif_receive_skb() is normally ignored, and
5736 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005737 *
5738 * This function may only be called from softirq context and interrupts
5739 * should be enabled.
5740 */
5741void netif_receive_skb_list(struct list_head *head)
5742{
Edward Cree7da517a2018-07-02 16:13:24 +01005743 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005744
Edward Creeb9f463d2018-07-02 16:14:44 +01005745 if (list_empty(head))
5746 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005747 if (trace_netif_receive_skb_list_entry_enabled()) {
5748 list_for_each_entry(skb, head, list)
5749 trace_netif_receive_skb_list_entry(skb);
5750 }
Edward Cree7da517a2018-07-02 16:13:24 +01005751 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005752 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005753}
5754EXPORT_SYMBOL(netif_receive_skb_list);
5755
Wei Yongjunce1e2a72020-07-13 22:23:44 +08005756static DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005757
5758/* Network device is going away, flush any packets still pending */
5759static void flush_backlog(struct work_struct *work)
5760{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005761 struct sk_buff *skb, *tmp;
5762 struct softnet_data *sd;
5763
5764 local_bh_disable();
5765 sd = this_cpu_ptr(&softnet_data);
5766
5767 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005768 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005769 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005770 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005771 __skb_unlink(skb, &sd->input_pkt_queue);
Subash Abhinov Kasiviswanathan7df5cb752020-07-23 11:31:48 -06005772 dev_kfree_skb_irq(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005773 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005774 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005775 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005776 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005777 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005778
5779 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005780 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005781 __skb_unlink(skb, &sd->process_queue);
5782 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005783 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005784 }
5785 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005786 local_bh_enable();
5787}
5788
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005789static bool flush_required(int cpu)
5790{
5791#if IS_ENABLED(CONFIG_RPS)
5792 struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5793 bool do_flush;
5794
5795 local_irq_disable();
5796 rps_lock(sd);
5797
5798 /* as insertion into process_queue happens with the rps lock held,
5799 * process_queue access may race only with dequeue
5800 */
5801 do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
5802 !skb_queue_empty_lockless(&sd->process_queue);
5803 rps_unlock(sd);
5804 local_irq_enable();
5805
5806 return do_flush;
5807#endif
5808 /* without RPS we can't safely check input_pkt_queue: during a
5809 * concurrent remote skb_queue_splice() we can detect as empty both
5810 * input_pkt_queue and process_queue even if the latter could end-up
5811 * containing a lot of packets.
5812 */
5813 return true;
5814}
5815
Eric Dumazet41852492016-08-26 12:50:39 -07005816static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005817{
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005818 static cpumask_t flush_cpus;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005819 unsigned int cpu;
5820
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005821 /* since we are under rtnl lock protection we can use static data
5822 * for the cpumask and avoid allocating on stack the possibly
5823 * large mask
5824 */
5825 ASSERT_RTNL();
5826
Sebastian Andrzej Siewior372bbdd2021-08-03 16:16:06 +02005827 cpus_read_lock();
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005828
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005829 cpumask_clear(&flush_cpus);
5830 for_each_online_cpu(cpu) {
5831 if (flush_required(cpu)) {
5832 queue_work_on(cpu, system_highpri_wq,
5833 per_cpu_ptr(&flush_works, cpu));
5834 cpumask_set_cpu(cpu, &flush_cpus);
5835 }
5836 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005837
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005838 /* we can have in flight packet[s] on the cpus we are not flushing,
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -08005839 * synchronize_net() in unregister_netdevice_many() will take care of
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005840 * them
5841 */
5842 for_each_cpu(cpu, &flush_cpus)
Eric Dumazet41852492016-08-26 12:50:39 -07005843 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005844
Sebastian Andrzej Siewior372bbdd2021-08-03 16:16:06 +02005845 cpus_read_unlock();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005846}
5847
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005848/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5849static void gro_normal_list(struct napi_struct *napi)
5850{
5851 if (!napi->rx_count)
5852 return;
5853 netif_receive_skb_list_internal(&napi->rx_list);
5854 INIT_LIST_HEAD(&napi->rx_list);
5855 napi->rx_count = 0;
5856}
5857
5858/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5859 * pass the whole batch up to the stack.
5860 */
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005861static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb, int segs)
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005862{
5863 list_add_tail(&skb->list, &napi->rx_list);
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005864 napi->rx_count += segs;
5865 if (napi->rx_count >= gro_normal_batch)
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005866 gro_normal_list(napi);
5867}
5868
Gyumin Hwang16437712021-10-02 08:11:36 +00005869static void napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005870{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005871 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005872 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005873 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005874 int err = -ENOENT;
5875
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005876 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5877
Herbert Xufc59f9a2009-04-14 15:11:06 -07005878 if (NAPI_GRO_CB(skb)->count == 1) {
5879 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005880 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005881 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005882
5883 rcu_read_lock();
5884 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005885 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005886 continue;
5887
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005888 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5889 ipv6_gro_complete, inet_gro_complete,
5890 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005891 break;
5892 }
5893 rcu_read_unlock();
5894
5895 if (err) {
5896 WARN_ON(&ptype->list == head);
5897 kfree_skb(skb);
Gyumin Hwang16437712021-10-02 08:11:36 +00005898 return;
Herbert Xud565b0a2008-12-15 23:38:52 -08005899 }
5900
5901out:
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005902 gro_normal_one(napi, skb, NAPI_GRO_CB(skb)->count);
Herbert Xud565b0a2008-12-15 23:38:52 -08005903}
5904
Li RongQing6312fe72018-07-05 14:34:32 +08005905static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005906 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005907{
Li RongQing6312fe72018-07-05 14:34:32 +08005908 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005909 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005910
David Miller07d78362018-06-24 14:14:02 +09005911 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005912 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5913 return;
David S. Miller992cba72018-07-31 15:27:56 -07005914 skb_list_del_init(skb);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005915 napi_gro_complete(napi, skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005916 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005917 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005918
5919 if (!napi->gro_hash[index].count)
5920 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005921}
David Miller07d78362018-06-24 14:14:02 +09005922
Li RongQing6312fe72018-07-05 14:34:32 +08005923/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005924 * youngest packets at the head of it.
5925 * Complete skbs in reverse order to reduce latencies.
5926 */
5927void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5928{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005929 unsigned long bitmask = napi->gro_bitmask;
5930 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005931
Eric Dumazet42519ed2018-11-21 11:39:28 -08005932 while ((i = ffs(bitmask)) != 0) {
5933 bitmask >>= i;
5934 base += i;
5935 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005936 }
David Miller07d78362018-06-24 14:14:02 +09005937}
Eric Dumazet86cac582010-08-31 18:25:32 +00005938EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005939
Alexander Lobakin0ccf4d52021-03-13 20:30:05 +00005940static void gro_list_prepare(const struct list_head *head,
5941 const struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005942{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005943 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005944 u32 hash = skb_get_hash_raw(skb);
David Millerd4546c22018-06-24 14:13:49 +09005945 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005946
David Miller07d78362018-06-24 14:14:02 +09005947 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005948 unsigned long diffs;
5949
Tom Herbert0b4cec82014-01-15 08:58:06 -08005950 NAPI_GRO_CB(p)->flush = 0;
5951
5952 if (hash != skb_get_hash_raw(p)) {
5953 NAPI_GRO_CB(p)->same_flow = 0;
5954 continue;
5955 }
5956
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005957 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005958 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5959 if (skb_vlan_tag_present(p))
Tonghao Zhangfc5141c2019-11-22 20:38:01 +08005960 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005961 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005962 if (maclen == ETH_HLEN)
5963 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005964 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005965 else if (!diffs)
5966 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005967 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005968 maclen);
Paul Blakey8550ff82021-07-05 13:54:51 +03005969
Paolo Abenia4329342021-07-30 18:30:53 +02005970 /* in most common scenarions 'slow_gro' is 0
Paolo Abeni9efb4b52021-07-28 18:24:02 +02005971 * otherwise we are already on some slower paths
5972 * either skip all the infrequent tests altogether or
5973 * avoid trying too hard to skip each of them individually
5974 */
5975 if (!diffs && unlikely(skb->slow_gro | p->slow_gro)) {
Florian Fainelli9615fe32021-07-07 21:10:51 -07005976#if IS_ENABLED(CONFIG_SKB_EXTENSIONS) && IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
Paolo Abeni9efb4b52021-07-28 18:24:02 +02005977 struct tc_skb_ext *skb_ext;
5978 struct tc_skb_ext *p_ext;
5979#endif
5980
Paolo Abeni5e10da52021-07-28 18:24:03 +02005981 diffs |= p->sk != skb->sk;
Paolo Abeni9efb4b52021-07-28 18:24:02 +02005982 diffs |= skb_metadata_dst_cmp(p, skb);
5983 diffs |= skb_get_nfct(p) ^ skb_get_nfct(skb);
5984
5985#if IS_ENABLED(CONFIG_SKB_EXTENSIONS) && IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
5986 skb_ext = skb_ext_find(skb, TC_SKB_EXT);
5987 p_ext = skb_ext_find(p, TC_SKB_EXT);
Paul Blakey8550ff82021-07-05 13:54:51 +03005988
5989 diffs |= (!!p_ext) ^ (!!skb_ext);
5990 if (!diffs && unlikely(skb_ext))
5991 diffs |= p_ext->chain ^ skb_ext->chain;
Florian Fainelli9615fe32021-07-07 21:10:51 -07005992#endif
Paolo Abeni9efb4b52021-07-28 18:24:02 +02005993 }
Paul Blakey8550ff82021-07-05 13:54:51 +03005994
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005995 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005996 }
5997}
5998
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00005999static inline void skb_gro_reset_offset(struct sk_buff *skb, u32 nhoff)
Jerry Chu299603e82013-12-11 20:53:45 -08006000{
6001 const struct skb_shared_info *pinfo = skb_shinfo(skb);
6002 const skb_frag_t *frag0 = &pinfo->frags[0];
6003
6004 NAPI_GRO_CB(skb)->data_offset = 0;
6005 NAPI_GRO_CB(skb)->frag0 = NULL;
6006 NAPI_GRO_CB(skb)->frag0_len = 0;
6007
Alexander Lobakin8aef9982019-11-15 12:11:35 +03006008 if (!skb_headlen(skb) && pinfo->nr_frags &&
Eric Dumazet38ec4942021-04-13 05:41:35 -07006009 !PageHighMem(skb_frag_page(frag0)) &&
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00006010 (!NET_IP_ALIGN || !((skb_frag_off(frag0) + nhoff) & 3))) {
Jerry Chu299603e82013-12-11 20:53:45 -08006011 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08006012 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
6013 skb_frag_size(frag0),
6014 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08006015 }
6016}
6017
Eric Dumazeta50e2332014-03-29 21:28:21 -07006018static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
6019{
6020 struct skb_shared_info *pinfo = skb_shinfo(skb);
6021
6022 BUG_ON(skb->end - skb->tail < grow);
6023
6024 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
6025
6026 skb->data_len -= grow;
6027 skb->tail += grow;
6028
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07006029 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006030 skb_frag_size_sub(&pinfo->frags[0], grow);
6031
6032 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
6033 skb_frag_unref(skb, 0);
6034 memmove(pinfo->frags, pinfo->frags + 1,
6035 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
6036 }
6037}
6038
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006039static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09006040{
Li RongQing6312fe72018-07-05 14:34:32 +08006041 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09006042
Li RongQing6312fe72018-07-05 14:34:32 +08006043 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09006044
Li RongQing6312fe72018-07-05 14:34:32 +08006045 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09006046 * impossible.
6047 */
6048 if (WARN_ON_ONCE(!oldest))
6049 return;
6050
Li RongQingd9f37d02018-07-13 14:41:36 +08006051 /* Do not adjust napi->gro_hash[].count, caller is adding a new
6052 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09006053 */
David S. Millerece23712018-10-28 10:35:12 -07006054 skb_list_del_init(oldest);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006055 napi_gro_complete(napi, oldest);
David Miller07d78362018-06-24 14:14:02 +09006056}
6057
Rami Rosenbb728822012-11-28 21:55:25 +00006058static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08006059{
Alexander Lobakind0eed5c2021-03-13 20:30:14 +00006060 u32 bucket = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
6061 struct gro_list *gro_list = &napi->gro_hash[bucket];
David Millerd4546c22018-06-24 14:13:49 +09006062 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00006063 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08006064 __be16 type = skb->protocol;
David Millerd4546c22018-06-24 14:13:49 +09006065 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006066 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09006067 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006068 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08006069
David S. Millerb5cdae32017-04-18 15:36:58 -04006070 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08006071 goto normal;
6072
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006073 gro_list_prepare(&gro_list->list, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00006074
Herbert Xud565b0a2008-12-15 23:38:52 -08006075 rcu_read_lock();
6076 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00006077 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08006078 continue;
6079
Herbert Xu86911732009-01-29 14:19:50 +00006080 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00006081 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08006082 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08006083 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08006084 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07006085 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02006086 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07006087 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04006088 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08006089 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006090
Tom Herbert662880f2014-08-27 21:26:56 -07006091 /* Setup for GRO checksum validation */
6092 switch (skb->ip_summed) {
6093 case CHECKSUM_COMPLETE:
6094 NAPI_GRO_CB(skb)->csum = skb->csum;
6095 NAPI_GRO_CB(skb)->csum_valid = 1;
6096 NAPI_GRO_CB(skb)->csum_cnt = 0;
6097 break;
6098 case CHECKSUM_UNNECESSARY:
6099 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
6100 NAPI_GRO_CB(skb)->csum_valid = 0;
6101 break;
6102 default:
6103 NAPI_GRO_CB(skb)->csum_cnt = 0;
6104 NAPI_GRO_CB(skb)->csum_valid = 0;
6105 }
Herbert Xud565b0a2008-12-15 23:38:52 -08006106
Paolo Abeniaaa5d902018-12-14 11:51:58 +01006107 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
6108 ipv6_gro_receive, inet_gro_receive,
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006109 &gro_list->list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08006110 break;
6111 }
6112 rcu_read_unlock();
6113
6114 if (&ptype->list == head)
6115 goto normal;
6116
Masahiro Yamada45586c72020-02-03 17:37:45 -08006117 if (PTR_ERR(pp) == -EINPROGRESS) {
Steffen Klassert25393d32017-02-15 09:39:44 +01006118 ret = GRO_CONSUMED;
6119 goto ok;
6120 }
6121
Herbert Xu0da2afd52008-12-26 14:57:42 -08006122 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006123 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08006124
Herbert Xud565b0a2008-12-15 23:38:52 -08006125 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07006126 skb_list_del_init(pp);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006127 napi_gro_complete(napi, pp);
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006128 gro_list->count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08006129 }
6130
Herbert Xu0da2afd52008-12-26 14:57:42 -08006131 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08006132 goto ok;
6133
Eric Dumazet600adc12014-01-09 14:12:19 -08006134 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08006135 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08006136
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006137 if (unlikely(gro_list->count >= MAX_GRO_SKBS))
6138 gro_flush_oldest(napi, &gro_list->list);
6139 else
6140 gro_list->count++;
6141
Herbert Xud565b0a2008-12-15 23:38:52 -08006142 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00006143 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07006144 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00006145 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006146 list_add(&skb->list, &gro_list->list);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006147 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08006148
Herbert Xuad0f99042009-02-01 01:24:55 -08006149pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006150 grow = skb_gro_offset(skb) - skb_headlen(skb);
6151 if (grow > 0)
6152 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08006153ok:
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006154 if (gro_list->count) {
Alexander Lobakind0eed5c2021-03-13 20:30:14 +00006155 if (!test_bit(bucket, &napi->gro_bitmask))
6156 __set_bit(bucket, &napi->gro_bitmask);
6157 } else if (test_bit(bucket, &napi->gro_bitmask)) {
6158 __clear_bit(bucket, &napi->gro_bitmask);
Li RongQingd9f37d02018-07-13 14:41:36 +08006159 }
6160
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006161 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006162
6163normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08006164 ret = GRO_NORMAL;
6165 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08006166}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006167
Jerry Chubf5a7552014-01-07 10:23:19 -08006168struct packet_offload *gro_find_receive_by_type(__be16 type)
6169{
6170 struct list_head *offload_head = &offload_base;
6171 struct packet_offload *ptype;
6172
6173 list_for_each_entry_rcu(ptype, offload_head, list) {
6174 if (ptype->type != type || !ptype->callbacks.gro_receive)
6175 continue;
6176 return ptype;
6177 }
6178 return NULL;
6179}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006180EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08006181
6182struct packet_offload *gro_find_complete_by_type(__be16 type)
6183{
6184 struct list_head *offload_head = &offload_base;
6185 struct packet_offload *ptype;
6186
6187 list_for_each_entry_rcu(ptype, offload_head, list) {
6188 if (ptype->type != type || !ptype->callbacks.gro_complete)
6189 continue;
6190 return ptype;
6191 }
6192 return NULL;
6193}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006194EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006195
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006196static gro_result_t napi_skb_finish(struct napi_struct *napi,
6197 struct sk_buff *skb,
6198 gro_result_t ret)
Herbert Xu5d38a072009-01-04 16:13:40 -08006199{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006200 switch (ret) {
6201 case GRO_NORMAL:
Eric Dumazet8dc1c442021-02-04 13:31:46 -08006202 gro_normal_one(napi, skb, 1);
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006203 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006204
Eric Dumazetdaa86542012-04-19 07:07:40 +00006205 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02006206 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6207 napi_skb_free_stolen_head(skb);
Antoine Tenart28b34f02021-07-09 18:16:09 +02006208 else if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
6209 __kfree_skb(skb);
Michal Kubečeke44699d2017-06-29 11:13:36 +02006210 else
Alexander Lobakin9243adf2021-02-13 14:13:09 +00006211 __kfree_skb_defer(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00006212 break;
6213
Ben Hutchings5b252f02009-10-29 07:17:09 +00006214 case GRO_HELD:
6215 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006216 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006217 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006218 }
6219
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006220 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006221}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006222
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006223gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006224{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006225 gro_result_t ret;
6226
Eric Dumazet93f93a42015-11-18 06:30:59 -08006227 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006228 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00006229
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00006230 skb_gro_reset_offset(skb, 0);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006231
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006232 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006233 trace_napi_gro_receive_exit(ret);
6234
6235 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006236}
6237EXPORT_SYMBOL(napi_gro_receive);
6238
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00006239static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006240{
Eric Dumazet93a35f52014-10-23 06:30:30 -07006241 if (unlikely(skb->pfmemalloc)) {
6242 consume_skb(skb);
6243 return;
6244 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006245 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00006246 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
6247 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01006248 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08006249 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08006250 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08006251
6252 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
6253 skb->pkt_type = PACKET_HOST;
6254
Jerry Chuc3caf112014-07-14 15:54:46 -07006255 skb->encapsulation = 0;
6256 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07006257 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Paolo Abeni9efb4b52021-07-28 18:24:02 +02006258 if (unlikely(skb->slow_gro)) {
Paolo Abeni5e10da52021-07-28 18:24:03 +02006259 skb_orphan(skb);
Paolo Abeni9efb4b52021-07-28 18:24:02 +02006260 skb_ext_reset(skb);
6261 nf_reset_ct(skb);
6262 skb->slow_gro = 0;
6263 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006264
6265 napi->skb = skb;
6266}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006267
Herbert Xu76620aa2009-04-16 02:02:07 -07006268struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08006269{
Herbert Xu5d38a072009-01-04 16:13:40 -08006270 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08006271
6272 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08006273 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08006274 if (skb) {
6275 napi->skb = skb;
6276 skb_mark_napi_id(skb, napi);
6277 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006278 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006279 return skb;
6280}
Herbert Xu76620aa2009-04-16 02:02:07 -07006281EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006282
Eric Dumazeta50e2332014-03-29 21:28:21 -07006283static gro_result_t napi_frags_finish(struct napi_struct *napi,
6284 struct sk_buff *skb,
6285 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006286{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006287 switch (ret) {
6288 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006289 case GRO_HELD:
6290 __skb_push(skb, ETH_HLEN);
6291 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01006292 if (ret == GRO_NORMAL)
Eric Dumazet8dc1c442021-02-04 13:31:46 -08006293 gro_normal_one(napi, skb, 1);
Herbert Xu86911732009-01-29 14:19:50 +00006294 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006295
Michal Kubečeke44699d2017-06-29 11:13:36 +02006296 case GRO_MERGED_FREE:
6297 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6298 napi_skb_free_stolen_head(skb);
6299 else
6300 napi_reuse_skb(napi, skb);
6301 break;
6302
Ben Hutchings5b252f02009-10-29 07:17:09 +00006303 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006304 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006305 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006306 }
6307
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006308 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006309}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006310
Eric Dumazeta50e2332014-03-29 21:28:21 -07006311/* Upper GRO stack assumes network header starts at gro_offset=0
6312 * Drivers could call both napi_gro_frags() and napi_gro_receive()
6313 * We copy ethernet header into skb->data to have a common layout.
6314 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00006315static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006316{
Herbert Xu76620aa2009-04-16 02:02:07 -07006317 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006318 const struct ethhdr *eth;
6319 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07006320
6321 napi->skb = NULL;
6322
Eric Dumazeta50e2332014-03-29 21:28:21 -07006323 skb_reset_mac_header(skb);
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00006324 skb_gro_reset_offset(skb, hlen);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006325
Eric Dumazeta50e2332014-03-29 21:28:21 -07006326 if (unlikely(skb_gro_header_hard(skb, hlen))) {
6327 eth = skb_gro_header_slow(skb, hlen, 0);
6328 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04006329 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
6330 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006331 napi_reuse_skb(napi, skb);
6332 return NULL;
6333 }
6334 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07006335 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006336 gro_pull_from_frag0(skb, hlen);
6337 NAPI_GRO_CB(skb)->frag0 += hlen;
6338 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07006339 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07006340 __skb_pull(skb, hlen);
6341
6342 /*
6343 * This works because the only protocols we care about don't require
6344 * special handling.
6345 * We'll fix it up properly in napi_frags_finish()
6346 */
6347 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07006348
Herbert Xu76620aa2009-04-16 02:02:07 -07006349 return skb;
6350}
Herbert Xu76620aa2009-04-16 02:02:07 -07006351
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006352gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07006353{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006354 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07006355 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006356
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006357 trace_napi_gro_frags_entry(skb);
6358
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006359 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6360 trace_napi_gro_frags_exit(ret);
6361
6362 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08006363}
6364EXPORT_SYMBOL(napi_gro_frags);
6365
Tom Herbert573e8fc2014-08-22 13:33:47 -07006366/* Compute the checksum from gro_offset and return the folded value
6367 * after adding in any pseudo checksum.
6368 */
6369__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6370{
6371 __wsum wsum;
6372 __sum16 sum;
6373
6374 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6375
6376 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6377 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08006378 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07006379 if (likely(!sum)) {
6380 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6381 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08006382 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07006383 }
6384
6385 NAPI_GRO_CB(skb)->csum = wsum;
6386 NAPI_GRO_CB(skb)->csum_valid = 1;
6387
6388 return sum;
6389}
6390EXPORT_SYMBOL(__skb_gro_checksum_complete);
6391
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306392static void net_rps_send_ipi(struct softnet_data *remsd)
6393{
6394#ifdef CONFIG_RPS
6395 while (remsd) {
6396 struct softnet_data *next = remsd->rps_ipi_next;
6397
6398 if (cpu_online(remsd->cpu))
6399 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6400 remsd = next;
6401 }
6402#endif
6403}
6404
Eric Dumazete326bed2010-04-22 00:22:45 -07006405/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08006406 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07006407 * Note: called with local irq disabled, but exits with local irq enabled.
6408 */
6409static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6410{
6411#ifdef CONFIG_RPS
6412 struct softnet_data *remsd = sd->rps_ipi_list;
6413
6414 if (remsd) {
6415 sd->rps_ipi_list = NULL;
6416
6417 local_irq_enable();
6418
6419 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306420 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07006421 } else
6422#endif
6423 local_irq_enable();
6424}
6425
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006426static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6427{
6428#ifdef CONFIG_RPS
6429 return sd->rps_ipi_list != NULL;
6430#else
6431 return false;
6432#endif
6433}
6434
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006435static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006437 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006438 bool again = true;
6439 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440
Eric Dumazete326bed2010-04-22 00:22:45 -07006441 /* Check if we have pending ipi, its better to send them now,
6442 * not waiting net_rx_action() end.
6443 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006444 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07006445 local_irq_disable();
6446 net_rps_action_and_irq_enable(sd);
6447 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006448
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01006449 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006450 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
Changli Gao6e7676c2010-04-27 15:07:33 -07006453 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03006454 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07006455 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03006456 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00006457 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006458 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00006459 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006460
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006463 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006464 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07006465 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006466 /*
6467 * Inline a custom version of __napi_complete().
6468 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07006469 * and NAPI_STATE_SCHED is the only possible flag set
6470 * on backlog.
6471 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006472 * and we dont need an smp_mb() memory barrier.
6473 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006474 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006475 again = false;
6476 } else {
6477 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6478 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07006479 }
6480 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006481 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006484 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006485}
6486
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006487/**
6488 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006489 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006490 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006491 * The entry's receive function will be scheduled to run.
6492 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006493 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08006494void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006495{
6496 unsigned long flags;
6497
6498 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05006499 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006500 local_irq_restore(flags);
6501}
6502EXPORT_SYMBOL(__napi_schedule);
6503
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006504/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006505 * napi_schedule_prep - check if napi can be scheduled
6506 * @n: napi context
6507 *
6508 * Test if NAPI routine is already running, and if not mark
Jonathan Neuschäferee1a4c82020-09-05 20:32:18 +02006509 * it as running. This is used as a condition variable to
Eric Dumazet39e6c822017-02-28 10:34:50 -08006510 * insure only one NAPI poll instance runs. We also make
6511 * sure there is no pending NAPI disable.
6512 */
6513bool napi_schedule_prep(struct napi_struct *n)
6514{
6515 unsigned long val, new;
6516
6517 do {
6518 val = READ_ONCE(n->state);
6519 if (unlikely(val & NAPIF_STATE_DISABLE))
6520 return false;
6521 new = val | NAPIF_STATE_SCHED;
6522
6523 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6524 * This was suggested by Alexander Duyck, as compiler
6525 * emits better code than :
6526 * if (val & NAPIF_STATE_SCHED)
6527 * new |= NAPIF_STATE_MISSED;
6528 */
6529 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6530 NAPIF_STATE_MISSED;
6531 } while (cmpxchg(&n->state, val, new) != val);
6532
6533 return !(val & NAPIF_STATE_SCHED);
6534}
6535EXPORT_SYMBOL(napi_schedule_prep);
6536
6537/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006538 * __napi_schedule_irqoff - schedule for receive
6539 * @n: entry to schedule
6540 *
Sebastian Andrzej Siewior8380c812021-05-12 23:43:24 +02006541 * Variant of __napi_schedule() assuming hard irqs are masked.
6542 *
6543 * On PREEMPT_RT enabled kernels this maps to __napi_schedule()
6544 * because the interrupt disabled assumption might not be true
6545 * due to force-threaded interrupts and spinlock substitution.
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006546 */
6547void __napi_schedule_irqoff(struct napi_struct *n)
6548{
Sebastian Andrzej Siewior8380c812021-05-12 23:43:24 +02006549 if (!IS_ENABLED(CONFIG_PREEMPT_RT))
6550 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6551 else
6552 __napi_schedule(n);
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006553}
6554EXPORT_SYMBOL(__napi_schedule_irqoff);
6555
Eric Dumazet364b6052016-11-15 10:15:13 -08006556bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006557{
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006558 unsigned long flags, val, new, timeout = 0;
6559 bool ret = true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006560
6561 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006562 * 1) Don't let napi dequeue from the cpu poll list
6563 * just in case its running on a different cpu.
6564 * 2) If we are busy polling, do nothing here, we have
6565 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006566 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006567 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6568 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006569 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006570
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006571 if (work_done) {
6572 if (n->gro_bitmask)
Eric Dumazet7e417a62020-04-22 09:13:28 -07006573 timeout = READ_ONCE(n->dev->gro_flush_timeout);
6574 n->defer_hard_irqs_count = READ_ONCE(n->dev->napi_defer_hard_irqs);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006575 }
6576 if (n->defer_hard_irqs_count > 0) {
6577 n->defer_hard_irqs_count--;
Eric Dumazet7e417a62020-04-22 09:13:28 -07006578 timeout = READ_ONCE(n->dev->gro_flush_timeout);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006579 if (timeout)
6580 ret = false;
6581 }
6582 if (n->gro_bitmask) {
Paolo Abeni605108a2018-11-21 18:21:35 +01006583 /* When the NAPI instance uses a timeout and keeps postponing
6584 * it, we need to bound somehow the time packets are kept in
6585 * the GRO layer
6586 */
6587 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006588 }
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006589
6590 gro_normal_list(n);
6591
Eric Dumazet02c16022017-02-04 15:25:02 -08006592 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006593 /* If n->poll_list is not empty, we need to mask irqs */
6594 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006595 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006596 local_irq_restore(flags);
6597 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006598
6599 do {
6600 val = READ_ONCE(n->state);
6601
6602 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6603
Björn Töpel7fd32532020-11-30 19:51:56 +01006604 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED |
Wei Wangcb038352021-03-16 15:36:47 -07006605 NAPIF_STATE_SCHED_THREADED |
Björn Töpel7fd32532020-11-30 19:51:56 +01006606 NAPIF_STATE_PREFER_BUSY_POLL);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006607
6608 /* If STATE_MISSED was set, leave STATE_SCHED set,
6609 * because we will call napi->poll() one more time.
6610 * This C code was suggested by Alexander Duyck to help gcc.
6611 */
6612 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6613 NAPIF_STATE_SCHED;
6614 } while (cmpxchg(&n->state, val, new) != val);
6615
6616 if (unlikely(val & NAPIF_STATE_MISSED)) {
6617 __napi_schedule(n);
6618 return false;
6619 }
6620
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006621 if (timeout)
6622 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6623 HRTIMER_MODE_REL_PINNED);
6624 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006625}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006626EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006627
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006628/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006629static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006630{
6631 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6632 struct napi_struct *napi;
6633
6634 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6635 if (napi->napi_id == napi_id)
6636 return napi;
6637
6638 return NULL;
6639}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006640
6641#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006642
Björn Töpel7fd32532020-11-30 19:51:56 +01006643static void __busy_poll_stop(struct napi_struct *napi, bool skip_schedule)
Eric Dumazet217f6972016-11-15 10:15:11 -08006644{
Björn Töpel7fd32532020-11-30 19:51:56 +01006645 if (!skip_schedule) {
6646 gro_normal_list(napi);
6647 __napi_schedule(napi);
6648 return;
6649 }
6650
6651 if (napi->gro_bitmask) {
6652 /* flush too old packets
6653 * If HZ < 1000, flush all packets.
6654 */
6655 napi_gro_flush(napi, HZ >= 1000);
6656 }
6657
6658 gro_normal_list(napi);
6659 clear_bit(NAPI_STATE_SCHED, &napi->state);
6660}
6661
Björn Töpel7c951caf2020-11-30 19:51:57 +01006662static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock, bool prefer_busy_poll,
6663 u16 budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006664{
6665 bool skip_schedule = false;
6666 unsigned long timeout;
Eric Dumazet217f6972016-11-15 10:15:11 -08006667 int rc;
6668
Eric Dumazet39e6c822017-02-28 10:34:50 -08006669 /* Busy polling means there is a high chance device driver hard irq
6670 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6671 * set in napi_schedule_prep().
6672 * Since we are about to call napi->poll() once more, we can safely
6673 * clear NAPI_STATE_MISSED.
6674 *
6675 * Note: x86 could use a single "lock and ..." instruction
6676 * to perform these two clear_bit()
6677 */
6678 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006679 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6680
6681 local_bh_disable();
6682
Björn Töpel7fd32532020-11-30 19:51:56 +01006683 if (prefer_busy_poll) {
6684 napi->defer_hard_irqs_count = READ_ONCE(napi->dev->napi_defer_hard_irqs);
6685 timeout = READ_ONCE(napi->dev->gro_flush_timeout);
6686 if (napi->defer_hard_irqs_count && timeout) {
6687 hrtimer_start(&napi->timer, ns_to_ktime(timeout), HRTIMER_MODE_REL_PINNED);
6688 skip_schedule = true;
6689 }
6690 }
6691
Eric Dumazet217f6972016-11-15 10:15:11 -08006692 /* All we really want here is to re-enable device interrupts.
6693 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6694 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006695 rc = napi->poll(napi, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006696 /* We can't gro_normal_list() here, because napi->poll() might have
6697 * rearmed the napi (napi_complete_done()) in which case it could
6698 * already be running on another CPU.
6699 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006700 trace_napi_poll(napi, rc, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006701 netpoll_poll_unlock(have_poll_lock);
Björn Töpel7c951caf2020-11-30 19:51:57 +01006702 if (rc == budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006703 __busy_poll_stop(napi, skip_schedule);
Eric Dumazet217f6972016-11-15 10:15:11 -08006704 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006705}
6706
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006707void napi_busy_loop(unsigned int napi_id,
6708 bool (*loop_end)(void *, unsigned long),
Björn Töpel7c951caf2020-11-30 19:51:57 +01006709 void *loop_end_arg, bool prefer_busy_poll, u16 budget)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006710{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006711 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006712 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006713 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006714 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006715
6716restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006717 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006718
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006719 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006720
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006721 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006722 if (!napi)
6723 goto out;
6724
Eric Dumazet217f6972016-11-15 10:15:11 -08006725 preempt_disable();
6726 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006727 int work = 0;
6728
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006729 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006730 if (!napi_poll) {
6731 unsigned long val = READ_ONCE(napi->state);
6732
6733 /* If multiple threads are competing for this napi,
6734 * we avoid dirtying napi->state as much as we can.
6735 */
6736 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
Björn Töpel7fd32532020-11-30 19:51:56 +01006737 NAPIF_STATE_IN_BUSY_POLL)) {
6738 if (prefer_busy_poll)
6739 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006740 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006741 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006742 if (cmpxchg(&napi->state, val,
6743 val | NAPIF_STATE_IN_BUSY_POLL |
Björn Töpel7fd32532020-11-30 19:51:56 +01006744 NAPIF_STATE_SCHED) != val) {
6745 if (prefer_busy_poll)
6746 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006747 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006748 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006749 have_poll_lock = netpoll_poll_lock(napi);
6750 napi_poll = napi->poll;
6751 }
Björn Töpel7c951caf2020-11-30 19:51:57 +01006752 work = napi_poll(napi, budget);
6753 trace_napi_poll(napi, work, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006754 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006755count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006756 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006757 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006758 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006759 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006760
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006761 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006762 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006763
Eric Dumazet217f6972016-11-15 10:15:11 -08006764 if (unlikely(need_resched())) {
6765 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006766 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006767 preempt_enable();
6768 rcu_read_unlock();
6769 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006770 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006771 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006772 goto restart;
6773 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006774 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006775 }
6776 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006777 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006778 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006779out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006780 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006781}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006782EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006783
6784#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006785
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006786static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006787{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006788 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006789 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006790
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006791 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006792
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006793 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006794 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006795 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6796 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006797 } while (napi_by_id(napi_gen_id));
6798 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006799
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006800 hlist_add_head_rcu(&napi->napi_hash_node,
6801 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006802
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006803 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006804}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006805
6806/* Warning : caller is responsible to make sure rcu grace period
6807 * is respected before freeing memory containing @napi
6808 */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006809static void napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006810{
6811 spin_lock(&napi_hash_lock);
6812
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006813 hlist_del_init_rcu(&napi->napi_hash_node);
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006814
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006815 spin_unlock(&napi_hash_lock);
6816}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006817
Eric Dumazet3b47d302014-11-06 21:09:44 -08006818static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6819{
6820 struct napi_struct *napi;
6821
6822 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006823
6824 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6825 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6826 */
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006827 if (!napi_disable_pending(napi) &&
Björn Töpel7fd32532020-11-30 19:51:56 +01006828 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state)) {
6829 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006830 __napi_schedule_irqoff(napi);
Björn Töpel7fd32532020-11-30 19:51:56 +01006831 }
Eric Dumazet3b47d302014-11-06 21:09:44 -08006832
6833 return HRTIMER_NORESTART;
6834}
6835
David S. Miller7c4ec742018-07-20 23:37:55 -07006836static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006837{
David Miller07d78362018-06-24 14:14:02 +09006838 int i;
6839
Li RongQing6312fe72018-07-05 14:34:32 +08006840 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6841 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6842 napi->gro_hash[i].count = 0;
6843 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006844 napi->gro_bitmask = 0;
6845}
6846
Wei Wang5fdd2f02021-02-08 11:34:10 -08006847int dev_set_threaded(struct net_device *dev, bool threaded)
6848{
6849 struct napi_struct *napi;
6850 int err = 0;
6851
6852 if (dev->threaded == threaded)
6853 return 0;
6854
6855 if (threaded) {
6856 list_for_each_entry(napi, &dev->napi_list, dev_list) {
6857 if (!napi->thread) {
6858 err = napi_kthread_create(napi);
6859 if (err) {
6860 threaded = false;
6861 break;
6862 }
6863 }
6864 }
6865 }
6866
6867 dev->threaded = threaded;
6868
6869 /* Make sure kthread is created before THREADED bit
6870 * is set.
6871 */
6872 smp_mb__before_atomic();
6873
6874 /* Setting/unsetting threaded mode on a napi might not immediately
6875 * take effect, if the current napi instance is actively being
6876 * polled. In this case, the switch between threaded mode and
6877 * softirq mode will happen in the next round of napi_schedule().
6878 * This should not cause hiccups/stalls to the live traffic.
6879 */
6880 list_for_each_entry(napi, &dev->napi_list, dev_list) {
6881 if (threaded)
6882 set_bit(NAPI_STATE_THREADED, &napi->state);
6883 else
6884 clear_bit(NAPI_STATE_THREADED, &napi->state);
6885 }
6886
6887 return err;
6888}
Lorenzo Bianconi8f648602021-03-14 15:49:19 +01006889EXPORT_SYMBOL(dev_set_threaded);
Wei Wang5fdd2f02021-02-08 11:34:10 -08006890
David S. Miller7c4ec742018-07-20 23:37:55 -07006891void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6892 int (*poll)(struct napi_struct *, int), int weight)
6893{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006894 if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
6895 return;
6896
David S. Miller7c4ec742018-07-20 23:37:55 -07006897 INIT_LIST_HEAD(&napi->poll_list);
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006898 INIT_HLIST_NODE(&napi->napi_hash_node);
David S. Miller7c4ec742018-07-20 23:37:55 -07006899 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6900 napi->timer.function = napi_watchdog;
6901 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006902 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006903 INIT_LIST_HEAD(&napi->rx_list);
6904 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006905 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006906 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006907 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6908 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006909 napi->weight = weight;
Herbert Xud565b0a2008-12-15 23:38:52 -08006910 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006911#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006912 napi->poll_owner = -1;
6913#endif
6914 set_bit(NAPI_STATE_SCHED, &napi->state);
Jakub Kicinski96e97bc2020-08-26 12:40:06 -07006915 set_bit(NAPI_STATE_NPSVC, &napi->state);
6916 list_add_rcu(&napi->dev_list, &dev->napi_list);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006917 napi_hash_add(napi);
Wei Wang29863d42021-02-08 11:34:09 -08006918 /* Create kthread for this napi if dev->threaded is set.
6919 * Clear dev->threaded if kthread creation failed so that
6920 * threaded mode will not be enabled in napi_enable().
6921 */
6922 if (dev->threaded && napi_kthread_create(napi))
6923 dev->threaded = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006924}
6925EXPORT_SYMBOL(netif_napi_add);
6926
Eric Dumazet3b47d302014-11-06 21:09:44 -08006927void napi_disable(struct napi_struct *n)
6928{
Jakub Kicinski719c5712021-09-24 13:24:53 -07006929 unsigned long val, new;
6930
Eric Dumazet3b47d302014-11-06 21:09:44 -08006931 might_sleep();
6932 set_bit(NAPI_STATE_DISABLE, &n->state);
6933
Alexander Lobakin0315a072021-11-10 20:56:05 +01006934 for ( ; ; ) {
Jakub Kicinski719c5712021-09-24 13:24:53 -07006935 val = READ_ONCE(n->state);
6936 if (val & (NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC)) {
6937 usleep_range(20, 200);
6938 continue;
6939 }
6940
6941 new = val | NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC;
6942 new &= ~(NAPIF_STATE_THREADED | NAPIF_STATE_PREFER_BUSY_POLL);
Alexander Lobakin0315a072021-11-10 20:56:05 +01006943
6944 if (cmpxchg(&n->state, val, new) == val)
6945 break;
6946 }
Eric Dumazet3b47d302014-11-06 21:09:44 -08006947
6948 hrtimer_cancel(&n->timer);
6949
6950 clear_bit(NAPI_STATE_DISABLE, &n->state);
6951}
6952EXPORT_SYMBOL(napi_disable);
6953
Wei Wang29863d42021-02-08 11:34:09 -08006954/**
6955 * napi_enable - enable NAPI scheduling
6956 * @n: NAPI context
6957 *
6958 * Resume NAPI from being scheduled on this context.
6959 * Must be paired with napi_disable.
6960 */
6961void napi_enable(struct napi_struct *n)
6962{
Xuan Zhuo37659962021-09-18 16:52:32 +08006963 unsigned long val, new;
6964
6965 do {
6966 val = READ_ONCE(n->state);
6967 BUG_ON(!test_bit(NAPI_STATE_SCHED, &val));
6968
6969 new = val & ~(NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC);
6970 if (n->dev->threaded && n->thread)
6971 new |= NAPIF_STATE_THREADED;
6972 } while (cmpxchg(&n->state, val, new) != val);
Wei Wang29863d42021-02-08 11:34:09 -08006973}
6974EXPORT_SYMBOL(napi_enable);
6975
David Miller07d78362018-06-24 14:14:02 +09006976static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006977{
David Miller07d78362018-06-24 14:14:02 +09006978 int i;
David Millerd4546c22018-06-24 14:13:49 +09006979
David Miller07d78362018-06-24 14:14:02 +09006980 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6981 struct sk_buff *skb, *n;
6982
Li RongQing6312fe72018-07-05 14:34:32 +08006983 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006984 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006985 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006986 }
David Millerd4546c22018-06-24 14:13:49 +09006987}
6988
Eric Dumazet93d05d42015-11-18 06:31:03 -08006989/* Must be called in process context */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006990void __netif_napi_del(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006991{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006992 if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
6993 return;
6994
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006995 napi_hash_del(napi);
Jakub Kicinski5251ef82020-09-09 10:37:53 -07006996 list_del_rcu(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006997 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006998
David Miller07d78362018-06-24 14:14:02 +09006999 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08007000 napi->gro_bitmask = 0;
Wei Wang29863d42021-02-08 11:34:09 -08007001
7002 if (napi->thread) {
7003 kthread_stop(napi->thread);
7004 napi->thread = NULL;
7005 }
Herbert Xud565b0a2008-12-15 23:38:52 -08007006}
Jakub Kicinski5198d5452020-09-09 10:37:51 -07007007EXPORT_SYMBOL(__netif_napi_del);
Herbert Xud565b0a2008-12-15 23:38:52 -08007008
Felix Fietkau898f8012021-02-08 11:34:08 -08007009static int __napi_poll(struct napi_struct *n, bool *repoll)
Herbert Xu726ce702014-12-21 07:16:21 +11007010{
Herbert Xu726ce702014-12-21 07:16:21 +11007011 int work, weight;
7012
Herbert Xu726ce702014-12-21 07:16:21 +11007013 weight = n->weight;
7014
7015 /* This NAPI_STATE_SCHED test is for avoiding a race
7016 * with netpoll's poll_napi(). Only the entity which
7017 * obtains the lock and sees NAPI_STATE_SCHED set will
7018 * actually make the ->poll() call. Therefore we avoid
7019 * accidentally calling ->poll() when NAPI is not scheduled.
7020 */
7021 work = 0;
7022 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
7023 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02007024 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11007025 }
7026
Eric Dumazet427d5832020-06-17 09:40:51 -07007027 if (unlikely(work > weight))
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07007028 netdev_err_once(n->dev, "NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
7029 n->poll, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11007030
7031 if (likely(work < weight))
Felix Fietkau898f8012021-02-08 11:34:08 -08007032 return work;
Herbert Xu726ce702014-12-21 07:16:21 +11007033
7034 /* Drivers must not modify the NAPI state if they
7035 * consume the entire weight. In such cases this code
7036 * still "owns" the NAPI instance and therefore can
7037 * move the instance around on the list at-will.
7038 */
7039 if (unlikely(napi_disable_pending(n))) {
7040 napi_complete(n);
Felix Fietkau898f8012021-02-08 11:34:08 -08007041 return work;
Herbert Xu726ce702014-12-21 07:16:21 +11007042 }
7043
Björn Töpel7fd32532020-11-30 19:51:56 +01007044 /* The NAPI context has more processing work, but busy-polling
7045 * is preferred. Exit early.
7046 */
7047 if (napi_prefer_busy_poll(n)) {
7048 if (napi_complete_done(n, work)) {
7049 /* If timeout is not set, we need to make sure
7050 * that the NAPI is re-scheduled.
7051 */
7052 napi_schedule(n);
7053 }
Felix Fietkau898f8012021-02-08 11:34:08 -08007054 return work;
Björn Töpel7fd32532020-11-30 19:51:56 +01007055 }
7056
Li RongQingd9f37d02018-07-13 14:41:36 +08007057 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11007058 /* flush too old packets
7059 * If HZ < 1000, flush all packets.
7060 */
7061 napi_gro_flush(n, HZ >= 1000);
7062 }
7063
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00007064 gro_normal_list(n);
7065
Herbert Xu001ce542014-12-21 07:16:22 +11007066 /* Some drivers may have called napi_schedule
7067 * prior to exhausting their budget.
7068 */
7069 if (unlikely(!list_empty(&n->poll_list))) {
7070 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
7071 n->dev ? n->dev->name : "backlog");
Felix Fietkau898f8012021-02-08 11:34:08 -08007072 return work;
Herbert Xu001ce542014-12-21 07:16:22 +11007073 }
7074
Felix Fietkau898f8012021-02-08 11:34:08 -08007075 *repoll = true;
Herbert Xu726ce702014-12-21 07:16:21 +11007076
Felix Fietkau898f8012021-02-08 11:34:08 -08007077 return work;
7078}
7079
7080static int napi_poll(struct napi_struct *n, struct list_head *repoll)
7081{
7082 bool do_repoll = false;
7083 void *have;
7084 int work;
7085
7086 list_del_init(&n->poll_list);
7087
7088 have = netpoll_poll_lock(n);
7089
7090 work = __napi_poll(n, &do_repoll);
7091
7092 if (do_repoll)
7093 list_add_tail(&n->poll_list, repoll);
7094
Herbert Xu726ce702014-12-21 07:16:21 +11007095 netpoll_poll_unlock(have);
7096
7097 return work;
7098}
7099
Wei Wang29863d42021-02-08 11:34:09 -08007100static int napi_thread_wait(struct napi_struct *napi)
7101{
Wei Wangcb038352021-03-16 15:36:47 -07007102 bool woken = false;
7103
Wei Wang29863d42021-02-08 11:34:09 -08007104 set_current_state(TASK_INTERRUPTIBLE);
7105
Paolo Abeni27f0ad72021-04-09 17:24:17 +02007106 while (!kthread_should_stop()) {
Wei Wangcb038352021-03-16 15:36:47 -07007107 /* Testing SCHED_THREADED bit here to make sure the current
7108 * kthread owns this napi and could poll on this napi.
7109 * Testing SCHED bit is not enough because SCHED bit might be
7110 * set by some other busy poll thread or by napi_disable().
7111 */
7112 if (test_bit(NAPI_STATE_SCHED_THREADED, &napi->state) || woken) {
Wei Wang29863d42021-02-08 11:34:09 -08007113 WARN_ON(!list_empty(&napi->poll_list));
7114 __set_current_state(TASK_RUNNING);
7115 return 0;
7116 }
7117
7118 schedule();
Wei Wangcb038352021-03-16 15:36:47 -07007119 /* woken being true indicates this thread owns this napi. */
7120 woken = true;
Wei Wang29863d42021-02-08 11:34:09 -08007121 set_current_state(TASK_INTERRUPTIBLE);
7122 }
7123 __set_current_state(TASK_RUNNING);
Paolo Abeni27f0ad72021-04-09 17:24:17 +02007124
Wei Wang29863d42021-02-08 11:34:09 -08007125 return -1;
7126}
7127
7128static int napi_threaded_poll(void *data)
7129{
7130 struct napi_struct *napi = data;
7131 void *have;
7132
7133 while (!napi_thread_wait(napi)) {
7134 for (;;) {
7135 bool repoll = false;
7136
7137 local_bh_disable();
7138
7139 have = netpoll_poll_lock(napi);
7140 __napi_poll(napi, &repoll);
7141 netpoll_poll_unlock(have);
7142
Wei Wang29863d42021-02-08 11:34:09 -08007143 local_bh_enable();
7144
7145 if (!repoll)
7146 break;
7147
7148 cond_resched();
7149 }
7150 }
7151 return 0;
7152}
7153
Emese Revfy0766f782016-06-20 20:42:34 +02007154static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155{
Christoph Lameter903ceff2014-08-17 12:30:35 -05007156 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04007157 unsigned long time_limit = jiffies +
7158 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07007159 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007160 LIST_HEAD(list);
7161 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07007162
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007164 list_splice_init(&sd->poll_list, &list);
7165 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007166
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007167 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007168 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007169
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007170 if (list_empty(&list)) {
7171 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Alexander Lobakinfec6e492021-02-13 14:12:02 +00007172 return;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007173 break;
7174 }
7175
Herbert Xu6bd373e2014-12-21 07:16:24 +11007176 n = list_first_entry(&list, struct napi_struct, poll_list);
7177 budget -= napi_poll(n, &repoll);
7178
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007179 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08007180 * Allow this to run for 2 jiffies since which will allow
7181 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007182 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007183 if (unlikely(budget <= 0 ||
7184 time_after_eq(jiffies, time_limit))) {
7185 sd->time_squeeze++;
7186 break;
7187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007189
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007190 local_irq_disable();
7191
7192 list_splice_tail_init(&sd->poll_list, &list);
7193 list_splice_tail(&repoll, &list);
7194 list_splice(&list, &sd->poll_list);
7195 if (!list_empty(&sd->poll_list))
7196 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
7197
Eric Dumazete326bed2010-04-22 00:22:45 -07007198 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199}
7200
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007201struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007202 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007203
7204 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007205 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007206
Taehee Yoo32b6d342019-10-21 18:47:56 +00007207 /* lookup ignore flag */
7208 bool ignore;
7209
Veaceslav Falico5d261912013-08-28 23:25:05 +02007210 /* counter for the number of times this device was added to us */
7211 u16 ref_nr;
7212
Veaceslav Falico402dae92013-09-25 09:20:09 +02007213 /* private field for the users */
7214 void *private;
7215
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007216 struct list_head list;
7217 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007218};
7219
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007220static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007221 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007222{
Veaceslav Falico5d261912013-08-28 23:25:05 +02007223 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007224
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007225 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02007226 if (adj->dev == adj_dev)
7227 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007228 }
7229 return NULL;
7230}
7231
Taehee Yooeff74232020-09-25 18:13:12 +00007232static int ____netdev_has_upper_dev(struct net_device *upper_dev,
7233 struct netdev_nested_priv *priv)
David Ahernf1170fd2016-10-17 19:15:51 -07007234{
Taehee Yooeff74232020-09-25 18:13:12 +00007235 struct net_device *dev = (struct net_device *)priv->data;
David Ahernf1170fd2016-10-17 19:15:51 -07007236
7237 return upper_dev == dev;
7238}
7239
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007240/**
7241 * netdev_has_upper_dev - Check if device is linked to an upper device
7242 * @dev: device
7243 * @upper_dev: upper device to check
7244 *
7245 * Find out if a device is linked to specified upper device and return true
7246 * in case it is. Note that this checks only immediate upper device,
7247 * not through a complete stack of devices. The caller must hold the RTNL lock.
7248 */
7249bool netdev_has_upper_dev(struct net_device *dev,
7250 struct net_device *upper_dev)
7251{
Taehee Yooeff74232020-09-25 18:13:12 +00007252 struct netdev_nested_priv priv = {
7253 .data = (void *)upper_dev,
7254 };
7255
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007256 ASSERT_RTNL();
7257
Taehee Yoo32b6d342019-10-21 18:47:56 +00007258 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007259 &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007260}
7261EXPORT_SYMBOL(netdev_has_upper_dev);
7262
7263/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01007264 * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device
David Ahern1a3f0602016-10-17 19:15:44 -07007265 * @dev: device
7266 * @upper_dev: upper device to check
7267 *
7268 * Find out if a device is linked to specified upper device and return true
7269 * in case it is. Note that this checks the entire upper device chain.
7270 * The caller must hold rcu lock.
7271 */
7272
David Ahern1a3f0602016-10-17 19:15:44 -07007273bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
7274 struct net_device *upper_dev)
7275{
Taehee Yooeff74232020-09-25 18:13:12 +00007276 struct netdev_nested_priv priv = {
7277 .data = (void *)upper_dev,
7278 };
7279
Taehee Yoo32b6d342019-10-21 18:47:56 +00007280 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007281 &priv);
David Ahern1a3f0602016-10-17 19:15:44 -07007282}
7283EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
7284
7285/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007286 * netdev_has_any_upper_dev - Check if device is linked to some device
7287 * @dev: device
7288 *
7289 * Find out if a device is linked to an upper device and return true in case
7290 * it is. The caller must hold the RTNL lock.
7291 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02007292bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007293{
7294 ASSERT_RTNL();
7295
David Ahernf1170fd2016-10-17 19:15:51 -07007296 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007297}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02007298EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007299
7300/**
7301 * netdev_master_upper_dev_get - Get master upper device
7302 * @dev: device
7303 *
7304 * Find a master upper device and return pointer to it or NULL in case
7305 * it's not there. The caller must hold the RTNL lock.
7306 */
7307struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
7308{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007309 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007310
7311 ASSERT_RTNL();
7312
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007313 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007314 return NULL;
7315
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007316 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007317 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007318 if (likely(upper->master))
7319 return upper->dev;
7320 return NULL;
7321}
7322EXPORT_SYMBOL(netdev_master_upper_dev_get);
7323
Taehee Yoo32b6d342019-10-21 18:47:56 +00007324static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
7325{
7326 struct netdev_adjacent *upper;
7327
7328 ASSERT_RTNL();
7329
7330 if (list_empty(&dev->adj_list.upper))
7331 return NULL;
7332
7333 upper = list_first_entry(&dev->adj_list.upper,
7334 struct netdev_adjacent, list);
7335 if (likely(upper->master) && !upper->ignore)
7336 return upper->dev;
7337 return NULL;
7338}
7339
David Ahern0f524a82016-10-17 19:15:52 -07007340/**
7341 * netdev_has_any_lower_dev - Check if device is linked to some device
7342 * @dev: device
7343 *
7344 * Find out if a device is linked to a lower device and return true in case
7345 * it is. The caller must hold the RTNL lock.
7346 */
7347static bool netdev_has_any_lower_dev(struct net_device *dev)
7348{
7349 ASSERT_RTNL();
7350
7351 return !list_empty(&dev->adj_list.lower);
7352}
7353
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02007354void *netdev_adjacent_get_private(struct list_head *adj_list)
7355{
7356 struct netdev_adjacent *adj;
7357
7358 adj = list_entry(adj_list, struct netdev_adjacent, list);
7359
7360 return adj->private;
7361}
7362EXPORT_SYMBOL(netdev_adjacent_get_private);
7363
Veaceslav Falico31088a12013-09-25 09:20:12 +02007364/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04007365 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
7366 * @dev: device
7367 * @iter: list_head ** of the current position
7368 *
7369 * Gets the next device from the dev's upper list, starting from iter
7370 * position. The caller must hold RCU read lock.
7371 */
7372struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
7373 struct list_head **iter)
7374{
7375 struct netdev_adjacent *upper;
7376
7377 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7378
7379 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7380
7381 if (&upper->list == &dev->adj_list.upper)
7382 return NULL;
7383
7384 *iter = &upper->list;
7385
7386 return upper->dev;
7387}
7388EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
7389
Taehee Yoo32b6d342019-10-21 18:47:56 +00007390static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
7391 struct list_head **iter,
7392 bool *ignore)
Taehee Yoo5343da42019-10-21 18:47:50 +00007393{
7394 struct netdev_adjacent *upper;
7395
7396 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
7397
7398 if (&upper->list == &dev->adj_list.upper)
7399 return NULL;
7400
7401 *iter = &upper->list;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007402 *ignore = upper->ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007403
7404 return upper->dev;
7405}
7406
David Ahern1a3f0602016-10-17 19:15:44 -07007407static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
7408 struct list_head **iter)
7409{
7410 struct netdev_adjacent *upper;
7411
7412 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7413
7414 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7415
7416 if (&upper->list == &dev->adj_list.upper)
7417 return NULL;
7418
7419 *iter = &upper->list;
7420
7421 return upper->dev;
7422}
7423
Taehee Yoo32b6d342019-10-21 18:47:56 +00007424static int __netdev_walk_all_upper_dev(struct net_device *dev,
7425 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007426 struct netdev_nested_priv *priv),
7427 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007428{
7429 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7430 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7431 int ret, cur = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007432 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007433
7434 now = dev;
7435 iter = &dev->adj_list.upper;
7436
7437 while (1) {
7438 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007439 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007440 if (ret)
7441 return ret;
7442 }
7443
7444 next = NULL;
7445 while (1) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007446 udev = __netdev_next_upper_dev(now, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007447 if (!udev)
7448 break;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007449 if (ignore)
7450 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007451
7452 next = udev;
7453 niter = &udev->adj_list.upper;
7454 dev_stack[cur] = now;
7455 iter_stack[cur++] = iter;
7456 break;
7457 }
7458
7459 if (!next) {
7460 if (!cur)
7461 return 0;
7462 next = dev_stack[--cur];
7463 niter = iter_stack[cur];
7464 }
7465
7466 now = next;
7467 iter = niter;
7468 }
7469
7470 return 0;
7471}
7472
David Ahern1a3f0602016-10-17 19:15:44 -07007473int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
7474 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007475 struct netdev_nested_priv *priv),
7476 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007477{
Taehee Yoo5343da42019-10-21 18:47:50 +00007478 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7479 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7480 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007481
Taehee Yoo5343da42019-10-21 18:47:50 +00007482 now = dev;
7483 iter = &dev->adj_list.upper;
David Ahern1a3f0602016-10-17 19:15:44 -07007484
Taehee Yoo5343da42019-10-21 18:47:50 +00007485 while (1) {
7486 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007487 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007488 if (ret)
7489 return ret;
7490 }
7491
7492 next = NULL;
7493 while (1) {
7494 udev = netdev_next_upper_dev_rcu(now, &iter);
7495 if (!udev)
7496 break;
7497
7498 next = udev;
7499 niter = &udev->adj_list.upper;
7500 dev_stack[cur] = now;
7501 iter_stack[cur++] = iter;
7502 break;
7503 }
7504
7505 if (!next) {
7506 if (!cur)
7507 return 0;
7508 next = dev_stack[--cur];
7509 niter = iter_stack[cur];
7510 }
7511
7512 now = next;
7513 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007514 }
7515
7516 return 0;
7517}
7518EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
7519
Taehee Yoo32b6d342019-10-21 18:47:56 +00007520static bool __netdev_has_upper_dev(struct net_device *dev,
7521 struct net_device *upper_dev)
7522{
Taehee Yooeff74232020-09-25 18:13:12 +00007523 struct netdev_nested_priv priv = {
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007524 .flags = 0,
Taehee Yooeff74232020-09-25 18:13:12 +00007525 .data = (void *)upper_dev,
7526 };
7527
Taehee Yoo32b6d342019-10-21 18:47:56 +00007528 ASSERT_RTNL();
7529
7530 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007531 &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007532}
7533
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007534/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02007535 * netdev_lower_get_next_private - Get the next ->private from the
7536 * lower neighbour list
7537 * @dev: device
7538 * @iter: list_head ** of the current position
7539 *
7540 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7541 * list, starting from iter position. The caller must hold either hold the
7542 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007543 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02007544 */
7545void *netdev_lower_get_next_private(struct net_device *dev,
7546 struct list_head **iter)
7547{
7548 struct netdev_adjacent *lower;
7549
7550 lower = list_entry(*iter, struct netdev_adjacent, list);
7551
7552 if (&lower->list == &dev->adj_list.lower)
7553 return NULL;
7554
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007555 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007556
7557 return lower->private;
7558}
7559EXPORT_SYMBOL(netdev_lower_get_next_private);
7560
7561/**
7562 * netdev_lower_get_next_private_rcu - Get the next ->private from the
7563 * lower neighbour list, RCU
7564 * variant
7565 * @dev: device
7566 * @iter: list_head ** of the current position
7567 *
7568 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7569 * list, starting from iter position. The caller must hold RCU read lock.
7570 */
7571void *netdev_lower_get_next_private_rcu(struct net_device *dev,
7572 struct list_head **iter)
7573{
7574 struct netdev_adjacent *lower;
7575
Jussi Maki68918662021-07-31 05:57:36 +00007576 WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_bh_held());
Veaceslav Falico31088a12013-09-25 09:20:12 +02007577
7578 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7579
7580 if (&lower->list == &dev->adj_list.lower)
7581 return NULL;
7582
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007583 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007584
7585 return lower->private;
7586}
7587EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7588
7589/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007590 * netdev_lower_get_next - Get the next device from the lower neighbour
7591 * list
7592 * @dev: device
7593 * @iter: list_head ** of the current position
7594 *
7595 * Gets the next netdev_adjacent from the dev's lower neighbour
7596 * list, starting from iter position. The caller must hold RTNL lock or
7597 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007598 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007599 */
7600void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7601{
7602 struct netdev_adjacent *lower;
7603
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007604 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007605
7606 if (&lower->list == &dev->adj_list.lower)
7607 return NULL;
7608
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007609 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007610
7611 return lower->dev;
7612}
7613EXPORT_SYMBOL(netdev_lower_get_next);
7614
David Ahern1a3f0602016-10-17 19:15:44 -07007615static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7616 struct list_head **iter)
7617{
7618 struct netdev_adjacent *lower;
7619
David Ahern46b5ab12016-10-26 13:21:33 -07007620 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07007621
7622 if (&lower->list == &dev->adj_list.lower)
7623 return NULL;
7624
David Ahern46b5ab12016-10-26 13:21:33 -07007625 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07007626
7627 return lower->dev;
7628}
7629
Taehee Yoo32b6d342019-10-21 18:47:56 +00007630static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7631 struct list_head **iter,
7632 bool *ignore)
7633{
7634 struct netdev_adjacent *lower;
7635
7636 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7637
7638 if (&lower->list == &dev->adj_list.lower)
7639 return NULL;
7640
7641 *iter = &lower->list;
7642 *ignore = lower->ignore;
7643
7644 return lower->dev;
7645}
7646
David Ahern1a3f0602016-10-17 19:15:44 -07007647int netdev_walk_all_lower_dev(struct net_device *dev,
7648 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007649 struct netdev_nested_priv *priv),
7650 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007651{
Taehee Yoo5343da42019-10-21 18:47:50 +00007652 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7653 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7654 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007655
Taehee Yoo5343da42019-10-21 18:47:50 +00007656 now = dev;
7657 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007658
Taehee Yoo5343da42019-10-21 18:47:50 +00007659 while (1) {
7660 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007661 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007662 if (ret)
7663 return ret;
7664 }
7665
7666 next = NULL;
7667 while (1) {
7668 ldev = netdev_next_lower_dev(now, &iter);
7669 if (!ldev)
7670 break;
7671
7672 next = ldev;
7673 niter = &ldev->adj_list.lower;
7674 dev_stack[cur] = now;
7675 iter_stack[cur++] = iter;
7676 break;
7677 }
7678
7679 if (!next) {
7680 if (!cur)
7681 return 0;
7682 next = dev_stack[--cur];
7683 niter = iter_stack[cur];
7684 }
7685
7686 now = next;
7687 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007688 }
7689
7690 return 0;
7691}
7692EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7693
Taehee Yoo32b6d342019-10-21 18:47:56 +00007694static int __netdev_walk_all_lower_dev(struct net_device *dev,
7695 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007696 struct netdev_nested_priv *priv),
7697 struct netdev_nested_priv *priv)
Taehee Yoo32b6d342019-10-21 18:47:56 +00007698{
7699 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7700 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7701 int ret, cur = 0;
7702 bool ignore;
7703
7704 now = dev;
7705 iter = &dev->adj_list.lower;
7706
7707 while (1) {
7708 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007709 ret = fn(now, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007710 if (ret)
7711 return ret;
7712 }
7713
7714 next = NULL;
7715 while (1) {
7716 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7717 if (!ldev)
7718 break;
7719 if (ignore)
7720 continue;
7721
7722 next = ldev;
7723 niter = &ldev->adj_list.lower;
7724 dev_stack[cur] = now;
7725 iter_stack[cur++] = iter;
7726 break;
7727 }
7728
7729 if (!next) {
7730 if (!cur)
7731 return 0;
7732 next = dev_stack[--cur];
7733 niter = iter_stack[cur];
7734 }
7735
7736 now = next;
7737 iter = niter;
7738 }
7739
7740 return 0;
7741}
7742
Taehee Yoo7151aff2020-02-15 10:50:21 +00007743struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7744 struct list_head **iter)
David Ahern1a3f0602016-10-17 19:15:44 -07007745{
7746 struct netdev_adjacent *lower;
7747
7748 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7749 if (&lower->list == &dev->adj_list.lower)
7750 return NULL;
7751
7752 *iter = &lower->list;
7753
7754 return lower->dev;
7755}
Taehee Yoo7151aff2020-02-15 10:50:21 +00007756EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
David Ahern1a3f0602016-10-17 19:15:44 -07007757
Taehee Yoo5343da42019-10-21 18:47:50 +00007758static u8 __netdev_upper_depth(struct net_device *dev)
7759{
7760 struct net_device *udev;
7761 struct list_head *iter;
7762 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007763 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007764
7765 for (iter = &dev->adj_list.upper,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007766 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007767 udev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007768 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7769 if (ignore)
7770 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007771 if (max_depth < udev->upper_level)
7772 max_depth = udev->upper_level;
7773 }
7774
7775 return max_depth;
7776}
7777
7778static u8 __netdev_lower_depth(struct net_device *dev)
7779{
7780 struct net_device *ldev;
7781 struct list_head *iter;
7782 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007783 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007784
7785 for (iter = &dev->adj_list.lower,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007786 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007787 ldev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007788 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7789 if (ignore)
7790 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007791 if (max_depth < ldev->lower_level)
7792 max_depth = ldev->lower_level;
7793 }
7794
7795 return max_depth;
7796}
7797
Taehee Yooeff74232020-09-25 18:13:12 +00007798static int __netdev_update_upper_level(struct net_device *dev,
7799 struct netdev_nested_priv *__unused)
Taehee Yoo5343da42019-10-21 18:47:50 +00007800{
7801 dev->upper_level = __netdev_upper_depth(dev) + 1;
7802 return 0;
7803}
7804
Taehee Yooeff74232020-09-25 18:13:12 +00007805static int __netdev_update_lower_level(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007806 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007807{
7808 dev->lower_level = __netdev_lower_depth(dev) + 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007809
7810#ifdef CONFIG_LOCKDEP
7811 if (!priv)
7812 return 0;
7813
7814 if (priv->flags & NESTED_SYNC_IMM)
7815 dev->nested_level = dev->lower_level - 1;
7816 if (priv->flags & NESTED_SYNC_TODO)
7817 net_unlink_todo(dev);
7818#endif
Taehee Yoo5343da42019-10-21 18:47:50 +00007819 return 0;
7820}
7821
David Ahern1a3f0602016-10-17 19:15:44 -07007822int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7823 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007824 struct netdev_nested_priv *priv),
7825 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007826{
Taehee Yoo5343da42019-10-21 18:47:50 +00007827 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7828 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7829 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007830
Taehee Yoo5343da42019-10-21 18:47:50 +00007831 now = dev;
7832 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007833
Taehee Yoo5343da42019-10-21 18:47:50 +00007834 while (1) {
7835 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007836 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007837 if (ret)
7838 return ret;
7839 }
7840
7841 next = NULL;
7842 while (1) {
7843 ldev = netdev_next_lower_dev_rcu(now, &iter);
7844 if (!ldev)
7845 break;
7846
7847 next = ldev;
7848 niter = &ldev->adj_list.lower;
7849 dev_stack[cur] = now;
7850 iter_stack[cur++] = iter;
7851 break;
7852 }
7853
7854 if (!next) {
7855 if (!cur)
7856 return 0;
7857 next = dev_stack[--cur];
7858 niter = iter_stack[cur];
7859 }
7860
7861 now = next;
7862 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007863 }
7864
7865 return 0;
7866}
7867EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7868
Jiri Pirko7ce856a2016-07-04 08:23:12 +02007869/**
dingtianhonge001bfa2013-12-13 10:19:55 +08007870 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7871 * lower neighbour list, RCU
7872 * variant
7873 * @dev: device
7874 *
7875 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7876 * list. The caller must hold RCU read lock.
7877 */
7878void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7879{
7880 struct netdev_adjacent *lower;
7881
7882 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7883 struct netdev_adjacent, list);
7884 if (lower)
7885 return lower->private;
7886 return NULL;
7887}
7888EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7889
7890/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007891 * netdev_master_upper_dev_get_rcu - Get master upper device
7892 * @dev: device
7893 *
7894 * Find a master upper device and return pointer to it or NULL in case
7895 * it's not there. The caller must hold the RCU read lock.
7896 */
7897struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7898{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007899 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007900
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007901 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007902 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007903 if (upper && likely(upper->master))
7904 return upper->dev;
7905 return NULL;
7906}
7907EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7908
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307909static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007910 struct net_device *adj_dev,
7911 struct list_head *dev_list)
7912{
7913 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007914
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007915 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7916 "upper_%s" : "lower_%s", adj_dev->name);
7917 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7918 linkname);
7919}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307920static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007921 char *name,
7922 struct list_head *dev_list)
7923{
7924 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007925
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007926 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7927 "upper_%s" : "lower_%s", name);
7928 sysfs_remove_link(&(dev->dev.kobj), linkname);
7929}
7930
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007931static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7932 struct net_device *adj_dev,
7933 struct list_head *dev_list)
7934{
7935 return (dev_list == &dev->adj_list.upper ||
7936 dev_list == &dev->adj_list.lower) &&
7937 net_eq(dev_net(dev), dev_net(adj_dev));
7938}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007939
Veaceslav Falico5d261912013-08-28 23:25:05 +02007940static int __netdev_adjacent_dev_insert(struct net_device *dev,
7941 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02007942 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007943 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007944{
7945 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007946 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007947
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007948 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007949
7950 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07007951 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07007952 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7953 dev->name, adj_dev->name, adj->ref_nr);
7954
Veaceslav Falico5d261912013-08-28 23:25:05 +02007955 return 0;
7956 }
7957
7958 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7959 if (!adj)
7960 return -ENOMEM;
7961
7962 adj->dev = adj_dev;
7963 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07007964 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007965 adj->private = private;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007966 adj->ignore = false;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007967 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007968
David Ahern67b62f92016-10-17 19:15:53 -07007969 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7970 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007971
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007972 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007973 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007974 if (ret)
7975 goto free_adj;
7976 }
7977
Veaceslav Falico7863c052013-09-25 09:20:06 +02007978 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007979 if (master) {
7980 ret = sysfs_create_link(&(dev->dev.kobj),
7981 &(adj_dev->dev.kobj), "master");
7982 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02007983 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007984
Veaceslav Falico7863c052013-09-25 09:20:06 +02007985 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007986 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02007987 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007988 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007989
7990 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007991
Veaceslav Falico5831d662013-09-25 09:20:32 +02007992remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007993 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007994 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007995free_adj:
7996 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02007997 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007998
7999 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008000}
8001
stephen hemminger1d143d92013-12-29 14:01:29 -08008002static void __netdev_adjacent_dev_remove(struct net_device *dev,
8003 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06008004 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08008005 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02008006{
8007 struct netdev_adjacent *adj;
8008
David Ahern67b62f92016-10-17 19:15:53 -07008009 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
8010 dev->name, adj_dev->name, ref_nr);
8011
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008012 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008013
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008014 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07008015 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008016 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07008017 WARN_ON(1);
8018 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008019 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02008020
Andrew Collins93409032016-10-03 13:43:02 -06008021 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07008022 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
8023 dev->name, adj_dev->name, ref_nr,
8024 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06008025 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008026 return;
8027 }
8028
Veaceslav Falico842d67a2013-09-25 09:20:31 +02008029 if (adj->master)
8030 sysfs_remove_link(&(dev->dev.kobj), "master");
8031
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04008032 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01008033 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02008034
Veaceslav Falico5d261912013-08-28 23:25:05 +02008035 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07008036 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008037 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008038 dev_put(adj_dev);
8039 kfree_rcu(adj, rcu);
8040}
8041
stephen hemminger1d143d92013-12-29 14:01:29 -08008042static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
8043 struct net_device *upper_dev,
8044 struct list_head *up_list,
8045 struct list_head *down_list,
8046 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02008047{
8048 int ret;
8049
David Ahern790510d2016-10-17 19:15:43 -07008050 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06008051 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008052 if (ret)
8053 return ret;
8054
David Ahern790510d2016-10-17 19:15:43 -07008055 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06008056 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008057 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07008058 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008059 return ret;
8060 }
8061
8062 return 0;
8063}
8064
stephen hemminger1d143d92013-12-29 14:01:29 -08008065static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
8066 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06008067 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08008068 struct list_head *up_list,
8069 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02008070{
Andrew Collins93409032016-10-03 13:43:02 -06008071 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
8072 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008073}
8074
stephen hemminger1d143d92013-12-29 14:01:29 -08008075static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
8076 struct net_device *upper_dev,
8077 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008078{
David Ahernf1170fd2016-10-17 19:15:51 -07008079 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
8080 &dev->adj_list.upper,
8081 &upper_dev->adj_list.lower,
8082 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008083}
8084
stephen hemminger1d143d92013-12-29 14:01:29 -08008085static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
8086 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008087{
Andrew Collins93409032016-10-03 13:43:02 -06008088 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008089 &dev->adj_list.upper,
8090 &upper_dev->adj_list.lower);
8091}
Veaceslav Falico5d261912013-08-28 23:25:05 +02008092
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008093static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02008094 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07008095 void *upper_priv, void *upper_info,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008096 struct netdev_nested_priv *priv,
David Ahern42ab19e2017-10-04 17:48:47 -07008097 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008098{
David Ahern51d0c0472017-10-04 17:48:45 -07008099 struct netdev_notifier_changeupper_info changeupper_info = {
8100 .info = {
8101 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008102 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07008103 },
8104 .upper_dev = upper_dev,
8105 .master = master,
8106 .linking = true,
8107 .upper_info = upper_info,
8108 };
Mike Manning50d629e2018-02-26 23:49:30 +00008109 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008110 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008111
8112 ASSERT_RTNL();
8113
8114 if (dev == upper_dev)
8115 return -EBUSY;
8116
8117 /* To prevent loops, check if dev is not upper device to upper_dev. */
Taehee Yoo32b6d342019-10-21 18:47:56 +00008118 if (__netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008119 return -EBUSY;
8120
Taehee Yoo5343da42019-10-21 18:47:50 +00008121 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
8122 return -EMLINK;
8123
Mike Manning50d629e2018-02-26 23:49:30 +00008124 if (!master) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00008125 if (__netdev_has_upper_dev(dev, upper_dev))
Mike Manning50d629e2018-02-26 23:49:30 +00008126 return -EEXIST;
8127 } else {
Taehee Yoo32b6d342019-10-21 18:47:56 +00008128 master_dev = __netdev_master_upper_dev_get(dev);
Mike Manning50d629e2018-02-26 23:49:30 +00008129 if (master_dev)
8130 return master_dev == upper_dev ? -EEXIST : -EBUSY;
8131 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008132
David Ahern51d0c0472017-10-04 17:48:45 -07008133 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02008134 &changeupper_info.info);
8135 ret = notifier_to_errno(ret);
8136 if (ret)
8137 return ret;
8138
Jiri Pirko6dffb042015-12-03 12:12:10 +01008139 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02008140 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008141 if (ret)
8142 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008143
David Ahern51d0c0472017-10-04 17:48:45 -07008144 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01008145 &changeupper_info.info);
8146 ret = notifier_to_errno(ret);
8147 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07008148 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01008149
Taehee Yoo5343da42019-10-21 18:47:50 +00008150 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008151 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00008152
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008153 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008154 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008155 priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00008156
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008157 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008158
David Ahernf1170fd2016-10-17 19:15:51 -07008159rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008160 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008161
8162 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008163}
8164
8165/**
8166 * netdev_upper_dev_link - Add a link to the upper device
8167 * @dev: device
8168 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08008169 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008170 *
8171 * Adds a link to device which is upper to this one. The caller must hold
8172 * the RTNL lock. On a failure a negative errno code is returned.
8173 * On success the reference counts are adjusted and the function
8174 * returns zero.
8175 */
8176int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008177 struct net_device *upper_dev,
8178 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008179{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008180 struct netdev_nested_priv priv = {
8181 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8182 .data = NULL,
8183 };
8184
David Ahern42ab19e2017-10-04 17:48:47 -07008185 return __netdev_upper_dev_link(dev, upper_dev, false,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008186 NULL, NULL, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008187}
8188EXPORT_SYMBOL(netdev_upper_dev_link);
8189
8190/**
8191 * netdev_master_upper_dev_link - Add a master link to the upper device
8192 * @dev: device
8193 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01008194 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01008195 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08008196 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008197 *
8198 * Adds a link to device which is upper to this one. In this case, only
8199 * one master upper device can be linked, although other non-master devices
8200 * might be linked as well. The caller must hold the RTNL lock.
8201 * On a failure a negative errno code is returned. On success the reference
8202 * counts are adjusted and the function returns zero.
8203 */
8204int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01008205 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008206 void *upper_priv, void *upper_info,
8207 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008208{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008209 struct netdev_nested_priv priv = {
8210 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8211 .data = NULL,
8212 };
8213
Jiri Pirko29bf24a2015-12-03 12:12:11 +01008214 return __netdev_upper_dev_link(dev, upper_dev, true,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008215 upper_priv, upper_info, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008216}
8217EXPORT_SYMBOL(netdev_master_upper_dev_link);
8218
Taehee Yoofe8300f2020-09-25 18:13:02 +00008219static void __netdev_upper_dev_unlink(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008220 struct net_device *upper_dev,
8221 struct netdev_nested_priv *priv)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008222{
David Ahern51d0c0472017-10-04 17:48:45 -07008223 struct netdev_notifier_changeupper_info changeupper_info = {
8224 .info = {
8225 .dev = dev,
8226 },
8227 .upper_dev = upper_dev,
8228 .linking = false,
8229 };
tchardingf4563a72017-02-09 17:56:07 +11008230
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008231 ASSERT_RTNL();
8232
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008233 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008234
David Ahern51d0c0472017-10-04 17:48:45 -07008235 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02008236 &changeupper_info.info);
8237
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008238 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008239
David Ahern51d0c0472017-10-04 17:48:45 -07008240 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008241 &changeupper_info.info);
Taehee Yoo5343da42019-10-21 18:47:50 +00008242
8243 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008244 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00008245
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008246 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008247 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008248 priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008249}
Taehee Yoofe8300f2020-09-25 18:13:02 +00008250
8251/**
8252 * netdev_upper_dev_unlink - Removes a link to upper device
8253 * @dev: device
8254 * @upper_dev: new upper device
8255 *
8256 * Removes a link to device which is upper to this one. The caller must hold
8257 * the RTNL lock.
8258 */
8259void netdev_upper_dev_unlink(struct net_device *dev,
8260 struct net_device *upper_dev)
8261{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008262 struct netdev_nested_priv priv = {
8263 .flags = NESTED_SYNC_TODO,
8264 .data = NULL,
8265 };
8266
8267 __netdev_upper_dev_unlink(dev, upper_dev, &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008268}
8269EXPORT_SYMBOL(netdev_upper_dev_unlink);
8270
Taehee Yoo32b6d342019-10-21 18:47:56 +00008271static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
8272 struct net_device *lower_dev,
8273 bool val)
8274{
8275 struct netdev_adjacent *adj;
8276
8277 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
8278 if (adj)
8279 adj->ignore = val;
8280
8281 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
8282 if (adj)
8283 adj->ignore = val;
8284}
8285
8286static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
8287 struct net_device *lower_dev)
8288{
8289 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
8290}
8291
8292static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
8293 struct net_device *lower_dev)
8294{
8295 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
8296}
8297
8298int netdev_adjacent_change_prepare(struct net_device *old_dev,
8299 struct net_device *new_dev,
8300 struct net_device *dev,
8301 struct netlink_ext_ack *extack)
8302{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008303 struct netdev_nested_priv priv = {
8304 .flags = 0,
8305 .data = NULL,
8306 };
Taehee Yoo32b6d342019-10-21 18:47:56 +00008307 int err;
8308
8309 if (!new_dev)
8310 return 0;
8311
8312 if (old_dev && new_dev != old_dev)
8313 netdev_adjacent_dev_disable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008314 err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
8315 extack);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008316 if (err) {
8317 if (old_dev && new_dev != old_dev)
8318 netdev_adjacent_dev_enable(dev, old_dev);
8319 return err;
8320 }
8321
8322 return 0;
8323}
8324EXPORT_SYMBOL(netdev_adjacent_change_prepare);
8325
8326void netdev_adjacent_change_commit(struct net_device *old_dev,
8327 struct net_device *new_dev,
8328 struct net_device *dev)
8329{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008330 struct netdev_nested_priv priv = {
8331 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8332 .data = NULL,
8333 };
8334
Taehee Yoo32b6d342019-10-21 18:47:56 +00008335 if (!new_dev || !old_dev)
8336 return;
8337
8338 if (new_dev == old_dev)
8339 return;
8340
8341 netdev_adjacent_dev_enable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008342 __netdev_upper_dev_unlink(old_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008343}
8344EXPORT_SYMBOL(netdev_adjacent_change_commit);
8345
8346void netdev_adjacent_change_abort(struct net_device *old_dev,
8347 struct net_device *new_dev,
8348 struct net_device *dev)
8349{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008350 struct netdev_nested_priv priv = {
8351 .flags = 0,
8352 .data = NULL,
8353 };
8354
Taehee Yoo32b6d342019-10-21 18:47:56 +00008355 if (!new_dev)
8356 return;
8357
8358 if (old_dev && new_dev != old_dev)
8359 netdev_adjacent_dev_enable(dev, old_dev);
8360
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008361 __netdev_upper_dev_unlink(new_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008362}
8363EXPORT_SYMBOL(netdev_adjacent_change_abort);
8364
Moni Shoua61bd3852015-02-03 16:48:29 +02008365/**
8366 * netdev_bonding_info_change - Dispatch event about slave change
8367 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09008368 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02008369 *
8370 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
8371 * The caller must hold the RTNL lock.
8372 */
8373void netdev_bonding_info_change(struct net_device *dev,
8374 struct netdev_bonding_info *bonding_info)
8375{
David Ahern51d0c0472017-10-04 17:48:45 -07008376 struct netdev_notifier_bonding_info info = {
8377 .info.dev = dev,
8378 };
Moni Shoua61bd3852015-02-03 16:48:29 +02008379
8380 memcpy(&info.bonding_info, bonding_info,
8381 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07008382 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02008383 &info.info);
8384}
8385EXPORT_SYMBOL(netdev_bonding_info_change);
8386
Maor Gottliebcff9f122020-04-30 22:21:31 +03008387/**
8388 * netdev_get_xmit_slave - Get the xmit slave of master device
Andrew Lunn88425002020-07-13 01:14:59 +02008389 * @dev: device
Maor Gottliebcff9f122020-04-30 22:21:31 +03008390 * @skb: The packet
8391 * @all_slaves: assume all the slaves are active
8392 *
8393 * The reference counters are not incremented so the caller must be
8394 * careful with locks. The caller must hold RCU lock.
8395 * %NULL is returned if no slave is found.
8396 */
8397
8398struct net_device *netdev_get_xmit_slave(struct net_device *dev,
8399 struct sk_buff *skb,
8400 bool all_slaves)
8401{
8402 const struct net_device_ops *ops = dev->netdev_ops;
8403
8404 if (!ops->ndo_get_xmit_slave)
8405 return NULL;
8406 return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
8407}
8408EXPORT_SYMBOL(netdev_get_xmit_slave);
8409
Tariq Toukan719a4022021-01-17 16:59:42 +02008410static struct net_device *netdev_sk_get_lower_dev(struct net_device *dev,
8411 struct sock *sk)
8412{
8413 const struct net_device_ops *ops = dev->netdev_ops;
8414
8415 if (!ops->ndo_sk_get_lower_dev)
8416 return NULL;
8417 return ops->ndo_sk_get_lower_dev(dev, sk);
8418}
8419
8420/**
8421 * netdev_sk_get_lowest_dev - Get the lowest device in chain given device and socket
8422 * @dev: device
8423 * @sk: the socket
8424 *
8425 * %NULL is returned if no lower device is found.
8426 */
8427
8428struct net_device *netdev_sk_get_lowest_dev(struct net_device *dev,
8429 struct sock *sk)
8430{
8431 struct net_device *lower;
8432
8433 lower = netdev_sk_get_lower_dev(dev, sk);
8434 while (lower) {
8435 dev = lower;
8436 lower = netdev_sk_get_lower_dev(dev, sk);
8437 }
8438
8439 return dev;
8440}
8441EXPORT_SYMBOL(netdev_sk_get_lowest_dev);
8442
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008443static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008444{
8445 struct netdev_adjacent *iter;
8446
8447 struct net *net = dev_net(dev);
8448
8449 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008450 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008451 continue;
8452 netdev_adjacent_sysfs_add(iter->dev, dev,
8453 &iter->dev->adj_list.lower);
8454 netdev_adjacent_sysfs_add(dev, iter->dev,
8455 &dev->adj_list.upper);
8456 }
8457
8458 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008459 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008460 continue;
8461 netdev_adjacent_sysfs_add(iter->dev, dev,
8462 &iter->dev->adj_list.upper);
8463 netdev_adjacent_sysfs_add(dev, iter->dev,
8464 &dev->adj_list.lower);
8465 }
8466}
8467
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008468static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008469{
8470 struct netdev_adjacent *iter;
8471
8472 struct net *net = dev_net(dev);
8473
8474 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008475 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008476 continue;
8477 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8478 &iter->dev->adj_list.lower);
8479 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8480 &dev->adj_list.upper);
8481 }
8482
8483 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008484 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008485 continue;
8486 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8487 &iter->dev->adj_list.upper);
8488 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8489 &dev->adj_list.lower);
8490 }
8491}
8492
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008493void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02008494{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008495 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02008496
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008497 struct net *net = dev_net(dev);
8498
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008499 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008500 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008501 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008502 netdev_adjacent_sysfs_del(iter->dev, oldname,
8503 &iter->dev->adj_list.lower);
8504 netdev_adjacent_sysfs_add(iter->dev, dev,
8505 &iter->dev->adj_list.lower);
8506 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008507
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008508 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008509 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008510 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008511 netdev_adjacent_sysfs_del(iter->dev, oldname,
8512 &iter->dev->adj_list.upper);
8513 netdev_adjacent_sysfs_add(iter->dev, dev,
8514 &iter->dev->adj_list.upper);
8515 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008516}
Veaceslav Falico402dae92013-09-25 09:20:09 +02008517
8518void *netdev_lower_dev_get_private(struct net_device *dev,
8519 struct net_device *lower_dev)
8520{
8521 struct netdev_adjacent *lower;
8522
8523 if (!lower_dev)
8524 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008525 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02008526 if (!lower)
8527 return NULL;
8528
8529 return lower->private;
8530}
8531EXPORT_SYMBOL(netdev_lower_dev_get_private);
8532
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04008533
Jiri Pirko04d48262015-12-03 12:12:15 +01008534/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01008535 * netdev_lower_state_changed - Dispatch event about lower device state change
Jiri Pirko04d48262015-12-03 12:12:15 +01008536 * @lower_dev: device
8537 * @lower_state_info: state to dispatch
8538 *
8539 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
8540 * The caller must hold the RTNL lock.
8541 */
8542void netdev_lower_state_changed(struct net_device *lower_dev,
8543 void *lower_state_info)
8544{
David Ahern51d0c0472017-10-04 17:48:45 -07008545 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
8546 .info.dev = lower_dev,
8547 };
Jiri Pirko04d48262015-12-03 12:12:15 +01008548
8549 ASSERT_RTNL();
8550 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07008551 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01008552 &changelowerstate_info.info);
8553}
8554EXPORT_SYMBOL(netdev_lower_state_changed);
8555
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008556static void dev_change_rx_flags(struct net_device *dev, int flags)
8557{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008558 const struct net_device_ops *ops = dev->netdev_ops;
8559
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05008560 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008561 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008562}
8563
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008564static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07008565{
Eric Dumazetb536db92011-11-30 21:42:26 +00008566 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06008567 kuid_t uid;
8568 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07008569
Patrick McHardy24023452007-07-14 18:51:31 -07008570 ASSERT_RTNL();
8571
Wang Chendad9b332008-06-18 01:48:28 -07008572 dev->flags |= IFF_PROMISC;
8573 dev->promiscuity += inc;
8574 if (dev->promiscuity == 0) {
8575 /*
8576 * Avoid overflow.
8577 * If inc causes overflow, untouch promisc and return error.
8578 */
8579 if (inc < 0)
8580 dev->flags &= ~IFF_PROMISC;
8581 else {
8582 dev->promiscuity -= inc;
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07008583 netdev_warn(dev, "promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n");
Wang Chendad9b332008-06-18 01:48:28 -07008584 return -EOVERFLOW;
8585 }
8586 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008587 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008588 pr_info("device %s %s promiscuous mode\n",
8589 dev->name,
8590 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11008591 if (audit_enabled) {
8592 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04008593 audit_log(audit_context(), GFP_ATOMIC,
8594 AUDIT_ANOM_PROMISCUOUS,
8595 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
8596 dev->name, (dev->flags & IFF_PROMISC),
8597 (old_flags & IFF_PROMISC),
8598 from_kuid(&init_user_ns, audit_get_loginuid(current)),
8599 from_kuid(&init_user_ns, uid),
8600 from_kgid(&init_user_ns, gid),
8601 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11008602 }
Patrick McHardy24023452007-07-14 18:51:31 -07008603
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008604 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07008605 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008606 if (notify)
8607 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07008608 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008609}
8610
Linus Torvalds1da177e2005-04-16 15:20:36 -07008611/**
8612 * dev_set_promiscuity - update promiscuity count on a device
8613 * @dev: device
8614 * @inc: modifier
8615 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07008616 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008617 * remains above zero the interface remains promiscuous. Once it hits zero
8618 * the device reverts back to normal filtering operation. A negative inc
8619 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07008620 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008621 */
Wang Chendad9b332008-06-18 01:48:28 -07008622int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008623{
Eric Dumazetb536db92011-11-30 21:42:26 +00008624 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07008625 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008626
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008627 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07008628 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07008629 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07008630 if (dev->flags != old_flags)
8631 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07008632 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008633}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008634EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008636static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008637{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008638 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008639
Patrick McHardy24023452007-07-14 18:51:31 -07008640 ASSERT_RTNL();
8641
Linus Torvalds1da177e2005-04-16 15:20:36 -07008642 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07008643 dev->allmulti += inc;
8644 if (dev->allmulti == 0) {
8645 /*
8646 * Avoid overflow.
8647 * If inc causes overflow, untouch allmulti and return error.
8648 */
8649 if (inc < 0)
8650 dev->flags &= ~IFF_ALLMULTI;
8651 else {
8652 dev->allmulti -= inc;
Jesse Brandeburg5b92be62021-10-19 09:42:28 -07008653 netdev_warn(dev, "allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n");
Wang Chendad9b332008-06-18 01:48:28 -07008654 return -EOVERFLOW;
8655 }
8656 }
Patrick McHardy24023452007-07-14 18:51:31 -07008657 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008658 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07008659 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008660 if (notify)
8661 __dev_notify_flags(dev, old_flags,
8662 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07008663 }
Wang Chendad9b332008-06-18 01:48:28 -07008664 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008665}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008666
8667/**
8668 * dev_set_allmulti - update allmulti count on a device
8669 * @dev: device
8670 * @inc: modifier
8671 *
8672 * Add or remove reception of all multicast frames to a device. While the
8673 * count in the device remains above zero the interface remains listening
8674 * to all interfaces. Once it hits zero the device reverts back to normal
8675 * filtering operation. A negative @inc value is used to drop the counter
8676 * when releasing a resource needing all multicasts.
8677 * Return 0 if successful or a negative errno code on error.
8678 */
8679
8680int dev_set_allmulti(struct net_device *dev, int inc)
8681{
8682 return __dev_set_allmulti(dev, inc, true);
8683}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008684EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07008685
8686/*
8687 * Upload unicast and multicast address lists to device and
8688 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08008689 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07008690 * are present.
8691 */
8692void __dev_set_rx_mode(struct net_device *dev)
8693{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008694 const struct net_device_ops *ops = dev->netdev_ops;
8695
Patrick McHardy4417da62007-06-27 01:28:10 -07008696 /* dev_open will call this function so the list will stay sane. */
8697 if (!(dev->flags&IFF_UP))
8698 return;
8699
8700 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09008701 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07008702
Jiri Pirko01789342011-08-16 06:29:00 +00008703 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07008704 /* Unicast addresses changes may only happen under the rtnl,
8705 * therefore calling __dev_set_promiscuity here is safe.
8706 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008707 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008708 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008709 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008710 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008711 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008712 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07008713 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008714 }
Jiri Pirko01789342011-08-16 06:29:00 +00008715
8716 if (ops->ndo_set_rx_mode)
8717 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008718}
8719
8720void dev_set_rx_mode(struct net_device *dev)
8721{
David S. Millerb9e40852008-07-15 00:15:08 -07008722 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008723 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07008724 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008725}
8726
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008727/**
8728 * dev_get_flags - get flags reported to userspace
8729 * @dev: device
8730 *
8731 * Get the combination of flag bits exported through APIs to userspace.
8732 */
Eric Dumazet95c96172012-04-15 05:58:06 +00008733unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734{
Eric Dumazet95c96172012-04-15 05:58:06 +00008735 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008736
8737 flags = (dev->flags & ~(IFF_PROMISC |
8738 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08008739 IFF_RUNNING |
8740 IFF_LOWER_UP |
8741 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008742 (dev->gflags & (IFF_PROMISC |
8743 IFF_ALLMULTI));
8744
Stefan Rompfb00055a2006-03-20 17:09:11 -08008745 if (netif_running(dev)) {
8746 if (netif_oper_up(dev))
8747 flags |= IFF_RUNNING;
8748 if (netif_carrier_ok(dev))
8749 flags |= IFF_LOWER_UP;
8750 if (netif_dormant(dev))
8751 flags |= IFF_DORMANT;
8752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008753
8754 return flags;
8755}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008756EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008757
Petr Machata6d040322018-12-06 17:05:43 +00008758int __dev_change_flags(struct net_device *dev, unsigned int flags,
8759 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008760{
Eric Dumazetb536db92011-11-30 21:42:26 +00008761 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00008762 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008763
Patrick McHardy24023452007-07-14 18:51:31 -07008764 ASSERT_RTNL();
8765
Linus Torvalds1da177e2005-04-16 15:20:36 -07008766 /*
8767 * Set the flags on our device.
8768 */
8769
8770 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8771 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8772 IFF_AUTOMEDIA)) |
8773 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8774 IFF_ALLMULTI));
8775
8776 /*
8777 * Load in the correct multicast list now the flags have changed.
8778 */
8779
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008780 if ((old_flags ^ flags) & IFF_MULTICAST)
8781 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07008782
Patrick McHardy4417da62007-06-27 01:28:10 -07008783 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008784
8785 /*
8786 * Have we downed the interface. We handle IFF_UP ourselves
8787 * according to user attempts to set it, rather than blindly
8788 * setting it.
8789 */
8790
8791 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07008792 if ((old_flags ^ flags) & IFF_UP) {
8793 if (old_flags & IFF_UP)
8794 __dev_close(dev);
8795 else
Petr Machata40c900a2018-12-06 17:05:47 +00008796 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07008797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008798
Linus Torvalds1da177e2005-04-16 15:20:36 -07008799 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008800 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008801 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008802
Linus Torvalds1da177e2005-04-16 15:20:36 -07008803 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008804
8805 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8806 if (dev->flags != old_flags)
8807 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008808 }
8809
8810 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11008811 * is important. Some (broken) drivers set IFF_PROMISC, when
8812 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008813 */
8814 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008815 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8816
Linus Torvalds1da177e2005-04-16 15:20:36 -07008817 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008818 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008819 }
8820
Patrick McHardybd380812010-02-26 06:34:53 +00008821 return ret;
8822}
8823
Nicolas Dichtela528c212013-09-25 12:02:44 +02008824void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8825 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00008826{
8827 unsigned int changes = dev->flags ^ old_flags;
8828
Nicolas Dichtela528c212013-09-25 12:02:44 +02008829 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008830 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008831
Patrick McHardybd380812010-02-26 06:34:53 +00008832 if (changes & IFF_UP) {
8833 if (dev->flags & IFF_UP)
8834 call_netdevice_notifiers(NETDEV_UP, dev);
8835 else
8836 call_netdevice_notifiers(NETDEV_DOWN, dev);
8837 }
8838
8839 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008840 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07008841 struct netdev_notifier_change_info change_info = {
8842 .info = {
8843 .dev = dev,
8844 },
8845 .flags_changed = changes,
8846 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008847
David Ahern51d0c0472017-10-04 17:48:45 -07008848 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008849 }
Patrick McHardybd380812010-02-26 06:34:53 +00008850}
8851
8852/**
8853 * dev_change_flags - change device settings
8854 * @dev: device
8855 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00008856 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00008857 *
8858 * Change settings on device based state flags. The flags are
8859 * in the userspace exported format.
8860 */
Petr Machata567c5e12018-12-06 17:05:42 +00008861int dev_change_flags(struct net_device *dev, unsigned int flags,
8862 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00008863{
Eric Dumazetb536db92011-11-30 21:42:26 +00008864 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008865 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00008866
Petr Machata6d040322018-12-06 17:05:43 +00008867 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00008868 if (ret < 0)
8869 return ret;
8870
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008871 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008872 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008873 return ret;
8874}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008875EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008876
WANG Congf51048c2017-07-06 15:01:57 -07008877int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008878{
8879 const struct net_device_ops *ops = dev->netdev_ops;
8880
8881 if (ops->ndo_change_mtu)
8882 return ops->ndo_change_mtu(dev, new_mtu);
8883
Eric Dumazet501a90c2019-12-05 20:43:46 -08008884 /* Pairs with all the lockless reads of dev->mtu in the stack */
8885 WRITE_ONCE(dev->mtu, new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008886 return 0;
8887}
WANG Congf51048c2017-07-06 15:01:57 -07008888EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008889
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008890int dev_validate_mtu(struct net_device *dev, int new_mtu,
8891 struct netlink_ext_ack *extack)
8892{
8893 /* MTU must be positive, and in range */
8894 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
8895 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
8896 return -EINVAL;
8897 }
8898
8899 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
8900 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
8901 return -EINVAL;
8902 }
8903 return 0;
8904}
8905
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008906/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008907 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008908 * @dev: device
8909 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008910 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008911 *
8912 * Change the maximum transfer size of the network device.
8913 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008914int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8915 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008916{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008917 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008918
8919 if (new_mtu == dev->mtu)
8920 return 0;
8921
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008922 err = dev_validate_mtu(dev, new_mtu, extack);
8923 if (err)
8924 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008925
8926 if (!netif_device_present(dev))
8927 return -ENODEV;
8928
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01008929 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8930 err = notifier_to_errno(err);
8931 if (err)
8932 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008933
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008934 orig_mtu = dev->mtu;
8935 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008937 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008938 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8939 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008940 err = notifier_to_errno(err);
8941 if (err) {
8942 /* setting mtu back and notifying everyone again,
8943 * so that they have a chance to revert changes.
8944 */
8945 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008946 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8947 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008948 }
8949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008950 return err;
8951}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008952
8953int dev_set_mtu(struct net_device *dev, int new_mtu)
8954{
8955 struct netlink_ext_ack extack;
8956 int err;
8957
Li RongQinga6bcfc82018-08-03 15:45:21 +08008958 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008959 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08008960 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008961 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8962 return err;
8963}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008964EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008965
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008966/**
Cong Wang6a643dd2018-01-25 18:26:22 -08008967 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8968 * @dev: device
8969 * @new_len: new tx queue length
8970 */
8971int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8972{
8973 unsigned int orig_len = dev->tx_queue_len;
8974 int res;
8975
8976 if (new_len != (unsigned int)new_len)
8977 return -ERANGE;
8978
8979 if (new_len != orig_len) {
8980 dev->tx_queue_len = new_len;
8981 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8982 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03008983 if (res)
8984 goto err_rollback;
8985 res = dev_qdisc_change_tx_queue_len(dev);
8986 if (res)
8987 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08008988 }
8989
8990 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03008991
8992err_rollback:
8993 netdev_err(dev, "refused to change device tx_queue_len\n");
8994 dev->tx_queue_len = orig_len;
8995 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08008996}
8997
8998/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008999 * dev_set_group - Change group this device belongs to
9000 * @dev: device
9001 * @new_group: group this device should belong to
9002 */
9003void dev_set_group(struct net_device *dev, int new_group)
9004{
9005 dev->group = new_group;
9006}
9007EXPORT_SYMBOL(dev_set_group);
9008
9009/**
Petr Machatad59cdf92018-12-13 11:54:35 +00009010 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
9011 * @dev: device
9012 * @addr: new address
9013 * @extack: netlink extended ack
9014 */
9015int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
9016 struct netlink_ext_ack *extack)
9017{
9018 struct netdev_notifier_pre_changeaddr_info info = {
9019 .info.dev = dev,
9020 .info.extack = extack,
9021 .dev_addr = addr,
9022 };
9023 int rc;
9024
9025 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
9026 return notifier_to_errno(rc);
9027}
9028EXPORT_SYMBOL(dev_pre_changeaddr_notify);
9029
9030/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009031 * dev_set_mac_address - Change Media Access Control Address
9032 * @dev: device
9033 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00009034 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009035 *
9036 * Change the hardware (MAC) address of the device
9037 */
Petr Machata3a37a962018-12-13 11:54:30 +00009038int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
9039 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009040{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009041 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009042 int err;
9043
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009044 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009045 return -EOPNOTSUPP;
9046 if (sa->sa_family != dev->type)
9047 return -EINVAL;
9048 if (!netif_device_present(dev))
9049 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00009050 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
9051 if (err)
9052 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009053 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00009054 if (err)
9055 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00009056 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00009057 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04009058 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00009059 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009060}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009061EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009062
Cong Wang3b23a322021-02-11 11:34:10 -08009063static DECLARE_RWSEM(dev_addr_sem);
9064
9065int dev_set_mac_address_user(struct net_device *dev, struct sockaddr *sa,
9066 struct netlink_ext_ack *extack)
9067{
9068 int ret;
9069
9070 down_write(&dev_addr_sem);
9071 ret = dev_set_mac_address(dev, sa, extack);
9072 up_write(&dev_addr_sem);
9073 return ret;
9074}
9075EXPORT_SYMBOL(dev_set_mac_address_user);
9076
9077int dev_get_mac_address(struct sockaddr *sa, struct net *net, char *dev_name)
9078{
9079 size_t size = sizeof(sa->sa_data);
9080 struct net_device *dev;
9081 int ret = 0;
9082
9083 down_read(&dev_addr_sem);
9084 rcu_read_lock();
9085
9086 dev = dev_get_by_name_rcu(net, dev_name);
9087 if (!dev) {
9088 ret = -ENODEV;
9089 goto unlock;
9090 }
9091 if (!dev->addr_len)
9092 memset(sa->sa_data, 0, size);
9093 else
9094 memcpy(sa->sa_data, dev->dev_addr,
9095 min_t(size_t, size, dev->addr_len));
9096 sa->sa_family = dev->type;
9097
9098unlock:
9099 rcu_read_unlock();
9100 up_read(&dev_addr_sem);
9101 return ret;
9102}
9103EXPORT_SYMBOL(dev_get_mac_address);
9104
Jiri Pirko4bf84c32012-12-27 23:49:37 +00009105/**
9106 * dev_change_carrier - Change device carrier
9107 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00009108 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00009109 *
9110 * Change device carrier
9111 */
9112int dev_change_carrier(struct net_device *dev, bool new_carrier)
9113{
9114 const struct net_device_ops *ops = dev->netdev_ops;
9115
9116 if (!ops->ndo_change_carrier)
9117 return -EOPNOTSUPP;
9118 if (!netif_device_present(dev))
9119 return -ENODEV;
9120 return ops->ndo_change_carrier(dev, new_carrier);
9121}
9122EXPORT_SYMBOL(dev_change_carrier);
9123
Linus Torvalds1da177e2005-04-16 15:20:36 -07009124/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02009125 * dev_get_phys_port_id - Get device physical port ID
9126 * @dev: device
9127 * @ppid: port ID
9128 *
9129 * Get device physical port ID
9130 */
9131int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01009132 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02009133{
9134 const struct net_device_ops *ops = dev->netdev_ops;
9135
9136 if (!ops->ndo_get_phys_port_id)
9137 return -EOPNOTSUPP;
9138 return ops->ndo_get_phys_port_id(dev, ppid);
9139}
9140EXPORT_SYMBOL(dev_get_phys_port_id);
9141
9142/**
David Aherndb24a902015-03-17 20:23:15 -06009143 * dev_get_phys_port_name - Get device physical port name
9144 * @dev: device
9145 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00009146 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06009147 *
9148 * Get device physical port name
9149 */
9150int dev_get_phys_port_name(struct net_device *dev,
9151 char *name, size_t len)
9152{
9153 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01009154 int err;
David Aherndb24a902015-03-17 20:23:15 -06009155
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01009156 if (ops->ndo_get_phys_port_name) {
9157 err = ops->ndo_get_phys_port_name(dev, name, len);
9158 if (err != -EOPNOTSUPP)
9159 return err;
9160 }
9161 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06009162}
9163EXPORT_SYMBOL(dev_get_phys_port_name);
9164
9165/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08009166 * dev_get_port_parent_id - Get the device's port parent identifier
9167 * @dev: network device
9168 * @ppid: pointer to a storage for the port's parent identifier
9169 * @recurse: allow/disallow recursion to lower devices
9170 *
9171 * Get the devices's port parent identifier
9172 */
9173int dev_get_port_parent_id(struct net_device *dev,
9174 struct netdev_phys_item_id *ppid,
9175 bool recurse)
9176{
9177 const struct net_device_ops *ops = dev->netdev_ops;
9178 struct netdev_phys_item_id first = { };
9179 struct net_device *lower_dev;
9180 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009181 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009182
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009183 if (ops->ndo_get_port_parent_id) {
9184 err = ops->ndo_get_port_parent_id(dev, ppid);
9185 if (err != -EOPNOTSUPP)
9186 return err;
9187 }
9188
9189 err = devlink_compat_switch_id_get(dev, ppid);
Antoine Tenartc0288ae2021-10-08 16:21:03 +02009190 if (!recurse || err != -EOPNOTSUPP)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009191 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009192
Florian Fainellid6abc5962019-02-06 09:45:35 -08009193 netdev_for_each_lower_dev(dev, lower_dev, iter) {
Antoine Tenartc0288ae2021-10-08 16:21:03 +02009194 err = dev_get_port_parent_id(lower_dev, ppid, true);
Florian Fainellid6abc5962019-02-06 09:45:35 -08009195 if (err)
9196 break;
9197 if (!first.id_len)
9198 first = *ppid;
9199 else if (memcmp(&first, ppid, sizeof(*ppid)))
Ido Schimmele1b9efe2020-09-10 14:01:26 +03009200 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009201 }
9202
9203 return err;
9204}
9205EXPORT_SYMBOL(dev_get_port_parent_id);
9206
9207/**
9208 * netdev_port_same_parent_id - Indicate if two network devices have
9209 * the same port parent identifier
9210 * @a: first network device
9211 * @b: second network device
9212 */
9213bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
9214{
9215 struct netdev_phys_item_id a_id = { };
9216 struct netdev_phys_item_id b_id = { };
9217
9218 if (dev_get_port_parent_id(a, &a_id, true) ||
9219 dev_get_port_parent_id(b, &b_id, true))
9220 return false;
9221
9222 return netdev_phys_item_id_same(&a_id, &b_id);
9223}
9224EXPORT_SYMBOL(netdev_port_same_parent_id);
9225
9226/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009227 * dev_change_proto_down - update protocol port state information
9228 * @dev: device
9229 * @proto_down: new value
9230 *
9231 * This info can be used by switch drivers to set the phys state of the
9232 * port.
9233 */
9234int dev_change_proto_down(struct net_device *dev, bool proto_down)
9235{
9236 const struct net_device_ops *ops = dev->netdev_ops;
9237
9238 if (!ops->ndo_change_proto_down)
9239 return -EOPNOTSUPP;
9240 if (!netif_device_present(dev))
9241 return -ENODEV;
9242 return ops->ndo_change_proto_down(dev, proto_down);
9243}
9244EXPORT_SYMBOL(dev_change_proto_down);
9245
Andy Roulinb5899672019-02-22 18:06:36 +00009246/**
9247 * dev_change_proto_down_generic - generic implementation for
9248 * ndo_change_proto_down that sets carrier according to
9249 * proto_down.
9250 *
9251 * @dev: device
9252 * @proto_down: new value
9253 */
9254int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
9255{
9256 if (proto_down)
9257 netif_carrier_off(dev);
9258 else
9259 netif_carrier_on(dev);
9260 dev->proto_down = proto_down;
9261 return 0;
9262}
9263EXPORT_SYMBOL(dev_change_proto_down_generic);
9264
Roopa Prabhu829eb202020-07-31 17:34:01 -07009265/**
9266 * dev_change_proto_down_reason - proto down reason
9267 *
9268 * @dev: device
9269 * @mask: proto down mask
9270 * @value: proto down value
9271 */
9272void dev_change_proto_down_reason(struct net_device *dev, unsigned long mask,
9273 u32 value)
9274{
9275 int b;
9276
9277 if (!mask) {
9278 dev->proto_down_reason = value;
9279 } else {
9280 for_each_set_bit(b, &mask, 32) {
9281 if (value & (1 << b))
9282 dev->proto_down_reason |= BIT(b);
9283 else
9284 dev->proto_down_reason &= ~BIT(b);
9285 }
9286 }
9287}
9288EXPORT_SYMBOL(dev_change_proto_down_reason);
9289
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009290struct bpf_xdp_link {
9291 struct bpf_link link;
9292 struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
9293 int flags;
9294};
9295
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009296static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009297{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009298 if (flags & XDP_FLAGS_HW_MODE)
9299 return XDP_MODE_HW;
9300 if (flags & XDP_FLAGS_DRV_MODE)
9301 return XDP_MODE_DRV;
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009302 if (flags & XDP_FLAGS_SKB_MODE)
9303 return XDP_MODE_SKB;
9304 return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009305}
9306
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009307static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009308{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009309 switch (mode) {
9310 case XDP_MODE_SKB:
9311 return generic_xdp_install;
9312 case XDP_MODE_DRV:
9313 case XDP_MODE_HW:
9314 return dev->netdev_ops->ndo_bpf;
9315 default:
9316 return NULL;
Tom Rix5d867242020-11-01 07:36:47 -08009317 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009318}
9319
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009320static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
9321 enum bpf_xdp_mode mode)
9322{
9323 return dev->xdp_state[mode].link;
9324}
9325
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009326static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
9327 enum bpf_xdp_mode mode)
9328{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009329 struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
9330
9331 if (link)
9332 return link->link.prog;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009333 return dev->xdp_state[mode].prog;
9334}
9335
Jussi Maki879af962021-07-31 05:57:33 +00009336u8 dev_xdp_prog_count(struct net_device *dev)
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009337{
9338 u8 count = 0;
9339 int i;
9340
9341 for (i = 0; i < __MAX_XDP_MODE; i++)
9342 if (dev->xdp_state[i].prog || dev->xdp_state[i].link)
9343 count++;
9344 return count;
9345}
Jussi Maki879af962021-07-31 05:57:33 +00009346EXPORT_SYMBOL_GPL(dev_xdp_prog_count);
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009347
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009348u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
9349{
9350 struct bpf_prog *prog = dev_xdp_prog(dev, mode);
9351
9352 return prog ? prog->aux->id : 0;
9353}
9354
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009355static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
9356 struct bpf_xdp_link *link)
9357{
9358 dev->xdp_state[mode].link = link;
9359 dev->xdp_state[mode].prog = NULL;
9360}
9361
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009362static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
9363 struct bpf_prog *prog)
9364{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009365 dev->xdp_state[mode].link = NULL;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009366 dev->xdp_state[mode].prog = prog;
9367}
9368
9369static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
9370 bpf_op_t bpf_op, struct netlink_ext_ack *extack,
9371 u32 flags, struct bpf_prog *prog)
9372{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07009373 struct netdev_bpf xdp;
Björn Töpel7e6897f2019-12-13 18:51:09 +01009374 int err;
9375
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009376 memset(&xdp, 0, sizeof(xdp));
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009377 xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009378 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07009379 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009380 xdp.prog = prog;
9381
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009382 /* Drivers assume refcnt is already incremented (i.e, prog pointer is
9383 * "moved" into driver), so they don't increment it on their own, but
9384 * they do decrement refcnt when program is detached or replaced.
9385 * Given net_device also owns link/prog, we need to bump refcnt here
9386 * to prevent drivers from underflowing it.
9387 */
9388 if (prog)
9389 bpf_prog_inc(prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009390 err = bpf_op(dev, &xdp);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009391 if (err) {
9392 if (prog)
9393 bpf_prog_put(prog);
9394 return err;
9395 }
Björn Töpel7e6897f2019-12-13 18:51:09 +01009396
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009397 if (mode != XDP_MODE_HW)
9398 bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009399
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009400 return 0;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009401}
9402
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009403static void dev_xdp_uninstall(struct net_device *dev)
9404{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009405 struct bpf_xdp_link *link;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009406 struct bpf_prog *prog;
9407 enum bpf_xdp_mode mode;
9408 bpf_op_t bpf_op;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009409
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009410 ASSERT_RTNL();
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009411
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009412 for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
9413 prog = dev_xdp_prog(dev, mode);
9414 if (!prog)
9415 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009416
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009417 bpf_op = dev_xdp_bpf_op(dev, mode);
9418 if (!bpf_op)
9419 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009420
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009421 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9422
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009423 /* auto-detach link from net device */
9424 link = dev_xdp_link(dev, mode);
9425 if (link)
9426 link->dev = NULL;
9427 else
9428 bpf_prog_put(prog);
9429
9430 dev_xdp_set_link(dev, mode, NULL);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009431 }
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009432}
9433
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009434static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009435 struct bpf_xdp_link *link, struct bpf_prog *new_prog,
9436 struct bpf_prog *old_prog, u32 flags)
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009437{
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009438 unsigned int num_modes = hweight32(flags & XDP_FLAGS_MODES);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009439 struct bpf_prog *cur_prog;
Jussi Maki879af962021-07-31 05:57:33 +00009440 struct net_device *upper;
9441 struct list_head *iter;
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009442 enum bpf_xdp_mode mode;
9443 bpf_op_t bpf_op;
9444 int err;
9445
9446 ASSERT_RTNL();
9447
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009448 /* either link or prog attachment, never both */
9449 if (link && (new_prog || old_prog))
9450 return -EINVAL;
9451 /* link supports only XDP mode flags */
9452 if (link && (flags & ~XDP_FLAGS_MODES)) {
9453 NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
9454 return -EINVAL;
9455 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009456 /* just one XDP mode bit should be set, zero defaults to drv/skb mode */
9457 if (num_modes > 1) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009458 NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
9459 return -EINVAL;
9460 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009461 /* avoid ambiguity if offload + drv/skb mode progs are both loaded */
9462 if (!num_modes && dev_xdp_prog_count(dev) > 1) {
9463 NL_SET_ERR_MSG(extack,
9464 "More than one program loaded, unset mode is ambiguous");
9465 return -EINVAL;
9466 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009467 /* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
9468 if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
9469 NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
9470 return -EINVAL;
9471 }
9472
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009473 mode = dev_xdp_mode(dev, flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009474 /* can't replace attached link */
9475 if (dev_xdp_link(dev, mode)) {
9476 NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
9477 return -EBUSY;
9478 }
9479
Jussi Maki879af962021-07-31 05:57:33 +00009480 /* don't allow if an upper device already has a program */
9481 netdev_for_each_upper_dev_rcu(dev, upper, iter) {
9482 if (dev_xdp_prog_count(upper) > 0) {
9483 NL_SET_ERR_MSG(extack, "Cannot attach when an upper device already has a program");
9484 return -EEXIST;
9485 }
9486 }
9487
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009488 cur_prog = dev_xdp_prog(dev, mode);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009489 /* can't replace attached prog with link */
9490 if (link && cur_prog) {
9491 NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
9492 return -EBUSY;
9493 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009494 if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
9495 NL_SET_ERR_MSG(extack, "Active program does not match expected");
9496 return -EEXIST;
9497 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009498
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009499 /* put effective new program into new_prog */
9500 if (link)
9501 new_prog = link->link.prog;
9502
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009503 if (new_prog) {
9504 bool offload = mode == XDP_MODE_HW;
9505 enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
9506 ? XDP_MODE_DRV : XDP_MODE_SKB;
9507
Andrii Nakryiko068d9d12020-08-11 19:29:23 -07009508 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
9509 NL_SET_ERR_MSG(extack, "XDP program already attached");
9510 return -EBUSY;
9511 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009512 if (!offload && dev_xdp_prog(dev, other_mode)) {
9513 NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
9514 return -EEXIST;
9515 }
9516 if (!offload && bpf_prog_is_dev_bound(new_prog->aux)) {
9517 NL_SET_ERR_MSG(extack, "Using device-bound program without HW_MODE flag is not supported");
9518 return -EINVAL;
9519 }
9520 if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
9521 NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
9522 return -EINVAL;
9523 }
9524 if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
9525 NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
9526 return -EINVAL;
9527 }
9528 }
9529
9530 /* don't call drivers if the effective program didn't change */
9531 if (new_prog != cur_prog) {
9532 bpf_op = dev_xdp_bpf_op(dev, mode);
9533 if (!bpf_op) {
9534 NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
9535 return -EOPNOTSUPP;
9536 }
9537
9538 err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
9539 if (err)
9540 return err;
9541 }
9542
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009543 if (link)
9544 dev_xdp_set_link(dev, mode, link);
9545 else
9546 dev_xdp_set_prog(dev, mode, new_prog);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009547 if (cur_prog)
9548 bpf_prog_put(cur_prog);
9549
9550 return 0;
9551}
9552
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009553static int dev_xdp_attach_link(struct net_device *dev,
9554 struct netlink_ext_ack *extack,
9555 struct bpf_xdp_link *link)
9556{
9557 return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
9558}
9559
9560static int dev_xdp_detach_link(struct net_device *dev,
9561 struct netlink_ext_ack *extack,
9562 struct bpf_xdp_link *link)
9563{
9564 enum bpf_xdp_mode mode;
9565 bpf_op_t bpf_op;
9566
9567 ASSERT_RTNL();
9568
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009569 mode = dev_xdp_mode(dev, link->flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009570 if (dev_xdp_link(dev, mode) != link)
9571 return -EINVAL;
9572
9573 bpf_op = dev_xdp_bpf_op(dev, mode);
9574 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9575 dev_xdp_set_link(dev, mode, NULL);
9576 return 0;
9577}
9578
9579static void bpf_xdp_link_release(struct bpf_link *link)
9580{
9581 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9582
9583 rtnl_lock();
9584
9585 /* if racing with net_device's tear down, xdp_link->dev might be
9586 * already NULL, in which case link was already auto-detached
9587 */
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009588 if (xdp_link->dev) {
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009589 WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009590 xdp_link->dev = NULL;
9591 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009592
9593 rtnl_unlock();
9594}
9595
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009596static int bpf_xdp_link_detach(struct bpf_link *link)
9597{
9598 bpf_xdp_link_release(link);
9599 return 0;
9600}
9601
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009602static void bpf_xdp_link_dealloc(struct bpf_link *link)
9603{
9604 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9605
9606 kfree(xdp_link);
9607}
9608
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009609static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
9610 struct seq_file *seq)
9611{
9612 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9613 u32 ifindex = 0;
9614
9615 rtnl_lock();
9616 if (xdp_link->dev)
9617 ifindex = xdp_link->dev->ifindex;
9618 rtnl_unlock();
9619
9620 seq_printf(seq, "ifindex:\t%u\n", ifindex);
9621}
9622
9623static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
9624 struct bpf_link_info *info)
9625{
9626 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9627 u32 ifindex = 0;
9628
9629 rtnl_lock();
9630 if (xdp_link->dev)
9631 ifindex = xdp_link->dev->ifindex;
9632 rtnl_unlock();
9633
9634 info->xdp.ifindex = ifindex;
9635 return 0;
9636}
9637
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009638static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
9639 struct bpf_prog *old_prog)
9640{
9641 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9642 enum bpf_xdp_mode mode;
9643 bpf_op_t bpf_op;
9644 int err = 0;
9645
9646 rtnl_lock();
9647
9648 /* link might have been auto-released already, so fail */
9649 if (!xdp_link->dev) {
9650 err = -ENOLINK;
9651 goto out_unlock;
9652 }
9653
9654 if (old_prog && link->prog != old_prog) {
9655 err = -EPERM;
9656 goto out_unlock;
9657 }
9658 old_prog = link->prog;
9659 if (old_prog == new_prog) {
9660 /* no-op, don't disturb drivers */
9661 bpf_prog_put(new_prog);
9662 goto out_unlock;
9663 }
9664
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009665 mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009666 bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
9667 err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
9668 xdp_link->flags, new_prog);
9669 if (err)
9670 goto out_unlock;
9671
9672 old_prog = xchg(&link->prog, new_prog);
9673 bpf_prog_put(old_prog);
9674
9675out_unlock:
9676 rtnl_unlock();
9677 return err;
9678}
9679
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009680static const struct bpf_link_ops bpf_xdp_link_lops = {
9681 .release = bpf_xdp_link_release,
9682 .dealloc = bpf_xdp_link_dealloc,
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009683 .detach = bpf_xdp_link_detach,
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009684 .show_fdinfo = bpf_xdp_link_show_fdinfo,
9685 .fill_link_info = bpf_xdp_link_fill_link_info,
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009686 .update_prog = bpf_xdp_link_update,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009687};
9688
9689int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
9690{
9691 struct net *net = current->nsproxy->net_ns;
9692 struct bpf_link_primer link_primer;
9693 struct bpf_xdp_link *link;
9694 struct net_device *dev;
9695 int err, fd;
9696
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009697 rtnl_lock();
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009698 dev = dev_get_by_index(net, attr->link_create.target_ifindex);
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009699 if (!dev) {
9700 rtnl_unlock();
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009701 return -EINVAL;
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009702 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009703
9704 link = kzalloc(sizeof(*link), GFP_USER);
9705 if (!link) {
9706 err = -ENOMEM;
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009707 goto unlock;
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009708 }
9709
9710 bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog);
9711 link->dev = dev;
9712 link->flags = attr->link_create.flags;
9713
9714 err = bpf_link_prime(&link->link, &link_primer);
9715 if (err) {
9716 kfree(link);
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009717 goto unlock;
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009718 }
9719
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009720 err = dev_xdp_attach_link(dev, NULL, link);
9721 rtnl_unlock();
9722
9723 if (err) {
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009724 link->dev = NULL;
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009725 bpf_link_cleanup(&link_primer);
9726 goto out_put_dev;
9727 }
9728
9729 fd = bpf_link_settle(&link_primer);
9730 /* link itself doesn't hold dev's refcnt to not complicate shutdown */
9731 dev_put(dev);
9732 return fd;
9733
Xuan Zhuo5acc7d32021-07-10 11:16:35 +08009734unlock:
9735 rtnl_unlock();
9736
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009737out_put_dev:
9738 dev_put(dev);
9739 return err;
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009740}
9741
9742/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07009743 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
9744 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07009745 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07009746 * @fd: new program fd or negative value to clear
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009747 * @expected_fd: old program fd that userspace expects to replace or clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01009748 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07009749 *
9750 * Set or clear a bpf program for a device
9751 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07009752int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009753 int fd, int expected_fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07009754{
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009755 enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009756 struct bpf_prog *new_prog = NULL, *old_prog = NULL;
Brenden Blancoa7862b42016-07-19 12:16:48 -07009757 int err;
9758
Daniel Borkmann85de8572016-11-28 23:16:54 +01009759 ASSERT_RTNL();
9760
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009761 if (fd >= 0) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009762 new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
9763 mode != XDP_MODE_SKB);
9764 if (IS_ERR(new_prog))
9765 return PTR_ERR(new_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009766 }
9767
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009768 if (expected_fd >= 0) {
9769 old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
9770 mode != XDP_MODE_SKB);
9771 if (IS_ERR(old_prog)) {
9772 err = PTR_ERR(old_prog);
9773 old_prog = NULL;
9774 goto err_out;
9775 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009776 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07009777
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009778 err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009779
9780err_out:
9781 if (err && new_prog)
9782 bpf_prog_put(new_prog);
9783 if (old_prog)
9784 bpf_prog_put(old_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009785 return err;
9786}
Brenden Blancoa7862b42016-07-19 12:16:48 -07009787
9788/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009789 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07009790 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07009791 *
9792 * Returns a suitable unique value for a new device interface
9793 * number. The caller must hold the rtnl semaphore or the
9794 * dev_base_lock to be sure it remains unique.
9795 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07009796static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009797{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009798 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11009799
Linus Torvalds1da177e2005-04-16 15:20:36 -07009800 for (;;) {
9801 if (++ifindex <= 0)
9802 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009803 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009804 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009805 }
9806}
9807
Linus Torvalds1da177e2005-04-16 15:20:36 -07009808/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08009809static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07009810DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009811
Stephen Hemminger6f05f622007-03-08 20:46:03 -08009812static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009813{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009814 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009815 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009816}
9817
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009818static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
9819 struct net_device *upper, netdev_features_t features)
9820{
9821 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9822 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009823 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009824
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009825 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009826 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009827 if (!(upper->wanted_features & feature)
9828 && (features & feature)) {
9829 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
9830 &feature, upper->name);
9831 features &= ~feature;
9832 }
9833 }
9834
9835 return features;
9836}
9837
9838static void netdev_sync_lower_features(struct net_device *upper,
9839 struct net_device *lower, netdev_features_t features)
9840{
9841 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9842 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009843 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009844
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009845 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009846 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009847 if (!(features & feature) && (lower->features & feature)) {
9848 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
9849 &feature, lower->name);
9850 lower->wanted_features &= ~feature;
Cong Wangdd912302020-05-07 12:19:03 -07009851 __netdev_update_features(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009852
9853 if (unlikely(lower->features & feature))
9854 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
9855 &feature, lower->name);
Cong Wangdd912302020-05-07 12:19:03 -07009856 else
9857 netdev_features_change(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009858 }
9859 }
9860}
9861
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009862static netdev_features_t netdev_fix_features(struct net_device *dev,
9863 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07009864{
Michał Mirosław57422dc2011-01-22 12:14:12 +00009865 /* Fix illegal checksum combinations */
9866 if ((features & NETIF_F_HW_CSUM) &&
9867 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009868 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00009869 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
9870 }
9871
Herbert Xub63365a2008-10-23 01:11:29 -07009872 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009873 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009874 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009875 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07009876 }
9877
Pravin B Shelarec5f0612013-03-07 09:28:01 +00009878 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
9879 !(features & NETIF_F_IP_CSUM)) {
9880 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
9881 features &= ~NETIF_F_TSO;
9882 features &= ~NETIF_F_TSO_ECN;
9883 }
9884
9885 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
9886 !(features & NETIF_F_IPV6_CSUM)) {
9887 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
9888 features &= ~NETIF_F_TSO6;
9889 }
9890
Alexander Duyckb1dc4972016-05-02 09:38:24 -07009891 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
9892 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
9893 features &= ~NETIF_F_TSO_MANGLEID;
9894
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00009895 /* TSO ECN requires that TSO is present as well. */
9896 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
9897 features &= ~NETIF_F_TSO_ECN;
9898
Michał Mirosław212b5732011-02-15 16:59:16 +00009899 /* Software GSO depends on SG. */
9900 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009901 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00009902 features &= ~NETIF_F_GSO;
9903 }
9904
Alexander Duyck802ab552016-04-10 21:45:03 -04009905 /* GSO partial features require GSO partial be set */
9906 if ((features & dev->gso_partial_features) &&
9907 !(features & NETIF_F_GSO_PARTIAL)) {
9908 netdev_dbg(dev,
9909 "Dropping partially supported GSO features since no GSO partial.\n");
9910 features &= ~dev->gso_partial_features;
9911 }
9912
Michael Chanfb1f5f72017-12-16 03:09:40 -05009913 if (!(features & NETIF_F_RXCSUM)) {
9914 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
9915 * successfully merged by hardware must also have the
9916 * checksum verified by hardware. If the user does not
9917 * want to enable RXCSUM, logically, we should disable GRO_HW.
9918 */
9919 if (features & NETIF_F_GRO_HW) {
9920 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
9921 features &= ~NETIF_F_GRO_HW;
9922 }
9923 }
9924
Gal Pressmande8d5ab2018-03-12 11:48:49 +02009925 /* LRO/HW-GRO features cannot be combined with RX-FCS */
9926 if (features & NETIF_F_RXFCS) {
9927 if (features & NETIF_F_LRO) {
9928 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
9929 features &= ~NETIF_F_LRO;
9930 }
9931
9932 if (features & NETIF_F_GRO_HW) {
9933 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
9934 features &= ~NETIF_F_GRO_HW;
9935 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02009936 }
9937
Ben Ben-ishay54b2b3e2020-12-16 12:32:24 +02009938 if ((features & NETIF_F_GRO_HW) && (features & NETIF_F_LRO)) {
9939 netdev_dbg(dev, "Dropping LRO feature since HW-GRO is requested.\n");
9940 features &= ~NETIF_F_LRO;
9941 }
9942
Tariq Toukan25537d72021-01-14 17:12:15 +02009943 if (features & NETIF_F_HW_TLS_TX) {
9944 bool ip_csum = (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) ==
9945 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
9946 bool hw_csum = features & NETIF_F_HW_CSUM;
9947
9948 if (!ip_csum && !hw_csum) {
9949 netdev_dbg(dev, "Dropping TLS TX HW offload feature since no CSUM feature.\n");
9950 features &= ~NETIF_F_HW_TLS_TX;
9951 }
Tariq Toukanae0b04b2020-12-13 16:39:29 +02009952 }
9953
Tariq Toukana3eb4e92021-01-17 17:15:38 +02009954 if ((features & NETIF_F_HW_TLS_RX) && !(features & NETIF_F_RXCSUM)) {
9955 netdev_dbg(dev, "Dropping TLS RX HW offload feature since no RXCSUM feature.\n");
9956 features &= ~NETIF_F_HW_TLS_RX;
9957 }
9958
Herbert Xub63365a2008-10-23 01:11:29 -07009959 return features;
9960}
Herbert Xub63365a2008-10-23 01:11:29 -07009961
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009962int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00009963{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009964 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009965 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009966 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05009967 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00009968
Michał Mirosław87267482011-04-12 09:56:38 +00009969 ASSERT_RTNL();
9970
Michał Mirosław5455c692011-02-15 16:59:17 +00009971 features = netdev_get_wanted_features(dev);
9972
9973 if (dev->netdev_ops->ndo_fix_features)
9974 features = dev->netdev_ops->ndo_fix_features(dev, features);
9975
9976 /* driver might be less strict about feature dependencies */
9977 features = netdev_fix_features(dev, features);
9978
Randy Dunlap4250b752020-09-17 21:35:15 -07009979 /* some features can't be enabled if they're off on an upper device */
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009980 netdev_for_each_upper_dev_rcu(dev, upper, iter)
9981 features = netdev_sync_upper_features(dev, upper, features);
9982
Michał Mirosław5455c692011-02-15 16:59:17 +00009983 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05009984 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00009985
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009986 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
9987 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00009988
9989 if (dev->netdev_ops->ndo_set_features)
9990 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01009991 else
9992 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00009993
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009994 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00009995 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009996 "set_features() failed (%d); wanted %pNF, left %pNF\n",
9997 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01009998 /* return non-0 since some features might have changed and
9999 * it's better to fire a spurious notification than miss it
10000 */
10001 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010002 }
10003
Jarod Wilsone7868a82015-11-03 23:09:32 -050010004sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -050010005 /* some features must be disabled on lower devices when disabled
10006 * on an upper device (think: bonding master or bridge)
10007 */
10008 netdev_for_each_lower_dev(dev, lower, iter)
10009 netdev_sync_lower_features(dev, lower, features);
10010
Sabrina Dubrocaae847f42017-07-21 12:49:31 +020010011 if (!err) {
10012 netdev_features_t diff = features ^ dev->features;
10013
10014 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
10015 /* udp_tunnel_{get,drop}_rx_info both need
10016 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
10017 * device, or they won't do anything.
10018 * Thus we need to update dev->features
10019 * *before* calling udp_tunnel_get_rx_info,
10020 * but *after* calling udp_tunnel_drop_rx_info.
10021 */
10022 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
10023 dev->features = features;
10024 udp_tunnel_get_rx_info(dev);
10025 } else {
10026 udp_tunnel_drop_rx_info(dev);
10027 }
10028 }
10029
Gal Pressman9daae9b2018-03-28 17:46:54 +030010030 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
10031 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
10032 dev->features = features;
10033 err |= vlan_get_rx_ctag_filter_info(dev);
10034 } else {
10035 vlan_drop_rx_ctag_filter_info(dev);
10036 }
10037 }
10038
10039 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
10040 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
10041 dev->features = features;
10042 err |= vlan_get_rx_stag_filter_info(dev);
10043 } else {
10044 vlan_drop_rx_stag_filter_info(dev);
10045 }
10046 }
10047
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010048 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +020010049 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010050
Jarod Wilsone7868a82015-11-03 23:09:32 -050010051 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010052}
10053
Michał Mirosławafe12cc2011-05-07 03:22:17 +000010054/**
10055 * netdev_update_features - recalculate device features
10056 * @dev: the device to check
10057 *
10058 * Recalculate dev->features set and send notifications if it
10059 * has changed. Should be called after driver or hardware dependent
10060 * conditions might have changed that influence the features.
10061 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010062void netdev_update_features(struct net_device *dev)
10063{
10064 if (__netdev_update_features(dev))
10065 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +000010066}
10067EXPORT_SYMBOL(netdev_update_features);
10068
Linus Torvalds1da177e2005-04-16 15:20:36 -070010069/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +000010070 * netdev_change_features - recalculate device features
10071 * @dev: the device to check
10072 *
10073 * Recalculate dev->features set and send notifications even
10074 * if they have not changed. Should be called instead of
10075 * netdev_update_features() if also dev->vlan_features might
10076 * have changed to allow the changes to be propagated to stacked
10077 * VLAN devices.
10078 */
10079void netdev_change_features(struct net_device *dev)
10080{
10081 __netdev_update_features(dev);
10082 netdev_features_change(dev);
10083}
10084EXPORT_SYMBOL(netdev_change_features);
10085
10086/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010087 * netif_stacked_transfer_operstate - transfer operstate
10088 * @rootdev: the root or lower level device to transfer state from
10089 * @dev: the device to transfer operstate to
10090 *
10091 * Transfer operational state from root to device. This is normally
10092 * called when a stacking relationship exists between the root
10093 * device and the device(a leaf device).
10094 */
10095void netif_stacked_transfer_operstate(const struct net_device *rootdev,
10096 struct net_device *dev)
10097{
10098 if (rootdev->operstate == IF_OPER_DORMANT)
10099 netif_dormant_on(dev);
10100 else
10101 netif_dormant_off(dev);
10102
Andrew Lunneec517cd2020-04-20 00:11:50 +020010103 if (rootdev->operstate == IF_OPER_TESTING)
10104 netif_testing_on(dev);
10105 else
10106 netif_testing_off(dev);
10107
Zhang Shengju0575c862017-04-26 17:49:38 +080010108 if (netif_carrier_ok(rootdev))
10109 netif_carrier_on(dev);
10110 else
10111 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010112}
10113EXPORT_SYMBOL(netif_stacked_transfer_operstate);
10114
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010115static int netif_alloc_rx_queues(struct net_device *dev)
10116{
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010117 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +000010118 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +053010119 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010120 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010121
Tom Herbertbd25fa72010-10-18 18:00:16 +000010122 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010123
Vasily Averinc948f512021-07-19 13:44:23 +030010124 rx = kvzalloc(sz, GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -070010125 if (!rx)
10126 return -ENOMEM;
10127
Tom Herbertbd25fa72010-10-18 18:00:16 +000010128 dev->_rx = rx;
10129
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010130 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +000010131 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010132
10133 /* XDP RX-queue setup */
Björn Töpelb02e5a02020-11-30 19:52:01 +010010134 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i, 0);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010135 if (err < 0)
10136 goto err_rxq_info;
10137 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010138 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010139
10140err_rxq_info:
10141 /* Rollback successful reg's and free other resources */
10142 while (i--)
10143 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -080010144 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010145 dev->_rx = NULL;
10146 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010147}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010148
10149static void netif_free_rx_queues(struct net_device *dev)
10150{
10151 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010152
10153 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
10154 if (!dev->_rx)
10155 return;
10156
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010157 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -080010158 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
10159
10160 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010161}
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010162
Changli Gaoaa942102010-12-04 02:31:41 +000010163static void netdev_init_one_queue(struct net_device *dev,
10164 struct netdev_queue *queue, void *_unused)
10165{
10166 /* Initialize queue lock */
10167 spin_lock_init(&queue->_xmit_lock);
Cong Wang1a33e102020-05-02 22:22:19 -070010168 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
Changli Gaoaa942102010-12-04 02:31:41 +000010169 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +000010170 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +000010171 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +000010172#ifdef CONFIG_BQL
10173 dql_init(&queue->dql, HZ);
10174#endif
Changli Gaoaa942102010-12-04 02:31:41 +000010175}
10176
Eric Dumazet60877a32013-06-20 01:15:51 -070010177static void netif_free_tx_queues(struct net_device *dev)
10178{
WANG Cong4cb28972014-06-02 15:55:22 -070010179 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -070010180}
10181
Tom Herberte6484932010-10-18 18:04:39 +000010182static int netif_alloc_netdev_queues(struct net_device *dev)
10183{
10184 unsigned int count = dev->num_tx_queues;
10185 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -070010186 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +000010187
Eric Dumazetd3397272015-07-06 17:13:26 +020010188 if (count < 1 || count > 0xffff)
10189 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +000010190
Vasily Averinc948f512021-07-19 13:44:23 +030010191 tx = kvzalloc(sz, GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -070010192 if (!tx)
10193 return -ENOMEM;
10194
Tom Herberte6484932010-10-18 18:04:39 +000010195 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +000010196
Tom Herberte6484932010-10-18 18:04:39 +000010197 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
10198 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +000010199
10200 return 0;
Tom Herberte6484932010-10-18 18:04:39 +000010201}
10202
Denys Vlasenkoa2029242015-05-11 21:17:53 +020010203void netif_tx_stop_all_queues(struct net_device *dev)
10204{
10205 unsigned int i;
10206
10207 for (i = 0; i < dev->num_tx_queues; i++) {
10208 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +110010209
Denys Vlasenkoa2029242015-05-11 21:17:53 +020010210 netif_tx_stop_queue(txq);
10211 }
10212}
10213EXPORT_SYMBOL(netif_tx_stop_all_queues);
10214
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010215/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010216 * register_netdevice - register a network device
10217 * @dev: device to register
10218 *
10219 * Take a completed network device structure and add it to the kernel
10220 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10221 * chain. 0 is returned on success. A negative errno code is returned
10222 * on a failure to set up the device, or if the name is a duplicate.
10223 *
10224 * Callers must hold the rtnl semaphore. You may want
10225 * register_netdev() instead of this.
10226 *
10227 * BUGS:
10228 * The locking appears insufficient to guarantee two parallel registers
10229 * will not get the same name.
10230 */
10231
10232int register_netdevice(struct net_device *dev)
10233{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010234 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010235 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010236
Florian Fainellie283de32018-04-30 14:20:05 -070010237 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
10238 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010239 BUG_ON(dev_boot_phase);
10240 ASSERT_RTNL();
10241
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010242 might_sleep();
10243
Linus Torvalds1da177e2005-04-16 15:20:36 -070010244 /* When net_device's are persistent, this will be fatal. */
10245 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010246 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010247
Jakub Kicinski9000edb2020-03-16 13:47:12 -070010248 ret = ethtool_check_ops(dev->ethtool_ops);
10249 if (ret)
10250 return ret;
10251
David S. Millerf1f28aa2008-07-15 00:08:33 -070010252 spin_lock_init(&dev->addr_list_lock);
Cong Wang845e0eb2020-06-08 14:53:01 -070010253 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010254
Gao feng828de4f2012-09-13 20:58:27 +000010255 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +000010256 if (ret < 0)
10257 goto out;
10258
Eric Dumazet9077f052019-10-03 08:59:24 -070010259 ret = -ENOMEM;
Jiri Pirkoff927412019-09-30 11:48:15 +020010260 dev->name_node = netdev_name_node_head_alloc(dev);
10261 if (!dev->name_node)
10262 goto out;
10263
Linus Torvalds1da177e2005-04-16 15:20:36 -070010264 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010265 if (dev->netdev_ops->ndo_init) {
10266 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010267 if (ret) {
10268 if (ret > 0)
10269 ret = -EIO;
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010270 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010271 }
10272 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010273
Patrick McHardyf6469682013-04-19 02:04:27 +000010274 if (((dev->hw_features | dev->features) &
10275 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +000010276 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
10277 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
10278 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
10279 ret = -EINVAL;
10280 goto err_uninit;
10281 }
10282
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +000010283 ret = -EBUSY;
10284 if (!dev->ifindex)
10285 dev->ifindex = dev_new_index(net);
10286 else if (__dev_get_by_index(net, dev->ifindex))
10287 goto err_uninit;
10288
Michał Mirosław5455c692011-02-15 16:59:17 +000010289 /* Transfer changeable features to wanted_features and enable
10290 * software offloads (GSO and GRO).
10291 */
Steffen Klassert1a3c9982020-01-25 11:26:43 +010010292 dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
Michał Mirosław14d12322011-02-22 16:52:28 +000010293 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +020010294
Jakub Kicinski876c4382021-01-06 13:06:34 -080010295 if (dev->udp_tunnel_nic_info) {
Sabrina Dubrocad764a122017-07-21 12:49:28 +020010296 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
10297 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
10298 }
10299
Michał Mirosław14d12322011-02-22 16:52:28 +000010300 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010301
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010302 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +000010303 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010304
Alexander Duyck7f348a62016-04-20 16:51:00 -040010305 /* If IPv4 TCP segmentation offload is supported we should also
10306 * allow the device to enable segmenting the frame with the option
10307 * of ignoring a static IP ID value. This doesn't enable the
10308 * feature itself but allows the user to enable it later.
10309 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010310 if (dev->hw_features & NETIF_F_TSO)
10311 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -040010312 if (dev->vlan_features & NETIF_F_TSO)
10313 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
10314 if (dev->mpls_features & NETIF_F_TSO)
10315 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
10316 if (dev->hw_enc_features & NETIF_F_TSO)
10317 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -070010318
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010319 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +000010320 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010321 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +000010322
Pravin B Shelaree579672013-03-07 09:28:08 +000010323 /* Make NETIF_F_SG inheritable to tunnel devices.
10324 */
Alexander Duyck802ab552016-04-10 21:45:03 -040010325 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +000010326
Simon Horman0d89d202013-05-23 21:02:52 +000010327 /* Make NETIF_F_SG inheritable to MPLS.
10328 */
10329 dev->mpls_features |= NETIF_F_SG;
10330
Johannes Berg7ffbe3f2009-10-02 05:15:27 +000010331 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
10332 ret = notifier_to_errno(ret);
10333 if (ret)
10334 goto err_uninit;
10335
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010336 ret = netdev_register_kobject(dev);
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010337 if (ret) {
10338 dev->reg_state = NETREG_UNREGISTERED;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010339 goto err_uninit;
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010340 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010341 dev->reg_state = NETREG_REGISTERED;
10342
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010343 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +000010344
Linus Torvalds1da177e2005-04-16 15:20:36 -070010345 /*
10346 * Default initial state at registry is that the
10347 * device is present.
10348 */
10349
10350 set_bit(__LINK_STATE_PRESENT, &dev->state);
10351
Ben Hutchings8f4cccb2012-08-20 22:16:51 +010010352 linkwatch_init_dev(dev);
10353
Linus Torvalds1da177e2005-04-16 15:20:36 -070010354 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010355 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010356 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -040010357 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010358
Jiri Pirko948b3372013-01-08 01:38:25 +000010359 /* If the device has permanent device address, driver should
10360 * set dev_addr and also addr_assign_type should be set to
10361 * NET_ADDR_PERM (default value).
10362 */
10363 if (dev->addr_assign_type == NET_ADDR_PERM)
10364 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
10365
Linus Torvalds1da177e2005-04-16 15:20:36 -070010366 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010367 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -070010368 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010369 if (ret) {
Jakub Kicinski766b0512021-01-06 10:40:07 -080010370 /* Expect explicit free_netdev() on failure */
10371 dev->needs_free_netdev = false;
Jakub Kicinski037e56b2021-01-19 12:25:19 -080010372 unregister_netdevice_queue(dev, NULL);
Jakub Kicinski766b0512021-01-06 10:40:07 -080010373 goto out;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010374 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010375 /*
10376 * Prevent userspace races by waiting until the network
10377 * device is fully setup before sending notifications.
10378 */
Patrick McHardya2835762010-02-26 06:34:51 +000010379 if (!dev->rtnl_link_ops ||
10380 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010381 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010382
10383out:
10384 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010385
10386err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010387 if (dev->netdev_ops->ndo_uninit)
10388 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -040010389 if (dev->priv_destructor)
10390 dev->priv_destructor(dev);
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010391err_free_name:
10392 netdev_name_node_free(dev->name_node);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010393 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010394}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010395EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010396
10397/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010398 * init_dummy_netdev - init a dummy network device for NAPI
10399 * @dev: device to init
10400 *
10401 * This takes a network device structure and initialize the minimum
10402 * amount of fields so it can be used to schedule NAPI polls without
10403 * registering a full blown interface. This is to be used by drivers
10404 * that need to tie several hardware interfaces to a single NAPI
10405 * poll scheduler due to HW limitations.
10406 */
10407int init_dummy_netdev(struct net_device *dev)
10408{
10409 /* Clear everything. Note we don't initialize spinlocks
10410 * are they aren't supposed to be taken by any of the
10411 * NAPI code and this dummy netdev is supposed to be
10412 * only ever used for NAPI polls
10413 */
10414 memset(dev, 0, sizeof(struct net_device));
10415
10416 /* make sure we BUG if trying to hit standard
10417 * register/unregister code path
10418 */
10419 dev->reg_state = NETREG_DUMMY;
10420
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010421 /* NAPI wants this */
10422 INIT_LIST_HEAD(&dev->napi_list);
10423
10424 /* a dummy interface is started by default */
10425 set_bit(__LINK_STATE_PRESENT, &dev->state);
10426 set_bit(__LINK_STATE_START, &dev->state);
10427
Josh Elsasser35edfdc2019-01-26 14:38:33 -080010428 /* napi_busy_loop stats accounting wants this */
10429 dev_net_set(dev, &init_net);
10430
Eric Dumazet29b44332010-10-11 10:22:12 +000010431 /* Note : We dont allocate pcpu_refcnt for dummy devices,
10432 * because users of this 'device' dont need to change
10433 * its refcount.
10434 */
10435
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010436 return 0;
10437}
10438EXPORT_SYMBOL_GPL(init_dummy_netdev);
10439
10440
10441/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010442 * register_netdev - register a network device
10443 * @dev: device to register
10444 *
10445 * Take a completed network device structure and add it to the kernel
10446 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10447 * chain. 0 is returned on success. A negative errno code is returned
10448 * on a failure to set up the device, or if the name is a duplicate.
10449 *
Borislav Petkov38b4da382007-04-20 22:14:10 -070010450 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010451 * and expands the device name if you passed a format string to
10452 * alloc_netdev.
10453 */
10454int register_netdev(struct net_device *dev)
10455{
10456 int err;
10457
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +030010458 if (rtnl_lock_killable())
10459 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010460 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010461 rtnl_unlock();
10462 return err;
10463}
10464EXPORT_SYMBOL(register_netdev);
10465
Eric Dumazet29b44332010-10-11 10:22:12 +000010466int netdev_refcnt_read(const struct net_device *dev)
10467{
Eric Dumazet919067c2021-03-19 10:39:33 -070010468#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010469 int i, refcnt = 0;
10470
10471 for_each_possible_cpu(i)
10472 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
10473 return refcnt;
Eric Dumazet919067c2021-03-19 10:39:33 -070010474#else
10475 return refcount_read(&dev->dev_refcnt);
10476#endif
Eric Dumazet29b44332010-10-11 10:22:12 +000010477}
10478EXPORT_SYMBOL(netdev_refcnt_read);
10479
Dmitry Vyukov5aa3afe2021-03-23 07:49:23 +010010480int netdev_unregister_timeout_secs __read_mostly = 10;
10481
Mauro Carvalho Chehabde2b5412020-09-22 13:22:52 +020010482#define WAIT_REFS_MIN_MSECS 1
10483#define WAIT_REFS_MAX_MSECS 250
Ben Hutchings2c530402012-07-10 10:55:09 +000010484/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010485 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +000010486 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010487 *
10488 * This is called when unregistering network devices.
10489 *
10490 * Any protocol or device that holds a reference should register
10491 * for netdevice notification, and cleanup and put back the
10492 * reference if they receive an UNREGISTER event.
10493 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010494 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010495 */
10496static void netdev_wait_allrefs(struct net_device *dev)
10497{
10498 unsigned long rebroadcast_time, warning_time;
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010499 int wait = 0, refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010500
Eric Dumazete014deb2009-11-17 05:59:21 +000010501 linkwatch_forget_dev(dev);
10502
Linus Torvalds1da177e2005-04-16 15:20:36 -070010503 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +000010504 refcnt = netdev_refcnt_read(dev);
10505
Eric Dumazetadd2d732021-03-22 11:21:45 -070010506 while (refcnt != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010507 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010508 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010509
10510 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010511 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010512
Eric Dumazet748e2d92012-08-22 21:50:59 +000010513 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010514 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +000010515 rtnl_lock();
10516
Linus Torvalds1da177e2005-04-16 15:20:36 -070010517 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
10518 &dev->state)) {
10519 /* We must not have linkwatch events
10520 * pending on unregister. If this
10521 * happens, we simply run the queue
10522 * unscheduled, resulting in a noop
10523 * for this device.
10524 */
10525 linkwatch_run_queue();
10526 }
10527
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010528 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010529
10530 rebroadcast_time = jiffies;
10531 }
10532
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010533 if (!wait) {
10534 rcu_barrier();
10535 wait = WAIT_REFS_MIN_MSECS;
10536 } else {
10537 msleep(wait);
10538 wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
10539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010540
Eric Dumazet29b44332010-10-11 10:22:12 +000010541 refcnt = netdev_refcnt_read(dev);
10542
Dmitry Vyukov6c996e12021-03-25 15:52:45 +010010543 if (refcnt != 1 &&
Dmitry Vyukov5aa3afe2021-03-23 07:49:23 +010010544 time_after(jiffies, warning_time +
10545 netdev_unregister_timeout_secs * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010546 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
10547 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010548 warning_time = jiffies;
10549 }
10550 }
10551}
10552
10553/* The sequence is:
10554 *
10555 * rtnl_lock();
10556 * ...
10557 * register_netdevice(x1);
10558 * register_netdevice(x2);
10559 * ...
10560 * unregister_netdevice(y1);
10561 * unregister_netdevice(y2);
10562 * ...
10563 * rtnl_unlock();
10564 * free_netdev(y1);
10565 * free_netdev(y2);
10566 *
Herbert Xu58ec3b42008-10-07 15:50:03 -070010567 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -070010568 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010569 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070010570 * without deadlocking with linkwatch via keventd.
10571 * 2) Since we run with the RTNL semaphore not held, we can sleep
10572 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -070010573 *
10574 * We must not return until all unregister events added during
10575 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010577void netdev_run_todo(void)
10578{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010579 struct list_head list;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010580#ifdef CONFIG_LOCKDEP
10581 struct list_head unlink_list;
10582
10583 list_replace_init(&net_unlink_list, &unlink_list);
10584
10585 while (!list_empty(&unlink_list)) {
10586 struct net_device *dev = list_first_entry(&unlink_list,
10587 struct net_device,
10588 unlink_list);
Taehee Yoo0e8b8d62020-10-15 16:26:06 +000010589 list_del_init(&dev->unlink_list);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010590 dev->nested_level = dev->lower_level - 1;
10591 }
10592#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010593
Linus Torvalds1da177e2005-04-16 15:20:36 -070010594 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010595 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -070010596
10597 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010598
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010599
10600 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +000010601 if (!list_empty(&list))
10602 rcu_barrier();
10603
Linus Torvalds1da177e2005-04-16 15:20:36 -070010604 while (!list_empty(&list)) {
10605 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +000010606 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010607 list_del(&dev->todo_list);
10608
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010609 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010610 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070010611 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010612 dump_stack();
10613 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010614 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010615
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010616 dev->reg_state = NETREG_UNREGISTERED;
10617
10618 netdev_wait_allrefs(dev);
10619
10620 /* paranoia */
Eric Dumazetadd2d732021-03-22 11:21:45 -070010621 BUG_ON(netdev_refcnt_read(dev) != 1);
Salam Noureddine7866a622015-01-27 11:35:48 -080010622 BUG_ON(!list_empty(&dev->ptype_all));
10623 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +000010624 WARN_ON(rcu_access_pointer(dev->ip_ptr));
10625 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -080010626#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -070010627 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -080010628#endif
David S. Millercf124db2017-05-08 12:52:56 -040010629 if (dev->priv_destructor)
10630 dev->priv_destructor(dev);
10631 if (dev->needs_free_netdev)
10632 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010633
Eric W. Biederman50624c92013-09-23 21:19:49 -070010634 /* Report a network device has been unregistered */
10635 rtnl_lock();
10636 dev_net(dev)->dev_unreg_count--;
10637 __rtnl_unlock();
10638 wake_up(&netdev_unregistering_wq);
10639
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010640 /* Free network device */
10641 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010643}
10644
Jarod Wilson92566452016-02-01 18:51:04 -050010645/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
10646 * all the same fields in the same order as net_device_stats, with only
10647 * the type differing, but rtnl_link_stats64 may have additional fields
10648 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +000010649 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010650void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
10651 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +000010652{
10653#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -050010654 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +020010655 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -050010656 /* zero out counters that only exist in rtnl_link_stats64 */
10657 memset((char *)stats64 + sizeof(*netdev_stats), 0,
10658 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010659#else
Jarod Wilson92566452016-02-01 18:51:04 -050010660 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010661 const unsigned long *src = (const unsigned long *)netdev_stats;
10662 u64 *dst = (u64 *)stats64;
10663
Jarod Wilson92566452016-02-01 18:51:04 -050010664 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010665 for (i = 0; i < n; i++)
10666 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -050010667 /* zero out counters that only exist in rtnl_link_stats64 */
10668 memset((char *)stats64 + n * sizeof(u64), 0,
10669 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010670#endif
10671}
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010672EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010673
Eric Dumazetd83345a2009-11-16 03:36:51 +000010674/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010675 * dev_get_stats - get network device statistics
10676 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -070010677 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010678 *
Ben Hutchingsd7753512010-07-09 09:12:41 +000010679 * Get network statistics from device. Return @storage.
10680 * The device driver may provide its own method by setting
10681 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
10682 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010683 */
Ben Hutchingsd7753512010-07-09 09:12:41 +000010684struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
10685 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +000010686{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010687 const struct net_device_ops *ops = dev->netdev_ops;
10688
Eric Dumazet28172732010-07-07 14:58:56 -070010689 if (ops->ndo_get_stats64) {
10690 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010691 ops->ndo_get_stats64(dev, storage);
10692 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +000010693 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010694 } else {
10695 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -070010696 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -070010697 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
10698 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
10699 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -070010700 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -070010701}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010702EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -070010703
Heiner Kallweit44fa32f2020-10-12 10:01:27 +020010704/**
10705 * dev_fetch_sw_netstats - get per-cpu network device statistics
10706 * @s: place to store stats
10707 * @netstats: per-cpu network stats to read from
10708 *
10709 * Read per-cpu network statistics and populate the related fields in @s.
10710 */
10711void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
10712 const struct pcpu_sw_netstats __percpu *netstats)
10713{
10714 int cpu;
10715
10716 for_each_possible_cpu(cpu) {
10717 const struct pcpu_sw_netstats *stats;
10718 struct pcpu_sw_netstats tmp;
10719 unsigned int start;
10720
10721 stats = per_cpu_ptr(netstats, cpu);
10722 do {
10723 start = u64_stats_fetch_begin_irq(&stats->syncp);
10724 tmp.rx_packets = stats->rx_packets;
10725 tmp.rx_bytes = stats->rx_bytes;
10726 tmp.tx_packets = stats->tx_packets;
10727 tmp.tx_bytes = stats->tx_bytes;
10728 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
10729
10730 s->rx_packets += tmp.rx_packets;
10731 s->rx_bytes += tmp.rx_bytes;
10732 s->tx_packets += tmp.tx_packets;
10733 s->tx_bytes += tmp.tx_bytes;
10734 }
10735}
10736EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
10737
Heiner Kallweita1839422020-11-07 21:49:07 +010010738/**
10739 * dev_get_tstats64 - ndo_get_stats64 implementation
10740 * @dev: device to get statistics from
10741 * @s: place to store stats
10742 *
10743 * Populate @s from dev->stats and dev->tstats. Can be used as
10744 * ndo_get_stats64() callback.
10745 */
10746void dev_get_tstats64(struct net_device *dev, struct rtnl_link_stats64 *s)
10747{
10748 netdev_stats_to_stats64(s, &dev->stats);
10749 dev_fetch_sw_netstats(s, dev->tstats);
10750}
10751EXPORT_SYMBOL_GPL(dev_get_tstats64);
10752
Eric Dumazet24824a02010-10-02 06:11:55 +000010753struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -070010754{
Eric Dumazet24824a02010-10-02 06:11:55 +000010755 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -070010756
Eric Dumazet24824a02010-10-02 06:11:55 +000010757#ifdef CONFIG_NET_CLS_ACT
10758 if (queue)
10759 return queue;
10760 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10761 if (!queue)
10762 return NULL;
10763 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -080010764 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +000010765 queue->qdisc_sleeping = &noop_qdisc;
10766 rcu_assign_pointer(dev->ingress_queue, queue);
10767#endif
10768 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -070010769}
10770
Eric Dumazet2c60db02012-09-16 09:17:26 +000010771static const struct ethtool_ops default_ethtool_ops;
10772
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +000010773void netdev_set_default_ethtool_ops(struct net_device *dev,
10774 const struct ethtool_ops *ops)
10775{
10776 if (dev->ethtool_ops == &default_ethtool_ops)
10777 dev->ethtool_ops = ops;
10778}
10779EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
10780
Eric Dumazet74d332c2013-10-30 13:10:44 -070010781void netdev_freemem(struct net_device *dev)
10782{
10783 char *addr = (char *)dev - dev->padded;
10784
WANG Cong4cb28972014-06-02 15:55:22 -070010785 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010786}
10787
Linus Torvalds1da177e2005-04-16 15:20:36 -070010788/**
tcharding722c9a02017-02-09 17:56:04 +110010789 * alloc_netdev_mqs - allocate network device
10790 * @sizeof_priv: size of private data to allocate space for
10791 * @name: device name format string
10792 * @name_assign_type: origin of device name
10793 * @setup: callback to initialize device
10794 * @txqs: the number of TX subqueues to allocate
10795 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -070010796 *
tcharding722c9a02017-02-09 17:56:04 +110010797 * Allocates a struct net_device with private data area for driver use
10798 * and performs basic initialization. Also allocates subqueue structs
10799 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010800 */
Tom Herbert36909ea2011-01-09 19:36:31 +000010801struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +020010802 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +000010803 void (*setup)(struct net_device *),
10804 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010805{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010806 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +030010807 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010808 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010809
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -070010810 BUG_ON(strlen(name) >= sizeof(dev->name));
10811
Tom Herbert36909ea2011-01-09 19:36:31 +000010812 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010813 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +000010814 return NULL;
10815 }
10816
Tom Herbert36909ea2011-01-09 19:36:31 +000010817 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010818 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +000010819 return NULL;
10820 }
Tom Herbert36909ea2011-01-09 19:36:31 +000010821
David S. Millerfd2ea0a2008-07-17 01:56:23 -070010822 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010823 if (sizeof_priv) {
10824 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010825 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010826 alloc_size += sizeof_priv;
10827 }
10828 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010829 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010830
Vasily Averinc948f512021-07-19 13:44:23 +030010831 p = kvzalloc(alloc_size, GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +000010832 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010833 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010834
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010835 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010836 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010837
Eric Dumazet919067c2021-03-19 10:39:33 -070010838#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010839 dev->pcpu_refcnt = alloc_percpu(int);
10840 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -070010841 goto free_dev;
Eric Dumazetadd2d732021-03-22 11:21:45 -070010842 dev_hold(dev);
10843#else
10844 refcount_set(&dev->dev_refcnt, 1);
Eric Dumazet919067c2021-03-19 10:39:33 -070010845#endif
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010846
Linus Torvalds1da177e2005-04-16 15:20:36 -070010847 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +000010848 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010849
Jiri Pirko22bedad32010-04-01 21:22:57 +000010850 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010851 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +000010852
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010853 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010854
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -070010855 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +000010856 dev->gso_max_segs = GSO_MAX_SEGS;
Taehee Yoo5343da42019-10-21 18:47:50 +000010857 dev->upper_level = 1;
10858 dev->lower_level = 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010859#ifdef CONFIG_LOCKDEP
10860 dev->nested_level = 0;
10861 INIT_LIST_HEAD(&dev->unlink_list);
10862#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010863
Herbert Xud565b0a2008-12-15 23:38:52 -080010864 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010865 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -070010866 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +000010867 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +020010868 INIT_LIST_HEAD(&dev->adj_list.upper);
10869 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -080010870 INIT_LIST_HEAD(&dev->ptype_all);
10871 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Pirko93642e12020-01-25 12:17:08 +010010872 INIT_LIST_HEAD(&dev->net_notifier_list);
Jiri Kosina59cc1f62016-08-10 11:05:15 +020010873#ifdef CONFIG_NET_SCHED
10874 hash_init(dev->qdisc_hash);
10875#endif
Eric Dumazet02875872014-10-05 18:38:35 -070010876 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010877 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010878
Phil Suttera8131042016-02-17 15:37:43 +010010879 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +020010880 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +010010881 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +010010882 }
Phil Sutter906470c2015-08-18 10:30:48 +020010883
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010884 dev->num_tx_queues = txqs;
10885 dev->real_num_tx_queues = txqs;
10886 if (netif_alloc_netdev_queues(dev))
10887 goto free_all;
10888
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010889 dev->num_rx_queues = rxqs;
10890 dev->real_num_rx_queues = rxqs;
10891 if (netif_alloc_rx_queues(dev))
10892 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010893
Linus Torvalds1da177e2005-04-16 15:20:36 -070010894 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +020010895 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +000010896 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +000010897 if (!dev->ethtool_ops)
10898 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +020010899
Lukas Wunner17d20782021-10-08 22:06:02 +020010900 nf_hook_netdev_init(dev);
Pablo Neirae687ad62015-05-13 18:19:38 +020010901
Linus Torvalds1da177e2005-04-16 15:20:36 -070010902 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010903
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010904free_all:
10905 free_netdev(dev);
10906 return NULL;
10907
Eric Dumazet29b44332010-10-11 10:22:12 +000010908free_pcpu:
Eric Dumazet919067c2021-03-19 10:39:33 -070010909#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010910 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010911free_dev:
Eric Dumazet919067c2021-03-19 10:39:33 -070010912#endif
Eric Dumazet74d332c2013-10-30 13:10:44 -070010913 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010914 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010915}
Tom Herbert36909ea2011-01-09 19:36:31 +000010916EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010917
10918/**
tcharding722c9a02017-02-09 17:56:04 +110010919 * free_netdev - free network device
10920 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010921 *
tcharding722c9a02017-02-09 17:56:04 +110010922 * This function does the last stage of destroying an allocated device
10923 * interface. The reference to the device object is released. If this
10924 * is the last reference then it will be freed.Must be called in process
10925 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010926 */
10927void free_netdev(struct net_device *dev)
10928{
Herbert Xud565b0a2008-12-15 23:38:52 -080010929 struct napi_struct *p, *n;
10930
Eric Dumazet93d05d42015-11-18 06:31:03 -080010931 might_sleep();
Jakub Kicinskic269a242021-01-06 10:40:06 -080010932
10933 /* When called immediately after register_netdevice() failed the unwind
10934 * handling may still be dismantling the device. Handle that case by
10935 * deferring the free.
10936 */
10937 if (dev->reg_state == NETREG_UNREGISTERING) {
10938 ASSERT_RTNL();
10939 dev->needs_free_netdev = true;
10940 return;
10941 }
10942
Eric Dumazet60877a32013-06-20 01:15:51 -070010943 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010944 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -070010945
Eric Dumazet33d480c2011-08-11 19:30:52 +000010946 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +000010947
Jiri Pirkof001fde2009-05-05 02:48:28 +000010948 /* Flush device addresses */
10949 dev_addr_flush(dev);
10950
Herbert Xud565b0a2008-12-15 23:38:52 -080010951 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
10952 netif_napi_del(p);
10953
Eric Dumazet919067c2021-03-19 10:39:33 -070010954#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010955 free_percpu(dev->pcpu_refcnt);
10956 dev->pcpu_refcnt = NULL;
Eric Dumazet919067c2021-03-19 10:39:33 -070010957#endif
Toke Høiland-Jørgensen75ccae62020-01-16 16:14:44 +010010958 free_percpu(dev->xdp_bulkq);
10959 dev->xdp_bulkq = NULL;
Eric Dumazet29b44332010-10-11 10:22:12 +000010960
Stephen Hemminger3041a062006-05-26 13:25:24 -070010961 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010962 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -070010963 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010964 return;
10965 }
10966
10967 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
10968 dev->reg_state = NETREG_RELEASED;
10969
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070010970 /* will free via device release */
10971 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010972}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010973EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010974
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010975/**
10976 * synchronize_net - Synchronize with packet receive processing
10977 *
10978 * Wait for packets currently being received to be done.
10979 * Does not block later packets from starting.
10980 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010981void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010982{
10983 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +000010984 if (rtnl_is_locked())
10985 synchronize_rcu_expedited();
10986 else
10987 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010988}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010989EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010990
10991/**
Eric Dumazet44a08732009-10-27 07:03:04 +000010992 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070010993 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +000010994 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -080010995 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010996 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010997 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +000010998 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010999 *
11000 * Callers must hold the rtnl semaphore. You may want
11001 * unregister_netdev() instead of this.
11002 */
11003
Eric Dumazet44a08732009-10-27 07:03:04 +000011004void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011005{
Herbert Xua6620712007-12-12 19:21:56 -080011006 ASSERT_RTNL();
11007
Eric Dumazet44a08732009-10-27 07:03:04 +000011008 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +000011009 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +000011010 } else {
Jakub Kicinski037e56b2021-01-19 12:25:19 -080011011 LIST_HEAD(single);
11012
11013 list_add(&dev->unreg_list, &single);
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080011014 unregister_netdevice_many(&single);
Eric Dumazet44a08732009-10-27 07:03:04 +000011015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011016}
Eric Dumazet44a08732009-10-27 07:03:04 +000011017EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011018
11019/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +000011020 * unregister_netdevice_many - unregister many devices
11021 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -070011022 *
11023 * Note: As most callers use a stack allocated list_head,
11024 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +000011025 */
11026void unregister_netdevice_many(struct list_head *head)
11027{
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080011028 struct net_device *dev, *tmp;
11029 LIST_HEAD(close_head);
11030
11031 BUG_ON(dev_boot_phase);
11032 ASSERT_RTNL();
11033
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080011034 if (list_empty(head))
11035 return;
11036
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080011037 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
11038 /* Some devices call without registering
11039 * for initialization unwind. Remove those
11040 * devices and proceed with the remaining.
11041 */
11042 if (dev->reg_state == NETREG_UNINITIALIZED) {
11043 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
11044 dev->name, dev);
11045
11046 WARN_ON(1);
11047 list_del(&dev->unreg_list);
11048 continue;
11049 }
11050 dev->dismantle = true;
11051 BUG_ON(dev->reg_state != NETREG_REGISTERED);
11052 }
11053
11054 /* If device is running, close it first. */
11055 list_for_each_entry(dev, head, unreg_list)
11056 list_add_tail(&dev->close_list, &close_head);
11057 dev_close_many(&close_head, true);
11058
11059 list_for_each_entry(dev, head, unreg_list) {
11060 /* And unlink it from device chain. */
11061 unlist_netdevice(dev);
11062
11063 dev->reg_state = NETREG_UNREGISTERING;
11064 }
11065 flush_all_backlogs();
11066
11067 synchronize_net();
11068
11069 list_for_each_entry(dev, head, unreg_list) {
11070 struct sk_buff *skb = NULL;
11071
11072 /* Shutdown queueing discipline. */
11073 dev_shutdown(dev);
11074
11075 dev_xdp_uninstall(dev);
11076
11077 /* Notify protocols, that we are about to destroy
11078 * this device. They should clean all the things.
11079 */
11080 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
11081
11082 if (!dev->rtnl_link_ops ||
11083 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
11084 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
11085 GFP_KERNEL, NULL, 0);
11086
11087 /*
11088 * Flush the unicast and multicast chains
11089 */
11090 dev_uc_flush(dev);
11091 dev_mc_flush(dev);
11092
11093 netdev_name_node_alt_flush(dev);
11094 netdev_name_node_free(dev->name_node);
11095
11096 if (dev->netdev_ops->ndo_uninit)
11097 dev->netdev_ops->ndo_uninit(dev);
11098
11099 if (skb)
11100 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
11101
11102 /* Notifier chain MUST detach us all upper devices. */
11103 WARN_ON(netdev_has_any_upper_dev(dev));
11104 WARN_ON(netdev_has_any_lower_dev(dev));
11105
11106 /* Remove entries from kobject tree */
11107 netdev_unregister_kobject(dev);
11108#ifdef CONFIG_XPS
11109 /* Remove XPS queueing entries */
11110 netif_reset_xps_queues_gt(dev, 0);
11111#endif
11112 }
11113
11114 synchronize_net();
11115
11116 list_for_each_entry(dev, head, unreg_list) {
11117 dev_put(dev);
11118 net_set_todo(dev);
11119 }
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080011120
11121 list_del(head);
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080011122}
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080011123EXPORT_SYMBOL(unregister_netdevice_many);
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080011124
Eric Dumazet9b5e3832009-10-27 07:04:19 +000011125/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070011126 * unregister_netdev - remove device from the kernel
11127 * @dev: device
11128 *
11129 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080011130 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011131 *
11132 * This is just a wrapper for unregister_netdevice that takes
11133 * the rtnl semaphore. In general you want to use this and not
11134 * unregister_netdevice.
11135 */
11136void unregister_netdev(struct net_device *dev)
11137{
11138 rtnl_lock();
11139 unregister_netdevice(dev);
11140 rtnl_unlock();
11141}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011142EXPORT_SYMBOL(unregister_netdev);
11143
Eric W. Biedermance286d32007-09-12 13:53:49 +020011144/**
Andrei Vagin0854fa82021-04-06 23:40:51 -070011145 * __dev_change_net_namespace - move device to different nethost namespace
Eric W. Biedermance286d32007-09-12 13:53:49 +020011146 * @dev: device
11147 * @net: network namespace
11148 * @pat: If not NULL name pattern to try if the current device name
11149 * is already taken in the destination network namespace.
Andrei Vagineeb85a12021-04-05 00:12:23 -070011150 * @new_ifindex: If not zero, specifies device index in the target
11151 * namespace.
Eric W. Biedermance286d32007-09-12 13:53:49 +020011152 *
11153 * This function shuts down a device interface and moves it
11154 * to a new network namespace. On success 0 is returned, on
11155 * a failure a netagive errno code is returned.
11156 *
11157 * Callers must hold the rtnl semaphore.
11158 */
11159
Andrei Vagin0854fa82021-04-06 23:40:51 -070011160int __dev_change_net_namespace(struct net_device *dev, struct net *net,
11161 const char *pat, int new_ifindex)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011162{
Christian Brauneref6a4c82020-02-27 04:37:19 +010011163 struct net *net_old = dev_net(dev);
Andrei Vagineeb85a12021-04-05 00:12:23 -070011164 int err, new_nsid;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011165
11166 ASSERT_RTNL();
11167
11168 /* Don't allow namespace local devices to be moved. */
11169 err = -EINVAL;
11170 if (dev->features & NETIF_F_NETNS_LOCAL)
11171 goto out;
11172
11173 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011174 if (dev->reg_state != NETREG_REGISTERED)
11175 goto out;
11176
11177 /* Get out if there is nothing todo */
11178 err = 0;
Christian Brauneref6a4c82020-02-27 04:37:19 +010011179 if (net_eq(net_old, net))
Eric W. Biedermance286d32007-09-12 13:53:49 +020011180 goto out;
11181
11182 /* Pick the destination device name, and ensure
11183 * we can use it in the destination network namespace.
11184 */
11185 err = -EEXIST;
Antoine Tenart75ea27d2021-10-07 18:16:50 +020011186 if (netdev_name_in_use(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011187 /* We get here if we can't use the current device name */
11188 if (!pat)
11189 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +080011190 err = dev_get_valid_name(net, dev, pat);
11191 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011192 goto out;
11193 }
11194
Andrei Vagineeb85a12021-04-05 00:12:23 -070011195 /* Check that new_ifindex isn't used yet. */
11196 err = -EBUSY;
11197 if (new_ifindex && __dev_get_by_index(net, new_ifindex))
11198 goto out;
11199
Eric W. Biedermance286d32007-09-12 13:53:49 +020011200 /*
11201 * And now a mini version of register_netdevice unregister_netdevice.
11202 */
11203
11204 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -070011205 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011206
11207 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011208 unlist_netdevice(dev);
11209
11210 synchronize_net();
11211
11212 /* Shutdown queueing discipline. */
11213 dev_shutdown(dev);
11214
11215 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +110011216 * this device. They should clean all the things.
11217 *
11218 * Note that dev->reg_state stays at NETREG_REGISTERED.
11219 * This is wanted because this way 8021q and macvlan know
11220 * the device is just moving and can keep their slaves up.
11221 */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011222 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +000011223 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011224
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +020011225 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011226 /* If there is an ifindex conflict assign a new one */
Andrei Vagineeb85a12021-04-05 00:12:23 -070011227 if (!new_ifindex) {
11228 if (__dev_get_by_index(net, dev->ifindex))
11229 new_ifindex = dev_new_index(net);
11230 else
11231 new_ifindex = dev->ifindex;
11232 }
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011233
11234 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
11235 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011236
11237 /*
11238 * Flush the unicast and multicast chains
11239 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +000011240 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +000011241 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011242
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011243 /* Send a netdev-removed uevent to the old namespace */
11244 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040011245 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011246
Jiri Pirko93642e12020-01-25 12:17:08 +010011247 /* Move per-net netdevice notifiers that are following the netdevice */
11248 move_netdevice_notifiers_dev_net(dev, net);
11249
Eric W. Biedermance286d32007-09-12 13:53:49 +020011250 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090011251 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011252 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011253
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011254 /* Send a netdev-add uevent to the new namespace */
11255 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040011256 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011257
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011258 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -070011259 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011260 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011261
Christian Brauneref6a4c82020-02-27 04:37:19 +010011262 /* Adapt owner in case owning user namespace of target network
11263 * namespace is different from the original one.
11264 */
11265 err = netdev_change_owner(dev, net_old, net);
11266 WARN_ON(err);
11267
Eric W. Biedermance286d32007-09-12 13:53:49 +020011268 /* Add the device back in the hashes */
11269 list_netdevice(dev);
11270
11271 /* Notify protocols, that a new device appeared. */
11272 call_netdevice_notifiers(NETDEV_REGISTER, dev);
11273
Eric W. Biedermand90a9092009-12-12 22:11:15 +000011274 /*
11275 * Prevent userspace races by waiting until the network
11276 * device is fully setup before sending notifications.
11277 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -070011278 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +000011279
Eric W. Biedermance286d32007-09-12 13:53:49 +020011280 synchronize_net();
11281 err = 0;
11282out:
11283 return err;
11284}
Andrei Vagin0854fa82021-04-06 23:40:51 -070011285EXPORT_SYMBOL_GPL(__dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011286
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011287static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011288{
11289 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011290 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011291 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +053011292 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011293
Linus Torvalds1da177e2005-04-16 15:20:36 -070011294 local_irq_disable();
11295 cpu = smp_processor_id();
11296 sd = &per_cpu(softnet_data, cpu);
11297 oldsd = &per_cpu(softnet_data, oldcpu);
11298
11299 /* Find end of our completion_queue. */
11300 list_skb = &sd->completion_queue;
11301 while (*list_skb)
11302 list_skb = &(*list_skb)->next;
11303 /* Append completion queue from offline CPU. */
11304 *list_skb = oldsd->completion_queue;
11305 oldsd->completion_queue = NULL;
11306
Linus Torvalds1da177e2005-04-16 15:20:36 -070011307 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +000011308 if (oldsd->output_queue) {
11309 *sd->output_queue_tailp = oldsd->output_queue;
11310 sd->output_queue_tailp = oldsd->output_queue_tailp;
11311 oldsd->output_queue = NULL;
11312 oldsd->output_queue_tailp = &oldsd->output_queue;
11313 }
Eric Dumazetac64da02015-01-15 17:04:22 -080011314 /* Append NAPI poll list from offline CPU, with one exception :
11315 * process_backlog() must be called by cpu owning percpu backlog.
11316 * We properly handle process_queue & input_pkt_queue later.
11317 */
11318 while (!list_empty(&oldsd->poll_list)) {
11319 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
11320 struct napi_struct,
11321 poll_list);
11322
11323 list_del_init(&napi->poll_list);
11324 if (napi->poll == process_backlog)
11325 napi->state = 0;
11326 else
11327 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +000011328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011329
11330 raise_softirq_irqoff(NET_TX_SOFTIRQ);
11331 local_irq_enable();
11332
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +053011333#ifdef CONFIG_RPS
11334 remsd = oldsd->rps_ipi_list;
11335 oldsd->rps_ipi_list = NULL;
11336#endif
11337 /* send out pending IPI's on offline CPU */
11338 net_rps_send_ipi(remsd);
11339
Linus Torvalds1da177e2005-04-16 15:20:36 -070011340 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +000011341 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080011342 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000011343 input_queue_head_incr(oldsd);
11344 }
Eric Dumazetac64da02015-01-15 17:04:22 -080011345 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080011346 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000011347 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -070011348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011349
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011350 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011351}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011352
Herbert Xu7f353bf2007-08-10 15:47:58 -070011353/**
Herbert Xub63365a2008-10-23 01:11:29 -070011354 * netdev_increment_features - increment feature set by one
11355 * @all: current feature set
11356 * @one: new feature set
11357 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -070011358 *
11359 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -070011360 * @one to the master device with current feature set @all. Will not
11361 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -070011362 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +000011363netdev_features_t netdev_increment_features(netdev_features_t all,
11364 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -070011365{
Tom Herbertc8cd0982015-12-14 11:19:44 -080011366 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -080011367 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +000011368 mask |= NETIF_F_VLAN_CHALLENGED;
11369
Tom Herberta1882222015-12-14 11:19:43 -080011370 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +000011371 all &= one | ~NETIF_F_ALL_FOR_ALL;
11372
Michał Mirosław1742f182011-04-22 06:31:16 +000011373 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -080011374 if (all & NETIF_F_HW_CSUM)
11375 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -070011376
11377 return all;
11378}
Herbert Xub63365a2008-10-23 01:11:29 -070011379EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -070011380
Baruch Siach430f03c2013-06-02 20:43:55 +000011381static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011382{
11383 int i;
11384 struct hlist_head *hash;
11385
Kees Cook6da2ec52018-06-12 13:55:00 -070011386 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011387 if (hash != NULL)
11388 for (i = 0; i < NETDEV_HASHENTRIES; i++)
11389 INIT_HLIST_HEAD(&hash[i]);
11390
11391 return hash;
11392}
11393
Eric W. Biederman881d9662007-09-17 11:56:21 -070011394/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -070011395static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011396{
Li RongQingd9f37d02018-07-13 14:41:36 +080011397 BUILD_BUG_ON(GRO_HASH_BUCKETS >
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080011398 8 * sizeof_field(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +080011399
Rustad, Mark D734b6542012-07-18 09:06:07 +000011400 if (net != &init_net)
11401 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -070011402
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011403 net->dev_name_head = netdev_create_hash();
11404 if (net->dev_name_head == NULL)
11405 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011406
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011407 net->dev_index_head = netdev_create_hash();
11408 if (net->dev_index_head == NULL)
11409 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011410
Jiri Pirkoa30c7b42019-09-30 10:15:10 +020011411 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
11412
Eric W. Biederman881d9662007-09-17 11:56:21 -070011413 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011414
11415err_idx:
11416 kfree(net->dev_name_head);
11417err_name:
11418 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011419}
11420
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070011421/**
11422 * netdev_drivername - network driver for the device
11423 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070011424 *
11425 * Determine network driver for device.
11426 */
David S. Miller3019de12011-06-06 16:41:33 -070011427const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -070011428{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -070011429 const struct device_driver *driver;
11430 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -070011431 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -070011432
11433 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011434 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -070011435 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011436
11437 driver = parent->driver;
11438 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -070011439 return driver->name;
11440 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011441}
11442
Joe Perches6ea754e2014-09-22 11:10:50 -070011443static void __netdev_printk(const char *level, const struct net_device *dev,
11444 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +000011445{
Joe Perchesb004ff42012-09-12 20:12:19 -070011446 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011447 dev_printk_emit(level[1] - '0',
11448 dev->dev.parent,
11449 "%s %s %s%s: %pV",
11450 dev_driver_string(dev->dev.parent),
11451 dev_name(dev->dev.parent),
11452 netdev_name(dev), netdev_reg_state(dev),
11453 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011454 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011455 printk("%s%s%s: %pV",
11456 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011457 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -070011458 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011459 }
Joe Perches256df2f2010-06-27 01:02:35 +000011460}
11461
Joe Perches6ea754e2014-09-22 11:10:50 -070011462void netdev_printk(const char *level, const struct net_device *dev,
11463 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +000011464{
11465 struct va_format vaf;
11466 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +000011467
11468 va_start(args, format);
11469
11470 vaf.fmt = format;
11471 vaf.va = &args;
11472
Joe Perches6ea754e2014-09-22 11:10:50 -070011473 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011474
Joe Perches256df2f2010-06-27 01:02:35 +000011475 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +000011476}
11477EXPORT_SYMBOL(netdev_printk);
11478
11479#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -070011480void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +000011481{ \
Joe Perches256df2f2010-06-27 01:02:35 +000011482 struct va_format vaf; \
11483 va_list args; \
11484 \
11485 va_start(args, fmt); \
11486 \
11487 vaf.fmt = fmt; \
11488 vaf.va = &args; \
11489 \
Joe Perches6ea754e2014-09-22 11:10:50 -070011490 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -070011491 \
Joe Perches256df2f2010-06-27 01:02:35 +000011492 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +000011493} \
11494EXPORT_SYMBOL(func);
11495
11496define_netdev_printk_level(netdev_emerg, KERN_EMERG);
11497define_netdev_printk_level(netdev_alert, KERN_ALERT);
11498define_netdev_printk_level(netdev_crit, KERN_CRIT);
11499define_netdev_printk_level(netdev_err, KERN_ERR);
11500define_netdev_printk_level(netdev_warn, KERN_WARNING);
11501define_netdev_printk_level(netdev_notice, KERN_NOTICE);
11502define_netdev_printk_level(netdev_info, KERN_INFO);
11503
Pavel Emelyanov46650792007-10-08 20:38:39 -070011504static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011505{
11506 kfree(net->dev_name_head);
11507 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +030011508 if (net != &init_net)
11509 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -070011510}
11511
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011512static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -070011513 .init = netdev_init,
11514 .exit = netdev_exit,
11515};
11516
Pavel Emelyanov46650792007-10-08 20:38:39 -070011517static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011518{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011519 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011520 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011521 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +020011522 * initial network namespace
11523 */
11524 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011525 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011526 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011527 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +020011528
11529 /* Ignore unmoveable devices (i.e. loopback) */
11530 if (dev->features & NETIF_F_NETNS_LOCAL)
11531 continue;
11532
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011533 /* Leave virtual devices for the generic cleanup */
Martin Willi3a5ca852021-03-02 13:24:23 +010011534 if (dev->rtnl_link_ops && !dev->rtnl_link_ops->netns_refund)
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011535 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -080011536
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011537 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011538 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Antoine Tenart75ea27d2021-10-07 18:16:50 +020011539 if (netdev_name_in_use(&init_net, fb_name))
Jiri Pirko55b40db2019-07-28 14:56:36 +020011540 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Andrei Vagin0854fa82021-04-06 23:40:51 -070011541 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011542 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000011543 pr_emerg("%s: failed to move %s to init_net: %d\n",
11544 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011545 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +020011546 }
11547 }
11548 rtnl_unlock();
11549}
11550
Eric W. Biederman50624c92013-09-23 21:19:49 -070011551static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
11552{
11553 /* Return with the rtnl_lock held when there are no network
11554 * devices unregistering in any network namespace in net_list.
11555 */
11556 struct net *net;
11557 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +010011558 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011559
Peter Zijlstraff960a72014-10-29 17:04:56 +010011560 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011561 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -070011562 unregistering = false;
11563 rtnl_lock();
11564 list_for_each_entry(net, net_list, exit_list) {
11565 if (net->dev_unreg_count > 0) {
11566 unregistering = true;
11567 break;
11568 }
11569 }
11570 if (!unregistering)
11571 break;
11572 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +010011573
11574 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011575 }
Peter Zijlstraff960a72014-10-29 17:04:56 +010011576 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011577}
11578
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011579static void __net_exit default_device_exit_batch(struct list_head *net_list)
11580{
11581 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011582 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011583 * Do this across as many network namespaces as possible to
11584 * improve batching efficiency.
11585 */
11586 struct net_device *dev;
11587 struct net *net;
11588 LIST_HEAD(dev_kill_list);
11589
Eric W. Biederman50624c92013-09-23 21:19:49 -070011590 /* To prevent network device cleanup code from dereferencing
11591 * loopback devices or network devices that have been freed
11592 * wait here for all pending unregistrations to complete,
11593 * before unregistring the loopback device and allowing the
11594 * network namespace be freed.
11595 *
11596 * The netdev todo list containing all network devices
11597 * unregistrations that happen in default_device_exit_batch
11598 * will run in the rtnl_unlock() at the end of
11599 * default_device_exit_batch.
11600 */
11601 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011602 list_for_each_entry(net, net_list, exit_list) {
11603 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +020011604 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011605 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
11606 else
11607 unregister_netdevice_queue(dev, &dev_kill_list);
11608 }
11609 }
11610 unregister_netdevice_many(&dev_kill_list);
11611 rtnl_unlock();
11612}
11613
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011614static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011615 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011616 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +020011617};
11618
Linus Torvalds1da177e2005-04-16 15:20:36 -070011619/*
11620 * Initialize the DEV module. At boot time this walks the device list and
11621 * unhooks any devices that fail to initialise (normally hardware not
11622 * present) and leaves us with a valid list of present and active devices.
11623 *
11624 */
11625
11626/*
11627 * This is called single threaded during boot, so no need
11628 * to take the rtnl semaphore.
11629 */
11630static int __init net_dev_init(void)
11631{
11632 int i, rc = -ENOMEM;
11633
11634 BUG_ON(!dev_boot_phase);
11635
Linus Torvalds1da177e2005-04-16 15:20:36 -070011636 if (dev_proc_init())
11637 goto out;
11638
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011639 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -070011640 goto out;
11641
11642 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +080011643 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011644 INIT_LIST_HEAD(&ptype_base[i]);
11645
Vlad Yasevich62532da2012-11-15 08:49:10 +000011646 INIT_LIST_HEAD(&offload_base);
11647
Eric W. Biederman881d9662007-09-17 11:56:21 -070011648 if (register_pernet_subsys(&netdev_net_ops))
11649 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011650
11651 /*
11652 * Initialise the packet receive queues.
11653 */
11654
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070011655 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -070011656 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011657 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011658
Eric Dumazet41852492016-08-26 12:50:39 -070011659 INIT_WORK(flush, flush_backlog);
11660
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011661 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -070011662 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +010011663#ifdef CONFIG_XFRM_OFFLOAD
11664 skb_queue_head_init(&sd->xfrm_backlog);
11665#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011666 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +000011667 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +000011668#ifdef CONFIG_RPS
Peter Zijlstra545b8c82020-06-15 11:29:31 +020011669 INIT_CSD(&sd->csd, rps_trigger_softirq, sd);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011670 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -070011671#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +000011672
David S. Miller7c4ec742018-07-20 23:37:55 -070011673 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011674 sd->backlog.poll = process_backlog;
11675 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011676 }
11677
Linus Torvalds1da177e2005-04-16 15:20:36 -070011678 dev_boot_phase = 0;
11679
Eric W. Biederman505d4f72008-11-07 22:54:20 -080011680 /* The loopback device is special if any other network devices
11681 * is present in a network namespace the loopback device must
11682 * be present. Since we now dynamically allocate and free the
11683 * loopback device ensure this invariant is maintained by
11684 * keeping the loopback device as the first device on the
11685 * list of network devices. Ensuring the loopback devices
11686 * is the first device that appears and the last network device
11687 * that disappears.
11688 */
11689 if (register_pernet_device(&loopback_net_ops))
11690 goto out;
11691
11692 if (register_pernet_device(&default_device_ops))
11693 goto out;
11694
Carlos R. Mafra962cf362008-05-15 11:15:37 -030011695 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
11696 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011697
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011698 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
11699 NULL, dev_cpu_dead);
11700 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011701 rc = 0;
11702out:
11703 return rc;
11704}
11705
11706subsys_initcall(net_dev_init);