blob: 50531a2d0b20d2512192f8dd09fa3f3cb2163660 [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>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700134#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000135#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100136#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300137#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700138#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100139#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400140#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800141#include <linux/hrtimer.h>
Daniel Borkmann357b6cc2020-03-18 10:33:22 +0100142#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530143#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200144#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200145#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200146#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100147#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100148#include <net/devlink.h>
Heiner Kallweitbd869242020-06-20 22:35:42 +0200149#include <linux/pm_runtime.h>
Willy Tarreau37447412020-08-10 10:27:42 +0200150#include <linux/prandom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700152#include "net-sysfs.h"
153
Herbert Xud565b0a2008-12-15 23:38:52 -0800154#define MAX_GRO_SKBS 8
155
Herbert Xu5d38a072009-01-04 16:13:40 -0800156/* This should be increased if a protocol with a bigger head is added. */
157#define GRO_MAX_HEAD (MAX_HEADER + 128)
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000160static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000161struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
162struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000163static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000165static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700166static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700167 struct netdev_notifier_info *info);
Petr Machata26372602018-12-06 17:05:45 +0000168static int call_netdevice_notifiers_extack(unsigned long val,
169 struct net_device *dev,
170 struct netlink_ext_ack *extack);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200171static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700174 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * semaphore.
176 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800177 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *
179 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700180 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * actual updates. This allows pure readers to access the list even
182 * while a writer is preparing to update it.
183 *
184 * To put it another way, dev_base_lock is held for writing only to
185 * protect against pure readers; the rtnl semaphore provides the
186 * protection against other writers.
187 *
188 * See, for example usages, register_netdevice() and
189 * unregister_netdevice(), which must be called with the rtnl
190 * semaphore held.
191 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193EXPORT_SYMBOL(dev_base_lock);
194
Florian Westphal6c557002017-10-02 23:50:05 +0200195static DEFINE_MUTEX(ifalias_mutex);
196
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300197/* protects napi_hash addition/deletion and napi_gen_id */
198static DEFINE_SPINLOCK(napi_hash_lock);
199
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800200static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800201static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300202
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200203static DECLARE_RWSEM(devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +0000204
Thomas Graf4e985ad2011-06-21 03:11:20 +0000205static inline void dev_base_seq_inc(struct net *net)
206{
tcharding643aa9c2017-02-09 17:56:05 +1100207 while (++net->dev_base_seq == 0)
208 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000209}
210
Eric W. Biederman881d9662007-09-17 11:56:21 -0700211static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700213 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000214
stephen hemminger08e98972009-11-10 07:20:34 +0000215 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Eric W. Biederman881d9662007-09-17 11:56:21 -0700218static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700220 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000223static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000224{
225#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000226 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000227#endif
228}
229
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000230static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000231{
232#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000233 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000234#endif
235}
236
Jiri Pirkoff927412019-09-30 11:48:15 +0200237static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
238 const char *name)
239{
240 struct netdev_name_node *name_node;
241
242 name_node = kmalloc(sizeof(*name_node), GFP_KERNEL);
243 if (!name_node)
244 return NULL;
245 INIT_HLIST_NODE(&name_node->hlist);
246 name_node->dev = dev;
247 name_node->name = name;
248 return name_node;
249}
250
251static struct netdev_name_node *
252netdev_name_node_head_alloc(struct net_device *dev)
253{
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200254 struct netdev_name_node *name_node;
255
256 name_node = netdev_name_node_alloc(dev, dev->name);
257 if (!name_node)
258 return NULL;
259 INIT_LIST_HEAD(&name_node->list);
260 return name_node;
Jiri Pirkoff927412019-09-30 11:48:15 +0200261}
262
263static void netdev_name_node_free(struct netdev_name_node *name_node)
264{
265 kfree(name_node);
266}
267
268static void netdev_name_node_add(struct net *net,
269 struct netdev_name_node *name_node)
270{
271 hlist_add_head_rcu(&name_node->hlist,
272 dev_name_hash(net, name_node->name));
273}
274
275static void netdev_name_node_del(struct netdev_name_node *name_node)
276{
277 hlist_del_rcu(&name_node->hlist);
278}
279
280static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
281 const char *name)
282{
283 struct hlist_head *head = dev_name_hash(net, name);
284 struct netdev_name_node *name_node;
285
286 hlist_for_each_entry(name_node, head, hlist)
287 if (!strcmp(name_node->name, name))
288 return name_node;
289 return NULL;
290}
291
292static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
293 const char *name)
294{
295 struct hlist_head *head = dev_name_hash(net, name);
296 struct netdev_name_node *name_node;
297
298 hlist_for_each_entry_rcu(name_node, head, hlist)
299 if (!strcmp(name_node->name, name))
300 return name_node;
301 return NULL;
302}
303
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200304int netdev_name_node_alt_create(struct net_device *dev, const char *name)
305{
306 struct netdev_name_node *name_node;
307 struct net *net = dev_net(dev);
308
309 name_node = netdev_name_node_lookup(net, name);
310 if (name_node)
311 return -EEXIST;
312 name_node = netdev_name_node_alloc(dev, name);
313 if (!name_node)
314 return -ENOMEM;
315 netdev_name_node_add(net, name_node);
316 /* The node that holds dev->name acts as a head of per-device list. */
317 list_add_tail(&name_node->list, &dev->name_node->list);
318
319 return 0;
320}
321EXPORT_SYMBOL(netdev_name_node_alt_create);
322
323static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
324{
325 list_del(&name_node->list);
326 netdev_name_node_del(name_node);
327 kfree(name_node->name);
328 netdev_name_node_free(name_node);
329}
330
331int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
332{
333 struct netdev_name_node *name_node;
334 struct net *net = dev_net(dev);
335
336 name_node = netdev_name_node_lookup(net, name);
337 if (!name_node)
338 return -ENOENT;
Eric Dumazete08ad802020-02-14 07:53:53 -0800339 /* lookup might have found our primary name or a name belonging
340 * to another device.
341 */
342 if (name_node == dev->name_node || name_node->dev != dev)
343 return -EINVAL;
344
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200345 __netdev_name_node_alt_destroy(name_node);
346
347 return 0;
348}
349EXPORT_SYMBOL(netdev_name_node_alt_destroy);
350
351static void netdev_name_node_alt_flush(struct net_device *dev)
352{
353 struct netdev_name_node *name_node, *tmp;
354
355 list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list)
356 __netdev_name_node_alt_destroy(name_node);
357}
358
Eric W. Biedermance286d32007-09-12 13:53:49 +0200359/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000360static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200361{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900362 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200363
364 ASSERT_RTNL();
365
366 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800367 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Jiri Pirkoff927412019-09-30 11:48:15 +0200368 netdev_name_node_add(net, dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000369 hlist_add_head_rcu(&dev->index_hlist,
370 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200371 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000372
373 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200374}
375
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000376/* Device list removal
377 * caller must respect a RCU grace period before freeing/reusing dev
378 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200379static void unlist_netdevice(struct net_device *dev)
380{
381 ASSERT_RTNL();
382
383 /* Unlink dev from the device chain */
384 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800385 list_del_rcu(&dev->dev_list);
Jiri Pirkoff927412019-09-30 11:48:15 +0200386 netdev_name_node_del(dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000387 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200388 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000389
390 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
394 * Our notifier list
395 */
396
Alan Sternf07d5b92006-05-09 15:23:03 -0700397static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399/*
400 * Device drivers call our routines to queue packets here. We empty the
401 * queue in the local softnet handler.
402 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700403
Eric Dumazet9958da02010-04-17 04:17:02 +0000404DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700405EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Cong Wang1a33e102020-05-02 22:22:19 -0700407#ifdef CONFIG_LOCKDEP
408/*
409 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
410 * according to dev->type
411 */
412static const unsigned short netdev_lock_type[] = {
413 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
414 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
415 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
416 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
417 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
418 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
419 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
420 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
421 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
422 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
423 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
424 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
425 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
426 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
427 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
428
429static const char *const netdev_lock_name[] = {
430 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
431 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
432 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
433 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
434 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
435 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
436 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
437 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
438 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
439 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
440 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
441 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
442 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
443 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
444 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
445
446static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang845e0eb2020-06-08 14:53:01 -0700447static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang1a33e102020-05-02 22:22:19 -0700448
449static inline unsigned short netdev_lock_pos(unsigned short dev_type)
450{
451 int i;
452
453 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
454 if (netdev_lock_type[i] == dev_type)
455 return i;
456 /* the last key is used by default */
457 return ARRAY_SIZE(netdev_lock_type) - 1;
458}
459
460static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
461 unsigned short dev_type)
462{
463 int i;
464
465 i = netdev_lock_pos(dev_type);
466 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
467 netdev_lock_name[i]);
468}
Cong Wang845e0eb2020-06-08 14:53:01 -0700469
470static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
471{
472 int i;
473
474 i = netdev_lock_pos(dev->type);
475 lockdep_set_class_and_name(&dev->addr_list_lock,
476 &netdev_addr_lock_key[i],
477 netdev_lock_name[i]);
478}
Cong Wang1a33e102020-05-02 22:22:19 -0700479#else
480static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
481 unsigned short dev_type)
482{
483}
Cong Wang845e0eb2020-06-08 14:53:01 -0700484
485static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
486{
487}
Cong Wang1a33e102020-05-02 22:22:19 -0700488#endif
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100491 *
492 * Protocol management and registration routines
493 *
494 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * Add a protocol ID to the list. Now that the input handler is
499 * smarter we can dispense with all the messy stuff that used to be
500 * here.
501 *
502 * BEWARE!!! Protocol handlers, mangling input packets,
503 * MUST BE last in hash buckets and checking protocol handlers
504 * MUST start from promiscuous ptype_all chain in net_bh.
505 * It is true now, do not change it.
506 * Explanation follows: if protocol handler, mangling packet, will
507 * be the first on list, it is not able to sense, that packet
508 * is cloned and should be copied-on-write, so that it will
509 * change it and subsequent readers will get broken packet.
510 * --ANK (980803)
511 */
512
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000513static inline struct list_head *ptype_head(const struct packet_type *pt)
514{
515 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800516 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000517 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800518 return pt->dev ? &pt->dev->ptype_specific :
519 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/**
523 * dev_add_pack - add packet handler
524 * @pt: packet type declaration
525 *
526 * Add a protocol handler to the networking stack. The passed &packet_type
527 * is linked into kernel lists and may not be freed until it has been
528 * removed from the kernel lists.
529 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900530 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * guarantee all CPU's that are in middle of receiving packets
532 * will see the new packet type (until the next received packet).
533 */
534
535void dev_add_pack(struct packet_type *pt)
536{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000537 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000539 spin_lock(&ptype_lock);
540 list_add_rcu(&pt->list, head);
541 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700543EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/**
546 * __dev_remove_pack - remove packet handler
547 * @pt: packet type declaration
548 *
549 * Remove a protocol handler that was previously added to the kernel
550 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
551 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900552 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 *
554 * The packet type might still be in use by receivers
555 * and must not be freed until after all the CPU's have gone
556 * through a quiescent state.
557 */
558void __dev_remove_pack(struct packet_type *pt)
559{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000560 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct packet_type *pt1;
562
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000563 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 list_for_each_entry(pt1, head, list) {
566 if (pt == pt1) {
567 list_del_rcu(&pt->list);
568 goto out;
569 }
570 }
571
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000572 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000574 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700576EXPORT_SYMBOL(__dev_remove_pack);
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578/**
579 * dev_remove_pack - remove packet handler
580 * @pt: packet type declaration
581 *
582 * Remove a protocol handler that was previously added to the kernel
583 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
584 * from the kernel lists and can be freed or reused once this function
585 * returns.
586 *
587 * This call sleeps to guarantee that no CPU is looking at the packet
588 * type after return.
589 */
590void dev_remove_pack(struct packet_type *pt)
591{
592 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 synchronize_net();
595}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700596EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Vlad Yasevich62532da2012-11-15 08:49:10 +0000598
599/**
600 * dev_add_offload - register offload handlers
601 * @po: protocol offload declaration
602 *
603 * Add protocol offload handlers to the networking stack. The passed
604 * &proto_offload is linked into kernel lists and may not be freed until
605 * it has been removed from the kernel lists.
606 *
607 * This call does not sleep therefore it can not
608 * guarantee all CPU's that are in middle of receiving packets
609 * will see the new offload handlers (until the next received packet).
610 */
611void dev_add_offload(struct packet_offload *po)
612{
David S. Millerbdef7de2015-06-01 14:56:09 -0700613 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000614
615 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700616 list_for_each_entry(elem, &offload_base, list) {
617 if (po->priority < elem->priority)
618 break;
619 }
620 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000621 spin_unlock(&offload_lock);
622}
623EXPORT_SYMBOL(dev_add_offload);
624
625/**
626 * __dev_remove_offload - remove offload handler
627 * @po: packet offload declaration
628 *
629 * Remove a protocol offload handler that was previously added to the
630 * kernel offload handlers by dev_add_offload(). The passed &offload_type
631 * is removed from the kernel lists and can be freed or reused once this
632 * function returns.
633 *
634 * The packet type might still be in use by receivers
635 * and must not be freed until after all the CPU's have gone
636 * through a quiescent state.
637 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800638static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000639{
640 struct list_head *head = &offload_base;
641 struct packet_offload *po1;
642
Eric Dumazetc53aa502012-11-16 08:08:23 +0000643 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000644
645 list_for_each_entry(po1, head, list) {
646 if (po == po1) {
647 list_del_rcu(&po->list);
648 goto out;
649 }
650 }
651
652 pr_warn("dev_remove_offload: %p not found\n", po);
653out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000654 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000655}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000656
657/**
658 * dev_remove_offload - remove packet offload handler
659 * @po: packet offload declaration
660 *
661 * Remove a packet offload handler that was previously added to the kernel
662 * offload handlers by dev_add_offload(). The passed &offload_type is
663 * removed from the kernel lists and can be freed or reused once this
664 * function returns.
665 *
666 * This call sleeps to guarantee that no CPU is looking at the packet
667 * type after return.
668 */
669void dev_remove_offload(struct packet_offload *po)
670{
671 __dev_remove_offload(po);
672
673 synchronize_net();
674}
675EXPORT_SYMBOL(dev_remove_offload);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100678 *
679 * Device Boot-time Settings Routines
680 *
681 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683/* Boot time configuration table */
684static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
685
686/**
687 * netdev_boot_setup_add - add new setup entry
688 * @name: name of the device
689 * @map: configured settings for the device
690 *
691 * Adds new setup entry to the dev_boot_setup list. The function
692 * returns 0 on error and 1 on success. This is a generic routine to
693 * all netdevices.
694 */
695static int netdev_boot_setup_add(char *name, struct ifmap *map)
696{
697 struct netdev_boot_setup *s;
698 int i;
699
700 s = dev_boot_setup;
701 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
702 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
703 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff92008-07-01 19:57:19 -0700704 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 memcpy(&s[i].map, map, sizeof(s[i].map));
706 break;
707 }
708 }
709
710 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
711}
712
713/**
tcharding722c9a02017-02-09 17:56:04 +1100714 * netdev_boot_setup_check - check boot time settings
715 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 *
tcharding722c9a02017-02-09 17:56:04 +1100717 * Check boot time settings for the device.
718 * The found settings are set for the device to be used
719 * later in the device probing.
720 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 */
722int netdev_boot_setup_check(struct net_device *dev)
723{
724 struct netdev_boot_setup *s = dev_boot_setup;
725 int i;
726
727 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
728 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff92008-07-01 19:57:19 -0700729 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100730 dev->irq = s[i].map.irq;
731 dev->base_addr = s[i].map.base_addr;
732 dev->mem_start = s[i].map.mem_start;
733 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return 1;
735 }
736 }
737 return 0;
738}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700739EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741
742/**
tcharding722c9a02017-02-09 17:56:04 +1100743 * netdev_boot_base - get address from boot time settings
744 * @prefix: prefix for network device
745 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 *
tcharding722c9a02017-02-09 17:56:04 +1100747 * Check boot time settings for the base address of device.
748 * The found settings are set for the device to be used
749 * later in the device probing.
750 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 */
752unsigned long netdev_boot_base(const char *prefix, int unit)
753{
754 const struct netdev_boot_setup *s = dev_boot_setup;
755 char name[IFNAMSIZ];
756 int i;
757
758 sprintf(name, "%s%d", prefix, unit);
759
760 /*
761 * If device already registered then return base of 1
762 * to indicate not to probe for this interface
763 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700764 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return 1;
766
767 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
768 if (!strcmp(name, s[i].name))
769 return s[i].map.base_addr;
770 return 0;
771}
772
773/*
774 * Saves at boot time configured settings for any netdevice.
775 */
776int __init netdev_boot_setup(char *str)
777{
778 int ints[5];
779 struct ifmap map;
780
781 str = get_options(str, ARRAY_SIZE(ints), ints);
782 if (!str || !*str)
783 return 0;
784
785 /* Save settings */
786 memset(&map, 0, sizeof(map));
787 if (ints[0] > 0)
788 map.irq = ints[1];
789 if (ints[0] > 1)
790 map.base_addr = ints[2];
791 if (ints[0] > 2)
792 map.mem_start = ints[3];
793 if (ints[0] > 3)
794 map.mem_end = ints[4];
795
796 /* Add new entry to the list */
797 return netdev_boot_setup_add(str, &map);
798}
799
800__setup("netdev=", netdev_boot_setup);
801
802/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100803 *
804 * Device Interface Subroutines
805 *
806 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200809 * dev_get_iflink - get 'iflink' value of a interface
810 * @dev: targeted interface
811 *
812 * Indicates the ifindex the interface is linked to.
813 * Physical interfaces have the same 'ifindex' and 'iflink' values.
814 */
815
816int dev_get_iflink(const struct net_device *dev)
817{
818 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
819 return dev->netdev_ops->ndo_get_iflink(dev);
820
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200821 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200822}
823EXPORT_SYMBOL(dev_get_iflink);
824
825/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700826 * dev_fill_metadata_dst - Retrieve tunnel egress information.
827 * @dev: targeted interface
828 * @skb: The packet.
829 *
830 * For better visibility of tunnel traffic OVS needs to retrieve
831 * egress tunnel information for a packet. Following API allows
832 * user to get this info.
833 */
834int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
835{
836 struct ip_tunnel_info *info;
837
838 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
839 return -EINVAL;
840
841 info = skb_tunnel_info_unclone(skb);
842 if (!info)
843 return -ENOMEM;
844 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
845 return -EINVAL;
846
847 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
848}
849EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
850
Pablo Neira Ayusoddb94ea2021-03-24 02:30:32 +0100851static struct net_device_path *dev_fwd_path(struct net_device_path_stack *stack)
852{
853 int k = stack->num_paths++;
854
855 if (WARN_ON_ONCE(k >= NET_DEVICE_PATH_STACK_MAX))
856 return NULL;
857
858 return &stack->path[k];
859}
860
861int dev_fill_forward_path(const struct net_device *dev, const u8 *daddr,
862 struct net_device_path_stack *stack)
863{
864 const struct net_device *last_dev;
865 struct net_device_path_ctx ctx = {
866 .dev = dev,
867 .daddr = daddr,
868 };
869 struct net_device_path *path;
870 int ret = 0;
871
872 stack->num_paths = 0;
873 while (ctx.dev && ctx.dev->netdev_ops->ndo_fill_forward_path) {
874 last_dev = ctx.dev;
875 path = dev_fwd_path(stack);
876 if (!path)
877 return -1;
878
879 memset(path, 0, sizeof(struct net_device_path));
880 ret = ctx.dev->netdev_ops->ndo_fill_forward_path(&ctx, path);
881 if (ret < 0)
882 return -1;
883
884 if (WARN_ON_ONCE(last_dev == ctx.dev))
885 return -1;
886 }
887 path = dev_fwd_path(stack);
888 if (!path)
889 return -1;
890 path->type = DEV_PATH_ETHERNET;
891 path->dev = ctx.dev;
892
893 return ret;
894}
895EXPORT_SYMBOL_GPL(dev_fill_forward_path);
896
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700897/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700899 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * @name: name to find
901 *
902 * Find an interface by name. Must be called under RTNL semaphore
903 * or @dev_base_lock. If the name is found a pointer to the device
904 * is returned. If the name is not found then %NULL is returned. The
905 * reference counters are not incremented so the caller must be
906 * careful with locks.
907 */
908
Eric W. Biederman881d9662007-09-17 11:56:21 -0700909struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Jiri Pirkoff927412019-09-30 11:48:15 +0200911 struct netdev_name_node *node_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Jiri Pirkoff927412019-09-30 11:48:15 +0200913 node_name = netdev_name_node_lookup(net, name);
914 return node_name ? node_name->dev : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700916EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918/**
tcharding722c9a02017-02-09 17:56:04 +1100919 * dev_get_by_name_rcu - find a device by its name
920 * @net: the applicable net namespace
921 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000922 *
tcharding722c9a02017-02-09 17:56:04 +1100923 * Find an interface by name.
924 * If the name is found a pointer to the device is returned.
925 * If the name is not found then %NULL is returned.
926 * The reference counters are not incremented so the caller must be
927 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000928 */
929
930struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
931{
Jiri Pirkoff927412019-09-30 11:48:15 +0200932 struct netdev_name_node *node_name;
Eric Dumazet72c95282009-10-30 07:11:27 +0000933
Jiri Pirkoff927412019-09-30 11:48:15 +0200934 node_name = netdev_name_node_lookup_rcu(net, name);
935 return node_name ? node_name->dev : NULL;
Eric Dumazet72c95282009-10-30 07:11:27 +0000936}
937EXPORT_SYMBOL(dev_get_by_name_rcu);
938
939/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700941 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 * @name: name to find
943 *
944 * Find an interface by name. This can be called from any
945 * context and does its own locking. The returned handle has
946 * the usage count incremented and the caller must use dev_put() to
947 * release it when it is no longer needed. %NULL is returned if no
948 * matching device is found.
949 */
950
Eric W. Biederman881d9662007-09-17 11:56:21 -0700951struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
953 struct net_device *dev;
954
Eric Dumazet72c95282009-10-30 07:11:27 +0000955 rcu_read_lock();
956 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (dev)
958 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000959 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return dev;
961}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700962EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964/**
965 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700966 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 * @ifindex: index of device
968 *
969 * Search for an interface by index. Returns %NULL if the device
970 * is not found or a pointer to the device. The device has not
971 * had its reference counter increased so the caller must be careful
972 * about locking. The caller must hold either the RTNL semaphore
973 * or @dev_base_lock.
974 */
975
Eric W. Biederman881d9662007-09-17 11:56:21 -0700976struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700978 struct net_device *dev;
979 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Sasha Levinb67bfe02013-02-27 17:06:00 -0800981 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (dev->ifindex == ifindex)
983 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return NULL;
986}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700987EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000989/**
990 * dev_get_by_index_rcu - find a device by its ifindex
991 * @net: the applicable net namespace
992 * @ifindex: index of device
993 *
994 * Search for an interface by index. Returns %NULL if the device
995 * is not found or a pointer to the device. The device has not
996 * had its reference counter increased so the caller must be careful
997 * about locking. The caller must hold RCU lock.
998 */
999
1000struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
1001{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00001002 struct net_device *dev;
1003 struct hlist_head *head = dev_index_hash(net, ifindex);
1004
Sasha Levinb67bfe02013-02-27 17:06:00 -08001005 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00001006 if (dev->ifindex == ifindex)
1007 return dev;
1008
1009 return NULL;
1010}
1011EXPORT_SYMBOL(dev_get_by_index_rcu);
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014/**
1015 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001016 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 * @ifindex: index of device
1018 *
1019 * Search for an interface by index. Returns NULL if the device
1020 * is not found or a pointer to the device. The device returned has
1021 * had a reference added and the pointer is safe until the user calls
1022 * dev_put to indicate they have finished with it.
1023 */
1024
Eric W. Biederman881d9662007-09-17 11:56:21 -07001025struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct net_device *dev;
1028
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00001029 rcu_read_lock();
1030 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (dev)
1032 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +00001033 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return dev;
1035}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001036EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +02001039 * dev_get_by_napi_id - find a device by napi_id
1040 * @napi_id: ID of the NAPI struct
1041 *
1042 * Search for an interface by NAPI ID. Returns %NULL if the device
1043 * is not found or a pointer to the device. The device has not had
1044 * its reference counter increased so the caller must be careful
1045 * about locking. The caller must hold RCU lock.
1046 */
1047
1048struct net_device *dev_get_by_napi_id(unsigned int napi_id)
1049{
1050 struct napi_struct *napi;
1051
1052 WARN_ON_ONCE(!rcu_read_lock_held());
1053
1054 if (napi_id < MIN_NAPI_ID)
1055 return NULL;
1056
1057 napi = napi_by_id(napi_id);
1058
1059 return napi ? napi->dev : NULL;
1060}
1061EXPORT_SYMBOL(dev_get_by_napi_id);
1062
1063/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001064 * netdev_get_name - get a netdevice name, knowing its ifindex.
1065 * @net: network namespace
1066 * @name: a pointer to the buffer where the name will be stored.
1067 * @ifindex: the ifindex of the interface to get the name from.
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001068 */
1069int netdev_get_name(struct net *net, char *name, int ifindex)
1070{
1071 struct net_device *dev;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001072 int ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001073
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001074 down_read(&devnet_rename_sem);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001075 rcu_read_lock();
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001076
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001077 dev = dev_get_by_index_rcu(net, ifindex);
1078 if (!dev) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001079 ret = -ENODEV;
1080 goto out;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001081 }
1082
1083 strcpy(name, dev->name);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001084
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001085 ret = 0;
1086out:
1087 rcu_read_unlock();
1088 up_read(&devnet_rename_sem);
1089 return ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001090}
1091
1092/**
Eric Dumazet941666c2010-12-05 01:23:53 +00001093 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001094 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 * @type: media type of device
1096 * @ha: hardware address
1097 *
1098 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -08001099 * is not found or a pointer to the device.
1100 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +00001101 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 * and the caller must therefore be careful about locking
1103 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 */
1105
Eric Dumazet941666c2010-12-05 01:23:53 +00001106struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
1107 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
1109 struct net_device *dev;
1110
Eric Dumazet941666c2010-12-05 01:23:53 +00001111 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (dev->type == type &&
1113 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -07001114 return dev;
1115
1116 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
Eric Dumazet941666c2010-12-05 01:23:53 +00001118EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -03001119
Eric W. Biederman881d9662007-09-17 11:56:21 -07001120struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001122 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001124 rcu_read_lock();
1125 for_each_netdev_rcu(net, dev)
1126 if (dev->type == type) {
1127 dev_hold(dev);
1128 ret = dev;
1129 break;
1130 }
1131 rcu_read_unlock();
1132 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134EXPORT_SYMBOL(dev_getfirstbyhwtype);
1135
1136/**
WANG Cong6c555492014-09-11 15:35:09 -07001137 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001138 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 * @if_flags: IFF_* values
1140 * @mask: bitmask of bits in if_flags to check
1141 *
1142 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +00001143 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -07001144 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 */
1146
WANG Cong6c555492014-09-11 15:35:09 -07001147struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1148 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001150 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
WANG Cong6c555492014-09-11 15:35:09 -07001152 ASSERT_RTNL();
1153
Pavel Emelianov7562f872007-05-03 15:13:45 -07001154 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001155 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001157 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 break;
1159 }
1160 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001161 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
WANG Cong6c555492014-09-11 15:35:09 -07001163EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165/**
1166 * dev_valid_name - check if name is okay for network device
1167 * @name: name string
1168 *
1169 * Network device names need to be valid file names to
Randy Dunlap4250b752020-09-17 21:35:15 -07001170 * allow sysfs to work. We also disallow any kind of
David S. Millerc7fa9d12006-08-15 16:34:13 -07001171 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 */
David S. Miller95f050b2012-03-06 16:12:15 -05001173bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001175 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001176 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001177 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001178 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001179 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001180 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001181
1182 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001183 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001184 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001185 name++;
1186 }
David S. Miller95f050b2012-03-06 16:12:15 -05001187 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001189EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001192 * __dev_alloc_name - allocate a name for a device
1193 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001195 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 *
1197 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001198 * id. It scans list of devices to build up a free map, then chooses
1199 * the first empty slot. The caller must hold the dev_base or rtnl lock
1200 * while allocating the name and adding the device in order to avoid
1201 * duplicates.
1202 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1203 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 */
1205
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001206static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 const char *p;
1210 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001211 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct net_device *d;
1213
Rasmus Villemoes93809102017-11-13 00:15:08 +01001214 if (!dev_valid_name(name))
1215 return -EINVAL;
1216
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001217 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (p) {
1219 /*
1220 * Verify the string as this thing may have come from
1221 * the user. There must be either one "%d" and no other "%"
1222 * characters.
1223 */
1224 if (p[1] != 'd' || strchr(p + 2, '%'))
1225 return -EINVAL;
1226
1227 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001228 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (!inuse)
1230 return -ENOMEM;
1231
Eric W. Biederman881d9662007-09-17 11:56:21 -07001232 for_each_netdev(net, d) {
Jiri Bohac6c015a22021-03-18 04:42:53 +01001233 struct netdev_name_node *name_node;
1234 list_for_each_entry(name_node, &d->name_node->list, list) {
1235 if (!sscanf(name_node->name, name, &i))
1236 continue;
1237 if (i < 0 || i >= max_netdevices)
1238 continue;
1239
1240 /* avoid cases where sscanf is not exact inverse of printf */
1241 snprintf(buf, IFNAMSIZ, name, i);
1242 if (!strncmp(buf, name_node->name, IFNAMSIZ))
1243 set_bit(i, inuse);
1244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 if (!sscanf(d->name, name, &i))
1246 continue;
1247 if (i < 0 || i >= max_netdevices)
1248 continue;
1249
1250 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001251 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (!strncmp(buf, d->name, IFNAMSIZ))
1253 set_bit(i, inuse);
1254 }
1255
1256 i = find_first_zero_bit(inuse, max_netdevices);
1257 free_page((unsigned long) inuse);
1258 }
1259
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001260 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001261 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 /* It is possible to run out of possible slots
1265 * when the name is long and there isn't enough space left
1266 * for the digits, or if all bits are used.
1267 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001268 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001271static int dev_alloc_name_ns(struct net *net,
1272 struct net_device *dev,
1273 const char *name)
1274{
1275 char buf[IFNAMSIZ];
1276 int ret;
1277
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001278 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001279 ret = __dev_alloc_name(net, name, buf);
1280 if (ret >= 0)
1281 strlcpy(dev->name, buf, IFNAMSIZ);
1282 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001285/**
1286 * dev_alloc_name - allocate a name for a device
1287 * @dev: device
1288 * @name: name format string
1289 *
1290 * Passed a format string - eg "lt%d" it will try and find a suitable
1291 * id. It scans list of devices to build up a free map, then chooses
1292 * the first empty slot. The caller must hold the dev_base or rtnl lock
1293 * while allocating the name and adding the device in order to avoid
1294 * duplicates.
1295 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1296 * Returns the number of the unit assigned or a negative errno code.
1297 */
1298
1299int dev_alloc_name(struct net_device *dev, const char *name)
1300{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001301 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001302}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001303EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001304
Eric Dumazetbacb7e12019-10-08 14:20:34 -07001305static int dev_get_valid_name(struct net *net, struct net_device *dev,
1306 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001307{
David S. Miller55a5ec92018-01-02 11:45:07 -05001308 BUG_ON(!net);
1309
1310 if (!dev_valid_name(name))
1311 return -EINVAL;
1312
1313 if (strchr(name, '%'))
1314 return dev_alloc_name_ns(net, dev, name);
1315 else if (__dev_get_by_name(net, name))
1316 return -EEXIST;
1317 else if (dev->name != name)
1318 strlcpy(dev->name, name, IFNAMSIZ);
1319
1320 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001321}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323/**
1324 * dev_change_name - change name of a device
1325 * @dev: device
1326 * @newname: name (or format string) must be at least IFNAMSIZ
1327 *
1328 * Change name of a device, can pass format strings "eth%d".
1329 * for wildcarding.
1330 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001331int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Tom Gundersen238fa362014-07-14 16:37:23 +02001333 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001334 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001336 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001337 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001340 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001342 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001343
1344 /* Some auto-enslaved devices e.g. failover slaves are
1345 * special, as userspace might rename the device after
1346 * the interface had been brought up and running since
1347 * the point kernel initiated auto-enslavement. Allow
1348 * live name change even when these slave devices are
1349 * up and running.
1350 *
1351 * Typically, users of these auto-enslaving devices
1352 * don't actually care about slave name change, as
1353 * they are supposed to operate on master interface
1354 * directly.
1355 */
1356 if (dev->flags & IFF_UP &&
1357 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return -EBUSY;
1359
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001360 down_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001361
1362 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001363 up_write(&devnet_rename_sem);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001364 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001365 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001366
Herbert Xufcc5a032007-07-30 17:03:38 -07001367 memcpy(oldname, dev->name, IFNAMSIZ);
1368
Gao feng828de4f2012-09-13 20:58:27 +00001369 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001370 if (err < 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001371 up_write(&devnet_rename_sem);
Octavian Purdilad9031022009-11-18 02:36:59 +00001372 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001375 if (oldname[0] && !strchr(oldname, '%'))
1376 netdev_info(dev, "renamed from %s\n", oldname);
1377
Tom Gundersen238fa362014-07-14 16:37:23 +02001378 old_assign_type = dev->name_assign_type;
1379 dev->name_assign_type = NET_NAME_RENAMED;
1380
Herbert Xufcc5a032007-07-30 17:03:38 -07001381rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001382 ret = device_rename(&dev->dev, dev->name);
1383 if (ret) {
1384 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001385 dev->name_assign_type = old_assign_type;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001386 up_write(&devnet_rename_sem);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001387 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001388 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001389
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001390 up_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001391
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001392 netdev_adjacent_rename_links(dev, oldname);
1393
Herbert Xu7f988ea2007-07-30 16:35:46 -07001394 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001395 netdev_name_node_del(dev->name_node);
Eric Dumazet72c95282009-10-30 07:11:27 +00001396 write_unlock_bh(&dev_base_lock);
1397
1398 synchronize_rcu();
1399
1400 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001401 netdev_name_node_add(net, dev->name_node);
Herbert Xu7f988ea2007-07-30 16:35:46 -07001402 write_unlock_bh(&dev_base_lock);
1403
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001404 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001405 ret = notifier_to_errno(ret);
1406
1407 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001408 /* err >= 0 after dev_alloc_name() or stores the first errno */
1409 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001410 err = ret;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001411 down_write(&devnet_rename_sem);
Herbert Xufcc5a032007-07-30 17:03:38 -07001412 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001413 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001414 dev->name_assign_type = old_assign_type;
1415 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001416 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001417 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001418 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001419 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001420 }
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 return err;
1424}
1425
1426/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001427 * dev_set_alias - change ifalias of a device
1428 * @dev: device
1429 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001430 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001431 *
1432 * Set ifalias for a device,
1433 */
1434int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1435{
Florian Westphal6c557002017-10-02 23:50:05 +02001436 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001437
1438 if (len >= IFALIASZ)
1439 return -EINVAL;
1440
Florian Westphal6c557002017-10-02 23:50:05 +02001441 if (len) {
1442 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1443 if (!new_alias)
1444 return -ENOMEM;
1445
1446 memcpy(new_alias->ifalias, alias, len);
1447 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001448 }
1449
Florian Westphal6c557002017-10-02 23:50:05 +02001450 mutex_lock(&ifalias_mutex);
Paul E. McKenneye3f0d762019-09-23 15:42:28 -07001451 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1452 mutex_is_locked(&ifalias_mutex));
Florian Westphal6c557002017-10-02 23:50:05 +02001453 mutex_unlock(&ifalias_mutex);
1454
1455 if (new_alias)
1456 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001457
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001458 return len;
1459}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001460EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001461
Florian Westphal6c557002017-10-02 23:50:05 +02001462/**
1463 * dev_get_alias - get ifalias of a device
1464 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001465 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001466 * @len: size of buffer
1467 *
1468 * get ifalias for a device. Caller must make sure dev cannot go
1469 * away, e.g. rcu read lock or own a reference count to device.
1470 */
1471int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1472{
1473 const struct dev_ifalias *alias;
1474 int ret = 0;
1475
1476 rcu_read_lock();
1477 alias = rcu_dereference(dev->ifalias);
1478 if (alias)
1479 ret = snprintf(name, len, "%s", alias->ifalias);
1480 rcu_read_unlock();
1481
1482 return ret;
1483}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001484
1485/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001486 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001487 * @dev: device to cause notification
1488 *
1489 * Called to indicate a device has changed features.
1490 */
1491void netdev_features_change(struct net_device *dev)
1492{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001493 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001494}
1495EXPORT_SYMBOL(netdev_features_change);
1496
1497/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 * netdev_state_change - device changes state
1499 * @dev: device to cause notification
1500 *
1501 * Called to indicate a device has changed state. This function calls
1502 * the notifier chains for netdev_chain and sends a NEWLINK message
1503 * to the routing socket.
1504 */
1505void netdev_state_change(struct net_device *dev)
1506{
1507 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001508 struct netdev_notifier_change_info change_info = {
1509 .info.dev = dev,
1510 };
Loic Prylli54951192014-07-01 21:39:43 -07001511
David Ahern51d0c0472017-10-04 17:48:45 -07001512 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001513 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001514 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 }
1516}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001517EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Amerigo Wangee89bab2012-08-09 22:14:56 +00001519/**
Lijun Pan7061eb82020-12-14 15:19:28 -06001520 * __netdev_notify_peers - notify network peers about existence of @dev,
1521 * to be called when rtnl lock is already held.
1522 * @dev: network device
1523 *
1524 * Generate traffic such that interested network peers are aware of
1525 * @dev, such as by generating a gratuitous ARP. This may be used when
1526 * a device wants to inform the rest of the network about some sort of
1527 * reconfiguration such as a failover event or virtual machine
1528 * migration.
1529 */
1530void __netdev_notify_peers(struct net_device *dev)
1531{
1532 ASSERT_RTNL();
1533 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1534 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
1535}
1536EXPORT_SYMBOL(__netdev_notify_peers);
1537
1538/**
tcharding722c9a02017-02-09 17:56:04 +11001539 * netdev_notify_peers - notify network peers about existence of @dev
1540 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001541 *
1542 * Generate traffic such that interested network peers are aware of
1543 * @dev, such as by generating a gratuitous ARP. This may be used when
1544 * a device wants to inform the rest of the network about some sort of
1545 * reconfiguration such as a failover event or virtual machine
1546 * migration.
1547 */
1548void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001549{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001550 rtnl_lock();
Lijun Pan7061eb82020-12-14 15:19:28 -06001551 __netdev_notify_peers(dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001552 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001553}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001554EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001555
Wei Wang29863d42021-02-08 11:34:09 -08001556static int napi_threaded_poll(void *data);
1557
1558static int napi_kthread_create(struct napi_struct *n)
1559{
1560 int err = 0;
1561
1562 /* Create and wake up the kthread once to put it in
1563 * TASK_INTERRUPTIBLE mode to avoid the blocked task
1564 * warning and work with loadavg.
1565 */
1566 n->thread = kthread_run(napi_threaded_poll, n, "napi/%s-%d",
1567 n->dev->name, n->napi_id);
1568 if (IS_ERR(n->thread)) {
1569 err = PTR_ERR(n->thread);
1570 pr_err("kthread_run failed with err %d\n", err);
1571 n->thread = NULL;
1572 }
1573
1574 return err;
1575}
1576
Petr Machata40c900a2018-12-06 17:05:47 +00001577static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001579 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001580 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001582 ASSERT_RTNL();
1583
Heiner Kallweitbd869242020-06-20 22:35:42 +02001584 if (!netif_device_present(dev)) {
1585 /* may be detached because parent is runtime-suspended */
1586 if (dev->dev.parent)
1587 pm_runtime_resume(dev->dev.parent);
1588 if (!netif_device_present(dev))
1589 return -ENODEV;
1590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Neil Hormanca99ca12013-02-05 08:05:43 +00001592 /* Block netpoll from trying to do any rx path servicing.
1593 * If we don't do this there is a chance ndo_poll_controller
1594 * or ndo_poll may be running while we open the device
1595 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001596 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001597
Petr Machata40c900a2018-12-06 17:05:47 +00001598 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001599 ret = notifier_to_errno(ret);
1600 if (ret)
1601 return ret;
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001604
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001605 if (ops->ndo_validate_addr)
1606 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001607
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001608 if (!ret && ops->ndo_open)
1609 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Eric W. Biederman66b55522014-03-27 15:39:03 -07001611 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001612
Jeff Garzikbada3392007-10-23 20:19:37 -07001613 if (ret)
1614 clear_bit(__LINK_STATE_START, &dev->state);
1615 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001617 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001619 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return ret;
1623}
Patrick McHardybd380812010-02-26 06:34:53 +00001624
1625/**
1626 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001627 * @dev: device to open
1628 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001629 *
1630 * Takes a device from down to up state. The device's private open
1631 * function is invoked and then the multicast lists are loaded. Finally
1632 * the device is moved into the up state and a %NETDEV_UP message is
1633 * sent to the netdev notifier chain.
1634 *
1635 * Calling this function on an active interface is a nop. On a failure
1636 * a negative errno code is returned.
1637 */
Petr Machata00f54e62018-12-06 17:05:36 +00001638int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001639{
1640 int ret;
1641
Patrick McHardybd380812010-02-26 06:34:53 +00001642 if (dev->flags & IFF_UP)
1643 return 0;
1644
Petr Machata40c900a2018-12-06 17:05:47 +00001645 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001646 if (ret < 0)
1647 return ret;
1648
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001649 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001650 call_netdevice_notifiers(NETDEV_UP, dev);
1651
1652 return ret;
1653}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001654EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
stephen hemminger7051b882017-07-18 15:59:27 -07001656static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Octavian Purdila44345722010-12-13 12:44:07 +00001658 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001659
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001660 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001661 might_sleep();
1662
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001663 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001664 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001665 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001666
Octavian Purdila44345722010-12-13 12:44:07 +00001667 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Octavian Purdila44345722010-12-13 12:44:07 +00001669 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Octavian Purdila44345722010-12-13 12:44:07 +00001671 /* Synchronize to scheduled poll. We cannot touch poll list, it
1672 * can be even on different cpu. So just clear netif_running().
1673 *
1674 * dev->stop() will invoke napi_disable() on all of it's
1675 * napi_struct instances on this device.
1676 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001677 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Octavian Purdila44345722010-12-13 12:44:07 +00001680 dev_deactivate_many(head);
1681
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001682 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001683 const struct net_device_ops *ops = dev->netdev_ops;
1684
1685 /*
1686 * Call the device specific close. This cannot fail.
1687 * Only if device is UP
1688 *
1689 * We allow it to be called even after a DETACH hot-plug
1690 * event.
1691 */
1692 if (ops->ndo_stop)
1693 ops->ndo_stop(dev);
1694
Octavian Purdila44345722010-12-13 12:44:07 +00001695 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001696 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001697 }
Octavian Purdila44345722010-12-13 12:44:07 +00001698}
1699
stephen hemminger7051b882017-07-18 15:59:27 -07001700static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001701{
1702 LIST_HEAD(single);
1703
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001704 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001705 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001706 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001707}
1708
stephen hemminger7051b882017-07-18 15:59:27 -07001709void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001710{
1711 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001712
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001713 /* Remove the devices that don't need to be closed */
1714 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001715 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001716 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001717
1718 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001719
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001720 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001721 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001722 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001723 if (unlink)
1724 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726}
David S. Miller99c4a262015-03-18 22:52:33 -04001727EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001728
1729/**
1730 * dev_close - shutdown an interface.
1731 * @dev: device to shutdown
1732 *
1733 * This function moves an active device into down state. A
1734 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1735 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1736 * chain.
1737 */
stephen hemminger7051b882017-07-18 15:59:27 -07001738void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001739{
Eric Dumazete14a5992011-05-10 12:26:06 -07001740 if (dev->flags & IFF_UP) {
1741 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001742
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001743 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001744 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001745 list_del(&single);
1746 }
Patrick McHardybd380812010-02-26 06:34:53 +00001747}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001748EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001751/**
1752 * dev_disable_lro - disable Large Receive Offload on a device
1753 * @dev: device
1754 *
1755 * Disable Large Receive Offload (LRO) on a net device. Must be
1756 * called under RTNL. This is needed if received packets may be
1757 * forwarded to another interface.
1758 */
1759void dev_disable_lro(struct net_device *dev)
1760{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001761 struct net_device *lower_dev;
1762 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001763
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001764 dev->wanted_features &= ~NETIF_F_LRO;
1765 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001766
Michał Mirosław22d59692011-04-21 12:42:15 +00001767 if (unlikely(dev->features & NETIF_F_LRO))
1768 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001769
1770 netdev_for_each_lower_dev(dev, lower_dev, iter)
1771 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001772}
1773EXPORT_SYMBOL(dev_disable_lro);
1774
Michael Chan56f5aa72017-12-16 03:09:41 -05001775/**
1776 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1777 * @dev: device
1778 *
1779 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1780 * called under RTNL. This is needed if Generic XDP is installed on
1781 * the device.
1782 */
1783static void dev_disable_gro_hw(struct net_device *dev)
1784{
1785 dev->wanted_features &= ~NETIF_F_GRO_HW;
1786 netdev_update_features(dev);
1787
1788 if (unlikely(dev->features & NETIF_F_GRO_HW))
1789 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1790}
1791
Kirill Tkhaiede27622018-03-23 19:47:19 +03001792const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1793{
1794#define N(val) \
1795 case NETDEV_##val: \
1796 return "NETDEV_" __stringify(val);
1797 switch (cmd) {
1798 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1799 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1800 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1801 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1802 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1803 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1804 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001805 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1806 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001807 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001808 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001809#undef N
1810 return "UNKNOWN_NETDEV_EVENT";
1811}
1812EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1813
Jiri Pirko351638e2013-05-28 01:30:21 +00001814static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1815 struct net_device *dev)
1816{
David Ahern51d0c0472017-10-04 17:48:45 -07001817 struct netdev_notifier_info info = {
1818 .dev = dev,
1819 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001820
Jiri Pirko351638e2013-05-28 01:30:21 +00001821 return nb->notifier_call(nb, val, &info);
1822}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001823
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001824static int call_netdevice_register_notifiers(struct notifier_block *nb,
1825 struct net_device *dev)
1826{
1827 int err;
1828
1829 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1830 err = notifier_to_errno(err);
1831 if (err)
1832 return err;
1833
1834 if (!(dev->flags & IFF_UP))
1835 return 0;
1836
1837 call_netdevice_notifier(nb, NETDEV_UP, dev);
1838 return 0;
1839}
1840
1841static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1842 struct net_device *dev)
1843{
1844 if (dev->flags & IFF_UP) {
1845 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1846 dev);
1847 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1848 }
1849 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1850}
1851
1852static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1853 struct net *net)
1854{
1855 struct net_device *dev;
1856 int err;
1857
1858 for_each_netdev(net, dev) {
1859 err = call_netdevice_register_notifiers(nb, dev);
1860 if (err)
1861 goto rollback;
1862 }
1863 return 0;
1864
1865rollback:
1866 for_each_netdev_continue_reverse(net, dev)
1867 call_netdevice_unregister_notifiers(nb, dev);
1868 return err;
1869}
1870
1871static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1872 struct net *net)
1873{
1874 struct net_device *dev;
1875
1876 for_each_netdev(net, dev)
1877 call_netdevice_unregister_notifiers(nb, dev);
1878}
1879
Eric W. Biederman881d9662007-09-17 11:56:21 -07001880static int dev_boot_phase = 1;
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882/**
tcharding722c9a02017-02-09 17:56:04 +11001883 * register_netdevice_notifier - register a network notifier block
1884 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 *
tcharding722c9a02017-02-09 17:56:04 +11001886 * Register a notifier to be called when network device events occur.
1887 * The notifier passed is linked into the kernel structures and must
1888 * not be reused until it has been unregistered. A negative errno code
1889 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 *
tcharding722c9a02017-02-09 17:56:04 +11001891 * When registered all registration and up events are replayed
1892 * to the new notifier to allow device to have a race free
1893 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 */
1895
1896int register_netdevice_notifier(struct notifier_block *nb)
1897{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001898 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 int err;
1900
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001901 /* Close race with setup_net() and cleanup_net() */
1902 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001904 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001905 if (err)
1906 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001907 if (dev_boot_phase)
1908 goto unlock;
1909 for_each_net(net) {
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001910 err = call_netdevice_register_net_notifiers(nb, net);
1911 if (err)
1912 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001914
1915unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001917 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001919
1920rollback:
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001921 for_each_net_continue_reverse(net)
1922 call_netdevice_unregister_net_notifiers(nb, net);
Herbert Xufcc5a032007-07-30 17:03:38 -07001923
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001924 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001925 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001927EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929/**
tcharding722c9a02017-02-09 17:56:04 +11001930 * unregister_netdevice_notifier - unregister a network notifier block
1931 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 *
tcharding722c9a02017-02-09 17:56:04 +11001933 * Unregister a notifier previously registered by
1934 * register_netdevice_notifier(). The notifier is unlinked into the
1935 * kernel structures and may then be reused. A negative errno code
1936 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001937 *
tcharding722c9a02017-02-09 17:56:04 +11001938 * After unregistering unregister and down device events are synthesized
1939 * for all devices on the device list to the removed notifier to remove
1940 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 */
1942
1943int unregister_netdevice_notifier(struct notifier_block *nb)
1944{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001945 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001946 int err;
1947
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001948 /* Close race with setup_net() and cleanup_net() */
1949 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001950 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001951 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001952 if (err)
1953 goto unlock;
1954
Jiri Pirko48b3a132020-01-25 12:17:06 +01001955 for_each_net(net)
1956 call_netdevice_unregister_net_notifiers(nb, net);
1957
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001958unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001959 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001960 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001961 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001963EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Jiri Pirko1f637702020-01-25 12:17:07 +01001965static int __register_netdevice_notifier_net(struct net *net,
1966 struct notifier_block *nb,
1967 bool ignore_call_fail)
1968{
1969 int err;
1970
1971 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1972 if (err)
1973 return err;
1974 if (dev_boot_phase)
1975 return 0;
1976
1977 err = call_netdevice_register_net_notifiers(nb, net);
1978 if (err && !ignore_call_fail)
1979 goto chain_unregister;
1980
1981 return 0;
1982
1983chain_unregister:
1984 raw_notifier_chain_unregister(&net->netdev_chain, nb);
1985 return err;
1986}
1987
1988static int __unregister_netdevice_notifier_net(struct net *net,
1989 struct notifier_block *nb)
1990{
1991 int err;
1992
1993 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1994 if (err)
1995 return err;
1996
1997 call_netdevice_unregister_net_notifiers(nb, net);
1998 return 0;
1999}
2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001/**
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002002 * register_netdevice_notifier_net - register a per-netns network notifier block
2003 * @net: network namespace
2004 * @nb: notifier
2005 *
2006 * Register a notifier to be called when network device events occur.
2007 * The notifier passed is linked into the kernel structures and must
2008 * not be reused until it has been unregistered. A negative errno code
2009 * is returned on a failure.
2010 *
2011 * When registered all registration and up events are replayed
2012 * to the new notifier to allow device to have a race free
2013 * view of the network device list.
2014 */
2015
2016int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
2017{
2018 int err;
2019
2020 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01002021 err = __register_netdevice_notifier_net(net, nb, false);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002022 rtnl_unlock();
2023 return err;
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002024}
2025EXPORT_SYMBOL(register_netdevice_notifier_net);
2026
2027/**
2028 * unregister_netdevice_notifier_net - unregister a per-netns
2029 * network notifier block
2030 * @net: network namespace
2031 * @nb: notifier
2032 *
2033 * Unregister a notifier previously registered by
2034 * register_netdevice_notifier(). The notifier is unlinked into the
2035 * kernel structures and may then be reused. A negative errno code
2036 * is returned on a failure.
2037 *
2038 * After unregistering unregister and down device events are synthesized
2039 * for all devices on the device list to the removed notifier to remove
2040 * the need for special case cleanup code.
2041 */
2042
2043int unregister_netdevice_notifier_net(struct net *net,
2044 struct notifier_block *nb)
2045{
2046 int err;
2047
2048 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01002049 err = __unregister_netdevice_notifier_net(net, nb);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002050 rtnl_unlock();
2051 return err;
2052}
2053EXPORT_SYMBOL(unregister_netdevice_notifier_net);
2054
Jiri Pirko93642e12020-01-25 12:17:08 +01002055int register_netdevice_notifier_dev_net(struct net_device *dev,
2056 struct notifier_block *nb,
2057 struct netdev_net_notifier *nn)
2058{
2059 int err;
2060
2061 rtnl_lock();
2062 err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
2063 if (!err) {
2064 nn->nb = nb;
2065 list_add(&nn->list, &dev->net_notifier_list);
2066 }
2067 rtnl_unlock();
2068 return err;
2069}
2070EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
2071
2072int unregister_netdevice_notifier_dev_net(struct net_device *dev,
2073 struct notifier_block *nb,
2074 struct netdev_net_notifier *nn)
2075{
2076 int err;
2077
2078 rtnl_lock();
2079 list_del(&nn->list);
2080 err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
2081 rtnl_unlock();
2082 return err;
2083}
2084EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
2085
2086static void move_netdevice_notifiers_dev_net(struct net_device *dev,
2087 struct net *net)
2088{
2089 struct netdev_net_notifier *nn;
2090
2091 list_for_each_entry(nn, &dev->net_notifier_list, list) {
2092 __unregister_netdevice_notifier_net(dev_net(dev), nn->nb);
2093 __register_netdevice_notifier_net(net, nn->nb, true);
2094 }
2095}
2096
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002097/**
Jiri Pirko351638e2013-05-28 01:30:21 +00002098 * call_netdevice_notifiers_info - call all network notifier blocks
2099 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00002100 * @info: notifier information data
2101 *
2102 * Call all network notifier blocks. Parameters and return value
2103 * are as for raw_notifier_call_chain().
2104 */
2105
stephen hemminger1d143d92013-12-29 14:01:29 -08002106static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08002107 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00002108{
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002109 struct net *net = dev_net(info->dev);
2110 int ret;
2111
Jiri Pirko351638e2013-05-28 01:30:21 +00002112 ASSERT_RTNL();
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002113
2114 /* Run per-netns notifier block chain first, then run the global one.
2115 * Hopefully, one day, the global one is going to be removed after
2116 * all notifier block registrators get converted to be per-netns.
2117 */
2118 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2119 if (ret & NOTIFY_STOP_MASK)
2120 return ret;
Jiri Pirko351638e2013-05-28 01:30:21 +00002121 return raw_notifier_call_chain(&netdev_chain, val, info);
2122}
Jiri Pirko351638e2013-05-28 01:30:21 +00002123
Petr Machata26372602018-12-06 17:05:45 +00002124static int call_netdevice_notifiers_extack(unsigned long val,
2125 struct net_device *dev,
2126 struct netlink_ext_ack *extack)
2127{
2128 struct netdev_notifier_info info = {
2129 .dev = dev,
2130 .extack = extack,
2131 };
2132
2133 return call_netdevice_notifiers_info(val, &info);
2134}
2135
Jiri Pirko351638e2013-05-28 01:30:21 +00002136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 * call_netdevice_notifiers - call all network notifier blocks
2138 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002139 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 *
2141 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07002142 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 */
2144
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07002145int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Petr Machata26372602018-12-06 17:05:45 +00002147 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
stephen hemmingeredf947f2011-03-24 13:24:01 +00002149EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02002151/**
2152 * call_netdevice_notifiers_mtu - call all network notifier blocks
2153 * @val: value passed unmodified to notifier function
2154 * @dev: net_device pointer passed unmodified to notifier function
2155 * @arg: additional u32 argument passed to the notifier function
2156 *
2157 * Call all network notifier blocks. Parameters and return value
2158 * are as for raw_notifier_call_chain().
2159 */
2160static int call_netdevice_notifiers_mtu(unsigned long val,
2161 struct net_device *dev, u32 arg)
2162{
2163 struct netdev_notifier_info_ext info = {
2164 .info.dev = dev,
2165 .ext.mtu = arg,
2166 };
2167
2168 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2169
2170 return call_netdevice_notifiers_info(val, &info.info);
2171}
2172
Pablo Neira1cf519002015-05-13 18:19:37 +02002173#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002174static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002175
2176void net_inc_ingress_queue(void)
2177{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002178 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002179}
2180EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2181
2182void net_dec_ingress_queue(void)
2183{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002184 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002185}
2186EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2187#endif
2188
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002189#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002190static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002191
2192void net_inc_egress_queue(void)
2193{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002194 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002195}
2196EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2197
2198void net_dec_egress_queue(void)
2199{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002200 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002201}
2202EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2203#endif
2204
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002205static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002206#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00002207static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08002208static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002209static void netstamp_clear(struct work_struct *work)
2210{
2211 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08002212 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002213
Eric Dumazet13baa002017-03-01 14:28:39 -08002214 wanted = atomic_add_return(deferred, &netstamp_wanted);
2215 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002216 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002217 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002218 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002219}
2220static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00002221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223void net_enable_timestamp(void)
2224{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002225#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002226 int wanted;
2227
2228 while (1) {
2229 wanted = atomic_read(&netstamp_wanted);
2230 if (wanted <= 0)
2231 break;
2232 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2233 return;
2234 }
2235 atomic_inc(&netstamp_needed_deferred);
2236 schedule_work(&netstamp_work);
2237#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002238 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002239#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002241EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243void net_disable_timestamp(void)
2244{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002245#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002246 int wanted;
2247
2248 while (1) {
2249 wanted = atomic_read(&netstamp_wanted);
2250 if (wanted <= 1)
2251 break;
2252 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2253 return;
2254 }
2255 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002256 schedule_work(&netstamp_work);
2257#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002258 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002259#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002261EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Eric Dumazet3b098e22010-05-15 23:57:10 -07002263static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
Thomas Gleixner2456e852016-12-25 11:38:40 +01002265 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002266 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002267 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002270#define net_timestamp_check(COND, SKB) \
2271 if (static_branch_unlikely(&netstamp_needed_key)) { \
2272 if ((COND) && !(SKB)->tstamp) \
2273 __net_timestamp(SKB); \
2274 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07002275
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02002276bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002277{
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002278 return __is_skb_forwardable(dev, skb, true);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002279}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04002280EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002281
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002282static int __dev_forward_skb2(struct net_device *dev, struct sk_buff *skb,
2283 bool check_mtu)
Herbert Xua0265d22014-04-17 13:45:03 +08002284{
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002285 int ret = ____dev_forward_skb(dev, skb, check_mtu);
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002286
2287 if (likely(!ret)) {
2288 skb->protocol = eth_type_trans(skb, dev);
2289 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08002290 }
2291
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002292 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08002293}
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002294
2295int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2296{
2297 return __dev_forward_skb2(dev, skb, true);
2298}
Herbert Xua0265d22014-04-17 13:45:03 +08002299EXPORT_SYMBOL_GPL(__dev_forward_skb);
2300
Arnd Bergmann44540962009-11-26 06:07:08 +00002301/**
2302 * dev_forward_skb - loopback an skb to another netif
2303 *
2304 * @dev: destination network device
2305 * @skb: buffer to forward
2306 *
2307 * return values:
2308 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07002309 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00002310 *
2311 * dev_forward_skb can be used for injecting an skb from the
2312 * start_xmit function of one device into the receive queue
2313 * of another device.
2314 *
2315 * The receiving device may be in another namespace, so
2316 * we have to clear all information in the skb that could
2317 * impact namespace isolation.
2318 */
2319int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2320{
Herbert Xua0265d22014-04-17 13:45:03 +08002321 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00002322}
2323EXPORT_SYMBOL_GPL(dev_forward_skb);
2324
Jesper Dangaard Brouer5f7d5722021-02-09 14:38:29 +01002325int dev_forward_skb_nomtu(struct net_device *dev, struct sk_buff *skb)
2326{
2327 return __dev_forward_skb2(dev, skb, false) ?: netif_rx_internal(skb);
2328}
2329
Changli Gao71d9dec2010-12-15 19:57:25 +00002330static inline int deliver_skb(struct sk_buff *skb,
2331 struct packet_type *pt_prev,
2332 struct net_device *orig_dev)
2333{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04002334 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00002335 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03002336 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00002337 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2338}
2339
Salam Noureddine7866a622015-01-27 11:35:48 -08002340static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2341 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002342 struct net_device *orig_dev,
2343 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08002344 struct list_head *ptype_list)
2345{
2346 struct packet_type *ptype, *pt_prev = *pt;
2347
2348 list_for_each_entry_rcu(ptype, ptype_list, list) {
2349 if (ptype->type != type)
2350 continue;
2351 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002352 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08002353 pt_prev = ptype;
2354 }
2355 *pt = pt_prev;
2356}
2357
Eric Leblondc0de08d2012-08-16 22:02:58 +00002358static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2359{
Eric Leblonda3d744e2012-11-06 02:10:10 +00002360 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00002361 return false;
2362
2363 if (ptype->id_match)
2364 return ptype->id_match(ptype, skb->sk);
2365 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2366 return true;
2367
2368 return false;
2369}
2370
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002371/**
2372 * dev_nit_active - return true if any network interface taps are in use
2373 *
2374 * @dev: network device to check for the presence of taps
2375 */
2376bool dev_nit_active(struct net_device *dev)
2377{
2378 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2379}
2380EXPORT_SYMBOL_GPL(dev_nit_active);
2381
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382/*
2383 * Support routine. Sends outgoing frames to any network
2384 * taps currently in use.
2385 */
2386
David Ahern74b20582016-05-10 11:19:50 -07002387void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
2389 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002390 struct sk_buff *skb2 = NULL;
2391 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002392 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002395again:
2396 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002397 if (ptype->ignore_outgoing)
2398 continue;
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 /* Never send packets back to the socket
2401 * they originated from - MvS (miquels@drinkel.ow.org)
2402 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002403 if (skb_loop_sk(ptype, skb))
2404 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002405
Salam Noureddine7866a622015-01-27 11:35:48 -08002406 if (pt_prev) {
2407 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002408 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002409 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002411
2412 /* need to clone skb, done only once */
2413 skb2 = skb_clone(skb, GFP_ATOMIC);
2414 if (!skb2)
2415 goto out_unlock;
2416
2417 net_timestamp_set(skb2);
2418
2419 /* skb->nh should be correctly
2420 * set by sender, so that the second statement is
2421 * just protection against buggy protocols.
2422 */
2423 skb_reset_mac_header(skb2);
2424
2425 if (skb_network_header(skb2) < skb2->data ||
2426 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2427 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2428 ntohs(skb2->protocol),
2429 dev->name);
2430 skb_reset_network_header(skb2);
2431 }
2432
2433 skb2->transport_header = skb2->network_header;
2434 skb2->pkt_type = PACKET_OUTGOING;
2435 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002437
2438 if (ptype_list == &ptype_all) {
2439 ptype_list = &dev->ptype_all;
2440 goto again;
2441 }
2442out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002443 if (pt_prev) {
2444 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2445 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2446 else
2447 kfree_skb(skb2);
2448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 rcu_read_unlock();
2450}
David Ahern74b20582016-05-10 11:19:50 -07002451EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Ben Hutchings2c530402012-07-10 10:55:09 +00002453/**
2454 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002455 * @dev: Network device
2456 * @txq: number of queues available
2457 *
2458 * If real_num_tx_queues is changed the tc mappings may no longer be
2459 * valid. To resolve this verify the tc mapping remains valid and if
2460 * not NULL the mapping. With no priorities mapping to this
2461 * offset/count pair it will no longer be used. In the worst case TC0
2462 * is invalid nothing can be done so disable priority mappings. If is
2463 * expected that drivers will fix this mapping if they can before
2464 * calling netif_set_real_num_tx_queues.
2465 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002466static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002467{
2468 int i;
2469 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2470
2471 /* If TC0 is invalidated disable TC mapping */
2472 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002473 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002474 dev->num_tc = 0;
2475 return;
2476 }
2477
2478 /* Invalidated prio to tc mappings set to TC0 */
2479 for (i = 1; i < TC_BITMASK + 1; i++) {
2480 int q = netdev_get_prio_tc_map(dev, i);
2481
2482 tc = &dev->tc_to_txq[q];
2483 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002484 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2485 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002486 netdev_set_prio_tc_map(dev, i, 0);
2487 }
2488 }
2489}
2490
Alexander Duyck8d059b02016-10-28 11:43:49 -04002491int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2492{
2493 if (dev->num_tc) {
2494 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2495 int i;
2496
Alexander Duyckffcfe252018-07-09 12:19:38 -04002497 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002498 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2499 if ((txq - tc->offset) < tc->count)
2500 return i;
2501 }
2502
Alexander Duyckffcfe252018-07-09 12:19:38 -04002503 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002504 return -1;
2505 }
2506
2507 return 0;
2508}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002509EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002510
Alexander Duyck537c00d2013-01-10 08:57:02 +00002511#ifdef CONFIG_XPS
Vladimir Oltean5da9ace32021-03-22 13:30:19 +02002512static struct static_key xps_needed __read_mostly;
2513static struct static_key xps_rxqs_needed __read_mostly;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002514static DEFINE_MUTEX(xps_map_mutex);
2515#define xmap_dereference(P) \
2516 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2517
Alexander Duyck6234f872016-10-28 11:46:49 -04002518static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002519 struct xps_dev_maps *old_maps, int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002520{
2521 struct xps_map *map = NULL;
2522 int pos;
2523
2524 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002525 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002526 if (!map)
2527 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002528
Alexander Duyck6234f872016-10-28 11:46:49 -04002529 for (pos = map->len; pos--;) {
2530 if (map->queues[pos] != index)
2531 continue;
2532
2533 if (map->len > 1) {
2534 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002535 break;
2536 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002537
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002538 if (old_maps)
2539 RCU_INIT_POINTER(old_maps->attr_map[tci], NULL);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002540 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002541 kfree_rcu(map, rcu);
2542 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002543 }
2544
Alexander Duyck6234f872016-10-28 11:46:49 -04002545 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002546}
2547
Alexander Duyck6234f872016-10-28 11:46:49 -04002548static bool remove_xps_queue_cpu(struct net_device *dev,
2549 struct xps_dev_maps *dev_maps,
2550 int cpu, u16 offset, u16 count)
2551{
Antoine Tenart255c04a2021-03-18 19:37:43 +01002552 int num_tc = dev_maps->num_tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002553 bool active = false;
2554 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002555
Alexander Duyck184c4492016-10-28 11:50:13 -04002556 for (tci = cpu * num_tc; num_tc--; tci++) {
2557 int i, j;
2558
2559 for (i = count, j = offset; i--; j++) {
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002560 if (!remove_xps_queue(dev_maps, NULL, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002561 break;
2562 }
2563
2564 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002565 }
2566
Alexander Duyck184c4492016-10-28 11:50:13 -04002567 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002568}
2569
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002570static void reset_xps_maps(struct net_device *dev,
2571 struct xps_dev_maps *dev_maps,
Antoine Tenart044ab862021-03-18 19:37:46 +01002572 enum xps_map_type type)
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002573{
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002574 static_key_slow_dec_cpuslocked(&xps_needed);
Antoine Tenart044ab862021-03-18 19:37:46 +01002575 if (type == XPS_RXQS)
2576 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2577
2578 RCU_INIT_POINTER(dev->xps_maps[type], NULL);
2579
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002580 kfree_rcu(dev_maps, rcu);
2581}
2582
Antoine Tenart044ab862021-03-18 19:37:46 +01002583static void clean_xps_maps(struct net_device *dev, enum xps_map_type type,
2584 u16 offset, u16 count)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002585{
Antoine Tenart044ab862021-03-18 19:37:46 +01002586 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002587 bool active = false;
2588 int i, j;
2589
Antoine Tenart044ab862021-03-18 19:37:46 +01002590 dev_maps = xmap_dereference(dev->xps_maps[type]);
2591 if (!dev_maps)
2592 return;
2593
Antoine Tenart6f361582021-03-18 19:37:45 +01002594 for (j = 0; j < dev_maps->nr_ids; j++)
2595 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset, count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002596 if (!active)
Antoine Tenart044ab862021-03-18 19:37:46 +01002597 reset_xps_maps(dev, dev_maps, type);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002598
Antoine Tenart044ab862021-03-18 19:37:46 +01002599 if (type == XPS_CPUS) {
Antoine Tenart6f361582021-03-18 19:37:45 +01002600 for (i = offset + (count - 1); count--; i--)
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002601 netdev_queue_numa_node_write(
Antoine Tenart6f361582021-03-18 19:37:45 +01002602 netdev_get_tx_queue(dev, i), NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002603 }
2604}
2605
Alexander Duyck6234f872016-10-28 11:46:49 -04002606static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2607 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002608{
Amritha Nambiar04157462018-06-29 21:26:46 -07002609 if (!static_key_false(&xps_needed))
2610 return;
2611
Andrei Vagin4d99f662018-08-08 20:07:35 -07002612 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002613 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002614
Antoine Tenart044ab862021-03-18 19:37:46 +01002615 if (static_key_false(&xps_rxqs_needed))
2616 clean_xps_maps(dev, XPS_RXQS, offset, count);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002617
Antoine Tenart044ab862021-03-18 19:37:46 +01002618 clean_xps_maps(dev, XPS_CPUS, offset, count);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002619
Alexander Duyck537c00d2013-01-10 08:57:02 +00002620 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002621 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002622}
2623
Alexander Duyck6234f872016-10-28 11:46:49 -04002624static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2625{
2626 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2627}
2628
Amritha Nambiar80d19662018-06-29 21:26:41 -07002629static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2630 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002631{
2632 struct xps_map *new_map;
2633 int alloc_len = XPS_MIN_MAP_ALLOC;
2634 int i, pos;
2635
2636 for (pos = 0; map && pos < map->len; pos++) {
2637 if (map->queues[pos] != index)
2638 continue;
2639 return map;
2640 }
2641
Amritha Nambiar80d19662018-06-29 21:26:41 -07002642 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002643 if (map) {
2644 if (pos < map->alloc_len)
2645 return map;
2646
2647 alloc_len = map->alloc_len * 2;
2648 }
2649
Amritha Nambiar80d19662018-06-29 21:26:41 -07002650 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2651 * map
2652 */
2653 if (is_rxqs_map)
2654 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2655 else
2656 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2657 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002658 if (!new_map)
2659 return NULL;
2660
2661 for (i = 0; i < pos; i++)
2662 new_map->queues[i] = map->queues[i];
2663 new_map->alloc_len = alloc_len;
2664 new_map->len = pos;
2665
2666 return new_map;
2667}
2668
Antoine Tenart402fbb92021-03-18 19:37:47 +01002669/* Copy xps maps at a given index */
2670static void xps_copy_dev_maps(struct xps_dev_maps *dev_maps,
2671 struct xps_dev_maps *new_dev_maps, int index,
2672 int tc, bool skip_tc)
2673{
2674 int i, tci = index * dev_maps->num_tc;
2675 struct xps_map *map;
2676
2677 /* copy maps belonging to foreign traffic classes */
2678 for (i = 0; i < dev_maps->num_tc; i++, tci++) {
2679 if (i == tc && skip_tc)
2680 continue;
2681
2682 /* fill in the new device map from the old device map */
2683 map = xmap_dereference(dev_maps->attr_map[tci]);
2684 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
2685 }
2686}
2687
Andrei Vagin4d99f662018-08-08 20:07:35 -07002688/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002689int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
Antoine Tenart044ab862021-03-18 19:37:46 +01002690 u16 index, enum xps_map_type type)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002691{
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002692 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL, *old_dev_maps = NULL;
Antoine Tenart6f361582021-03-18 19:37:45 +01002693 const unsigned long *online_mask = NULL;
Antoine Tenart255c04a2021-03-18 19:37:43 +01002694 bool active = false, copy = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002695 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002696 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002697 struct xps_map *map, *new_map;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002698 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002699
Alexander Duyck184c4492016-10-28 11:50:13 -04002700 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002701 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002702 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002703 if (num_tc < 0)
2704 return -EINVAL;
2705
2706 /* If queue belongs to subordinate dev use its map */
2707 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2708
Alexander Duyck184c4492016-10-28 11:50:13 -04002709 tc = netdev_txq_to_tc(dev, index);
2710 if (tc < 0)
2711 return -EINVAL;
2712 }
2713
Amritha Nambiar80d19662018-06-29 21:26:41 -07002714 mutex_lock(&xps_map_mutex);
Antoine Tenart044ab862021-03-18 19:37:46 +01002715
2716 dev_maps = xmap_dereference(dev->xps_maps[type]);
2717 if (type == XPS_RXQS) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002718 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002719 nr_ids = dev->num_rx_queues;
2720 } else {
2721 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
Antoine Tenart6f361582021-03-18 19:37:45 +01002722 if (num_possible_cpus() > 1)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002723 online_mask = cpumask_bits(cpu_online_mask);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002724 nr_ids = nr_cpu_ids;
2725 }
2726
Alexander Duyck184c4492016-10-28 11:50:13 -04002727 if (maps_sz < L1_CACHE_BYTES)
2728 maps_sz = L1_CACHE_BYTES;
2729
Antoine Tenart255c04a2021-03-18 19:37:43 +01002730 /* The old dev_maps could be larger or smaller than the one we're
Antoine Tenart5478fcd2021-03-18 19:37:44 +01002731 * setting up now, as dev->num_tc or nr_ids could have been updated in
2732 * between. We could try to be smart, but let's be safe instead and only
2733 * copy foreign traffic classes if the two map sizes match.
Antoine Tenart255c04a2021-03-18 19:37:43 +01002734 */
Antoine Tenart5478fcd2021-03-18 19:37:44 +01002735 if (dev_maps &&
2736 dev_maps->num_tc == num_tc && dev_maps->nr_ids == nr_ids)
Antoine Tenart255c04a2021-03-18 19:37:43 +01002737 copy = true;
2738
Alexander Duyck01c5f862013-01-10 08:57:35 +00002739 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002740 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2741 j < nr_ids;) {
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002742 if (!new_dev_maps) {
Antoine Tenart255c04a2021-03-18 19:37:43 +01002743 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
2744 if (!new_dev_maps) {
2745 mutex_unlock(&xps_map_mutex);
2746 return -ENOMEM;
2747 }
2748
Antoine Tenart5478fcd2021-03-18 19:37:44 +01002749 new_dev_maps->nr_ids = nr_ids;
Antoine Tenart255c04a2021-03-18 19:37:43 +01002750 new_dev_maps->num_tc = num_tc;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002751 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002752
Amritha Nambiar80d19662018-06-29 21:26:41 -07002753 tci = j * num_tc + tc;
Antoine Tenart255c04a2021-03-18 19:37:43 +01002754 map = copy ? xmap_dereference(dev_maps->attr_map[tci]) : NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002755
Antoine Tenart044ab862021-03-18 19:37:46 +01002756 map = expand_xps_map(map, j, index, type == XPS_RXQS);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002757 if (!map)
2758 goto error;
2759
Amritha Nambiar80d19662018-06-29 21:26:41 -07002760 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002761 }
2762
2763 if (!new_dev_maps)
2764 goto out_no_new_maps;
2765
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002766 if (!dev_maps) {
2767 /* Increment static keys at most once per type */
2768 static_key_slow_inc_cpuslocked(&xps_needed);
Antoine Tenart044ab862021-03-18 19:37:46 +01002769 if (type == XPS_RXQS)
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002770 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2771 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002772
Antoine Tenart6f361582021-03-18 19:37:45 +01002773 for (j = 0; j < nr_ids; j++) {
Antoine Tenart402fbb92021-03-18 19:37:47 +01002774 bool skip_tc = false;
Alexander Duyck184c4492016-10-28 11:50:13 -04002775
Amritha Nambiar80d19662018-06-29 21:26:41 -07002776 tci = j * num_tc + tc;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002777 if (netif_attr_test_mask(j, mask, nr_ids) &&
2778 netif_attr_test_online(j, online_mask, nr_ids)) {
2779 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002780 int pos = 0;
2781
Antoine Tenart402fbb92021-03-18 19:37:47 +01002782 skip_tc = true;
2783
Amritha Nambiar80d19662018-06-29 21:26:41 -07002784 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002785 while ((pos < map->len) && (map->queues[pos] != index))
2786 pos++;
2787
2788 if (pos == map->len)
2789 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002790#ifdef CONFIG_NUMA
Antoine Tenart044ab862021-03-18 19:37:46 +01002791 if (type == XPS_CPUS) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002792 if (numa_node_id == -2)
2793 numa_node_id = cpu_to_node(j);
2794 else if (numa_node_id != cpu_to_node(j))
2795 numa_node_id = -1;
2796 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002797#endif
Alexander Duyck537c00d2013-01-10 08:57:02 +00002798 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002799
Antoine Tenart402fbb92021-03-18 19:37:47 +01002800 if (copy)
2801 xps_copy_dev_maps(dev_maps, new_dev_maps, j, tc,
2802 skip_tc);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002803 }
2804
Antoine Tenart044ab862021-03-18 19:37:46 +01002805 rcu_assign_pointer(dev->xps_maps[type], new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002806
Alexander Duyck537c00d2013-01-10 08:57:02 +00002807 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002808 if (!dev_maps)
2809 goto out_no_old_maps;
2810
Antoine Tenart6f361582021-03-18 19:37:45 +01002811 for (j = 0; j < dev_maps->nr_ids; j++) {
Antoine Tenart255c04a2021-03-18 19:37:43 +01002812 for (i = num_tc, tci = j * dev_maps->num_tc; i--; tci++) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002813 map = xmap_dereference(dev_maps->attr_map[tci]);
Antoine Tenart255c04a2021-03-18 19:37:43 +01002814 if (!map)
2815 continue;
2816
2817 if (copy) {
2818 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2819 if (map == new_map)
2820 continue;
2821 }
2822
Antoine Tenart75b27582021-03-18 19:37:52 +01002823 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Antoine Tenart255c04a2021-03-18 19:37:43 +01002824 kfree_rcu(map, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002825 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002826 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002827
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002828 old_dev_maps = dev_maps;
Alexander Duyck184c4492016-10-28 11:50:13 -04002829
2830out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002831 dev_maps = new_dev_maps;
2832 active = true;
2833
2834out_no_new_maps:
Antoine Tenart044ab862021-03-18 19:37:46 +01002835 if (type == XPS_CPUS)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002836 /* update Tx queue numa node */
2837 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2838 (numa_node_id >= 0) ?
2839 numa_node_id : NUMA_NO_NODE);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002840
Alexander Duyck01c5f862013-01-10 08:57:35 +00002841 if (!dev_maps)
2842 goto out_no_maps;
2843
Amritha Nambiar80d19662018-06-29 21:26:41 -07002844 /* removes tx-queue from unused CPUs/rx-queues */
Antoine Tenart6f361582021-03-18 19:37:45 +01002845 for (j = 0; j < dev_maps->nr_ids; j++) {
Antoine Tenart132f7432021-03-18 19:37:48 +01002846 tci = j * dev_maps->num_tc;
2847
2848 for (i = 0; i < dev_maps->num_tc; i++, tci++) {
2849 if (i == tc &&
2850 netif_attr_test_mask(j, mask, dev_maps->nr_ids) &&
2851 netif_attr_test_online(j, online_mask, dev_maps->nr_ids))
2852 continue;
2853
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002854 active |= remove_xps_queue(dev_maps,
2855 copy ? old_dev_maps : NULL,
2856 tci, index);
Antoine Tenart132f7432021-03-18 19:37:48 +01002857 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002858 }
2859
Antoine Tenart2d05bf02021-03-18 19:37:51 +01002860 if (old_dev_maps)
2861 kfree_rcu(old_dev_maps, rcu);
2862
Alexander Duyck01c5f862013-01-10 08:57:35 +00002863 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002864 if (!active)
Antoine Tenart044ab862021-03-18 19:37:46 +01002865 reset_xps_maps(dev, dev_maps, type);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002866
2867out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002868 mutex_unlock(&xps_map_mutex);
2869
2870 return 0;
2871error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002872 /* remove any maps that we added */
Antoine Tenart6f361582021-03-18 19:37:45 +01002873 for (j = 0; j < nr_ids; j++) {
Amritha Nambiar80d19662018-06-29 21:26:41 -07002874 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2875 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Antoine Tenart255c04a2021-03-18 19:37:43 +01002876 map = copy ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002877 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002878 NULL;
2879 if (new_map && new_map != map)
2880 kfree(new_map);
2881 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002882 }
2883
Alexander Duyck537c00d2013-01-10 08:57:02 +00002884 mutex_unlock(&xps_map_mutex);
2885
Alexander Duyck537c00d2013-01-10 08:57:02 +00002886 kfree(new_dev_maps);
2887 return -ENOMEM;
2888}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002889EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002890
2891int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2892 u16 index)
2893{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002894 int ret;
2895
2896 cpus_read_lock();
Antoine Tenart044ab862021-03-18 19:37:46 +01002897 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, XPS_CPUS);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002898 cpus_read_unlock();
2899
2900 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002901}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002902EXPORT_SYMBOL(netif_set_xps_queue);
2903
2904#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002905static void netdev_unbind_all_sb_channels(struct net_device *dev)
2906{
2907 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2908
2909 /* Unbind any subordinate channels */
2910 while (txq-- != &dev->_tx[0]) {
2911 if (txq->sb_dev)
2912 netdev_unbind_sb_channel(dev, txq->sb_dev);
2913 }
2914}
2915
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002916void netdev_reset_tc(struct net_device *dev)
2917{
Alexander Duyck6234f872016-10-28 11:46:49 -04002918#ifdef CONFIG_XPS
2919 netif_reset_xps_queues_gt(dev, 0);
2920#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002921 netdev_unbind_all_sb_channels(dev);
2922
2923 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002924 dev->num_tc = 0;
2925 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2926 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2927}
2928EXPORT_SYMBOL(netdev_reset_tc);
2929
2930int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2931{
2932 if (tc >= dev->num_tc)
2933 return -EINVAL;
2934
Alexander Duyck6234f872016-10-28 11:46:49 -04002935#ifdef CONFIG_XPS
2936 netif_reset_xps_queues(dev, offset, count);
2937#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002938 dev->tc_to_txq[tc].count = count;
2939 dev->tc_to_txq[tc].offset = offset;
2940 return 0;
2941}
2942EXPORT_SYMBOL(netdev_set_tc_queue);
2943
2944int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2945{
2946 if (num_tc > TC_MAX_QUEUE)
2947 return -EINVAL;
2948
Alexander Duyck6234f872016-10-28 11:46:49 -04002949#ifdef CONFIG_XPS
2950 netif_reset_xps_queues_gt(dev, 0);
2951#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002952 netdev_unbind_all_sb_channels(dev);
2953
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002954 dev->num_tc = num_tc;
2955 return 0;
2956}
2957EXPORT_SYMBOL(netdev_set_num_tc);
2958
Alexander Duyckffcfe252018-07-09 12:19:38 -04002959void netdev_unbind_sb_channel(struct net_device *dev,
2960 struct net_device *sb_dev)
2961{
2962 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2963
2964#ifdef CONFIG_XPS
2965 netif_reset_xps_queues_gt(sb_dev, 0);
2966#endif
2967 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2968 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2969
2970 while (txq-- != &dev->_tx[0]) {
2971 if (txq->sb_dev == sb_dev)
2972 txq->sb_dev = NULL;
2973 }
2974}
2975EXPORT_SYMBOL(netdev_unbind_sb_channel);
2976
2977int netdev_bind_sb_channel_queue(struct net_device *dev,
2978 struct net_device *sb_dev,
2979 u8 tc, u16 count, u16 offset)
2980{
2981 /* Make certain the sb_dev and dev are already configured */
2982 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2983 return -EINVAL;
2984
2985 /* We cannot hand out queues we don't have */
2986 if ((offset + count) > dev->real_num_tx_queues)
2987 return -EINVAL;
2988
2989 /* Record the mapping */
2990 sb_dev->tc_to_txq[tc].count = count;
2991 sb_dev->tc_to_txq[tc].offset = offset;
2992
2993 /* Provide a way for Tx queue to find the tc_to_txq map or
2994 * XPS map for itself.
2995 */
2996 while (count--)
2997 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2998
2999 return 0;
3000}
3001EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
3002
3003int netdev_set_sb_channel(struct net_device *dev, u16 channel)
3004{
3005 /* Do not use a multiqueue device to represent a subordinate channel */
3006 if (netif_is_multiqueue(dev))
3007 return -ENODEV;
3008
3009 /* We allow channels 1 - 32767 to be used for subordinate channels.
3010 * Channel 0 is meant to be "native" mode and used only to represent
3011 * the main root device. We allow writing 0 to reset the device back
3012 * to normal mode after being used as a subordinate channel.
3013 */
3014 if (channel > S16_MAX)
3015 return -EINVAL;
3016
3017 dev->num_tc = -channel;
3018
3019 return 0;
3020}
3021EXPORT_SYMBOL(netdev_set_sb_channel);
3022
John Fastabendf0796d52010-07-01 13:21:57 +00003023/*
3024 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02003025 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00003026 */
Tom Herberte6484932010-10-18 18:04:39 +00003027int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00003028{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08003029 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00003030 int rc;
3031
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08003032 disabling = txq < dev->real_num_tx_queues;
3033
Tom Herberte6484932010-10-18 18:04:39 +00003034 if (txq < 1 || txq > dev->num_tx_queues)
3035 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00003036
Ben Hutchings5c565802011-02-15 19:39:21 +00003037 if (dev->reg_state == NETREG_REGISTERED ||
3038 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00003039 ASSERT_RTNL();
3040
Tom Herbert1d24eb42010-11-21 13:17:27 +00003041 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
3042 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00003043 if (rc)
3044 return rc;
3045
John Fastabend4f57c082011-01-17 08:06:04 +00003046 if (dev->num_tc)
3047 netif_setup_tc(dev, txq);
3048
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08003049 dev->real_num_tx_queues = txq;
3050
3051 if (disabling) {
3052 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00003053 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00003054#ifdef CONFIG_XPS
3055 netif_reset_xps_queues_gt(dev, txq);
3056#endif
3057 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08003058 } else {
3059 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00003060 }
Tom Herberte6484932010-10-18 18:04:39 +00003061
Tom Herberte6484932010-10-18 18:04:39 +00003062 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00003063}
3064EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08003065
Michael Daltona953be52014-01-16 22:23:28 -08003066#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003067/**
3068 * netif_set_real_num_rx_queues - set actual number of RX queues used
3069 * @dev: Network device
3070 * @rxq: Actual number of RX queues
3071 *
3072 * This must be called either with the rtnl_lock held or before
3073 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07003074 * negative error code. If called before registration, it always
3075 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003076 */
3077int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
3078{
3079 int rc;
3080
Tom Herbertbd25fa72010-10-18 18:00:16 +00003081 if (rxq < 1 || rxq > dev->num_rx_queues)
3082 return -EINVAL;
3083
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003084 if (dev->reg_state == NETREG_REGISTERED) {
3085 ASSERT_RTNL();
3086
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003087 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
3088 rxq);
3089 if (rc)
3090 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003091 }
3092
3093 dev->real_num_rx_queues = rxq;
3094 return 0;
3095}
3096EXPORT_SYMBOL(netif_set_real_num_rx_queues);
3097#endif
3098
Ben Hutchings2c530402012-07-10 10:55:09 +00003099/**
3100 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00003101 *
3102 * This routine should set an upper limit on the number of RSS queues
3103 * used by default by multiqueue devices.
3104 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00003105int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00003106{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05303107 return is_kdump_kernel() ?
3108 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00003109}
3110EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3111
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003112static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003113{
3114 struct softnet_data *sd;
3115 unsigned long flags;
3116
3117 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05003118 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00003119 q->next_sched = NULL;
3120 *sd->output_queue_tailp = q;
3121 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003122 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3123 local_irq_restore(flags);
3124}
3125
David S. Miller37437bb2008-07-16 02:15:04 -07003126void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08003127{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003128 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3129 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08003130}
3131EXPORT_SYMBOL(__netif_schedule);
3132
Eric Dumazete6247022013-12-05 04:45:08 -08003133struct dev_kfree_skb_cb {
3134 enum skb_free_reason reason;
3135};
3136
3137static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08003138{
Eric Dumazete6247022013-12-05 04:45:08 -08003139 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08003140}
Denis Vlasenko56079432006-03-29 15:57:29 -08003141
John Fastabend46e5da40a2014-09-12 20:04:52 -07003142void netif_schedule_queue(struct netdev_queue *txq)
3143{
3144 rcu_read_lock();
Julio Faracco5be55152019-10-01 11:39:04 -03003145 if (!netif_xmit_stopped(txq)) {
John Fastabend46e5da40a2014-09-12 20:04:52 -07003146 struct Qdisc *q = rcu_dereference(txq->qdisc);
3147
3148 __netif_schedule(q);
3149 }
3150 rcu_read_unlock();
3151}
3152EXPORT_SYMBOL(netif_schedule_queue);
3153
John Fastabend46e5da40a2014-09-12 20:04:52 -07003154void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3155{
3156 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3157 struct Qdisc *q;
3158
3159 rcu_read_lock();
3160 q = rcu_dereference(dev_queue->qdisc);
3161 __netif_schedule(q);
3162 rcu_read_unlock();
3163 }
3164}
3165EXPORT_SYMBOL(netif_tx_wake_queue);
3166
Eric Dumazete6247022013-12-05 04:45:08 -08003167void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
3168{
3169 unsigned long flags;
3170
Myungho Jung98998862017-04-25 11:58:15 -07003171 if (unlikely(!skb))
3172 return;
3173
Reshetova, Elena63354792017-06-30 13:07:58 +03003174 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08003175 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03003176 refcount_set(&skb->users, 0);
3177 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08003178 return;
3179 }
3180 get_kfree_skb_cb(skb)->reason = reason;
3181 local_irq_save(flags);
3182 skb->next = __this_cpu_read(softnet_data.completion_queue);
3183 __this_cpu_write(softnet_data.completion_queue, skb);
3184 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3185 local_irq_restore(flags);
3186}
3187EXPORT_SYMBOL(__dev_kfree_skb_irq);
3188
3189void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08003190{
3191 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08003192 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08003193 else
3194 dev_kfree_skb(skb);
3195}
Eric Dumazete6247022013-12-05 04:45:08 -08003196EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08003197
3198
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003199/**
3200 * netif_device_detach - mark device as removed
3201 * @dev: network device
3202 *
3203 * Mark device as removed from system and therefore no longer available.
3204 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003205void netif_device_detach(struct net_device *dev)
3206{
3207 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3208 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003209 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003210 }
3211}
3212EXPORT_SYMBOL(netif_device_detach);
3213
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003214/**
3215 * netif_device_attach - mark device as attached
3216 * @dev: network device
3217 *
3218 * Mark device as attached from system and restart if needed.
3219 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003220void netif_device_attach(struct net_device *dev)
3221{
3222 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3223 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003224 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003225 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003226 }
3227}
3228EXPORT_SYMBOL(netif_device_attach);
3229
Jiri Pirko5605c762015-05-12 14:56:12 +02003230/*
3231 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3232 * to be used as a distribution range.
3233 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003234static u16 skb_tx_hash(const struct net_device *dev,
3235 const struct net_device *sb_dev,
3236 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02003237{
3238 u32 hash;
3239 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003240 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02003241
Alexander Duyckeadec8772018-07-09 12:19:48 -04003242 if (dev->num_tc) {
3243 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3244
3245 qoffset = sb_dev->tc_to_txq[tc].offset;
3246 qcount = sb_dev->tc_to_txq[tc].count;
3247 }
3248
Jiri Pirko5605c762015-05-12 14:56:12 +02003249 if (skb_rx_queue_recorded(skb)) {
3250 hash = skb_get_rx_queue(skb);
Amritha Nambiar6e11d152020-02-24 10:56:00 -08003251 if (hash >= qoffset)
3252 hash -= qoffset;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003253 while (unlikely(hash >= qcount))
3254 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04003255 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02003256 }
3257
3258 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3259}
Jiri Pirko5605c762015-05-12 14:56:12 +02003260
Ben Hutchings36c92472012-01-17 07:57:56 +00003261static void skb_warn_bad_offload(const struct sk_buff *skb)
3262{
Wei Tang84d15ae2016-06-16 21:17:49 +08003263 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00003264 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01003265 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00003266
Ben Greearc846ad92013-04-19 10:45:52 +00003267 if (!net_ratelimit())
3268 return;
3269
Bjørn Mork88ad4172015-11-16 19:16:40 +01003270 if (dev) {
3271 if (dev->dev.parent)
3272 name = dev_driver_string(dev->dev.parent);
3273 else
3274 name = netdev_name(dev);
3275 }
Willem de Bruijn64131392019-07-07 05:51:55 -04003276 skb_dump(KERN_WARNING, skb, false);
3277 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01003278 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04003279 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00003280}
3281
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282/*
3283 * Invalidate hardware checksum when packet is to be mangled, and
3284 * complete checksum manually on outgoing path.
3285 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003286int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
Al Virod3bc23e2006-11-14 21:24:49 -08003288 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07003289 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Patrick McHardy84fa7932006-08-29 16:44:56 -07003291 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07003292 goto out_set_summed;
3293
Yi Li3aefd7d2020-10-27 13:59:04 +08003294 if (unlikely(skb_is_gso(skb))) {
Ben Hutchings36c92472012-01-17 07:57:56 +00003295 skb_warn_bad_offload(skb);
3296 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 }
3298
Eric Dumazetcef401d2013-01-25 20:34:37 +00003299 /* Before computing a checksum, we should make sure no frag could
3300 * be modified by an external entity : checksum could be wrong.
3301 */
3302 if (skb_has_shared_frag(skb)) {
3303 ret = __skb_linearize(skb);
3304 if (ret)
3305 goto out;
3306 }
3307
Michał Mirosław55508d62010-12-14 15:24:08 +00003308 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07003309 BUG_ON(offset >= skb_headlen(skb));
3310 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3311
3312 offset += skb->csum_offset;
3313 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3314
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003315 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3316 if (ret)
3317 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07003319 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07003320out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003322out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 return ret;
3324}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003325EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
Davide Carattib72b5bf2017-05-18 15:44:38 +02003327int skb_crc32c_csum_help(struct sk_buff *skb)
3328{
3329 __le32 crc32c_csum;
3330 int ret = 0, offset, start;
3331
3332 if (skb->ip_summed != CHECKSUM_PARTIAL)
3333 goto out;
3334
3335 if (unlikely(skb_is_gso(skb)))
3336 goto out;
3337
3338 /* Before computing a checksum, we should make sure no frag could
3339 * be modified by an external entity : checksum could be wrong.
3340 */
3341 if (unlikely(skb_has_shared_frag(skb))) {
3342 ret = __skb_linearize(skb);
3343 if (ret)
3344 goto out;
3345 }
3346 start = skb_checksum_start_offset(skb);
3347 offset = start + offsetof(struct sctphdr, checksum);
3348 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3349 ret = -EINVAL;
3350 goto out;
3351 }
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003352
3353 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3354 if (ret)
3355 goto out;
3356
Davide Carattib72b5bf2017-05-18 15:44:38 +02003357 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3358 skb->len - start, ~(__u32)0,
3359 crc32c_csum_stub));
3360 *(__le32 *)(skb->data + offset) = crc32c_csum;
3361 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02003362 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003363out:
3364 return ret;
3365}
3366
Vlad Yasevich53d64712014-03-27 17:26:18 -04003367__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003368{
3369 __be16 type = skb->protocol;
3370
Pravin B Shelar19acc322013-05-07 20:41:07 +00003371 /* Tunnel gso handlers can set protocol to ethernet. */
3372 if (type == htons(ETH_P_TEB)) {
3373 struct ethhdr *eth;
3374
3375 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3376 return 0;
3377
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003378 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003379 type = eth->h_proto;
3380 }
3381
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003382 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003383}
3384
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003385/**
3386 * skb_mac_gso_segment - mac layer segmentation handler.
3387 * @skb: buffer to segment
3388 * @features: features for the output path (see dev->features)
3389 */
3390struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3391 netdev_features_t features)
3392{
3393 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3394 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003395 int vlan_depth = skb->mac_len;
3396 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003397
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003398 if (unlikely(!type))
3399 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003400
Vlad Yasevich53d64712014-03-27 17:26:18 -04003401 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003402
3403 rcu_read_lock();
3404 list_for_each_entry_rcu(ptype, &offload_base, list) {
3405 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003406 segs = ptype->callbacks.gso_segment(skb, features);
3407 break;
3408 }
3409 }
3410 rcu_read_unlock();
3411
3412 __skb_push(skb, skb->data - skb_mac_header(skb));
3413
3414 return segs;
3415}
3416EXPORT_SYMBOL(skb_mac_gso_segment);
3417
3418
Cong Wang12b00042013-02-05 16:36:38 +00003419/* openvswitch calls this on rx path, so we need a different check.
3420 */
3421static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3422{
3423 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003424 return skb->ip_summed != CHECKSUM_PARTIAL &&
3425 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003426
3427 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003428}
3429
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003430/**
Cong Wang12b00042013-02-05 16:36:38 +00003431 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003432 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003433 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003434 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003435 *
3436 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003437 *
3438 * It may return NULL if the skb requires no segmentation. This is
3439 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003440 *
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003441 * Segmentation preserves SKB_GSO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003442 */
Cong Wang12b00042013-02-05 16:36:38 +00003443struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3444 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003445{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003446 struct sk_buff *segs;
3447
Cong Wang12b00042013-02-05 16:36:38 +00003448 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003449 int err;
3450
Eric Dumazetb2504a52017-01-31 10:20:32 -08003451 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003452 err = skb_cow_head(skb, 0);
3453 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003454 return ERR_PTR(err);
3455 }
3456
Alexander Duyck802ab552016-04-10 21:45:03 -04003457 /* Only report GSO partial support if it will enable us to
3458 * support segmentation on this frame without needing additional
3459 * work.
3460 */
3461 if (features & NETIF_F_GSO_PARTIAL) {
3462 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3463 struct net_device *dev = skb->dev;
3464
3465 partial_features |= dev->features & dev->gso_partial_features;
3466 if (!skb_gso_ok(skb, features | partial_features))
3467 features &= ~NETIF_F_GSO_PARTIAL;
3468 }
3469
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003470 BUILD_BUG_ON(SKB_GSO_CB_OFFSET +
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003471 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3472
Pravin B Shelar68c33162013-02-14 14:02:41 +00003473 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003474 SKB_GSO_CB(skb)->encap_level = 0;
3475
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003476 skb_reset_mac_header(skb);
3477 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003478
Eric Dumazetb2504a52017-01-31 10:20:32 -08003479 segs = skb_mac_gso_segment(skb, features);
3480
Steffen Klassert3a1296a2020-01-25 11:26:44 +01003481 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003482 skb_warn_bad_offload(skb);
3483
3484 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003485}
Cong Wang12b00042013-02-05 16:36:38 +00003486EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003487
Herbert Xufb286bb2005-11-10 13:01:24 -08003488/* Take action when hardware reception checksum errors are detected. */
3489#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003490void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003491{
3492 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003493 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Willem de Bruijn64131392019-07-07 05:51:55 -04003494 skb_dump(KERN_ERR, skb, true);
Herbert Xufb286bb2005-11-10 13:01:24 -08003495 dump_stack();
3496 }
3497}
3498EXPORT_SYMBOL(netdev_rx_csum_fault);
3499#endif
3500
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003501/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003502static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003504#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 int i;
tchardingf4563a72017-02-09 17:56:07 +11003506
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003507 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003508 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3509 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003510
Ian Campbellea2ab692011-08-22 23:44:58 +00003511 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003512 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003513 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003514 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003515#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 return 0;
3517}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Simon Horman3b392dd2014-06-04 08:53:17 +09003519/* If MPLS offload request, verify we are testing hardware MPLS features
3520 * instead of standard features for the netdev.
3521 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003522#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003523static netdev_features_t net_mpls_features(struct sk_buff *skb,
3524 netdev_features_t features,
3525 __be16 type)
3526{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003527 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003528 features &= skb->dev->mpls_features;
3529
3530 return features;
3531}
3532#else
3533static netdev_features_t net_mpls_features(struct sk_buff *skb,
3534 netdev_features_t features,
3535 __be16 type)
3536{
3537 return features;
3538}
3539#endif
3540
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003541static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003542 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003543{
Simon Horman3b392dd2014-06-04 08:53:17 +09003544 __be16 type;
3545
Miaohe Lin9fc95f52020-07-30 19:02:36 +08003546 type = skb_network_protocol(skb, NULL);
Simon Horman3b392dd2014-06-04 08:53:17 +09003547 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003548
Ed Cashinc0d680e2012-09-19 15:49:00 +00003549 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003550 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003551 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003552 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003553 if (illegal_highdma(skb->dev, skb))
3554 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003555
3556 return features;
3557}
3558
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003559netdev_features_t passthru_features_check(struct sk_buff *skb,
3560 struct net_device *dev,
3561 netdev_features_t features)
3562{
3563 return features;
3564}
3565EXPORT_SYMBOL(passthru_features_check);
3566
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003567static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003568 struct net_device *dev,
3569 netdev_features_t features)
3570{
3571 return vlan_features_check(skb, features);
3572}
3573
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003574static netdev_features_t gso_features_check(const struct sk_buff *skb,
3575 struct net_device *dev,
3576 netdev_features_t features)
3577{
3578 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3579
3580 if (gso_segs > dev->gso_max_segs)
3581 return features & ~NETIF_F_GSO_MASK;
3582
Heiner Kallweit1d155df2020-11-21 00:22:20 +01003583 if (!skb_shinfo(skb)->gso_type) {
3584 skb_warn_bad_offload(skb);
3585 return features & ~NETIF_F_GSO_MASK;
3586 }
3587
Alexander Duyck802ab552016-04-10 21:45:03 -04003588 /* Support for GSO partial features requires software
3589 * intervention before we can actually process the packets
3590 * so we need to strip support for any partial features now
3591 * and we can pull them back in after we have partially
3592 * segmented the frame.
3593 */
3594 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3595 features &= ~dev->gso_partial_features;
3596
3597 /* Make sure to clear the IPv4 ID mangling feature if the
3598 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003599 */
3600 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3601 struct iphdr *iph = skb->encapsulation ?
3602 inner_ip_hdr(skb) : ip_hdr(skb);
3603
3604 if (!(iph->frag_off & htons(IP_DF)))
3605 features &= ~NETIF_F_TSO_MANGLEID;
3606 }
3607
3608 return features;
3609}
3610
Florian Westphalc1e756b2014-05-05 15:00:44 +02003611netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003612{
Jesse Gross5f352272014-12-23 22:37:26 -08003613 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003614 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003615
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003616 if (skb_is_gso(skb))
3617 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003618
Jesse Gross5f352272014-12-23 22:37:26 -08003619 /* If encapsulation offload request, verify we are testing
3620 * hardware encapsulation features instead of standard
3621 * features for the netdev
3622 */
3623 if (skb->encapsulation)
3624 features &= dev->hw_enc_features;
3625
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003626 if (skb_vlan_tagged(skb))
3627 features = netdev_intersect_features(features,
3628 dev->vlan_features |
3629 NETIF_F_HW_VLAN_CTAG_TX |
3630 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003631
Jesse Gross5f352272014-12-23 22:37:26 -08003632 if (dev->netdev_ops->ndo_features_check)
3633 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3634 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003635 else
3636 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003637
Florian Westphalc1e756b2014-05-05 15:00:44 +02003638 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003639}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003640EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003641
David S. Miller2ea25512014-08-29 21:10:01 -07003642static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003643 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003644{
David S. Miller2ea25512014-08-29 21:10:01 -07003645 unsigned int len;
3646 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003647
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003648 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003649 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003650
David S. Miller2ea25512014-08-29 21:10:01 -07003651 len = skb->len;
Willy Tarreau37447412020-08-10 10:27:42 +02003652 PRANDOM_ADD_NOISE(skb, dev, txq, len + jiffies);
David S. Miller2ea25512014-08-29 21:10:01 -07003653 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003654 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003655 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003656
Patrick McHardy572a9d72009-11-10 06:14:14 +00003657 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003658}
David S. Miller2ea25512014-08-29 21:10:01 -07003659
David S. Miller8dcda222014-09-01 15:06:40 -07003660struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3661 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003662{
3663 struct sk_buff *skb = first;
3664 int rc = NETDEV_TX_OK;
3665
3666 while (skb) {
3667 struct sk_buff *next = skb->next;
3668
David S. Millera8305bf2018-07-29 20:42:53 -07003669 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003670 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003671 if (unlikely(!dev_xmit_complete(rc))) {
3672 skb->next = next;
3673 goto out;
3674 }
3675
3676 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003677 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003678 rc = NETDEV_TX_BUSY;
3679 break;
3680 }
3681 }
3682
3683out:
3684 *ret = rc;
3685 return skb;
3686}
3687
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003688static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3689 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003690{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003691 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003692 !vlan_hw_offload_capable(features, skb->vlan_proto))
3693 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003694 return skb;
3695}
3696
Davide Caratti43c26a12017-05-18 15:44:41 +02003697int skb_csum_hwoffload_help(struct sk_buff *skb,
3698 const netdev_features_t features)
3699{
Xin Longfa821172021-01-16 14:13:37 +08003700 if (unlikely(skb_csum_is_sctp(skb)))
Davide Caratti43c26a12017-05-18 15:44:41 +02003701 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3702 skb_crc32c_csum_help(skb);
3703
Xin Long62fafcd2021-01-28 17:18:31 +08003704 if (features & NETIF_F_HW_CSUM)
3705 return 0;
3706
3707 if (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
3708 switch (skb->csum_offset) {
3709 case offsetof(struct tcphdr, check):
3710 case offsetof(struct udphdr, check):
3711 return 0;
3712 }
3713 }
3714
3715 return skb_checksum_help(skb);
Davide Caratti43c26a12017-05-18 15:44:41 +02003716}
3717EXPORT_SYMBOL(skb_csum_hwoffload_help);
3718
Steffen Klassertf53c7232017-12-20 10:41:36 +01003719static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003720{
3721 netdev_features_t features;
3722
David S. Millereae3f882014-08-30 15:17:13 -07003723 features = netif_skb_features(skb);
3724 skb = validate_xmit_vlan(skb, features);
3725 if (unlikely(!skb))
3726 goto out_null;
3727
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003728 skb = sk_validate_xmit_skb(skb, dev);
3729 if (unlikely(!skb))
3730 goto out_null;
3731
Johannes Berg8b86a612015-04-17 15:45:04 +02003732 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003733 struct sk_buff *segs;
3734
3735 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003736 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003737 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003738 } else if (segs) {
3739 consume_skb(skb);
3740 skb = segs;
3741 }
David S. Millereae3f882014-08-30 15:17:13 -07003742 } else {
3743 if (skb_needs_linearize(skb, features) &&
3744 __skb_linearize(skb))
3745 goto out_kfree_skb;
3746
3747 /* If packet is not checksummed and device does not
3748 * support checksumming for this protocol, complete
3749 * checksumming here.
3750 */
3751 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3752 if (skb->encapsulation)
3753 skb_set_inner_transport_header(skb,
3754 skb_checksum_start_offset(skb));
3755 else
3756 skb_set_transport_header(skb,
3757 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003758 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003759 goto out_kfree_skb;
3760 }
3761 }
3762
Steffen Klassertf53c7232017-12-20 10:41:36 +01003763 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003764
David S. Millereae3f882014-08-30 15:17:13 -07003765 return skb;
3766
3767out_kfree_skb:
3768 kfree_skb(skb);
3769out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003770 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003771 return NULL;
3772}
3773
Steffen Klassertf53c7232017-12-20 10:41:36 +01003774struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003775{
3776 struct sk_buff *next, *head = NULL, *tail;
3777
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003778 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003779 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003780 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003781
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003782 /* in case skb wont be segmented, point to itself */
3783 skb->prev = skb;
3784
Steffen Klassertf53c7232017-12-20 10:41:36 +01003785 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003786 if (!skb)
3787 continue;
3788
3789 if (!head)
3790 head = skb;
3791 else
3792 tail->next = skb;
3793 /* If skb was segmented, skb->prev points to
3794 * the last segment. If not, it still contains skb.
3795 */
3796 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003797 }
3798 return head;
3799}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003800EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003801
Eric Dumazet1def9232013-01-10 12:36:42 +00003802static void qdisc_pkt_len_init(struct sk_buff *skb)
3803{
3804 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3805
3806 qdisc_skb_cb(skb)->pkt_len = skb->len;
3807
3808 /* To get more precise estimation of bytes sent on wire,
3809 * we add to pkt_len the headers size of all segments
3810 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003811 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003812 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003813 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003814
Eric Dumazet757b8b12013-01-15 21:14:21 -08003815 /* mac layer + network layer */
3816 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3817
3818 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003819 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3820 const struct tcphdr *th;
3821 struct tcphdr _tcphdr;
3822
3823 th = skb_header_pointer(skb, skb_transport_offset(skb),
3824 sizeof(_tcphdr), &_tcphdr);
3825 if (likely(th))
3826 hdr_len += __tcp_hdrlen(th);
3827 } else {
3828 struct udphdr _udphdr;
3829
3830 if (skb_header_pointer(skb, skb_transport_offset(skb),
3831 sizeof(_udphdr), &_udphdr))
3832 hdr_len += sizeof(struct udphdr);
3833 }
Jason Wang15e5a032013-03-25 20:19:59 +00003834
3835 if (shinfo->gso_type & SKB_GSO_DODGY)
3836 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3837 shinfo->gso_size);
3838
3839 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003840 }
3841}
3842
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003843static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3844 struct net_device *dev,
3845 struct netdev_queue *txq)
3846{
3847 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003848 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003849 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003850 int rc;
3851
Eric Dumazeta2da5702011-01-20 03:48:19 +00003852 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003853
3854 if (q->flags & TCQ_F_NOLOCK) {
Petr Machataac5c66f2020-07-14 20:03:08 +03003855 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Yunsheng Lindcad9ee2021-05-14 11:17:01 +08003856 if (likely(!netif_xmit_frozen_or_stopped(txq)))
3857 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003858
3859 if (unlikely(to_free))
3860 kfree_skb_list(to_free);
3861 return rc;
3862 }
3863
Eric Dumazet79640a42010-06-02 05:09:29 -07003864 /*
3865 * Heuristic to force contended enqueues to serialize on a
3866 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003867 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003868 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003869 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003870 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003871 if (unlikely(contended))
3872 spin_lock(&q->busylock);
3873
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003874 spin_lock(root_lock);
3875 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003876 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003877 rc = NET_XMIT_DROP;
3878 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003879 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003880 /*
3881 * This is a work-conserving queue; there are no old skbs
3882 * waiting to be sent out; and the qdisc is not running -
3883 * xmit the skb directly.
3884 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003885
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003886 qdisc_bstats_update(q, skb);
3887
Eric Dumazet55a93b32014-10-03 15:31:07 -07003888 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003889 if (unlikely(contended)) {
3890 spin_unlock(&q->busylock);
3891 contended = false;
3892 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003893 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003894 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003895
John Fastabend6c148182017-12-07 09:54:06 -08003896 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003897 rc = NET_XMIT_SUCCESS;
3898 } else {
Petr Machataac5c66f2020-07-14 20:03:08 +03003899 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003900 if (qdisc_run_begin(q)) {
3901 if (unlikely(contended)) {
3902 spin_unlock(&q->busylock);
3903 contended = false;
3904 }
3905 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003906 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003907 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003908 }
3909 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003910 if (unlikely(to_free))
3911 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003912 if (unlikely(contended))
3913 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003914 return rc;
3915}
3916
Daniel Borkmann86f85152013-12-29 17:27:11 +01003917#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003918static void skb_update_prio(struct sk_buff *skb)
3919{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003920 const struct netprio_map *map;
3921 const struct sock *sk;
3922 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003923
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003924 if (skb->priority)
3925 return;
3926 map = rcu_dereference_bh(skb->dev->priomap);
3927 if (!map)
3928 return;
3929 sk = skb_to_full_sk(skb);
3930 if (!sk)
3931 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003932
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003933 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3934
3935 if (prioidx < map->priomap_len)
3936 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003937}
3938#else
3939#define skb_update_prio(skb)
3940#endif
3941
Dave Jonesd29f7492008-07-22 14:09:06 -07003942/**
Michel Machado95603e22012-06-12 10:16:35 +00003943 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003944 * @net: network namespace this loopback is happening in
3945 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003946 * @skb: buffer to transmit
3947 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003948int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003949{
3950 skb_reset_mac_header(skb);
3951 __skb_pull(skb, skb_network_offset(skb));
3952 skb->pkt_type = PACKET_LOOPBACK;
3953 skb->ip_summed = CHECKSUM_UNNECESSARY;
3954 WARN_ON(!skb_dst(skb));
3955 skb_dst_force(skb);
3956 netif_rx_ni(skb);
3957 return 0;
3958}
3959EXPORT_SYMBOL(dev_loopback_xmit);
3960
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003961#ifdef CONFIG_NET_EGRESS
3962static struct sk_buff *
3963sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3964{
Jiri Pirko46209402017-11-03 11:46:25 +01003965 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003966 struct tcf_result cl_res;
3967
Jiri Pirko46209402017-11-03 11:46:25 +01003968 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003969 return skb;
3970
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003971 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
wenxuaadaca92020-11-25 12:01:21 +08003972 qdisc_skb_cb(skb)->mru = 0;
wenxu7baf2422021-01-19 16:31:50 +08003973 qdisc_skb_cb(skb)->post_ct = false;
Jiri Pirko46209402017-11-03 11:46:25 +01003974 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003975
Jiri Pirko46209402017-11-03 11:46:25 +01003976 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003977 case TC_ACT_OK:
3978 case TC_ACT_RECLASSIFY:
3979 skb->tc_index = TC_H_MIN(cl_res.classid);
3980 break;
3981 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003982 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003983 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003984 kfree_skb(skb);
3985 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003986 case TC_ACT_STOLEN:
3987 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003988 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003989 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003990 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003991 return NULL;
3992 case TC_ACT_REDIRECT:
3993 /* No need to push/pop skb's mac_header here on egress! */
3994 skb_do_redirect(skb);
3995 *ret = NET_XMIT_SUCCESS;
3996 return NULL;
3997 default:
3998 break;
3999 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004000
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004001 return skb;
4002}
4003#endif /* CONFIG_NET_EGRESS */
4004
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004005#ifdef CONFIG_XPS
4006static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
4007 struct xps_dev_maps *dev_maps, unsigned int tci)
4008{
Antoine Tenart255c04a2021-03-18 19:37:43 +01004009 int tc = netdev_get_prio_tc_map(dev, skb->priority);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004010 struct xps_map *map;
4011 int queue_index = -1;
4012
Antoine Tenart5478fcd2021-03-18 19:37:44 +01004013 if (tc >= dev_maps->num_tc || tci >= dev_maps->nr_ids)
Antoine Tenart255c04a2021-03-18 19:37:43 +01004014 return queue_index;
4015
4016 tci *= dev_maps->num_tc;
4017 tci += tc;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004018
4019 map = rcu_dereference(dev_maps->attr_map[tci]);
4020 if (map) {
4021 if (map->len == 1)
4022 queue_index = map->queues[0];
4023 else
4024 queue_index = map->queues[reciprocal_scale(
4025 skb_get_hash(skb), map->len)];
4026 if (unlikely(queue_index >= dev->real_num_tx_queues))
4027 queue_index = -1;
4028 }
4029 return queue_index;
4030}
4031#endif
4032
Alexander Duyckeadec8772018-07-09 12:19:48 -04004033static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
4034 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004035{
4036#ifdef CONFIG_XPS
4037 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004038 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02004039 int queue_index = -1;
4040
Amritha Nambiar04157462018-06-29 21:26:46 -07004041 if (!static_key_false(&xps_needed))
4042 return -1;
4043
Jiri Pirko638b2a62015-05-12 14:56:13 +02004044 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004045 if (!static_key_false(&xps_rxqs_needed))
4046 goto get_cpus_map;
4047
Antoine Tenart044ab862021-03-18 19:37:46 +01004048 dev_maps = rcu_dereference(sb_dev->xps_maps[XPS_RXQS]);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004049 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004050 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04004051
Antoine Tenart5478fcd2021-03-18 19:37:44 +01004052 if (tci >= 0)
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004053 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4054 tci);
4055 }
Alexander Duyck184c4492016-10-28 11:50:13 -04004056
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004057get_cpus_map:
4058 if (queue_index < 0) {
Antoine Tenart044ab862021-03-18 19:37:46 +01004059 dev_maps = rcu_dereference(sb_dev->xps_maps[XPS_CPUS]);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004060 if (dev_maps) {
4061 unsigned int tci = skb->sender_cpu - 1;
4062
4063 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4064 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004065 }
4066 }
4067 rcu_read_unlock();
4068
4069 return queue_index;
4070#else
4071 return -1;
4072#endif
4073}
4074
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004075u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01004076 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004077{
4078 return 0;
4079}
4080EXPORT_SYMBOL(dev_pick_tx_zero);
4081
4082u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01004083 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004084{
4085 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
4086}
4087EXPORT_SYMBOL(dev_pick_tx_cpu_id);
4088
Paolo Abenib71b5832019-03-20 11:02:05 +01004089u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
4090 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004091{
4092 struct sock *sk = skb->sk;
4093 int queue_index = sk_tx_queue_get(sk);
4094
Alexander Duyckeadec8772018-07-09 12:19:48 -04004095 sb_dev = sb_dev ? : dev;
4096
Jiri Pirko638b2a62015-05-12 14:56:13 +02004097 if (queue_index < 0 || skb->ooo_okay ||
4098 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04004099 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11004100
Jiri Pirko638b2a62015-05-12 14:56:13 +02004101 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04004102 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004103
4104 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07004105 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02004106 rcu_access_pointer(sk->sk_dst_cache))
4107 sk_tx_queue_set(sk, new_index);
4108
4109 queue_index = new_index;
4110 }
4111
4112 return queue_index;
4113}
Paolo Abenib71b5832019-03-20 11:02:05 +01004114EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004115
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004116struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4117 struct sk_buff *skb,
4118 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004119{
4120 int queue_index = 0;
4121
4122#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08004123 u32 sender_cpu = skb->sender_cpu - 1;
4124
4125 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004126 skb->sender_cpu = raw_smp_processor_id() + 1;
4127#endif
4128
4129 if (dev->real_num_tx_queues != 1) {
4130 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11004131
Jiri Pirko638b2a62015-05-12 14:56:13 +02004132 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01004133 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004134 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004135 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004136
Alexander Duyckd5845272017-11-22 10:57:41 -08004137 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004138 }
4139
4140 skb_set_queue_mapping(skb, queue_index);
4141 return netdev_get_tx_queue(dev, queue_index);
4142}
4143
Michel Machado95603e22012-06-12 10:16:35 +00004144/**
Jason Wang9d08dd32014-01-20 11:25:13 +08004145 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07004146 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04004147 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07004148 *
4149 * Queue a buffer for transmission to a network device. The caller must
4150 * have set the device and priority and built the buffer before calling
4151 * this function. The function can be called from an interrupt.
4152 *
4153 * A negative errno code is returned on a failure. A success does not
4154 * guarantee the frame will be transmitted as it may be dropped due
4155 * to congestion or traffic shaping.
4156 *
4157 * -----------------------------------------------------------------------------------
4158 * I notice this method can also return errors from the queue disciplines,
4159 * including NET_XMIT_DROP, which is a positive value. So, errors can also
4160 * be positive.
4161 *
4162 * Regardless of the return value, the skb is consumed, so it is currently
4163 * difficult to retry a send to this method. (You can bump the ref count
4164 * before sending to hold a reference for retry if you are careful.)
4165 *
4166 * When calling this method, interrupts MUST be enabled. This is because
4167 * the BH enable code must have IRQs enabled so that it will not deadlock.
4168 * --BLG
4169 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04004170static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171{
4172 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07004173 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 struct Qdisc *q;
4175 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01004176 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00004178 skb_reset_mac_header(skb);
4179
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004180 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
Yousuk Seunge7ed11e2021-01-20 12:41:55 -08004181 __skb_tstamp_tx(skb, NULL, NULL, skb->sk, SCM_TSTAMP_SCHED);
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004182
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004183 /* Disable soft irqs for various locks below. Also
4184 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004186 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Neil Horman5bc14212011-11-22 05:10:51 +00004188 skb_update_prio(skb);
4189
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004190 qdisc_pkt_len_init(skb);
4191#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004192 skb->tc_at_ingress = 0;
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004193# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004194 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004195 skb = sch_handle_egress(skb, &rc, dev);
4196 if (!skb)
4197 goto out;
4198 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004199# endif
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004200#endif
Eric Dumazet02875872014-10-05 18:38:35 -07004201 /* If device/qdisc don't need skb->dst, release it right now while
4202 * its hot in this cpu cache.
4203 */
4204 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4205 skb_dst_drop(skb);
4206 else
4207 skb_dst_force(skb);
4208
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004209 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08004210 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07004211
Koki Sanagicf66ba52010-08-23 18:45:02 +09004212 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00004214 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07004215 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 }
4217
4218 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11004219 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
tchardingeb13da12017-02-09 17:56:06 +11004221 * Really, it is unlikely that netif_tx_lock protection is necessary
4222 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
4223 * counters.)
4224 * However, it is possible, that they rely on protection
4225 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
tchardingeb13da12017-02-09 17:56:06 +11004227 * Check this and shot the lock. It is not prone from deadlocks.
4228 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 */
4230 if (dev->flags & IFF_UP) {
4231 int cpu = smp_processor_id(); /* ok because BHs are off */
4232
David S. Millerc773e842008-07-08 23:13:53 -07004233 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004234 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07004235 goto recursion_alert;
4236
Steffen Klassertf53c7232017-12-20 10:41:36 +01004237 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004238 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07004239 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004240
Willy Tarreau37447412020-08-10 10:27:42 +02004241 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
David S. Millerc773e842008-07-08 23:13:53 -07004242 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Tom Herbert734664982011-11-28 16:32:44 +00004244 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004245 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07004246 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02004247 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00004248 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07004249 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 goto out;
4251 }
4252 }
David S. Millerc773e842008-07-08 23:13:53 -07004253 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00004254 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4255 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 } else {
4257 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07004258 * unfortunately
4259 */
4260recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00004261 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4262 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 }
4264 }
4265
4266 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07004267 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Eric Dumazet015f0682014-03-27 08:45:56 -07004269 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004270 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 return rc;
4272out:
Herbert Xud4828d82006-06-22 02:28:18 -07004273 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 return rc;
4275}
Jason Wangf663dd92014-01-10 16:18:26 +08004276
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004277int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08004278{
4279 return __dev_queue_xmit(skb, NULL);
4280}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004281EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
Alexander Duyckeadec8772018-07-09 12:19:48 -04004283int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08004284{
Alexander Duyckeadec8772018-07-09 12:19:48 -04004285 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08004286}
4287EXPORT_SYMBOL(dev_queue_xmit_accel);
4288
Björn Töpel36ccdf82020-11-23 18:56:00 +01004289int __dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004290{
4291 struct net_device *dev = skb->dev;
4292 struct sk_buff *orig_skb = skb;
4293 struct netdev_queue *txq;
4294 int ret = NETDEV_TX_BUSY;
4295 bool again = false;
4296
4297 if (unlikely(!netif_running(dev) ||
4298 !netif_carrier_ok(dev)))
4299 goto drop;
4300
4301 skb = validate_xmit_skb_list(skb, dev, &again);
4302 if (skb != orig_skb)
4303 goto drop;
4304
4305 skb_set_queue_mapping(skb, queue_id);
4306 txq = skb_get_tx_queue(dev, skb);
Willy Tarreau37447412020-08-10 10:27:42 +02004307 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004308
4309 local_bh_disable();
4310
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004311 dev_xmit_recursion_inc();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004312 HARD_TX_LOCK(dev, txq, smp_processor_id());
4313 if (!netif_xmit_frozen_or_drv_stopped(txq))
4314 ret = netdev_start_xmit(skb, dev, txq, false);
4315 HARD_TX_UNLOCK(dev, txq);
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004316 dev_xmit_recursion_dec();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004317
4318 local_bh_enable();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004319 return ret;
4320drop:
4321 atomic_long_inc(&dev->tx_dropped);
4322 kfree_skb_list(skb);
4323 return NET_XMIT_DROP;
4324}
Björn Töpel36ccdf82020-11-23 18:56:00 +01004325EXPORT_SYMBOL(__dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
tchardingeb13da12017-02-09 17:56:06 +11004327/*************************************************************************
4328 * Receiver routines
4329 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004331int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00004332EXPORT_SYMBOL(netdev_max_backlog);
4333
Eric Dumazet3b098e22010-05-15 23:57:10 -07004334int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004335int netdev_budget __read_mostly = 300;
Konstantin Khlebnikova48379802020-04-06 14:39:32 +03004336/* Must be at least 2 jiffes to guarantee 1 jiffy timeout */
4337unsigned int __read_mostly netdev_budget_usecs = 2 * USEC_PER_SEC / HZ;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01004338int weight_p __read_mostly = 64; /* old backlog weight */
4339int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4340int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4341int dev_rx_weight __read_mostly = 64;
4342int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01004343/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4344int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004346/* Called with irq disabled */
4347static inline void ____napi_schedule(struct softnet_data *sd,
4348 struct napi_struct *napi)
4349{
Wei Wang29863d42021-02-08 11:34:09 -08004350 struct task_struct *thread;
4351
4352 if (test_bit(NAPI_STATE_THREADED, &napi->state)) {
4353 /* Paired with smp_mb__before_atomic() in
Wei Wang5fdd2f02021-02-08 11:34:10 -08004354 * napi_enable()/dev_set_threaded().
4355 * Use READ_ONCE() to guarantee a complete
4356 * read on napi->thread. Only call
Wei Wang29863d42021-02-08 11:34:09 -08004357 * wake_up_process() when it's not NULL.
4358 */
4359 thread = READ_ONCE(napi->thread);
4360 if (thread) {
Wei Wangcb038352021-03-16 15:36:47 -07004361 /* Avoid doing set_bit() if the thread is in
4362 * INTERRUPTIBLE state, cause napi_thread_wait()
4363 * makes sure to proceed with napi polling
4364 * if the thread is explicitly woken from here.
4365 */
4366 if (READ_ONCE(thread->state) != TASK_INTERRUPTIBLE)
4367 set_bit(NAPI_STATE_SCHED_THREADED, &napi->state);
Wei Wang29863d42021-02-08 11:34:09 -08004368 wake_up_process(thread);
4369 return;
4370 }
4371 }
4372
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004373 list_add_tail(&napi->poll_list, &sd->poll_list);
4374 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4375}
4376
Eric Dumazetdf334542010-03-24 19:13:54 +00004377#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07004378
4379/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00004380struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07004381EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004382u32 rps_cpu_mask __read_mostly;
4383EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07004384
Eric Dumazetdc053602019-03-22 08:56:38 -07004385struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04004386EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07004387struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08004388EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00004389
Ben Hutchingsc4454772011-01-19 11:03:53 +00004390static struct rps_dev_flow *
4391set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4392 struct rps_dev_flow *rflow, u16 next_cpu)
4393{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004394 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004395#ifdef CONFIG_RFS_ACCEL
4396 struct netdev_rx_queue *rxqueue;
4397 struct rps_dev_flow_table *flow_table;
4398 struct rps_dev_flow *old_rflow;
4399 u32 flow_id;
4400 u16 rxq_index;
4401 int rc;
4402
4403 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004404 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4405 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004406 goto out;
4407 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4408 if (rxq_index == skb_get_rx_queue(skb))
4409 goto out;
4410
4411 rxqueue = dev->_rx + rxq_index;
4412 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4413 if (!flow_table)
4414 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004415 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004416 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4417 rxq_index, flow_id);
4418 if (rc < 0)
4419 goto out;
4420 old_rflow = rflow;
4421 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004422 rflow->filter = rc;
4423 if (old_rflow->filter == rflow->filter)
4424 old_rflow->filter = RPS_NO_FILTER;
4425 out:
4426#endif
4427 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004428 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004429 }
4430
Ben Hutchings09994d12011-10-03 04:42:46 +00004431 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004432 return rflow;
4433}
4434
Tom Herbert0a9627f2010-03-16 08:03:29 +00004435/*
4436 * get_rps_cpu is called from netif_receive_skb and returns the target
4437 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004438 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004439 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004440static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4441 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004442{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004443 const struct rps_sock_flow_table *sock_flow_table;
4444 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004445 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004446 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004447 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004448 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004449 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004450
Tom Herbert0a9627f2010-03-16 08:03:29 +00004451 if (skb_rx_queue_recorded(skb)) {
4452 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004453
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004454 if (unlikely(index >= dev->real_num_rx_queues)) {
4455 WARN_ONCE(dev->real_num_rx_queues > 1,
4456 "%s received packet on queue %u, but number "
4457 "of RX queues is %u\n",
4458 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004459 goto done;
4460 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004461 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004462 }
4463
Eric Dumazet567e4b72015-02-06 12:59:01 -08004464 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4465
4466 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4467 map = rcu_dereference(rxqueue->rps_map);
4468 if (!flow_table && !map)
4469 goto done;
4470
Changli Gao2d47b452010-08-17 19:00:56 +00004471 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004472 hash = skb_get_hash(skb);
4473 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004474 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004475
Tom Herbertfec5e652010-04-16 16:01:27 -07004476 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4477 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004478 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004479 u32 next_cpu;
4480 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004481
Eric Dumazet567e4b72015-02-06 12:59:01 -08004482 /* First check into global flow table if there is a match */
4483 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4484 if ((ident ^ hash) & ~rps_cpu_mask)
4485 goto try_rps;
4486
4487 next_cpu = ident & rps_cpu_mask;
4488
4489 /* OK, now we know there is a match,
4490 * we can look at the local (per receive queue) flow table
4491 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004492 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004493 tcpu = rflow->cpu;
4494
Tom Herbertfec5e652010-04-16 16:01:27 -07004495 /*
4496 * If the desired CPU (where last recvmsg was done) is
4497 * different from current CPU (one in the rx-queue flow
4498 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004499 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004500 * - Current CPU is offline.
4501 * - The current CPU's queue tail has advanced beyond the
4502 * last packet that was enqueued using this table entry.
4503 * This guarantees that all previous packets for the flow
4504 * have been dequeued, thus preserving in order delivery.
4505 */
4506 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004507 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004508 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004509 rflow->last_qtail)) >= 0)) {
4510 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004511 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004512 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004513
Eric Dumazeta31196b2015-04-25 09:35:24 -07004514 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004515 *rflowp = rflow;
4516 cpu = tcpu;
4517 goto done;
4518 }
4519 }
4520
Eric Dumazet567e4b72015-02-06 12:59:01 -08004521try_rps:
4522
Tom Herbert0a9627f2010-03-16 08:03:29 +00004523 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004524 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004525 if (cpu_online(tcpu)) {
4526 cpu = tcpu;
4527 goto done;
4528 }
4529 }
4530
4531done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004532 return cpu;
4533}
4534
Ben Hutchingsc4454772011-01-19 11:03:53 +00004535#ifdef CONFIG_RFS_ACCEL
4536
4537/**
4538 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4539 * @dev: Device on which the filter was set
4540 * @rxq_index: RX queue index
4541 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4542 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4543 *
4544 * Drivers that implement ndo_rx_flow_steer() should periodically call
4545 * this function for each installed filter and remove the filters for
4546 * which it returns %true.
4547 */
4548bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4549 u32 flow_id, u16 filter_id)
4550{
4551 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4552 struct rps_dev_flow_table *flow_table;
4553 struct rps_dev_flow *rflow;
4554 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004555 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004556
4557 rcu_read_lock();
4558 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4559 if (flow_table && flow_id <= flow_table->mask) {
4560 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004561 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004562 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004563 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4564 rflow->last_qtail) <
4565 (int)(10 * flow_table->mask)))
4566 expire = false;
4567 }
4568 rcu_read_unlock();
4569 return expire;
4570}
4571EXPORT_SYMBOL(rps_may_expire_flow);
4572
4573#endif /* CONFIG_RFS_ACCEL */
4574
Tom Herbert0a9627f2010-03-16 08:03:29 +00004575/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004576static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004577{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004578 struct softnet_data *sd = data;
4579
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004580 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004581 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004582}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004583
Tom Herbertfec5e652010-04-16 16:01:27 -07004584#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004585
4586/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004587 * Check if this softnet_data structure is another cpu one
4588 * If yes, queue it to our IPI list and return 1
4589 * If no, return 0
4590 */
4591static int rps_ipi_queued(struct softnet_data *sd)
4592{
4593#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004594 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004595
4596 if (sd != mysd) {
4597 sd->rps_ipi_next = mysd->rps_ipi_list;
4598 mysd->rps_ipi_list = sd;
4599
4600 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4601 return 1;
4602 }
4603#endif /* CONFIG_RPS */
4604 return 0;
4605}
4606
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004607#ifdef CONFIG_NET_FLOW_LIMIT
4608int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4609#endif
4610
4611static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4612{
4613#ifdef CONFIG_NET_FLOW_LIMIT
4614 struct sd_flow_limit *fl;
4615 struct softnet_data *sd;
4616 unsigned int old_flow, new_flow;
4617
4618 if (qlen < (netdev_max_backlog >> 1))
4619 return false;
4620
Christoph Lameter903ceff2014-08-17 12:30:35 -05004621 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004622
4623 rcu_read_lock();
4624 fl = rcu_dereference(sd->flow_limit);
4625 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004626 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004627 old_flow = fl->history[fl->history_head];
4628 fl->history[fl->history_head] = new_flow;
4629
4630 fl->history_head++;
4631 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4632
4633 if (likely(fl->buckets[old_flow]))
4634 fl->buckets[old_flow]--;
4635
4636 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4637 fl->count++;
4638 rcu_read_unlock();
4639 return true;
4640 }
4641 }
4642 rcu_read_unlock();
4643#endif
4644 return false;
4645}
4646
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004647/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004648 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4649 * queue (may be a remote CPU queue).
4650 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004651static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4652 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004653{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004654 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004655 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004656 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004657
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004658 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004659
4660 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004661
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004662 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004663 if (!netif_running(skb->dev))
4664 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004665 qlen = skb_queue_len(&sd->input_pkt_queue);
4666 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004667 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004668enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004669 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004670 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004671 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004672 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004673 return NET_RX_SUCCESS;
4674 }
4675
Eric Dumazetebda37c22010-05-06 23:51:21 +00004676 /* Schedule NAPI for backlog device
4677 * We can use non atomic operation since we own the queue lock
4678 */
4679 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004680 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004681 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004682 }
4683 goto enqueue;
4684 }
4685
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004686drop:
Changli Gaodee42872010-05-02 05:42:16 +00004687 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004688 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004689
Tom Herbert0a9627f2010-03-16 08:03:29 +00004690 local_irq_restore(flags);
4691
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004692 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004693 kfree_skb(skb);
4694 return NET_RX_DROP;
4695}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004697static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4698{
4699 struct net_device *dev = skb->dev;
4700 struct netdev_rx_queue *rxqueue;
4701
4702 rxqueue = dev->_rx;
4703
4704 if (skb_rx_queue_recorded(skb)) {
4705 u16 index = skb_get_rx_queue(skb);
4706
4707 if (unlikely(index >= dev->real_num_rx_queues)) {
4708 WARN_ONCE(dev->real_num_rx_queues > 1,
4709 "%s received packet on queue %u, but number "
4710 "of RX queues is %u\n",
4711 dev->name, index, dev->real_num_rx_queues);
4712
4713 return rxqueue; /* Return first rxqueue */
4714 }
4715 rxqueue += index;
4716 }
4717 return rxqueue;
4718}
4719
John Fastabendd4455162017-07-17 09:26:45 -07004720static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004721 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004722 struct bpf_prog *xdp_prog)
4723{
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004724 void *orig_data, *orig_data_end, *hard_start;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004725 struct netdev_rx_queue *rxqueue;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004726 u32 metalen, act = XDP_DROP;
Martin Willi22b60342021-04-19 16:15:59 +02004727 bool orig_bcast, orig_host;
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01004728 u32 mac_len, frame_sz;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004729 __be16 orig_eth_type;
4730 struct ethhdr *eth;
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004731 int off;
John Fastabendd4455162017-07-17 09:26:45 -07004732
4733 /* Reinjected packets coming from act_mirred or similar should
4734 * not get XDP generic processing.
4735 */
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01004736 if (skb_is_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004737 return XDP_PASS;
4738
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004739 /* XDP packets must be linear and must have sufficient headroom
4740 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4741 * native XDP provides, thus we need to do it here as well.
4742 */
Toke Høiland-Jørgensenad1e03b2020-02-10 17:10:46 +01004743 if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004744 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4745 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4746 int troom = skb->tail + skb->data_len - skb->end;
4747
4748 /* In case we have to go down the path and also linearize,
4749 * then lets do the pskb_expand_head() work just once here.
4750 */
4751 if (pskb_expand_head(skb,
4752 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4753 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4754 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004755 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004756 goto do_drop;
4757 }
John Fastabendd4455162017-07-17 09:26:45 -07004758
4759 /* The XDP program wants to see the packet starting at the MAC
4760 * header.
4761 */
4762 mac_len = skb->data - skb_mac_header(skb);
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004763 hard_start = skb->data - skb_headroom(skb);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004764
4765 /* SKB "head" area always have tailroom for skb_shared_info */
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004766 frame_sz = (void *)skb_end_pointer(skb) - hard_start;
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01004767 frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004768
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004769 rxqueue = netif_get_rxqueue(skb);
4770 xdp_init_buff(xdp, frame_sz, &rxqueue->xdp_rxq);
4771 xdp_prepare_buff(xdp, hard_start, skb_headroom(skb) - mac_len,
4772 skb_headlen(skb) + mac_len, true);
Björn Töpel02671e22018-05-02 13:01:30 +02004773
4774 orig_data_end = xdp->data_end;
4775 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004776 eth = (struct ethhdr *)xdp->data;
Martin Willi22b60342021-04-19 16:15:59 +02004777 orig_host = ether_addr_equal_64bits(eth->h_dest, skb->dev->dev_addr);
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004778 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4779 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004780
Björn Töpel02671e22018-05-02 13:01:30 +02004781 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004782
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004783 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004784 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004785 if (off) {
4786 if (off > 0)
4787 __skb_pull(skb, off);
4788 else if (off < 0)
4789 __skb_push(skb, -off);
4790
4791 skb->mac_header += off;
4792 skb_reset_network_header(skb);
4793 }
John Fastabendd4455162017-07-17 09:26:45 -07004794
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004795 /* check if bpf_xdp_adjust_tail was used */
4796 off = xdp->data_end - orig_data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004797 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004798 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004799 skb->len += off; /* positive on grow, negative on shrink */
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004800 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004801
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004802 /* check if XDP changed eth hdr such SKB needs update */
4803 eth = (struct ethhdr *)xdp->data;
4804 if ((orig_eth_type != eth->h_proto) ||
Martin Willi22b60342021-04-19 16:15:59 +02004805 (orig_host != ether_addr_equal_64bits(eth->h_dest,
4806 skb->dev->dev_addr)) ||
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004807 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4808 __skb_push(skb, ETH_HLEN);
Martin Willi22b60342021-04-19 16:15:59 +02004809 skb->pkt_type = PACKET_HOST;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004810 skb->protocol = eth_type_trans(skb, skb->dev);
4811 }
4812
John Fastabendd4455162017-07-17 09:26:45 -07004813 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004814 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004815 case XDP_TX:
4816 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004817 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004818 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004819 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004820 if (metalen)
4821 skb_metadata_set(skb, metalen);
4822 break;
John Fastabendd4455162017-07-17 09:26:45 -07004823 default:
4824 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004825 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004826 case XDP_ABORTED:
4827 trace_xdp_exception(skb->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004828 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004829 case XDP_DROP:
4830 do_drop:
4831 kfree_skb(skb);
4832 break;
4833 }
4834
4835 return act;
4836}
4837
4838/* When doing generic XDP we have to bypass the qdisc layer and the
4839 * network taps in order to match in-driver-XDP behavior.
4840 */
Jason Wang7c497472017-08-11 19:41:17 +08004841void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004842{
4843 struct net_device *dev = skb->dev;
4844 struct netdev_queue *txq;
4845 bool free_skb = true;
4846 int cpu, rc;
4847
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004848 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004849 cpu = smp_processor_id();
4850 HARD_TX_LOCK(dev, txq, cpu);
4851 if (!netif_xmit_stopped(txq)) {
4852 rc = netdev_start_xmit(skb, dev, txq, 0);
4853 if (dev_xmit_complete(rc))
4854 free_skb = false;
4855 }
4856 HARD_TX_UNLOCK(dev, txq);
4857 if (free_skb) {
4858 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4859 kfree_skb(skb);
4860 }
4861}
4862
Davidlohr Bueso02786472018-05-08 09:07:02 -07004863static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004864
Jason Wang7c497472017-08-11 19:41:17 +08004865int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004866{
John Fastabendd4455162017-07-17 09:26:45 -07004867 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004868 struct xdp_buff xdp;
4869 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004870 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004871
Björn Töpel02671e22018-05-02 13:01:30 +02004872 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004873 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004874 switch (act) {
4875 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004876 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004877 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004878 if (err)
4879 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004880 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004881 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004882 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004883 break;
4884 }
John Fastabendd4455162017-07-17 09:26:45 -07004885 return XDP_DROP;
4886 }
4887 }
4888 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004889out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004890 kfree_skb(skb);
4891 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004892}
Jason Wang7c497472017-08-11 19:41:17 +08004893EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004894
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004895static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004897 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
Eric Dumazet588f0332011-11-15 04:12:55 +00004899 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900
Koki Sanagicf66ba52010-08-23 18:45:02 +09004901 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004902
Eric Dumazetdf334542010-03-24 19:13:54 +00004903#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004904 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004905 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004906 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004907
Changli Gaocece1942010-08-07 20:35:43 -07004908 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004909 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004910
4911 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004912 if (cpu < 0)
4913 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004914
4915 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4916
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004917 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004918 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004919 } else
4920#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004921 {
4922 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004923
Tom Herbertfec5e652010-04-16 16:01:27 -07004924 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4925 put_cpu();
4926 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004927 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004929
4930/**
4931 * netif_rx - post buffer to the network code
4932 * @skb: buffer to post
4933 *
4934 * This function receives a packet from a device driver and queues it for
4935 * the upper (protocol) levels to process. It always succeeds. The buffer
4936 * may be dropped during processing for congestion control or by the
4937 * protocol layers.
4938 *
4939 * return values:
4940 * NET_RX_SUCCESS (no congestion)
4941 * NET_RX_DROP (packet was dropped)
4942 *
4943 */
4944
4945int netif_rx(struct sk_buff *skb)
4946{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004947 int ret;
4948
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004949 trace_netif_rx_entry(skb);
4950
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004951 ret = netif_rx_internal(skb);
4952 trace_netif_rx_exit(ret);
4953
4954 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004955}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004956EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
4958int netif_rx_ni(struct sk_buff *skb)
4959{
4960 int err;
4961
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004962 trace_netif_rx_ni_entry(skb);
4963
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004965 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 if (local_softirq_pending())
4967 do_softirq();
4968 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004969 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970
4971 return err;
4972}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973EXPORT_SYMBOL(netif_rx_ni);
4974
Sebastian Andrzej Siewiorc11171a2020-09-29 22:25:12 +02004975int netif_rx_any_context(struct sk_buff *skb)
4976{
4977 /*
4978 * If invoked from contexts which do not invoke bottom half
4979 * processing either at return from interrupt or when softrqs are
4980 * reenabled, use netif_rx_ni() which invokes bottomhalf processing
4981 * directly.
4982 */
4983 if (in_interrupt())
4984 return netif_rx(skb);
4985 else
4986 return netif_rx_ni(skb);
4987}
4988EXPORT_SYMBOL(netif_rx_any_context);
4989
Emese Revfy0766f782016-06-20 20:42:34 +02004990static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004992 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
4994 if (sd->completion_queue) {
4995 struct sk_buff *clist;
4996
4997 local_irq_disable();
4998 clist = sd->completion_queue;
4999 sd->completion_queue = NULL;
5000 local_irq_enable();
5001
5002 while (clist) {
5003 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11005004
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 clist = clist->next;
5006
Reshetova, Elena63354792017-06-30 13:07:58 +03005007 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08005008 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
5009 trace_consume_skb(skb);
5010 else
5011 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01005012
5013 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
5014 __kfree_skb(skb);
5015 else
5016 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005017 }
5018 }
5019
5020 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07005021 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022
5023 local_irq_disable();
5024 head = sd->output_queue;
5025 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00005026 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027 local_irq_enable();
5028
Yunsheng Lin102b55e2021-05-14 11:17:00 +08005029 rcu_read_lock();
5030
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07005032 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08005033 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07005034
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 head = head->next_sched;
5036
Eric Dumazet3bcb8462016-06-04 20:02:28 -07005037 /* We need to make sure head->next_sched is read
5038 * before clearing __QDISC_STATE_SCHED
5039 */
5040 smp_mb__before_atomic();
Yunsheng Lin102b55e2021-05-14 11:17:00 +08005041
5042 if (!(q->flags & TCQ_F_NOLOCK)) {
5043 root_lock = qdisc_lock(q);
5044 spin_lock(root_lock);
5045 } else if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED,
5046 &q->state))) {
5047 /* There is a synchronize_net() between
5048 * STATE_DEACTIVATED flag being set and
5049 * qdisc_reset()/some_qdisc_is_busy() in
5050 * dev_deactivate(), so we can safely bail out
5051 * early here to avoid data race between
5052 * qdisc_deactivate() and some_qdisc_is_busy()
5053 * for lockless qdisc.
5054 */
5055 clear_bit(__QDISC_STATE_SCHED, &q->state);
5056 continue;
5057 }
5058
Eric Dumazet3bcb8462016-06-04 20:02:28 -07005059 clear_bit(__QDISC_STATE_SCHED, &q->state);
5060 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08005061 if (root_lock)
5062 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 }
Yunsheng Lin102b55e2021-05-14 11:17:00 +08005064
5065 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01005067
5068 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005069}
5070
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04005071#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00005072/* This hook is defined here for ATM LANE */
5073int (*br_fdb_test_addr_hook)(struct net_device *dev,
5074 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07005075EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00005076#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077
Daniel Borkmann1f211a12016-01-07 22:29:47 +01005078static inline struct sk_buff *
5079sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005080 struct net_device *orig_dev, bool *another)
Herbert Xuf697c3e2007-10-14 00:38:47 -07005081{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02005082#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01005083 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005084 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00005085
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005086 /* If there's at least one ingress present somewhere (so
5087 * we get here via enabled static key), remaining devices
5088 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005089 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005090 */
Jiri Pirko46209402017-11-03 11:46:25 +01005091 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02005092 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01005093
Herbert Xuf697c3e2007-10-14 00:38:47 -07005094 if (*pt_prev) {
5095 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5096 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07005097 }
5098
Florian Westphal33654952015-05-14 00:36:28 +02005099 qdisc_skb_cb(skb)->pkt_len = skb->len;
wenxuaadaca92020-11-25 12:01:21 +08005100 qdisc_skb_cb(skb)->mru = 0;
wenxu7baf2422021-01-19 16:31:50 +08005101 qdisc_skb_cb(skb)->post_ct = false;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05005102 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01005103 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005104
Paul Blakey7d17c542020-02-16 12:01:22 +02005105 switch (tcf_classify_ingress(skb, miniq->block, miniq->filter_list,
5106 &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005107 case TC_ACT_OK:
5108 case TC_ACT_RECLASSIFY:
5109 skb->tc_index = TC_H_MIN(cl_res.classid);
5110 break;
5111 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01005112 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07005113 kfree_skb(skb);
5114 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005115 case TC_ACT_STOLEN:
5116 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02005117 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07005118 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005119 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07005120 case TC_ACT_REDIRECT:
5121 /* skb_mac_header check was done by cls/act_bpf, so
5122 * we can safely push the L2 header back before
5123 * redirecting to another netdev
5124 */
5125 __skb_push(skb, skb->mac_len);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005126 if (skb_do_redirect(skb) == -EAGAIN) {
5127 __skb_pull(skb, skb->mac_len);
5128 *another = true;
5129 break;
5130 }
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07005131 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01005132 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02005133 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005134 default:
5135 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07005136 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02005137#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07005138 return skb;
5139}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005141/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07005142 * netdev_is_rx_handler_busy - check if receive handler is registered
5143 * @dev: device to check
5144 *
5145 * Check if a receive handler is already registered for a given device.
5146 * Return true if there one.
5147 *
5148 * The caller must hold the rtnl_mutex.
5149 */
5150bool netdev_is_rx_handler_busy(struct net_device *dev)
5151{
5152 ASSERT_RTNL();
5153 return dev && rtnl_dereference(dev->rx_handler);
5154}
5155EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5156
5157/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005158 * netdev_rx_handler_register - register receive handler
5159 * @dev: device to register a handler for
5160 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00005161 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005162 *
Masanari Iidae2278672014-02-18 22:54:36 +09005163 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005164 * called from __netif_receive_skb. A negative errno code is returned
5165 * on a failure.
5166 *
5167 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005168 *
5169 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005170 */
5171int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00005172 rx_handler_func_t *rx_handler,
5173 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005174{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08005175 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005176 return -EBUSY;
5177
Paolo Abenif54262502018-03-09 10:39:24 +01005178 if (dev->priv_flags & IFF_NO_RX_HANDLER)
5179 return -EINVAL;
5180
Eric Dumazet00cfec32013-03-29 03:01:22 +00005181 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00005182 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005183 rcu_assign_pointer(dev->rx_handler, rx_handler);
5184
5185 return 0;
5186}
5187EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5188
5189/**
5190 * netdev_rx_handler_unregister - unregister receive handler
5191 * @dev: device to unregister a handler from
5192 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00005193 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005194 *
5195 * The caller must hold the rtnl_mutex.
5196 */
5197void netdev_rx_handler_unregister(struct net_device *dev)
5198{
5199
5200 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005201 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00005202 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5203 * section has a guarantee to see a non NULL rx_handler_data
5204 * as well.
5205 */
5206 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005207 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005208}
5209EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5210
Mel Gormanb4b9e352012-07-31 16:44:26 -07005211/*
5212 * Limit the use of PFMEMALLOC reserves to those protocols that implement
5213 * the special handling of PFMEMALLOC skbs.
5214 */
5215static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5216{
5217 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07005218 case htons(ETH_P_ARP):
5219 case htons(ETH_P_IP):
5220 case htons(ETH_P_IPV6):
5221 case htons(ETH_P_8021Q):
5222 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07005223 return true;
5224 default:
5225 return false;
5226 }
5227}
5228
Pablo Neirae687ad62015-05-13 18:19:38 +02005229static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5230 int *ret, struct net_device *orig_dev)
5231{
5232 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04005233 int ingress_retval;
5234
Pablo Neirae687ad62015-05-13 18:19:38 +02005235 if (*pt_prev) {
5236 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5237 *pt_prev = NULL;
5238 }
5239
Aaron Conole2c1e2702016-09-21 11:35:03 -04005240 rcu_read_lock();
5241 ingress_retval = nf_hook_ingress(skb);
5242 rcu_read_unlock();
5243 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02005244 }
5245 return 0;
5246}
Pablo Neirae687ad62015-05-13 18:19:38 +02005247
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005248static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
Edward Cree88eb1942018-07-02 16:13:56 +01005249 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250{
5251 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005252 rx_handler_func_t *rx_handler;
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005253 struct sk_buff *skb = *pskb;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07005254 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005255 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08005257 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258
Eric Dumazet588f0332011-11-15 04:12:55 +00005259 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07005260
Koki Sanagicf66ba52010-08-23 18:45:02 +09005261 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08005262
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07005263 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00005264
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07005265 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00005266 if (!skb_transport_header_was_set(skb))
5267 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00005268 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269
5270 pt_prev = NULL;
5271
David S. Miller63d8ea72011-02-28 10:48:59 -08005272another_round:
David S. Millerb6858172012-07-23 16:27:54 -07005273 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08005274
5275 __this_cpu_inc(softnet_data.processed);
5276
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005277 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5278 int ret2;
5279
5280 preempt_disable();
5281 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5282 preempt_enable();
5283
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005284 if (ret2 != XDP_PASS) {
5285 ret = NET_RX_DROP;
5286 goto out;
5287 }
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005288 skb_reset_mac_len(skb);
5289 }
5290
Menglong Dong324cefa2021-01-11 02:42:21 -08005291 if (eth_type_vlan(skb->protocol)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04005292 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005293 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005294 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005295 }
5296
Willem de Bruijne7246e12017-01-07 17:06:35 -05005297 if (skb_skip_tc_classify(skb))
5298 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299
David S. Miller9754e292013-02-14 15:57:38 -05005300 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07005301 goto skip_taps;
5302
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08005304 if (pt_prev)
5305 ret = deliver_skb(skb, pt_prev, orig_dev);
5306 pt_prev = ptype;
5307 }
5308
5309 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5310 if (pt_prev)
5311 ret = deliver_skb(skb, pt_prev, orig_dev);
5312 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 }
5314
Mel Gormanb4b9e352012-07-31 16:44:26 -07005315skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02005316#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07005317 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005318 bool another = false;
5319
5320 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
5321 &another);
5322 if (another)
5323 goto another_round;
Daniel Borkmann45771392015-04-10 23:07:54 +02005324 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005325 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02005326
5327 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005328 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02005329 }
Pablo Neira1cf519002015-05-13 18:19:37 +02005330#endif
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01005331 skb_reset_redirect(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05005332skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05005333 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07005334 goto drop;
5335
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005336 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00005337 if (pt_prev) {
5338 ret = deliver_skb(skb, pt_prev, orig_dev);
5339 pt_prev = NULL;
5340 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005341 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00005342 goto another_round;
5343 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005344 goto out;
John Fastabend24257172011-10-10 09:16:41 +00005345 }
5346
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005347 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005348 if (rx_handler) {
5349 if (pt_prev) {
5350 ret = deliver_skb(skb, pt_prev, orig_dev);
5351 pt_prev = NULL;
5352 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005353 switch (rx_handler(&skb)) {
5354 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00005355 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005356 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005357 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08005358 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005359 case RX_HANDLER_EXACT:
5360 deliver_exact = true;
Gustavo A. R. Silvab1866bf2021-03-09 23:42:43 -06005361 break;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005362 case RX_HANDLER_PASS:
5363 break;
5364 default:
5365 BUG();
5366 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +03005369 if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005370check_vlan_id:
5371 if (skb_vlan_tag_get_id(skb)) {
5372 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5373 * find vlan device.
5374 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005375 skb->pkt_type = PACKET_OTHERHOST;
Menglong Dong324cefa2021-01-11 02:42:21 -08005376 } else if (eth_type_vlan(skb->protocol)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005377 /* Outer header is 802.1P with vlan 0, inner header is
5378 * 802.1Q or 802.1AD and vlan_do_receive() above could
5379 * not find vlan dev for vlan id 0.
5380 */
5381 __vlan_hwaccel_clear_tag(skb);
5382 skb = skb_vlan_untag(skb);
5383 if (unlikely(!skb))
5384 goto out;
5385 if (vlan_do_receive(&skb))
5386 /* After stripping off 802.1P header with vlan 0
5387 * vlan dev is found for inner header.
5388 */
5389 goto another_round;
5390 else if (unlikely(!skb))
5391 goto out;
5392 else
5393 /* We have stripped outer 802.1P vlan 0 header.
5394 * But could not find vlan dev.
5395 * check again for vlan id to set OTHERHOST.
5396 */
5397 goto check_vlan_id;
5398 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005399 /* Note: we might in the future use prio bits
5400 * and set skb->priority like in vlan_do_receive()
5401 * For the time being, just ignore Priority Code Point
5402 */
Michał Mirosławb18175242018-11-09 00:18:02 +01005403 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005404 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005405
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08005407
5408 /* deliver only exact match when indicated */
5409 if (likely(!deliver_exact)) {
5410 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5411 &ptype_base[ntohs(type) &
5412 PTYPE_HASH_MASK]);
5413 }
5414
5415 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5416 &orig_dev->ptype_specific);
5417
5418 if (unlikely(skb->dev != orig_dev)) {
5419 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5420 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 }
5422
5423 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04005424 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00005425 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01005426 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07005428drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05005429 if (!deliver_exact)
5430 atomic_long_inc(&skb->dev->rx_dropped);
5431 else
5432 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 kfree_skb(skb);
5434 /* Jamal, now you will not able to escape explaining
5435 * me how you were going to use this. :-)
5436 */
5437 ret = NET_RX_DROP;
5438 }
5439
Julian Anastasov2c17d272015-07-09 09:59:10 +03005440out:
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005441 /* The invariant here is that if *ppt_prev is not NULL
5442 * then skb should also be non-NULL.
5443 *
5444 * Apparently *ppt_prev assignment above holds this invariant due to
5445 * skb dereferencing near it.
5446 */
5447 *pskb = skb;
David S. Miller9754e292013-02-14 15:57:38 -05005448 return ret;
5449}
5450
Edward Cree88eb1942018-07-02 16:13:56 +01005451static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5452{
5453 struct net_device *orig_dev = skb->dev;
5454 struct packet_type *pt_prev = NULL;
5455 int ret;
5456
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005457 ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree88eb1942018-07-02 16:13:56 +01005458 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005459 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5460 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005461 return ret;
5462}
5463
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005464/**
5465 * netif_receive_skb_core - special purpose version of netif_receive_skb
5466 * @skb: buffer to process
5467 *
5468 * More direct receive version of netif_receive_skb(). It should
5469 * only be used by callers that have a need to skip RPS and Generic XDP.
Mauro Carvalho Chehab2de97802020-03-17 15:54:20 +01005470 * Caller must also take care of handling if ``(page_is_)pfmemalloc``.
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005471 *
5472 * This function may only be called from softirq context and interrupts
5473 * should be enabled.
5474 *
5475 * Return values (usually ignored):
5476 * NET_RX_SUCCESS: no congestion
5477 * NET_RX_DROP: packet was dropped
5478 */
5479int netif_receive_skb_core(struct sk_buff *skb)
5480{
5481 int ret;
5482
5483 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005484 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005485 rcu_read_unlock();
5486
5487 return ret;
5488}
5489EXPORT_SYMBOL(netif_receive_skb_core);
5490
Edward Cree88eb1942018-07-02 16:13:56 +01005491static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5492 struct packet_type *pt_prev,
5493 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005494{
5495 struct sk_buff *skb, *next;
5496
Edward Cree88eb1942018-07-02 16:13:56 +01005497 if (!pt_prev)
5498 return;
5499 if (list_empty(head))
5500 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005501 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005502 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5503 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005504 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005505 list_for_each_entry_safe(skb, next, head, list) {
5506 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005507 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005508 }
Edward Cree88eb1942018-07-02 16:13:56 +01005509}
5510
5511static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5512{
5513 /* Fast-path assumptions:
5514 * - There is no RX handler.
5515 * - Only one packet_type matches.
5516 * If either of these fails, we will end up doing some per-packet
5517 * processing in-line, then handling the 'last ptype' for the whole
5518 * sublist. This can't cause out-of-order delivery to any single ptype,
5519 * because the 'last ptype' must be constant across the sublist, and all
5520 * other ptypes are handled per-packet.
5521 */
5522 /* Current (common) ptype of sublist */
5523 struct packet_type *pt_curr = NULL;
5524 /* Current (common) orig_dev of sublist */
5525 struct net_device *od_curr = NULL;
5526 struct list_head sublist;
5527 struct sk_buff *skb, *next;
5528
Edward Cree9af86f92018-07-09 18:10:19 +01005529 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005530 list_for_each_entry_safe(skb, next, head, list) {
5531 struct net_device *orig_dev = skb->dev;
5532 struct packet_type *pt_prev = NULL;
5533
Edward Cree22f6bbb2018-12-04 17:37:57 +00005534 skb_list_del_init(skb);
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005535 __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01005536 if (!pt_prev)
5537 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005538 if (pt_curr != pt_prev || od_curr != orig_dev) {
5539 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005540 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5541 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005542 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005543 pt_curr = pt_prev;
5544 od_curr = orig_dev;
5545 }
Edward Cree9af86f92018-07-09 18:10:19 +01005546 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005547 }
5548
5549 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005550 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005551}
5552
David S. Miller9754e292013-02-14 15:57:38 -05005553static int __netif_receive_skb(struct sk_buff *skb)
5554{
5555 int ret;
5556
5557 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005558 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005559
5560 /*
5561 * PFMEMALLOC skbs are special, they should
5562 * - be delivered to SOCK_MEMALLOC sockets only
5563 * - stay away from userspace
5564 * - have bounded memory usage
5565 *
5566 * Use PF_MEMALLOC as this saves us from propagating the allocation
5567 * context down to all allocation sites.
5568 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005569 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005570 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005571 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005572 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005573 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005574
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 return ret;
5576}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005577
Edward Cree4ce00172018-07-02 16:13:40 +01005578static void __netif_receive_skb_list(struct list_head *head)
5579{
5580 unsigned long noreclaim_flag = 0;
5581 struct sk_buff *skb, *next;
5582 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5583
5584 list_for_each_entry_safe(skb, next, head, list) {
5585 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5586 struct list_head sublist;
5587
5588 /* Handle the previous sublist */
5589 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005590 if (!list_empty(&sublist))
5591 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005592 pfmemalloc = !pfmemalloc;
5593 /* See comments in __netif_receive_skb */
5594 if (pfmemalloc)
5595 noreclaim_flag = memalloc_noreclaim_save();
5596 else
5597 memalloc_noreclaim_restore(noreclaim_flag);
5598 }
5599 }
5600 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005601 if (!list_empty(head))
5602 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005603 /* Restore pflags */
5604 if (pfmemalloc)
5605 memalloc_noreclaim_restore(noreclaim_flag);
5606}
5607
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005608static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005609{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005610 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005611 struct bpf_prog *new = xdp->prog;
5612 int ret = 0;
5613
David Ahernfbee97f2020-05-29 16:07:13 -06005614 if (new) {
5615 u32 i;
5616
YiFei Zhu984fe942020-09-15 16:45:39 -07005617 mutex_lock(&new->aux->used_maps_mutex);
5618
David Ahernfbee97f2020-05-29 16:07:13 -06005619 /* generic XDP does not work with DEVMAPs that can
5620 * have a bpf_prog installed on an entry
5621 */
5622 for (i = 0; i < new->aux->used_map_cnt; i++) {
YiFei Zhu984fe942020-09-15 16:45:39 -07005623 if (dev_map_can_have_prog(new->aux->used_maps[i]) ||
5624 cpu_map_prog_allowed(new->aux->used_maps[i])) {
5625 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005626 return -EINVAL;
YiFei Zhu984fe942020-09-15 16:45:39 -07005627 }
David Ahernfbee97f2020-05-29 16:07:13 -06005628 }
YiFei Zhu984fe942020-09-15 16:45:39 -07005629
5630 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005631 }
5632
David S. Millerb5cdae32017-04-18 15:36:58 -04005633 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005634 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005635 rcu_assign_pointer(dev->xdp_prog, new);
5636 if (old)
5637 bpf_prog_put(old);
5638
5639 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005640 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005641 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005642 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005643 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005644 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005645 }
5646 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005647
David S. Millerb5cdae32017-04-18 15:36:58 -04005648 default:
5649 ret = -EINVAL;
5650 break;
5651 }
5652
5653 return ret;
5654}
5655
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005656static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005657{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005658 int ret;
5659
Eric Dumazet588f0332011-11-15 04:12:55 +00005660 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005661
Richard Cochranc1f19b52010-07-17 08:49:36 +00005662 if (skb_defer_rx_timestamp(skb))
5663 return NET_RX_SUCCESS;
5664
John Fastabendbbbe2112017-09-08 14:00:30 -07005665 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005666#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005667 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005668 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005669 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005670
Eric Dumazet3b098e22010-05-15 23:57:10 -07005671 if (cpu >= 0) {
5672 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5673 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005674 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005675 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005676 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005677#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005678 ret = __netif_receive_skb(skb);
5679 rcu_read_unlock();
5680 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005681}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005682
Edward Cree7da517a2018-07-02 16:13:24 +01005683static void netif_receive_skb_list_internal(struct list_head *head)
5684{
Edward Cree7da517a2018-07-02 16:13:24 +01005685 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005686 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005687
Edward Cree8c057ef2018-07-09 18:09:54 +01005688 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005689 list_for_each_entry_safe(skb, next, head, list) {
5690 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005691 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005692 if (!skb_defer_rx_timestamp(skb))
5693 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005694 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005695 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005696
Edward Cree7da517a2018-07-02 16:13:24 +01005697 rcu_read_lock();
5698#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005699 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005700 list_for_each_entry_safe(skb, next, head, list) {
5701 struct rps_dev_flow voidflow, *rflow = &voidflow;
5702 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5703
5704 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005705 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005706 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005707 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005708 }
5709 }
5710 }
5711#endif
5712 __netif_receive_skb_list(head);
5713 rcu_read_unlock();
5714}
5715
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005716/**
5717 * netif_receive_skb - process receive buffer from network
5718 * @skb: buffer to process
5719 *
5720 * netif_receive_skb() is the main receive data processing function.
5721 * It always succeeds. The buffer may be dropped during processing
5722 * for congestion control or by the protocol layers.
5723 *
5724 * This function may only be called from softirq context and interrupts
5725 * should be enabled.
5726 *
5727 * Return values (usually ignored):
5728 * NET_RX_SUCCESS: no congestion
5729 * NET_RX_DROP: packet was dropped
5730 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005731int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005732{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005733 int ret;
5734
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005735 trace_netif_receive_skb_entry(skb);
5736
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005737 ret = netif_receive_skb_internal(skb);
5738 trace_netif_receive_skb_exit(ret);
5739
5740 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005741}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005742EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743
Edward Creef6ad8c12018-07-02 16:12:45 +01005744/**
5745 * netif_receive_skb_list - process many receive buffers from network
5746 * @head: list of skbs to process.
5747 *
Edward Cree7da517a2018-07-02 16:13:24 +01005748 * Since return value of netif_receive_skb() is normally ignored, and
5749 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005750 *
5751 * This function may only be called from softirq context and interrupts
5752 * should be enabled.
5753 */
5754void netif_receive_skb_list(struct list_head *head)
5755{
Edward Cree7da517a2018-07-02 16:13:24 +01005756 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005757
Edward Creeb9f463d2018-07-02 16:14:44 +01005758 if (list_empty(head))
5759 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005760 if (trace_netif_receive_skb_list_entry_enabled()) {
5761 list_for_each_entry(skb, head, list)
5762 trace_netif_receive_skb_list_entry(skb);
5763 }
Edward Cree7da517a2018-07-02 16:13:24 +01005764 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005765 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005766}
5767EXPORT_SYMBOL(netif_receive_skb_list);
5768
Wei Yongjunce1e2a72020-07-13 22:23:44 +08005769static DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005770
5771/* Network device is going away, flush any packets still pending */
5772static void flush_backlog(struct work_struct *work)
5773{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005774 struct sk_buff *skb, *tmp;
5775 struct softnet_data *sd;
5776
5777 local_bh_disable();
5778 sd = this_cpu_ptr(&softnet_data);
5779
5780 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005781 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005782 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005783 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005784 __skb_unlink(skb, &sd->input_pkt_queue);
Subash Abhinov Kasiviswanathan7df5cb752020-07-23 11:31:48 -06005785 dev_kfree_skb_irq(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005786 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005787 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005788 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005789 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005790 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005791
5792 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005793 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005794 __skb_unlink(skb, &sd->process_queue);
5795 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005796 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005797 }
5798 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005799 local_bh_enable();
5800}
5801
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005802static bool flush_required(int cpu)
5803{
5804#if IS_ENABLED(CONFIG_RPS)
5805 struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5806 bool do_flush;
5807
5808 local_irq_disable();
5809 rps_lock(sd);
5810
5811 /* as insertion into process_queue happens with the rps lock held,
5812 * process_queue access may race only with dequeue
5813 */
5814 do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
5815 !skb_queue_empty_lockless(&sd->process_queue);
5816 rps_unlock(sd);
5817 local_irq_enable();
5818
5819 return do_flush;
5820#endif
5821 /* without RPS we can't safely check input_pkt_queue: during a
5822 * concurrent remote skb_queue_splice() we can detect as empty both
5823 * input_pkt_queue and process_queue even if the latter could end-up
5824 * containing a lot of packets.
5825 */
5826 return true;
5827}
5828
Eric Dumazet41852492016-08-26 12:50:39 -07005829static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005830{
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005831 static cpumask_t flush_cpus;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005832 unsigned int cpu;
5833
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005834 /* since we are under rtnl lock protection we can use static data
5835 * for the cpumask and avoid allocating on stack the possibly
5836 * large mask
5837 */
5838 ASSERT_RTNL();
5839
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005840 get_online_cpus();
5841
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005842 cpumask_clear(&flush_cpus);
5843 for_each_online_cpu(cpu) {
5844 if (flush_required(cpu)) {
5845 queue_work_on(cpu, system_highpri_wq,
5846 per_cpu_ptr(&flush_works, cpu));
5847 cpumask_set_cpu(cpu, &flush_cpus);
5848 }
5849 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005850
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005851 /* we can have in flight packet[s] on the cpus we are not flushing,
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -08005852 * synchronize_net() in unregister_netdevice_many() will take care of
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005853 * them
5854 */
5855 for_each_cpu(cpu, &flush_cpus)
Eric Dumazet41852492016-08-26 12:50:39 -07005856 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005857
5858 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005859}
5860
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005861/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5862static void gro_normal_list(struct napi_struct *napi)
5863{
5864 if (!napi->rx_count)
5865 return;
5866 netif_receive_skb_list_internal(&napi->rx_list);
5867 INIT_LIST_HEAD(&napi->rx_list);
5868 napi->rx_count = 0;
5869}
5870
5871/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5872 * pass the whole batch up to the stack.
5873 */
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005874static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb, int segs)
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005875{
5876 list_add_tail(&skb->list, &napi->rx_list);
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005877 napi->rx_count += segs;
5878 if (napi->rx_count >= gro_normal_batch)
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005879 gro_normal_list(napi);
5880}
5881
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005882static int napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005883{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005884 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005885 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005886 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005887 int err = -ENOENT;
5888
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005889 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5890
Herbert Xufc59f9a2009-04-14 15:11:06 -07005891 if (NAPI_GRO_CB(skb)->count == 1) {
5892 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005893 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005894 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005895
5896 rcu_read_lock();
5897 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005898 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005899 continue;
5900
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005901 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5902 ipv6_gro_complete, inet_gro_complete,
5903 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005904 break;
5905 }
5906 rcu_read_unlock();
5907
5908 if (err) {
5909 WARN_ON(&ptype->list == head);
5910 kfree_skb(skb);
5911 return NET_RX_SUCCESS;
5912 }
5913
5914out:
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005915 gro_normal_one(napi, skb, NAPI_GRO_CB(skb)->count);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005916 return NET_RX_SUCCESS;
Herbert Xud565b0a2008-12-15 23:38:52 -08005917}
5918
Li RongQing6312fe72018-07-05 14:34:32 +08005919static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005920 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005921{
Li RongQing6312fe72018-07-05 14:34:32 +08005922 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005923 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005924
David Miller07d78362018-06-24 14:14:02 +09005925 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005926 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5927 return;
David S. Miller992cba72018-07-31 15:27:56 -07005928 skb_list_del_init(skb);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005929 napi_gro_complete(napi, skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005930 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005931 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005932
5933 if (!napi->gro_hash[index].count)
5934 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005935}
David Miller07d78362018-06-24 14:14:02 +09005936
Li RongQing6312fe72018-07-05 14:34:32 +08005937/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005938 * youngest packets at the head of it.
5939 * Complete skbs in reverse order to reduce latencies.
5940 */
5941void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5942{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005943 unsigned long bitmask = napi->gro_bitmask;
5944 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005945
Eric Dumazet42519ed2018-11-21 11:39:28 -08005946 while ((i = ffs(bitmask)) != 0) {
5947 bitmask >>= i;
5948 base += i;
5949 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005950 }
David Miller07d78362018-06-24 14:14:02 +09005951}
Eric Dumazet86cac582010-08-31 18:25:32 +00005952EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005953
Alexander Lobakin0ccf4d52021-03-13 20:30:05 +00005954static void gro_list_prepare(const struct list_head *head,
5955 const struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005956{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005957 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005958 u32 hash = skb_get_hash_raw(skb);
David Millerd4546c22018-06-24 14:13:49 +09005959 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005960
David Miller07d78362018-06-24 14:14:02 +09005961 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005962 unsigned long diffs;
5963
Tom Herbert0b4cec82014-01-15 08:58:06 -08005964 NAPI_GRO_CB(p)->flush = 0;
5965
5966 if (hash != skb_get_hash_raw(p)) {
5967 NAPI_GRO_CB(p)->same_flow = 0;
5968 continue;
5969 }
5970
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005971 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005972 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5973 if (skb_vlan_tag_present(p))
Tonghao Zhangfc5141c2019-11-22 20:38:01 +08005974 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
Jesse Grossce87fc62016-01-20 17:59:49 -08005975 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005976 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005977 if (maclen == ETH_HLEN)
5978 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005979 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005980 else if (!diffs)
5981 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005982 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005983 maclen);
5984 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005985 }
5986}
5987
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00005988static inline void skb_gro_reset_offset(struct sk_buff *skb, u32 nhoff)
Jerry Chu299603e82013-12-11 20:53:45 -08005989{
5990 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5991 const skb_frag_t *frag0 = &pinfo->frags[0];
5992
5993 NAPI_GRO_CB(skb)->data_offset = 0;
5994 NAPI_GRO_CB(skb)->frag0 = NULL;
5995 NAPI_GRO_CB(skb)->frag0_len = 0;
5996
Alexander Lobakin8aef9982019-11-15 12:11:35 +03005997 if (!skb_headlen(skb) && pinfo->nr_frags &&
Eric Dumazet38ec4942021-04-13 05:41:35 -07005998 !PageHighMem(skb_frag_page(frag0)) &&
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00005999 (!NET_IP_ALIGN || !((skb_frag_off(frag0) + nhoff) & 3))) {
Jerry Chu299603e82013-12-11 20:53:45 -08006000 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08006001 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
6002 skb_frag_size(frag0),
6003 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08006004 }
6005}
6006
Eric Dumazeta50e2332014-03-29 21:28:21 -07006007static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
6008{
6009 struct skb_shared_info *pinfo = skb_shinfo(skb);
6010
6011 BUG_ON(skb->end - skb->tail < grow);
6012
6013 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
6014
6015 skb->data_len -= grow;
6016 skb->tail += grow;
6017
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07006018 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006019 skb_frag_size_sub(&pinfo->frags[0], grow);
6020
6021 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
6022 skb_frag_unref(skb, 0);
6023 memmove(pinfo->frags, pinfo->frags + 1,
6024 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
6025 }
6026}
6027
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006028static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09006029{
Li RongQing6312fe72018-07-05 14:34:32 +08006030 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09006031
Li RongQing6312fe72018-07-05 14:34:32 +08006032 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09006033
Li RongQing6312fe72018-07-05 14:34:32 +08006034 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09006035 * impossible.
6036 */
6037 if (WARN_ON_ONCE(!oldest))
6038 return;
6039
Li RongQingd9f37d02018-07-13 14:41:36 +08006040 /* Do not adjust napi->gro_hash[].count, caller is adding a new
6041 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09006042 */
David S. Millerece23712018-10-28 10:35:12 -07006043 skb_list_del_init(oldest);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006044 napi_gro_complete(napi, oldest);
David Miller07d78362018-06-24 14:14:02 +09006045}
6046
Rami Rosenbb728822012-11-28 21:55:25 +00006047static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08006048{
Alexander Lobakind0eed5c2021-03-13 20:30:14 +00006049 u32 bucket = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
6050 struct gro_list *gro_list = &napi->gro_hash[bucket];
David Millerd4546c22018-06-24 14:13:49 +09006051 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00006052 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08006053 __be16 type = skb->protocol;
David Millerd4546c22018-06-24 14:13:49 +09006054 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006055 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09006056 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006057 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08006058
David S. Millerb5cdae32017-04-18 15:36:58 -04006059 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08006060 goto normal;
6061
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006062 gro_list_prepare(&gro_list->list, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00006063
Herbert Xud565b0a2008-12-15 23:38:52 -08006064 rcu_read_lock();
6065 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00006066 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08006067 continue;
6068
Herbert Xu86911732009-01-29 14:19:50 +00006069 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00006070 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08006071 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08006072 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08006073 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07006074 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02006075 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07006076 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04006077 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08006078 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006079
Tom Herbert662880f2014-08-27 21:26:56 -07006080 /* Setup for GRO checksum validation */
6081 switch (skb->ip_summed) {
6082 case CHECKSUM_COMPLETE:
6083 NAPI_GRO_CB(skb)->csum = skb->csum;
6084 NAPI_GRO_CB(skb)->csum_valid = 1;
6085 NAPI_GRO_CB(skb)->csum_cnt = 0;
6086 break;
6087 case CHECKSUM_UNNECESSARY:
6088 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
6089 NAPI_GRO_CB(skb)->csum_valid = 0;
6090 break;
6091 default:
6092 NAPI_GRO_CB(skb)->csum_cnt = 0;
6093 NAPI_GRO_CB(skb)->csum_valid = 0;
6094 }
Herbert Xud565b0a2008-12-15 23:38:52 -08006095
Paolo Abeniaaa5d902018-12-14 11:51:58 +01006096 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
6097 ipv6_gro_receive, inet_gro_receive,
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006098 &gro_list->list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08006099 break;
6100 }
6101 rcu_read_unlock();
6102
6103 if (&ptype->list == head)
6104 goto normal;
6105
Masahiro Yamada45586c72020-02-03 17:37:45 -08006106 if (PTR_ERR(pp) == -EINPROGRESS) {
Steffen Klassert25393d32017-02-15 09:39:44 +01006107 ret = GRO_CONSUMED;
6108 goto ok;
6109 }
6110
Herbert Xu0da2afd52008-12-26 14:57:42 -08006111 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006112 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08006113
Herbert Xud565b0a2008-12-15 23:38:52 -08006114 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07006115 skb_list_del_init(pp);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006116 napi_gro_complete(napi, pp);
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006117 gro_list->count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08006118 }
6119
Herbert Xu0da2afd52008-12-26 14:57:42 -08006120 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08006121 goto ok;
6122
Eric Dumazet600adc12014-01-09 14:12:19 -08006123 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08006124 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08006125
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006126 if (unlikely(gro_list->count >= MAX_GRO_SKBS))
6127 gro_flush_oldest(napi, &gro_list->list);
6128 else
6129 gro_list->count++;
6130
Herbert Xud565b0a2008-12-15 23:38:52 -08006131 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00006132 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07006133 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00006134 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006135 list_add(&skb->list, &gro_list->list);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006136 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08006137
Herbert Xuad0f99042009-02-01 01:24:55 -08006138pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006139 grow = skb_gro_offset(skb) - skb_headlen(skb);
6140 if (grow > 0)
6141 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08006142ok:
Alexander Lobakin9dc2c312021-03-13 20:30:10 +00006143 if (gro_list->count) {
Alexander Lobakind0eed5c2021-03-13 20:30:14 +00006144 if (!test_bit(bucket, &napi->gro_bitmask))
6145 __set_bit(bucket, &napi->gro_bitmask);
6146 } else if (test_bit(bucket, &napi->gro_bitmask)) {
6147 __clear_bit(bucket, &napi->gro_bitmask);
Li RongQingd9f37d02018-07-13 14:41:36 +08006148 }
6149
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006150 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006151
6152normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08006153 ret = GRO_NORMAL;
6154 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08006155}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006156
Jerry Chubf5a7552014-01-07 10:23:19 -08006157struct packet_offload *gro_find_receive_by_type(__be16 type)
6158{
6159 struct list_head *offload_head = &offload_base;
6160 struct packet_offload *ptype;
6161
6162 list_for_each_entry_rcu(ptype, offload_head, list) {
6163 if (ptype->type != type || !ptype->callbacks.gro_receive)
6164 continue;
6165 return ptype;
6166 }
6167 return NULL;
6168}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006169EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08006170
6171struct packet_offload *gro_find_complete_by_type(__be16 type)
6172{
6173 struct list_head *offload_head = &offload_base;
6174 struct packet_offload *ptype;
6175
6176 list_for_each_entry_rcu(ptype, offload_head, list) {
6177 if (ptype->type != type || !ptype->callbacks.gro_complete)
6178 continue;
6179 return ptype;
6180 }
6181 return NULL;
6182}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006183EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006184
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006185static gro_result_t napi_skb_finish(struct napi_struct *napi,
6186 struct sk_buff *skb,
6187 gro_result_t ret)
Herbert Xu5d38a072009-01-04 16:13:40 -08006188{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006189 switch (ret) {
6190 case GRO_NORMAL:
Eric Dumazet8dc1c442021-02-04 13:31:46 -08006191 gro_normal_one(napi, skb, 1);
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006192 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006193
Eric Dumazetdaa86542012-04-19 07:07:40 +00006194 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02006195 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6196 napi_skb_free_stolen_head(skb);
6197 else
Alexander Lobakin9243adf2021-02-13 14:13:09 +00006198 __kfree_skb_defer(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00006199 break;
6200
Ben Hutchings5b252f02009-10-29 07:17:09 +00006201 case GRO_HELD:
6202 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006203 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006204 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006205 }
6206
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006207 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006208}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006209
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006210gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006211{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006212 gro_result_t ret;
6213
Eric Dumazet93f93a42015-11-18 06:30:59 -08006214 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006215 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00006216
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00006217 skb_gro_reset_offset(skb, 0);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006218
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006219 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006220 trace_napi_gro_receive_exit(ret);
6221
6222 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006223}
6224EXPORT_SYMBOL(napi_gro_receive);
6225
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00006226static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006227{
Eric Dumazet93a35f52014-10-23 06:30:30 -07006228 if (unlikely(skb->pfmemalloc)) {
6229 consume_skb(skb);
6230 return;
6231 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006232 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00006233 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
6234 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01006235 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08006236 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08006237 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08006238
6239 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
6240 skb->pkt_type = PACKET_HOST;
6241
Jerry Chuc3caf112014-07-14 15:54:46 -07006242 skb->encapsulation = 0;
6243 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07006244 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Florian Westphal174e2382019-09-26 20:37:05 +02006245 skb_ext_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006246
6247 napi->skb = skb;
6248}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006249
Herbert Xu76620aa2009-04-16 02:02:07 -07006250struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08006251{
Herbert Xu5d38a072009-01-04 16:13:40 -08006252 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08006253
6254 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08006255 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08006256 if (skb) {
6257 napi->skb = skb;
6258 skb_mark_napi_id(skb, napi);
6259 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006260 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006261 return skb;
6262}
Herbert Xu76620aa2009-04-16 02:02:07 -07006263EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006264
Eric Dumazeta50e2332014-03-29 21:28:21 -07006265static gro_result_t napi_frags_finish(struct napi_struct *napi,
6266 struct sk_buff *skb,
6267 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006268{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006269 switch (ret) {
6270 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006271 case GRO_HELD:
6272 __skb_push(skb, ETH_HLEN);
6273 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01006274 if (ret == GRO_NORMAL)
Eric Dumazet8dc1c442021-02-04 13:31:46 -08006275 gro_normal_one(napi, skb, 1);
Herbert Xu86911732009-01-29 14:19:50 +00006276 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006277
Michal Kubečeke44699d2017-06-29 11:13:36 +02006278 case GRO_MERGED_FREE:
6279 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6280 napi_skb_free_stolen_head(skb);
6281 else
6282 napi_reuse_skb(napi, skb);
6283 break;
6284
Ben Hutchings5b252f02009-10-29 07:17:09 +00006285 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006286 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006287 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006288 }
6289
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006290 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006291}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006292
Eric Dumazeta50e2332014-03-29 21:28:21 -07006293/* Upper GRO stack assumes network header starts at gro_offset=0
6294 * Drivers could call both napi_gro_frags() and napi_gro_receive()
6295 * We copy ethernet header into skb->data to have a common layout.
6296 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00006297static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006298{
Herbert Xu76620aa2009-04-16 02:02:07 -07006299 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006300 const struct ethhdr *eth;
6301 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07006302
6303 napi->skb = NULL;
6304
Eric Dumazeta50e2332014-03-29 21:28:21 -07006305 skb_reset_mac_header(skb);
Alexander Lobakin7ad18ff2021-04-19 12:53:06 +00006306 skb_gro_reset_offset(skb, hlen);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006307
Eric Dumazeta50e2332014-03-29 21:28:21 -07006308 if (unlikely(skb_gro_header_hard(skb, hlen))) {
6309 eth = skb_gro_header_slow(skb, hlen, 0);
6310 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04006311 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
6312 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006313 napi_reuse_skb(napi, skb);
6314 return NULL;
6315 }
6316 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07006317 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006318 gro_pull_from_frag0(skb, hlen);
6319 NAPI_GRO_CB(skb)->frag0 += hlen;
6320 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07006321 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07006322 __skb_pull(skb, hlen);
6323
6324 /*
6325 * This works because the only protocols we care about don't require
6326 * special handling.
6327 * We'll fix it up properly in napi_frags_finish()
6328 */
6329 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07006330
Herbert Xu76620aa2009-04-16 02:02:07 -07006331 return skb;
6332}
Herbert Xu76620aa2009-04-16 02:02:07 -07006333
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006334gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07006335{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006336 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07006337 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006338
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006339 trace_napi_gro_frags_entry(skb);
6340
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006341 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6342 trace_napi_gro_frags_exit(ret);
6343
6344 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08006345}
6346EXPORT_SYMBOL(napi_gro_frags);
6347
Tom Herbert573e8fc2014-08-22 13:33:47 -07006348/* Compute the checksum from gro_offset and return the folded value
6349 * after adding in any pseudo checksum.
6350 */
6351__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6352{
6353 __wsum wsum;
6354 __sum16 sum;
6355
6356 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6357
6358 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6359 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08006360 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07006361 if (likely(!sum)) {
6362 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6363 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08006364 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07006365 }
6366
6367 NAPI_GRO_CB(skb)->csum = wsum;
6368 NAPI_GRO_CB(skb)->csum_valid = 1;
6369
6370 return sum;
6371}
6372EXPORT_SYMBOL(__skb_gro_checksum_complete);
6373
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306374static void net_rps_send_ipi(struct softnet_data *remsd)
6375{
6376#ifdef CONFIG_RPS
6377 while (remsd) {
6378 struct softnet_data *next = remsd->rps_ipi_next;
6379
6380 if (cpu_online(remsd->cpu))
6381 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6382 remsd = next;
6383 }
6384#endif
6385}
6386
Eric Dumazete326bed2010-04-22 00:22:45 -07006387/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08006388 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07006389 * Note: called with local irq disabled, but exits with local irq enabled.
6390 */
6391static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6392{
6393#ifdef CONFIG_RPS
6394 struct softnet_data *remsd = sd->rps_ipi_list;
6395
6396 if (remsd) {
6397 sd->rps_ipi_list = NULL;
6398
6399 local_irq_enable();
6400
6401 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306402 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07006403 } else
6404#endif
6405 local_irq_enable();
6406}
6407
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006408static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6409{
6410#ifdef CONFIG_RPS
6411 return sd->rps_ipi_list != NULL;
6412#else
6413 return false;
6414#endif
6415}
6416
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006417static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006419 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006420 bool again = true;
6421 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422
Eric Dumazete326bed2010-04-22 00:22:45 -07006423 /* Check if we have pending ipi, its better to send them now,
6424 * not waiting net_rx_action() end.
6425 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006426 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07006427 local_irq_disable();
6428 net_rps_action_and_irq_enable(sd);
6429 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006430
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01006431 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006432 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
Changli Gao6e7676c2010-04-27 15:07:33 -07006435 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03006436 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07006437 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03006438 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00006439 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006440 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00006441 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006442
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006445 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006446 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07006447 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006448 /*
6449 * Inline a custom version of __napi_complete().
6450 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07006451 * and NAPI_STATE_SCHED is the only possible flag set
6452 * on backlog.
6453 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006454 * and we dont need an smp_mb() memory barrier.
6455 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006456 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006457 again = false;
6458 } else {
6459 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6460 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07006461 }
6462 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006463 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006466 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467}
6468
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006469/**
6470 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006471 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006472 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006473 * The entry's receive function will be scheduled to run.
6474 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006475 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08006476void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006477{
6478 unsigned long flags;
6479
6480 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05006481 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006482 local_irq_restore(flags);
6483}
6484EXPORT_SYMBOL(__napi_schedule);
6485
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006486/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006487 * napi_schedule_prep - check if napi can be scheduled
6488 * @n: napi context
6489 *
6490 * Test if NAPI routine is already running, and if not mark
Jonathan Neuschäferee1a4c82020-09-05 20:32:18 +02006491 * it as running. This is used as a condition variable to
Eric Dumazet39e6c822017-02-28 10:34:50 -08006492 * insure only one NAPI poll instance runs. We also make
6493 * sure there is no pending NAPI disable.
6494 */
6495bool napi_schedule_prep(struct napi_struct *n)
6496{
6497 unsigned long val, new;
6498
6499 do {
6500 val = READ_ONCE(n->state);
6501 if (unlikely(val & NAPIF_STATE_DISABLE))
6502 return false;
6503 new = val | NAPIF_STATE_SCHED;
6504
6505 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6506 * This was suggested by Alexander Duyck, as compiler
6507 * emits better code than :
6508 * if (val & NAPIF_STATE_SCHED)
6509 * new |= NAPIF_STATE_MISSED;
6510 */
6511 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6512 NAPIF_STATE_MISSED;
6513 } while (cmpxchg(&n->state, val, new) != val);
6514
6515 return !(val & NAPIF_STATE_SCHED);
6516}
6517EXPORT_SYMBOL(napi_schedule_prep);
6518
6519/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006520 * __napi_schedule_irqoff - schedule for receive
6521 * @n: entry to schedule
6522 *
Sebastian Andrzej Siewior8380c812021-05-12 23:43:24 +02006523 * Variant of __napi_schedule() assuming hard irqs are masked.
6524 *
6525 * On PREEMPT_RT enabled kernels this maps to __napi_schedule()
6526 * because the interrupt disabled assumption might not be true
6527 * due to force-threaded interrupts and spinlock substitution.
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006528 */
6529void __napi_schedule_irqoff(struct napi_struct *n)
6530{
Sebastian Andrzej Siewior8380c812021-05-12 23:43:24 +02006531 if (!IS_ENABLED(CONFIG_PREEMPT_RT))
6532 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6533 else
6534 __napi_schedule(n);
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006535}
6536EXPORT_SYMBOL(__napi_schedule_irqoff);
6537
Eric Dumazet364b6052016-11-15 10:15:13 -08006538bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006539{
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006540 unsigned long flags, val, new, timeout = 0;
6541 bool ret = true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006542
6543 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006544 * 1) Don't let napi dequeue from the cpu poll list
6545 * just in case its running on a different cpu.
6546 * 2) If we are busy polling, do nothing here, we have
6547 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006548 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006549 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6550 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006551 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006552
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006553 if (work_done) {
6554 if (n->gro_bitmask)
Eric Dumazet7e417a62020-04-22 09:13:28 -07006555 timeout = READ_ONCE(n->dev->gro_flush_timeout);
6556 n->defer_hard_irqs_count = READ_ONCE(n->dev->napi_defer_hard_irqs);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006557 }
6558 if (n->defer_hard_irqs_count > 0) {
6559 n->defer_hard_irqs_count--;
Eric Dumazet7e417a62020-04-22 09:13:28 -07006560 timeout = READ_ONCE(n->dev->gro_flush_timeout);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006561 if (timeout)
6562 ret = false;
6563 }
6564 if (n->gro_bitmask) {
Paolo Abeni605108a2018-11-21 18:21:35 +01006565 /* When the NAPI instance uses a timeout and keeps postponing
6566 * it, we need to bound somehow the time packets are kept in
6567 * the GRO layer
6568 */
6569 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006570 }
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006571
6572 gro_normal_list(n);
6573
Eric Dumazet02c16022017-02-04 15:25:02 -08006574 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006575 /* If n->poll_list is not empty, we need to mask irqs */
6576 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006577 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006578 local_irq_restore(flags);
6579 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006580
6581 do {
6582 val = READ_ONCE(n->state);
6583
6584 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6585
Björn Töpel7fd32532020-11-30 19:51:56 +01006586 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED |
Wei Wangcb038352021-03-16 15:36:47 -07006587 NAPIF_STATE_SCHED_THREADED |
Björn Töpel7fd32532020-11-30 19:51:56 +01006588 NAPIF_STATE_PREFER_BUSY_POLL);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006589
6590 /* If STATE_MISSED was set, leave STATE_SCHED set,
6591 * because we will call napi->poll() one more time.
6592 * This C code was suggested by Alexander Duyck to help gcc.
6593 */
6594 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6595 NAPIF_STATE_SCHED;
6596 } while (cmpxchg(&n->state, val, new) != val);
6597
6598 if (unlikely(val & NAPIF_STATE_MISSED)) {
6599 __napi_schedule(n);
6600 return false;
6601 }
6602
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006603 if (timeout)
6604 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6605 HRTIMER_MODE_REL_PINNED);
6606 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006607}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006608EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006609
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006610/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006611static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006612{
6613 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6614 struct napi_struct *napi;
6615
6616 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6617 if (napi->napi_id == napi_id)
6618 return napi;
6619
6620 return NULL;
6621}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006622
6623#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006624
Björn Töpel7fd32532020-11-30 19:51:56 +01006625static void __busy_poll_stop(struct napi_struct *napi, bool skip_schedule)
Eric Dumazet217f6972016-11-15 10:15:11 -08006626{
Björn Töpel7fd32532020-11-30 19:51:56 +01006627 if (!skip_schedule) {
6628 gro_normal_list(napi);
6629 __napi_schedule(napi);
6630 return;
6631 }
6632
6633 if (napi->gro_bitmask) {
6634 /* flush too old packets
6635 * If HZ < 1000, flush all packets.
6636 */
6637 napi_gro_flush(napi, HZ >= 1000);
6638 }
6639
6640 gro_normal_list(napi);
6641 clear_bit(NAPI_STATE_SCHED, &napi->state);
6642}
6643
Björn Töpel7c951caf2020-11-30 19:51:57 +01006644static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock, bool prefer_busy_poll,
6645 u16 budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006646{
6647 bool skip_schedule = false;
6648 unsigned long timeout;
Eric Dumazet217f6972016-11-15 10:15:11 -08006649 int rc;
6650
Eric Dumazet39e6c822017-02-28 10:34:50 -08006651 /* Busy polling means there is a high chance device driver hard irq
6652 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6653 * set in napi_schedule_prep().
6654 * Since we are about to call napi->poll() once more, we can safely
6655 * clear NAPI_STATE_MISSED.
6656 *
6657 * Note: x86 could use a single "lock and ..." instruction
6658 * to perform these two clear_bit()
6659 */
6660 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006661 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6662
6663 local_bh_disable();
6664
Björn Töpel7fd32532020-11-30 19:51:56 +01006665 if (prefer_busy_poll) {
6666 napi->defer_hard_irqs_count = READ_ONCE(napi->dev->napi_defer_hard_irqs);
6667 timeout = READ_ONCE(napi->dev->gro_flush_timeout);
6668 if (napi->defer_hard_irqs_count && timeout) {
6669 hrtimer_start(&napi->timer, ns_to_ktime(timeout), HRTIMER_MODE_REL_PINNED);
6670 skip_schedule = true;
6671 }
6672 }
6673
Eric Dumazet217f6972016-11-15 10:15:11 -08006674 /* All we really want here is to re-enable device interrupts.
6675 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6676 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006677 rc = napi->poll(napi, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006678 /* We can't gro_normal_list() here, because napi->poll() might have
6679 * rearmed the napi (napi_complete_done()) in which case it could
6680 * already be running on another CPU.
6681 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006682 trace_napi_poll(napi, rc, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006683 netpoll_poll_unlock(have_poll_lock);
Björn Töpel7c951caf2020-11-30 19:51:57 +01006684 if (rc == budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006685 __busy_poll_stop(napi, skip_schedule);
Eric Dumazet217f6972016-11-15 10:15:11 -08006686 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006687}
6688
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006689void napi_busy_loop(unsigned int napi_id,
6690 bool (*loop_end)(void *, unsigned long),
Björn Töpel7c951caf2020-11-30 19:51:57 +01006691 void *loop_end_arg, bool prefer_busy_poll, u16 budget)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006692{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006693 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006694 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006695 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006696 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006697
6698restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006699 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006700
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006701 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006702
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006703 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006704 if (!napi)
6705 goto out;
6706
Eric Dumazet217f6972016-11-15 10:15:11 -08006707 preempt_disable();
6708 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006709 int work = 0;
6710
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006711 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006712 if (!napi_poll) {
6713 unsigned long val = READ_ONCE(napi->state);
6714
6715 /* If multiple threads are competing for this napi,
6716 * we avoid dirtying napi->state as much as we can.
6717 */
6718 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
Björn Töpel7fd32532020-11-30 19:51:56 +01006719 NAPIF_STATE_IN_BUSY_POLL)) {
6720 if (prefer_busy_poll)
6721 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006722 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006723 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006724 if (cmpxchg(&napi->state, val,
6725 val | NAPIF_STATE_IN_BUSY_POLL |
Björn Töpel7fd32532020-11-30 19:51:56 +01006726 NAPIF_STATE_SCHED) != val) {
6727 if (prefer_busy_poll)
6728 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006729 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006730 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006731 have_poll_lock = netpoll_poll_lock(napi);
6732 napi_poll = napi->poll;
6733 }
Björn Töpel7c951caf2020-11-30 19:51:57 +01006734 work = napi_poll(napi, budget);
6735 trace_napi_poll(napi, work, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006736 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006737count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006738 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006739 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006740 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006741 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006742
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006743 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006744 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006745
Eric Dumazet217f6972016-11-15 10:15:11 -08006746 if (unlikely(need_resched())) {
6747 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006748 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006749 preempt_enable();
6750 rcu_read_unlock();
6751 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006752 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006753 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006754 goto restart;
6755 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006756 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006757 }
6758 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006759 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006760 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006761out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006762 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006763}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006764EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006765
6766#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006767
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006768static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006769{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006770 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006771 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006772
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006773 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006774
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006775 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006776 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006777 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6778 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006779 } while (napi_by_id(napi_gen_id));
6780 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006781
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006782 hlist_add_head_rcu(&napi->napi_hash_node,
6783 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006784
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006785 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006786}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006787
6788/* Warning : caller is responsible to make sure rcu grace period
6789 * is respected before freeing memory containing @napi
6790 */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006791static void napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006792{
6793 spin_lock(&napi_hash_lock);
6794
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006795 hlist_del_init_rcu(&napi->napi_hash_node);
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006796
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006797 spin_unlock(&napi_hash_lock);
6798}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006799
Eric Dumazet3b47d302014-11-06 21:09:44 -08006800static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6801{
6802 struct napi_struct *napi;
6803
6804 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006805
6806 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6807 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6808 */
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006809 if (!napi_disable_pending(napi) &&
Björn Töpel7fd32532020-11-30 19:51:56 +01006810 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state)) {
6811 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006812 __napi_schedule_irqoff(napi);
Björn Töpel7fd32532020-11-30 19:51:56 +01006813 }
Eric Dumazet3b47d302014-11-06 21:09:44 -08006814
6815 return HRTIMER_NORESTART;
6816}
6817
David S. Miller7c4ec742018-07-20 23:37:55 -07006818static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006819{
David Miller07d78362018-06-24 14:14:02 +09006820 int i;
6821
Li RongQing6312fe72018-07-05 14:34:32 +08006822 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6823 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6824 napi->gro_hash[i].count = 0;
6825 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006826 napi->gro_bitmask = 0;
6827}
6828
Wei Wang5fdd2f02021-02-08 11:34:10 -08006829int dev_set_threaded(struct net_device *dev, bool threaded)
6830{
6831 struct napi_struct *napi;
6832 int err = 0;
6833
6834 if (dev->threaded == threaded)
6835 return 0;
6836
6837 if (threaded) {
6838 list_for_each_entry(napi, &dev->napi_list, dev_list) {
6839 if (!napi->thread) {
6840 err = napi_kthread_create(napi);
6841 if (err) {
6842 threaded = false;
6843 break;
6844 }
6845 }
6846 }
6847 }
6848
6849 dev->threaded = threaded;
6850
6851 /* Make sure kthread is created before THREADED bit
6852 * is set.
6853 */
6854 smp_mb__before_atomic();
6855
6856 /* Setting/unsetting threaded mode on a napi might not immediately
6857 * take effect, if the current napi instance is actively being
6858 * polled. In this case, the switch between threaded mode and
6859 * softirq mode will happen in the next round of napi_schedule().
6860 * This should not cause hiccups/stalls to the live traffic.
6861 */
6862 list_for_each_entry(napi, &dev->napi_list, dev_list) {
6863 if (threaded)
6864 set_bit(NAPI_STATE_THREADED, &napi->state);
6865 else
6866 clear_bit(NAPI_STATE_THREADED, &napi->state);
6867 }
6868
6869 return err;
6870}
Lorenzo Bianconi8f648602021-03-14 15:49:19 +01006871EXPORT_SYMBOL(dev_set_threaded);
Wei Wang5fdd2f02021-02-08 11:34:10 -08006872
David S. Miller7c4ec742018-07-20 23:37:55 -07006873void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6874 int (*poll)(struct napi_struct *, int), int weight)
6875{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006876 if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
6877 return;
6878
David S. Miller7c4ec742018-07-20 23:37:55 -07006879 INIT_LIST_HEAD(&napi->poll_list);
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006880 INIT_HLIST_NODE(&napi->napi_hash_node);
David S. Miller7c4ec742018-07-20 23:37:55 -07006881 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6882 napi->timer.function = napi_watchdog;
6883 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006884 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006885 INIT_LIST_HEAD(&napi->rx_list);
6886 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006887 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006888 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006889 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6890 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006891 napi->weight = weight;
Herbert Xud565b0a2008-12-15 23:38:52 -08006892 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006893#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006894 napi->poll_owner = -1;
6895#endif
6896 set_bit(NAPI_STATE_SCHED, &napi->state);
Jakub Kicinski96e97bc2020-08-26 12:40:06 -07006897 set_bit(NAPI_STATE_NPSVC, &napi->state);
6898 list_add_rcu(&napi->dev_list, &dev->napi_list);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006899 napi_hash_add(napi);
Wei Wang29863d42021-02-08 11:34:09 -08006900 /* Create kthread for this napi if dev->threaded is set.
6901 * Clear dev->threaded if kthread creation failed so that
6902 * threaded mode will not be enabled in napi_enable().
6903 */
6904 if (dev->threaded && napi_kthread_create(napi))
6905 dev->threaded = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006906}
6907EXPORT_SYMBOL(netif_napi_add);
6908
Eric Dumazet3b47d302014-11-06 21:09:44 -08006909void napi_disable(struct napi_struct *n)
6910{
6911 might_sleep();
6912 set_bit(NAPI_STATE_DISABLE, &n->state);
6913
6914 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6915 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006916 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6917 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006918
6919 hrtimer_cancel(&n->timer);
6920
Björn Töpel7fd32532020-11-30 19:51:56 +01006921 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &n->state);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006922 clear_bit(NAPI_STATE_DISABLE, &n->state);
Wei Wang29863d42021-02-08 11:34:09 -08006923 clear_bit(NAPI_STATE_THREADED, &n->state);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006924}
6925EXPORT_SYMBOL(napi_disable);
6926
Wei Wang29863d42021-02-08 11:34:09 -08006927/**
6928 * napi_enable - enable NAPI scheduling
6929 * @n: NAPI context
6930 *
6931 * Resume NAPI from being scheduled on this context.
6932 * Must be paired with napi_disable.
6933 */
6934void napi_enable(struct napi_struct *n)
6935{
6936 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
6937 smp_mb__before_atomic();
6938 clear_bit(NAPI_STATE_SCHED, &n->state);
6939 clear_bit(NAPI_STATE_NPSVC, &n->state);
6940 if (n->dev->threaded && n->thread)
6941 set_bit(NAPI_STATE_THREADED, &n->state);
6942}
6943EXPORT_SYMBOL(napi_enable);
6944
David Miller07d78362018-06-24 14:14:02 +09006945static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006946{
David Miller07d78362018-06-24 14:14:02 +09006947 int i;
David Millerd4546c22018-06-24 14:13:49 +09006948
David Miller07d78362018-06-24 14:14:02 +09006949 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6950 struct sk_buff *skb, *n;
6951
Li RongQing6312fe72018-07-05 14:34:32 +08006952 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006953 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006954 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006955 }
David Millerd4546c22018-06-24 14:13:49 +09006956}
6957
Eric Dumazet93d05d42015-11-18 06:31:03 -08006958/* Must be called in process context */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006959void __netif_napi_del(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006960{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006961 if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
6962 return;
6963
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006964 napi_hash_del(napi);
Jakub Kicinski5251ef82020-09-09 10:37:53 -07006965 list_del_rcu(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006966 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006967
David Miller07d78362018-06-24 14:14:02 +09006968 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006969 napi->gro_bitmask = 0;
Wei Wang29863d42021-02-08 11:34:09 -08006970
6971 if (napi->thread) {
6972 kthread_stop(napi->thread);
6973 napi->thread = NULL;
6974 }
Herbert Xud565b0a2008-12-15 23:38:52 -08006975}
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006976EXPORT_SYMBOL(__netif_napi_del);
Herbert Xud565b0a2008-12-15 23:38:52 -08006977
Felix Fietkau898f8012021-02-08 11:34:08 -08006978static int __napi_poll(struct napi_struct *n, bool *repoll)
Herbert Xu726ce702014-12-21 07:16:21 +11006979{
Herbert Xu726ce702014-12-21 07:16:21 +11006980 int work, weight;
6981
Herbert Xu726ce702014-12-21 07:16:21 +11006982 weight = n->weight;
6983
6984 /* This NAPI_STATE_SCHED test is for avoiding a race
6985 * with netpoll's poll_napi(). Only the entity which
6986 * obtains the lock and sees NAPI_STATE_SCHED set will
6987 * actually make the ->poll() call. Therefore we avoid
6988 * accidentally calling ->poll() when NAPI is not scheduled.
6989 */
6990 work = 0;
6991 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6992 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006993 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006994 }
6995
Eric Dumazet427d5832020-06-17 09:40:51 -07006996 if (unlikely(work > weight))
6997 pr_err_once("NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
6998 n->poll, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006999
7000 if (likely(work < weight))
Felix Fietkau898f8012021-02-08 11:34:08 -08007001 return work;
Herbert Xu726ce702014-12-21 07:16:21 +11007002
7003 /* Drivers must not modify the NAPI state if they
7004 * consume the entire weight. In such cases this code
7005 * still "owns" the NAPI instance and therefore can
7006 * move the instance around on the list at-will.
7007 */
7008 if (unlikely(napi_disable_pending(n))) {
7009 napi_complete(n);
Felix Fietkau898f8012021-02-08 11:34:08 -08007010 return work;
Herbert Xu726ce702014-12-21 07:16:21 +11007011 }
7012
Björn Töpel7fd32532020-11-30 19:51:56 +01007013 /* The NAPI context has more processing work, but busy-polling
7014 * is preferred. Exit early.
7015 */
7016 if (napi_prefer_busy_poll(n)) {
7017 if (napi_complete_done(n, work)) {
7018 /* If timeout is not set, we need to make sure
7019 * that the NAPI is re-scheduled.
7020 */
7021 napi_schedule(n);
7022 }
Felix Fietkau898f8012021-02-08 11:34:08 -08007023 return work;
Björn Töpel7fd32532020-11-30 19:51:56 +01007024 }
7025
Li RongQingd9f37d02018-07-13 14:41:36 +08007026 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11007027 /* flush too old packets
7028 * If HZ < 1000, flush all packets.
7029 */
7030 napi_gro_flush(n, HZ >= 1000);
7031 }
7032
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00007033 gro_normal_list(n);
7034
Herbert Xu001ce542014-12-21 07:16:22 +11007035 /* Some drivers may have called napi_schedule
7036 * prior to exhausting their budget.
7037 */
7038 if (unlikely(!list_empty(&n->poll_list))) {
7039 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
7040 n->dev ? n->dev->name : "backlog");
Felix Fietkau898f8012021-02-08 11:34:08 -08007041 return work;
Herbert Xu001ce542014-12-21 07:16:22 +11007042 }
7043
Felix Fietkau898f8012021-02-08 11:34:08 -08007044 *repoll = true;
Herbert Xu726ce702014-12-21 07:16:21 +11007045
Felix Fietkau898f8012021-02-08 11:34:08 -08007046 return work;
7047}
7048
7049static int napi_poll(struct napi_struct *n, struct list_head *repoll)
7050{
7051 bool do_repoll = false;
7052 void *have;
7053 int work;
7054
7055 list_del_init(&n->poll_list);
7056
7057 have = netpoll_poll_lock(n);
7058
7059 work = __napi_poll(n, &do_repoll);
7060
7061 if (do_repoll)
7062 list_add_tail(&n->poll_list, repoll);
7063
Herbert Xu726ce702014-12-21 07:16:21 +11007064 netpoll_poll_unlock(have);
7065
7066 return work;
7067}
7068
Wei Wang29863d42021-02-08 11:34:09 -08007069static int napi_thread_wait(struct napi_struct *napi)
7070{
Wei Wangcb038352021-03-16 15:36:47 -07007071 bool woken = false;
7072
Wei Wang29863d42021-02-08 11:34:09 -08007073 set_current_state(TASK_INTERRUPTIBLE);
7074
Paolo Abeni27f0ad72021-04-09 17:24:17 +02007075 while (!kthread_should_stop()) {
Wei Wangcb038352021-03-16 15:36:47 -07007076 /* Testing SCHED_THREADED bit here to make sure the current
7077 * kthread owns this napi and could poll on this napi.
7078 * Testing SCHED bit is not enough because SCHED bit might be
7079 * set by some other busy poll thread or by napi_disable().
7080 */
7081 if (test_bit(NAPI_STATE_SCHED_THREADED, &napi->state) || woken) {
Wei Wang29863d42021-02-08 11:34:09 -08007082 WARN_ON(!list_empty(&napi->poll_list));
7083 __set_current_state(TASK_RUNNING);
7084 return 0;
7085 }
7086
7087 schedule();
Wei Wangcb038352021-03-16 15:36:47 -07007088 /* woken being true indicates this thread owns this napi. */
7089 woken = true;
Wei Wang29863d42021-02-08 11:34:09 -08007090 set_current_state(TASK_INTERRUPTIBLE);
7091 }
7092 __set_current_state(TASK_RUNNING);
Paolo Abeni27f0ad72021-04-09 17:24:17 +02007093
Wei Wang29863d42021-02-08 11:34:09 -08007094 return -1;
7095}
7096
7097static int napi_threaded_poll(void *data)
7098{
7099 struct napi_struct *napi = data;
7100 void *have;
7101
7102 while (!napi_thread_wait(napi)) {
7103 for (;;) {
7104 bool repoll = false;
7105
7106 local_bh_disable();
7107
7108 have = netpoll_poll_lock(napi);
7109 __napi_poll(napi, &repoll);
7110 netpoll_poll_unlock(have);
7111
Wei Wang29863d42021-02-08 11:34:09 -08007112 local_bh_enable();
7113
7114 if (!repoll)
7115 break;
7116
7117 cond_resched();
7118 }
7119 }
7120 return 0;
7121}
7122
Emese Revfy0766f782016-06-20 20:42:34 +02007123static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007124{
Christoph Lameter903ceff2014-08-17 12:30:35 -05007125 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04007126 unsigned long time_limit = jiffies +
7127 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07007128 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007129 LIST_HEAD(list);
7130 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07007131
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007133 list_splice_init(&sd->poll_list, &list);
7134 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007135
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007136 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007137 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007138
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007139 if (list_empty(&list)) {
7140 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Alexander Lobakinfec6e492021-02-13 14:12:02 +00007141 return;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007142 break;
7143 }
7144
Herbert Xu6bd373e2014-12-21 07:16:24 +11007145 n = list_first_entry(&list, struct napi_struct, poll_list);
7146 budget -= napi_poll(n, &repoll);
7147
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007148 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08007149 * Allow this to run for 2 jiffies since which will allow
7150 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007151 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007152 if (unlikely(budget <= 0 ||
7153 time_after_eq(jiffies, time_limit))) {
7154 sd->time_squeeze++;
7155 break;
7156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007158
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007159 local_irq_disable();
7160
7161 list_splice_tail_init(&sd->poll_list, &list);
7162 list_splice_tail(&repoll, &list);
7163 list_splice(&list, &sd->poll_list);
7164 if (!list_empty(&sd->poll_list))
7165 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
7166
Eric Dumazete326bed2010-04-22 00:22:45 -07007167 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168}
7169
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007170struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007171 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007172
7173 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007174 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007175
Taehee Yoo32b6d342019-10-21 18:47:56 +00007176 /* lookup ignore flag */
7177 bool ignore;
7178
Veaceslav Falico5d261912013-08-28 23:25:05 +02007179 /* counter for the number of times this device was added to us */
7180 u16 ref_nr;
7181
Veaceslav Falico402dae92013-09-25 09:20:09 +02007182 /* private field for the users */
7183 void *private;
7184
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007185 struct list_head list;
7186 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007187};
7188
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007189static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007190 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007191{
Veaceslav Falico5d261912013-08-28 23:25:05 +02007192 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007193
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007194 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02007195 if (adj->dev == adj_dev)
7196 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007197 }
7198 return NULL;
7199}
7200
Taehee Yooeff74232020-09-25 18:13:12 +00007201static int ____netdev_has_upper_dev(struct net_device *upper_dev,
7202 struct netdev_nested_priv *priv)
David Ahernf1170fd2016-10-17 19:15:51 -07007203{
Taehee Yooeff74232020-09-25 18:13:12 +00007204 struct net_device *dev = (struct net_device *)priv->data;
David Ahernf1170fd2016-10-17 19:15:51 -07007205
7206 return upper_dev == dev;
7207}
7208
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007209/**
7210 * netdev_has_upper_dev - Check if device is linked to an upper device
7211 * @dev: device
7212 * @upper_dev: upper device to check
7213 *
7214 * Find out if a device is linked to specified upper device and return true
7215 * in case it is. Note that this checks only immediate upper device,
7216 * not through a complete stack of devices. The caller must hold the RTNL lock.
7217 */
7218bool netdev_has_upper_dev(struct net_device *dev,
7219 struct net_device *upper_dev)
7220{
Taehee Yooeff74232020-09-25 18:13:12 +00007221 struct netdev_nested_priv priv = {
7222 .data = (void *)upper_dev,
7223 };
7224
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007225 ASSERT_RTNL();
7226
Taehee Yoo32b6d342019-10-21 18:47:56 +00007227 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007228 &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007229}
7230EXPORT_SYMBOL(netdev_has_upper_dev);
7231
7232/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01007233 * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device
David Ahern1a3f0602016-10-17 19:15:44 -07007234 * @dev: device
7235 * @upper_dev: upper device to check
7236 *
7237 * Find out if a device is linked to specified upper device and return true
7238 * in case it is. Note that this checks the entire upper device chain.
7239 * The caller must hold rcu lock.
7240 */
7241
David Ahern1a3f0602016-10-17 19:15:44 -07007242bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
7243 struct net_device *upper_dev)
7244{
Taehee Yooeff74232020-09-25 18:13:12 +00007245 struct netdev_nested_priv priv = {
7246 .data = (void *)upper_dev,
7247 };
7248
Taehee Yoo32b6d342019-10-21 18:47:56 +00007249 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007250 &priv);
David Ahern1a3f0602016-10-17 19:15:44 -07007251}
7252EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
7253
7254/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007255 * netdev_has_any_upper_dev - Check if device is linked to some device
7256 * @dev: device
7257 *
7258 * Find out if a device is linked to an upper device and return true in case
7259 * it is. The caller must hold the RTNL lock.
7260 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02007261bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007262{
7263 ASSERT_RTNL();
7264
David Ahernf1170fd2016-10-17 19:15:51 -07007265 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007266}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02007267EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007268
7269/**
7270 * netdev_master_upper_dev_get - Get master upper device
7271 * @dev: device
7272 *
7273 * Find a master upper device and return pointer to it or NULL in case
7274 * it's not there. The caller must hold the RTNL lock.
7275 */
7276struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
7277{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007278 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007279
7280 ASSERT_RTNL();
7281
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007282 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007283 return NULL;
7284
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007285 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007286 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007287 if (likely(upper->master))
7288 return upper->dev;
7289 return NULL;
7290}
7291EXPORT_SYMBOL(netdev_master_upper_dev_get);
7292
Taehee Yoo32b6d342019-10-21 18:47:56 +00007293static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
7294{
7295 struct netdev_adjacent *upper;
7296
7297 ASSERT_RTNL();
7298
7299 if (list_empty(&dev->adj_list.upper))
7300 return NULL;
7301
7302 upper = list_first_entry(&dev->adj_list.upper,
7303 struct netdev_adjacent, list);
7304 if (likely(upper->master) && !upper->ignore)
7305 return upper->dev;
7306 return NULL;
7307}
7308
David Ahern0f524a82016-10-17 19:15:52 -07007309/**
7310 * netdev_has_any_lower_dev - Check if device is linked to some device
7311 * @dev: device
7312 *
7313 * Find out if a device is linked to a lower device and return true in case
7314 * it is. The caller must hold the RTNL lock.
7315 */
7316static bool netdev_has_any_lower_dev(struct net_device *dev)
7317{
7318 ASSERT_RTNL();
7319
7320 return !list_empty(&dev->adj_list.lower);
7321}
7322
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02007323void *netdev_adjacent_get_private(struct list_head *adj_list)
7324{
7325 struct netdev_adjacent *adj;
7326
7327 adj = list_entry(adj_list, struct netdev_adjacent, list);
7328
7329 return adj->private;
7330}
7331EXPORT_SYMBOL(netdev_adjacent_get_private);
7332
Veaceslav Falico31088a12013-09-25 09:20:12 +02007333/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04007334 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
7335 * @dev: device
7336 * @iter: list_head ** of the current position
7337 *
7338 * Gets the next device from the dev's upper list, starting from iter
7339 * position. The caller must hold RCU read lock.
7340 */
7341struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
7342 struct list_head **iter)
7343{
7344 struct netdev_adjacent *upper;
7345
7346 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7347
7348 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7349
7350 if (&upper->list == &dev->adj_list.upper)
7351 return NULL;
7352
7353 *iter = &upper->list;
7354
7355 return upper->dev;
7356}
7357EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
7358
Taehee Yoo32b6d342019-10-21 18:47:56 +00007359static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
7360 struct list_head **iter,
7361 bool *ignore)
Taehee Yoo5343da42019-10-21 18:47:50 +00007362{
7363 struct netdev_adjacent *upper;
7364
7365 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
7366
7367 if (&upper->list == &dev->adj_list.upper)
7368 return NULL;
7369
7370 *iter = &upper->list;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007371 *ignore = upper->ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007372
7373 return upper->dev;
7374}
7375
David Ahern1a3f0602016-10-17 19:15:44 -07007376static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
7377 struct list_head **iter)
7378{
7379 struct netdev_adjacent *upper;
7380
7381 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7382
7383 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7384
7385 if (&upper->list == &dev->adj_list.upper)
7386 return NULL;
7387
7388 *iter = &upper->list;
7389
7390 return upper->dev;
7391}
7392
Taehee Yoo32b6d342019-10-21 18:47:56 +00007393static int __netdev_walk_all_upper_dev(struct net_device *dev,
7394 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007395 struct netdev_nested_priv *priv),
7396 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007397{
7398 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7399 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7400 int ret, cur = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007401 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007402
7403 now = dev;
7404 iter = &dev->adj_list.upper;
7405
7406 while (1) {
7407 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007408 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007409 if (ret)
7410 return ret;
7411 }
7412
7413 next = NULL;
7414 while (1) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007415 udev = __netdev_next_upper_dev(now, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007416 if (!udev)
7417 break;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007418 if (ignore)
7419 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007420
7421 next = udev;
7422 niter = &udev->adj_list.upper;
7423 dev_stack[cur] = now;
7424 iter_stack[cur++] = iter;
7425 break;
7426 }
7427
7428 if (!next) {
7429 if (!cur)
7430 return 0;
7431 next = dev_stack[--cur];
7432 niter = iter_stack[cur];
7433 }
7434
7435 now = next;
7436 iter = niter;
7437 }
7438
7439 return 0;
7440}
7441
David Ahern1a3f0602016-10-17 19:15:44 -07007442int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
7443 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007444 struct netdev_nested_priv *priv),
7445 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007446{
Taehee Yoo5343da42019-10-21 18:47:50 +00007447 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7448 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7449 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007450
Taehee Yoo5343da42019-10-21 18:47:50 +00007451 now = dev;
7452 iter = &dev->adj_list.upper;
David Ahern1a3f0602016-10-17 19:15:44 -07007453
Taehee Yoo5343da42019-10-21 18:47:50 +00007454 while (1) {
7455 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007456 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007457 if (ret)
7458 return ret;
7459 }
7460
7461 next = NULL;
7462 while (1) {
7463 udev = netdev_next_upper_dev_rcu(now, &iter);
7464 if (!udev)
7465 break;
7466
7467 next = udev;
7468 niter = &udev->adj_list.upper;
7469 dev_stack[cur] = now;
7470 iter_stack[cur++] = iter;
7471 break;
7472 }
7473
7474 if (!next) {
7475 if (!cur)
7476 return 0;
7477 next = dev_stack[--cur];
7478 niter = iter_stack[cur];
7479 }
7480
7481 now = next;
7482 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007483 }
7484
7485 return 0;
7486}
7487EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
7488
Taehee Yoo32b6d342019-10-21 18:47:56 +00007489static bool __netdev_has_upper_dev(struct net_device *dev,
7490 struct net_device *upper_dev)
7491{
Taehee Yooeff74232020-09-25 18:13:12 +00007492 struct netdev_nested_priv priv = {
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007493 .flags = 0,
Taehee Yooeff74232020-09-25 18:13:12 +00007494 .data = (void *)upper_dev,
7495 };
7496
Taehee Yoo32b6d342019-10-21 18:47:56 +00007497 ASSERT_RTNL();
7498
7499 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007500 &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007501}
7502
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007503/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02007504 * netdev_lower_get_next_private - Get the next ->private from the
7505 * lower neighbour list
7506 * @dev: device
7507 * @iter: list_head ** of the current position
7508 *
7509 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7510 * list, starting from iter position. The caller must hold either hold the
7511 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007512 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02007513 */
7514void *netdev_lower_get_next_private(struct net_device *dev,
7515 struct list_head **iter)
7516{
7517 struct netdev_adjacent *lower;
7518
7519 lower = list_entry(*iter, struct netdev_adjacent, list);
7520
7521 if (&lower->list == &dev->adj_list.lower)
7522 return NULL;
7523
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007524 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007525
7526 return lower->private;
7527}
7528EXPORT_SYMBOL(netdev_lower_get_next_private);
7529
7530/**
7531 * netdev_lower_get_next_private_rcu - Get the next ->private from the
7532 * lower neighbour list, RCU
7533 * variant
7534 * @dev: device
7535 * @iter: list_head ** of the current position
7536 *
7537 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7538 * list, starting from iter position. The caller must hold RCU read lock.
7539 */
7540void *netdev_lower_get_next_private_rcu(struct net_device *dev,
7541 struct list_head **iter)
7542{
7543 struct netdev_adjacent *lower;
7544
7545 WARN_ON_ONCE(!rcu_read_lock_held());
7546
7547 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7548
7549 if (&lower->list == &dev->adj_list.lower)
7550 return NULL;
7551
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007552 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007553
7554 return lower->private;
7555}
7556EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7557
7558/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007559 * netdev_lower_get_next - Get the next device from the lower neighbour
7560 * list
7561 * @dev: device
7562 * @iter: list_head ** of the current position
7563 *
7564 * Gets the next netdev_adjacent from the dev's lower neighbour
7565 * list, starting from iter position. The caller must hold RTNL lock or
7566 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007567 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007568 */
7569void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7570{
7571 struct netdev_adjacent *lower;
7572
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007573 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007574
7575 if (&lower->list == &dev->adj_list.lower)
7576 return NULL;
7577
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007578 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007579
7580 return lower->dev;
7581}
7582EXPORT_SYMBOL(netdev_lower_get_next);
7583
David Ahern1a3f0602016-10-17 19:15:44 -07007584static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7585 struct list_head **iter)
7586{
7587 struct netdev_adjacent *lower;
7588
David Ahern46b5ab12016-10-26 13:21:33 -07007589 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07007590
7591 if (&lower->list == &dev->adj_list.lower)
7592 return NULL;
7593
David Ahern46b5ab12016-10-26 13:21:33 -07007594 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07007595
7596 return lower->dev;
7597}
7598
Taehee Yoo32b6d342019-10-21 18:47:56 +00007599static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7600 struct list_head **iter,
7601 bool *ignore)
7602{
7603 struct netdev_adjacent *lower;
7604
7605 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7606
7607 if (&lower->list == &dev->adj_list.lower)
7608 return NULL;
7609
7610 *iter = &lower->list;
7611 *ignore = lower->ignore;
7612
7613 return lower->dev;
7614}
7615
David Ahern1a3f0602016-10-17 19:15:44 -07007616int netdev_walk_all_lower_dev(struct net_device *dev,
7617 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007618 struct netdev_nested_priv *priv),
7619 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007620{
Taehee Yoo5343da42019-10-21 18:47:50 +00007621 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7622 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7623 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007624
Taehee Yoo5343da42019-10-21 18:47:50 +00007625 now = dev;
7626 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007627
Taehee Yoo5343da42019-10-21 18:47:50 +00007628 while (1) {
7629 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007630 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007631 if (ret)
7632 return ret;
7633 }
7634
7635 next = NULL;
7636 while (1) {
7637 ldev = netdev_next_lower_dev(now, &iter);
7638 if (!ldev)
7639 break;
7640
7641 next = ldev;
7642 niter = &ldev->adj_list.lower;
7643 dev_stack[cur] = now;
7644 iter_stack[cur++] = iter;
7645 break;
7646 }
7647
7648 if (!next) {
7649 if (!cur)
7650 return 0;
7651 next = dev_stack[--cur];
7652 niter = iter_stack[cur];
7653 }
7654
7655 now = next;
7656 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007657 }
7658
7659 return 0;
7660}
7661EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7662
Taehee Yoo32b6d342019-10-21 18:47:56 +00007663static int __netdev_walk_all_lower_dev(struct net_device *dev,
7664 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007665 struct netdev_nested_priv *priv),
7666 struct netdev_nested_priv *priv)
Taehee Yoo32b6d342019-10-21 18:47:56 +00007667{
7668 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7669 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7670 int ret, cur = 0;
7671 bool ignore;
7672
7673 now = dev;
7674 iter = &dev->adj_list.lower;
7675
7676 while (1) {
7677 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007678 ret = fn(now, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007679 if (ret)
7680 return ret;
7681 }
7682
7683 next = NULL;
7684 while (1) {
7685 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7686 if (!ldev)
7687 break;
7688 if (ignore)
7689 continue;
7690
7691 next = ldev;
7692 niter = &ldev->adj_list.lower;
7693 dev_stack[cur] = now;
7694 iter_stack[cur++] = iter;
7695 break;
7696 }
7697
7698 if (!next) {
7699 if (!cur)
7700 return 0;
7701 next = dev_stack[--cur];
7702 niter = iter_stack[cur];
7703 }
7704
7705 now = next;
7706 iter = niter;
7707 }
7708
7709 return 0;
7710}
7711
Taehee Yoo7151aff2020-02-15 10:50:21 +00007712struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7713 struct list_head **iter)
David Ahern1a3f0602016-10-17 19:15:44 -07007714{
7715 struct netdev_adjacent *lower;
7716
7717 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7718 if (&lower->list == &dev->adj_list.lower)
7719 return NULL;
7720
7721 *iter = &lower->list;
7722
7723 return lower->dev;
7724}
Taehee Yoo7151aff2020-02-15 10:50:21 +00007725EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
David Ahern1a3f0602016-10-17 19:15:44 -07007726
Taehee Yoo5343da42019-10-21 18:47:50 +00007727static u8 __netdev_upper_depth(struct net_device *dev)
7728{
7729 struct net_device *udev;
7730 struct list_head *iter;
7731 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007732 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007733
7734 for (iter = &dev->adj_list.upper,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007735 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007736 udev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007737 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7738 if (ignore)
7739 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007740 if (max_depth < udev->upper_level)
7741 max_depth = udev->upper_level;
7742 }
7743
7744 return max_depth;
7745}
7746
7747static u8 __netdev_lower_depth(struct net_device *dev)
7748{
7749 struct net_device *ldev;
7750 struct list_head *iter;
7751 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007752 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007753
7754 for (iter = &dev->adj_list.lower,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007755 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007756 ldev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007757 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7758 if (ignore)
7759 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007760 if (max_depth < ldev->lower_level)
7761 max_depth = ldev->lower_level;
7762 }
7763
7764 return max_depth;
7765}
7766
Taehee Yooeff74232020-09-25 18:13:12 +00007767static int __netdev_update_upper_level(struct net_device *dev,
7768 struct netdev_nested_priv *__unused)
Taehee Yoo5343da42019-10-21 18:47:50 +00007769{
7770 dev->upper_level = __netdev_upper_depth(dev) + 1;
7771 return 0;
7772}
7773
Taehee Yooeff74232020-09-25 18:13:12 +00007774static int __netdev_update_lower_level(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007775 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007776{
7777 dev->lower_level = __netdev_lower_depth(dev) + 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007778
7779#ifdef CONFIG_LOCKDEP
7780 if (!priv)
7781 return 0;
7782
7783 if (priv->flags & NESTED_SYNC_IMM)
7784 dev->nested_level = dev->lower_level - 1;
7785 if (priv->flags & NESTED_SYNC_TODO)
7786 net_unlink_todo(dev);
7787#endif
Taehee Yoo5343da42019-10-21 18:47:50 +00007788 return 0;
7789}
7790
David Ahern1a3f0602016-10-17 19:15:44 -07007791int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7792 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007793 struct netdev_nested_priv *priv),
7794 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007795{
Taehee Yoo5343da42019-10-21 18:47:50 +00007796 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7797 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7798 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007799
Taehee Yoo5343da42019-10-21 18:47:50 +00007800 now = dev;
7801 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007802
Taehee Yoo5343da42019-10-21 18:47:50 +00007803 while (1) {
7804 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007805 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007806 if (ret)
7807 return ret;
7808 }
7809
7810 next = NULL;
7811 while (1) {
7812 ldev = netdev_next_lower_dev_rcu(now, &iter);
7813 if (!ldev)
7814 break;
7815
7816 next = ldev;
7817 niter = &ldev->adj_list.lower;
7818 dev_stack[cur] = now;
7819 iter_stack[cur++] = iter;
7820 break;
7821 }
7822
7823 if (!next) {
7824 if (!cur)
7825 return 0;
7826 next = dev_stack[--cur];
7827 niter = iter_stack[cur];
7828 }
7829
7830 now = next;
7831 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007832 }
7833
7834 return 0;
7835}
7836EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7837
Jiri Pirko7ce856a2016-07-04 08:23:12 +02007838/**
dingtianhonge001bfa2013-12-13 10:19:55 +08007839 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7840 * lower neighbour list, RCU
7841 * variant
7842 * @dev: device
7843 *
7844 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7845 * list. The caller must hold RCU read lock.
7846 */
7847void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7848{
7849 struct netdev_adjacent *lower;
7850
7851 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7852 struct netdev_adjacent, list);
7853 if (lower)
7854 return lower->private;
7855 return NULL;
7856}
7857EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7858
7859/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007860 * netdev_master_upper_dev_get_rcu - Get master upper device
7861 * @dev: device
7862 *
7863 * Find a master upper device and return pointer to it or NULL in case
7864 * it's not there. The caller must hold the RCU read lock.
7865 */
7866struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7867{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007868 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007869
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007870 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007871 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007872 if (upper && likely(upper->master))
7873 return upper->dev;
7874 return NULL;
7875}
7876EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7877
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307878static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007879 struct net_device *adj_dev,
7880 struct list_head *dev_list)
7881{
7882 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007883
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007884 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7885 "upper_%s" : "lower_%s", adj_dev->name);
7886 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7887 linkname);
7888}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307889static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007890 char *name,
7891 struct list_head *dev_list)
7892{
7893 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007894
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007895 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7896 "upper_%s" : "lower_%s", name);
7897 sysfs_remove_link(&(dev->dev.kobj), linkname);
7898}
7899
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007900static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7901 struct net_device *adj_dev,
7902 struct list_head *dev_list)
7903{
7904 return (dev_list == &dev->adj_list.upper ||
7905 dev_list == &dev->adj_list.lower) &&
7906 net_eq(dev_net(dev), dev_net(adj_dev));
7907}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007908
Veaceslav Falico5d261912013-08-28 23:25:05 +02007909static int __netdev_adjacent_dev_insert(struct net_device *dev,
7910 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02007911 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007912 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007913{
7914 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007915 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007916
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007917 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007918
7919 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07007920 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07007921 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7922 dev->name, adj_dev->name, adj->ref_nr);
7923
Veaceslav Falico5d261912013-08-28 23:25:05 +02007924 return 0;
7925 }
7926
7927 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7928 if (!adj)
7929 return -ENOMEM;
7930
7931 adj->dev = adj_dev;
7932 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07007933 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007934 adj->private = private;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007935 adj->ignore = false;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007936 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007937
David Ahern67b62f92016-10-17 19:15:53 -07007938 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7939 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007940
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007941 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007942 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007943 if (ret)
7944 goto free_adj;
7945 }
7946
Veaceslav Falico7863c052013-09-25 09:20:06 +02007947 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007948 if (master) {
7949 ret = sysfs_create_link(&(dev->dev.kobj),
7950 &(adj_dev->dev.kobj), "master");
7951 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02007952 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007953
Veaceslav Falico7863c052013-09-25 09:20:06 +02007954 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007955 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02007956 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007957 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007958
7959 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007960
Veaceslav Falico5831d662013-09-25 09:20:32 +02007961remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007962 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007963 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007964free_adj:
7965 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02007966 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007967
7968 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007969}
7970
stephen hemminger1d143d92013-12-29 14:01:29 -08007971static void __netdev_adjacent_dev_remove(struct net_device *dev,
7972 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007973 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007974 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007975{
7976 struct netdev_adjacent *adj;
7977
David Ahern67b62f92016-10-17 19:15:53 -07007978 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
7979 dev->name, adj_dev->name, ref_nr);
7980
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007981 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007982
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007983 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07007984 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007985 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07007986 WARN_ON(1);
7987 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007988 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007989
Andrew Collins93409032016-10-03 13:43:02 -06007990 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07007991 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7992 dev->name, adj_dev->name, ref_nr,
7993 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06007994 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007995 return;
7996 }
7997
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007998 if (adj->master)
7999 sysfs_remove_link(&(dev->dev.kobj), "master");
8000
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04008001 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01008002 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02008003
Veaceslav Falico5d261912013-08-28 23:25:05 +02008004 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07008005 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008006 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008007 dev_put(adj_dev);
8008 kfree_rcu(adj, rcu);
8009}
8010
stephen hemminger1d143d92013-12-29 14:01:29 -08008011static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
8012 struct net_device *upper_dev,
8013 struct list_head *up_list,
8014 struct list_head *down_list,
8015 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02008016{
8017 int ret;
8018
David Ahern790510d2016-10-17 19:15:43 -07008019 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06008020 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008021 if (ret)
8022 return ret;
8023
David Ahern790510d2016-10-17 19:15:43 -07008024 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06008025 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008026 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07008027 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008028 return ret;
8029 }
8030
8031 return 0;
8032}
8033
stephen hemminger1d143d92013-12-29 14:01:29 -08008034static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
8035 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06008036 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08008037 struct list_head *up_list,
8038 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02008039{
Andrew Collins93409032016-10-03 13:43:02 -06008040 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
8041 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008042}
8043
stephen hemminger1d143d92013-12-29 14:01:29 -08008044static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
8045 struct net_device *upper_dev,
8046 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008047{
David Ahernf1170fd2016-10-17 19:15:51 -07008048 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
8049 &dev->adj_list.upper,
8050 &upper_dev->adj_list.lower,
8051 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008052}
8053
stephen hemminger1d143d92013-12-29 14:01:29 -08008054static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
8055 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008056{
Andrew Collins93409032016-10-03 13:43:02 -06008057 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008058 &dev->adj_list.upper,
8059 &upper_dev->adj_list.lower);
8060}
Veaceslav Falico5d261912013-08-28 23:25:05 +02008061
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008062static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02008063 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07008064 void *upper_priv, void *upper_info,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008065 struct netdev_nested_priv *priv,
David Ahern42ab19e2017-10-04 17:48:47 -07008066 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008067{
David Ahern51d0c0472017-10-04 17:48:45 -07008068 struct netdev_notifier_changeupper_info changeupper_info = {
8069 .info = {
8070 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008071 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07008072 },
8073 .upper_dev = upper_dev,
8074 .master = master,
8075 .linking = true,
8076 .upper_info = upper_info,
8077 };
Mike Manning50d629e2018-02-26 23:49:30 +00008078 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008079 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008080
8081 ASSERT_RTNL();
8082
8083 if (dev == upper_dev)
8084 return -EBUSY;
8085
8086 /* To prevent loops, check if dev is not upper device to upper_dev. */
Taehee Yoo32b6d342019-10-21 18:47:56 +00008087 if (__netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008088 return -EBUSY;
8089
Taehee Yoo5343da42019-10-21 18:47:50 +00008090 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
8091 return -EMLINK;
8092
Mike Manning50d629e2018-02-26 23:49:30 +00008093 if (!master) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00008094 if (__netdev_has_upper_dev(dev, upper_dev))
Mike Manning50d629e2018-02-26 23:49:30 +00008095 return -EEXIST;
8096 } else {
Taehee Yoo32b6d342019-10-21 18:47:56 +00008097 master_dev = __netdev_master_upper_dev_get(dev);
Mike Manning50d629e2018-02-26 23:49:30 +00008098 if (master_dev)
8099 return master_dev == upper_dev ? -EEXIST : -EBUSY;
8100 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008101
David Ahern51d0c0472017-10-04 17:48:45 -07008102 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02008103 &changeupper_info.info);
8104 ret = notifier_to_errno(ret);
8105 if (ret)
8106 return ret;
8107
Jiri Pirko6dffb042015-12-03 12:12:10 +01008108 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02008109 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008110 if (ret)
8111 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008112
David Ahern51d0c0472017-10-04 17:48:45 -07008113 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01008114 &changeupper_info.info);
8115 ret = notifier_to_errno(ret);
8116 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07008117 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01008118
Taehee Yoo5343da42019-10-21 18:47:50 +00008119 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008120 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00008121
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008122 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008123 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008124 priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00008125
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008126 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008127
David Ahernf1170fd2016-10-17 19:15:51 -07008128rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008129 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008130
8131 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008132}
8133
8134/**
8135 * netdev_upper_dev_link - Add a link to the upper device
8136 * @dev: device
8137 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08008138 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008139 *
8140 * Adds a link to device which is upper to this one. The caller must hold
8141 * the RTNL lock. On a failure a negative errno code is returned.
8142 * On success the reference counts are adjusted and the function
8143 * returns zero.
8144 */
8145int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008146 struct net_device *upper_dev,
8147 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008148{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008149 struct netdev_nested_priv priv = {
8150 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8151 .data = NULL,
8152 };
8153
David Ahern42ab19e2017-10-04 17:48:47 -07008154 return __netdev_upper_dev_link(dev, upper_dev, false,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008155 NULL, NULL, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008156}
8157EXPORT_SYMBOL(netdev_upper_dev_link);
8158
8159/**
8160 * netdev_master_upper_dev_link - Add a master link to the upper device
8161 * @dev: device
8162 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01008163 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01008164 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08008165 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008166 *
8167 * Adds a link to device which is upper to this one. In this case, only
8168 * one master upper device can be linked, although other non-master devices
8169 * might be linked as well. The caller must hold the RTNL lock.
8170 * On a failure a negative errno code is returned. On success the reference
8171 * counts are adjusted and the function returns zero.
8172 */
8173int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01008174 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008175 void *upper_priv, void *upper_info,
8176 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008177{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008178 struct netdev_nested_priv priv = {
8179 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8180 .data = NULL,
8181 };
8182
Jiri Pirko29bf24a2015-12-03 12:12:11 +01008183 return __netdev_upper_dev_link(dev, upper_dev, true,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008184 upper_priv, upper_info, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008185}
8186EXPORT_SYMBOL(netdev_master_upper_dev_link);
8187
Taehee Yoofe8300f2020-09-25 18:13:02 +00008188static void __netdev_upper_dev_unlink(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008189 struct net_device *upper_dev,
8190 struct netdev_nested_priv *priv)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008191{
David Ahern51d0c0472017-10-04 17:48:45 -07008192 struct netdev_notifier_changeupper_info changeupper_info = {
8193 .info = {
8194 .dev = dev,
8195 },
8196 .upper_dev = upper_dev,
8197 .linking = false,
8198 };
tchardingf4563a72017-02-09 17:56:07 +11008199
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008200 ASSERT_RTNL();
8201
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008202 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008203
David Ahern51d0c0472017-10-04 17:48:45 -07008204 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02008205 &changeupper_info.info);
8206
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008207 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008208
David Ahern51d0c0472017-10-04 17:48:45 -07008209 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008210 &changeupper_info.info);
Taehee Yoo5343da42019-10-21 18:47:50 +00008211
8212 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008213 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00008214
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008215 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008216 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008217 priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008218}
Taehee Yoofe8300f2020-09-25 18:13:02 +00008219
8220/**
8221 * netdev_upper_dev_unlink - Removes a link to upper device
8222 * @dev: device
8223 * @upper_dev: new upper device
8224 *
8225 * Removes a link to device which is upper to this one. The caller must hold
8226 * the RTNL lock.
8227 */
8228void netdev_upper_dev_unlink(struct net_device *dev,
8229 struct net_device *upper_dev)
8230{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008231 struct netdev_nested_priv priv = {
8232 .flags = NESTED_SYNC_TODO,
8233 .data = NULL,
8234 };
8235
8236 __netdev_upper_dev_unlink(dev, upper_dev, &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008237}
8238EXPORT_SYMBOL(netdev_upper_dev_unlink);
8239
Taehee Yoo32b6d342019-10-21 18:47:56 +00008240static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
8241 struct net_device *lower_dev,
8242 bool val)
8243{
8244 struct netdev_adjacent *adj;
8245
8246 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
8247 if (adj)
8248 adj->ignore = val;
8249
8250 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
8251 if (adj)
8252 adj->ignore = val;
8253}
8254
8255static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
8256 struct net_device *lower_dev)
8257{
8258 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
8259}
8260
8261static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
8262 struct net_device *lower_dev)
8263{
8264 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
8265}
8266
8267int netdev_adjacent_change_prepare(struct net_device *old_dev,
8268 struct net_device *new_dev,
8269 struct net_device *dev,
8270 struct netlink_ext_ack *extack)
8271{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008272 struct netdev_nested_priv priv = {
8273 .flags = 0,
8274 .data = NULL,
8275 };
Taehee Yoo32b6d342019-10-21 18:47:56 +00008276 int err;
8277
8278 if (!new_dev)
8279 return 0;
8280
8281 if (old_dev && new_dev != old_dev)
8282 netdev_adjacent_dev_disable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008283 err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
8284 extack);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008285 if (err) {
8286 if (old_dev && new_dev != old_dev)
8287 netdev_adjacent_dev_enable(dev, old_dev);
8288 return err;
8289 }
8290
8291 return 0;
8292}
8293EXPORT_SYMBOL(netdev_adjacent_change_prepare);
8294
8295void netdev_adjacent_change_commit(struct net_device *old_dev,
8296 struct net_device *new_dev,
8297 struct net_device *dev)
8298{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008299 struct netdev_nested_priv priv = {
8300 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8301 .data = NULL,
8302 };
8303
Taehee Yoo32b6d342019-10-21 18:47:56 +00008304 if (!new_dev || !old_dev)
8305 return;
8306
8307 if (new_dev == old_dev)
8308 return;
8309
8310 netdev_adjacent_dev_enable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008311 __netdev_upper_dev_unlink(old_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008312}
8313EXPORT_SYMBOL(netdev_adjacent_change_commit);
8314
8315void netdev_adjacent_change_abort(struct net_device *old_dev,
8316 struct net_device *new_dev,
8317 struct net_device *dev)
8318{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008319 struct netdev_nested_priv priv = {
8320 .flags = 0,
8321 .data = NULL,
8322 };
8323
Taehee Yoo32b6d342019-10-21 18:47:56 +00008324 if (!new_dev)
8325 return;
8326
8327 if (old_dev && new_dev != old_dev)
8328 netdev_adjacent_dev_enable(dev, old_dev);
8329
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008330 __netdev_upper_dev_unlink(new_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008331}
8332EXPORT_SYMBOL(netdev_adjacent_change_abort);
8333
Moni Shoua61bd3852015-02-03 16:48:29 +02008334/**
8335 * netdev_bonding_info_change - Dispatch event about slave change
8336 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09008337 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02008338 *
8339 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
8340 * The caller must hold the RTNL lock.
8341 */
8342void netdev_bonding_info_change(struct net_device *dev,
8343 struct netdev_bonding_info *bonding_info)
8344{
David Ahern51d0c0472017-10-04 17:48:45 -07008345 struct netdev_notifier_bonding_info info = {
8346 .info.dev = dev,
8347 };
Moni Shoua61bd3852015-02-03 16:48:29 +02008348
8349 memcpy(&info.bonding_info, bonding_info,
8350 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07008351 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02008352 &info.info);
8353}
8354EXPORT_SYMBOL(netdev_bonding_info_change);
8355
Maor Gottliebcff9f122020-04-30 22:21:31 +03008356/**
8357 * netdev_get_xmit_slave - Get the xmit slave of master device
Andrew Lunn88425002020-07-13 01:14:59 +02008358 * @dev: device
Maor Gottliebcff9f122020-04-30 22:21:31 +03008359 * @skb: The packet
8360 * @all_slaves: assume all the slaves are active
8361 *
8362 * The reference counters are not incremented so the caller must be
8363 * careful with locks. The caller must hold RCU lock.
8364 * %NULL is returned if no slave is found.
8365 */
8366
8367struct net_device *netdev_get_xmit_slave(struct net_device *dev,
8368 struct sk_buff *skb,
8369 bool all_slaves)
8370{
8371 const struct net_device_ops *ops = dev->netdev_ops;
8372
8373 if (!ops->ndo_get_xmit_slave)
8374 return NULL;
8375 return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
8376}
8377EXPORT_SYMBOL(netdev_get_xmit_slave);
8378
Tariq Toukan719a4022021-01-17 16:59:42 +02008379static struct net_device *netdev_sk_get_lower_dev(struct net_device *dev,
8380 struct sock *sk)
8381{
8382 const struct net_device_ops *ops = dev->netdev_ops;
8383
8384 if (!ops->ndo_sk_get_lower_dev)
8385 return NULL;
8386 return ops->ndo_sk_get_lower_dev(dev, sk);
8387}
8388
8389/**
8390 * netdev_sk_get_lowest_dev - Get the lowest device in chain given device and socket
8391 * @dev: device
8392 * @sk: the socket
8393 *
8394 * %NULL is returned if no lower device is found.
8395 */
8396
8397struct net_device *netdev_sk_get_lowest_dev(struct net_device *dev,
8398 struct sock *sk)
8399{
8400 struct net_device *lower;
8401
8402 lower = netdev_sk_get_lower_dev(dev, sk);
8403 while (lower) {
8404 dev = lower;
8405 lower = netdev_sk_get_lower_dev(dev, sk);
8406 }
8407
8408 return dev;
8409}
8410EXPORT_SYMBOL(netdev_sk_get_lowest_dev);
8411
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008412static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008413{
8414 struct netdev_adjacent *iter;
8415
8416 struct net *net = dev_net(dev);
8417
8418 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008419 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008420 continue;
8421 netdev_adjacent_sysfs_add(iter->dev, dev,
8422 &iter->dev->adj_list.lower);
8423 netdev_adjacent_sysfs_add(dev, iter->dev,
8424 &dev->adj_list.upper);
8425 }
8426
8427 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008428 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008429 continue;
8430 netdev_adjacent_sysfs_add(iter->dev, dev,
8431 &iter->dev->adj_list.upper);
8432 netdev_adjacent_sysfs_add(dev, iter->dev,
8433 &dev->adj_list.lower);
8434 }
8435}
8436
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008437static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008438{
8439 struct netdev_adjacent *iter;
8440
8441 struct net *net = dev_net(dev);
8442
8443 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008444 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008445 continue;
8446 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8447 &iter->dev->adj_list.lower);
8448 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8449 &dev->adj_list.upper);
8450 }
8451
8452 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008453 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008454 continue;
8455 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8456 &iter->dev->adj_list.upper);
8457 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8458 &dev->adj_list.lower);
8459 }
8460}
8461
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008462void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02008463{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008464 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02008465
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008466 struct net *net = dev_net(dev);
8467
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008468 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008469 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008470 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008471 netdev_adjacent_sysfs_del(iter->dev, oldname,
8472 &iter->dev->adj_list.lower);
8473 netdev_adjacent_sysfs_add(iter->dev, dev,
8474 &iter->dev->adj_list.lower);
8475 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008476
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008477 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008478 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008479 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008480 netdev_adjacent_sysfs_del(iter->dev, oldname,
8481 &iter->dev->adj_list.upper);
8482 netdev_adjacent_sysfs_add(iter->dev, dev,
8483 &iter->dev->adj_list.upper);
8484 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008485}
Veaceslav Falico402dae92013-09-25 09:20:09 +02008486
8487void *netdev_lower_dev_get_private(struct net_device *dev,
8488 struct net_device *lower_dev)
8489{
8490 struct netdev_adjacent *lower;
8491
8492 if (!lower_dev)
8493 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008494 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02008495 if (!lower)
8496 return NULL;
8497
8498 return lower->private;
8499}
8500EXPORT_SYMBOL(netdev_lower_dev_get_private);
8501
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04008502
Jiri Pirko04d48262015-12-03 12:12:15 +01008503/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01008504 * netdev_lower_state_changed - Dispatch event about lower device state change
Jiri Pirko04d48262015-12-03 12:12:15 +01008505 * @lower_dev: device
8506 * @lower_state_info: state to dispatch
8507 *
8508 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
8509 * The caller must hold the RTNL lock.
8510 */
8511void netdev_lower_state_changed(struct net_device *lower_dev,
8512 void *lower_state_info)
8513{
David Ahern51d0c0472017-10-04 17:48:45 -07008514 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
8515 .info.dev = lower_dev,
8516 };
Jiri Pirko04d48262015-12-03 12:12:15 +01008517
8518 ASSERT_RTNL();
8519 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07008520 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01008521 &changelowerstate_info.info);
8522}
8523EXPORT_SYMBOL(netdev_lower_state_changed);
8524
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008525static void dev_change_rx_flags(struct net_device *dev, int flags)
8526{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008527 const struct net_device_ops *ops = dev->netdev_ops;
8528
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05008529 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008530 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008531}
8532
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008533static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07008534{
Eric Dumazetb536db92011-11-30 21:42:26 +00008535 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06008536 kuid_t uid;
8537 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07008538
Patrick McHardy24023452007-07-14 18:51:31 -07008539 ASSERT_RTNL();
8540
Wang Chendad9b332008-06-18 01:48:28 -07008541 dev->flags |= IFF_PROMISC;
8542 dev->promiscuity += inc;
8543 if (dev->promiscuity == 0) {
8544 /*
8545 * Avoid overflow.
8546 * If inc causes overflow, untouch promisc and return error.
8547 */
8548 if (inc < 0)
8549 dev->flags &= ~IFF_PROMISC;
8550 else {
8551 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008552 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
8553 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008554 return -EOVERFLOW;
8555 }
8556 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008557 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008558 pr_info("device %s %s promiscuous mode\n",
8559 dev->name,
8560 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11008561 if (audit_enabled) {
8562 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04008563 audit_log(audit_context(), GFP_ATOMIC,
8564 AUDIT_ANOM_PROMISCUOUS,
8565 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
8566 dev->name, (dev->flags & IFF_PROMISC),
8567 (old_flags & IFF_PROMISC),
8568 from_kuid(&init_user_ns, audit_get_loginuid(current)),
8569 from_kuid(&init_user_ns, uid),
8570 from_kgid(&init_user_ns, gid),
8571 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11008572 }
Patrick McHardy24023452007-07-14 18:51:31 -07008573
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008574 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07008575 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008576 if (notify)
8577 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07008578 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008579}
8580
Linus Torvalds1da177e2005-04-16 15:20:36 -07008581/**
8582 * dev_set_promiscuity - update promiscuity count on a device
8583 * @dev: device
8584 * @inc: modifier
8585 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07008586 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008587 * remains above zero the interface remains promiscuous. Once it hits zero
8588 * the device reverts back to normal filtering operation. A negative inc
8589 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07008590 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008591 */
Wang Chendad9b332008-06-18 01:48:28 -07008592int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008593{
Eric Dumazetb536db92011-11-30 21:42:26 +00008594 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07008595 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008596
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008597 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07008598 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07008599 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07008600 if (dev->flags != old_flags)
8601 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07008602 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008603}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008604EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008605
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008606static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008607{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008608 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008609
Patrick McHardy24023452007-07-14 18:51:31 -07008610 ASSERT_RTNL();
8611
Linus Torvalds1da177e2005-04-16 15:20:36 -07008612 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07008613 dev->allmulti += inc;
8614 if (dev->allmulti == 0) {
8615 /*
8616 * Avoid overflow.
8617 * If inc causes overflow, untouch allmulti and return error.
8618 */
8619 if (inc < 0)
8620 dev->flags &= ~IFF_ALLMULTI;
8621 else {
8622 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008623 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
8624 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008625 return -EOVERFLOW;
8626 }
8627 }
Patrick McHardy24023452007-07-14 18:51:31 -07008628 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008629 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07008630 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008631 if (notify)
8632 __dev_notify_flags(dev, old_flags,
8633 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07008634 }
Wang Chendad9b332008-06-18 01:48:28 -07008635 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008636}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008637
8638/**
8639 * dev_set_allmulti - update allmulti count on a device
8640 * @dev: device
8641 * @inc: modifier
8642 *
8643 * Add or remove reception of all multicast frames to a device. While the
8644 * count in the device remains above zero the interface remains listening
8645 * to all interfaces. Once it hits zero the device reverts back to normal
8646 * filtering operation. A negative @inc value is used to drop the counter
8647 * when releasing a resource needing all multicasts.
8648 * Return 0 if successful or a negative errno code on error.
8649 */
8650
8651int dev_set_allmulti(struct net_device *dev, int inc)
8652{
8653 return __dev_set_allmulti(dev, inc, true);
8654}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008655EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07008656
8657/*
8658 * Upload unicast and multicast address lists to device and
8659 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08008660 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07008661 * are present.
8662 */
8663void __dev_set_rx_mode(struct net_device *dev)
8664{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008665 const struct net_device_ops *ops = dev->netdev_ops;
8666
Patrick McHardy4417da62007-06-27 01:28:10 -07008667 /* dev_open will call this function so the list will stay sane. */
8668 if (!(dev->flags&IFF_UP))
8669 return;
8670
8671 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09008672 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07008673
Jiri Pirko01789342011-08-16 06:29:00 +00008674 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07008675 /* Unicast addresses changes may only happen under the rtnl,
8676 * therefore calling __dev_set_promiscuity here is safe.
8677 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008678 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008679 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008680 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008681 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008682 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008683 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07008684 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008685 }
Jiri Pirko01789342011-08-16 06:29:00 +00008686
8687 if (ops->ndo_set_rx_mode)
8688 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008689}
8690
8691void dev_set_rx_mode(struct net_device *dev)
8692{
David S. Millerb9e40852008-07-15 00:15:08 -07008693 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008694 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07008695 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008696}
8697
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008698/**
8699 * dev_get_flags - get flags reported to userspace
8700 * @dev: device
8701 *
8702 * Get the combination of flag bits exported through APIs to userspace.
8703 */
Eric Dumazet95c96172012-04-15 05:58:06 +00008704unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705{
Eric Dumazet95c96172012-04-15 05:58:06 +00008706 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008707
8708 flags = (dev->flags & ~(IFF_PROMISC |
8709 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08008710 IFF_RUNNING |
8711 IFF_LOWER_UP |
8712 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008713 (dev->gflags & (IFF_PROMISC |
8714 IFF_ALLMULTI));
8715
Stefan Rompfb00055a2006-03-20 17:09:11 -08008716 if (netif_running(dev)) {
8717 if (netif_oper_up(dev))
8718 flags |= IFF_RUNNING;
8719 if (netif_carrier_ok(dev))
8720 flags |= IFF_LOWER_UP;
8721 if (netif_dormant(dev))
8722 flags |= IFF_DORMANT;
8723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008724
8725 return flags;
8726}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008727EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008728
Petr Machata6d040322018-12-06 17:05:43 +00008729int __dev_change_flags(struct net_device *dev, unsigned int flags,
8730 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008731{
Eric Dumazetb536db92011-11-30 21:42:26 +00008732 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00008733 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008734
Patrick McHardy24023452007-07-14 18:51:31 -07008735 ASSERT_RTNL();
8736
Linus Torvalds1da177e2005-04-16 15:20:36 -07008737 /*
8738 * Set the flags on our device.
8739 */
8740
8741 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8742 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8743 IFF_AUTOMEDIA)) |
8744 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8745 IFF_ALLMULTI));
8746
8747 /*
8748 * Load in the correct multicast list now the flags have changed.
8749 */
8750
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008751 if ((old_flags ^ flags) & IFF_MULTICAST)
8752 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07008753
Patrick McHardy4417da62007-06-27 01:28:10 -07008754 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008755
8756 /*
8757 * Have we downed the interface. We handle IFF_UP ourselves
8758 * according to user attempts to set it, rather than blindly
8759 * setting it.
8760 */
8761
8762 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07008763 if ((old_flags ^ flags) & IFF_UP) {
8764 if (old_flags & IFF_UP)
8765 __dev_close(dev);
8766 else
Petr Machata40c900a2018-12-06 17:05:47 +00008767 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07008768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008769
Linus Torvalds1da177e2005-04-16 15:20:36 -07008770 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008771 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008772 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008773
Linus Torvalds1da177e2005-04-16 15:20:36 -07008774 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008775
8776 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8777 if (dev->flags != old_flags)
8778 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008779 }
8780
8781 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11008782 * is important. Some (broken) drivers set IFF_PROMISC, when
8783 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008784 */
8785 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008786 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8787
Linus Torvalds1da177e2005-04-16 15:20:36 -07008788 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008789 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790 }
8791
Patrick McHardybd380812010-02-26 06:34:53 +00008792 return ret;
8793}
8794
Nicolas Dichtela528c212013-09-25 12:02:44 +02008795void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8796 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00008797{
8798 unsigned int changes = dev->flags ^ old_flags;
8799
Nicolas Dichtela528c212013-09-25 12:02:44 +02008800 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008801 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008802
Patrick McHardybd380812010-02-26 06:34:53 +00008803 if (changes & IFF_UP) {
8804 if (dev->flags & IFF_UP)
8805 call_netdevice_notifiers(NETDEV_UP, dev);
8806 else
8807 call_netdevice_notifiers(NETDEV_DOWN, dev);
8808 }
8809
8810 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008811 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07008812 struct netdev_notifier_change_info change_info = {
8813 .info = {
8814 .dev = dev,
8815 },
8816 .flags_changed = changes,
8817 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008818
David Ahern51d0c0472017-10-04 17:48:45 -07008819 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008820 }
Patrick McHardybd380812010-02-26 06:34:53 +00008821}
8822
8823/**
8824 * dev_change_flags - change device settings
8825 * @dev: device
8826 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00008827 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00008828 *
8829 * Change settings on device based state flags. The flags are
8830 * in the userspace exported format.
8831 */
Petr Machata567c5e12018-12-06 17:05:42 +00008832int dev_change_flags(struct net_device *dev, unsigned int flags,
8833 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00008834{
Eric Dumazetb536db92011-11-30 21:42:26 +00008835 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008836 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00008837
Petr Machata6d040322018-12-06 17:05:43 +00008838 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00008839 if (ret < 0)
8840 return ret;
8841
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008842 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008843 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008844 return ret;
8845}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008846EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008847
WANG Congf51048c2017-07-06 15:01:57 -07008848int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008849{
8850 const struct net_device_ops *ops = dev->netdev_ops;
8851
8852 if (ops->ndo_change_mtu)
8853 return ops->ndo_change_mtu(dev, new_mtu);
8854
Eric Dumazet501a90c2019-12-05 20:43:46 -08008855 /* Pairs with all the lockless reads of dev->mtu in the stack */
8856 WRITE_ONCE(dev->mtu, new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008857 return 0;
8858}
WANG Congf51048c2017-07-06 15:01:57 -07008859EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008860
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008861int dev_validate_mtu(struct net_device *dev, int new_mtu,
8862 struct netlink_ext_ack *extack)
8863{
8864 /* MTU must be positive, and in range */
8865 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
8866 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
8867 return -EINVAL;
8868 }
8869
8870 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
8871 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
8872 return -EINVAL;
8873 }
8874 return 0;
8875}
8876
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008877/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008878 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008879 * @dev: device
8880 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008881 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008882 *
8883 * Change the maximum transfer size of the network device.
8884 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008885int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8886 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008887{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008888 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008889
8890 if (new_mtu == dev->mtu)
8891 return 0;
8892
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008893 err = dev_validate_mtu(dev, new_mtu, extack);
8894 if (err)
8895 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008896
8897 if (!netif_device_present(dev))
8898 return -ENODEV;
8899
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01008900 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8901 err = notifier_to_errno(err);
8902 if (err)
8903 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008904
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008905 orig_mtu = dev->mtu;
8906 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008907
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008908 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008909 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8910 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008911 err = notifier_to_errno(err);
8912 if (err) {
8913 /* setting mtu back and notifying everyone again,
8914 * so that they have a chance to revert changes.
8915 */
8916 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008917 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8918 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008919 }
8920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008921 return err;
8922}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008923
8924int dev_set_mtu(struct net_device *dev, int new_mtu)
8925{
8926 struct netlink_ext_ack extack;
8927 int err;
8928
Li RongQinga6bcfc82018-08-03 15:45:21 +08008929 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008930 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08008931 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008932 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8933 return err;
8934}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008935EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008936
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008937/**
Cong Wang6a643dd2018-01-25 18:26:22 -08008938 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8939 * @dev: device
8940 * @new_len: new tx queue length
8941 */
8942int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8943{
8944 unsigned int orig_len = dev->tx_queue_len;
8945 int res;
8946
8947 if (new_len != (unsigned int)new_len)
8948 return -ERANGE;
8949
8950 if (new_len != orig_len) {
8951 dev->tx_queue_len = new_len;
8952 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8953 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03008954 if (res)
8955 goto err_rollback;
8956 res = dev_qdisc_change_tx_queue_len(dev);
8957 if (res)
8958 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08008959 }
8960
8961 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03008962
8963err_rollback:
8964 netdev_err(dev, "refused to change device tx_queue_len\n");
8965 dev->tx_queue_len = orig_len;
8966 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08008967}
8968
8969/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008970 * dev_set_group - Change group this device belongs to
8971 * @dev: device
8972 * @new_group: group this device should belong to
8973 */
8974void dev_set_group(struct net_device *dev, int new_group)
8975{
8976 dev->group = new_group;
8977}
8978EXPORT_SYMBOL(dev_set_group);
8979
8980/**
Petr Machatad59cdf92018-12-13 11:54:35 +00008981 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
8982 * @dev: device
8983 * @addr: new address
8984 * @extack: netlink extended ack
8985 */
8986int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
8987 struct netlink_ext_ack *extack)
8988{
8989 struct netdev_notifier_pre_changeaddr_info info = {
8990 .info.dev = dev,
8991 .info.extack = extack,
8992 .dev_addr = addr,
8993 };
8994 int rc;
8995
8996 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
8997 return notifier_to_errno(rc);
8998}
8999EXPORT_SYMBOL(dev_pre_changeaddr_notify);
9000
9001/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009002 * dev_set_mac_address - Change Media Access Control Address
9003 * @dev: device
9004 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00009005 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07009006 *
9007 * Change the hardware (MAC) address of the device
9008 */
Petr Machata3a37a962018-12-13 11:54:30 +00009009int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
9010 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009011{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009012 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009013 int err;
9014
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009015 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009016 return -EOPNOTSUPP;
9017 if (sa->sa_family != dev->type)
9018 return -EINVAL;
9019 if (!netif_device_present(dev))
9020 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00009021 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
9022 if (err)
9023 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009024 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00009025 if (err)
9026 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00009027 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00009028 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04009029 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00009030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009031}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07009032EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009033
Cong Wang3b23a322021-02-11 11:34:10 -08009034static DECLARE_RWSEM(dev_addr_sem);
9035
9036int dev_set_mac_address_user(struct net_device *dev, struct sockaddr *sa,
9037 struct netlink_ext_ack *extack)
9038{
9039 int ret;
9040
9041 down_write(&dev_addr_sem);
9042 ret = dev_set_mac_address(dev, sa, extack);
9043 up_write(&dev_addr_sem);
9044 return ret;
9045}
9046EXPORT_SYMBOL(dev_set_mac_address_user);
9047
9048int dev_get_mac_address(struct sockaddr *sa, struct net *net, char *dev_name)
9049{
9050 size_t size = sizeof(sa->sa_data);
9051 struct net_device *dev;
9052 int ret = 0;
9053
9054 down_read(&dev_addr_sem);
9055 rcu_read_lock();
9056
9057 dev = dev_get_by_name_rcu(net, dev_name);
9058 if (!dev) {
9059 ret = -ENODEV;
9060 goto unlock;
9061 }
9062 if (!dev->addr_len)
9063 memset(sa->sa_data, 0, size);
9064 else
9065 memcpy(sa->sa_data, dev->dev_addr,
9066 min_t(size_t, size, dev->addr_len));
9067 sa->sa_family = dev->type;
9068
9069unlock:
9070 rcu_read_unlock();
9071 up_read(&dev_addr_sem);
9072 return ret;
9073}
9074EXPORT_SYMBOL(dev_get_mac_address);
9075
Jiri Pirko4bf84c32012-12-27 23:49:37 +00009076/**
9077 * dev_change_carrier - Change device carrier
9078 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00009079 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00009080 *
9081 * Change device carrier
9082 */
9083int dev_change_carrier(struct net_device *dev, bool new_carrier)
9084{
9085 const struct net_device_ops *ops = dev->netdev_ops;
9086
9087 if (!ops->ndo_change_carrier)
9088 return -EOPNOTSUPP;
9089 if (!netif_device_present(dev))
9090 return -ENODEV;
9091 return ops->ndo_change_carrier(dev, new_carrier);
9092}
9093EXPORT_SYMBOL(dev_change_carrier);
9094
Linus Torvalds1da177e2005-04-16 15:20:36 -07009095/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02009096 * dev_get_phys_port_id - Get device physical port ID
9097 * @dev: device
9098 * @ppid: port ID
9099 *
9100 * Get device physical port ID
9101 */
9102int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01009103 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02009104{
9105 const struct net_device_ops *ops = dev->netdev_ops;
9106
9107 if (!ops->ndo_get_phys_port_id)
9108 return -EOPNOTSUPP;
9109 return ops->ndo_get_phys_port_id(dev, ppid);
9110}
9111EXPORT_SYMBOL(dev_get_phys_port_id);
9112
9113/**
David Aherndb24a902015-03-17 20:23:15 -06009114 * dev_get_phys_port_name - Get device physical port name
9115 * @dev: device
9116 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00009117 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06009118 *
9119 * Get device physical port name
9120 */
9121int dev_get_phys_port_name(struct net_device *dev,
9122 char *name, size_t len)
9123{
9124 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01009125 int err;
David Aherndb24a902015-03-17 20:23:15 -06009126
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01009127 if (ops->ndo_get_phys_port_name) {
9128 err = ops->ndo_get_phys_port_name(dev, name, len);
9129 if (err != -EOPNOTSUPP)
9130 return err;
9131 }
9132 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06009133}
9134EXPORT_SYMBOL(dev_get_phys_port_name);
9135
9136/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08009137 * dev_get_port_parent_id - Get the device's port parent identifier
9138 * @dev: network device
9139 * @ppid: pointer to a storage for the port's parent identifier
9140 * @recurse: allow/disallow recursion to lower devices
9141 *
9142 * Get the devices's port parent identifier
9143 */
9144int dev_get_port_parent_id(struct net_device *dev,
9145 struct netdev_phys_item_id *ppid,
9146 bool recurse)
9147{
9148 const struct net_device_ops *ops = dev->netdev_ops;
9149 struct netdev_phys_item_id first = { };
9150 struct net_device *lower_dev;
9151 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009152 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009153
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009154 if (ops->ndo_get_port_parent_id) {
9155 err = ops->ndo_get_port_parent_id(dev, ppid);
9156 if (err != -EOPNOTSUPP)
9157 return err;
9158 }
9159
9160 err = devlink_compat_switch_id_get(dev, ppid);
9161 if (!err || err != -EOPNOTSUPP)
9162 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009163
9164 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009165 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009166
9167 netdev_for_each_lower_dev(dev, lower_dev, iter) {
9168 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
9169 if (err)
9170 break;
9171 if (!first.id_len)
9172 first = *ppid;
9173 else if (memcmp(&first, ppid, sizeof(*ppid)))
Ido Schimmele1b9efe2020-09-10 14:01:26 +03009174 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009175 }
9176
9177 return err;
9178}
9179EXPORT_SYMBOL(dev_get_port_parent_id);
9180
9181/**
9182 * netdev_port_same_parent_id - Indicate if two network devices have
9183 * the same port parent identifier
9184 * @a: first network device
9185 * @b: second network device
9186 */
9187bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
9188{
9189 struct netdev_phys_item_id a_id = { };
9190 struct netdev_phys_item_id b_id = { };
9191
9192 if (dev_get_port_parent_id(a, &a_id, true) ||
9193 dev_get_port_parent_id(b, &b_id, true))
9194 return false;
9195
9196 return netdev_phys_item_id_same(&a_id, &b_id);
9197}
9198EXPORT_SYMBOL(netdev_port_same_parent_id);
9199
9200/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009201 * dev_change_proto_down - update protocol port state information
9202 * @dev: device
9203 * @proto_down: new value
9204 *
9205 * This info can be used by switch drivers to set the phys state of the
9206 * port.
9207 */
9208int dev_change_proto_down(struct net_device *dev, bool proto_down)
9209{
9210 const struct net_device_ops *ops = dev->netdev_ops;
9211
9212 if (!ops->ndo_change_proto_down)
9213 return -EOPNOTSUPP;
9214 if (!netif_device_present(dev))
9215 return -ENODEV;
9216 return ops->ndo_change_proto_down(dev, proto_down);
9217}
9218EXPORT_SYMBOL(dev_change_proto_down);
9219
Andy Roulinb5899672019-02-22 18:06:36 +00009220/**
9221 * dev_change_proto_down_generic - generic implementation for
9222 * ndo_change_proto_down that sets carrier according to
9223 * proto_down.
9224 *
9225 * @dev: device
9226 * @proto_down: new value
9227 */
9228int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
9229{
9230 if (proto_down)
9231 netif_carrier_off(dev);
9232 else
9233 netif_carrier_on(dev);
9234 dev->proto_down = proto_down;
9235 return 0;
9236}
9237EXPORT_SYMBOL(dev_change_proto_down_generic);
9238
Roopa Prabhu829eb202020-07-31 17:34:01 -07009239/**
9240 * dev_change_proto_down_reason - proto down reason
9241 *
9242 * @dev: device
9243 * @mask: proto down mask
9244 * @value: proto down value
9245 */
9246void dev_change_proto_down_reason(struct net_device *dev, unsigned long mask,
9247 u32 value)
9248{
9249 int b;
9250
9251 if (!mask) {
9252 dev->proto_down_reason = value;
9253 } else {
9254 for_each_set_bit(b, &mask, 32) {
9255 if (value & (1 << b))
9256 dev->proto_down_reason |= BIT(b);
9257 else
9258 dev->proto_down_reason &= ~BIT(b);
9259 }
9260 }
9261}
9262EXPORT_SYMBOL(dev_change_proto_down_reason);
9263
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009264struct bpf_xdp_link {
9265 struct bpf_link link;
9266 struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
9267 int flags;
9268};
9269
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009270static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009271{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009272 if (flags & XDP_FLAGS_HW_MODE)
9273 return XDP_MODE_HW;
9274 if (flags & XDP_FLAGS_DRV_MODE)
9275 return XDP_MODE_DRV;
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009276 if (flags & XDP_FLAGS_SKB_MODE)
9277 return XDP_MODE_SKB;
9278 return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009279}
9280
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009281static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009282{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009283 switch (mode) {
9284 case XDP_MODE_SKB:
9285 return generic_xdp_install;
9286 case XDP_MODE_DRV:
9287 case XDP_MODE_HW:
9288 return dev->netdev_ops->ndo_bpf;
9289 default:
9290 return NULL;
Tom Rix5d867242020-11-01 07:36:47 -08009291 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009292}
9293
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009294static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
9295 enum bpf_xdp_mode mode)
9296{
9297 return dev->xdp_state[mode].link;
9298}
9299
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009300static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
9301 enum bpf_xdp_mode mode)
9302{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009303 struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
9304
9305 if (link)
9306 return link->link.prog;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009307 return dev->xdp_state[mode].prog;
9308}
9309
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009310static u8 dev_xdp_prog_count(struct net_device *dev)
9311{
9312 u8 count = 0;
9313 int i;
9314
9315 for (i = 0; i < __MAX_XDP_MODE; i++)
9316 if (dev->xdp_state[i].prog || dev->xdp_state[i].link)
9317 count++;
9318 return count;
9319}
9320
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009321u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
9322{
9323 struct bpf_prog *prog = dev_xdp_prog(dev, mode);
9324
9325 return prog ? prog->aux->id : 0;
9326}
9327
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009328static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
9329 struct bpf_xdp_link *link)
9330{
9331 dev->xdp_state[mode].link = link;
9332 dev->xdp_state[mode].prog = NULL;
9333}
9334
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009335static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
9336 struct bpf_prog *prog)
9337{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009338 dev->xdp_state[mode].link = NULL;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009339 dev->xdp_state[mode].prog = prog;
9340}
9341
9342static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
9343 bpf_op_t bpf_op, struct netlink_ext_ack *extack,
9344 u32 flags, struct bpf_prog *prog)
9345{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07009346 struct netdev_bpf xdp;
Björn Töpel7e6897f2019-12-13 18:51:09 +01009347 int err;
9348
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009349 memset(&xdp, 0, sizeof(xdp));
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009350 xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009351 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07009352 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009353 xdp.prog = prog;
9354
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009355 /* Drivers assume refcnt is already incremented (i.e, prog pointer is
9356 * "moved" into driver), so they don't increment it on their own, but
9357 * they do decrement refcnt when program is detached or replaced.
9358 * Given net_device also owns link/prog, we need to bump refcnt here
9359 * to prevent drivers from underflowing it.
9360 */
9361 if (prog)
9362 bpf_prog_inc(prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009363 err = bpf_op(dev, &xdp);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009364 if (err) {
9365 if (prog)
9366 bpf_prog_put(prog);
9367 return err;
9368 }
Björn Töpel7e6897f2019-12-13 18:51:09 +01009369
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009370 if (mode != XDP_MODE_HW)
9371 bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009372
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009373 return 0;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009374}
9375
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009376static void dev_xdp_uninstall(struct net_device *dev)
9377{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009378 struct bpf_xdp_link *link;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009379 struct bpf_prog *prog;
9380 enum bpf_xdp_mode mode;
9381 bpf_op_t bpf_op;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009382
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009383 ASSERT_RTNL();
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009384
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009385 for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
9386 prog = dev_xdp_prog(dev, mode);
9387 if (!prog)
9388 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009389
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009390 bpf_op = dev_xdp_bpf_op(dev, mode);
9391 if (!bpf_op)
9392 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009393
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009394 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9395
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009396 /* auto-detach link from net device */
9397 link = dev_xdp_link(dev, mode);
9398 if (link)
9399 link->dev = NULL;
9400 else
9401 bpf_prog_put(prog);
9402
9403 dev_xdp_set_link(dev, mode, NULL);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009404 }
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009405}
9406
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009407static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009408 struct bpf_xdp_link *link, struct bpf_prog *new_prog,
9409 struct bpf_prog *old_prog, u32 flags)
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009410{
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009411 unsigned int num_modes = hweight32(flags & XDP_FLAGS_MODES);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009412 struct bpf_prog *cur_prog;
9413 enum bpf_xdp_mode mode;
9414 bpf_op_t bpf_op;
9415 int err;
9416
9417 ASSERT_RTNL();
9418
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009419 /* either link or prog attachment, never both */
9420 if (link && (new_prog || old_prog))
9421 return -EINVAL;
9422 /* link supports only XDP mode flags */
9423 if (link && (flags & ~XDP_FLAGS_MODES)) {
9424 NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
9425 return -EINVAL;
9426 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009427 /* just one XDP mode bit should be set, zero defaults to drv/skb mode */
9428 if (num_modes > 1) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009429 NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
9430 return -EINVAL;
9431 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009432 /* avoid ambiguity if offload + drv/skb mode progs are both loaded */
9433 if (!num_modes && dev_xdp_prog_count(dev) > 1) {
9434 NL_SET_ERR_MSG(extack,
9435 "More than one program loaded, unset mode is ambiguous");
9436 return -EINVAL;
9437 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009438 /* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
9439 if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
9440 NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
9441 return -EINVAL;
9442 }
9443
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009444 mode = dev_xdp_mode(dev, flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009445 /* can't replace attached link */
9446 if (dev_xdp_link(dev, mode)) {
9447 NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
9448 return -EBUSY;
9449 }
9450
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009451 cur_prog = dev_xdp_prog(dev, mode);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009452 /* can't replace attached prog with link */
9453 if (link && cur_prog) {
9454 NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
9455 return -EBUSY;
9456 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009457 if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
9458 NL_SET_ERR_MSG(extack, "Active program does not match expected");
9459 return -EEXIST;
9460 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009461
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009462 /* put effective new program into new_prog */
9463 if (link)
9464 new_prog = link->link.prog;
9465
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009466 if (new_prog) {
9467 bool offload = mode == XDP_MODE_HW;
9468 enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
9469 ? XDP_MODE_DRV : XDP_MODE_SKB;
9470
Andrii Nakryiko068d9d12020-08-11 19:29:23 -07009471 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
9472 NL_SET_ERR_MSG(extack, "XDP program already attached");
9473 return -EBUSY;
9474 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009475 if (!offload && dev_xdp_prog(dev, other_mode)) {
9476 NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
9477 return -EEXIST;
9478 }
9479 if (!offload && bpf_prog_is_dev_bound(new_prog->aux)) {
9480 NL_SET_ERR_MSG(extack, "Using device-bound program without HW_MODE flag is not supported");
9481 return -EINVAL;
9482 }
9483 if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
9484 NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
9485 return -EINVAL;
9486 }
9487 if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
9488 NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
9489 return -EINVAL;
9490 }
9491 }
9492
9493 /* don't call drivers if the effective program didn't change */
9494 if (new_prog != cur_prog) {
9495 bpf_op = dev_xdp_bpf_op(dev, mode);
9496 if (!bpf_op) {
9497 NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
9498 return -EOPNOTSUPP;
9499 }
9500
9501 err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
9502 if (err)
9503 return err;
9504 }
9505
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009506 if (link)
9507 dev_xdp_set_link(dev, mode, link);
9508 else
9509 dev_xdp_set_prog(dev, mode, new_prog);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009510 if (cur_prog)
9511 bpf_prog_put(cur_prog);
9512
9513 return 0;
9514}
9515
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009516static int dev_xdp_attach_link(struct net_device *dev,
9517 struct netlink_ext_ack *extack,
9518 struct bpf_xdp_link *link)
9519{
9520 return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
9521}
9522
9523static int dev_xdp_detach_link(struct net_device *dev,
9524 struct netlink_ext_ack *extack,
9525 struct bpf_xdp_link *link)
9526{
9527 enum bpf_xdp_mode mode;
9528 bpf_op_t bpf_op;
9529
9530 ASSERT_RTNL();
9531
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009532 mode = dev_xdp_mode(dev, link->flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009533 if (dev_xdp_link(dev, mode) != link)
9534 return -EINVAL;
9535
9536 bpf_op = dev_xdp_bpf_op(dev, mode);
9537 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9538 dev_xdp_set_link(dev, mode, NULL);
9539 return 0;
9540}
9541
9542static void bpf_xdp_link_release(struct bpf_link *link)
9543{
9544 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9545
9546 rtnl_lock();
9547
9548 /* if racing with net_device's tear down, xdp_link->dev might be
9549 * already NULL, in which case link was already auto-detached
9550 */
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009551 if (xdp_link->dev) {
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009552 WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009553 xdp_link->dev = NULL;
9554 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009555
9556 rtnl_unlock();
9557}
9558
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009559static int bpf_xdp_link_detach(struct bpf_link *link)
9560{
9561 bpf_xdp_link_release(link);
9562 return 0;
9563}
9564
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009565static void bpf_xdp_link_dealloc(struct bpf_link *link)
9566{
9567 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9568
9569 kfree(xdp_link);
9570}
9571
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009572static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
9573 struct seq_file *seq)
9574{
9575 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9576 u32 ifindex = 0;
9577
9578 rtnl_lock();
9579 if (xdp_link->dev)
9580 ifindex = xdp_link->dev->ifindex;
9581 rtnl_unlock();
9582
9583 seq_printf(seq, "ifindex:\t%u\n", ifindex);
9584}
9585
9586static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
9587 struct bpf_link_info *info)
9588{
9589 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9590 u32 ifindex = 0;
9591
9592 rtnl_lock();
9593 if (xdp_link->dev)
9594 ifindex = xdp_link->dev->ifindex;
9595 rtnl_unlock();
9596
9597 info->xdp.ifindex = ifindex;
9598 return 0;
9599}
9600
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009601static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
9602 struct bpf_prog *old_prog)
9603{
9604 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9605 enum bpf_xdp_mode mode;
9606 bpf_op_t bpf_op;
9607 int err = 0;
9608
9609 rtnl_lock();
9610
9611 /* link might have been auto-released already, so fail */
9612 if (!xdp_link->dev) {
9613 err = -ENOLINK;
9614 goto out_unlock;
9615 }
9616
9617 if (old_prog && link->prog != old_prog) {
9618 err = -EPERM;
9619 goto out_unlock;
9620 }
9621 old_prog = link->prog;
9622 if (old_prog == new_prog) {
9623 /* no-op, don't disturb drivers */
9624 bpf_prog_put(new_prog);
9625 goto out_unlock;
9626 }
9627
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009628 mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009629 bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
9630 err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
9631 xdp_link->flags, new_prog);
9632 if (err)
9633 goto out_unlock;
9634
9635 old_prog = xchg(&link->prog, new_prog);
9636 bpf_prog_put(old_prog);
9637
9638out_unlock:
9639 rtnl_unlock();
9640 return err;
9641}
9642
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009643static const struct bpf_link_ops bpf_xdp_link_lops = {
9644 .release = bpf_xdp_link_release,
9645 .dealloc = bpf_xdp_link_dealloc,
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009646 .detach = bpf_xdp_link_detach,
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009647 .show_fdinfo = bpf_xdp_link_show_fdinfo,
9648 .fill_link_info = bpf_xdp_link_fill_link_info,
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009649 .update_prog = bpf_xdp_link_update,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009650};
9651
9652int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
9653{
9654 struct net *net = current->nsproxy->net_ns;
9655 struct bpf_link_primer link_primer;
9656 struct bpf_xdp_link *link;
9657 struct net_device *dev;
9658 int err, fd;
9659
9660 dev = dev_get_by_index(net, attr->link_create.target_ifindex);
9661 if (!dev)
9662 return -EINVAL;
9663
9664 link = kzalloc(sizeof(*link), GFP_USER);
9665 if (!link) {
9666 err = -ENOMEM;
9667 goto out_put_dev;
9668 }
9669
9670 bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog);
9671 link->dev = dev;
9672 link->flags = attr->link_create.flags;
9673
9674 err = bpf_link_prime(&link->link, &link_primer);
9675 if (err) {
9676 kfree(link);
9677 goto out_put_dev;
9678 }
9679
9680 rtnl_lock();
9681 err = dev_xdp_attach_link(dev, NULL, link);
9682 rtnl_unlock();
9683
9684 if (err) {
9685 bpf_link_cleanup(&link_primer);
9686 goto out_put_dev;
9687 }
9688
9689 fd = bpf_link_settle(&link_primer);
9690 /* link itself doesn't hold dev's refcnt to not complicate shutdown */
9691 dev_put(dev);
9692 return fd;
9693
9694out_put_dev:
9695 dev_put(dev);
9696 return err;
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009697}
9698
9699/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07009700 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
9701 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07009702 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07009703 * @fd: new program fd or negative value to clear
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009704 * @expected_fd: old program fd that userspace expects to replace or clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01009705 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07009706 *
9707 * Set or clear a bpf program for a device
9708 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07009709int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009710 int fd, int expected_fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07009711{
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009712 enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009713 struct bpf_prog *new_prog = NULL, *old_prog = NULL;
Brenden Blancoa7862b42016-07-19 12:16:48 -07009714 int err;
9715
Daniel Borkmann85de8572016-11-28 23:16:54 +01009716 ASSERT_RTNL();
9717
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009718 if (fd >= 0) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009719 new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
9720 mode != XDP_MODE_SKB);
9721 if (IS_ERR(new_prog))
9722 return PTR_ERR(new_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009723 }
9724
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009725 if (expected_fd >= 0) {
9726 old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
9727 mode != XDP_MODE_SKB);
9728 if (IS_ERR(old_prog)) {
9729 err = PTR_ERR(old_prog);
9730 old_prog = NULL;
9731 goto err_out;
9732 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009733 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07009734
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009735 err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009736
9737err_out:
9738 if (err && new_prog)
9739 bpf_prog_put(new_prog);
9740 if (old_prog)
9741 bpf_prog_put(old_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009742 return err;
9743}
Brenden Blancoa7862b42016-07-19 12:16:48 -07009744
9745/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009746 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07009747 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07009748 *
9749 * Returns a suitable unique value for a new device interface
9750 * number. The caller must hold the rtnl semaphore or the
9751 * dev_base_lock to be sure it remains unique.
9752 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07009753static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009754{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009755 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11009756
Linus Torvalds1da177e2005-04-16 15:20:36 -07009757 for (;;) {
9758 if (++ifindex <= 0)
9759 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009760 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009761 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009762 }
9763}
9764
Linus Torvalds1da177e2005-04-16 15:20:36 -07009765/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08009766static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07009767DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009768
Stephen Hemminger6f05f622007-03-08 20:46:03 -08009769static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009770{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009771 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009772 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009773}
9774
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009775static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
9776 struct net_device *upper, netdev_features_t features)
9777{
9778 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9779 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009780 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009781
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009782 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009783 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009784 if (!(upper->wanted_features & feature)
9785 && (features & feature)) {
9786 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
9787 &feature, upper->name);
9788 features &= ~feature;
9789 }
9790 }
9791
9792 return features;
9793}
9794
9795static void netdev_sync_lower_features(struct net_device *upper,
9796 struct net_device *lower, netdev_features_t features)
9797{
9798 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9799 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009800 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009801
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009802 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009803 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009804 if (!(features & feature) && (lower->features & feature)) {
9805 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
9806 &feature, lower->name);
9807 lower->wanted_features &= ~feature;
Cong Wangdd912302020-05-07 12:19:03 -07009808 __netdev_update_features(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009809
9810 if (unlikely(lower->features & feature))
9811 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
9812 &feature, lower->name);
Cong Wangdd912302020-05-07 12:19:03 -07009813 else
9814 netdev_features_change(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009815 }
9816 }
9817}
9818
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009819static netdev_features_t netdev_fix_features(struct net_device *dev,
9820 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07009821{
Michał Mirosław57422dc2011-01-22 12:14:12 +00009822 /* Fix illegal checksum combinations */
9823 if ((features & NETIF_F_HW_CSUM) &&
9824 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009825 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00009826 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
9827 }
9828
Herbert Xub63365a2008-10-23 01:11:29 -07009829 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009830 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009831 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009832 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07009833 }
9834
Pravin B Shelarec5f0612013-03-07 09:28:01 +00009835 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
9836 !(features & NETIF_F_IP_CSUM)) {
9837 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
9838 features &= ~NETIF_F_TSO;
9839 features &= ~NETIF_F_TSO_ECN;
9840 }
9841
9842 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
9843 !(features & NETIF_F_IPV6_CSUM)) {
9844 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
9845 features &= ~NETIF_F_TSO6;
9846 }
9847
Alexander Duyckb1dc4972016-05-02 09:38:24 -07009848 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
9849 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
9850 features &= ~NETIF_F_TSO_MANGLEID;
9851
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00009852 /* TSO ECN requires that TSO is present as well. */
9853 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
9854 features &= ~NETIF_F_TSO_ECN;
9855
Michał Mirosław212b5732011-02-15 16:59:16 +00009856 /* Software GSO depends on SG. */
9857 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009858 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00009859 features &= ~NETIF_F_GSO;
9860 }
9861
Alexander Duyck802ab552016-04-10 21:45:03 -04009862 /* GSO partial features require GSO partial be set */
9863 if ((features & dev->gso_partial_features) &&
9864 !(features & NETIF_F_GSO_PARTIAL)) {
9865 netdev_dbg(dev,
9866 "Dropping partially supported GSO features since no GSO partial.\n");
9867 features &= ~dev->gso_partial_features;
9868 }
9869
Michael Chanfb1f5f72017-12-16 03:09:40 -05009870 if (!(features & NETIF_F_RXCSUM)) {
9871 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
9872 * successfully merged by hardware must also have the
9873 * checksum verified by hardware. If the user does not
9874 * want to enable RXCSUM, logically, we should disable GRO_HW.
9875 */
9876 if (features & NETIF_F_GRO_HW) {
9877 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
9878 features &= ~NETIF_F_GRO_HW;
9879 }
9880 }
9881
Gal Pressmande8d5ab2018-03-12 11:48:49 +02009882 /* LRO/HW-GRO features cannot be combined with RX-FCS */
9883 if (features & NETIF_F_RXFCS) {
9884 if (features & NETIF_F_LRO) {
9885 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
9886 features &= ~NETIF_F_LRO;
9887 }
9888
9889 if (features & NETIF_F_GRO_HW) {
9890 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
9891 features &= ~NETIF_F_GRO_HW;
9892 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02009893 }
9894
Tariq Toukan25537d72021-01-14 17:12:15 +02009895 if (features & NETIF_F_HW_TLS_TX) {
9896 bool ip_csum = (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) ==
9897 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
9898 bool hw_csum = features & NETIF_F_HW_CSUM;
9899
9900 if (!ip_csum && !hw_csum) {
9901 netdev_dbg(dev, "Dropping TLS TX HW offload feature since no CSUM feature.\n");
9902 features &= ~NETIF_F_HW_TLS_TX;
9903 }
Tariq Toukanae0b04b2020-12-13 16:39:29 +02009904 }
9905
Tariq Toukana3eb4e92021-01-17 17:15:38 +02009906 if ((features & NETIF_F_HW_TLS_RX) && !(features & NETIF_F_RXCSUM)) {
9907 netdev_dbg(dev, "Dropping TLS RX HW offload feature since no RXCSUM feature.\n");
9908 features &= ~NETIF_F_HW_TLS_RX;
9909 }
9910
Herbert Xub63365a2008-10-23 01:11:29 -07009911 return features;
9912}
Herbert Xub63365a2008-10-23 01:11:29 -07009913
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009914int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00009915{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009916 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009917 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009918 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05009919 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00009920
Michał Mirosław87267482011-04-12 09:56:38 +00009921 ASSERT_RTNL();
9922
Michał Mirosław5455c692011-02-15 16:59:17 +00009923 features = netdev_get_wanted_features(dev);
9924
9925 if (dev->netdev_ops->ndo_fix_features)
9926 features = dev->netdev_ops->ndo_fix_features(dev, features);
9927
9928 /* driver might be less strict about feature dependencies */
9929 features = netdev_fix_features(dev, features);
9930
Randy Dunlap4250b752020-09-17 21:35:15 -07009931 /* some features can't be enabled if they're off on an upper device */
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009932 netdev_for_each_upper_dev_rcu(dev, upper, iter)
9933 features = netdev_sync_upper_features(dev, upper, features);
9934
Michał Mirosław5455c692011-02-15 16:59:17 +00009935 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05009936 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00009937
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009938 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
9939 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00009940
9941 if (dev->netdev_ops->ndo_set_features)
9942 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01009943 else
9944 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00009945
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009946 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00009947 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009948 "set_features() failed (%d); wanted %pNF, left %pNF\n",
9949 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01009950 /* return non-0 since some features might have changed and
9951 * it's better to fire a spurious notification than miss it
9952 */
9953 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009954 }
9955
Jarod Wilsone7868a82015-11-03 23:09:32 -05009956sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009957 /* some features must be disabled on lower devices when disabled
9958 * on an upper device (think: bonding master or bridge)
9959 */
9960 netdev_for_each_lower_dev(dev, lower, iter)
9961 netdev_sync_lower_features(dev, lower, features);
9962
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009963 if (!err) {
9964 netdev_features_t diff = features ^ dev->features;
9965
9966 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
9967 /* udp_tunnel_{get,drop}_rx_info both need
9968 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
9969 * device, or they won't do anything.
9970 * Thus we need to update dev->features
9971 * *before* calling udp_tunnel_get_rx_info,
9972 * but *after* calling udp_tunnel_drop_rx_info.
9973 */
9974 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
9975 dev->features = features;
9976 udp_tunnel_get_rx_info(dev);
9977 } else {
9978 udp_tunnel_drop_rx_info(dev);
9979 }
9980 }
9981
Gal Pressman9daae9b2018-03-28 17:46:54 +03009982 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
9983 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
9984 dev->features = features;
9985 err |= vlan_get_rx_ctag_filter_info(dev);
9986 } else {
9987 vlan_drop_rx_ctag_filter_info(dev);
9988 }
9989 }
9990
9991 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
9992 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
9993 dev->features = features;
9994 err |= vlan_get_rx_stag_filter_info(dev);
9995 } else {
9996 vlan_drop_rx_stag_filter_info(dev);
9997 }
9998 }
9999
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010000 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +020010001 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010002
Jarod Wilsone7868a82015-11-03 23:09:32 -050010003 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010004}
10005
Michał Mirosławafe12cc2011-05-07 03:22:17 +000010006/**
10007 * netdev_update_features - recalculate device features
10008 * @dev: the device to check
10009 *
10010 * Recalculate dev->features set and send notifications if it
10011 * has changed. Should be called after driver or hardware dependent
10012 * conditions might have changed that influence the features.
10013 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010014void netdev_update_features(struct net_device *dev)
10015{
10016 if (__netdev_update_features(dev))
10017 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +000010018}
10019EXPORT_SYMBOL(netdev_update_features);
10020
Linus Torvalds1da177e2005-04-16 15:20:36 -070010021/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +000010022 * netdev_change_features - recalculate device features
10023 * @dev: the device to check
10024 *
10025 * Recalculate dev->features set and send notifications even
10026 * if they have not changed. Should be called instead of
10027 * netdev_update_features() if also dev->vlan_features might
10028 * have changed to allow the changes to be propagated to stacked
10029 * VLAN devices.
10030 */
10031void netdev_change_features(struct net_device *dev)
10032{
10033 __netdev_update_features(dev);
10034 netdev_features_change(dev);
10035}
10036EXPORT_SYMBOL(netdev_change_features);
10037
10038/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010039 * netif_stacked_transfer_operstate - transfer operstate
10040 * @rootdev: the root or lower level device to transfer state from
10041 * @dev: the device to transfer operstate to
10042 *
10043 * Transfer operational state from root to device. This is normally
10044 * called when a stacking relationship exists between the root
10045 * device and the device(a leaf device).
10046 */
10047void netif_stacked_transfer_operstate(const struct net_device *rootdev,
10048 struct net_device *dev)
10049{
10050 if (rootdev->operstate == IF_OPER_DORMANT)
10051 netif_dormant_on(dev);
10052 else
10053 netif_dormant_off(dev);
10054
Andrew Lunneec517cd2020-04-20 00:11:50 +020010055 if (rootdev->operstate == IF_OPER_TESTING)
10056 netif_testing_on(dev);
10057 else
10058 netif_testing_off(dev);
10059
Zhang Shengju0575c862017-04-26 17:49:38 +080010060 if (netif_carrier_ok(rootdev))
10061 netif_carrier_on(dev);
10062 else
10063 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010064}
10065EXPORT_SYMBOL(netif_stacked_transfer_operstate);
10066
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010067static int netif_alloc_rx_queues(struct net_device *dev)
10068{
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010069 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +000010070 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +053010071 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010072 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010073
Tom Herbertbd25fa72010-10-18 18:00:16 +000010074 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010075
Michal Hockodcda9b02017-07-12 14:36:45 -070010076 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -070010077 if (!rx)
10078 return -ENOMEM;
10079
Tom Herbertbd25fa72010-10-18 18:00:16 +000010080 dev->_rx = rx;
10081
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010082 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +000010083 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010084
10085 /* XDP RX-queue setup */
Björn Töpelb02e5a02020-11-30 19:52:01 +010010086 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i, 0);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010087 if (err < 0)
10088 goto err_rxq_info;
10089 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010090 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010091
10092err_rxq_info:
10093 /* Rollback successful reg's and free other resources */
10094 while (i--)
10095 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -080010096 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010097 dev->_rx = NULL;
10098 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010099}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010100
10101static void netif_free_rx_queues(struct net_device *dev)
10102{
10103 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010104
10105 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
10106 if (!dev->_rx)
10107 return;
10108
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010109 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -080010110 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
10111
10112 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010113}
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010114
Changli Gaoaa942102010-12-04 02:31:41 +000010115static void netdev_init_one_queue(struct net_device *dev,
10116 struct netdev_queue *queue, void *_unused)
10117{
10118 /* Initialize queue lock */
10119 spin_lock_init(&queue->_xmit_lock);
Cong Wang1a33e102020-05-02 22:22:19 -070010120 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
Changli Gaoaa942102010-12-04 02:31:41 +000010121 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +000010122 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +000010123 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +000010124#ifdef CONFIG_BQL
10125 dql_init(&queue->dql, HZ);
10126#endif
Changli Gaoaa942102010-12-04 02:31:41 +000010127}
10128
Eric Dumazet60877a32013-06-20 01:15:51 -070010129static void netif_free_tx_queues(struct net_device *dev)
10130{
WANG Cong4cb28972014-06-02 15:55:22 -070010131 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -070010132}
10133
Tom Herberte6484932010-10-18 18:04:39 +000010134static int netif_alloc_netdev_queues(struct net_device *dev)
10135{
10136 unsigned int count = dev->num_tx_queues;
10137 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -070010138 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +000010139
Eric Dumazetd3397272015-07-06 17:13:26 +020010140 if (count < 1 || count > 0xffff)
10141 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +000010142
Michal Hockodcda9b02017-07-12 14:36:45 -070010143 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -070010144 if (!tx)
10145 return -ENOMEM;
10146
Tom Herberte6484932010-10-18 18:04:39 +000010147 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +000010148
Tom Herberte6484932010-10-18 18:04:39 +000010149 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
10150 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +000010151
10152 return 0;
Tom Herberte6484932010-10-18 18:04:39 +000010153}
10154
Denys Vlasenkoa2029242015-05-11 21:17:53 +020010155void netif_tx_stop_all_queues(struct net_device *dev)
10156{
10157 unsigned int i;
10158
10159 for (i = 0; i < dev->num_tx_queues; i++) {
10160 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +110010161
Denys Vlasenkoa2029242015-05-11 21:17:53 +020010162 netif_tx_stop_queue(txq);
10163 }
10164}
10165EXPORT_SYMBOL(netif_tx_stop_all_queues);
10166
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010167/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010168 * register_netdevice - register a network device
10169 * @dev: device to register
10170 *
10171 * Take a completed network device structure and add it to the kernel
10172 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10173 * chain. 0 is returned on success. A negative errno code is returned
10174 * on a failure to set up the device, or if the name is a duplicate.
10175 *
10176 * Callers must hold the rtnl semaphore. You may want
10177 * register_netdev() instead of this.
10178 *
10179 * BUGS:
10180 * The locking appears insufficient to guarantee two parallel registers
10181 * will not get the same name.
10182 */
10183
10184int register_netdevice(struct net_device *dev)
10185{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010186 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010187 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010188
Florian Fainellie283de32018-04-30 14:20:05 -070010189 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
10190 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010191 BUG_ON(dev_boot_phase);
10192 ASSERT_RTNL();
10193
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010194 might_sleep();
10195
Linus Torvalds1da177e2005-04-16 15:20:36 -070010196 /* When net_device's are persistent, this will be fatal. */
10197 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010198 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010199
Jakub Kicinski9000edb2020-03-16 13:47:12 -070010200 ret = ethtool_check_ops(dev->ethtool_ops);
10201 if (ret)
10202 return ret;
10203
David S. Millerf1f28aa2008-07-15 00:08:33 -070010204 spin_lock_init(&dev->addr_list_lock);
Cong Wang845e0eb2020-06-08 14:53:01 -070010205 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010206
Gao feng828de4f2012-09-13 20:58:27 +000010207 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +000010208 if (ret < 0)
10209 goto out;
10210
Eric Dumazet9077f052019-10-03 08:59:24 -070010211 ret = -ENOMEM;
Jiri Pirkoff927412019-09-30 11:48:15 +020010212 dev->name_node = netdev_name_node_head_alloc(dev);
10213 if (!dev->name_node)
10214 goto out;
10215
Linus Torvalds1da177e2005-04-16 15:20:36 -070010216 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010217 if (dev->netdev_ops->ndo_init) {
10218 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219 if (ret) {
10220 if (ret > 0)
10221 ret = -EIO;
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010222 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010223 }
10224 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010225
Patrick McHardyf6469682013-04-19 02:04:27 +000010226 if (((dev->hw_features | dev->features) &
10227 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +000010228 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
10229 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
10230 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
10231 ret = -EINVAL;
10232 goto err_uninit;
10233 }
10234
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +000010235 ret = -EBUSY;
10236 if (!dev->ifindex)
10237 dev->ifindex = dev_new_index(net);
10238 else if (__dev_get_by_index(net, dev->ifindex))
10239 goto err_uninit;
10240
Michał Mirosław5455c692011-02-15 16:59:17 +000010241 /* Transfer changeable features to wanted_features and enable
10242 * software offloads (GSO and GRO).
10243 */
Steffen Klassert1a3c9982020-01-25 11:26:43 +010010244 dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
Michał Mirosław14d12322011-02-22 16:52:28 +000010245 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +020010246
Jakub Kicinski876c4382021-01-06 13:06:34 -080010247 if (dev->udp_tunnel_nic_info) {
Sabrina Dubrocad764a122017-07-21 12:49:28 +020010248 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
10249 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
10250 }
10251
Michał Mirosław14d12322011-02-22 16:52:28 +000010252 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010253
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010254 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +000010255 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010256
Alexander Duyck7f348a62016-04-20 16:51:00 -040010257 /* If IPv4 TCP segmentation offload is supported we should also
10258 * allow the device to enable segmenting the frame with the option
10259 * of ignoring a static IP ID value. This doesn't enable the
10260 * feature itself but allows the user to enable it later.
10261 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010262 if (dev->hw_features & NETIF_F_TSO)
10263 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -040010264 if (dev->vlan_features & NETIF_F_TSO)
10265 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
10266 if (dev->mpls_features & NETIF_F_TSO)
10267 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
10268 if (dev->hw_enc_features & NETIF_F_TSO)
10269 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -070010270
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010271 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +000010272 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010273 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +000010274
Pravin B Shelaree579672013-03-07 09:28:08 +000010275 /* Make NETIF_F_SG inheritable to tunnel devices.
10276 */
Alexander Duyck802ab552016-04-10 21:45:03 -040010277 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +000010278
Simon Horman0d89d202013-05-23 21:02:52 +000010279 /* Make NETIF_F_SG inheritable to MPLS.
10280 */
10281 dev->mpls_features |= NETIF_F_SG;
10282
Johannes Berg7ffbe3f2009-10-02 05:15:27 +000010283 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
10284 ret = notifier_to_errno(ret);
10285 if (ret)
10286 goto err_uninit;
10287
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010288 ret = netdev_register_kobject(dev);
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010289 if (ret) {
10290 dev->reg_state = NETREG_UNREGISTERED;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010291 goto err_uninit;
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010292 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010293 dev->reg_state = NETREG_REGISTERED;
10294
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010295 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +000010296
Linus Torvalds1da177e2005-04-16 15:20:36 -070010297 /*
10298 * Default initial state at registry is that the
10299 * device is present.
10300 */
10301
10302 set_bit(__LINK_STATE_PRESENT, &dev->state);
10303
Ben Hutchings8f4cccb2012-08-20 22:16:51 +010010304 linkwatch_init_dev(dev);
10305
Linus Torvalds1da177e2005-04-16 15:20:36 -070010306 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010307 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010308 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -040010309 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010310
Jiri Pirko948b3372013-01-08 01:38:25 +000010311 /* If the device has permanent device address, driver should
10312 * set dev_addr and also addr_assign_type should be set to
10313 * NET_ADDR_PERM (default value).
10314 */
10315 if (dev->addr_assign_type == NET_ADDR_PERM)
10316 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
10317
Linus Torvalds1da177e2005-04-16 15:20:36 -070010318 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010319 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -070010320 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010321 if (ret) {
Jakub Kicinski766b0512021-01-06 10:40:07 -080010322 /* Expect explicit free_netdev() on failure */
10323 dev->needs_free_netdev = false;
Jakub Kicinski037e56b2021-01-19 12:25:19 -080010324 unregister_netdevice_queue(dev, NULL);
Jakub Kicinski766b0512021-01-06 10:40:07 -080010325 goto out;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010326 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010327 /*
10328 * Prevent userspace races by waiting until the network
10329 * device is fully setup before sending notifications.
10330 */
Patrick McHardya2835762010-02-26 06:34:51 +000010331 if (!dev->rtnl_link_ops ||
10332 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010333 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010334
10335out:
10336 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010337
10338err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010339 if (dev->netdev_ops->ndo_uninit)
10340 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -040010341 if (dev->priv_destructor)
10342 dev->priv_destructor(dev);
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010343err_free_name:
10344 netdev_name_node_free(dev->name_node);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010345 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010346}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010347EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010348
10349/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010350 * init_dummy_netdev - init a dummy network device for NAPI
10351 * @dev: device to init
10352 *
10353 * This takes a network device structure and initialize the minimum
10354 * amount of fields so it can be used to schedule NAPI polls without
10355 * registering a full blown interface. This is to be used by drivers
10356 * that need to tie several hardware interfaces to a single NAPI
10357 * poll scheduler due to HW limitations.
10358 */
10359int init_dummy_netdev(struct net_device *dev)
10360{
10361 /* Clear everything. Note we don't initialize spinlocks
10362 * are they aren't supposed to be taken by any of the
10363 * NAPI code and this dummy netdev is supposed to be
10364 * only ever used for NAPI polls
10365 */
10366 memset(dev, 0, sizeof(struct net_device));
10367
10368 /* make sure we BUG if trying to hit standard
10369 * register/unregister code path
10370 */
10371 dev->reg_state = NETREG_DUMMY;
10372
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010373 /* NAPI wants this */
10374 INIT_LIST_HEAD(&dev->napi_list);
10375
10376 /* a dummy interface is started by default */
10377 set_bit(__LINK_STATE_PRESENT, &dev->state);
10378 set_bit(__LINK_STATE_START, &dev->state);
10379
Josh Elsasser35edfdc2019-01-26 14:38:33 -080010380 /* napi_busy_loop stats accounting wants this */
10381 dev_net_set(dev, &init_net);
10382
Eric Dumazet29b44332010-10-11 10:22:12 +000010383 /* Note : We dont allocate pcpu_refcnt for dummy devices,
10384 * because users of this 'device' dont need to change
10385 * its refcount.
10386 */
10387
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010388 return 0;
10389}
10390EXPORT_SYMBOL_GPL(init_dummy_netdev);
10391
10392
10393/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010394 * register_netdev - register a network device
10395 * @dev: device to register
10396 *
10397 * Take a completed network device structure and add it to the kernel
10398 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10399 * chain. 0 is returned on success. A negative errno code is returned
10400 * on a failure to set up the device, or if the name is a duplicate.
10401 *
Borislav Petkov38b4da382007-04-20 22:14:10 -070010402 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010403 * and expands the device name if you passed a format string to
10404 * alloc_netdev.
10405 */
10406int register_netdev(struct net_device *dev)
10407{
10408 int err;
10409
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +030010410 if (rtnl_lock_killable())
10411 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010413 rtnl_unlock();
10414 return err;
10415}
10416EXPORT_SYMBOL(register_netdev);
10417
Eric Dumazet29b44332010-10-11 10:22:12 +000010418int netdev_refcnt_read(const struct net_device *dev)
10419{
Eric Dumazet919067c2021-03-19 10:39:33 -070010420#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010421 int i, refcnt = 0;
10422
10423 for_each_possible_cpu(i)
10424 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
10425 return refcnt;
Eric Dumazet919067c2021-03-19 10:39:33 -070010426#else
10427 return refcount_read(&dev->dev_refcnt);
10428#endif
Eric Dumazet29b44332010-10-11 10:22:12 +000010429}
10430EXPORT_SYMBOL(netdev_refcnt_read);
10431
Dmitry Vyukov5aa3afe2021-03-23 07:49:23 +010010432int netdev_unregister_timeout_secs __read_mostly = 10;
10433
Mauro Carvalho Chehabde2b5412020-09-22 13:22:52 +020010434#define WAIT_REFS_MIN_MSECS 1
10435#define WAIT_REFS_MAX_MSECS 250
Ben Hutchings2c530402012-07-10 10:55:09 +000010436/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010437 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +000010438 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010439 *
10440 * This is called when unregistering network devices.
10441 *
10442 * Any protocol or device that holds a reference should register
10443 * for netdevice notification, and cleanup and put back the
10444 * reference if they receive an UNREGISTER event.
10445 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010446 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010447 */
10448static void netdev_wait_allrefs(struct net_device *dev)
10449{
10450 unsigned long rebroadcast_time, warning_time;
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010451 int wait = 0, refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010452
Eric Dumazete014deb2009-11-17 05:59:21 +000010453 linkwatch_forget_dev(dev);
10454
Linus Torvalds1da177e2005-04-16 15:20:36 -070010455 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +000010456 refcnt = netdev_refcnt_read(dev);
10457
Eric Dumazetadd2d732021-03-22 11:21:45 -070010458 while (refcnt != 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010459 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010460 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010461
10462 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010463 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010464
Eric Dumazet748e2d92012-08-22 21:50:59 +000010465 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010466 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +000010467 rtnl_lock();
10468
Linus Torvalds1da177e2005-04-16 15:20:36 -070010469 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
10470 &dev->state)) {
10471 /* We must not have linkwatch events
10472 * pending on unregister. If this
10473 * happens, we simply run the queue
10474 * unscheduled, resulting in a noop
10475 * for this device.
10476 */
10477 linkwatch_run_queue();
10478 }
10479
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010480 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010481
10482 rebroadcast_time = jiffies;
10483 }
10484
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010485 if (!wait) {
10486 rcu_barrier();
10487 wait = WAIT_REFS_MIN_MSECS;
10488 } else {
10489 msleep(wait);
10490 wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
10491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010492
Eric Dumazet29b44332010-10-11 10:22:12 +000010493 refcnt = netdev_refcnt_read(dev);
10494
Dmitry Vyukov6c996e12021-03-25 15:52:45 +010010495 if (refcnt != 1 &&
Dmitry Vyukov5aa3afe2021-03-23 07:49:23 +010010496 time_after(jiffies, warning_time +
10497 netdev_unregister_timeout_secs * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010498 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
10499 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010500 warning_time = jiffies;
10501 }
10502 }
10503}
10504
10505/* The sequence is:
10506 *
10507 * rtnl_lock();
10508 * ...
10509 * register_netdevice(x1);
10510 * register_netdevice(x2);
10511 * ...
10512 * unregister_netdevice(y1);
10513 * unregister_netdevice(y2);
10514 * ...
10515 * rtnl_unlock();
10516 * free_netdev(y1);
10517 * free_netdev(y2);
10518 *
Herbert Xu58ec3b42008-10-07 15:50:03 -070010519 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -070010520 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010521 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070010522 * without deadlocking with linkwatch via keventd.
10523 * 2) Since we run with the RTNL semaphore not held, we can sleep
10524 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -070010525 *
10526 * We must not return until all unregister events added during
10527 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010529void netdev_run_todo(void)
10530{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010531 struct list_head list;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010532#ifdef CONFIG_LOCKDEP
10533 struct list_head unlink_list;
10534
10535 list_replace_init(&net_unlink_list, &unlink_list);
10536
10537 while (!list_empty(&unlink_list)) {
10538 struct net_device *dev = list_first_entry(&unlink_list,
10539 struct net_device,
10540 unlink_list);
Taehee Yoo0e8b8d62020-10-15 16:26:06 +000010541 list_del_init(&dev->unlink_list);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010542 dev->nested_level = dev->lower_level - 1;
10543 }
10544#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010545
Linus Torvalds1da177e2005-04-16 15:20:36 -070010546 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010547 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -070010548
10549 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010550
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010551
10552 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +000010553 if (!list_empty(&list))
10554 rcu_barrier();
10555
Linus Torvalds1da177e2005-04-16 15:20:36 -070010556 while (!list_empty(&list)) {
10557 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +000010558 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010559 list_del(&dev->todo_list);
10560
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010561 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010562 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070010563 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010564 dump_stack();
10565 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010566 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010567
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010568 dev->reg_state = NETREG_UNREGISTERED;
10569
10570 netdev_wait_allrefs(dev);
10571
10572 /* paranoia */
Eric Dumazetadd2d732021-03-22 11:21:45 -070010573 BUG_ON(netdev_refcnt_read(dev) != 1);
Salam Noureddine7866a622015-01-27 11:35:48 -080010574 BUG_ON(!list_empty(&dev->ptype_all));
10575 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +000010576 WARN_ON(rcu_access_pointer(dev->ip_ptr));
10577 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -080010578#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -070010579 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -080010580#endif
David S. Millercf124db2017-05-08 12:52:56 -040010581 if (dev->priv_destructor)
10582 dev->priv_destructor(dev);
10583 if (dev->needs_free_netdev)
10584 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010585
Eric W. Biederman50624c92013-09-23 21:19:49 -070010586 /* Report a network device has been unregistered */
10587 rtnl_lock();
10588 dev_net(dev)->dev_unreg_count--;
10589 __rtnl_unlock();
10590 wake_up(&netdev_unregistering_wq);
10591
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010592 /* Free network device */
10593 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010595}
10596
Jarod Wilson92566452016-02-01 18:51:04 -050010597/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
10598 * all the same fields in the same order as net_device_stats, with only
10599 * the type differing, but rtnl_link_stats64 may have additional fields
10600 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +000010601 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010602void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
10603 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +000010604{
10605#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -050010606 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +020010607 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -050010608 /* zero out counters that only exist in rtnl_link_stats64 */
10609 memset((char *)stats64 + sizeof(*netdev_stats), 0,
10610 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010611#else
Jarod Wilson92566452016-02-01 18:51:04 -050010612 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010613 const unsigned long *src = (const unsigned long *)netdev_stats;
10614 u64 *dst = (u64 *)stats64;
10615
Jarod Wilson92566452016-02-01 18:51:04 -050010616 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010617 for (i = 0; i < n; i++)
10618 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -050010619 /* zero out counters that only exist in rtnl_link_stats64 */
10620 memset((char *)stats64 + n * sizeof(u64), 0,
10621 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010622#endif
10623}
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010624EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010625
Eric Dumazetd83345a2009-11-16 03:36:51 +000010626/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010627 * dev_get_stats - get network device statistics
10628 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -070010629 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010630 *
Ben Hutchingsd7753512010-07-09 09:12:41 +000010631 * Get network statistics from device. Return @storage.
10632 * The device driver may provide its own method by setting
10633 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
10634 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010635 */
Ben Hutchingsd7753512010-07-09 09:12:41 +000010636struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
10637 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +000010638{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010639 const struct net_device_ops *ops = dev->netdev_ops;
10640
Eric Dumazet28172732010-07-07 14:58:56 -070010641 if (ops->ndo_get_stats64) {
10642 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010643 ops->ndo_get_stats64(dev, storage);
10644 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +000010645 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010646 } else {
10647 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -070010648 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -070010649 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
10650 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
10651 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -070010652 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -070010653}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010654EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -070010655
Heiner Kallweit44fa32f2020-10-12 10:01:27 +020010656/**
10657 * dev_fetch_sw_netstats - get per-cpu network device statistics
10658 * @s: place to store stats
10659 * @netstats: per-cpu network stats to read from
10660 *
10661 * Read per-cpu network statistics and populate the related fields in @s.
10662 */
10663void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
10664 const struct pcpu_sw_netstats __percpu *netstats)
10665{
10666 int cpu;
10667
10668 for_each_possible_cpu(cpu) {
10669 const struct pcpu_sw_netstats *stats;
10670 struct pcpu_sw_netstats tmp;
10671 unsigned int start;
10672
10673 stats = per_cpu_ptr(netstats, cpu);
10674 do {
10675 start = u64_stats_fetch_begin_irq(&stats->syncp);
10676 tmp.rx_packets = stats->rx_packets;
10677 tmp.rx_bytes = stats->rx_bytes;
10678 tmp.tx_packets = stats->tx_packets;
10679 tmp.tx_bytes = stats->tx_bytes;
10680 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
10681
10682 s->rx_packets += tmp.rx_packets;
10683 s->rx_bytes += tmp.rx_bytes;
10684 s->tx_packets += tmp.tx_packets;
10685 s->tx_bytes += tmp.tx_bytes;
10686 }
10687}
10688EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
10689
Heiner Kallweita1839422020-11-07 21:49:07 +010010690/**
10691 * dev_get_tstats64 - ndo_get_stats64 implementation
10692 * @dev: device to get statistics from
10693 * @s: place to store stats
10694 *
10695 * Populate @s from dev->stats and dev->tstats. Can be used as
10696 * ndo_get_stats64() callback.
10697 */
10698void dev_get_tstats64(struct net_device *dev, struct rtnl_link_stats64 *s)
10699{
10700 netdev_stats_to_stats64(s, &dev->stats);
10701 dev_fetch_sw_netstats(s, dev->tstats);
10702}
10703EXPORT_SYMBOL_GPL(dev_get_tstats64);
10704
Eric Dumazet24824a02010-10-02 06:11:55 +000010705struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -070010706{
Eric Dumazet24824a02010-10-02 06:11:55 +000010707 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -070010708
Eric Dumazet24824a02010-10-02 06:11:55 +000010709#ifdef CONFIG_NET_CLS_ACT
10710 if (queue)
10711 return queue;
10712 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10713 if (!queue)
10714 return NULL;
10715 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -080010716 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +000010717 queue->qdisc_sleeping = &noop_qdisc;
10718 rcu_assign_pointer(dev->ingress_queue, queue);
10719#endif
10720 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -070010721}
10722
Eric Dumazet2c60db02012-09-16 09:17:26 +000010723static const struct ethtool_ops default_ethtool_ops;
10724
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +000010725void netdev_set_default_ethtool_ops(struct net_device *dev,
10726 const struct ethtool_ops *ops)
10727{
10728 if (dev->ethtool_ops == &default_ethtool_ops)
10729 dev->ethtool_ops = ops;
10730}
10731EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
10732
Eric Dumazet74d332c2013-10-30 13:10:44 -070010733void netdev_freemem(struct net_device *dev)
10734{
10735 char *addr = (char *)dev - dev->padded;
10736
WANG Cong4cb28972014-06-02 15:55:22 -070010737 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010738}
10739
Linus Torvalds1da177e2005-04-16 15:20:36 -070010740/**
tcharding722c9a02017-02-09 17:56:04 +110010741 * alloc_netdev_mqs - allocate network device
10742 * @sizeof_priv: size of private data to allocate space for
10743 * @name: device name format string
10744 * @name_assign_type: origin of device name
10745 * @setup: callback to initialize device
10746 * @txqs: the number of TX subqueues to allocate
10747 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -070010748 *
tcharding722c9a02017-02-09 17:56:04 +110010749 * Allocates a struct net_device with private data area for driver use
10750 * and performs basic initialization. Also allocates subqueue structs
10751 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010752 */
Tom Herbert36909ea2011-01-09 19:36:31 +000010753struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +020010754 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +000010755 void (*setup)(struct net_device *),
10756 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010757{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010758 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +030010759 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010760 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010761
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -070010762 BUG_ON(strlen(name) >= sizeof(dev->name));
10763
Tom Herbert36909ea2011-01-09 19:36:31 +000010764 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010765 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +000010766 return NULL;
10767 }
10768
Tom Herbert36909ea2011-01-09 19:36:31 +000010769 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010770 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +000010771 return NULL;
10772 }
Tom Herbert36909ea2011-01-09 19:36:31 +000010773
David S. Millerfd2ea0a2008-07-17 01:56:23 -070010774 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010775 if (sizeof_priv) {
10776 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010777 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010778 alloc_size += sizeof_priv;
10779 }
10780 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010781 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010782
Michal Hockodcda9b02017-07-12 14:36:45 -070010783 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +000010784 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010785 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010786
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010787 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010788 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010789
Eric Dumazet919067c2021-03-19 10:39:33 -070010790#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010791 dev->pcpu_refcnt = alloc_percpu(int);
10792 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -070010793 goto free_dev;
Eric Dumazetadd2d732021-03-22 11:21:45 -070010794 dev_hold(dev);
10795#else
10796 refcount_set(&dev->dev_refcnt, 1);
Eric Dumazet919067c2021-03-19 10:39:33 -070010797#endif
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010798
Linus Torvalds1da177e2005-04-16 15:20:36 -070010799 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +000010800 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010801
Jiri Pirko22bedad32010-04-01 21:22:57 +000010802 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010803 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +000010804
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010805 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010806
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -070010807 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +000010808 dev->gso_max_segs = GSO_MAX_SEGS;
Taehee Yoo5343da42019-10-21 18:47:50 +000010809 dev->upper_level = 1;
10810 dev->lower_level = 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010811#ifdef CONFIG_LOCKDEP
10812 dev->nested_level = 0;
10813 INIT_LIST_HEAD(&dev->unlink_list);
10814#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010815
Herbert Xud565b0a2008-12-15 23:38:52 -080010816 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010817 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -070010818 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +000010819 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +020010820 INIT_LIST_HEAD(&dev->adj_list.upper);
10821 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -080010822 INIT_LIST_HEAD(&dev->ptype_all);
10823 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Pirko93642e12020-01-25 12:17:08 +010010824 INIT_LIST_HEAD(&dev->net_notifier_list);
Jiri Kosina59cc1f62016-08-10 11:05:15 +020010825#ifdef CONFIG_NET_SCHED
10826 hash_init(dev->qdisc_hash);
10827#endif
Eric Dumazet02875872014-10-05 18:38:35 -070010828 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010829 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010830
Phil Suttera8131042016-02-17 15:37:43 +010010831 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +020010832 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +010010833 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +010010834 }
Phil Sutter906470c2015-08-18 10:30:48 +020010835
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010836 dev->num_tx_queues = txqs;
10837 dev->real_num_tx_queues = txqs;
10838 if (netif_alloc_netdev_queues(dev))
10839 goto free_all;
10840
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010841 dev->num_rx_queues = rxqs;
10842 dev->real_num_rx_queues = rxqs;
10843 if (netif_alloc_rx_queues(dev))
10844 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010845
Linus Torvalds1da177e2005-04-16 15:20:36 -070010846 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +020010847 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +000010848 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +000010849 if (!dev->ethtool_ops)
10850 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +020010851
Daniel Borkmann357b6cc2020-03-18 10:33:22 +010010852 nf_hook_ingress_init(dev);
Pablo Neirae687ad62015-05-13 18:19:38 +020010853
Linus Torvalds1da177e2005-04-16 15:20:36 -070010854 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010855
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010856free_all:
10857 free_netdev(dev);
10858 return NULL;
10859
Eric Dumazet29b44332010-10-11 10:22:12 +000010860free_pcpu:
Eric Dumazet919067c2021-03-19 10:39:33 -070010861#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010862 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010863free_dev:
Eric Dumazet919067c2021-03-19 10:39:33 -070010864#endif
Eric Dumazet74d332c2013-10-30 13:10:44 -070010865 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010866 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010867}
Tom Herbert36909ea2011-01-09 19:36:31 +000010868EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010869
10870/**
tcharding722c9a02017-02-09 17:56:04 +110010871 * free_netdev - free network device
10872 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010873 *
tcharding722c9a02017-02-09 17:56:04 +110010874 * This function does the last stage of destroying an allocated device
10875 * interface. The reference to the device object is released. If this
10876 * is the last reference then it will be freed.Must be called in process
10877 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010878 */
10879void free_netdev(struct net_device *dev)
10880{
Herbert Xud565b0a2008-12-15 23:38:52 -080010881 struct napi_struct *p, *n;
10882
Eric Dumazet93d05d42015-11-18 06:31:03 -080010883 might_sleep();
Jakub Kicinskic269a242021-01-06 10:40:06 -080010884
10885 /* When called immediately after register_netdevice() failed the unwind
10886 * handling may still be dismantling the device. Handle that case by
10887 * deferring the free.
10888 */
10889 if (dev->reg_state == NETREG_UNREGISTERING) {
10890 ASSERT_RTNL();
10891 dev->needs_free_netdev = true;
10892 return;
10893 }
10894
Eric Dumazet60877a32013-06-20 01:15:51 -070010895 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010896 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -070010897
Eric Dumazet33d480c2011-08-11 19:30:52 +000010898 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +000010899
Jiri Pirkof001fde2009-05-05 02:48:28 +000010900 /* Flush device addresses */
10901 dev_addr_flush(dev);
10902
Herbert Xud565b0a2008-12-15 23:38:52 -080010903 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
10904 netif_napi_del(p);
10905
Eric Dumazet919067c2021-03-19 10:39:33 -070010906#ifdef CONFIG_PCPU_DEV_REFCNT
Eric Dumazet29b44332010-10-11 10:22:12 +000010907 free_percpu(dev->pcpu_refcnt);
10908 dev->pcpu_refcnt = NULL;
Eric Dumazet919067c2021-03-19 10:39:33 -070010909#endif
Toke Høiland-Jørgensen75ccae62020-01-16 16:14:44 +010010910 free_percpu(dev->xdp_bulkq);
10911 dev->xdp_bulkq = NULL;
Eric Dumazet29b44332010-10-11 10:22:12 +000010912
Stephen Hemminger3041a062006-05-26 13:25:24 -070010913 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010914 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -070010915 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010916 return;
10917 }
10918
10919 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
10920 dev->reg_state = NETREG_RELEASED;
10921
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070010922 /* will free via device release */
10923 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010924}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010925EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010926
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010927/**
10928 * synchronize_net - Synchronize with packet receive processing
10929 *
10930 * Wait for packets currently being received to be done.
10931 * Does not block later packets from starting.
10932 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010933void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010934{
10935 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +000010936 if (rtnl_is_locked())
10937 synchronize_rcu_expedited();
10938 else
10939 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010940}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010941EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010942
10943/**
Eric Dumazet44a08732009-10-27 07:03:04 +000010944 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070010945 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +000010946 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -080010947 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010948 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010949 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +000010950 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010951 *
10952 * Callers must hold the rtnl semaphore. You may want
10953 * unregister_netdev() instead of this.
10954 */
10955
Eric Dumazet44a08732009-10-27 07:03:04 +000010956void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010957{
Herbert Xua6620712007-12-12 19:21:56 -080010958 ASSERT_RTNL();
10959
Eric Dumazet44a08732009-10-27 07:03:04 +000010960 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010961 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +000010962 } else {
Jakub Kicinski037e56b2021-01-19 12:25:19 -080010963 LIST_HEAD(single);
10964
10965 list_add(&dev->unreg_list, &single);
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080010966 unregister_netdevice_many(&single);
Eric Dumazet44a08732009-10-27 07:03:04 +000010967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010968}
Eric Dumazet44a08732009-10-27 07:03:04 +000010969EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010970
10971/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010972 * unregister_netdevice_many - unregister many devices
10973 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -070010974 *
10975 * Note: As most callers use a stack allocated list_head,
10976 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010977 */
10978void unregister_netdevice_many(struct list_head *head)
10979{
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080010980 struct net_device *dev, *tmp;
10981 LIST_HEAD(close_head);
10982
10983 BUG_ON(dev_boot_phase);
10984 ASSERT_RTNL();
10985
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080010986 if (list_empty(head))
10987 return;
10988
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080010989 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
10990 /* Some devices call without registering
10991 * for initialization unwind. Remove those
10992 * devices and proceed with the remaining.
10993 */
10994 if (dev->reg_state == NETREG_UNINITIALIZED) {
10995 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
10996 dev->name, dev);
10997
10998 WARN_ON(1);
10999 list_del(&dev->unreg_list);
11000 continue;
11001 }
11002 dev->dismantle = true;
11003 BUG_ON(dev->reg_state != NETREG_REGISTERED);
11004 }
11005
11006 /* If device is running, close it first. */
11007 list_for_each_entry(dev, head, unreg_list)
11008 list_add_tail(&dev->close_list, &close_head);
11009 dev_close_many(&close_head, true);
11010
11011 list_for_each_entry(dev, head, unreg_list) {
11012 /* And unlink it from device chain. */
11013 unlist_netdevice(dev);
11014
11015 dev->reg_state = NETREG_UNREGISTERING;
11016 }
11017 flush_all_backlogs();
11018
11019 synchronize_net();
11020
11021 list_for_each_entry(dev, head, unreg_list) {
11022 struct sk_buff *skb = NULL;
11023
11024 /* Shutdown queueing discipline. */
11025 dev_shutdown(dev);
11026
11027 dev_xdp_uninstall(dev);
11028
11029 /* Notify protocols, that we are about to destroy
11030 * this device. They should clean all the things.
11031 */
11032 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
11033
11034 if (!dev->rtnl_link_ops ||
11035 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
11036 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
11037 GFP_KERNEL, NULL, 0);
11038
11039 /*
11040 * Flush the unicast and multicast chains
11041 */
11042 dev_uc_flush(dev);
11043 dev_mc_flush(dev);
11044
11045 netdev_name_node_alt_flush(dev);
11046 netdev_name_node_free(dev->name_node);
11047
11048 if (dev->netdev_ops->ndo_uninit)
11049 dev->netdev_ops->ndo_uninit(dev);
11050
11051 if (skb)
11052 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
11053
11054 /* Notifier chain MUST detach us all upper devices. */
11055 WARN_ON(netdev_has_any_upper_dev(dev));
11056 WARN_ON(netdev_has_any_lower_dev(dev));
11057
11058 /* Remove entries from kobject tree */
11059 netdev_unregister_kobject(dev);
11060#ifdef CONFIG_XPS
11061 /* Remove XPS queueing entries */
11062 netif_reset_xps_queues_gt(dev, 0);
11063#endif
11064 }
11065
11066 synchronize_net();
11067
11068 list_for_each_entry(dev, head, unreg_list) {
11069 dev_put(dev);
11070 net_set_todo(dev);
11071 }
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080011072
11073 list_del(head);
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080011074}
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080011075EXPORT_SYMBOL(unregister_netdevice_many);
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080011076
Eric Dumazet9b5e3832009-10-27 07:04:19 +000011077/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070011078 * unregister_netdev - remove device from the kernel
11079 * @dev: device
11080 *
11081 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080011082 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011083 *
11084 * This is just a wrapper for unregister_netdevice that takes
11085 * the rtnl semaphore. In general you want to use this and not
11086 * unregister_netdevice.
11087 */
11088void unregister_netdev(struct net_device *dev)
11089{
11090 rtnl_lock();
11091 unregister_netdevice(dev);
11092 rtnl_unlock();
11093}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011094EXPORT_SYMBOL(unregister_netdev);
11095
Eric W. Biedermance286d32007-09-12 13:53:49 +020011096/**
Andrei Vagin0854fa82021-04-06 23:40:51 -070011097 * __dev_change_net_namespace - move device to different nethost namespace
Eric W. Biedermance286d32007-09-12 13:53:49 +020011098 * @dev: device
11099 * @net: network namespace
11100 * @pat: If not NULL name pattern to try if the current device name
11101 * is already taken in the destination network namespace.
Andrei Vagineeb85a12021-04-05 00:12:23 -070011102 * @new_ifindex: If not zero, specifies device index in the target
11103 * namespace.
Eric W. Biedermance286d32007-09-12 13:53:49 +020011104 *
11105 * This function shuts down a device interface and moves it
11106 * to a new network namespace. On success 0 is returned, on
11107 * a failure a netagive errno code is returned.
11108 *
11109 * Callers must hold the rtnl semaphore.
11110 */
11111
Andrei Vagin0854fa82021-04-06 23:40:51 -070011112int __dev_change_net_namespace(struct net_device *dev, struct net *net,
11113 const char *pat, int new_ifindex)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011114{
Christian Brauneref6a4c82020-02-27 04:37:19 +010011115 struct net *net_old = dev_net(dev);
Andrei Vagineeb85a12021-04-05 00:12:23 -070011116 int err, new_nsid;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011117
11118 ASSERT_RTNL();
11119
11120 /* Don't allow namespace local devices to be moved. */
11121 err = -EINVAL;
11122 if (dev->features & NETIF_F_NETNS_LOCAL)
11123 goto out;
11124
11125 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011126 if (dev->reg_state != NETREG_REGISTERED)
11127 goto out;
11128
11129 /* Get out if there is nothing todo */
11130 err = 0;
Christian Brauneref6a4c82020-02-27 04:37:19 +010011131 if (net_eq(net_old, net))
Eric W. Biedermance286d32007-09-12 13:53:49 +020011132 goto out;
11133
11134 /* Pick the destination device name, and ensure
11135 * we can use it in the destination network namespace.
11136 */
11137 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +000011138 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011139 /* We get here if we can't use the current device name */
11140 if (!pat)
11141 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +080011142 err = dev_get_valid_name(net, dev, pat);
11143 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011144 goto out;
11145 }
11146
Andrei Vagineeb85a12021-04-05 00:12:23 -070011147 /* Check that new_ifindex isn't used yet. */
11148 err = -EBUSY;
11149 if (new_ifindex && __dev_get_by_index(net, new_ifindex))
11150 goto out;
11151
Eric W. Biedermance286d32007-09-12 13:53:49 +020011152 /*
11153 * And now a mini version of register_netdevice unregister_netdevice.
11154 */
11155
11156 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -070011157 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011158
11159 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011160 unlist_netdevice(dev);
11161
11162 synchronize_net();
11163
11164 /* Shutdown queueing discipline. */
11165 dev_shutdown(dev);
11166
11167 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +110011168 * this device. They should clean all the things.
11169 *
11170 * Note that dev->reg_state stays at NETREG_REGISTERED.
11171 * This is wanted because this way 8021q and macvlan know
11172 * the device is just moving and can keep their slaves up.
11173 */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011174 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +000011175 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011176
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +020011177 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011178 /* If there is an ifindex conflict assign a new one */
Andrei Vagineeb85a12021-04-05 00:12:23 -070011179 if (!new_ifindex) {
11180 if (__dev_get_by_index(net, dev->ifindex))
11181 new_ifindex = dev_new_index(net);
11182 else
11183 new_ifindex = dev->ifindex;
11184 }
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011185
11186 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
11187 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011188
11189 /*
11190 * Flush the unicast and multicast chains
11191 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +000011192 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +000011193 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011194
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011195 /* Send a netdev-removed uevent to the old namespace */
11196 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040011197 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011198
Jiri Pirko93642e12020-01-25 12:17:08 +010011199 /* Move per-net netdevice notifiers that are following the netdevice */
11200 move_netdevice_notifiers_dev_net(dev, net);
11201
Eric W. Biedermance286d32007-09-12 13:53:49 +020011202 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090011203 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011204 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011205
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011206 /* Send a netdev-add uevent to the new namespace */
11207 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040011208 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011209
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011210 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -070011211 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011212 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011213
Christian Brauneref6a4c82020-02-27 04:37:19 +010011214 /* Adapt owner in case owning user namespace of target network
11215 * namespace is different from the original one.
11216 */
11217 err = netdev_change_owner(dev, net_old, net);
11218 WARN_ON(err);
11219
Eric W. Biedermance286d32007-09-12 13:53:49 +020011220 /* Add the device back in the hashes */
11221 list_netdevice(dev);
11222
11223 /* Notify protocols, that a new device appeared. */
11224 call_netdevice_notifiers(NETDEV_REGISTER, dev);
11225
Eric W. Biedermand90a9092009-12-12 22:11:15 +000011226 /*
11227 * Prevent userspace races by waiting until the network
11228 * device is fully setup before sending notifications.
11229 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -070011230 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +000011231
Eric W. Biedermance286d32007-09-12 13:53:49 +020011232 synchronize_net();
11233 err = 0;
11234out:
11235 return err;
11236}
Andrei Vagin0854fa82021-04-06 23:40:51 -070011237EXPORT_SYMBOL_GPL(__dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011238
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011239static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011240{
11241 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011242 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011243 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +053011244 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011245
Linus Torvalds1da177e2005-04-16 15:20:36 -070011246 local_irq_disable();
11247 cpu = smp_processor_id();
11248 sd = &per_cpu(softnet_data, cpu);
11249 oldsd = &per_cpu(softnet_data, oldcpu);
11250
11251 /* Find end of our completion_queue. */
11252 list_skb = &sd->completion_queue;
11253 while (*list_skb)
11254 list_skb = &(*list_skb)->next;
11255 /* Append completion queue from offline CPU. */
11256 *list_skb = oldsd->completion_queue;
11257 oldsd->completion_queue = NULL;
11258
Linus Torvalds1da177e2005-04-16 15:20:36 -070011259 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +000011260 if (oldsd->output_queue) {
11261 *sd->output_queue_tailp = oldsd->output_queue;
11262 sd->output_queue_tailp = oldsd->output_queue_tailp;
11263 oldsd->output_queue = NULL;
11264 oldsd->output_queue_tailp = &oldsd->output_queue;
11265 }
Eric Dumazetac64da02015-01-15 17:04:22 -080011266 /* Append NAPI poll list from offline CPU, with one exception :
11267 * process_backlog() must be called by cpu owning percpu backlog.
11268 * We properly handle process_queue & input_pkt_queue later.
11269 */
11270 while (!list_empty(&oldsd->poll_list)) {
11271 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
11272 struct napi_struct,
11273 poll_list);
11274
11275 list_del_init(&napi->poll_list);
11276 if (napi->poll == process_backlog)
11277 napi->state = 0;
11278 else
11279 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +000011280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011281
11282 raise_softirq_irqoff(NET_TX_SOFTIRQ);
11283 local_irq_enable();
11284
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +053011285#ifdef CONFIG_RPS
11286 remsd = oldsd->rps_ipi_list;
11287 oldsd->rps_ipi_list = NULL;
11288#endif
11289 /* send out pending IPI's on offline CPU */
11290 net_rps_send_ipi(remsd);
11291
Linus Torvalds1da177e2005-04-16 15:20:36 -070011292 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +000011293 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080011294 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000011295 input_queue_head_incr(oldsd);
11296 }
Eric Dumazetac64da02015-01-15 17:04:22 -080011297 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080011298 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000011299 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -070011300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011301
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011303}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011304
Herbert Xu7f353bf2007-08-10 15:47:58 -070011305/**
Herbert Xub63365a2008-10-23 01:11:29 -070011306 * netdev_increment_features - increment feature set by one
11307 * @all: current feature set
11308 * @one: new feature set
11309 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -070011310 *
11311 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -070011312 * @one to the master device with current feature set @all. Will not
11313 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -070011314 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +000011315netdev_features_t netdev_increment_features(netdev_features_t all,
11316 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -070011317{
Tom Herbertc8cd0982015-12-14 11:19:44 -080011318 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -080011319 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +000011320 mask |= NETIF_F_VLAN_CHALLENGED;
11321
Tom Herberta1882222015-12-14 11:19:43 -080011322 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +000011323 all &= one | ~NETIF_F_ALL_FOR_ALL;
11324
Michał Mirosław1742f182011-04-22 06:31:16 +000011325 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -080011326 if (all & NETIF_F_HW_CSUM)
11327 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -070011328
11329 return all;
11330}
Herbert Xub63365a2008-10-23 01:11:29 -070011331EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -070011332
Baruch Siach430f03c2013-06-02 20:43:55 +000011333static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011334{
11335 int i;
11336 struct hlist_head *hash;
11337
Kees Cook6da2ec52018-06-12 13:55:00 -070011338 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011339 if (hash != NULL)
11340 for (i = 0; i < NETDEV_HASHENTRIES; i++)
11341 INIT_HLIST_HEAD(&hash[i]);
11342
11343 return hash;
11344}
11345
Eric W. Biederman881d9662007-09-17 11:56:21 -070011346/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -070011347static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011348{
Li RongQingd9f37d02018-07-13 14:41:36 +080011349 BUILD_BUG_ON(GRO_HASH_BUCKETS >
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080011350 8 * sizeof_field(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +080011351
Rustad, Mark D734b6542012-07-18 09:06:07 +000011352 if (net != &init_net)
11353 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -070011354
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011355 net->dev_name_head = netdev_create_hash();
11356 if (net->dev_name_head == NULL)
11357 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011358
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011359 net->dev_index_head = netdev_create_hash();
11360 if (net->dev_index_head == NULL)
11361 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011362
Jiri Pirkoa30c7b42019-09-30 10:15:10 +020011363 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
11364
Eric W. Biederman881d9662007-09-17 11:56:21 -070011365 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011366
11367err_idx:
11368 kfree(net->dev_name_head);
11369err_name:
11370 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011371}
11372
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070011373/**
11374 * netdev_drivername - network driver for the device
11375 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070011376 *
11377 * Determine network driver for device.
11378 */
David S. Miller3019de12011-06-06 16:41:33 -070011379const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -070011380{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -070011381 const struct device_driver *driver;
11382 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -070011383 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -070011384
11385 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011386 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -070011387 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011388
11389 driver = parent->driver;
11390 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -070011391 return driver->name;
11392 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011393}
11394
Joe Perches6ea754e2014-09-22 11:10:50 -070011395static void __netdev_printk(const char *level, const struct net_device *dev,
11396 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +000011397{
Joe Perchesb004ff42012-09-12 20:12:19 -070011398 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011399 dev_printk_emit(level[1] - '0',
11400 dev->dev.parent,
11401 "%s %s %s%s: %pV",
11402 dev_driver_string(dev->dev.parent),
11403 dev_name(dev->dev.parent),
11404 netdev_name(dev), netdev_reg_state(dev),
11405 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011406 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011407 printk("%s%s%s: %pV",
11408 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011409 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -070011410 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011411 }
Joe Perches256df2f2010-06-27 01:02:35 +000011412}
11413
Joe Perches6ea754e2014-09-22 11:10:50 -070011414void netdev_printk(const char *level, const struct net_device *dev,
11415 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +000011416{
11417 struct va_format vaf;
11418 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +000011419
11420 va_start(args, format);
11421
11422 vaf.fmt = format;
11423 vaf.va = &args;
11424
Joe Perches6ea754e2014-09-22 11:10:50 -070011425 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011426
Joe Perches256df2f2010-06-27 01:02:35 +000011427 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +000011428}
11429EXPORT_SYMBOL(netdev_printk);
11430
11431#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -070011432void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +000011433{ \
Joe Perches256df2f2010-06-27 01:02:35 +000011434 struct va_format vaf; \
11435 va_list args; \
11436 \
11437 va_start(args, fmt); \
11438 \
11439 vaf.fmt = fmt; \
11440 vaf.va = &args; \
11441 \
Joe Perches6ea754e2014-09-22 11:10:50 -070011442 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -070011443 \
Joe Perches256df2f2010-06-27 01:02:35 +000011444 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +000011445} \
11446EXPORT_SYMBOL(func);
11447
11448define_netdev_printk_level(netdev_emerg, KERN_EMERG);
11449define_netdev_printk_level(netdev_alert, KERN_ALERT);
11450define_netdev_printk_level(netdev_crit, KERN_CRIT);
11451define_netdev_printk_level(netdev_err, KERN_ERR);
11452define_netdev_printk_level(netdev_warn, KERN_WARNING);
11453define_netdev_printk_level(netdev_notice, KERN_NOTICE);
11454define_netdev_printk_level(netdev_info, KERN_INFO);
11455
Pavel Emelyanov46650792007-10-08 20:38:39 -070011456static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011457{
11458 kfree(net->dev_name_head);
11459 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +030011460 if (net != &init_net)
11461 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -070011462}
11463
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011464static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -070011465 .init = netdev_init,
11466 .exit = netdev_exit,
11467};
11468
Pavel Emelyanov46650792007-10-08 20:38:39 -070011469static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011470{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011471 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011472 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011473 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +020011474 * initial network namespace
11475 */
11476 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011477 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011478 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011479 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +020011480
11481 /* Ignore unmoveable devices (i.e. loopback) */
11482 if (dev->features & NETIF_F_NETNS_LOCAL)
11483 continue;
11484
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011485 /* Leave virtual devices for the generic cleanup */
Martin Willi3a5ca852021-03-02 13:24:23 +010011486 if (dev->rtnl_link_ops && !dev->rtnl_link_ops->netns_refund)
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011487 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -080011488
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011489 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011490 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko55b40db2019-07-28 14:56:36 +020011491 if (__dev_get_by_name(&init_net, fb_name))
11492 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Andrei Vagin0854fa82021-04-06 23:40:51 -070011493 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011494 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000011495 pr_emerg("%s: failed to move %s to init_net: %d\n",
11496 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011497 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +020011498 }
11499 }
11500 rtnl_unlock();
11501}
11502
Eric W. Biederman50624c92013-09-23 21:19:49 -070011503static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
11504{
11505 /* Return with the rtnl_lock held when there are no network
11506 * devices unregistering in any network namespace in net_list.
11507 */
11508 struct net *net;
11509 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +010011510 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011511
Peter Zijlstraff960a72014-10-29 17:04:56 +010011512 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011513 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -070011514 unregistering = false;
11515 rtnl_lock();
11516 list_for_each_entry(net, net_list, exit_list) {
11517 if (net->dev_unreg_count > 0) {
11518 unregistering = true;
11519 break;
11520 }
11521 }
11522 if (!unregistering)
11523 break;
11524 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +010011525
11526 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011527 }
Peter Zijlstraff960a72014-10-29 17:04:56 +010011528 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011529}
11530
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011531static void __net_exit default_device_exit_batch(struct list_head *net_list)
11532{
11533 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011534 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011535 * Do this across as many network namespaces as possible to
11536 * improve batching efficiency.
11537 */
11538 struct net_device *dev;
11539 struct net *net;
11540 LIST_HEAD(dev_kill_list);
11541
Eric W. Biederman50624c92013-09-23 21:19:49 -070011542 /* To prevent network device cleanup code from dereferencing
11543 * loopback devices or network devices that have been freed
11544 * wait here for all pending unregistrations to complete,
11545 * before unregistring the loopback device and allowing the
11546 * network namespace be freed.
11547 *
11548 * The netdev todo list containing all network devices
11549 * unregistrations that happen in default_device_exit_batch
11550 * will run in the rtnl_unlock() at the end of
11551 * default_device_exit_batch.
11552 */
11553 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011554 list_for_each_entry(net, net_list, exit_list) {
11555 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +020011556 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011557 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
11558 else
11559 unregister_netdevice_queue(dev, &dev_kill_list);
11560 }
11561 }
11562 unregister_netdevice_many(&dev_kill_list);
11563 rtnl_unlock();
11564}
11565
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011566static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011567 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011568 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +020011569};
11570
Linus Torvalds1da177e2005-04-16 15:20:36 -070011571/*
11572 * Initialize the DEV module. At boot time this walks the device list and
11573 * unhooks any devices that fail to initialise (normally hardware not
11574 * present) and leaves us with a valid list of present and active devices.
11575 *
11576 */
11577
11578/*
11579 * This is called single threaded during boot, so no need
11580 * to take the rtnl semaphore.
11581 */
11582static int __init net_dev_init(void)
11583{
11584 int i, rc = -ENOMEM;
11585
11586 BUG_ON(!dev_boot_phase);
11587
Linus Torvalds1da177e2005-04-16 15:20:36 -070011588 if (dev_proc_init())
11589 goto out;
11590
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011591 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -070011592 goto out;
11593
11594 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +080011595 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011596 INIT_LIST_HEAD(&ptype_base[i]);
11597
Vlad Yasevich62532da2012-11-15 08:49:10 +000011598 INIT_LIST_HEAD(&offload_base);
11599
Eric W. Biederman881d9662007-09-17 11:56:21 -070011600 if (register_pernet_subsys(&netdev_net_ops))
11601 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011602
11603 /*
11604 * Initialise the packet receive queues.
11605 */
11606
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070011607 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -070011608 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011609 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011610
Eric Dumazet41852492016-08-26 12:50:39 -070011611 INIT_WORK(flush, flush_backlog);
11612
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011613 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -070011614 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +010011615#ifdef CONFIG_XFRM_OFFLOAD
11616 skb_queue_head_init(&sd->xfrm_backlog);
11617#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011618 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +000011619 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +000011620#ifdef CONFIG_RPS
Peter Zijlstra545b8c82020-06-15 11:29:31 +020011621 INIT_CSD(&sd->csd, rps_trigger_softirq, sd);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011622 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -070011623#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +000011624
David S. Miller7c4ec742018-07-20 23:37:55 -070011625 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011626 sd->backlog.poll = process_backlog;
11627 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011628 }
11629
Linus Torvalds1da177e2005-04-16 15:20:36 -070011630 dev_boot_phase = 0;
11631
Eric W. Biederman505d4f72008-11-07 22:54:20 -080011632 /* The loopback device is special if any other network devices
11633 * is present in a network namespace the loopback device must
11634 * be present. Since we now dynamically allocate and free the
11635 * loopback device ensure this invariant is maintained by
11636 * keeping the loopback device as the first device on the
11637 * list of network devices. Ensuring the loopback devices
11638 * is the first device that appears and the last network device
11639 * that disappears.
11640 */
11641 if (register_pernet_device(&loopback_net_ops))
11642 goto out;
11643
11644 if (register_pernet_device(&default_device_ops))
11645 goto out;
11646
Carlos R. Mafra962cf362008-05-15 11:15:37 -030011647 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
11648 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011649
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011650 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
11651 NULL, dev_cpu_dead);
11652 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011653 rc = 0;
11654out:
11655 return rc;
11656}
11657
11658subsys_initcall(net_dev_init);