blob: 631807c196ad395a884b0d61103e73bee0060578 [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
851/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700853 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 * @name: name to find
855 *
856 * Find an interface by name. Must be called under RTNL semaphore
857 * or @dev_base_lock. If the name is found a pointer to the device
858 * is returned. If the name is not found then %NULL is returned. The
859 * reference counters are not incremented so the caller must be
860 * careful with locks.
861 */
862
Eric W. Biederman881d9662007-09-17 11:56:21 -0700863struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Jiri Pirkoff927412019-09-30 11:48:15 +0200865 struct netdev_name_node *node_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Jiri Pirkoff927412019-09-30 11:48:15 +0200867 node_name = netdev_name_node_lookup(net, name);
868 return node_name ? node_name->dev : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700870EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872/**
tcharding722c9a02017-02-09 17:56:04 +1100873 * dev_get_by_name_rcu - find a device by its name
874 * @net: the applicable net namespace
875 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000876 *
tcharding722c9a02017-02-09 17:56:04 +1100877 * Find an interface by name.
878 * If the name is found a pointer to the device is returned.
879 * If the name is not found then %NULL is returned.
880 * The reference counters are not incremented so the caller must be
881 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000882 */
883
884struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
885{
Jiri Pirkoff927412019-09-30 11:48:15 +0200886 struct netdev_name_node *node_name;
Eric Dumazet72c95282009-10-30 07:11:27 +0000887
Jiri Pirkoff927412019-09-30 11:48:15 +0200888 node_name = netdev_name_node_lookup_rcu(net, name);
889 return node_name ? node_name->dev : NULL;
Eric Dumazet72c95282009-10-30 07:11:27 +0000890}
891EXPORT_SYMBOL(dev_get_by_name_rcu);
892
893/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700895 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 * @name: name to find
897 *
898 * Find an interface by name. This can be called from any
899 * context and does its own locking. The returned handle has
900 * the usage count incremented and the caller must use dev_put() to
901 * release it when it is no longer needed. %NULL is returned if no
902 * matching device is found.
903 */
904
Eric W. Biederman881d9662007-09-17 11:56:21 -0700905struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct net_device *dev;
908
Eric Dumazet72c95282009-10-30 07:11:27 +0000909 rcu_read_lock();
910 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (dev)
912 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000913 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return dev;
915}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700916EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918/**
919 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700920 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 * @ifindex: index of device
922 *
923 * Search for an interface by index. Returns %NULL if the device
924 * is not found or a pointer to the device. The device has not
925 * had its reference counter increased so the caller must be careful
926 * about locking. The caller must hold either the RTNL semaphore
927 * or @dev_base_lock.
928 */
929
Eric W. Biederman881d9662007-09-17 11:56:21 -0700930struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700932 struct net_device *dev;
933 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Sasha Levinb67bfe02013-02-27 17:06:00 -0800935 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (dev->ifindex == ifindex)
937 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return NULL;
940}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700941EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000943/**
944 * dev_get_by_index_rcu - find a device by its ifindex
945 * @net: the applicable net namespace
946 * @ifindex: index of device
947 *
948 * Search for an interface by index. Returns %NULL if the device
949 * is not found or a pointer to the device. The device has not
950 * had its reference counter increased so the caller must be careful
951 * about locking. The caller must hold RCU lock.
952 */
953
954struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
955{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000956 struct net_device *dev;
957 struct hlist_head *head = dev_index_hash(net, ifindex);
958
Sasha Levinb67bfe02013-02-27 17:06:00 -0800959 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000960 if (dev->ifindex == ifindex)
961 return dev;
962
963 return NULL;
964}
965EXPORT_SYMBOL(dev_get_by_index_rcu);
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968/**
969 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700970 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * @ifindex: index of device
972 *
973 * Search for an interface by index. Returns NULL if the device
974 * is not found or a pointer to the device. The device returned has
975 * had a reference added and the pointer is safe until the user calls
976 * dev_put to indicate they have finished with it.
977 */
978
Eric W. Biederman881d9662007-09-17 11:56:21 -0700979struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 struct net_device *dev;
982
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000983 rcu_read_lock();
984 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (dev)
986 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000987 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return dev;
989}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700990EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200993 * dev_get_by_napi_id - find a device by napi_id
994 * @napi_id: ID of the NAPI struct
995 *
996 * Search for an interface by NAPI ID. Returns %NULL if the device
997 * is not found or a pointer to the device. The device has not had
998 * its reference counter increased so the caller must be careful
999 * about locking. The caller must hold RCU lock.
1000 */
1001
1002struct net_device *dev_get_by_napi_id(unsigned int napi_id)
1003{
1004 struct napi_struct *napi;
1005
1006 WARN_ON_ONCE(!rcu_read_lock_held());
1007
1008 if (napi_id < MIN_NAPI_ID)
1009 return NULL;
1010
1011 napi = napi_by_id(napi_id);
1012
1013 return napi ? napi->dev : NULL;
1014}
1015EXPORT_SYMBOL(dev_get_by_napi_id);
1016
1017/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001018 * netdev_get_name - get a netdevice name, knowing its ifindex.
1019 * @net: network namespace
1020 * @name: a pointer to the buffer where the name will be stored.
1021 * @ifindex: the ifindex of the interface to get the name from.
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001022 */
1023int netdev_get_name(struct net *net, char *name, int ifindex)
1024{
1025 struct net_device *dev;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001026 int ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001027
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001028 down_read(&devnet_rename_sem);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001029 rcu_read_lock();
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001030
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001031 dev = dev_get_by_index_rcu(net, ifindex);
1032 if (!dev) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001033 ret = -ENODEV;
1034 goto out;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001035 }
1036
1037 strcpy(name, dev->name);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001038
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001039 ret = 0;
1040out:
1041 rcu_read_unlock();
1042 up_read(&devnet_rename_sem);
1043 return ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001044}
1045
1046/**
Eric Dumazet941666c2010-12-05 01:23:53 +00001047 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001048 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * @type: media type of device
1050 * @ha: hardware address
1051 *
1052 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -08001053 * is not found or a pointer to the device.
1054 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +00001055 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 * and the caller must therefore be careful about locking
1057 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 */
1059
Eric Dumazet941666c2010-12-05 01:23:53 +00001060struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
1061 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 struct net_device *dev;
1064
Eric Dumazet941666c2010-12-05 01:23:53 +00001065 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (dev->type == type &&
1067 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -07001068 return dev;
1069
1070 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
Eric Dumazet941666c2010-12-05 01:23:53 +00001072EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -03001073
Eric W. Biederman881d9662007-09-17 11:56:21 -07001074struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001076 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001078 rcu_read_lock();
1079 for_each_netdev_rcu(net, dev)
1080 if (dev->type == type) {
1081 dev_hold(dev);
1082 ret = dev;
1083 break;
1084 }
1085 rcu_read_unlock();
1086 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088EXPORT_SYMBOL(dev_getfirstbyhwtype);
1089
1090/**
WANG Cong6c555492014-09-11 15:35:09 -07001091 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001092 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 * @if_flags: IFF_* values
1094 * @mask: bitmask of bits in if_flags to check
1095 *
1096 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +00001097 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -07001098 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 */
1100
WANG Cong6c555492014-09-11 15:35:09 -07001101struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1102 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001104 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
WANG Cong6c555492014-09-11 15:35:09 -07001106 ASSERT_RTNL();
1107
Pavel Emelianov7562f872007-05-03 15:13:45 -07001108 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001109 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001111 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113 }
1114 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001115 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
WANG Cong6c555492014-09-11 15:35:09 -07001117EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119/**
1120 * dev_valid_name - check if name is okay for network device
1121 * @name: name string
1122 *
1123 * Network device names need to be valid file names to
Randy Dunlap4250b752020-09-17 21:35:15 -07001124 * allow sysfs to work. We also disallow any kind of
David S. Millerc7fa9d12006-08-15 16:34:13 -07001125 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
David S. Miller95f050b2012-03-06 16:12:15 -05001127bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001129 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001130 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001131 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001132 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001133 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001134 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001135
1136 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001137 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001138 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001139 name++;
1140 }
David S. Miller95f050b2012-03-06 16:12:15 -05001141 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001143EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001146 * __dev_alloc_name - allocate a name for a device
1147 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001149 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 *
1151 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001152 * id. It scans list of devices to build up a free map, then chooses
1153 * the first empty slot. The caller must hold the dev_base or rtnl lock
1154 * while allocating the name and adding the device in order to avoid
1155 * duplicates.
1156 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1157 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
1159
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001160static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
1162 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 const char *p;
1164 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001165 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 struct net_device *d;
1167
Rasmus Villemoes93809102017-11-13 00:15:08 +01001168 if (!dev_valid_name(name))
1169 return -EINVAL;
1170
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001171 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (p) {
1173 /*
1174 * Verify the string as this thing may have come from
1175 * the user. There must be either one "%d" and no other "%"
1176 * characters.
1177 */
1178 if (p[1] != 'd' || strchr(p + 2, '%'))
1179 return -EINVAL;
1180
1181 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001182 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!inuse)
1184 return -ENOMEM;
1185
Eric W. Biederman881d9662007-09-17 11:56:21 -07001186 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (!sscanf(d->name, name, &i))
1188 continue;
1189 if (i < 0 || i >= max_netdevices)
1190 continue;
1191
1192 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001193 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!strncmp(buf, d->name, IFNAMSIZ))
1195 set_bit(i, inuse);
1196 }
1197
1198 i = find_first_zero_bit(inuse, max_netdevices);
1199 free_page((unsigned long) inuse);
1200 }
1201
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001202 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001203 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 /* It is possible to run out of possible slots
1207 * when the name is long and there isn't enough space left
1208 * for the digits, or if all bits are used.
1209 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001210 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001213static int dev_alloc_name_ns(struct net *net,
1214 struct net_device *dev,
1215 const char *name)
1216{
1217 char buf[IFNAMSIZ];
1218 int ret;
1219
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001220 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001221 ret = __dev_alloc_name(net, name, buf);
1222 if (ret >= 0)
1223 strlcpy(dev->name, buf, IFNAMSIZ);
1224 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001227/**
1228 * dev_alloc_name - allocate a name for a device
1229 * @dev: device
1230 * @name: name format string
1231 *
1232 * Passed a format string - eg "lt%d" it will try and find a suitable
1233 * id. It scans list of devices to build up a free map, then chooses
1234 * the first empty slot. The caller must hold the dev_base or rtnl lock
1235 * while allocating the name and adding the device in order to avoid
1236 * duplicates.
1237 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1238 * Returns the number of the unit assigned or a negative errno code.
1239 */
1240
1241int dev_alloc_name(struct net_device *dev, const char *name)
1242{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001243 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001244}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001245EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001246
Eric Dumazetbacb7e12019-10-08 14:20:34 -07001247static int dev_get_valid_name(struct net *net, struct net_device *dev,
1248 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001249{
David S. Miller55a5ec92018-01-02 11:45:07 -05001250 BUG_ON(!net);
1251
1252 if (!dev_valid_name(name))
1253 return -EINVAL;
1254
1255 if (strchr(name, '%'))
1256 return dev_alloc_name_ns(net, dev, name);
1257 else if (__dev_get_by_name(net, name))
1258 return -EEXIST;
1259 else if (dev->name != name)
1260 strlcpy(dev->name, name, IFNAMSIZ);
1261
1262 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001263}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265/**
1266 * dev_change_name - change name of a device
1267 * @dev: device
1268 * @newname: name (or format string) must be at least IFNAMSIZ
1269 *
1270 * Change name of a device, can pass format strings "eth%d".
1271 * for wildcarding.
1272 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001273int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Tom Gundersen238fa362014-07-14 16:37:23 +02001275 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001276 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001278 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001279 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001282 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001284 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001285
1286 /* Some auto-enslaved devices e.g. failover slaves are
1287 * special, as userspace might rename the device after
1288 * the interface had been brought up and running since
1289 * the point kernel initiated auto-enslavement. Allow
1290 * live name change even when these slave devices are
1291 * up and running.
1292 *
1293 * Typically, users of these auto-enslaving devices
1294 * don't actually care about slave name change, as
1295 * they are supposed to operate on master interface
1296 * directly.
1297 */
1298 if (dev->flags & IFF_UP &&
1299 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return -EBUSY;
1301
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001302 down_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001303
1304 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001305 up_write(&devnet_rename_sem);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001306 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001307 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001308
Herbert Xufcc5a032007-07-30 17:03:38 -07001309 memcpy(oldname, dev->name, IFNAMSIZ);
1310
Gao feng828de4f2012-09-13 20:58:27 +00001311 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001312 if (err < 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001313 up_write(&devnet_rename_sem);
Octavian Purdilad9031022009-11-18 02:36:59 +00001314 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001317 if (oldname[0] && !strchr(oldname, '%'))
1318 netdev_info(dev, "renamed from %s\n", oldname);
1319
Tom Gundersen238fa362014-07-14 16:37:23 +02001320 old_assign_type = dev->name_assign_type;
1321 dev->name_assign_type = NET_NAME_RENAMED;
1322
Herbert Xufcc5a032007-07-30 17:03:38 -07001323rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001324 ret = device_rename(&dev->dev, dev->name);
1325 if (ret) {
1326 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001327 dev->name_assign_type = old_assign_type;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001328 up_write(&devnet_rename_sem);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001329 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001330 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001331
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001332 up_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001333
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001334 netdev_adjacent_rename_links(dev, oldname);
1335
Herbert Xu7f988ea2007-07-30 16:35:46 -07001336 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001337 netdev_name_node_del(dev->name_node);
Eric Dumazet72c95282009-10-30 07:11:27 +00001338 write_unlock_bh(&dev_base_lock);
1339
1340 synchronize_rcu();
1341
1342 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001343 netdev_name_node_add(net, dev->name_node);
Herbert Xu7f988ea2007-07-30 16:35:46 -07001344 write_unlock_bh(&dev_base_lock);
1345
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001346 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001347 ret = notifier_to_errno(ret);
1348
1349 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001350 /* err >= 0 after dev_alloc_name() or stores the first errno */
1351 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001352 err = ret;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001353 down_write(&devnet_rename_sem);
Herbert Xufcc5a032007-07-30 17:03:38 -07001354 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001355 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001356 dev->name_assign_type = old_assign_type;
1357 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001358 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001359 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001360 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001361 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001362 }
1363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 return err;
1366}
1367
1368/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001369 * dev_set_alias - change ifalias of a device
1370 * @dev: device
1371 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001372 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001373 *
1374 * Set ifalias for a device,
1375 */
1376int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1377{
Florian Westphal6c557002017-10-02 23:50:05 +02001378 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001379
1380 if (len >= IFALIASZ)
1381 return -EINVAL;
1382
Florian Westphal6c557002017-10-02 23:50:05 +02001383 if (len) {
1384 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1385 if (!new_alias)
1386 return -ENOMEM;
1387
1388 memcpy(new_alias->ifalias, alias, len);
1389 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001390 }
1391
Florian Westphal6c557002017-10-02 23:50:05 +02001392 mutex_lock(&ifalias_mutex);
Paul E. McKenneye3f0d762019-09-23 15:42:28 -07001393 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1394 mutex_is_locked(&ifalias_mutex));
Florian Westphal6c557002017-10-02 23:50:05 +02001395 mutex_unlock(&ifalias_mutex);
1396
1397 if (new_alias)
1398 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001399
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001400 return len;
1401}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001402EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001403
Florian Westphal6c557002017-10-02 23:50:05 +02001404/**
1405 * dev_get_alias - get ifalias of a device
1406 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001407 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001408 * @len: size of buffer
1409 *
1410 * get ifalias for a device. Caller must make sure dev cannot go
1411 * away, e.g. rcu read lock or own a reference count to device.
1412 */
1413int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1414{
1415 const struct dev_ifalias *alias;
1416 int ret = 0;
1417
1418 rcu_read_lock();
1419 alias = rcu_dereference(dev->ifalias);
1420 if (alias)
1421 ret = snprintf(name, len, "%s", alias->ifalias);
1422 rcu_read_unlock();
1423
1424 return ret;
1425}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001426
1427/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001428 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001429 * @dev: device to cause notification
1430 *
1431 * Called to indicate a device has changed features.
1432 */
1433void netdev_features_change(struct net_device *dev)
1434{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001435 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001436}
1437EXPORT_SYMBOL(netdev_features_change);
1438
1439/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 * netdev_state_change - device changes state
1441 * @dev: device to cause notification
1442 *
1443 * Called to indicate a device has changed state. This function calls
1444 * the notifier chains for netdev_chain and sends a NEWLINK message
1445 * to the routing socket.
1446 */
1447void netdev_state_change(struct net_device *dev)
1448{
1449 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001450 struct netdev_notifier_change_info change_info = {
1451 .info.dev = dev,
1452 };
Loic Prylli54951192014-07-01 21:39:43 -07001453
David Ahern51d0c0472017-10-04 17:48:45 -07001454 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001455 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001456 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001459EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Amerigo Wangee89bab2012-08-09 22:14:56 +00001461/**
Lijun Pan7061eb82020-12-14 15:19:28 -06001462 * __netdev_notify_peers - notify network peers about existence of @dev,
1463 * to be called when rtnl lock is already held.
1464 * @dev: network device
1465 *
1466 * Generate traffic such that interested network peers are aware of
1467 * @dev, such as by generating a gratuitous ARP. This may be used when
1468 * a device wants to inform the rest of the network about some sort of
1469 * reconfiguration such as a failover event or virtual machine
1470 * migration.
1471 */
1472void __netdev_notify_peers(struct net_device *dev)
1473{
1474 ASSERT_RTNL();
1475 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1476 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
1477}
1478EXPORT_SYMBOL(__netdev_notify_peers);
1479
1480/**
tcharding722c9a02017-02-09 17:56:04 +11001481 * netdev_notify_peers - notify network peers about existence of @dev
1482 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001483 *
1484 * Generate traffic such that interested network peers are aware of
1485 * @dev, such as by generating a gratuitous ARP. This may be used when
1486 * a device wants to inform the rest of the network about some sort of
1487 * reconfiguration such as a failover event or virtual machine
1488 * migration.
1489 */
1490void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001491{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001492 rtnl_lock();
Lijun Pan7061eb82020-12-14 15:19:28 -06001493 __netdev_notify_peers(dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001494 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001495}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001496EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001497
Wei Wang29863d42021-02-08 11:34:09 -08001498static int napi_threaded_poll(void *data);
1499
1500static int napi_kthread_create(struct napi_struct *n)
1501{
1502 int err = 0;
1503
1504 /* Create and wake up the kthread once to put it in
1505 * TASK_INTERRUPTIBLE mode to avoid the blocked task
1506 * warning and work with loadavg.
1507 */
1508 n->thread = kthread_run(napi_threaded_poll, n, "napi/%s-%d",
1509 n->dev->name, n->napi_id);
1510 if (IS_ERR(n->thread)) {
1511 err = PTR_ERR(n->thread);
1512 pr_err("kthread_run failed with err %d\n", err);
1513 n->thread = NULL;
1514 }
1515
1516 return err;
1517}
1518
Petr Machata40c900a2018-12-06 17:05:47 +00001519static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001521 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001522 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001524 ASSERT_RTNL();
1525
Heiner Kallweitbd869242020-06-20 22:35:42 +02001526 if (!netif_device_present(dev)) {
1527 /* may be detached because parent is runtime-suspended */
1528 if (dev->dev.parent)
1529 pm_runtime_resume(dev->dev.parent);
1530 if (!netif_device_present(dev))
1531 return -ENODEV;
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Neil Hormanca99ca12013-02-05 08:05:43 +00001534 /* Block netpoll from trying to do any rx path servicing.
1535 * If we don't do this there is a chance ndo_poll_controller
1536 * or ndo_poll may be running while we open the device
1537 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001538 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001539
Petr Machata40c900a2018-12-06 17:05:47 +00001540 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001541 ret = notifier_to_errno(ret);
1542 if (ret)
1543 return ret;
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001546
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001547 if (ops->ndo_validate_addr)
1548 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001549
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001550 if (!ret && ops->ndo_open)
1551 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Eric W. Biederman66b55522014-03-27 15:39:03 -07001553 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001554
Jeff Garzikbada3392007-10-23 20:19:37 -07001555 if (ret)
1556 clear_bit(__LINK_STATE_START, &dev->state);
1557 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001559 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001561 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 return ret;
1565}
Patrick McHardybd380812010-02-26 06:34:53 +00001566
1567/**
1568 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001569 * @dev: device to open
1570 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001571 *
1572 * Takes a device from down to up state. The device's private open
1573 * function is invoked and then the multicast lists are loaded. Finally
1574 * the device is moved into the up state and a %NETDEV_UP message is
1575 * sent to the netdev notifier chain.
1576 *
1577 * Calling this function on an active interface is a nop. On a failure
1578 * a negative errno code is returned.
1579 */
Petr Machata00f54e62018-12-06 17:05:36 +00001580int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001581{
1582 int ret;
1583
Patrick McHardybd380812010-02-26 06:34:53 +00001584 if (dev->flags & IFF_UP)
1585 return 0;
1586
Petr Machata40c900a2018-12-06 17:05:47 +00001587 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001588 if (ret < 0)
1589 return ret;
1590
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001591 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001592 call_netdevice_notifiers(NETDEV_UP, dev);
1593
1594 return ret;
1595}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001596EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
stephen hemminger7051b882017-07-18 15:59:27 -07001598static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Octavian Purdila44345722010-12-13 12:44:07 +00001600 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001601
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001602 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001603 might_sleep();
1604
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001605 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001606 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001607 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001608
Octavian Purdila44345722010-12-13 12:44:07 +00001609 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Octavian Purdila44345722010-12-13 12:44:07 +00001611 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Octavian Purdila44345722010-12-13 12:44:07 +00001613 /* Synchronize to scheduled poll. We cannot touch poll list, it
1614 * can be even on different cpu. So just clear netif_running().
1615 *
1616 * dev->stop() will invoke napi_disable() on all of it's
1617 * napi_struct instances on this device.
1618 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001619 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Octavian Purdila44345722010-12-13 12:44:07 +00001622 dev_deactivate_many(head);
1623
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001624 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001625 const struct net_device_ops *ops = dev->netdev_ops;
1626
1627 /*
1628 * Call the device specific close. This cannot fail.
1629 * Only if device is UP
1630 *
1631 * We allow it to be called even after a DETACH hot-plug
1632 * event.
1633 */
1634 if (ops->ndo_stop)
1635 ops->ndo_stop(dev);
1636
Octavian Purdila44345722010-12-13 12:44:07 +00001637 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001638 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001639 }
Octavian Purdila44345722010-12-13 12:44:07 +00001640}
1641
stephen hemminger7051b882017-07-18 15:59:27 -07001642static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001643{
1644 LIST_HEAD(single);
1645
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001646 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001647 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001648 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001649}
1650
stephen hemminger7051b882017-07-18 15:59:27 -07001651void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001652{
1653 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001654
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001655 /* Remove the devices that don't need to be closed */
1656 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001657 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001658 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001659
1660 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001661
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001662 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001663 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001664 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001665 if (unlink)
1666 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
David S. Miller99c4a262015-03-18 22:52:33 -04001669EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001670
1671/**
1672 * dev_close - shutdown an interface.
1673 * @dev: device to shutdown
1674 *
1675 * This function moves an active device into down state. A
1676 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1677 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1678 * chain.
1679 */
stephen hemminger7051b882017-07-18 15:59:27 -07001680void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001681{
Eric Dumazete14a5992011-05-10 12:26:06 -07001682 if (dev->flags & IFF_UP) {
1683 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001684
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001685 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001686 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001687 list_del(&single);
1688 }
Patrick McHardybd380812010-02-26 06:34:53 +00001689}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001690EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
1692
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001693/**
1694 * dev_disable_lro - disable Large Receive Offload on a device
1695 * @dev: device
1696 *
1697 * Disable Large Receive Offload (LRO) on a net device. Must be
1698 * called under RTNL. This is needed if received packets may be
1699 * forwarded to another interface.
1700 */
1701void dev_disable_lro(struct net_device *dev)
1702{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001703 struct net_device *lower_dev;
1704 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001705
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001706 dev->wanted_features &= ~NETIF_F_LRO;
1707 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001708
Michał Mirosław22d59692011-04-21 12:42:15 +00001709 if (unlikely(dev->features & NETIF_F_LRO))
1710 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001711
1712 netdev_for_each_lower_dev(dev, lower_dev, iter)
1713 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001714}
1715EXPORT_SYMBOL(dev_disable_lro);
1716
Michael Chan56f5aa72017-12-16 03:09:41 -05001717/**
1718 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1719 * @dev: device
1720 *
1721 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1722 * called under RTNL. This is needed if Generic XDP is installed on
1723 * the device.
1724 */
1725static void dev_disable_gro_hw(struct net_device *dev)
1726{
1727 dev->wanted_features &= ~NETIF_F_GRO_HW;
1728 netdev_update_features(dev);
1729
1730 if (unlikely(dev->features & NETIF_F_GRO_HW))
1731 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1732}
1733
Kirill Tkhaiede27622018-03-23 19:47:19 +03001734const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1735{
1736#define N(val) \
1737 case NETDEV_##val: \
1738 return "NETDEV_" __stringify(val);
1739 switch (cmd) {
1740 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1741 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1742 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1743 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1744 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1745 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1746 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001747 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1748 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001749 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001750 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001751#undef N
1752 return "UNKNOWN_NETDEV_EVENT";
1753}
1754EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1755
Jiri Pirko351638e2013-05-28 01:30:21 +00001756static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1757 struct net_device *dev)
1758{
David Ahern51d0c0472017-10-04 17:48:45 -07001759 struct netdev_notifier_info info = {
1760 .dev = dev,
1761 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001762
Jiri Pirko351638e2013-05-28 01:30:21 +00001763 return nb->notifier_call(nb, val, &info);
1764}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001765
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001766static int call_netdevice_register_notifiers(struct notifier_block *nb,
1767 struct net_device *dev)
1768{
1769 int err;
1770
1771 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1772 err = notifier_to_errno(err);
1773 if (err)
1774 return err;
1775
1776 if (!(dev->flags & IFF_UP))
1777 return 0;
1778
1779 call_netdevice_notifier(nb, NETDEV_UP, dev);
1780 return 0;
1781}
1782
1783static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1784 struct net_device *dev)
1785{
1786 if (dev->flags & IFF_UP) {
1787 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1788 dev);
1789 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1790 }
1791 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1792}
1793
1794static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1795 struct net *net)
1796{
1797 struct net_device *dev;
1798 int err;
1799
1800 for_each_netdev(net, dev) {
1801 err = call_netdevice_register_notifiers(nb, dev);
1802 if (err)
1803 goto rollback;
1804 }
1805 return 0;
1806
1807rollback:
1808 for_each_netdev_continue_reverse(net, dev)
1809 call_netdevice_unregister_notifiers(nb, dev);
1810 return err;
1811}
1812
1813static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1814 struct net *net)
1815{
1816 struct net_device *dev;
1817
1818 for_each_netdev(net, dev)
1819 call_netdevice_unregister_notifiers(nb, dev);
1820}
1821
Eric W. Biederman881d9662007-09-17 11:56:21 -07001822static int dev_boot_phase = 1;
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824/**
tcharding722c9a02017-02-09 17:56:04 +11001825 * register_netdevice_notifier - register a network notifier block
1826 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 *
tcharding722c9a02017-02-09 17:56:04 +11001828 * Register a notifier to be called when network device events occur.
1829 * The notifier passed is linked into the kernel structures and must
1830 * not be reused until it has been unregistered. A negative errno code
1831 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 *
tcharding722c9a02017-02-09 17:56:04 +11001833 * When registered all registration and up events are replayed
1834 * to the new notifier to allow device to have a race free
1835 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 */
1837
1838int register_netdevice_notifier(struct notifier_block *nb)
1839{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001840 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 int err;
1842
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001843 /* Close race with setup_net() and cleanup_net() */
1844 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001846 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001847 if (err)
1848 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001849 if (dev_boot_phase)
1850 goto unlock;
1851 for_each_net(net) {
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001852 err = call_netdevice_register_net_notifiers(nb, net);
1853 if (err)
1854 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001856
1857unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001859 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001861
1862rollback:
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001863 for_each_net_continue_reverse(net)
1864 call_netdevice_unregister_net_notifiers(nb, net);
Herbert Xufcc5a032007-07-30 17:03:38 -07001865
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001866 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001867 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001869EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871/**
tcharding722c9a02017-02-09 17:56:04 +11001872 * unregister_netdevice_notifier - unregister a network notifier block
1873 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 *
tcharding722c9a02017-02-09 17:56:04 +11001875 * Unregister a notifier previously registered by
1876 * register_netdevice_notifier(). The notifier is unlinked into the
1877 * kernel structures and may then be reused. A negative errno code
1878 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001879 *
tcharding722c9a02017-02-09 17:56:04 +11001880 * After unregistering unregister and down device events are synthesized
1881 * for all devices on the device list to the removed notifier to remove
1882 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 */
1884
1885int unregister_netdevice_notifier(struct notifier_block *nb)
1886{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001887 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001888 int err;
1889
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001890 /* Close race with setup_net() and cleanup_net() */
1891 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001892 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001893 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001894 if (err)
1895 goto unlock;
1896
Jiri Pirko48b3a132020-01-25 12:17:06 +01001897 for_each_net(net)
1898 call_netdevice_unregister_net_notifiers(nb, net);
1899
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001900unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001901 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001902 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001903 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001905EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Jiri Pirko1f637702020-01-25 12:17:07 +01001907static int __register_netdevice_notifier_net(struct net *net,
1908 struct notifier_block *nb,
1909 bool ignore_call_fail)
1910{
1911 int err;
1912
1913 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1914 if (err)
1915 return err;
1916 if (dev_boot_phase)
1917 return 0;
1918
1919 err = call_netdevice_register_net_notifiers(nb, net);
1920 if (err && !ignore_call_fail)
1921 goto chain_unregister;
1922
1923 return 0;
1924
1925chain_unregister:
1926 raw_notifier_chain_unregister(&net->netdev_chain, nb);
1927 return err;
1928}
1929
1930static int __unregister_netdevice_notifier_net(struct net *net,
1931 struct notifier_block *nb)
1932{
1933 int err;
1934
1935 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1936 if (err)
1937 return err;
1938
1939 call_netdevice_unregister_net_notifiers(nb, net);
1940 return 0;
1941}
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943/**
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001944 * register_netdevice_notifier_net - register a per-netns network notifier block
1945 * @net: network namespace
1946 * @nb: notifier
1947 *
1948 * Register a notifier to be called when network device events occur.
1949 * The notifier passed is linked into the kernel structures and must
1950 * not be reused until it has been unregistered. A negative errno code
1951 * is returned on a failure.
1952 *
1953 * When registered all registration and up events are replayed
1954 * to the new notifier to allow device to have a race free
1955 * view of the network device list.
1956 */
1957
1958int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
1959{
1960 int err;
1961
1962 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001963 err = __register_netdevice_notifier_net(net, nb, false);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001964 rtnl_unlock();
1965 return err;
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001966}
1967EXPORT_SYMBOL(register_netdevice_notifier_net);
1968
1969/**
1970 * unregister_netdevice_notifier_net - unregister a per-netns
1971 * network notifier block
1972 * @net: network namespace
1973 * @nb: notifier
1974 *
1975 * Unregister a notifier previously registered by
1976 * register_netdevice_notifier(). The notifier is unlinked into the
1977 * kernel structures and may then be reused. A negative errno code
1978 * is returned on a failure.
1979 *
1980 * After unregistering unregister and down device events are synthesized
1981 * for all devices on the device list to the removed notifier to remove
1982 * the need for special case cleanup code.
1983 */
1984
1985int unregister_netdevice_notifier_net(struct net *net,
1986 struct notifier_block *nb)
1987{
1988 int err;
1989
1990 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001991 err = __unregister_netdevice_notifier_net(net, nb);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001992 rtnl_unlock();
1993 return err;
1994}
1995EXPORT_SYMBOL(unregister_netdevice_notifier_net);
1996
Jiri Pirko93642e12020-01-25 12:17:08 +01001997int register_netdevice_notifier_dev_net(struct net_device *dev,
1998 struct notifier_block *nb,
1999 struct netdev_net_notifier *nn)
2000{
2001 int err;
2002
2003 rtnl_lock();
2004 err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
2005 if (!err) {
2006 nn->nb = nb;
2007 list_add(&nn->list, &dev->net_notifier_list);
2008 }
2009 rtnl_unlock();
2010 return err;
2011}
2012EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
2013
2014int unregister_netdevice_notifier_dev_net(struct net_device *dev,
2015 struct notifier_block *nb,
2016 struct netdev_net_notifier *nn)
2017{
2018 int err;
2019
2020 rtnl_lock();
2021 list_del(&nn->list);
2022 err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
2023 rtnl_unlock();
2024 return err;
2025}
2026EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
2027
2028static void move_netdevice_notifiers_dev_net(struct net_device *dev,
2029 struct net *net)
2030{
2031 struct netdev_net_notifier *nn;
2032
2033 list_for_each_entry(nn, &dev->net_notifier_list, list) {
2034 __unregister_netdevice_notifier_net(dev_net(dev), nn->nb);
2035 __register_netdevice_notifier_net(net, nn->nb, true);
2036 }
2037}
2038
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002039/**
Jiri Pirko351638e2013-05-28 01:30:21 +00002040 * call_netdevice_notifiers_info - call all network notifier blocks
2041 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00002042 * @info: notifier information data
2043 *
2044 * Call all network notifier blocks. Parameters and return value
2045 * are as for raw_notifier_call_chain().
2046 */
2047
stephen hemminger1d143d92013-12-29 14:01:29 -08002048static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08002049 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00002050{
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002051 struct net *net = dev_net(info->dev);
2052 int ret;
2053
Jiri Pirko351638e2013-05-28 01:30:21 +00002054 ASSERT_RTNL();
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002055
2056 /* Run per-netns notifier block chain first, then run the global one.
2057 * Hopefully, one day, the global one is going to be removed after
2058 * all notifier block registrators get converted to be per-netns.
2059 */
2060 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2061 if (ret & NOTIFY_STOP_MASK)
2062 return ret;
Jiri Pirko351638e2013-05-28 01:30:21 +00002063 return raw_notifier_call_chain(&netdev_chain, val, info);
2064}
Jiri Pirko351638e2013-05-28 01:30:21 +00002065
Petr Machata26372602018-12-06 17:05:45 +00002066static int call_netdevice_notifiers_extack(unsigned long val,
2067 struct net_device *dev,
2068 struct netlink_ext_ack *extack)
2069{
2070 struct netdev_notifier_info info = {
2071 .dev = dev,
2072 .extack = extack,
2073 };
2074
2075 return call_netdevice_notifiers_info(val, &info);
2076}
2077
Jiri Pirko351638e2013-05-28 01:30:21 +00002078/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * call_netdevice_notifiers - call all network notifier blocks
2080 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002081 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 *
2083 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07002084 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 */
2086
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07002087int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
Petr Machata26372602018-12-06 17:05:45 +00002089 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090}
stephen hemmingeredf947f2011-03-24 13:24:01 +00002091EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02002093/**
2094 * call_netdevice_notifiers_mtu - call all network notifier blocks
2095 * @val: value passed unmodified to notifier function
2096 * @dev: net_device pointer passed unmodified to notifier function
2097 * @arg: additional u32 argument passed to the notifier function
2098 *
2099 * Call all network notifier blocks. Parameters and return value
2100 * are as for raw_notifier_call_chain().
2101 */
2102static int call_netdevice_notifiers_mtu(unsigned long val,
2103 struct net_device *dev, u32 arg)
2104{
2105 struct netdev_notifier_info_ext info = {
2106 .info.dev = dev,
2107 .ext.mtu = arg,
2108 };
2109
2110 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2111
2112 return call_netdevice_notifiers_info(val, &info.info);
2113}
2114
Pablo Neira1cf519002015-05-13 18:19:37 +02002115#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002116static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002117
2118void net_inc_ingress_queue(void)
2119{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002120 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002121}
2122EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2123
2124void net_dec_ingress_queue(void)
2125{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002126 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002127}
2128EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2129#endif
2130
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002131#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002132static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002133
2134void net_inc_egress_queue(void)
2135{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002136 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002137}
2138EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2139
2140void net_dec_egress_queue(void)
2141{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002142 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002143}
2144EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2145#endif
2146
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002147static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002148#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00002149static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08002150static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002151static void netstamp_clear(struct work_struct *work)
2152{
2153 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08002154 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002155
Eric Dumazet13baa002017-03-01 14:28:39 -08002156 wanted = atomic_add_return(deferred, &netstamp_wanted);
2157 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002158 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002159 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002160 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002161}
2162static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00002163#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165void net_enable_timestamp(void)
2166{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002167#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002168 int wanted;
2169
2170 while (1) {
2171 wanted = atomic_read(&netstamp_wanted);
2172 if (wanted <= 0)
2173 break;
2174 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2175 return;
2176 }
2177 atomic_inc(&netstamp_needed_deferred);
2178 schedule_work(&netstamp_work);
2179#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002180 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002183EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185void net_disable_timestamp(void)
2186{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002187#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002188 int wanted;
2189
2190 while (1) {
2191 wanted = atomic_read(&netstamp_wanted);
2192 if (wanted <= 1)
2193 break;
2194 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2195 return;
2196 }
2197 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002198 schedule_work(&netstamp_work);
2199#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002200 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002203EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Eric Dumazet3b098e22010-05-15 23:57:10 -07002205static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
Thomas Gleixner2456e852016-12-25 11:38:40 +01002207 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002208 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002209 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210}
2211
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002212#define net_timestamp_check(COND, SKB) \
2213 if (static_branch_unlikely(&netstamp_needed_key)) { \
2214 if ((COND) && !(SKB)->tstamp) \
2215 __net_timestamp(SKB); \
2216 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07002217
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02002218bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002219{
2220 unsigned int len;
2221
2222 if (!(dev->flags & IFF_UP))
2223 return false;
2224
2225 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
2226 if (skb->len <= len)
2227 return true;
2228
2229 /* if TSO is enabled, we don't care about the length as the packet
2230 * could be forwarded without being segmented before
2231 */
2232 if (skb_is_gso(skb))
2233 return true;
2234
2235 return false;
2236}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04002237EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002238
Herbert Xua0265d22014-04-17 13:45:03 +08002239int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2240{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002241 int ret = ____dev_forward_skb(dev, skb);
2242
2243 if (likely(!ret)) {
2244 skb->protocol = eth_type_trans(skb, dev);
2245 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08002246 }
2247
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002248 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08002249}
2250EXPORT_SYMBOL_GPL(__dev_forward_skb);
2251
Arnd Bergmann44540962009-11-26 06:07:08 +00002252/**
2253 * dev_forward_skb - loopback an skb to another netif
2254 *
2255 * @dev: destination network device
2256 * @skb: buffer to forward
2257 *
2258 * return values:
2259 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07002260 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00002261 *
2262 * dev_forward_skb can be used for injecting an skb from the
2263 * start_xmit function of one device into the receive queue
2264 * of another device.
2265 *
2266 * The receiving device may be in another namespace, so
2267 * we have to clear all information in the skb that could
2268 * impact namespace isolation.
2269 */
2270int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2271{
Herbert Xua0265d22014-04-17 13:45:03 +08002272 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00002273}
2274EXPORT_SYMBOL_GPL(dev_forward_skb);
2275
Changli Gao71d9dec2010-12-15 19:57:25 +00002276static inline int deliver_skb(struct sk_buff *skb,
2277 struct packet_type *pt_prev,
2278 struct net_device *orig_dev)
2279{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04002280 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00002281 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03002282 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00002283 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2284}
2285
Salam Noureddine7866a622015-01-27 11:35:48 -08002286static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2287 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002288 struct net_device *orig_dev,
2289 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08002290 struct list_head *ptype_list)
2291{
2292 struct packet_type *ptype, *pt_prev = *pt;
2293
2294 list_for_each_entry_rcu(ptype, ptype_list, list) {
2295 if (ptype->type != type)
2296 continue;
2297 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002298 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08002299 pt_prev = ptype;
2300 }
2301 *pt = pt_prev;
2302}
2303
Eric Leblondc0de08d2012-08-16 22:02:58 +00002304static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2305{
Eric Leblonda3d744e2012-11-06 02:10:10 +00002306 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00002307 return false;
2308
2309 if (ptype->id_match)
2310 return ptype->id_match(ptype, skb->sk);
2311 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2312 return true;
2313
2314 return false;
2315}
2316
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002317/**
2318 * dev_nit_active - return true if any network interface taps are in use
2319 *
2320 * @dev: network device to check for the presence of taps
2321 */
2322bool dev_nit_active(struct net_device *dev)
2323{
2324 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2325}
2326EXPORT_SYMBOL_GPL(dev_nit_active);
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328/*
2329 * Support routine. Sends outgoing frames to any network
2330 * taps currently in use.
2331 */
2332
David Ahern74b20582016-05-10 11:19:50 -07002333void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
2335 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002336 struct sk_buff *skb2 = NULL;
2337 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002338 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002339
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002341again:
2342 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002343 if (ptype->ignore_outgoing)
2344 continue;
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /* Never send packets back to the socket
2347 * they originated from - MvS (miquels@drinkel.ow.org)
2348 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002349 if (skb_loop_sk(ptype, skb))
2350 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002351
Salam Noureddine7866a622015-01-27 11:35:48 -08002352 if (pt_prev) {
2353 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002354 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002355 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002357
2358 /* need to clone skb, done only once */
2359 skb2 = skb_clone(skb, GFP_ATOMIC);
2360 if (!skb2)
2361 goto out_unlock;
2362
2363 net_timestamp_set(skb2);
2364
2365 /* skb->nh should be correctly
2366 * set by sender, so that the second statement is
2367 * just protection against buggy protocols.
2368 */
2369 skb_reset_mac_header(skb2);
2370
2371 if (skb_network_header(skb2) < skb2->data ||
2372 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2373 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2374 ntohs(skb2->protocol),
2375 dev->name);
2376 skb_reset_network_header(skb2);
2377 }
2378
2379 skb2->transport_header = skb2->network_header;
2380 skb2->pkt_type = PACKET_OUTGOING;
2381 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002383
2384 if (ptype_list == &ptype_all) {
2385 ptype_list = &dev->ptype_all;
2386 goto again;
2387 }
2388out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002389 if (pt_prev) {
2390 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2391 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2392 else
2393 kfree_skb(skb2);
2394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 rcu_read_unlock();
2396}
David Ahern74b20582016-05-10 11:19:50 -07002397EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Ben Hutchings2c530402012-07-10 10:55:09 +00002399/**
2400 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002401 * @dev: Network device
2402 * @txq: number of queues available
2403 *
2404 * If real_num_tx_queues is changed the tc mappings may no longer be
2405 * valid. To resolve this verify the tc mapping remains valid and if
2406 * not NULL the mapping. With no priorities mapping to this
2407 * offset/count pair it will no longer be used. In the worst case TC0
2408 * is invalid nothing can be done so disable priority mappings. If is
2409 * expected that drivers will fix this mapping if they can before
2410 * calling netif_set_real_num_tx_queues.
2411 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002412static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002413{
2414 int i;
2415 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2416
2417 /* If TC0 is invalidated disable TC mapping */
2418 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002419 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002420 dev->num_tc = 0;
2421 return;
2422 }
2423
2424 /* Invalidated prio to tc mappings set to TC0 */
2425 for (i = 1; i < TC_BITMASK + 1; i++) {
2426 int q = netdev_get_prio_tc_map(dev, i);
2427
2428 tc = &dev->tc_to_txq[q];
2429 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002430 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2431 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002432 netdev_set_prio_tc_map(dev, i, 0);
2433 }
2434 }
2435}
2436
Alexander Duyck8d059b02016-10-28 11:43:49 -04002437int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2438{
2439 if (dev->num_tc) {
2440 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2441 int i;
2442
Alexander Duyckffcfe252018-07-09 12:19:38 -04002443 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002444 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2445 if ((txq - tc->offset) < tc->count)
2446 return i;
2447 }
2448
Alexander Duyckffcfe252018-07-09 12:19:38 -04002449 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002450 return -1;
2451 }
2452
2453 return 0;
2454}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002455EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002456
Alexander Duyck537c00d2013-01-10 08:57:02 +00002457#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002458struct static_key xps_needed __read_mostly;
2459EXPORT_SYMBOL(xps_needed);
2460struct static_key xps_rxqs_needed __read_mostly;
2461EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002462static DEFINE_MUTEX(xps_map_mutex);
2463#define xmap_dereference(P) \
2464 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2465
Alexander Duyck6234f872016-10-28 11:46:49 -04002466static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2467 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002468{
2469 struct xps_map *map = NULL;
2470 int pos;
2471
2472 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002473 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002474 if (!map)
2475 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002476
Alexander Duyck6234f872016-10-28 11:46:49 -04002477 for (pos = map->len; pos--;) {
2478 if (map->queues[pos] != index)
2479 continue;
2480
2481 if (map->len > 1) {
2482 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002483 break;
2484 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002485
Amritha Nambiar80d19662018-06-29 21:26:41 -07002486 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002487 kfree_rcu(map, rcu);
2488 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002489 }
2490
Alexander Duyck6234f872016-10-28 11:46:49 -04002491 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002492}
2493
Alexander Duyck6234f872016-10-28 11:46:49 -04002494static bool remove_xps_queue_cpu(struct net_device *dev,
2495 struct xps_dev_maps *dev_maps,
2496 int cpu, u16 offset, u16 count)
2497{
Alexander Duyck184c4492016-10-28 11:50:13 -04002498 int num_tc = dev->num_tc ? : 1;
2499 bool active = false;
2500 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002501
Alexander Duyck184c4492016-10-28 11:50:13 -04002502 for (tci = cpu * num_tc; num_tc--; tci++) {
2503 int i, j;
2504
2505 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002506 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002507 break;
2508 }
2509
2510 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002511 }
2512
Alexander Duyck184c4492016-10-28 11:50:13 -04002513 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002514}
2515
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002516static void reset_xps_maps(struct net_device *dev,
2517 struct xps_dev_maps *dev_maps,
2518 bool is_rxqs_map)
2519{
2520 if (is_rxqs_map) {
2521 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2522 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2523 } else {
2524 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2525 }
2526 static_key_slow_dec_cpuslocked(&xps_needed);
2527 kfree_rcu(dev_maps, rcu);
2528}
2529
Amritha Nambiar80d19662018-06-29 21:26:41 -07002530static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2531 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2532 u16 offset, u16 count, bool is_rxqs_map)
2533{
2534 bool active = false;
2535 int i, j;
2536
2537 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2538 j < nr_ids;)
2539 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2540 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002541 if (!active)
2542 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002543
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002544 if (!is_rxqs_map) {
2545 for (i = offset + (count - 1); count--; i--) {
2546 netdev_queue_numa_node_write(
2547 netdev_get_tx_queue(dev, i),
2548 NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002549 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002550 }
2551}
2552
Alexander Duyck6234f872016-10-28 11:46:49 -04002553static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2554 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002555{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002556 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002557 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002558 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002559
Amritha Nambiar04157462018-06-29 21:26:46 -07002560 if (!static_key_false(&xps_needed))
2561 return;
2562
Andrei Vagin4d99f662018-08-08 20:07:35 -07002563 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002564 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002565
Amritha Nambiar04157462018-06-29 21:26:46 -07002566 if (static_key_false(&xps_rxqs_needed)) {
2567 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2568 if (dev_maps) {
2569 nr_ids = dev->num_rx_queues;
2570 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2571 offset, count, true);
2572 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002573 }
2574
2575 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002576 if (!dev_maps)
2577 goto out_no_maps;
2578
Amritha Nambiar80d19662018-06-29 21:26:41 -07002579 if (num_possible_cpus() > 1)
2580 possible_mask = cpumask_bits(cpu_possible_mask);
2581 nr_ids = nr_cpu_ids;
2582 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2583 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002584
Alexander Duyck537c00d2013-01-10 08:57:02 +00002585out_no_maps:
2586 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002587 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002588}
2589
Alexander Duyck6234f872016-10-28 11:46:49 -04002590static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2591{
2592 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2593}
2594
Amritha Nambiar80d19662018-06-29 21:26:41 -07002595static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2596 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002597{
2598 struct xps_map *new_map;
2599 int alloc_len = XPS_MIN_MAP_ALLOC;
2600 int i, pos;
2601
2602 for (pos = 0; map && pos < map->len; pos++) {
2603 if (map->queues[pos] != index)
2604 continue;
2605 return map;
2606 }
2607
Amritha Nambiar80d19662018-06-29 21:26:41 -07002608 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002609 if (map) {
2610 if (pos < map->alloc_len)
2611 return map;
2612
2613 alloc_len = map->alloc_len * 2;
2614 }
2615
Amritha Nambiar80d19662018-06-29 21:26:41 -07002616 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2617 * map
2618 */
2619 if (is_rxqs_map)
2620 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2621 else
2622 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2623 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002624 if (!new_map)
2625 return NULL;
2626
2627 for (i = 0; i < pos; i++)
2628 new_map->queues[i] = map->queues[i];
2629 new_map->alloc_len = alloc_len;
2630 new_map->len = pos;
2631
2632 return new_map;
2633}
2634
Andrei Vagin4d99f662018-08-08 20:07:35 -07002635/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002636int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2637 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002638{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002639 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002640 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002641 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002642 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002643 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002644 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002645 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002646
Alexander Duyck184c4492016-10-28 11:50:13 -04002647 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002648 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002649 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002650 if (num_tc < 0)
2651 return -EINVAL;
2652
2653 /* If queue belongs to subordinate dev use its map */
2654 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2655
Alexander Duyck184c4492016-10-28 11:50:13 -04002656 tc = netdev_txq_to_tc(dev, index);
2657 if (tc < 0)
2658 return -EINVAL;
2659 }
2660
Amritha Nambiar80d19662018-06-29 21:26:41 -07002661 mutex_lock(&xps_map_mutex);
2662 if (is_rxqs_map) {
2663 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2664 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2665 nr_ids = dev->num_rx_queues;
2666 } else {
2667 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2668 if (num_possible_cpus() > 1) {
2669 online_mask = cpumask_bits(cpu_online_mask);
2670 possible_mask = cpumask_bits(cpu_possible_mask);
2671 }
2672 dev_maps = xmap_dereference(dev->xps_cpus_map);
2673 nr_ids = nr_cpu_ids;
2674 }
2675
Alexander Duyck184c4492016-10-28 11:50:13 -04002676 if (maps_sz < L1_CACHE_BYTES)
2677 maps_sz = L1_CACHE_BYTES;
2678
Alexander Duyck01c5f862013-01-10 08:57:35 +00002679 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002680 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2681 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002682 if (!new_dev_maps)
2683 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002684 if (!new_dev_maps) {
2685 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002686 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002687 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002688
Amritha Nambiar80d19662018-06-29 21:26:41 -07002689 tci = j * num_tc + tc;
2690 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002691 NULL;
2692
Amritha Nambiar80d19662018-06-29 21:26:41 -07002693 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002694 if (!map)
2695 goto error;
2696
Amritha Nambiar80d19662018-06-29 21:26:41 -07002697 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002698 }
2699
2700 if (!new_dev_maps)
2701 goto out_no_new_maps;
2702
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002703 if (!dev_maps) {
2704 /* Increment static keys at most once per type */
2705 static_key_slow_inc_cpuslocked(&xps_needed);
2706 if (is_rxqs_map)
2707 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2708 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002709
Amritha Nambiar80d19662018-06-29 21:26:41 -07002710 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2711 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002712 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002713 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002714 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002715 map = xmap_dereference(dev_maps->attr_map[tci]);
2716 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002717 }
2718
2719 /* We need to explicitly update tci as prevous loop
2720 * could break out early if dev_maps is NULL.
2721 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002722 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002723
Amritha Nambiar80d19662018-06-29 21:26:41 -07002724 if (netif_attr_test_mask(j, mask, nr_ids) &&
2725 netif_attr_test_online(j, online_mask, nr_ids)) {
2726 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002727 int pos = 0;
2728
Amritha Nambiar80d19662018-06-29 21:26:41 -07002729 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002730 while ((pos < map->len) && (map->queues[pos] != index))
2731 pos++;
2732
2733 if (pos == map->len)
2734 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002735#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002736 if (!is_rxqs_map) {
2737 if (numa_node_id == -2)
2738 numa_node_id = cpu_to_node(j);
2739 else if (numa_node_id != cpu_to_node(j))
2740 numa_node_id = -1;
2741 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002742#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002743 } else if (dev_maps) {
2744 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002745 map = xmap_dereference(dev_maps->attr_map[tci]);
2746 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002747 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002748
Alexander Duyck184c4492016-10-28 11:50:13 -04002749 /* copy maps belonging to foreign traffic classes */
2750 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2751 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002752 map = xmap_dereference(dev_maps->attr_map[tci]);
2753 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002754 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002755 }
2756
Amritha Nambiar80d19662018-06-29 21:26:41 -07002757 if (is_rxqs_map)
2758 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2759 else
2760 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002761
Alexander Duyck537c00d2013-01-10 08:57:02 +00002762 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002763 if (!dev_maps)
2764 goto out_no_old_maps;
2765
Amritha Nambiar80d19662018-06-29 21:26:41 -07002766 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2767 j < nr_ids;) {
2768 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2769 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2770 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002771 if (map && map != new_map)
2772 kfree_rcu(map, rcu);
2773 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002774 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002775
Alexander Duyck184c4492016-10-28 11:50:13 -04002776 kfree_rcu(dev_maps, rcu);
2777
2778out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002779 dev_maps = new_dev_maps;
2780 active = true;
2781
2782out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002783 if (!is_rxqs_map) {
2784 /* update Tx queue numa node */
2785 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2786 (numa_node_id >= 0) ?
2787 numa_node_id : NUMA_NO_NODE);
2788 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002789
Alexander Duyck01c5f862013-01-10 08:57:35 +00002790 if (!dev_maps)
2791 goto out_no_maps;
2792
Amritha Nambiar80d19662018-06-29 21:26:41 -07002793 /* removes tx-queue from unused CPUs/rx-queues */
2794 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2795 j < nr_ids;) {
2796 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002797 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002798 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2799 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002800 active |= remove_xps_queue(dev_maps, tci, index);
2801 for (i = num_tc - tc, tci++; --i; tci++)
2802 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002803 }
2804
2805 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002806 if (!active)
2807 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002808
2809out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002810 mutex_unlock(&xps_map_mutex);
2811
2812 return 0;
2813error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002814 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002815 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2816 j < nr_ids;) {
2817 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2818 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002819 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002820 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002821 NULL;
2822 if (new_map && new_map != map)
2823 kfree(new_map);
2824 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002825 }
2826
Alexander Duyck537c00d2013-01-10 08:57:02 +00002827 mutex_unlock(&xps_map_mutex);
2828
Alexander Duyck537c00d2013-01-10 08:57:02 +00002829 kfree(new_dev_maps);
2830 return -ENOMEM;
2831}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002832EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002833
2834int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2835 u16 index)
2836{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002837 int ret;
2838
2839 cpus_read_lock();
2840 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2841 cpus_read_unlock();
2842
2843 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002844}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002845EXPORT_SYMBOL(netif_set_xps_queue);
2846
2847#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002848static void netdev_unbind_all_sb_channels(struct net_device *dev)
2849{
2850 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2851
2852 /* Unbind any subordinate channels */
2853 while (txq-- != &dev->_tx[0]) {
2854 if (txq->sb_dev)
2855 netdev_unbind_sb_channel(dev, txq->sb_dev);
2856 }
2857}
2858
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002859void netdev_reset_tc(struct net_device *dev)
2860{
Alexander Duyck6234f872016-10-28 11:46:49 -04002861#ifdef CONFIG_XPS
2862 netif_reset_xps_queues_gt(dev, 0);
2863#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002864 netdev_unbind_all_sb_channels(dev);
2865
2866 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002867 dev->num_tc = 0;
2868 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2869 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2870}
2871EXPORT_SYMBOL(netdev_reset_tc);
2872
2873int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2874{
2875 if (tc >= dev->num_tc)
2876 return -EINVAL;
2877
Alexander Duyck6234f872016-10-28 11:46:49 -04002878#ifdef CONFIG_XPS
2879 netif_reset_xps_queues(dev, offset, count);
2880#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002881 dev->tc_to_txq[tc].count = count;
2882 dev->tc_to_txq[tc].offset = offset;
2883 return 0;
2884}
2885EXPORT_SYMBOL(netdev_set_tc_queue);
2886
2887int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2888{
2889 if (num_tc > TC_MAX_QUEUE)
2890 return -EINVAL;
2891
Alexander Duyck6234f872016-10-28 11:46:49 -04002892#ifdef CONFIG_XPS
2893 netif_reset_xps_queues_gt(dev, 0);
2894#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002895 netdev_unbind_all_sb_channels(dev);
2896
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002897 dev->num_tc = num_tc;
2898 return 0;
2899}
2900EXPORT_SYMBOL(netdev_set_num_tc);
2901
Alexander Duyckffcfe252018-07-09 12:19:38 -04002902void netdev_unbind_sb_channel(struct net_device *dev,
2903 struct net_device *sb_dev)
2904{
2905 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2906
2907#ifdef CONFIG_XPS
2908 netif_reset_xps_queues_gt(sb_dev, 0);
2909#endif
2910 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2911 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2912
2913 while (txq-- != &dev->_tx[0]) {
2914 if (txq->sb_dev == sb_dev)
2915 txq->sb_dev = NULL;
2916 }
2917}
2918EXPORT_SYMBOL(netdev_unbind_sb_channel);
2919
2920int netdev_bind_sb_channel_queue(struct net_device *dev,
2921 struct net_device *sb_dev,
2922 u8 tc, u16 count, u16 offset)
2923{
2924 /* Make certain the sb_dev and dev are already configured */
2925 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2926 return -EINVAL;
2927
2928 /* We cannot hand out queues we don't have */
2929 if ((offset + count) > dev->real_num_tx_queues)
2930 return -EINVAL;
2931
2932 /* Record the mapping */
2933 sb_dev->tc_to_txq[tc].count = count;
2934 sb_dev->tc_to_txq[tc].offset = offset;
2935
2936 /* Provide a way for Tx queue to find the tc_to_txq map or
2937 * XPS map for itself.
2938 */
2939 while (count--)
2940 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2941
2942 return 0;
2943}
2944EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2945
2946int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2947{
2948 /* Do not use a multiqueue device to represent a subordinate channel */
2949 if (netif_is_multiqueue(dev))
2950 return -ENODEV;
2951
2952 /* We allow channels 1 - 32767 to be used for subordinate channels.
2953 * Channel 0 is meant to be "native" mode and used only to represent
2954 * the main root device. We allow writing 0 to reset the device back
2955 * to normal mode after being used as a subordinate channel.
2956 */
2957 if (channel > S16_MAX)
2958 return -EINVAL;
2959
2960 dev->num_tc = -channel;
2961
2962 return 0;
2963}
2964EXPORT_SYMBOL(netdev_set_sb_channel);
2965
John Fastabendf0796d52010-07-01 13:21:57 +00002966/*
2967 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002968 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002969 */
Tom Herberte6484932010-10-18 18:04:39 +00002970int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002971{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002972 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002973 int rc;
2974
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002975 disabling = txq < dev->real_num_tx_queues;
2976
Tom Herberte6484932010-10-18 18:04:39 +00002977 if (txq < 1 || txq > dev->num_tx_queues)
2978 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002979
Ben Hutchings5c565802011-02-15 19:39:21 +00002980 if (dev->reg_state == NETREG_REGISTERED ||
2981 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002982 ASSERT_RTNL();
2983
Tom Herbert1d24eb42010-11-21 13:17:27 +00002984 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2985 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002986 if (rc)
2987 return rc;
2988
John Fastabend4f57c082011-01-17 08:06:04 +00002989 if (dev->num_tc)
2990 netif_setup_tc(dev, txq);
2991
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002992 dev->real_num_tx_queues = txq;
2993
2994 if (disabling) {
2995 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002996 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002997#ifdef CONFIG_XPS
2998 netif_reset_xps_queues_gt(dev, txq);
2999#endif
3000 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08003001 } else {
3002 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00003003 }
Tom Herberte6484932010-10-18 18:04:39 +00003004
Tom Herberte6484932010-10-18 18:04:39 +00003005 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00003006}
3007EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08003008
Michael Daltona953be52014-01-16 22:23:28 -08003009#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003010/**
3011 * netif_set_real_num_rx_queues - set actual number of RX queues used
3012 * @dev: Network device
3013 * @rxq: Actual number of RX queues
3014 *
3015 * This must be called either with the rtnl_lock held or before
3016 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07003017 * negative error code. If called before registration, it always
3018 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003019 */
3020int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
3021{
3022 int rc;
3023
Tom Herbertbd25fa72010-10-18 18:00:16 +00003024 if (rxq < 1 || rxq > dev->num_rx_queues)
3025 return -EINVAL;
3026
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003027 if (dev->reg_state == NETREG_REGISTERED) {
3028 ASSERT_RTNL();
3029
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003030 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
3031 rxq);
3032 if (rc)
3033 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003034 }
3035
3036 dev->real_num_rx_queues = rxq;
3037 return 0;
3038}
3039EXPORT_SYMBOL(netif_set_real_num_rx_queues);
3040#endif
3041
Ben Hutchings2c530402012-07-10 10:55:09 +00003042/**
3043 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00003044 *
3045 * This routine should set an upper limit on the number of RSS queues
3046 * used by default by multiqueue devices.
3047 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00003048int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00003049{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05303050 return is_kdump_kernel() ?
3051 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00003052}
3053EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3054
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003055static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003056{
3057 struct softnet_data *sd;
3058 unsigned long flags;
3059
3060 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05003061 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00003062 q->next_sched = NULL;
3063 *sd->output_queue_tailp = q;
3064 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003065 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3066 local_irq_restore(flags);
3067}
3068
David S. Miller37437bb2008-07-16 02:15:04 -07003069void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08003070{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003071 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3072 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08003073}
3074EXPORT_SYMBOL(__netif_schedule);
3075
Eric Dumazete6247022013-12-05 04:45:08 -08003076struct dev_kfree_skb_cb {
3077 enum skb_free_reason reason;
3078};
3079
3080static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08003081{
Eric Dumazete6247022013-12-05 04:45:08 -08003082 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08003083}
Denis Vlasenko56079432006-03-29 15:57:29 -08003084
John Fastabend46e5da40a2014-09-12 20:04:52 -07003085void netif_schedule_queue(struct netdev_queue *txq)
3086{
3087 rcu_read_lock();
Julio Faracco5be55152019-10-01 11:39:04 -03003088 if (!netif_xmit_stopped(txq)) {
John Fastabend46e5da40a2014-09-12 20:04:52 -07003089 struct Qdisc *q = rcu_dereference(txq->qdisc);
3090
3091 __netif_schedule(q);
3092 }
3093 rcu_read_unlock();
3094}
3095EXPORT_SYMBOL(netif_schedule_queue);
3096
John Fastabend46e5da40a2014-09-12 20:04:52 -07003097void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3098{
3099 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3100 struct Qdisc *q;
3101
3102 rcu_read_lock();
3103 q = rcu_dereference(dev_queue->qdisc);
3104 __netif_schedule(q);
3105 rcu_read_unlock();
3106 }
3107}
3108EXPORT_SYMBOL(netif_tx_wake_queue);
3109
Eric Dumazete6247022013-12-05 04:45:08 -08003110void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
3111{
3112 unsigned long flags;
3113
Myungho Jung98998862017-04-25 11:58:15 -07003114 if (unlikely(!skb))
3115 return;
3116
Reshetova, Elena63354792017-06-30 13:07:58 +03003117 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08003118 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03003119 refcount_set(&skb->users, 0);
3120 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08003121 return;
3122 }
3123 get_kfree_skb_cb(skb)->reason = reason;
3124 local_irq_save(flags);
3125 skb->next = __this_cpu_read(softnet_data.completion_queue);
3126 __this_cpu_write(softnet_data.completion_queue, skb);
3127 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3128 local_irq_restore(flags);
3129}
3130EXPORT_SYMBOL(__dev_kfree_skb_irq);
3131
3132void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08003133{
3134 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08003135 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08003136 else
3137 dev_kfree_skb(skb);
3138}
Eric Dumazete6247022013-12-05 04:45:08 -08003139EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08003140
3141
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003142/**
3143 * netif_device_detach - mark device as removed
3144 * @dev: network device
3145 *
3146 * Mark device as removed from system and therefore no longer available.
3147 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003148void netif_device_detach(struct net_device *dev)
3149{
3150 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3151 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003152 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003153 }
3154}
3155EXPORT_SYMBOL(netif_device_detach);
3156
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003157/**
3158 * netif_device_attach - mark device as attached
3159 * @dev: network device
3160 *
3161 * Mark device as attached from system and restart if needed.
3162 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003163void netif_device_attach(struct net_device *dev)
3164{
3165 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3166 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003167 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003168 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003169 }
3170}
3171EXPORT_SYMBOL(netif_device_attach);
3172
Jiri Pirko5605c762015-05-12 14:56:12 +02003173/*
3174 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3175 * to be used as a distribution range.
3176 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003177static u16 skb_tx_hash(const struct net_device *dev,
3178 const struct net_device *sb_dev,
3179 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02003180{
3181 u32 hash;
3182 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003183 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02003184
Alexander Duyckeadec8772018-07-09 12:19:48 -04003185 if (dev->num_tc) {
3186 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3187
3188 qoffset = sb_dev->tc_to_txq[tc].offset;
3189 qcount = sb_dev->tc_to_txq[tc].count;
3190 }
3191
Jiri Pirko5605c762015-05-12 14:56:12 +02003192 if (skb_rx_queue_recorded(skb)) {
3193 hash = skb_get_rx_queue(skb);
Amritha Nambiar6e11d152020-02-24 10:56:00 -08003194 if (hash >= qoffset)
3195 hash -= qoffset;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003196 while (unlikely(hash >= qcount))
3197 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04003198 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02003199 }
3200
3201 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3202}
Jiri Pirko5605c762015-05-12 14:56:12 +02003203
Ben Hutchings36c92472012-01-17 07:57:56 +00003204static void skb_warn_bad_offload(const struct sk_buff *skb)
3205{
Wei Tang84d15ae2016-06-16 21:17:49 +08003206 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00003207 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01003208 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00003209
Ben Greearc846ad92013-04-19 10:45:52 +00003210 if (!net_ratelimit())
3211 return;
3212
Bjørn Mork88ad4172015-11-16 19:16:40 +01003213 if (dev) {
3214 if (dev->dev.parent)
3215 name = dev_driver_string(dev->dev.parent);
3216 else
3217 name = netdev_name(dev);
3218 }
Willem de Bruijn64131392019-07-07 05:51:55 -04003219 skb_dump(KERN_WARNING, skb, false);
3220 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01003221 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04003222 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00003223}
3224
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225/*
3226 * Invalidate hardware checksum when packet is to be mangled, and
3227 * complete checksum manually on outgoing path.
3228 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003229int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230{
Al Virod3bc23e2006-11-14 21:24:49 -08003231 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07003232 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Patrick McHardy84fa7932006-08-29 16:44:56 -07003234 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07003235 goto out_set_summed;
3236
Yi Li3aefd7d2020-10-27 13:59:04 +08003237 if (unlikely(skb_is_gso(skb))) {
Ben Hutchings36c92472012-01-17 07:57:56 +00003238 skb_warn_bad_offload(skb);
3239 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 }
3241
Eric Dumazetcef401d2013-01-25 20:34:37 +00003242 /* Before computing a checksum, we should make sure no frag could
3243 * be modified by an external entity : checksum could be wrong.
3244 */
3245 if (skb_has_shared_frag(skb)) {
3246 ret = __skb_linearize(skb);
3247 if (ret)
3248 goto out;
3249 }
3250
Michał Mirosław55508d62010-12-14 15:24:08 +00003251 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07003252 BUG_ON(offset >= skb_headlen(skb));
3253 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3254
3255 offset += skb->csum_offset;
3256 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3257
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003258 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3259 if (ret)
3260 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07003262 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07003263out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003265out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 return ret;
3267}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003268EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Davide Carattib72b5bf2017-05-18 15:44:38 +02003270int skb_crc32c_csum_help(struct sk_buff *skb)
3271{
3272 __le32 crc32c_csum;
3273 int ret = 0, offset, start;
3274
3275 if (skb->ip_summed != CHECKSUM_PARTIAL)
3276 goto out;
3277
3278 if (unlikely(skb_is_gso(skb)))
3279 goto out;
3280
3281 /* Before computing a checksum, we should make sure no frag could
3282 * be modified by an external entity : checksum could be wrong.
3283 */
3284 if (unlikely(skb_has_shared_frag(skb))) {
3285 ret = __skb_linearize(skb);
3286 if (ret)
3287 goto out;
3288 }
3289 start = skb_checksum_start_offset(skb);
3290 offset = start + offsetof(struct sctphdr, checksum);
3291 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3292 ret = -EINVAL;
3293 goto out;
3294 }
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003295
3296 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3297 if (ret)
3298 goto out;
3299
Davide Carattib72b5bf2017-05-18 15:44:38 +02003300 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3301 skb->len - start, ~(__u32)0,
3302 crc32c_csum_stub));
3303 *(__le32 *)(skb->data + offset) = crc32c_csum;
3304 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02003305 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003306out:
3307 return ret;
3308}
3309
Vlad Yasevich53d64712014-03-27 17:26:18 -04003310__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003311{
3312 __be16 type = skb->protocol;
3313
Pravin B Shelar19acc322013-05-07 20:41:07 +00003314 /* Tunnel gso handlers can set protocol to ethernet. */
3315 if (type == htons(ETH_P_TEB)) {
3316 struct ethhdr *eth;
3317
3318 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3319 return 0;
3320
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003321 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003322 type = eth->h_proto;
3323 }
3324
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003325 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003326}
3327
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003328/**
3329 * skb_mac_gso_segment - mac layer segmentation handler.
3330 * @skb: buffer to segment
3331 * @features: features for the output path (see dev->features)
3332 */
3333struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3334 netdev_features_t features)
3335{
3336 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3337 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003338 int vlan_depth = skb->mac_len;
3339 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003340
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003341 if (unlikely(!type))
3342 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003343
Vlad Yasevich53d64712014-03-27 17:26:18 -04003344 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003345
3346 rcu_read_lock();
3347 list_for_each_entry_rcu(ptype, &offload_base, list) {
3348 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003349 segs = ptype->callbacks.gso_segment(skb, features);
3350 break;
3351 }
3352 }
3353 rcu_read_unlock();
3354
3355 __skb_push(skb, skb->data - skb_mac_header(skb));
3356
3357 return segs;
3358}
3359EXPORT_SYMBOL(skb_mac_gso_segment);
3360
3361
Cong Wang12b00042013-02-05 16:36:38 +00003362/* openvswitch calls this on rx path, so we need a different check.
3363 */
3364static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3365{
3366 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003367 return skb->ip_summed != CHECKSUM_PARTIAL &&
3368 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003369
3370 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003371}
3372
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003373/**
Cong Wang12b00042013-02-05 16:36:38 +00003374 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003375 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003376 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003377 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003378 *
3379 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003380 *
3381 * It may return NULL if the skb requires no segmentation. This is
3382 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003383 *
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003384 * Segmentation preserves SKB_GSO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003385 */
Cong Wang12b00042013-02-05 16:36:38 +00003386struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3387 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003388{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003389 struct sk_buff *segs;
3390
Cong Wang12b00042013-02-05 16:36:38 +00003391 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003392 int err;
3393
Eric Dumazetb2504a52017-01-31 10:20:32 -08003394 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003395 err = skb_cow_head(skb, 0);
3396 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003397 return ERR_PTR(err);
3398 }
3399
Alexander Duyck802ab552016-04-10 21:45:03 -04003400 /* Only report GSO partial support if it will enable us to
3401 * support segmentation on this frame without needing additional
3402 * work.
3403 */
3404 if (features & NETIF_F_GSO_PARTIAL) {
3405 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3406 struct net_device *dev = skb->dev;
3407
3408 partial_features |= dev->features & dev->gso_partial_features;
3409 if (!skb_gso_ok(skb, features | partial_features))
3410 features &= ~NETIF_F_GSO_PARTIAL;
3411 }
3412
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003413 BUILD_BUG_ON(SKB_GSO_CB_OFFSET +
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003414 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3415
Pravin B Shelar68c33162013-02-14 14:02:41 +00003416 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003417 SKB_GSO_CB(skb)->encap_level = 0;
3418
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003419 skb_reset_mac_header(skb);
3420 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003421
Eric Dumazetb2504a52017-01-31 10:20:32 -08003422 segs = skb_mac_gso_segment(skb, features);
3423
Steffen Klassert3a1296a2020-01-25 11:26:44 +01003424 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003425 skb_warn_bad_offload(skb);
3426
3427 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003428}
Cong Wang12b00042013-02-05 16:36:38 +00003429EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003430
Herbert Xufb286bb2005-11-10 13:01:24 -08003431/* Take action when hardware reception checksum errors are detected. */
3432#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003433void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003434{
3435 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003436 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Willem de Bruijn64131392019-07-07 05:51:55 -04003437 skb_dump(KERN_ERR, skb, true);
Herbert Xufb286bb2005-11-10 13:01:24 -08003438 dump_stack();
3439 }
3440}
3441EXPORT_SYMBOL(netdev_rx_csum_fault);
3442#endif
3443
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003444/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003445static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003447#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 int i;
tchardingf4563a72017-02-09 17:56:07 +11003449
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003450 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003451 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3452 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003453
Ian Campbellea2ab692011-08-22 23:44:58 +00003454 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003455 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003456 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003457 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003458#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 return 0;
3460}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Simon Horman3b392dd2014-06-04 08:53:17 +09003462/* If MPLS offload request, verify we are testing hardware MPLS features
3463 * instead of standard features for the netdev.
3464 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003465#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003466static netdev_features_t net_mpls_features(struct sk_buff *skb,
3467 netdev_features_t features,
3468 __be16 type)
3469{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003470 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003471 features &= skb->dev->mpls_features;
3472
3473 return features;
3474}
3475#else
3476static netdev_features_t net_mpls_features(struct sk_buff *skb,
3477 netdev_features_t features,
3478 __be16 type)
3479{
3480 return features;
3481}
3482#endif
3483
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003484static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003485 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003486{
Simon Horman3b392dd2014-06-04 08:53:17 +09003487 __be16 type;
3488
Miaohe Lin9fc95f52020-07-30 19:02:36 +08003489 type = skb_network_protocol(skb, NULL);
Simon Horman3b392dd2014-06-04 08:53:17 +09003490 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003491
Ed Cashinc0d680e2012-09-19 15:49:00 +00003492 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003493 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003494 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003495 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003496 if (illegal_highdma(skb->dev, skb))
3497 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003498
3499 return features;
3500}
3501
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003502netdev_features_t passthru_features_check(struct sk_buff *skb,
3503 struct net_device *dev,
3504 netdev_features_t features)
3505{
3506 return features;
3507}
3508EXPORT_SYMBOL(passthru_features_check);
3509
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003510static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003511 struct net_device *dev,
3512 netdev_features_t features)
3513{
3514 return vlan_features_check(skb, features);
3515}
3516
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003517static netdev_features_t gso_features_check(const struct sk_buff *skb,
3518 struct net_device *dev,
3519 netdev_features_t features)
3520{
3521 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3522
3523 if (gso_segs > dev->gso_max_segs)
3524 return features & ~NETIF_F_GSO_MASK;
3525
Heiner Kallweit1d155df2020-11-21 00:22:20 +01003526 if (!skb_shinfo(skb)->gso_type) {
3527 skb_warn_bad_offload(skb);
3528 return features & ~NETIF_F_GSO_MASK;
3529 }
3530
Alexander Duyck802ab552016-04-10 21:45:03 -04003531 /* Support for GSO partial features requires software
3532 * intervention before we can actually process the packets
3533 * so we need to strip support for any partial features now
3534 * and we can pull them back in after we have partially
3535 * segmented the frame.
3536 */
3537 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3538 features &= ~dev->gso_partial_features;
3539
3540 /* Make sure to clear the IPv4 ID mangling feature if the
3541 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003542 */
3543 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3544 struct iphdr *iph = skb->encapsulation ?
3545 inner_ip_hdr(skb) : ip_hdr(skb);
3546
3547 if (!(iph->frag_off & htons(IP_DF)))
3548 features &= ~NETIF_F_TSO_MANGLEID;
3549 }
3550
3551 return features;
3552}
3553
Florian Westphalc1e756b2014-05-05 15:00:44 +02003554netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003555{
Jesse Gross5f352272014-12-23 22:37:26 -08003556 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003557 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003558
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003559 if (skb_is_gso(skb))
3560 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003561
Jesse Gross5f352272014-12-23 22:37:26 -08003562 /* If encapsulation offload request, verify we are testing
3563 * hardware encapsulation features instead of standard
3564 * features for the netdev
3565 */
3566 if (skb->encapsulation)
3567 features &= dev->hw_enc_features;
3568
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003569 if (skb_vlan_tagged(skb))
3570 features = netdev_intersect_features(features,
3571 dev->vlan_features |
3572 NETIF_F_HW_VLAN_CTAG_TX |
3573 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003574
Jesse Gross5f352272014-12-23 22:37:26 -08003575 if (dev->netdev_ops->ndo_features_check)
3576 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3577 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003578 else
3579 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003580
Florian Westphalc1e756b2014-05-05 15:00:44 +02003581 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003582}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003583EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003584
David S. Miller2ea25512014-08-29 21:10:01 -07003585static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003586 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003587{
David S. Miller2ea25512014-08-29 21:10:01 -07003588 unsigned int len;
3589 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003590
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003591 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003592 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003593
David S. Miller2ea25512014-08-29 21:10:01 -07003594 len = skb->len;
Willy Tarreau37447412020-08-10 10:27:42 +02003595 PRANDOM_ADD_NOISE(skb, dev, txq, len + jiffies);
David S. Miller2ea25512014-08-29 21:10:01 -07003596 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003597 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003598 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003599
Patrick McHardy572a9d72009-11-10 06:14:14 +00003600 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003601}
David S. Miller2ea25512014-08-29 21:10:01 -07003602
David S. Miller8dcda222014-09-01 15:06:40 -07003603struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3604 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003605{
3606 struct sk_buff *skb = first;
3607 int rc = NETDEV_TX_OK;
3608
3609 while (skb) {
3610 struct sk_buff *next = skb->next;
3611
David S. Millera8305bf2018-07-29 20:42:53 -07003612 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003613 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003614 if (unlikely(!dev_xmit_complete(rc))) {
3615 skb->next = next;
3616 goto out;
3617 }
3618
3619 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003620 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003621 rc = NETDEV_TX_BUSY;
3622 break;
3623 }
3624 }
3625
3626out:
3627 *ret = rc;
3628 return skb;
3629}
3630
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003631static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3632 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003633{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003634 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003635 !vlan_hw_offload_capable(features, skb->vlan_proto))
3636 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003637 return skb;
3638}
3639
Davide Caratti43c26a12017-05-18 15:44:41 +02003640int skb_csum_hwoffload_help(struct sk_buff *skb,
3641 const netdev_features_t features)
3642{
Xin Longfa821172021-01-16 14:13:37 +08003643 if (unlikely(skb_csum_is_sctp(skb)))
Davide Caratti43c26a12017-05-18 15:44:41 +02003644 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3645 skb_crc32c_csum_help(skb);
3646
Xin Long62fafcd2021-01-28 17:18:31 +08003647 if (features & NETIF_F_HW_CSUM)
3648 return 0;
3649
3650 if (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
3651 switch (skb->csum_offset) {
3652 case offsetof(struct tcphdr, check):
3653 case offsetof(struct udphdr, check):
3654 return 0;
3655 }
3656 }
3657
3658 return skb_checksum_help(skb);
Davide Caratti43c26a12017-05-18 15:44:41 +02003659}
3660EXPORT_SYMBOL(skb_csum_hwoffload_help);
3661
Steffen Klassertf53c7232017-12-20 10:41:36 +01003662static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003663{
3664 netdev_features_t features;
3665
David S. Millereae3f882014-08-30 15:17:13 -07003666 features = netif_skb_features(skb);
3667 skb = validate_xmit_vlan(skb, features);
3668 if (unlikely(!skb))
3669 goto out_null;
3670
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003671 skb = sk_validate_xmit_skb(skb, dev);
3672 if (unlikely(!skb))
3673 goto out_null;
3674
Johannes Berg8b86a612015-04-17 15:45:04 +02003675 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003676 struct sk_buff *segs;
3677
3678 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003679 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003680 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003681 } else if (segs) {
3682 consume_skb(skb);
3683 skb = segs;
3684 }
David S. Millereae3f882014-08-30 15:17:13 -07003685 } else {
3686 if (skb_needs_linearize(skb, features) &&
3687 __skb_linearize(skb))
3688 goto out_kfree_skb;
3689
3690 /* If packet is not checksummed and device does not
3691 * support checksumming for this protocol, complete
3692 * checksumming here.
3693 */
3694 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3695 if (skb->encapsulation)
3696 skb_set_inner_transport_header(skb,
3697 skb_checksum_start_offset(skb));
3698 else
3699 skb_set_transport_header(skb,
3700 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003701 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003702 goto out_kfree_skb;
3703 }
3704 }
3705
Steffen Klassertf53c7232017-12-20 10:41:36 +01003706 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003707
David S. Millereae3f882014-08-30 15:17:13 -07003708 return skb;
3709
3710out_kfree_skb:
3711 kfree_skb(skb);
3712out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003713 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003714 return NULL;
3715}
3716
Steffen Klassertf53c7232017-12-20 10:41:36 +01003717struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003718{
3719 struct sk_buff *next, *head = NULL, *tail;
3720
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003721 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003722 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003723 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003724
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003725 /* in case skb wont be segmented, point to itself */
3726 skb->prev = skb;
3727
Steffen Klassertf53c7232017-12-20 10:41:36 +01003728 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003729 if (!skb)
3730 continue;
3731
3732 if (!head)
3733 head = skb;
3734 else
3735 tail->next = skb;
3736 /* If skb was segmented, skb->prev points to
3737 * the last segment. If not, it still contains skb.
3738 */
3739 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003740 }
3741 return head;
3742}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003743EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003744
Eric Dumazet1def9232013-01-10 12:36:42 +00003745static void qdisc_pkt_len_init(struct sk_buff *skb)
3746{
3747 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3748
3749 qdisc_skb_cb(skb)->pkt_len = skb->len;
3750
3751 /* To get more precise estimation of bytes sent on wire,
3752 * we add to pkt_len the headers size of all segments
3753 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003754 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003755 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003756 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003757
Eric Dumazet757b8b12013-01-15 21:14:21 -08003758 /* mac layer + network layer */
3759 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3760
3761 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003762 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3763 const struct tcphdr *th;
3764 struct tcphdr _tcphdr;
3765
3766 th = skb_header_pointer(skb, skb_transport_offset(skb),
3767 sizeof(_tcphdr), &_tcphdr);
3768 if (likely(th))
3769 hdr_len += __tcp_hdrlen(th);
3770 } else {
3771 struct udphdr _udphdr;
3772
3773 if (skb_header_pointer(skb, skb_transport_offset(skb),
3774 sizeof(_udphdr), &_udphdr))
3775 hdr_len += sizeof(struct udphdr);
3776 }
Jason Wang15e5a032013-03-25 20:19:59 +00003777
3778 if (shinfo->gso_type & SKB_GSO_DODGY)
3779 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3780 shinfo->gso_size);
3781
3782 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003783 }
3784}
3785
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003786static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3787 struct net_device *dev,
3788 struct netdev_queue *txq)
3789{
3790 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003791 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003792 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003793 int rc;
3794
Eric Dumazeta2da5702011-01-20 03:48:19 +00003795 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003796
3797 if (q->flags & TCQ_F_NOLOCK) {
Petr Machataac5c66f2020-07-14 20:03:08 +03003798 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni379349e2020-02-18 18:15:44 +01003799 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003800
3801 if (unlikely(to_free))
3802 kfree_skb_list(to_free);
3803 return rc;
3804 }
3805
Eric Dumazet79640a42010-06-02 05:09:29 -07003806 /*
3807 * Heuristic to force contended enqueues to serialize on a
3808 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003809 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003810 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003811 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003812 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003813 if (unlikely(contended))
3814 spin_lock(&q->busylock);
3815
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003816 spin_lock(root_lock);
3817 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003818 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003819 rc = NET_XMIT_DROP;
3820 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003821 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003822 /*
3823 * This is a work-conserving queue; there are no old skbs
3824 * waiting to be sent out; and the qdisc is not running -
3825 * xmit the skb directly.
3826 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003827
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003828 qdisc_bstats_update(q, skb);
3829
Eric Dumazet55a93b32014-10-03 15:31:07 -07003830 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003831 if (unlikely(contended)) {
3832 spin_unlock(&q->busylock);
3833 contended = false;
3834 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003835 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003836 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003837
John Fastabend6c148182017-12-07 09:54:06 -08003838 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003839 rc = NET_XMIT_SUCCESS;
3840 } else {
Petr Machataac5c66f2020-07-14 20:03:08 +03003841 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003842 if (qdisc_run_begin(q)) {
3843 if (unlikely(contended)) {
3844 spin_unlock(&q->busylock);
3845 contended = false;
3846 }
3847 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003848 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003849 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003850 }
3851 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003852 if (unlikely(to_free))
3853 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003854 if (unlikely(contended))
3855 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003856 return rc;
3857}
3858
Daniel Borkmann86f85152013-12-29 17:27:11 +01003859#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003860static void skb_update_prio(struct sk_buff *skb)
3861{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003862 const struct netprio_map *map;
3863 const struct sock *sk;
3864 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003865
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003866 if (skb->priority)
3867 return;
3868 map = rcu_dereference_bh(skb->dev->priomap);
3869 if (!map)
3870 return;
3871 sk = skb_to_full_sk(skb);
3872 if (!sk)
3873 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003874
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003875 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3876
3877 if (prioidx < map->priomap_len)
3878 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003879}
3880#else
3881#define skb_update_prio(skb)
3882#endif
3883
Dave Jonesd29f7492008-07-22 14:09:06 -07003884/**
Michel Machado95603e22012-06-12 10:16:35 +00003885 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003886 * @net: network namespace this loopback is happening in
3887 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003888 * @skb: buffer to transmit
3889 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003890int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003891{
3892 skb_reset_mac_header(skb);
3893 __skb_pull(skb, skb_network_offset(skb));
3894 skb->pkt_type = PACKET_LOOPBACK;
3895 skb->ip_summed = CHECKSUM_UNNECESSARY;
3896 WARN_ON(!skb_dst(skb));
3897 skb_dst_force(skb);
3898 netif_rx_ni(skb);
3899 return 0;
3900}
3901EXPORT_SYMBOL(dev_loopback_xmit);
3902
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003903#ifdef CONFIG_NET_EGRESS
3904static struct sk_buff *
3905sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3906{
Jiri Pirko46209402017-11-03 11:46:25 +01003907 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003908 struct tcf_result cl_res;
3909
Jiri Pirko46209402017-11-03 11:46:25 +01003910 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003911 return skb;
3912
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003913 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
wenxuaadaca92020-11-25 12:01:21 +08003914 qdisc_skb_cb(skb)->mru = 0;
wenxu7baf2422021-01-19 16:31:50 +08003915 qdisc_skb_cb(skb)->post_ct = false;
Jiri Pirko46209402017-11-03 11:46:25 +01003916 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003917
Jiri Pirko46209402017-11-03 11:46:25 +01003918 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003919 case TC_ACT_OK:
3920 case TC_ACT_RECLASSIFY:
3921 skb->tc_index = TC_H_MIN(cl_res.classid);
3922 break;
3923 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003924 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003925 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003926 kfree_skb(skb);
3927 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003928 case TC_ACT_STOLEN:
3929 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003930 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003931 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003932 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003933 return NULL;
3934 case TC_ACT_REDIRECT:
3935 /* No need to push/pop skb's mac_header here on egress! */
3936 skb_do_redirect(skb);
3937 *ret = NET_XMIT_SUCCESS;
3938 return NULL;
3939 default:
3940 break;
3941 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01003942
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003943 return skb;
3944}
3945#endif /* CONFIG_NET_EGRESS */
3946
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003947#ifdef CONFIG_XPS
3948static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3949 struct xps_dev_maps *dev_maps, unsigned int tci)
3950{
3951 struct xps_map *map;
3952 int queue_index = -1;
3953
3954 if (dev->num_tc) {
3955 tci *= dev->num_tc;
3956 tci += netdev_get_prio_tc_map(dev, skb->priority);
3957 }
3958
3959 map = rcu_dereference(dev_maps->attr_map[tci]);
3960 if (map) {
3961 if (map->len == 1)
3962 queue_index = map->queues[0];
3963 else
3964 queue_index = map->queues[reciprocal_scale(
3965 skb_get_hash(skb), map->len)];
3966 if (unlikely(queue_index >= dev->real_num_tx_queues))
3967 queue_index = -1;
3968 }
3969 return queue_index;
3970}
3971#endif
3972
Alexander Duyckeadec8772018-07-09 12:19:48 -04003973static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3974 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003975{
3976#ifdef CONFIG_XPS
3977 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003978 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003979 int queue_index = -1;
3980
Amritha Nambiar04157462018-06-29 21:26:46 -07003981 if (!static_key_false(&xps_needed))
3982 return -1;
3983
Jiri Pirko638b2a62015-05-12 14:56:13 +02003984 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003985 if (!static_key_false(&xps_rxqs_needed))
3986 goto get_cpus_map;
3987
Alexander Duyckeadec8772018-07-09 12:19:48 -04003988 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003989 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003990 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003991
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003992 if (tci >= 0 && tci < dev->num_rx_queues)
3993 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3994 tci);
3995 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003996
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003997get_cpus_map:
3998 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003999 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07004000 if (dev_maps) {
4001 unsigned int tci = skb->sender_cpu - 1;
4002
4003 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4004 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004005 }
4006 }
4007 rcu_read_unlock();
4008
4009 return queue_index;
4010#else
4011 return -1;
4012#endif
4013}
4014
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004015u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01004016 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004017{
4018 return 0;
4019}
4020EXPORT_SYMBOL(dev_pick_tx_zero);
4021
4022u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01004023 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04004024{
4025 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
4026}
4027EXPORT_SYMBOL(dev_pick_tx_cpu_id);
4028
Paolo Abenib71b5832019-03-20 11:02:05 +01004029u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
4030 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004031{
4032 struct sock *sk = skb->sk;
4033 int queue_index = sk_tx_queue_get(sk);
4034
Alexander Duyckeadec8772018-07-09 12:19:48 -04004035 sb_dev = sb_dev ? : dev;
4036
Jiri Pirko638b2a62015-05-12 14:56:13 +02004037 if (queue_index < 0 || skb->ooo_okay ||
4038 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04004039 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11004040
Jiri Pirko638b2a62015-05-12 14:56:13 +02004041 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04004042 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004043
4044 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07004045 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02004046 rcu_access_pointer(sk->sk_dst_cache))
4047 sk_tx_queue_set(sk, new_index);
4048
4049 queue_index = new_index;
4050 }
4051
4052 return queue_index;
4053}
Paolo Abenib71b5832019-03-20 11:02:05 +01004054EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004055
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004056struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4057 struct sk_buff *skb,
4058 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004059{
4060 int queue_index = 0;
4061
4062#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08004063 u32 sender_cpu = skb->sender_cpu - 1;
4064
4065 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004066 skb->sender_cpu = raw_smp_processor_id() + 1;
4067#endif
4068
4069 if (dev->real_num_tx_queues != 1) {
4070 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11004071
Jiri Pirko638b2a62015-05-12 14:56:13 +02004072 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01004073 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004074 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004075 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004076
Alexander Duyckd5845272017-11-22 10:57:41 -08004077 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004078 }
4079
4080 skb_set_queue_mapping(skb, queue_index);
4081 return netdev_get_tx_queue(dev, queue_index);
4082}
4083
Michel Machado95603e22012-06-12 10:16:35 +00004084/**
Jason Wang9d08dd32014-01-20 11:25:13 +08004085 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07004086 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04004087 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07004088 *
4089 * Queue a buffer for transmission to a network device. The caller must
4090 * have set the device and priority and built the buffer before calling
4091 * this function. The function can be called from an interrupt.
4092 *
4093 * A negative errno code is returned on a failure. A success does not
4094 * guarantee the frame will be transmitted as it may be dropped due
4095 * to congestion or traffic shaping.
4096 *
4097 * -----------------------------------------------------------------------------------
4098 * I notice this method can also return errors from the queue disciplines,
4099 * including NET_XMIT_DROP, which is a positive value. So, errors can also
4100 * be positive.
4101 *
4102 * Regardless of the return value, the skb is consumed, so it is currently
4103 * difficult to retry a send to this method. (You can bump the ref count
4104 * before sending to hold a reference for retry if you are careful.)
4105 *
4106 * When calling this method, interrupts MUST be enabled. This is because
4107 * the BH enable code must have IRQs enabled so that it will not deadlock.
4108 * --BLG
4109 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04004110static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111{
4112 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07004113 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 struct Qdisc *q;
4115 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01004116 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00004118 skb_reset_mac_header(skb);
4119
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004120 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
Yousuk Seunge7ed11e2021-01-20 12:41:55 -08004121 __skb_tstamp_tx(skb, NULL, NULL, skb->sk, SCM_TSTAMP_SCHED);
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004122
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004123 /* Disable soft irqs for various locks below. Also
4124 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004126 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Neil Horman5bc14212011-11-22 05:10:51 +00004128 skb_update_prio(skb);
4129
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004130 qdisc_pkt_len_init(skb);
4131#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004132 skb->tc_at_ingress = 0;
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004133# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004134 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004135 skb = sch_handle_egress(skb, &rc, dev);
4136 if (!skb)
4137 goto out;
4138 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004139# endif
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004140#endif
Eric Dumazet02875872014-10-05 18:38:35 -07004141 /* If device/qdisc don't need skb->dst, release it right now while
4142 * its hot in this cpu cache.
4143 */
4144 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4145 skb_dst_drop(skb);
4146 else
4147 skb_dst_force(skb);
4148
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004149 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08004150 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07004151
Koki Sanagicf66ba52010-08-23 18:45:02 +09004152 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00004154 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07004155 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157
4158 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11004159 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
tchardingeb13da12017-02-09 17:56:06 +11004161 * Really, it is unlikely that netif_tx_lock protection is necessary
4162 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
4163 * counters.)
4164 * However, it is possible, that they rely on protection
4165 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166
tchardingeb13da12017-02-09 17:56:06 +11004167 * Check this and shot the lock. It is not prone from deadlocks.
4168 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 */
4170 if (dev->flags & IFF_UP) {
4171 int cpu = smp_processor_id(); /* ok because BHs are off */
4172
David S. Millerc773e842008-07-08 23:13:53 -07004173 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004174 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07004175 goto recursion_alert;
4176
Steffen Klassertf53c7232017-12-20 10:41:36 +01004177 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004178 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07004179 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004180
Willy Tarreau37447412020-08-10 10:27:42 +02004181 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
David S. Millerc773e842008-07-08 23:13:53 -07004182 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Tom Herbert734664982011-11-28 16:32:44 +00004184 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004185 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07004186 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02004187 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00004188 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07004189 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 goto out;
4191 }
4192 }
David S. Millerc773e842008-07-08 23:13:53 -07004193 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00004194 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4195 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 } else {
4197 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07004198 * unfortunately
4199 */
4200recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00004201 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4202 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 }
4204 }
4205
4206 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07004207 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
Eric Dumazet015f0682014-03-27 08:45:56 -07004209 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004210 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 return rc;
4212out:
Herbert Xud4828d82006-06-22 02:28:18 -07004213 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 return rc;
4215}
Jason Wangf663dd92014-01-10 16:18:26 +08004216
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004217int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08004218{
4219 return __dev_queue_xmit(skb, NULL);
4220}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004221EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Alexander Duyckeadec8772018-07-09 12:19:48 -04004223int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08004224{
Alexander Duyckeadec8772018-07-09 12:19:48 -04004225 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08004226}
4227EXPORT_SYMBOL(dev_queue_xmit_accel);
4228
Björn Töpel36ccdf82020-11-23 18:56:00 +01004229int __dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004230{
4231 struct net_device *dev = skb->dev;
4232 struct sk_buff *orig_skb = skb;
4233 struct netdev_queue *txq;
4234 int ret = NETDEV_TX_BUSY;
4235 bool again = false;
4236
4237 if (unlikely(!netif_running(dev) ||
4238 !netif_carrier_ok(dev)))
4239 goto drop;
4240
4241 skb = validate_xmit_skb_list(skb, dev, &again);
4242 if (skb != orig_skb)
4243 goto drop;
4244
4245 skb_set_queue_mapping(skb, queue_id);
4246 txq = skb_get_tx_queue(dev, skb);
Willy Tarreau37447412020-08-10 10:27:42 +02004247 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004248
4249 local_bh_disable();
4250
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004251 dev_xmit_recursion_inc();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004252 HARD_TX_LOCK(dev, txq, smp_processor_id());
4253 if (!netif_xmit_frozen_or_drv_stopped(txq))
4254 ret = netdev_start_xmit(skb, dev, txq, false);
4255 HARD_TX_UNLOCK(dev, txq);
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004256 dev_xmit_recursion_dec();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004257
4258 local_bh_enable();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004259 return ret;
4260drop:
4261 atomic_long_inc(&dev->tx_dropped);
4262 kfree_skb_list(skb);
4263 return NET_XMIT_DROP;
4264}
Björn Töpel36ccdf82020-11-23 18:56:00 +01004265EXPORT_SYMBOL(__dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266
tchardingeb13da12017-02-09 17:56:06 +11004267/*************************************************************************
4268 * Receiver routines
4269 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004271int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00004272EXPORT_SYMBOL(netdev_max_backlog);
4273
Eric Dumazet3b098e22010-05-15 23:57:10 -07004274int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004275int netdev_budget __read_mostly = 300;
Konstantin Khlebnikova48379802020-04-06 14:39:32 +03004276/* Must be at least 2 jiffes to guarantee 1 jiffy timeout */
4277unsigned int __read_mostly netdev_budget_usecs = 2 * USEC_PER_SEC / HZ;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01004278int weight_p __read_mostly = 64; /* old backlog weight */
4279int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4280int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4281int dev_rx_weight __read_mostly = 64;
4282int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01004283/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4284int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004286/* Called with irq disabled */
4287static inline void ____napi_schedule(struct softnet_data *sd,
4288 struct napi_struct *napi)
4289{
Wei Wang29863d42021-02-08 11:34:09 -08004290 struct task_struct *thread;
4291
4292 if (test_bit(NAPI_STATE_THREADED, &napi->state)) {
4293 /* Paired with smp_mb__before_atomic() in
Wei Wang5fdd2f02021-02-08 11:34:10 -08004294 * napi_enable()/dev_set_threaded().
4295 * Use READ_ONCE() to guarantee a complete
4296 * read on napi->thread. Only call
Wei Wang29863d42021-02-08 11:34:09 -08004297 * wake_up_process() when it's not NULL.
4298 */
4299 thread = READ_ONCE(napi->thread);
4300 if (thread) {
4301 wake_up_process(thread);
4302 return;
4303 }
4304 }
4305
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004306 list_add_tail(&napi->poll_list, &sd->poll_list);
4307 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4308}
4309
Eric Dumazetdf334542010-03-24 19:13:54 +00004310#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07004311
4312/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00004313struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07004314EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004315u32 rps_cpu_mask __read_mostly;
4316EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07004317
Eric Dumazetdc053602019-03-22 08:56:38 -07004318struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04004319EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07004320struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08004321EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00004322
Ben Hutchingsc4454772011-01-19 11:03:53 +00004323static struct rps_dev_flow *
4324set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4325 struct rps_dev_flow *rflow, u16 next_cpu)
4326{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004327 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004328#ifdef CONFIG_RFS_ACCEL
4329 struct netdev_rx_queue *rxqueue;
4330 struct rps_dev_flow_table *flow_table;
4331 struct rps_dev_flow *old_rflow;
4332 u32 flow_id;
4333 u16 rxq_index;
4334 int rc;
4335
4336 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004337 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4338 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004339 goto out;
4340 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4341 if (rxq_index == skb_get_rx_queue(skb))
4342 goto out;
4343
4344 rxqueue = dev->_rx + rxq_index;
4345 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4346 if (!flow_table)
4347 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004348 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004349 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4350 rxq_index, flow_id);
4351 if (rc < 0)
4352 goto out;
4353 old_rflow = rflow;
4354 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004355 rflow->filter = rc;
4356 if (old_rflow->filter == rflow->filter)
4357 old_rflow->filter = RPS_NO_FILTER;
4358 out:
4359#endif
4360 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004361 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004362 }
4363
Ben Hutchings09994d12011-10-03 04:42:46 +00004364 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004365 return rflow;
4366}
4367
Tom Herbert0a9627f2010-03-16 08:03:29 +00004368/*
4369 * get_rps_cpu is called from netif_receive_skb and returns the target
4370 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004371 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004372 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004373static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4374 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004375{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004376 const struct rps_sock_flow_table *sock_flow_table;
4377 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004378 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004379 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004380 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004381 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004382 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004383
Tom Herbert0a9627f2010-03-16 08:03:29 +00004384 if (skb_rx_queue_recorded(skb)) {
4385 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004386
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004387 if (unlikely(index >= dev->real_num_rx_queues)) {
4388 WARN_ONCE(dev->real_num_rx_queues > 1,
4389 "%s received packet on queue %u, but number "
4390 "of RX queues is %u\n",
4391 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004392 goto done;
4393 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004394 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004395 }
4396
Eric Dumazet567e4b72015-02-06 12:59:01 -08004397 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4398
4399 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4400 map = rcu_dereference(rxqueue->rps_map);
4401 if (!flow_table && !map)
4402 goto done;
4403
Changli Gao2d47b452010-08-17 19:00:56 +00004404 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004405 hash = skb_get_hash(skb);
4406 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004407 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004408
Tom Herbertfec5e652010-04-16 16:01:27 -07004409 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4410 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004411 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004412 u32 next_cpu;
4413 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004414
Eric Dumazet567e4b72015-02-06 12:59:01 -08004415 /* First check into global flow table if there is a match */
4416 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4417 if ((ident ^ hash) & ~rps_cpu_mask)
4418 goto try_rps;
4419
4420 next_cpu = ident & rps_cpu_mask;
4421
4422 /* OK, now we know there is a match,
4423 * we can look at the local (per receive queue) flow table
4424 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004425 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004426 tcpu = rflow->cpu;
4427
Tom Herbertfec5e652010-04-16 16:01:27 -07004428 /*
4429 * If the desired CPU (where last recvmsg was done) is
4430 * different from current CPU (one in the rx-queue flow
4431 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004432 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004433 * - Current CPU is offline.
4434 * - The current CPU's queue tail has advanced beyond the
4435 * last packet that was enqueued using this table entry.
4436 * This guarantees that all previous packets for the flow
4437 * have been dequeued, thus preserving in order delivery.
4438 */
4439 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004440 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004441 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004442 rflow->last_qtail)) >= 0)) {
4443 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004444 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004445 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004446
Eric Dumazeta31196b2015-04-25 09:35:24 -07004447 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004448 *rflowp = rflow;
4449 cpu = tcpu;
4450 goto done;
4451 }
4452 }
4453
Eric Dumazet567e4b72015-02-06 12:59:01 -08004454try_rps:
4455
Tom Herbert0a9627f2010-03-16 08:03:29 +00004456 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004457 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004458 if (cpu_online(tcpu)) {
4459 cpu = tcpu;
4460 goto done;
4461 }
4462 }
4463
4464done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004465 return cpu;
4466}
4467
Ben Hutchingsc4454772011-01-19 11:03:53 +00004468#ifdef CONFIG_RFS_ACCEL
4469
4470/**
4471 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4472 * @dev: Device on which the filter was set
4473 * @rxq_index: RX queue index
4474 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4475 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4476 *
4477 * Drivers that implement ndo_rx_flow_steer() should periodically call
4478 * this function for each installed filter and remove the filters for
4479 * which it returns %true.
4480 */
4481bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4482 u32 flow_id, u16 filter_id)
4483{
4484 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4485 struct rps_dev_flow_table *flow_table;
4486 struct rps_dev_flow *rflow;
4487 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004488 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004489
4490 rcu_read_lock();
4491 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4492 if (flow_table && flow_id <= flow_table->mask) {
4493 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004494 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004495 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004496 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4497 rflow->last_qtail) <
4498 (int)(10 * flow_table->mask)))
4499 expire = false;
4500 }
4501 rcu_read_unlock();
4502 return expire;
4503}
4504EXPORT_SYMBOL(rps_may_expire_flow);
4505
4506#endif /* CONFIG_RFS_ACCEL */
4507
Tom Herbert0a9627f2010-03-16 08:03:29 +00004508/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004509static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004510{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004511 struct softnet_data *sd = data;
4512
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004513 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004514 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004515}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004516
Tom Herbertfec5e652010-04-16 16:01:27 -07004517#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004518
4519/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004520 * Check if this softnet_data structure is another cpu one
4521 * If yes, queue it to our IPI list and return 1
4522 * If no, return 0
4523 */
4524static int rps_ipi_queued(struct softnet_data *sd)
4525{
4526#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004527 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004528
4529 if (sd != mysd) {
4530 sd->rps_ipi_next = mysd->rps_ipi_list;
4531 mysd->rps_ipi_list = sd;
4532
4533 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4534 return 1;
4535 }
4536#endif /* CONFIG_RPS */
4537 return 0;
4538}
4539
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004540#ifdef CONFIG_NET_FLOW_LIMIT
4541int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4542#endif
4543
4544static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4545{
4546#ifdef CONFIG_NET_FLOW_LIMIT
4547 struct sd_flow_limit *fl;
4548 struct softnet_data *sd;
4549 unsigned int old_flow, new_flow;
4550
4551 if (qlen < (netdev_max_backlog >> 1))
4552 return false;
4553
Christoph Lameter903ceff2014-08-17 12:30:35 -05004554 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004555
4556 rcu_read_lock();
4557 fl = rcu_dereference(sd->flow_limit);
4558 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004559 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004560 old_flow = fl->history[fl->history_head];
4561 fl->history[fl->history_head] = new_flow;
4562
4563 fl->history_head++;
4564 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4565
4566 if (likely(fl->buckets[old_flow]))
4567 fl->buckets[old_flow]--;
4568
4569 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4570 fl->count++;
4571 rcu_read_unlock();
4572 return true;
4573 }
4574 }
4575 rcu_read_unlock();
4576#endif
4577 return false;
4578}
4579
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004580/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004581 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4582 * queue (may be a remote CPU queue).
4583 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004584static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4585 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004586{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004587 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004588 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004589 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004590
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004591 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004592
4593 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004594
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004595 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004596 if (!netif_running(skb->dev))
4597 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004598 qlen = skb_queue_len(&sd->input_pkt_queue);
4599 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004600 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004601enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004602 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004603 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004604 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004605 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004606 return NET_RX_SUCCESS;
4607 }
4608
Eric Dumazetebda37c22010-05-06 23:51:21 +00004609 /* Schedule NAPI for backlog device
4610 * We can use non atomic operation since we own the queue lock
4611 */
4612 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004613 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004614 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004615 }
4616 goto enqueue;
4617 }
4618
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004619drop:
Changli Gaodee42872010-05-02 05:42:16 +00004620 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004621 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004622
Tom Herbert0a9627f2010-03-16 08:03:29 +00004623 local_irq_restore(flags);
4624
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004625 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004626 kfree_skb(skb);
4627 return NET_RX_DROP;
4628}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004630static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4631{
4632 struct net_device *dev = skb->dev;
4633 struct netdev_rx_queue *rxqueue;
4634
4635 rxqueue = dev->_rx;
4636
4637 if (skb_rx_queue_recorded(skb)) {
4638 u16 index = skb_get_rx_queue(skb);
4639
4640 if (unlikely(index >= dev->real_num_rx_queues)) {
4641 WARN_ONCE(dev->real_num_rx_queues > 1,
4642 "%s received packet on queue %u, but number "
4643 "of RX queues is %u\n",
4644 dev->name, index, dev->real_num_rx_queues);
4645
4646 return rxqueue; /* Return first rxqueue */
4647 }
4648 rxqueue += index;
4649 }
4650 return rxqueue;
4651}
4652
John Fastabendd4455162017-07-17 09:26:45 -07004653static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004654 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004655 struct bpf_prog *xdp_prog)
4656{
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004657 void *orig_data, *orig_data_end, *hard_start;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004658 struct netdev_rx_queue *rxqueue;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004659 u32 metalen, act = XDP_DROP;
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01004660 u32 mac_len, frame_sz;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004661 __be16 orig_eth_type;
4662 struct ethhdr *eth;
4663 bool orig_bcast;
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004664 int off;
John Fastabendd4455162017-07-17 09:26:45 -07004665
4666 /* Reinjected packets coming from act_mirred or similar should
4667 * not get XDP generic processing.
4668 */
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01004669 if (skb_is_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004670 return XDP_PASS;
4671
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004672 /* XDP packets must be linear and must have sufficient headroom
4673 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4674 * native XDP provides, thus we need to do it here as well.
4675 */
Toke Høiland-Jørgensenad1e03b2020-02-10 17:10:46 +01004676 if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004677 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4678 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4679 int troom = skb->tail + skb->data_len - skb->end;
4680
4681 /* In case we have to go down the path and also linearize,
4682 * then lets do the pskb_expand_head() work just once here.
4683 */
4684 if (pskb_expand_head(skb,
4685 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4686 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4687 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004688 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004689 goto do_drop;
4690 }
John Fastabendd4455162017-07-17 09:26:45 -07004691
4692 /* The XDP program wants to see the packet starting at the MAC
4693 * header.
4694 */
4695 mac_len = skb->data - skb_mac_header(skb);
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004696 hard_start = skb->data - skb_headroom(skb);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004697
4698 /* SKB "head" area always have tailroom for skb_shared_info */
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004699 frame_sz = (void *)skb_end_pointer(skb) - hard_start;
Lorenzo Bianconi43b51692020-12-22 22:09:28 +01004700 frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004701
Lorenzo Bianconibe9df4a2020-12-22 22:09:29 +01004702 rxqueue = netif_get_rxqueue(skb);
4703 xdp_init_buff(xdp, frame_sz, &rxqueue->xdp_rxq);
4704 xdp_prepare_buff(xdp, hard_start, skb_headroom(skb) - mac_len,
4705 skb_headlen(skb) + mac_len, true);
Björn Töpel02671e22018-05-02 13:01:30 +02004706
4707 orig_data_end = xdp->data_end;
4708 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004709 eth = (struct ethhdr *)xdp->data;
4710 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4711 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004712
Björn Töpel02671e22018-05-02 13:01:30 +02004713 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004714
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004715 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004716 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004717 if (off) {
4718 if (off > 0)
4719 __skb_pull(skb, off);
4720 else if (off < 0)
4721 __skb_push(skb, -off);
4722
4723 skb->mac_header += off;
4724 skb_reset_network_header(skb);
4725 }
John Fastabendd4455162017-07-17 09:26:45 -07004726
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004727 /* check if bpf_xdp_adjust_tail was used */
4728 off = xdp->data_end - orig_data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004729 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004730 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004731 skb->len += off; /* positive on grow, negative on shrink */
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004732 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004733
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004734 /* check if XDP changed eth hdr such SKB needs update */
4735 eth = (struct ethhdr *)xdp->data;
4736 if ((orig_eth_type != eth->h_proto) ||
4737 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4738 __skb_push(skb, ETH_HLEN);
4739 skb->protocol = eth_type_trans(skb, skb->dev);
4740 }
4741
John Fastabendd4455162017-07-17 09:26:45 -07004742 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004743 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004744 case XDP_TX:
4745 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004746 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004747 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004748 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004749 if (metalen)
4750 skb_metadata_set(skb, metalen);
4751 break;
John Fastabendd4455162017-07-17 09:26:45 -07004752 default:
4753 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004754 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004755 case XDP_ABORTED:
4756 trace_xdp_exception(skb->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004757 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004758 case XDP_DROP:
4759 do_drop:
4760 kfree_skb(skb);
4761 break;
4762 }
4763
4764 return act;
4765}
4766
4767/* When doing generic XDP we have to bypass the qdisc layer and the
4768 * network taps in order to match in-driver-XDP behavior.
4769 */
Jason Wang7c497472017-08-11 19:41:17 +08004770void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004771{
4772 struct net_device *dev = skb->dev;
4773 struct netdev_queue *txq;
4774 bool free_skb = true;
4775 int cpu, rc;
4776
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004777 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004778 cpu = smp_processor_id();
4779 HARD_TX_LOCK(dev, txq, cpu);
4780 if (!netif_xmit_stopped(txq)) {
4781 rc = netdev_start_xmit(skb, dev, txq, 0);
4782 if (dev_xmit_complete(rc))
4783 free_skb = false;
4784 }
4785 HARD_TX_UNLOCK(dev, txq);
4786 if (free_skb) {
4787 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4788 kfree_skb(skb);
4789 }
4790}
4791
Davidlohr Bueso02786472018-05-08 09:07:02 -07004792static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004793
Jason Wang7c497472017-08-11 19:41:17 +08004794int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004795{
John Fastabendd4455162017-07-17 09:26:45 -07004796 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004797 struct xdp_buff xdp;
4798 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004799 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004800
Björn Töpel02671e22018-05-02 13:01:30 +02004801 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004802 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004803 switch (act) {
4804 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004805 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004806 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004807 if (err)
4808 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004809 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004810 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004811 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004812 break;
4813 }
John Fastabendd4455162017-07-17 09:26:45 -07004814 return XDP_DROP;
4815 }
4816 }
4817 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004818out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004819 kfree_skb(skb);
4820 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004821}
Jason Wang7c497472017-08-11 19:41:17 +08004822EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004823
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004824static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004826 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Eric Dumazet588f0332011-11-15 04:12:55 +00004828 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829
Koki Sanagicf66ba52010-08-23 18:45:02 +09004830 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004831
Eric Dumazetdf334542010-03-24 19:13:54 +00004832#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004833 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004834 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004835 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836
Changli Gaocece1942010-08-07 20:35:43 -07004837 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004838 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004839
4840 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004841 if (cpu < 0)
4842 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004843
4844 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4845
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004846 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004847 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004848 } else
4849#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004850 {
4851 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004852
Tom Herbertfec5e652010-04-16 16:01:27 -07004853 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4854 put_cpu();
4855 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004856 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004858
4859/**
4860 * netif_rx - post buffer to the network code
4861 * @skb: buffer to post
4862 *
4863 * This function receives a packet from a device driver and queues it for
4864 * the upper (protocol) levels to process. It always succeeds. The buffer
4865 * may be dropped during processing for congestion control or by the
4866 * protocol layers.
4867 *
4868 * return values:
4869 * NET_RX_SUCCESS (no congestion)
4870 * NET_RX_DROP (packet was dropped)
4871 *
4872 */
4873
4874int netif_rx(struct sk_buff *skb)
4875{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004876 int ret;
4877
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004878 trace_netif_rx_entry(skb);
4879
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004880 ret = netif_rx_internal(skb);
4881 trace_netif_rx_exit(ret);
4882
4883 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004884}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004885EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886
4887int netif_rx_ni(struct sk_buff *skb)
4888{
4889 int err;
4890
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004891 trace_netif_rx_ni_entry(skb);
4892
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004894 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 if (local_softirq_pending())
4896 do_softirq();
4897 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004898 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899
4900 return err;
4901}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902EXPORT_SYMBOL(netif_rx_ni);
4903
Sebastian Andrzej Siewiorc11171a2020-09-29 22:25:12 +02004904int netif_rx_any_context(struct sk_buff *skb)
4905{
4906 /*
4907 * If invoked from contexts which do not invoke bottom half
4908 * processing either at return from interrupt or when softrqs are
4909 * reenabled, use netif_rx_ni() which invokes bottomhalf processing
4910 * directly.
4911 */
4912 if (in_interrupt())
4913 return netif_rx(skb);
4914 else
4915 return netif_rx_ni(skb);
4916}
4917EXPORT_SYMBOL(netif_rx_any_context);
4918
Emese Revfy0766f782016-06-20 20:42:34 +02004919static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004921 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
4923 if (sd->completion_queue) {
4924 struct sk_buff *clist;
4925
4926 local_irq_disable();
4927 clist = sd->completion_queue;
4928 sd->completion_queue = NULL;
4929 local_irq_enable();
4930
4931 while (clist) {
4932 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004933
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 clist = clist->next;
4935
Reshetova, Elena63354792017-06-30 13:07:58 +03004936 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004937 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4938 trace_consume_skb(skb);
4939 else
4940 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004941
4942 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4943 __kfree_skb(skb);
4944 else
4945 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 }
4947 }
4948
4949 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004950 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
4952 local_irq_disable();
4953 head = sd->output_queue;
4954 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004955 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 local_irq_enable();
4957
4958 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004959 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004960 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004961
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 head = head->next_sched;
4963
John Fastabend6b3ba912017-12-07 09:54:25 -08004964 if (!(q->flags & TCQ_F_NOLOCK)) {
4965 root_lock = qdisc_lock(q);
4966 spin_lock(root_lock);
4967 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004968 /* We need to make sure head->next_sched is read
4969 * before clearing __QDISC_STATE_SCHED
4970 */
4971 smp_mb__before_atomic();
4972 clear_bit(__QDISC_STATE_SCHED, &q->state);
4973 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004974 if (root_lock)
4975 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 }
4977 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004978
4979 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980}
4981
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004982#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004983/* This hook is defined here for ATM LANE */
4984int (*br_fdb_test_addr_hook)(struct net_device *dev,
4985 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004986EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004987#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004989static inline struct sk_buff *
4990sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004991 struct net_device *orig_dev, bool *another)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004992{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004993#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004994 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004995 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004996
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004997 /* If there's at least one ingress present somewhere (so
4998 * we get here via enabled static key), remaining devices
4999 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005000 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005001 */
Jiri Pirko46209402017-11-03 11:46:25 +01005002 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02005003 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01005004
Herbert Xuf697c3e2007-10-14 00:38:47 -07005005 if (*pt_prev) {
5006 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5007 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07005008 }
5009
Florian Westphal33654952015-05-14 00:36:28 +02005010 qdisc_skb_cb(skb)->pkt_len = skb->len;
wenxuaadaca92020-11-25 12:01:21 +08005011 qdisc_skb_cb(skb)->mru = 0;
wenxu7baf2422021-01-19 16:31:50 +08005012 qdisc_skb_cb(skb)->post_ct = false;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05005013 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01005014 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02005015
Paul Blakey7d17c542020-02-16 12:01:22 +02005016 switch (tcf_classify_ingress(skb, miniq->block, miniq->filter_list,
5017 &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005018 case TC_ACT_OK:
5019 case TC_ACT_RECLASSIFY:
5020 skb->tc_index = TC_H_MIN(cl_res.classid);
5021 break;
5022 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01005023 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07005024 kfree_skb(skb);
5025 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005026 case TC_ACT_STOLEN:
5027 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02005028 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07005029 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005030 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07005031 case TC_ACT_REDIRECT:
5032 /* skb_mac_header check was done by cls/act_bpf, so
5033 * we can safely push the L2 header back before
5034 * redirecting to another netdev
5035 */
5036 __skb_push(skb, skb->mac_len);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005037 if (skb_do_redirect(skb) == -EAGAIN) {
5038 __skb_pull(skb, skb->mac_len);
5039 *another = true;
5040 break;
5041 }
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07005042 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01005043 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02005044 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02005045 default:
5046 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07005047 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02005048#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07005049 return skb;
5050}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005052/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07005053 * netdev_is_rx_handler_busy - check if receive handler is registered
5054 * @dev: device to check
5055 *
5056 * Check if a receive handler is already registered for a given device.
5057 * Return true if there one.
5058 *
5059 * The caller must hold the rtnl_mutex.
5060 */
5061bool netdev_is_rx_handler_busy(struct net_device *dev)
5062{
5063 ASSERT_RTNL();
5064 return dev && rtnl_dereference(dev->rx_handler);
5065}
5066EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5067
5068/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005069 * netdev_rx_handler_register - register receive handler
5070 * @dev: device to register a handler for
5071 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00005072 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005073 *
Masanari Iidae2278672014-02-18 22:54:36 +09005074 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005075 * called from __netif_receive_skb. A negative errno code is returned
5076 * on a failure.
5077 *
5078 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005079 *
5080 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005081 */
5082int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00005083 rx_handler_func_t *rx_handler,
5084 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005085{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08005086 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005087 return -EBUSY;
5088
Paolo Abenif54262502018-03-09 10:39:24 +01005089 if (dev->priv_flags & IFF_NO_RX_HANDLER)
5090 return -EINVAL;
5091
Eric Dumazet00cfec32013-03-29 03:01:22 +00005092 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00005093 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005094 rcu_assign_pointer(dev->rx_handler, rx_handler);
5095
5096 return 0;
5097}
5098EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5099
5100/**
5101 * netdev_rx_handler_unregister - unregister receive handler
5102 * @dev: device to unregister a handler from
5103 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00005104 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005105 *
5106 * The caller must hold the rtnl_mutex.
5107 */
5108void netdev_rx_handler_unregister(struct net_device *dev)
5109{
5110
5111 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005112 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00005113 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5114 * section has a guarantee to see a non NULL rx_handler_data
5115 * as well.
5116 */
5117 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005118 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005119}
5120EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5121
Mel Gormanb4b9e352012-07-31 16:44:26 -07005122/*
5123 * Limit the use of PFMEMALLOC reserves to those protocols that implement
5124 * the special handling of PFMEMALLOC skbs.
5125 */
5126static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5127{
5128 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07005129 case htons(ETH_P_ARP):
5130 case htons(ETH_P_IP):
5131 case htons(ETH_P_IPV6):
5132 case htons(ETH_P_8021Q):
5133 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07005134 return true;
5135 default:
5136 return false;
5137 }
5138}
5139
Pablo Neirae687ad62015-05-13 18:19:38 +02005140static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5141 int *ret, struct net_device *orig_dev)
5142{
5143 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04005144 int ingress_retval;
5145
Pablo Neirae687ad62015-05-13 18:19:38 +02005146 if (*pt_prev) {
5147 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5148 *pt_prev = NULL;
5149 }
5150
Aaron Conole2c1e2702016-09-21 11:35:03 -04005151 rcu_read_lock();
5152 ingress_retval = nf_hook_ingress(skb);
5153 rcu_read_unlock();
5154 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02005155 }
5156 return 0;
5157}
Pablo Neirae687ad62015-05-13 18:19:38 +02005158
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005159static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
Edward Cree88eb1942018-07-02 16:13:56 +01005160 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161{
5162 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005163 rx_handler_func_t *rx_handler;
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005164 struct sk_buff *skb = *pskb;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07005165 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005166 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08005168 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
Eric Dumazet588f0332011-11-15 04:12:55 +00005170 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07005171
Koki Sanagicf66ba52010-08-23 18:45:02 +09005172 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08005173
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07005174 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00005175
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07005176 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00005177 if (!skb_transport_header_was_set(skb))
5178 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00005179 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005180
5181 pt_prev = NULL;
5182
David S. Miller63d8ea72011-02-28 10:48:59 -08005183another_round:
David S. Millerb6858172012-07-23 16:27:54 -07005184 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08005185
5186 __this_cpu_inc(softnet_data.processed);
5187
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005188 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5189 int ret2;
5190
5191 preempt_disable();
5192 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5193 preempt_enable();
5194
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005195 if (ret2 != XDP_PASS) {
5196 ret = NET_RX_DROP;
5197 goto out;
5198 }
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005199 skb_reset_mac_len(skb);
5200 }
5201
Menglong Dong324cefa2021-01-11 02:42:21 -08005202 if (eth_type_vlan(skb->protocol)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04005203 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005204 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005205 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005206 }
5207
Willem de Bruijne7246e12017-01-07 17:06:35 -05005208 if (skb_skip_tc_classify(skb))
5209 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210
David S. Miller9754e292013-02-14 15:57:38 -05005211 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07005212 goto skip_taps;
5213
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08005215 if (pt_prev)
5216 ret = deliver_skb(skb, pt_prev, orig_dev);
5217 pt_prev = ptype;
5218 }
5219
5220 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5221 if (pt_prev)
5222 ret = deliver_skb(skb, pt_prev, orig_dev);
5223 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 }
5225
Mel Gormanb4b9e352012-07-31 16:44:26 -07005226skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02005227#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07005228 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005229 bool another = false;
5230
5231 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
5232 &another);
5233 if (another)
5234 goto another_round;
Daniel Borkmann45771392015-04-10 23:07:54 +02005235 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005236 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02005237
5238 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005239 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02005240 }
Pablo Neira1cf519002015-05-13 18:19:37 +02005241#endif
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01005242 skb_reset_redirect(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05005243skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05005244 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07005245 goto drop;
5246
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005247 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00005248 if (pt_prev) {
5249 ret = deliver_skb(skb, pt_prev, orig_dev);
5250 pt_prev = NULL;
5251 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005252 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00005253 goto another_round;
5254 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005255 goto out;
John Fastabend24257172011-10-10 09:16:41 +00005256 }
5257
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005258 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005259 if (rx_handler) {
5260 if (pt_prev) {
5261 ret = deliver_skb(skb, pt_prev, orig_dev);
5262 pt_prev = NULL;
5263 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005264 switch (rx_handler(&skb)) {
5265 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00005266 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005267 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005268 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08005269 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005270 case RX_HANDLER_EXACT:
5271 deliver_exact = true;
5272 case RX_HANDLER_PASS:
5273 break;
5274 default:
5275 BUG();
5276 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +03005279 if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005280check_vlan_id:
5281 if (skb_vlan_tag_get_id(skb)) {
5282 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5283 * find vlan device.
5284 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005285 skb->pkt_type = PACKET_OTHERHOST;
Menglong Dong324cefa2021-01-11 02:42:21 -08005286 } else if (eth_type_vlan(skb->protocol)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005287 /* Outer header is 802.1P with vlan 0, inner header is
5288 * 802.1Q or 802.1AD and vlan_do_receive() above could
5289 * not find vlan dev for vlan id 0.
5290 */
5291 __vlan_hwaccel_clear_tag(skb);
5292 skb = skb_vlan_untag(skb);
5293 if (unlikely(!skb))
5294 goto out;
5295 if (vlan_do_receive(&skb))
5296 /* After stripping off 802.1P header with vlan 0
5297 * vlan dev is found for inner header.
5298 */
5299 goto another_round;
5300 else if (unlikely(!skb))
5301 goto out;
5302 else
5303 /* We have stripped outer 802.1P vlan 0 header.
5304 * But could not find vlan dev.
5305 * check again for vlan id to set OTHERHOST.
5306 */
5307 goto check_vlan_id;
5308 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005309 /* Note: we might in the future use prio bits
5310 * and set skb->priority like in vlan_do_receive()
5311 * For the time being, just ignore Priority Code Point
5312 */
Michał Mirosławb18175242018-11-09 00:18:02 +01005313 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005314 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005315
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08005317
5318 /* deliver only exact match when indicated */
5319 if (likely(!deliver_exact)) {
5320 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5321 &ptype_base[ntohs(type) &
5322 PTYPE_HASH_MASK]);
5323 }
5324
5325 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5326 &orig_dev->ptype_specific);
5327
5328 if (unlikely(skb->dev != orig_dev)) {
5329 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5330 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 }
5332
5333 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04005334 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00005335 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01005336 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005337 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07005338drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05005339 if (!deliver_exact)
5340 atomic_long_inc(&skb->dev->rx_dropped);
5341 else
5342 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 kfree_skb(skb);
5344 /* Jamal, now you will not able to escape explaining
5345 * me how you were going to use this. :-)
5346 */
5347 ret = NET_RX_DROP;
5348 }
5349
Julian Anastasov2c17d272015-07-09 09:59:10 +03005350out:
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005351 /* The invariant here is that if *ppt_prev is not NULL
5352 * then skb should also be non-NULL.
5353 *
5354 * Apparently *ppt_prev assignment above holds this invariant due to
5355 * skb dereferencing near it.
5356 */
5357 *pskb = skb;
David S. Miller9754e292013-02-14 15:57:38 -05005358 return ret;
5359}
5360
Edward Cree88eb1942018-07-02 16:13:56 +01005361static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5362{
5363 struct net_device *orig_dev = skb->dev;
5364 struct packet_type *pt_prev = NULL;
5365 int ret;
5366
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005367 ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree88eb1942018-07-02 16:13:56 +01005368 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005369 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5370 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005371 return ret;
5372}
5373
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005374/**
5375 * netif_receive_skb_core - special purpose version of netif_receive_skb
5376 * @skb: buffer to process
5377 *
5378 * More direct receive version of netif_receive_skb(). It should
5379 * only be used by callers that have a need to skip RPS and Generic XDP.
Mauro Carvalho Chehab2de97802020-03-17 15:54:20 +01005380 * Caller must also take care of handling if ``(page_is_)pfmemalloc``.
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005381 *
5382 * This function may only be called from softirq context and interrupts
5383 * should be enabled.
5384 *
5385 * Return values (usually ignored):
5386 * NET_RX_SUCCESS: no congestion
5387 * NET_RX_DROP: packet was dropped
5388 */
5389int netif_receive_skb_core(struct sk_buff *skb)
5390{
5391 int ret;
5392
5393 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005394 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005395 rcu_read_unlock();
5396
5397 return ret;
5398}
5399EXPORT_SYMBOL(netif_receive_skb_core);
5400
Edward Cree88eb1942018-07-02 16:13:56 +01005401static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5402 struct packet_type *pt_prev,
5403 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005404{
5405 struct sk_buff *skb, *next;
5406
Edward Cree88eb1942018-07-02 16:13:56 +01005407 if (!pt_prev)
5408 return;
5409 if (list_empty(head))
5410 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005411 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005412 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5413 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005414 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005415 list_for_each_entry_safe(skb, next, head, list) {
5416 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005417 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005418 }
Edward Cree88eb1942018-07-02 16:13:56 +01005419}
5420
5421static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5422{
5423 /* Fast-path assumptions:
5424 * - There is no RX handler.
5425 * - Only one packet_type matches.
5426 * If either of these fails, we will end up doing some per-packet
5427 * processing in-line, then handling the 'last ptype' for the whole
5428 * sublist. This can't cause out-of-order delivery to any single ptype,
5429 * because the 'last ptype' must be constant across the sublist, and all
5430 * other ptypes are handled per-packet.
5431 */
5432 /* Current (common) ptype of sublist */
5433 struct packet_type *pt_curr = NULL;
5434 /* Current (common) orig_dev of sublist */
5435 struct net_device *od_curr = NULL;
5436 struct list_head sublist;
5437 struct sk_buff *skb, *next;
5438
Edward Cree9af86f92018-07-09 18:10:19 +01005439 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005440 list_for_each_entry_safe(skb, next, head, list) {
5441 struct net_device *orig_dev = skb->dev;
5442 struct packet_type *pt_prev = NULL;
5443
Edward Cree22f6bbb2018-12-04 17:37:57 +00005444 skb_list_del_init(skb);
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005445 __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01005446 if (!pt_prev)
5447 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005448 if (pt_curr != pt_prev || od_curr != orig_dev) {
5449 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005450 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5451 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005452 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005453 pt_curr = pt_prev;
5454 od_curr = orig_dev;
5455 }
Edward Cree9af86f92018-07-09 18:10:19 +01005456 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005457 }
5458
5459 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005460 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005461}
5462
David S. Miller9754e292013-02-14 15:57:38 -05005463static int __netif_receive_skb(struct sk_buff *skb)
5464{
5465 int ret;
5466
5467 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005468 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005469
5470 /*
5471 * PFMEMALLOC skbs are special, they should
5472 * - be delivered to SOCK_MEMALLOC sockets only
5473 * - stay away from userspace
5474 * - have bounded memory usage
5475 *
5476 * Use PF_MEMALLOC as this saves us from propagating the allocation
5477 * context down to all allocation sites.
5478 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005479 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005480 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005481 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005482 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005483 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005484
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 return ret;
5486}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005487
Edward Cree4ce00172018-07-02 16:13:40 +01005488static void __netif_receive_skb_list(struct list_head *head)
5489{
5490 unsigned long noreclaim_flag = 0;
5491 struct sk_buff *skb, *next;
5492 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5493
5494 list_for_each_entry_safe(skb, next, head, list) {
5495 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5496 struct list_head sublist;
5497
5498 /* Handle the previous sublist */
5499 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005500 if (!list_empty(&sublist))
5501 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005502 pfmemalloc = !pfmemalloc;
5503 /* See comments in __netif_receive_skb */
5504 if (pfmemalloc)
5505 noreclaim_flag = memalloc_noreclaim_save();
5506 else
5507 memalloc_noreclaim_restore(noreclaim_flag);
5508 }
5509 }
5510 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005511 if (!list_empty(head))
5512 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005513 /* Restore pflags */
5514 if (pfmemalloc)
5515 memalloc_noreclaim_restore(noreclaim_flag);
5516}
5517
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005518static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005519{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005520 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005521 struct bpf_prog *new = xdp->prog;
5522 int ret = 0;
5523
David Ahernfbee97f2020-05-29 16:07:13 -06005524 if (new) {
5525 u32 i;
5526
YiFei Zhu984fe942020-09-15 16:45:39 -07005527 mutex_lock(&new->aux->used_maps_mutex);
5528
David Ahernfbee97f2020-05-29 16:07:13 -06005529 /* generic XDP does not work with DEVMAPs that can
5530 * have a bpf_prog installed on an entry
5531 */
5532 for (i = 0; i < new->aux->used_map_cnt; i++) {
YiFei Zhu984fe942020-09-15 16:45:39 -07005533 if (dev_map_can_have_prog(new->aux->used_maps[i]) ||
5534 cpu_map_prog_allowed(new->aux->used_maps[i])) {
5535 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005536 return -EINVAL;
YiFei Zhu984fe942020-09-15 16:45:39 -07005537 }
David Ahernfbee97f2020-05-29 16:07:13 -06005538 }
YiFei Zhu984fe942020-09-15 16:45:39 -07005539
5540 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005541 }
5542
David S. Millerb5cdae32017-04-18 15:36:58 -04005543 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005544 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005545 rcu_assign_pointer(dev->xdp_prog, new);
5546 if (old)
5547 bpf_prog_put(old);
5548
5549 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005550 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005551 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005552 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005553 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005554 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005555 }
5556 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005557
David S. Millerb5cdae32017-04-18 15:36:58 -04005558 default:
5559 ret = -EINVAL;
5560 break;
5561 }
5562
5563 return ret;
5564}
5565
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005566static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005567{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005568 int ret;
5569
Eric Dumazet588f0332011-11-15 04:12:55 +00005570 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005571
Richard Cochranc1f19b52010-07-17 08:49:36 +00005572 if (skb_defer_rx_timestamp(skb))
5573 return NET_RX_SUCCESS;
5574
John Fastabendbbbe2112017-09-08 14:00:30 -07005575 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005576#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005577 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005578 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005579 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005580
Eric Dumazet3b098e22010-05-15 23:57:10 -07005581 if (cpu >= 0) {
5582 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5583 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005584 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005585 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005586 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005587#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005588 ret = __netif_receive_skb(skb);
5589 rcu_read_unlock();
5590 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005591}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005592
Edward Cree7da517a2018-07-02 16:13:24 +01005593static void netif_receive_skb_list_internal(struct list_head *head)
5594{
Edward Cree7da517a2018-07-02 16:13:24 +01005595 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005596 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005597
Edward Cree8c057ef2018-07-09 18:09:54 +01005598 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005599 list_for_each_entry_safe(skb, next, head, list) {
5600 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005601 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005602 if (!skb_defer_rx_timestamp(skb))
5603 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005604 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005605 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005606
Edward Cree7da517a2018-07-02 16:13:24 +01005607 rcu_read_lock();
5608#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005609 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005610 list_for_each_entry_safe(skb, next, head, list) {
5611 struct rps_dev_flow voidflow, *rflow = &voidflow;
5612 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5613
5614 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005615 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005616 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005617 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005618 }
5619 }
5620 }
5621#endif
5622 __netif_receive_skb_list(head);
5623 rcu_read_unlock();
5624}
5625
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005626/**
5627 * netif_receive_skb - process receive buffer from network
5628 * @skb: buffer to process
5629 *
5630 * netif_receive_skb() is the main receive data processing function.
5631 * It always succeeds. The buffer may be dropped during processing
5632 * for congestion control or by the protocol layers.
5633 *
5634 * This function may only be called from softirq context and interrupts
5635 * should be enabled.
5636 *
5637 * Return values (usually ignored):
5638 * NET_RX_SUCCESS: no congestion
5639 * NET_RX_DROP: packet was dropped
5640 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005641int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005642{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005643 int ret;
5644
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005645 trace_netif_receive_skb_entry(skb);
5646
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005647 ret = netif_receive_skb_internal(skb);
5648 trace_netif_receive_skb_exit(ret);
5649
5650 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005651}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005652EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653
Edward Creef6ad8c12018-07-02 16:12:45 +01005654/**
5655 * netif_receive_skb_list - process many receive buffers from network
5656 * @head: list of skbs to process.
5657 *
Edward Cree7da517a2018-07-02 16:13:24 +01005658 * Since return value of netif_receive_skb() is normally ignored, and
5659 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005660 *
5661 * This function may only be called from softirq context and interrupts
5662 * should be enabled.
5663 */
5664void netif_receive_skb_list(struct list_head *head)
5665{
Edward Cree7da517a2018-07-02 16:13:24 +01005666 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005667
Edward Creeb9f463d2018-07-02 16:14:44 +01005668 if (list_empty(head))
5669 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005670 if (trace_netif_receive_skb_list_entry_enabled()) {
5671 list_for_each_entry(skb, head, list)
5672 trace_netif_receive_skb_list_entry(skb);
5673 }
Edward Cree7da517a2018-07-02 16:13:24 +01005674 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005675 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005676}
5677EXPORT_SYMBOL(netif_receive_skb_list);
5678
Wei Yongjunce1e2a72020-07-13 22:23:44 +08005679static DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005680
5681/* Network device is going away, flush any packets still pending */
5682static void flush_backlog(struct work_struct *work)
5683{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005684 struct sk_buff *skb, *tmp;
5685 struct softnet_data *sd;
5686
5687 local_bh_disable();
5688 sd = this_cpu_ptr(&softnet_data);
5689
5690 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005691 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005692 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005693 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005694 __skb_unlink(skb, &sd->input_pkt_queue);
Subash Abhinov Kasiviswanathan7df5cb752020-07-23 11:31:48 -06005695 dev_kfree_skb_irq(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005696 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005697 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005698 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005699 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005700 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005701
5702 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005703 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005704 __skb_unlink(skb, &sd->process_queue);
5705 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005706 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005707 }
5708 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005709 local_bh_enable();
5710}
5711
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005712static bool flush_required(int cpu)
5713{
5714#if IS_ENABLED(CONFIG_RPS)
5715 struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5716 bool do_flush;
5717
5718 local_irq_disable();
5719 rps_lock(sd);
5720
5721 /* as insertion into process_queue happens with the rps lock held,
5722 * process_queue access may race only with dequeue
5723 */
5724 do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
5725 !skb_queue_empty_lockless(&sd->process_queue);
5726 rps_unlock(sd);
5727 local_irq_enable();
5728
5729 return do_flush;
5730#endif
5731 /* without RPS we can't safely check input_pkt_queue: during a
5732 * concurrent remote skb_queue_splice() we can detect as empty both
5733 * input_pkt_queue and process_queue even if the latter could end-up
5734 * containing a lot of packets.
5735 */
5736 return true;
5737}
5738
Eric Dumazet41852492016-08-26 12:50:39 -07005739static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005740{
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005741 static cpumask_t flush_cpus;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005742 unsigned int cpu;
5743
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005744 /* since we are under rtnl lock protection we can use static data
5745 * for the cpumask and avoid allocating on stack the possibly
5746 * large mask
5747 */
5748 ASSERT_RTNL();
5749
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005750 get_online_cpus();
5751
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005752 cpumask_clear(&flush_cpus);
5753 for_each_online_cpu(cpu) {
5754 if (flush_required(cpu)) {
5755 queue_work_on(cpu, system_highpri_wq,
5756 per_cpu_ptr(&flush_works, cpu));
5757 cpumask_set_cpu(cpu, &flush_cpus);
5758 }
5759 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005760
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005761 /* we can have in flight packet[s] on the cpus we are not flushing,
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -08005762 * synchronize_net() in unregister_netdevice_many() will take care of
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005763 * them
5764 */
5765 for_each_cpu(cpu, &flush_cpus)
Eric Dumazet41852492016-08-26 12:50:39 -07005766 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005767
5768 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005769}
5770
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005771/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5772static void gro_normal_list(struct napi_struct *napi)
5773{
5774 if (!napi->rx_count)
5775 return;
5776 netif_receive_skb_list_internal(&napi->rx_list);
5777 INIT_LIST_HEAD(&napi->rx_list);
5778 napi->rx_count = 0;
5779}
5780
5781/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5782 * pass the whole batch up to the stack.
5783 */
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005784static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb, int segs)
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005785{
5786 list_add_tail(&skb->list, &napi->rx_list);
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005787 napi->rx_count += segs;
5788 if (napi->rx_count >= gro_normal_batch)
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005789 gro_normal_list(napi);
5790}
5791
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005792static int napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005793{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005794 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005795 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005796 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005797 int err = -ENOENT;
5798
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005799 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5800
Herbert Xufc59f9a2009-04-14 15:11:06 -07005801 if (NAPI_GRO_CB(skb)->count == 1) {
5802 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005803 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005804 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005805
5806 rcu_read_lock();
5807 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005808 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005809 continue;
5810
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005811 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5812 ipv6_gro_complete, inet_gro_complete,
5813 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005814 break;
5815 }
5816 rcu_read_unlock();
5817
5818 if (err) {
5819 WARN_ON(&ptype->list == head);
5820 kfree_skb(skb);
5821 return NET_RX_SUCCESS;
5822 }
5823
5824out:
Eric Dumazet8dc1c442021-02-04 13:31:46 -08005825 gro_normal_one(napi, skb, NAPI_GRO_CB(skb)->count);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005826 return NET_RX_SUCCESS;
Herbert Xud565b0a2008-12-15 23:38:52 -08005827}
5828
Li RongQing6312fe72018-07-05 14:34:32 +08005829static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005830 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005831{
Li RongQing6312fe72018-07-05 14:34:32 +08005832 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005833 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005834
David Miller07d78362018-06-24 14:14:02 +09005835 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005836 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5837 return;
David S. Miller992cba72018-07-31 15:27:56 -07005838 skb_list_del_init(skb);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005839 napi_gro_complete(napi, skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005840 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005841 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005842
5843 if (!napi->gro_hash[index].count)
5844 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005845}
David Miller07d78362018-06-24 14:14:02 +09005846
Li RongQing6312fe72018-07-05 14:34:32 +08005847/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005848 * youngest packets at the head of it.
5849 * Complete skbs in reverse order to reduce latencies.
5850 */
5851void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5852{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005853 unsigned long bitmask = napi->gro_bitmask;
5854 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005855
Eric Dumazet42519ed2018-11-21 11:39:28 -08005856 while ((i = ffs(bitmask)) != 0) {
5857 bitmask >>= i;
5858 base += i;
5859 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005860 }
David Miller07d78362018-06-24 14:14:02 +09005861}
Eric Dumazet86cac582010-08-31 18:25:32 +00005862EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005863
David Miller07d78362018-06-24 14:14:02 +09005864static struct list_head *gro_list_prepare(struct napi_struct *napi,
5865 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005866{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005867 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005868 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005869 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005870 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005871
Li RongQing6312fe72018-07-05 14:34:32 +08005872 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005873 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005874 unsigned long diffs;
5875
Tom Herbert0b4cec82014-01-15 08:58:06 -08005876 NAPI_GRO_CB(p)->flush = 0;
5877
5878 if (hash != skb_get_hash_raw(p)) {
5879 NAPI_GRO_CB(p)->same_flow = 0;
5880 continue;
5881 }
5882
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005883 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005884 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5885 if (skb_vlan_tag_present(p))
Tonghao Zhangfc5141c2019-11-22 20:38:01 +08005886 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
Jesse Grossce87fc62016-01-20 17:59:49 -08005887 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005888 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005889 if (maclen == ETH_HLEN)
5890 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005891 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005892 else if (!diffs)
5893 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005894 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005895 maclen);
5896 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005897 }
David Miller07d78362018-06-24 14:14:02 +09005898
5899 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005900}
5901
Jerry Chu299603e82013-12-11 20:53:45 -08005902static void skb_gro_reset_offset(struct sk_buff *skb)
5903{
5904 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5905 const skb_frag_t *frag0 = &pinfo->frags[0];
5906
5907 NAPI_GRO_CB(skb)->data_offset = 0;
5908 NAPI_GRO_CB(skb)->frag0 = NULL;
5909 NAPI_GRO_CB(skb)->frag0_len = 0;
5910
Alexander Lobakin8aef9982019-11-15 12:11:35 +03005911 if (!skb_headlen(skb) && pinfo->nr_frags &&
Jerry Chu299603e82013-12-11 20:53:45 -08005912 !PageHighMem(skb_frag_page(frag0))) {
5913 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005914 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5915 skb_frag_size(frag0),
5916 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005917 }
5918}
5919
Eric Dumazeta50e2332014-03-29 21:28:21 -07005920static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5921{
5922 struct skb_shared_info *pinfo = skb_shinfo(skb);
5923
5924 BUG_ON(skb->end - skb->tail < grow);
5925
5926 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5927
5928 skb->data_len -= grow;
5929 skb->tail += grow;
5930
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07005931 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005932 skb_frag_size_sub(&pinfo->frags[0], grow);
5933
5934 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5935 skb_frag_unref(skb, 0);
5936 memmove(pinfo->frags, pinfo->frags + 1,
5937 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5938 }
5939}
5940
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005941static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005942{
Li RongQing6312fe72018-07-05 14:34:32 +08005943 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005944
Li RongQing6312fe72018-07-05 14:34:32 +08005945 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005946
Li RongQing6312fe72018-07-05 14:34:32 +08005947 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005948 * impossible.
5949 */
5950 if (WARN_ON_ONCE(!oldest))
5951 return;
5952
Li RongQingd9f37d02018-07-13 14:41:36 +08005953 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5954 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005955 */
David S. Millerece23712018-10-28 10:35:12 -07005956 skb_list_del_init(oldest);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005957 napi_gro_complete(napi, oldest);
David Miller07d78362018-06-24 14:14:02 +09005958}
5959
Rami Rosenbb728822012-11-28 21:55:25 +00005960static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005961{
Li RongQing6312fe72018-07-05 14:34:32 +08005962 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005963 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005964 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005965 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005966 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005967 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005968 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005969 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005970 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005971
David S. Millerb5cdae32017-04-18 15:36:58 -04005972 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005973 goto normal;
5974
David Miller07d78362018-06-24 14:14:02 +09005975 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005976
Herbert Xud565b0a2008-12-15 23:38:52 -08005977 rcu_read_lock();
5978 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005979 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005980 continue;
5981
Herbert Xu86911732009-01-29 14:19:50 +00005982 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005983 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005984 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005985 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005986 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005987 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005988 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005989 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005990 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005991 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005992
Tom Herbert662880f2014-08-27 21:26:56 -07005993 /* Setup for GRO checksum validation */
5994 switch (skb->ip_summed) {
5995 case CHECKSUM_COMPLETE:
5996 NAPI_GRO_CB(skb)->csum = skb->csum;
5997 NAPI_GRO_CB(skb)->csum_valid = 1;
5998 NAPI_GRO_CB(skb)->csum_cnt = 0;
5999 break;
6000 case CHECKSUM_UNNECESSARY:
6001 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
6002 NAPI_GRO_CB(skb)->csum_valid = 0;
6003 break;
6004 default:
6005 NAPI_GRO_CB(skb)->csum_cnt = 0;
6006 NAPI_GRO_CB(skb)->csum_valid = 0;
6007 }
Herbert Xud565b0a2008-12-15 23:38:52 -08006008
Paolo Abeniaaa5d902018-12-14 11:51:58 +01006009 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
6010 ipv6_gro_receive, inet_gro_receive,
6011 gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08006012 break;
6013 }
6014 rcu_read_unlock();
6015
6016 if (&ptype->list == head)
6017 goto normal;
6018
Masahiro Yamada45586c72020-02-03 17:37:45 -08006019 if (PTR_ERR(pp) == -EINPROGRESS) {
Steffen Klassert25393d32017-02-15 09:39:44 +01006020 ret = GRO_CONSUMED;
6021 goto ok;
6022 }
6023
Herbert Xu0da2afd52008-12-26 14:57:42 -08006024 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006025 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08006026
Herbert Xud565b0a2008-12-15 23:38:52 -08006027 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07006028 skb_list_del_init(pp);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006029 napi_gro_complete(napi, pp);
Li RongQing6312fe72018-07-05 14:34:32 +08006030 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08006031 }
6032
Herbert Xu0da2afd52008-12-26 14:57:42 -08006033 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08006034 goto ok;
6035
Eric Dumazet600adc12014-01-09 14:12:19 -08006036 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08006037 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08006038
Li RongQing6312fe72018-07-05 14:34:32 +08006039 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006040 gro_flush_oldest(napi, gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08006041 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08006042 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08006043 }
Herbert Xud565b0a2008-12-15 23:38:52 -08006044 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00006045 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07006046 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00006047 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09006048 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006049 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08006050
Herbert Xuad0f99042009-02-01 01:24:55 -08006051pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006052 grow = skb_gro_offset(skb) - skb_headlen(skb);
6053 if (grow > 0)
6054 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08006055ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08006056 if (napi->gro_hash[hash].count) {
6057 if (!test_bit(hash, &napi->gro_bitmask))
6058 __set_bit(hash, &napi->gro_bitmask);
6059 } else if (test_bit(hash, &napi->gro_bitmask)) {
6060 __clear_bit(hash, &napi->gro_bitmask);
6061 }
6062
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006063 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006064
6065normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08006066 ret = GRO_NORMAL;
6067 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08006068}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006069
Jerry Chubf5a7552014-01-07 10:23:19 -08006070struct packet_offload *gro_find_receive_by_type(__be16 type)
6071{
6072 struct list_head *offload_head = &offload_base;
6073 struct packet_offload *ptype;
6074
6075 list_for_each_entry_rcu(ptype, offload_head, list) {
6076 if (ptype->type != type || !ptype->callbacks.gro_receive)
6077 continue;
6078 return ptype;
6079 }
6080 return NULL;
6081}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006082EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08006083
6084struct packet_offload *gro_find_complete_by_type(__be16 type)
6085{
6086 struct list_head *offload_head = &offload_base;
6087 struct packet_offload *ptype;
6088
6089 list_for_each_entry_rcu(ptype, offload_head, list) {
6090 if (ptype->type != type || !ptype->callbacks.gro_complete)
6091 continue;
6092 return ptype;
6093 }
6094 return NULL;
6095}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006096EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006097
Michal Kubečeke44699d2017-06-29 11:13:36 +02006098static void napi_skb_free_stolen_head(struct sk_buff *skb)
6099{
6100 skb_dst_drop(skb);
Florian Westphal174e2382019-09-26 20:37:05 +02006101 skb_ext_put(skb);
Michal Kubečeke44699d2017-06-29 11:13:36 +02006102 kmem_cache_free(skbuff_head_cache, skb);
6103}
6104
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006105static gro_result_t napi_skb_finish(struct napi_struct *napi,
6106 struct sk_buff *skb,
6107 gro_result_t ret)
Herbert Xu5d38a072009-01-04 16:13:40 -08006108{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006109 switch (ret) {
6110 case GRO_NORMAL:
Eric Dumazet8dc1c442021-02-04 13:31:46 -08006111 gro_normal_one(napi, skb, 1);
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006112 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006113
Eric Dumazetdaa86542012-04-19 07:07:40 +00006114 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02006115 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6116 napi_skb_free_stolen_head(skb);
6117 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00006118 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00006119 break;
6120
Ben Hutchings5b252f02009-10-29 07:17:09 +00006121 case GRO_HELD:
6122 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006123 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006124 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006125 }
6126
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006127 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006128}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006129
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006130gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006131{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006132 gro_result_t ret;
6133
Eric Dumazet93f93a42015-11-18 06:30:59 -08006134 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006135 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00006136
Eric Dumazeta50e2332014-03-29 21:28:21 -07006137 skb_gro_reset_offset(skb);
6138
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006139 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006140 trace_napi_gro_receive_exit(ret);
6141
6142 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006143}
6144EXPORT_SYMBOL(napi_gro_receive);
6145
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00006146static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006147{
Eric Dumazet93a35f52014-10-23 06:30:30 -07006148 if (unlikely(skb->pfmemalloc)) {
6149 consume_skb(skb);
6150 return;
6151 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006152 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00006153 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
6154 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01006155 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08006156 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08006157 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08006158
6159 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
6160 skb->pkt_type = PACKET_HOST;
6161
Jerry Chuc3caf112014-07-14 15:54:46 -07006162 skb->encapsulation = 0;
6163 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07006164 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Florian Westphal174e2382019-09-26 20:37:05 +02006165 skb_ext_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006166
6167 napi->skb = skb;
6168}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006169
Herbert Xu76620aa2009-04-16 02:02:07 -07006170struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08006171{
Herbert Xu5d38a072009-01-04 16:13:40 -08006172 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08006173
6174 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08006175 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08006176 if (skb) {
6177 napi->skb = skb;
6178 skb_mark_napi_id(skb, napi);
6179 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006180 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006181 return skb;
6182}
Herbert Xu76620aa2009-04-16 02:02:07 -07006183EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006184
Eric Dumazeta50e2332014-03-29 21:28:21 -07006185static gro_result_t napi_frags_finish(struct napi_struct *napi,
6186 struct sk_buff *skb,
6187 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006188{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006189 switch (ret) {
6190 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006191 case GRO_HELD:
6192 __skb_push(skb, ETH_HLEN);
6193 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01006194 if (ret == GRO_NORMAL)
Eric Dumazet8dc1c442021-02-04 13:31:46 -08006195 gro_normal_one(napi, skb, 1);
Herbert Xu86911732009-01-29 14:19:50 +00006196 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006197
Michal Kubečeke44699d2017-06-29 11:13:36 +02006198 case GRO_MERGED_FREE:
6199 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6200 napi_skb_free_stolen_head(skb);
6201 else
6202 napi_reuse_skb(napi, skb);
6203 break;
6204
Ben Hutchings5b252f02009-10-29 07:17:09 +00006205 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006206 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006207 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006208 }
6209
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006210 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006211}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006212
Eric Dumazeta50e2332014-03-29 21:28:21 -07006213/* Upper GRO stack assumes network header starts at gro_offset=0
6214 * Drivers could call both napi_gro_frags() and napi_gro_receive()
6215 * We copy ethernet header into skb->data to have a common layout.
6216 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00006217static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006218{
Herbert Xu76620aa2009-04-16 02:02:07 -07006219 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006220 const struct ethhdr *eth;
6221 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07006222
6223 napi->skb = NULL;
6224
Eric Dumazeta50e2332014-03-29 21:28:21 -07006225 skb_reset_mac_header(skb);
6226 skb_gro_reset_offset(skb);
6227
Eric Dumazeta50e2332014-03-29 21:28:21 -07006228 if (unlikely(skb_gro_header_hard(skb, hlen))) {
6229 eth = skb_gro_header_slow(skb, hlen, 0);
6230 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04006231 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
6232 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006233 napi_reuse_skb(napi, skb);
6234 return NULL;
6235 }
6236 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07006237 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006238 gro_pull_from_frag0(skb, hlen);
6239 NAPI_GRO_CB(skb)->frag0 += hlen;
6240 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07006241 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07006242 __skb_pull(skb, hlen);
6243
6244 /*
6245 * This works because the only protocols we care about don't require
6246 * special handling.
6247 * We'll fix it up properly in napi_frags_finish()
6248 */
6249 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07006250
Herbert Xu76620aa2009-04-16 02:02:07 -07006251 return skb;
6252}
Herbert Xu76620aa2009-04-16 02:02:07 -07006253
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006254gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07006255{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006256 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07006257 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006258
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006259 trace_napi_gro_frags_entry(skb);
6260
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006261 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6262 trace_napi_gro_frags_exit(ret);
6263
6264 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08006265}
6266EXPORT_SYMBOL(napi_gro_frags);
6267
Tom Herbert573e8fc2014-08-22 13:33:47 -07006268/* Compute the checksum from gro_offset and return the folded value
6269 * after adding in any pseudo checksum.
6270 */
6271__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6272{
6273 __wsum wsum;
6274 __sum16 sum;
6275
6276 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6277
6278 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6279 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08006280 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07006281 if (likely(!sum)) {
6282 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6283 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08006284 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07006285 }
6286
6287 NAPI_GRO_CB(skb)->csum = wsum;
6288 NAPI_GRO_CB(skb)->csum_valid = 1;
6289
6290 return sum;
6291}
6292EXPORT_SYMBOL(__skb_gro_checksum_complete);
6293
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306294static void net_rps_send_ipi(struct softnet_data *remsd)
6295{
6296#ifdef CONFIG_RPS
6297 while (remsd) {
6298 struct softnet_data *next = remsd->rps_ipi_next;
6299
6300 if (cpu_online(remsd->cpu))
6301 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6302 remsd = next;
6303 }
6304#endif
6305}
6306
Eric Dumazete326bed2010-04-22 00:22:45 -07006307/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08006308 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07006309 * Note: called with local irq disabled, but exits with local irq enabled.
6310 */
6311static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6312{
6313#ifdef CONFIG_RPS
6314 struct softnet_data *remsd = sd->rps_ipi_list;
6315
6316 if (remsd) {
6317 sd->rps_ipi_list = NULL;
6318
6319 local_irq_enable();
6320
6321 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306322 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07006323 } else
6324#endif
6325 local_irq_enable();
6326}
6327
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006328static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6329{
6330#ifdef CONFIG_RPS
6331 return sd->rps_ipi_list != NULL;
6332#else
6333 return false;
6334#endif
6335}
6336
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006337static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006338{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006339 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006340 bool again = true;
6341 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342
Eric Dumazete326bed2010-04-22 00:22:45 -07006343 /* Check if we have pending ipi, its better to send them now,
6344 * not waiting net_rx_action() end.
6345 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006346 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07006347 local_irq_disable();
6348 net_rps_action_and_irq_enable(sd);
6349 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006350
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01006351 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006352 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006353 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354
Changli Gao6e7676c2010-04-27 15:07:33 -07006355 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03006356 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07006357 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03006358 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00006359 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006360 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00006361 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006362
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006365 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006366 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07006367 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006368 /*
6369 * Inline a custom version of __napi_complete().
6370 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07006371 * and NAPI_STATE_SCHED is the only possible flag set
6372 * on backlog.
6373 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006374 * and we dont need an smp_mb() memory barrier.
6375 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006376 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006377 again = false;
6378 } else {
6379 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6380 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07006381 }
6382 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006383 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006385
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006386 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387}
6388
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006389/**
6390 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006391 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006392 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006393 * The entry's receive function will be scheduled to run.
6394 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006395 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08006396void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006397{
6398 unsigned long flags;
6399
6400 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05006401 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006402 local_irq_restore(flags);
6403}
6404EXPORT_SYMBOL(__napi_schedule);
6405
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006406/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006407 * napi_schedule_prep - check if napi can be scheduled
6408 * @n: napi context
6409 *
6410 * Test if NAPI routine is already running, and if not mark
Jonathan Neuschäferee1a4c82020-09-05 20:32:18 +02006411 * it as running. This is used as a condition variable to
Eric Dumazet39e6c822017-02-28 10:34:50 -08006412 * insure only one NAPI poll instance runs. We also make
6413 * sure there is no pending NAPI disable.
6414 */
6415bool napi_schedule_prep(struct napi_struct *n)
6416{
6417 unsigned long val, new;
6418
6419 do {
6420 val = READ_ONCE(n->state);
6421 if (unlikely(val & NAPIF_STATE_DISABLE))
6422 return false;
6423 new = val | NAPIF_STATE_SCHED;
6424
6425 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6426 * This was suggested by Alexander Duyck, as compiler
6427 * emits better code than :
6428 * if (val & NAPIF_STATE_SCHED)
6429 * new |= NAPIF_STATE_MISSED;
6430 */
6431 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6432 NAPIF_STATE_MISSED;
6433 } while (cmpxchg(&n->state, val, new) != val);
6434
6435 return !(val & NAPIF_STATE_SCHED);
6436}
6437EXPORT_SYMBOL(napi_schedule_prep);
6438
6439/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006440 * __napi_schedule_irqoff - schedule for receive
6441 * @n: entry to schedule
6442 *
6443 * Variant of __napi_schedule() assuming hard irqs are masked
6444 */
6445void __napi_schedule_irqoff(struct napi_struct *n)
6446{
6447 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6448}
6449EXPORT_SYMBOL(__napi_schedule_irqoff);
6450
Eric Dumazet364b6052016-11-15 10:15:13 -08006451bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006452{
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006453 unsigned long flags, val, new, timeout = 0;
6454 bool ret = true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006455
6456 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006457 * 1) Don't let napi dequeue from the cpu poll list
6458 * just in case its running on a different cpu.
6459 * 2) If we are busy polling, do nothing here, we have
6460 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006461 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006462 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6463 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006464 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006465
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006466 if (work_done) {
6467 if (n->gro_bitmask)
Eric Dumazet7e417a62020-04-22 09:13:28 -07006468 timeout = READ_ONCE(n->dev->gro_flush_timeout);
6469 n->defer_hard_irqs_count = READ_ONCE(n->dev->napi_defer_hard_irqs);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006470 }
6471 if (n->defer_hard_irqs_count > 0) {
6472 n->defer_hard_irqs_count--;
Eric Dumazet7e417a62020-04-22 09:13:28 -07006473 timeout = READ_ONCE(n->dev->gro_flush_timeout);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006474 if (timeout)
6475 ret = false;
6476 }
6477 if (n->gro_bitmask) {
Paolo Abeni605108a2018-11-21 18:21:35 +01006478 /* When the NAPI instance uses a timeout and keeps postponing
6479 * it, we need to bound somehow the time packets are kept in
6480 * the GRO layer
6481 */
6482 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006483 }
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006484
6485 gro_normal_list(n);
6486
Eric Dumazet02c16022017-02-04 15:25:02 -08006487 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006488 /* If n->poll_list is not empty, we need to mask irqs */
6489 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006490 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006491 local_irq_restore(flags);
6492 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006493
6494 do {
6495 val = READ_ONCE(n->state);
6496
6497 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6498
Björn Töpel7fd32532020-11-30 19:51:56 +01006499 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED |
6500 NAPIF_STATE_PREFER_BUSY_POLL);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006501
6502 /* If STATE_MISSED was set, leave STATE_SCHED set,
6503 * because we will call napi->poll() one more time.
6504 * This C code was suggested by Alexander Duyck to help gcc.
6505 */
6506 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6507 NAPIF_STATE_SCHED;
6508 } while (cmpxchg(&n->state, val, new) != val);
6509
6510 if (unlikely(val & NAPIF_STATE_MISSED)) {
6511 __napi_schedule(n);
6512 return false;
6513 }
6514
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006515 if (timeout)
6516 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6517 HRTIMER_MODE_REL_PINNED);
6518 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006519}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006520EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006521
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006522/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006523static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006524{
6525 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6526 struct napi_struct *napi;
6527
6528 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6529 if (napi->napi_id == napi_id)
6530 return napi;
6531
6532 return NULL;
6533}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006534
6535#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006536
Björn Töpel7fd32532020-11-30 19:51:56 +01006537static void __busy_poll_stop(struct napi_struct *napi, bool skip_schedule)
Eric Dumazet217f6972016-11-15 10:15:11 -08006538{
Björn Töpel7fd32532020-11-30 19:51:56 +01006539 if (!skip_schedule) {
6540 gro_normal_list(napi);
6541 __napi_schedule(napi);
6542 return;
6543 }
6544
6545 if (napi->gro_bitmask) {
6546 /* flush too old packets
6547 * If HZ < 1000, flush all packets.
6548 */
6549 napi_gro_flush(napi, HZ >= 1000);
6550 }
6551
6552 gro_normal_list(napi);
6553 clear_bit(NAPI_STATE_SCHED, &napi->state);
6554}
6555
Björn Töpel7c951caf2020-11-30 19:51:57 +01006556static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock, bool prefer_busy_poll,
6557 u16 budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006558{
6559 bool skip_schedule = false;
6560 unsigned long timeout;
Eric Dumazet217f6972016-11-15 10:15:11 -08006561 int rc;
6562
Eric Dumazet39e6c822017-02-28 10:34:50 -08006563 /* Busy polling means there is a high chance device driver hard irq
6564 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6565 * set in napi_schedule_prep().
6566 * Since we are about to call napi->poll() once more, we can safely
6567 * clear NAPI_STATE_MISSED.
6568 *
6569 * Note: x86 could use a single "lock and ..." instruction
6570 * to perform these two clear_bit()
6571 */
6572 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006573 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6574
6575 local_bh_disable();
6576
Björn Töpel7fd32532020-11-30 19:51:56 +01006577 if (prefer_busy_poll) {
6578 napi->defer_hard_irqs_count = READ_ONCE(napi->dev->napi_defer_hard_irqs);
6579 timeout = READ_ONCE(napi->dev->gro_flush_timeout);
6580 if (napi->defer_hard_irqs_count && timeout) {
6581 hrtimer_start(&napi->timer, ns_to_ktime(timeout), HRTIMER_MODE_REL_PINNED);
6582 skip_schedule = true;
6583 }
6584 }
6585
Eric Dumazet217f6972016-11-15 10:15:11 -08006586 /* All we really want here is to re-enable device interrupts.
6587 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6588 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006589 rc = napi->poll(napi, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006590 /* We can't gro_normal_list() here, because napi->poll() might have
6591 * rearmed the napi (napi_complete_done()) in which case it could
6592 * already be running on another CPU.
6593 */
Björn Töpel7c951caf2020-11-30 19:51:57 +01006594 trace_napi_poll(napi, rc, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006595 netpoll_poll_unlock(have_poll_lock);
Björn Töpel7c951caf2020-11-30 19:51:57 +01006596 if (rc == budget)
Björn Töpel7fd32532020-11-30 19:51:56 +01006597 __busy_poll_stop(napi, skip_schedule);
Eric Dumazet217f6972016-11-15 10:15:11 -08006598 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006599}
6600
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006601void napi_busy_loop(unsigned int napi_id,
6602 bool (*loop_end)(void *, unsigned long),
Björn Töpel7c951caf2020-11-30 19:51:57 +01006603 void *loop_end_arg, bool prefer_busy_poll, u16 budget)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006604{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006605 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006606 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006607 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006608 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006609
6610restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006611 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006612
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006613 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006614
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006615 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006616 if (!napi)
6617 goto out;
6618
Eric Dumazet217f6972016-11-15 10:15:11 -08006619 preempt_disable();
6620 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006621 int work = 0;
6622
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006623 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006624 if (!napi_poll) {
6625 unsigned long val = READ_ONCE(napi->state);
6626
6627 /* If multiple threads are competing for this napi,
6628 * we avoid dirtying napi->state as much as we can.
6629 */
6630 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
Björn Töpel7fd32532020-11-30 19:51:56 +01006631 NAPIF_STATE_IN_BUSY_POLL)) {
6632 if (prefer_busy_poll)
6633 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006634 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006635 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006636 if (cmpxchg(&napi->state, val,
6637 val | NAPIF_STATE_IN_BUSY_POLL |
Björn Töpel7fd32532020-11-30 19:51:56 +01006638 NAPIF_STATE_SCHED) != val) {
6639 if (prefer_busy_poll)
6640 set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006641 goto count;
Björn Töpel7fd32532020-11-30 19:51:56 +01006642 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006643 have_poll_lock = netpoll_poll_lock(napi);
6644 napi_poll = napi->poll;
6645 }
Björn Töpel7c951caf2020-11-30 19:51:57 +01006646 work = napi_poll(napi, budget);
6647 trace_napi_poll(napi, work, budget);
Edward Cree323ebb62019-08-06 14:53:55 +01006648 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006649count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006650 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006651 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006652 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006653 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006654
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006655 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006656 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006657
Eric Dumazet217f6972016-11-15 10:15:11 -08006658 if (unlikely(need_resched())) {
6659 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006660 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006661 preempt_enable();
6662 rcu_read_unlock();
6663 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006664 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006665 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006666 goto restart;
6667 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006668 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006669 }
6670 if (napi_poll)
Björn Töpel7c951caf2020-11-30 19:51:57 +01006671 busy_poll_stop(napi, have_poll_lock, prefer_busy_poll, budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006672 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006673out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006674 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006675}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006676EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006677
6678#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006679
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006680static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006681{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006682 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006683 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006684
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006685 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006686
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006687 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006688 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006689 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6690 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006691 } while (napi_by_id(napi_gen_id));
6692 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006693
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006694 hlist_add_head_rcu(&napi->napi_hash_node,
6695 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006696
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006697 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006698}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006699
6700/* Warning : caller is responsible to make sure rcu grace period
6701 * is respected before freeing memory containing @napi
6702 */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006703static void napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006704{
6705 spin_lock(&napi_hash_lock);
6706
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006707 hlist_del_init_rcu(&napi->napi_hash_node);
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006708
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006709 spin_unlock(&napi_hash_lock);
6710}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006711
Eric Dumazet3b47d302014-11-06 21:09:44 -08006712static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6713{
6714 struct napi_struct *napi;
6715
6716 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006717
6718 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6719 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6720 */
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006721 if (!napi_disable_pending(napi) &&
Björn Töpel7fd32532020-11-30 19:51:56 +01006722 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state)) {
6723 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006724 __napi_schedule_irqoff(napi);
Björn Töpel7fd32532020-11-30 19:51:56 +01006725 }
Eric Dumazet3b47d302014-11-06 21:09:44 -08006726
6727 return HRTIMER_NORESTART;
6728}
6729
David S. Miller7c4ec742018-07-20 23:37:55 -07006730static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006731{
David Miller07d78362018-06-24 14:14:02 +09006732 int i;
6733
Li RongQing6312fe72018-07-05 14:34:32 +08006734 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6735 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6736 napi->gro_hash[i].count = 0;
6737 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006738 napi->gro_bitmask = 0;
6739}
6740
Wei Wang5fdd2f02021-02-08 11:34:10 -08006741int dev_set_threaded(struct net_device *dev, bool threaded)
6742{
6743 struct napi_struct *napi;
6744 int err = 0;
6745
6746 if (dev->threaded == threaded)
6747 return 0;
6748
6749 if (threaded) {
6750 list_for_each_entry(napi, &dev->napi_list, dev_list) {
6751 if (!napi->thread) {
6752 err = napi_kthread_create(napi);
6753 if (err) {
6754 threaded = false;
6755 break;
6756 }
6757 }
6758 }
6759 }
6760
6761 dev->threaded = threaded;
6762
6763 /* Make sure kthread is created before THREADED bit
6764 * is set.
6765 */
6766 smp_mb__before_atomic();
6767
6768 /* Setting/unsetting threaded mode on a napi might not immediately
6769 * take effect, if the current napi instance is actively being
6770 * polled. In this case, the switch between threaded mode and
6771 * softirq mode will happen in the next round of napi_schedule().
6772 * This should not cause hiccups/stalls to the live traffic.
6773 */
6774 list_for_each_entry(napi, &dev->napi_list, dev_list) {
6775 if (threaded)
6776 set_bit(NAPI_STATE_THREADED, &napi->state);
6777 else
6778 clear_bit(NAPI_STATE_THREADED, &napi->state);
6779 }
6780
6781 return err;
6782}
6783
David S. Miller7c4ec742018-07-20 23:37:55 -07006784void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6785 int (*poll)(struct napi_struct *, int), int weight)
6786{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006787 if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
6788 return;
6789
David S. Miller7c4ec742018-07-20 23:37:55 -07006790 INIT_LIST_HEAD(&napi->poll_list);
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006791 INIT_HLIST_NODE(&napi->napi_hash_node);
David S. Miller7c4ec742018-07-20 23:37:55 -07006792 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6793 napi->timer.function = napi_watchdog;
6794 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006795 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006796 INIT_LIST_HEAD(&napi->rx_list);
6797 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006798 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006799 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006800 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6801 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006802 napi->weight = weight;
Herbert Xud565b0a2008-12-15 23:38:52 -08006803 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006804#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006805 napi->poll_owner = -1;
6806#endif
6807 set_bit(NAPI_STATE_SCHED, &napi->state);
Jakub Kicinski96e97bc2020-08-26 12:40:06 -07006808 set_bit(NAPI_STATE_NPSVC, &napi->state);
6809 list_add_rcu(&napi->dev_list, &dev->napi_list);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006810 napi_hash_add(napi);
Wei Wang29863d42021-02-08 11:34:09 -08006811 /* Create kthread for this napi if dev->threaded is set.
6812 * Clear dev->threaded if kthread creation failed so that
6813 * threaded mode will not be enabled in napi_enable().
6814 */
6815 if (dev->threaded && napi_kthread_create(napi))
6816 dev->threaded = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006817}
6818EXPORT_SYMBOL(netif_napi_add);
6819
Eric Dumazet3b47d302014-11-06 21:09:44 -08006820void napi_disable(struct napi_struct *n)
6821{
6822 might_sleep();
6823 set_bit(NAPI_STATE_DISABLE, &n->state);
6824
6825 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6826 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006827 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6828 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006829
6830 hrtimer_cancel(&n->timer);
6831
Björn Töpel7fd32532020-11-30 19:51:56 +01006832 clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &n->state);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006833 clear_bit(NAPI_STATE_DISABLE, &n->state);
Wei Wang29863d42021-02-08 11:34:09 -08006834 clear_bit(NAPI_STATE_THREADED, &n->state);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006835}
6836EXPORT_SYMBOL(napi_disable);
6837
Wei Wang29863d42021-02-08 11:34:09 -08006838/**
6839 * napi_enable - enable NAPI scheduling
6840 * @n: NAPI context
6841 *
6842 * Resume NAPI from being scheduled on this context.
6843 * Must be paired with napi_disable.
6844 */
6845void napi_enable(struct napi_struct *n)
6846{
6847 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
6848 smp_mb__before_atomic();
6849 clear_bit(NAPI_STATE_SCHED, &n->state);
6850 clear_bit(NAPI_STATE_NPSVC, &n->state);
6851 if (n->dev->threaded && n->thread)
6852 set_bit(NAPI_STATE_THREADED, &n->state);
6853}
6854EXPORT_SYMBOL(napi_enable);
6855
David Miller07d78362018-06-24 14:14:02 +09006856static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006857{
David Miller07d78362018-06-24 14:14:02 +09006858 int i;
David Millerd4546c22018-06-24 14:13:49 +09006859
David Miller07d78362018-06-24 14:14:02 +09006860 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6861 struct sk_buff *skb, *n;
6862
Li RongQing6312fe72018-07-05 14:34:32 +08006863 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006864 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006865 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006866 }
David Millerd4546c22018-06-24 14:13:49 +09006867}
6868
Eric Dumazet93d05d42015-11-18 06:31:03 -08006869/* Must be called in process context */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006870void __netif_napi_del(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006871{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006872 if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
6873 return;
6874
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006875 napi_hash_del(napi);
Jakub Kicinski5251ef82020-09-09 10:37:53 -07006876 list_del_rcu(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006877 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006878
David Miller07d78362018-06-24 14:14:02 +09006879 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006880 napi->gro_bitmask = 0;
Wei Wang29863d42021-02-08 11:34:09 -08006881
6882 if (napi->thread) {
6883 kthread_stop(napi->thread);
6884 napi->thread = NULL;
6885 }
Herbert Xud565b0a2008-12-15 23:38:52 -08006886}
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006887EXPORT_SYMBOL(__netif_napi_del);
Herbert Xud565b0a2008-12-15 23:38:52 -08006888
Felix Fietkau898f8012021-02-08 11:34:08 -08006889static int __napi_poll(struct napi_struct *n, bool *repoll)
Herbert Xu726ce702014-12-21 07:16:21 +11006890{
Herbert Xu726ce702014-12-21 07:16:21 +11006891 int work, weight;
6892
Herbert Xu726ce702014-12-21 07:16:21 +11006893 weight = n->weight;
6894
6895 /* This NAPI_STATE_SCHED test is for avoiding a race
6896 * with netpoll's poll_napi(). Only the entity which
6897 * obtains the lock and sees NAPI_STATE_SCHED set will
6898 * actually make the ->poll() call. Therefore we avoid
6899 * accidentally calling ->poll() when NAPI is not scheduled.
6900 */
6901 work = 0;
6902 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6903 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006904 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006905 }
6906
Eric Dumazet427d5832020-06-17 09:40:51 -07006907 if (unlikely(work > weight))
6908 pr_err_once("NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
6909 n->poll, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006910
6911 if (likely(work < weight))
Felix Fietkau898f8012021-02-08 11:34:08 -08006912 return work;
Herbert Xu726ce702014-12-21 07:16:21 +11006913
6914 /* Drivers must not modify the NAPI state if they
6915 * consume the entire weight. In such cases this code
6916 * still "owns" the NAPI instance and therefore can
6917 * move the instance around on the list at-will.
6918 */
6919 if (unlikely(napi_disable_pending(n))) {
6920 napi_complete(n);
Felix Fietkau898f8012021-02-08 11:34:08 -08006921 return work;
Herbert Xu726ce702014-12-21 07:16:21 +11006922 }
6923
Björn Töpel7fd32532020-11-30 19:51:56 +01006924 /* The NAPI context has more processing work, but busy-polling
6925 * is preferred. Exit early.
6926 */
6927 if (napi_prefer_busy_poll(n)) {
6928 if (napi_complete_done(n, work)) {
6929 /* If timeout is not set, we need to make sure
6930 * that the NAPI is re-scheduled.
6931 */
6932 napi_schedule(n);
6933 }
Felix Fietkau898f8012021-02-08 11:34:08 -08006934 return work;
Björn Töpel7fd32532020-11-30 19:51:56 +01006935 }
6936
Li RongQingd9f37d02018-07-13 14:41:36 +08006937 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006938 /* flush too old packets
6939 * If HZ < 1000, flush all packets.
6940 */
6941 napi_gro_flush(n, HZ >= 1000);
6942 }
6943
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006944 gro_normal_list(n);
6945
Herbert Xu001ce542014-12-21 07:16:22 +11006946 /* Some drivers may have called napi_schedule
6947 * prior to exhausting their budget.
6948 */
6949 if (unlikely(!list_empty(&n->poll_list))) {
6950 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6951 n->dev ? n->dev->name : "backlog");
Felix Fietkau898f8012021-02-08 11:34:08 -08006952 return work;
Herbert Xu001ce542014-12-21 07:16:22 +11006953 }
6954
Felix Fietkau898f8012021-02-08 11:34:08 -08006955 *repoll = true;
Herbert Xu726ce702014-12-21 07:16:21 +11006956
Felix Fietkau898f8012021-02-08 11:34:08 -08006957 return work;
6958}
6959
6960static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6961{
6962 bool do_repoll = false;
6963 void *have;
6964 int work;
6965
6966 list_del_init(&n->poll_list);
6967
6968 have = netpoll_poll_lock(n);
6969
6970 work = __napi_poll(n, &do_repoll);
6971
6972 if (do_repoll)
6973 list_add_tail(&n->poll_list, repoll);
6974
Herbert Xu726ce702014-12-21 07:16:21 +11006975 netpoll_poll_unlock(have);
6976
6977 return work;
6978}
6979
Wei Wang29863d42021-02-08 11:34:09 -08006980static int napi_thread_wait(struct napi_struct *napi)
6981{
6982 set_current_state(TASK_INTERRUPTIBLE);
6983
6984 while (!kthread_should_stop() && !napi_disable_pending(napi)) {
6985 if (test_bit(NAPI_STATE_SCHED, &napi->state)) {
6986 WARN_ON(!list_empty(&napi->poll_list));
6987 __set_current_state(TASK_RUNNING);
6988 return 0;
6989 }
6990
6991 schedule();
6992 set_current_state(TASK_INTERRUPTIBLE);
6993 }
6994 __set_current_state(TASK_RUNNING);
6995 return -1;
6996}
6997
6998static int napi_threaded_poll(void *data)
6999{
7000 struct napi_struct *napi = data;
7001 void *have;
7002
7003 while (!napi_thread_wait(napi)) {
7004 for (;;) {
7005 bool repoll = false;
7006
7007 local_bh_disable();
7008
7009 have = netpoll_poll_lock(napi);
7010 __napi_poll(napi, &repoll);
7011 netpoll_poll_unlock(have);
7012
Wei Wang29863d42021-02-08 11:34:09 -08007013 local_bh_enable();
7014
7015 if (!repoll)
7016 break;
7017
7018 cond_resched();
7019 }
7020 }
7021 return 0;
7022}
7023
Emese Revfy0766f782016-06-20 20:42:34 +02007024static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007025{
Christoph Lameter903ceff2014-08-17 12:30:35 -05007026 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04007027 unsigned long time_limit = jiffies +
7028 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07007029 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007030 LIST_HEAD(list);
7031 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07007032
Linus Torvalds1da177e2005-04-16 15:20:36 -07007033 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007034 list_splice_init(&sd->poll_list, &list);
7035 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007037 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007038 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007039
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007040 if (list_empty(&list)) {
7041 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Alexander Lobakinfec6e492021-02-13 14:12:02 +00007042 return;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007043 break;
7044 }
7045
Herbert Xu6bd373e2014-12-21 07:16:24 +11007046 n = list_first_entry(&list, struct napi_struct, poll_list);
7047 budget -= napi_poll(n, &repoll);
7048
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007049 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08007050 * Allow this to run for 2 jiffies since which will allow
7051 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07007052 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11007053 if (unlikely(budget <= 0 ||
7054 time_after_eq(jiffies, time_limit))) {
7055 sd->time_squeeze++;
7056 break;
7057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007058 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007059
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08007060 local_irq_disable();
7061
7062 list_splice_tail_init(&sd->poll_list, &list);
7063 list_splice_tail(&repoll, &list);
7064 list_splice(&list, &sd->poll_list);
7065 if (!list_empty(&sd->poll_list))
7066 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
7067
Eric Dumazete326bed2010-04-22 00:22:45 -07007068 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007069}
7070
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007071struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007072 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007073
7074 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007075 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007076
Taehee Yoo32b6d342019-10-21 18:47:56 +00007077 /* lookup ignore flag */
7078 bool ignore;
7079
Veaceslav Falico5d261912013-08-28 23:25:05 +02007080 /* counter for the number of times this device was added to us */
7081 u16 ref_nr;
7082
Veaceslav Falico402dae92013-09-25 09:20:09 +02007083 /* private field for the users */
7084 void *private;
7085
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007086 struct list_head list;
7087 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007088};
7089
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007090static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007091 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007092{
Veaceslav Falico5d261912013-08-28 23:25:05 +02007093 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007094
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007095 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02007096 if (adj->dev == adj_dev)
7097 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007098 }
7099 return NULL;
7100}
7101
Taehee Yooeff74232020-09-25 18:13:12 +00007102static int ____netdev_has_upper_dev(struct net_device *upper_dev,
7103 struct netdev_nested_priv *priv)
David Ahernf1170fd2016-10-17 19:15:51 -07007104{
Taehee Yooeff74232020-09-25 18:13:12 +00007105 struct net_device *dev = (struct net_device *)priv->data;
David Ahernf1170fd2016-10-17 19:15:51 -07007106
7107 return upper_dev == dev;
7108}
7109
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007110/**
7111 * netdev_has_upper_dev - Check if device is linked to an upper device
7112 * @dev: device
7113 * @upper_dev: upper device to check
7114 *
7115 * Find out if a device is linked to specified upper device and return true
7116 * in case it is. Note that this checks only immediate upper device,
7117 * not through a complete stack of devices. The caller must hold the RTNL lock.
7118 */
7119bool netdev_has_upper_dev(struct net_device *dev,
7120 struct net_device *upper_dev)
7121{
Taehee Yooeff74232020-09-25 18:13:12 +00007122 struct netdev_nested_priv priv = {
7123 .data = (void *)upper_dev,
7124 };
7125
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007126 ASSERT_RTNL();
7127
Taehee Yoo32b6d342019-10-21 18:47:56 +00007128 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007129 &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007130}
7131EXPORT_SYMBOL(netdev_has_upper_dev);
7132
7133/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01007134 * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device
David Ahern1a3f0602016-10-17 19:15:44 -07007135 * @dev: device
7136 * @upper_dev: upper device to check
7137 *
7138 * Find out if a device is linked to specified upper device and return true
7139 * in case it is. Note that this checks the entire upper device chain.
7140 * The caller must hold rcu lock.
7141 */
7142
David Ahern1a3f0602016-10-17 19:15:44 -07007143bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
7144 struct net_device *upper_dev)
7145{
Taehee Yooeff74232020-09-25 18:13:12 +00007146 struct netdev_nested_priv priv = {
7147 .data = (void *)upper_dev,
7148 };
7149
Taehee Yoo32b6d342019-10-21 18:47:56 +00007150 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007151 &priv);
David Ahern1a3f0602016-10-17 19:15:44 -07007152}
7153EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
7154
7155/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007156 * netdev_has_any_upper_dev - Check if device is linked to some device
7157 * @dev: device
7158 *
7159 * Find out if a device is linked to an upper device and return true in case
7160 * it is. The caller must hold the RTNL lock.
7161 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02007162bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007163{
7164 ASSERT_RTNL();
7165
David Ahernf1170fd2016-10-17 19:15:51 -07007166 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007167}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02007168EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007169
7170/**
7171 * netdev_master_upper_dev_get - Get master upper device
7172 * @dev: device
7173 *
7174 * Find a master upper device and return pointer to it or NULL in case
7175 * it's not there. The caller must hold the RTNL lock.
7176 */
7177struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
7178{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007179 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007180
7181 ASSERT_RTNL();
7182
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007183 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007184 return NULL;
7185
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007186 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007187 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007188 if (likely(upper->master))
7189 return upper->dev;
7190 return NULL;
7191}
7192EXPORT_SYMBOL(netdev_master_upper_dev_get);
7193
Taehee Yoo32b6d342019-10-21 18:47:56 +00007194static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
7195{
7196 struct netdev_adjacent *upper;
7197
7198 ASSERT_RTNL();
7199
7200 if (list_empty(&dev->adj_list.upper))
7201 return NULL;
7202
7203 upper = list_first_entry(&dev->adj_list.upper,
7204 struct netdev_adjacent, list);
7205 if (likely(upper->master) && !upper->ignore)
7206 return upper->dev;
7207 return NULL;
7208}
7209
David Ahern0f524a82016-10-17 19:15:52 -07007210/**
7211 * netdev_has_any_lower_dev - Check if device is linked to some device
7212 * @dev: device
7213 *
7214 * Find out if a device is linked to a lower device and return true in case
7215 * it is. The caller must hold the RTNL lock.
7216 */
7217static bool netdev_has_any_lower_dev(struct net_device *dev)
7218{
7219 ASSERT_RTNL();
7220
7221 return !list_empty(&dev->adj_list.lower);
7222}
7223
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02007224void *netdev_adjacent_get_private(struct list_head *adj_list)
7225{
7226 struct netdev_adjacent *adj;
7227
7228 adj = list_entry(adj_list, struct netdev_adjacent, list);
7229
7230 return adj->private;
7231}
7232EXPORT_SYMBOL(netdev_adjacent_get_private);
7233
Veaceslav Falico31088a12013-09-25 09:20:12 +02007234/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04007235 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
7236 * @dev: device
7237 * @iter: list_head ** of the current position
7238 *
7239 * Gets the next device from the dev's upper list, starting from iter
7240 * position. The caller must hold RCU read lock.
7241 */
7242struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
7243 struct list_head **iter)
7244{
7245 struct netdev_adjacent *upper;
7246
7247 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7248
7249 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7250
7251 if (&upper->list == &dev->adj_list.upper)
7252 return NULL;
7253
7254 *iter = &upper->list;
7255
7256 return upper->dev;
7257}
7258EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
7259
Taehee Yoo32b6d342019-10-21 18:47:56 +00007260static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
7261 struct list_head **iter,
7262 bool *ignore)
Taehee Yoo5343da42019-10-21 18:47:50 +00007263{
7264 struct netdev_adjacent *upper;
7265
7266 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
7267
7268 if (&upper->list == &dev->adj_list.upper)
7269 return NULL;
7270
7271 *iter = &upper->list;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007272 *ignore = upper->ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007273
7274 return upper->dev;
7275}
7276
David Ahern1a3f0602016-10-17 19:15:44 -07007277static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
7278 struct list_head **iter)
7279{
7280 struct netdev_adjacent *upper;
7281
7282 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7283
7284 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7285
7286 if (&upper->list == &dev->adj_list.upper)
7287 return NULL;
7288
7289 *iter = &upper->list;
7290
7291 return upper->dev;
7292}
7293
Taehee Yoo32b6d342019-10-21 18:47:56 +00007294static int __netdev_walk_all_upper_dev(struct net_device *dev,
7295 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007296 struct netdev_nested_priv *priv),
7297 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007298{
7299 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7300 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7301 int ret, cur = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007302 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007303
7304 now = dev;
7305 iter = &dev->adj_list.upper;
7306
7307 while (1) {
7308 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007309 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007310 if (ret)
7311 return ret;
7312 }
7313
7314 next = NULL;
7315 while (1) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007316 udev = __netdev_next_upper_dev(now, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007317 if (!udev)
7318 break;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007319 if (ignore)
7320 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007321
7322 next = udev;
7323 niter = &udev->adj_list.upper;
7324 dev_stack[cur] = now;
7325 iter_stack[cur++] = iter;
7326 break;
7327 }
7328
7329 if (!next) {
7330 if (!cur)
7331 return 0;
7332 next = dev_stack[--cur];
7333 niter = iter_stack[cur];
7334 }
7335
7336 now = next;
7337 iter = niter;
7338 }
7339
7340 return 0;
7341}
7342
David Ahern1a3f0602016-10-17 19:15:44 -07007343int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
7344 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007345 struct netdev_nested_priv *priv),
7346 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007347{
Taehee Yoo5343da42019-10-21 18:47:50 +00007348 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7349 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7350 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007351
Taehee Yoo5343da42019-10-21 18:47:50 +00007352 now = dev;
7353 iter = &dev->adj_list.upper;
David Ahern1a3f0602016-10-17 19:15:44 -07007354
Taehee Yoo5343da42019-10-21 18:47:50 +00007355 while (1) {
7356 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007357 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007358 if (ret)
7359 return ret;
7360 }
7361
7362 next = NULL;
7363 while (1) {
7364 udev = netdev_next_upper_dev_rcu(now, &iter);
7365 if (!udev)
7366 break;
7367
7368 next = udev;
7369 niter = &udev->adj_list.upper;
7370 dev_stack[cur] = now;
7371 iter_stack[cur++] = iter;
7372 break;
7373 }
7374
7375 if (!next) {
7376 if (!cur)
7377 return 0;
7378 next = dev_stack[--cur];
7379 niter = iter_stack[cur];
7380 }
7381
7382 now = next;
7383 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007384 }
7385
7386 return 0;
7387}
7388EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
7389
Taehee Yoo32b6d342019-10-21 18:47:56 +00007390static bool __netdev_has_upper_dev(struct net_device *dev,
7391 struct net_device *upper_dev)
7392{
Taehee Yooeff74232020-09-25 18:13:12 +00007393 struct netdev_nested_priv priv = {
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007394 .flags = 0,
Taehee Yooeff74232020-09-25 18:13:12 +00007395 .data = (void *)upper_dev,
7396 };
7397
Taehee Yoo32b6d342019-10-21 18:47:56 +00007398 ASSERT_RTNL();
7399
7400 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007401 &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007402}
7403
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007404/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02007405 * netdev_lower_get_next_private - Get the next ->private from the
7406 * lower neighbour list
7407 * @dev: device
7408 * @iter: list_head ** of the current position
7409 *
7410 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7411 * list, starting from iter position. The caller must hold either hold the
7412 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007413 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02007414 */
7415void *netdev_lower_get_next_private(struct net_device *dev,
7416 struct list_head **iter)
7417{
7418 struct netdev_adjacent *lower;
7419
7420 lower = list_entry(*iter, struct netdev_adjacent, list);
7421
7422 if (&lower->list == &dev->adj_list.lower)
7423 return NULL;
7424
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007425 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007426
7427 return lower->private;
7428}
7429EXPORT_SYMBOL(netdev_lower_get_next_private);
7430
7431/**
7432 * netdev_lower_get_next_private_rcu - Get the next ->private from the
7433 * lower neighbour list, RCU
7434 * variant
7435 * @dev: device
7436 * @iter: list_head ** of the current position
7437 *
7438 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7439 * list, starting from iter position. The caller must hold RCU read lock.
7440 */
7441void *netdev_lower_get_next_private_rcu(struct net_device *dev,
7442 struct list_head **iter)
7443{
7444 struct netdev_adjacent *lower;
7445
7446 WARN_ON_ONCE(!rcu_read_lock_held());
7447
7448 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7449
7450 if (&lower->list == &dev->adj_list.lower)
7451 return NULL;
7452
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007453 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007454
7455 return lower->private;
7456}
7457EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7458
7459/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007460 * netdev_lower_get_next - Get the next device from the lower neighbour
7461 * list
7462 * @dev: device
7463 * @iter: list_head ** of the current position
7464 *
7465 * Gets the next netdev_adjacent from the dev's lower neighbour
7466 * list, starting from iter position. The caller must hold RTNL lock or
7467 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007468 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007469 */
7470void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7471{
7472 struct netdev_adjacent *lower;
7473
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007474 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007475
7476 if (&lower->list == &dev->adj_list.lower)
7477 return NULL;
7478
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007479 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007480
7481 return lower->dev;
7482}
7483EXPORT_SYMBOL(netdev_lower_get_next);
7484
David Ahern1a3f0602016-10-17 19:15:44 -07007485static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7486 struct list_head **iter)
7487{
7488 struct netdev_adjacent *lower;
7489
David Ahern46b5ab12016-10-26 13:21:33 -07007490 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07007491
7492 if (&lower->list == &dev->adj_list.lower)
7493 return NULL;
7494
David Ahern46b5ab12016-10-26 13:21:33 -07007495 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07007496
7497 return lower->dev;
7498}
7499
Taehee Yoo32b6d342019-10-21 18:47:56 +00007500static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7501 struct list_head **iter,
7502 bool *ignore)
7503{
7504 struct netdev_adjacent *lower;
7505
7506 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7507
7508 if (&lower->list == &dev->adj_list.lower)
7509 return NULL;
7510
7511 *iter = &lower->list;
7512 *ignore = lower->ignore;
7513
7514 return lower->dev;
7515}
7516
David Ahern1a3f0602016-10-17 19:15:44 -07007517int netdev_walk_all_lower_dev(struct net_device *dev,
7518 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007519 struct netdev_nested_priv *priv),
7520 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007521{
Taehee Yoo5343da42019-10-21 18:47:50 +00007522 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7523 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7524 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007525
Taehee Yoo5343da42019-10-21 18:47:50 +00007526 now = dev;
7527 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007528
Taehee Yoo5343da42019-10-21 18:47:50 +00007529 while (1) {
7530 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007531 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007532 if (ret)
7533 return ret;
7534 }
7535
7536 next = NULL;
7537 while (1) {
7538 ldev = netdev_next_lower_dev(now, &iter);
7539 if (!ldev)
7540 break;
7541
7542 next = ldev;
7543 niter = &ldev->adj_list.lower;
7544 dev_stack[cur] = now;
7545 iter_stack[cur++] = iter;
7546 break;
7547 }
7548
7549 if (!next) {
7550 if (!cur)
7551 return 0;
7552 next = dev_stack[--cur];
7553 niter = iter_stack[cur];
7554 }
7555
7556 now = next;
7557 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007558 }
7559
7560 return 0;
7561}
7562EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7563
Taehee Yoo32b6d342019-10-21 18:47:56 +00007564static int __netdev_walk_all_lower_dev(struct net_device *dev,
7565 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007566 struct netdev_nested_priv *priv),
7567 struct netdev_nested_priv *priv)
Taehee Yoo32b6d342019-10-21 18:47:56 +00007568{
7569 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7570 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7571 int ret, cur = 0;
7572 bool ignore;
7573
7574 now = dev;
7575 iter = &dev->adj_list.lower;
7576
7577 while (1) {
7578 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007579 ret = fn(now, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007580 if (ret)
7581 return ret;
7582 }
7583
7584 next = NULL;
7585 while (1) {
7586 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7587 if (!ldev)
7588 break;
7589 if (ignore)
7590 continue;
7591
7592 next = ldev;
7593 niter = &ldev->adj_list.lower;
7594 dev_stack[cur] = now;
7595 iter_stack[cur++] = iter;
7596 break;
7597 }
7598
7599 if (!next) {
7600 if (!cur)
7601 return 0;
7602 next = dev_stack[--cur];
7603 niter = iter_stack[cur];
7604 }
7605
7606 now = next;
7607 iter = niter;
7608 }
7609
7610 return 0;
7611}
7612
Taehee Yoo7151aff2020-02-15 10:50:21 +00007613struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7614 struct list_head **iter)
David Ahern1a3f0602016-10-17 19:15:44 -07007615{
7616 struct netdev_adjacent *lower;
7617
7618 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7619 if (&lower->list == &dev->adj_list.lower)
7620 return NULL;
7621
7622 *iter = &lower->list;
7623
7624 return lower->dev;
7625}
Taehee Yoo7151aff2020-02-15 10:50:21 +00007626EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
David Ahern1a3f0602016-10-17 19:15:44 -07007627
Taehee Yoo5343da42019-10-21 18:47:50 +00007628static u8 __netdev_upper_depth(struct net_device *dev)
7629{
7630 struct net_device *udev;
7631 struct list_head *iter;
7632 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007633 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007634
7635 for (iter = &dev->adj_list.upper,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007636 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007637 udev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007638 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7639 if (ignore)
7640 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007641 if (max_depth < udev->upper_level)
7642 max_depth = udev->upper_level;
7643 }
7644
7645 return max_depth;
7646}
7647
7648static u8 __netdev_lower_depth(struct net_device *dev)
7649{
7650 struct net_device *ldev;
7651 struct list_head *iter;
7652 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007653 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007654
7655 for (iter = &dev->adj_list.lower,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007656 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007657 ldev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007658 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7659 if (ignore)
7660 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007661 if (max_depth < ldev->lower_level)
7662 max_depth = ldev->lower_level;
7663 }
7664
7665 return max_depth;
7666}
7667
Taehee Yooeff74232020-09-25 18:13:12 +00007668static int __netdev_update_upper_level(struct net_device *dev,
7669 struct netdev_nested_priv *__unused)
Taehee Yoo5343da42019-10-21 18:47:50 +00007670{
7671 dev->upper_level = __netdev_upper_depth(dev) + 1;
7672 return 0;
7673}
7674
Taehee Yooeff74232020-09-25 18:13:12 +00007675static int __netdev_update_lower_level(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007676 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007677{
7678 dev->lower_level = __netdev_lower_depth(dev) + 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007679
7680#ifdef CONFIG_LOCKDEP
7681 if (!priv)
7682 return 0;
7683
7684 if (priv->flags & NESTED_SYNC_IMM)
7685 dev->nested_level = dev->lower_level - 1;
7686 if (priv->flags & NESTED_SYNC_TODO)
7687 net_unlink_todo(dev);
7688#endif
Taehee Yoo5343da42019-10-21 18:47:50 +00007689 return 0;
7690}
7691
David Ahern1a3f0602016-10-17 19:15:44 -07007692int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7693 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007694 struct netdev_nested_priv *priv),
7695 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007696{
Taehee Yoo5343da42019-10-21 18:47:50 +00007697 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7698 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7699 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007700
Taehee Yoo5343da42019-10-21 18:47:50 +00007701 now = dev;
7702 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007703
Taehee Yoo5343da42019-10-21 18:47:50 +00007704 while (1) {
7705 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007706 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007707 if (ret)
7708 return ret;
7709 }
7710
7711 next = NULL;
7712 while (1) {
7713 ldev = netdev_next_lower_dev_rcu(now, &iter);
7714 if (!ldev)
7715 break;
7716
7717 next = ldev;
7718 niter = &ldev->adj_list.lower;
7719 dev_stack[cur] = now;
7720 iter_stack[cur++] = iter;
7721 break;
7722 }
7723
7724 if (!next) {
7725 if (!cur)
7726 return 0;
7727 next = dev_stack[--cur];
7728 niter = iter_stack[cur];
7729 }
7730
7731 now = next;
7732 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007733 }
7734
7735 return 0;
7736}
7737EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7738
Jiri Pirko7ce856a2016-07-04 08:23:12 +02007739/**
dingtianhonge001bfa2013-12-13 10:19:55 +08007740 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7741 * lower neighbour list, RCU
7742 * variant
7743 * @dev: device
7744 *
7745 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7746 * list. The caller must hold RCU read lock.
7747 */
7748void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7749{
7750 struct netdev_adjacent *lower;
7751
7752 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7753 struct netdev_adjacent, list);
7754 if (lower)
7755 return lower->private;
7756 return NULL;
7757}
7758EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7759
7760/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007761 * netdev_master_upper_dev_get_rcu - Get master upper device
7762 * @dev: device
7763 *
7764 * Find a master upper device and return pointer to it or NULL in case
7765 * it's not there. The caller must hold the RCU read lock.
7766 */
7767struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7768{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007769 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007770
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007771 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007772 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007773 if (upper && likely(upper->master))
7774 return upper->dev;
7775 return NULL;
7776}
7777EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7778
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307779static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007780 struct net_device *adj_dev,
7781 struct list_head *dev_list)
7782{
7783 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007784
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007785 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7786 "upper_%s" : "lower_%s", adj_dev->name);
7787 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7788 linkname);
7789}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307790static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007791 char *name,
7792 struct list_head *dev_list)
7793{
7794 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007795
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007796 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7797 "upper_%s" : "lower_%s", name);
7798 sysfs_remove_link(&(dev->dev.kobj), linkname);
7799}
7800
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007801static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7802 struct net_device *adj_dev,
7803 struct list_head *dev_list)
7804{
7805 return (dev_list == &dev->adj_list.upper ||
7806 dev_list == &dev->adj_list.lower) &&
7807 net_eq(dev_net(dev), dev_net(adj_dev));
7808}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007809
Veaceslav Falico5d261912013-08-28 23:25:05 +02007810static int __netdev_adjacent_dev_insert(struct net_device *dev,
7811 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02007812 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007813 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007814{
7815 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007816 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007817
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007818 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007819
7820 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07007821 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07007822 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7823 dev->name, adj_dev->name, adj->ref_nr);
7824
Veaceslav Falico5d261912013-08-28 23:25:05 +02007825 return 0;
7826 }
7827
7828 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7829 if (!adj)
7830 return -ENOMEM;
7831
7832 adj->dev = adj_dev;
7833 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07007834 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007835 adj->private = private;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007836 adj->ignore = false;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007837 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007838
David Ahern67b62f92016-10-17 19:15:53 -07007839 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7840 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007841
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007842 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007843 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007844 if (ret)
7845 goto free_adj;
7846 }
7847
Veaceslav Falico7863c052013-09-25 09:20:06 +02007848 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007849 if (master) {
7850 ret = sysfs_create_link(&(dev->dev.kobj),
7851 &(adj_dev->dev.kobj), "master");
7852 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02007853 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007854
Veaceslav Falico7863c052013-09-25 09:20:06 +02007855 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007856 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02007857 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007858 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007859
7860 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007861
Veaceslav Falico5831d662013-09-25 09:20:32 +02007862remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007863 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007864 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007865free_adj:
7866 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02007867 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007868
7869 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007870}
7871
stephen hemminger1d143d92013-12-29 14:01:29 -08007872static void __netdev_adjacent_dev_remove(struct net_device *dev,
7873 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007874 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007875 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007876{
7877 struct netdev_adjacent *adj;
7878
David Ahern67b62f92016-10-17 19:15:53 -07007879 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
7880 dev->name, adj_dev->name, ref_nr);
7881
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007882 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007883
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007884 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07007885 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007886 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07007887 WARN_ON(1);
7888 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007889 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007890
Andrew Collins93409032016-10-03 13:43:02 -06007891 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07007892 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7893 dev->name, adj_dev->name, ref_nr,
7894 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06007895 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007896 return;
7897 }
7898
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007899 if (adj->master)
7900 sysfs_remove_link(&(dev->dev.kobj), "master");
7901
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007902 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007903 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007904
Veaceslav Falico5d261912013-08-28 23:25:05 +02007905 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07007906 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007907 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007908 dev_put(adj_dev);
7909 kfree_rcu(adj, rcu);
7910}
7911
stephen hemminger1d143d92013-12-29 14:01:29 -08007912static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7913 struct net_device *upper_dev,
7914 struct list_head *up_list,
7915 struct list_head *down_list,
7916 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007917{
7918 int ret;
7919
David Ahern790510d2016-10-17 19:15:43 -07007920 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06007921 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007922 if (ret)
7923 return ret;
7924
David Ahern790510d2016-10-17 19:15:43 -07007925 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06007926 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007927 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07007928 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007929 return ret;
7930 }
7931
7932 return 0;
7933}
7934
stephen hemminger1d143d92013-12-29 14:01:29 -08007935static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7936 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007937 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007938 struct list_head *up_list,
7939 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007940{
Andrew Collins93409032016-10-03 13:43:02 -06007941 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7942 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007943}
7944
stephen hemminger1d143d92013-12-29 14:01:29 -08007945static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7946 struct net_device *upper_dev,
7947 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007948{
David Ahernf1170fd2016-10-17 19:15:51 -07007949 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7950 &dev->adj_list.upper,
7951 &upper_dev->adj_list.lower,
7952 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007953}
7954
stephen hemminger1d143d92013-12-29 14:01:29 -08007955static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7956 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007957{
Andrew Collins93409032016-10-03 13:43:02 -06007958 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007959 &dev->adj_list.upper,
7960 &upper_dev->adj_list.lower);
7961}
Veaceslav Falico5d261912013-08-28 23:25:05 +02007962
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007963static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007964 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07007965 void *upper_priv, void *upper_info,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007966 struct netdev_nested_priv *priv,
David Ahern42ab19e2017-10-04 17:48:47 -07007967 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007968{
David Ahern51d0c0472017-10-04 17:48:45 -07007969 struct netdev_notifier_changeupper_info changeupper_info = {
7970 .info = {
7971 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007972 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07007973 },
7974 .upper_dev = upper_dev,
7975 .master = master,
7976 .linking = true,
7977 .upper_info = upper_info,
7978 };
Mike Manning50d629e2018-02-26 23:49:30 +00007979 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007980 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007981
7982 ASSERT_RTNL();
7983
7984 if (dev == upper_dev)
7985 return -EBUSY;
7986
7987 /* To prevent loops, check if dev is not upper device to upper_dev. */
Taehee Yoo32b6d342019-10-21 18:47:56 +00007988 if (__netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007989 return -EBUSY;
7990
Taehee Yoo5343da42019-10-21 18:47:50 +00007991 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
7992 return -EMLINK;
7993
Mike Manning50d629e2018-02-26 23:49:30 +00007994 if (!master) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007995 if (__netdev_has_upper_dev(dev, upper_dev))
Mike Manning50d629e2018-02-26 23:49:30 +00007996 return -EEXIST;
7997 } else {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007998 master_dev = __netdev_master_upper_dev_get(dev);
Mike Manning50d629e2018-02-26 23:49:30 +00007999 if (master_dev)
8000 return master_dev == upper_dev ? -EEXIST : -EBUSY;
8001 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008002
David Ahern51d0c0472017-10-04 17:48:45 -07008003 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02008004 &changeupper_info.info);
8005 ret = notifier_to_errno(ret);
8006 if (ret)
8007 return ret;
8008
Jiri Pirko6dffb042015-12-03 12:12:10 +01008009 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02008010 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008011 if (ret)
8012 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008013
David Ahern51d0c0472017-10-04 17:48:45 -07008014 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01008015 &changeupper_info.info);
8016 ret = notifier_to_errno(ret);
8017 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07008018 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01008019
Taehee Yoo5343da42019-10-21 18:47:50 +00008020 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008021 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00008022
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008023 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008024 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008025 priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00008026
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008027 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02008028
David Ahernf1170fd2016-10-17 19:15:51 -07008029rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008030 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008031
8032 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008033}
8034
8035/**
8036 * netdev_upper_dev_link - Add a link to the upper device
8037 * @dev: device
8038 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08008039 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008040 *
8041 * Adds a link to device which is upper to this one. The caller must hold
8042 * the RTNL lock. On a failure a negative errno code is returned.
8043 * On success the reference counts are adjusted and the function
8044 * returns zero.
8045 */
8046int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008047 struct net_device *upper_dev,
8048 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008049{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008050 struct netdev_nested_priv priv = {
8051 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8052 .data = NULL,
8053 };
8054
David Ahern42ab19e2017-10-04 17:48:47 -07008055 return __netdev_upper_dev_link(dev, upper_dev, false,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008056 NULL, NULL, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008057}
8058EXPORT_SYMBOL(netdev_upper_dev_link);
8059
8060/**
8061 * netdev_master_upper_dev_link - Add a master link to the upper device
8062 * @dev: device
8063 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01008064 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01008065 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08008066 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008067 *
8068 * Adds a link to device which is upper to this one. In this case, only
8069 * one master upper device can be linked, although other non-master devices
8070 * might be linked as well. The caller must hold the RTNL lock.
8071 * On a failure a negative errno code is returned. On success the reference
8072 * counts are adjusted and the function returns zero.
8073 */
8074int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01008075 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07008076 void *upper_priv, void *upper_info,
8077 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008078{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008079 struct netdev_nested_priv priv = {
8080 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8081 .data = NULL,
8082 };
8083
Jiri Pirko29bf24a2015-12-03 12:12:11 +01008084 return __netdev_upper_dev_link(dev, upper_dev, true,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008085 upper_priv, upper_info, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008086}
8087EXPORT_SYMBOL(netdev_master_upper_dev_link);
8088
Taehee Yoofe8300f2020-09-25 18:13:02 +00008089static void __netdev_upper_dev_unlink(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008090 struct net_device *upper_dev,
8091 struct netdev_nested_priv *priv)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008092{
David Ahern51d0c0472017-10-04 17:48:45 -07008093 struct netdev_notifier_changeupper_info changeupper_info = {
8094 .info = {
8095 .dev = dev,
8096 },
8097 .upper_dev = upper_dev,
8098 .linking = false,
8099 };
tchardingf4563a72017-02-09 17:56:07 +11008100
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008101 ASSERT_RTNL();
8102
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008103 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008104
David Ahern51d0c0472017-10-04 17:48:45 -07008105 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02008106 &changeupper_info.info);
8107
Veaceslav Falico2f268f12013-09-25 09:20:07 +02008108 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02008109
David Ahern51d0c0472017-10-04 17:48:45 -07008110 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02008111 &changeupper_info.info);
Taehee Yoo5343da42019-10-21 18:47:50 +00008112
8113 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008114 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00008115
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008116 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008117 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008118 priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008119}
Taehee Yoofe8300f2020-09-25 18:13:02 +00008120
8121/**
8122 * netdev_upper_dev_unlink - Removes a link to upper device
8123 * @dev: device
8124 * @upper_dev: new upper device
8125 *
8126 * Removes a link to device which is upper to this one. The caller must hold
8127 * the RTNL lock.
8128 */
8129void netdev_upper_dev_unlink(struct net_device *dev,
8130 struct net_device *upper_dev)
8131{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008132 struct netdev_nested_priv priv = {
8133 .flags = NESTED_SYNC_TODO,
8134 .data = NULL,
8135 };
8136
8137 __netdev_upper_dev_unlink(dev, upper_dev, &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00008138}
8139EXPORT_SYMBOL(netdev_upper_dev_unlink);
8140
Taehee Yoo32b6d342019-10-21 18:47:56 +00008141static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
8142 struct net_device *lower_dev,
8143 bool val)
8144{
8145 struct netdev_adjacent *adj;
8146
8147 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
8148 if (adj)
8149 adj->ignore = val;
8150
8151 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
8152 if (adj)
8153 adj->ignore = val;
8154}
8155
8156static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
8157 struct net_device *lower_dev)
8158{
8159 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
8160}
8161
8162static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
8163 struct net_device *lower_dev)
8164{
8165 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
8166}
8167
8168int netdev_adjacent_change_prepare(struct net_device *old_dev,
8169 struct net_device *new_dev,
8170 struct net_device *dev,
8171 struct netlink_ext_ack *extack)
8172{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008173 struct netdev_nested_priv priv = {
8174 .flags = 0,
8175 .data = NULL,
8176 };
Taehee Yoo32b6d342019-10-21 18:47:56 +00008177 int err;
8178
8179 if (!new_dev)
8180 return 0;
8181
8182 if (old_dev && new_dev != old_dev)
8183 netdev_adjacent_dev_disable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008184 err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
8185 extack);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008186 if (err) {
8187 if (old_dev && new_dev != old_dev)
8188 netdev_adjacent_dev_enable(dev, old_dev);
8189 return err;
8190 }
8191
8192 return 0;
8193}
8194EXPORT_SYMBOL(netdev_adjacent_change_prepare);
8195
8196void netdev_adjacent_change_commit(struct net_device *old_dev,
8197 struct net_device *new_dev,
8198 struct net_device *dev)
8199{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008200 struct netdev_nested_priv priv = {
8201 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8202 .data = NULL,
8203 };
8204
Taehee Yoo32b6d342019-10-21 18:47:56 +00008205 if (!new_dev || !old_dev)
8206 return;
8207
8208 if (new_dev == old_dev)
8209 return;
8210
8211 netdev_adjacent_dev_enable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008212 __netdev_upper_dev_unlink(old_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008213}
8214EXPORT_SYMBOL(netdev_adjacent_change_commit);
8215
8216void netdev_adjacent_change_abort(struct net_device *old_dev,
8217 struct net_device *new_dev,
8218 struct net_device *dev)
8219{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008220 struct netdev_nested_priv priv = {
8221 .flags = 0,
8222 .data = NULL,
8223 };
8224
Taehee Yoo32b6d342019-10-21 18:47:56 +00008225 if (!new_dev)
8226 return;
8227
8228 if (old_dev && new_dev != old_dev)
8229 netdev_adjacent_dev_enable(dev, old_dev);
8230
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008231 __netdev_upper_dev_unlink(new_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008232}
8233EXPORT_SYMBOL(netdev_adjacent_change_abort);
8234
Moni Shoua61bd3852015-02-03 16:48:29 +02008235/**
8236 * netdev_bonding_info_change - Dispatch event about slave change
8237 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09008238 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02008239 *
8240 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
8241 * The caller must hold the RTNL lock.
8242 */
8243void netdev_bonding_info_change(struct net_device *dev,
8244 struct netdev_bonding_info *bonding_info)
8245{
David Ahern51d0c0472017-10-04 17:48:45 -07008246 struct netdev_notifier_bonding_info info = {
8247 .info.dev = dev,
8248 };
Moni Shoua61bd3852015-02-03 16:48:29 +02008249
8250 memcpy(&info.bonding_info, bonding_info,
8251 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07008252 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02008253 &info.info);
8254}
8255EXPORT_SYMBOL(netdev_bonding_info_change);
8256
Maor Gottliebcff9f122020-04-30 22:21:31 +03008257/**
8258 * netdev_get_xmit_slave - Get the xmit slave of master device
Andrew Lunn88425002020-07-13 01:14:59 +02008259 * @dev: device
Maor Gottliebcff9f122020-04-30 22:21:31 +03008260 * @skb: The packet
8261 * @all_slaves: assume all the slaves are active
8262 *
8263 * The reference counters are not incremented so the caller must be
8264 * careful with locks. The caller must hold RCU lock.
8265 * %NULL is returned if no slave is found.
8266 */
8267
8268struct net_device *netdev_get_xmit_slave(struct net_device *dev,
8269 struct sk_buff *skb,
8270 bool all_slaves)
8271{
8272 const struct net_device_ops *ops = dev->netdev_ops;
8273
8274 if (!ops->ndo_get_xmit_slave)
8275 return NULL;
8276 return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
8277}
8278EXPORT_SYMBOL(netdev_get_xmit_slave);
8279
Tariq Toukan719a4022021-01-17 16:59:42 +02008280static struct net_device *netdev_sk_get_lower_dev(struct net_device *dev,
8281 struct sock *sk)
8282{
8283 const struct net_device_ops *ops = dev->netdev_ops;
8284
8285 if (!ops->ndo_sk_get_lower_dev)
8286 return NULL;
8287 return ops->ndo_sk_get_lower_dev(dev, sk);
8288}
8289
8290/**
8291 * netdev_sk_get_lowest_dev - Get the lowest device in chain given device and socket
8292 * @dev: device
8293 * @sk: the socket
8294 *
8295 * %NULL is returned if no lower device is found.
8296 */
8297
8298struct net_device *netdev_sk_get_lowest_dev(struct net_device *dev,
8299 struct sock *sk)
8300{
8301 struct net_device *lower;
8302
8303 lower = netdev_sk_get_lower_dev(dev, sk);
8304 while (lower) {
8305 dev = lower;
8306 lower = netdev_sk_get_lower_dev(dev, sk);
8307 }
8308
8309 return dev;
8310}
8311EXPORT_SYMBOL(netdev_sk_get_lowest_dev);
8312
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008313static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008314{
8315 struct netdev_adjacent *iter;
8316
8317 struct net *net = dev_net(dev);
8318
8319 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008320 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008321 continue;
8322 netdev_adjacent_sysfs_add(iter->dev, dev,
8323 &iter->dev->adj_list.lower);
8324 netdev_adjacent_sysfs_add(dev, iter->dev,
8325 &dev->adj_list.upper);
8326 }
8327
8328 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008329 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008330 continue;
8331 netdev_adjacent_sysfs_add(iter->dev, dev,
8332 &iter->dev->adj_list.upper);
8333 netdev_adjacent_sysfs_add(dev, iter->dev,
8334 &dev->adj_list.lower);
8335 }
8336}
8337
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008338static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008339{
8340 struct netdev_adjacent *iter;
8341
8342 struct net *net = dev_net(dev);
8343
8344 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008345 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008346 continue;
8347 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8348 &iter->dev->adj_list.lower);
8349 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8350 &dev->adj_list.upper);
8351 }
8352
8353 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008354 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008355 continue;
8356 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8357 &iter->dev->adj_list.upper);
8358 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8359 &dev->adj_list.lower);
8360 }
8361}
8362
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008363void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02008364{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008365 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02008366
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008367 struct net *net = dev_net(dev);
8368
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008369 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008370 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008371 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008372 netdev_adjacent_sysfs_del(iter->dev, oldname,
8373 &iter->dev->adj_list.lower);
8374 netdev_adjacent_sysfs_add(iter->dev, dev,
8375 &iter->dev->adj_list.lower);
8376 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008377
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008378 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008379 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008380 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008381 netdev_adjacent_sysfs_del(iter->dev, oldname,
8382 &iter->dev->adj_list.upper);
8383 netdev_adjacent_sysfs_add(iter->dev, dev,
8384 &iter->dev->adj_list.upper);
8385 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008386}
Veaceslav Falico402dae92013-09-25 09:20:09 +02008387
8388void *netdev_lower_dev_get_private(struct net_device *dev,
8389 struct net_device *lower_dev)
8390{
8391 struct netdev_adjacent *lower;
8392
8393 if (!lower_dev)
8394 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008395 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02008396 if (!lower)
8397 return NULL;
8398
8399 return lower->private;
8400}
8401EXPORT_SYMBOL(netdev_lower_dev_get_private);
8402
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04008403
Jiri Pirko04d48262015-12-03 12:12:15 +01008404/**
Mauro Carvalho Chehabc1639be2020-11-16 11:17:58 +01008405 * netdev_lower_state_changed - Dispatch event about lower device state change
Jiri Pirko04d48262015-12-03 12:12:15 +01008406 * @lower_dev: device
8407 * @lower_state_info: state to dispatch
8408 *
8409 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
8410 * The caller must hold the RTNL lock.
8411 */
8412void netdev_lower_state_changed(struct net_device *lower_dev,
8413 void *lower_state_info)
8414{
David Ahern51d0c0472017-10-04 17:48:45 -07008415 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
8416 .info.dev = lower_dev,
8417 };
Jiri Pirko04d48262015-12-03 12:12:15 +01008418
8419 ASSERT_RTNL();
8420 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07008421 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01008422 &changelowerstate_info.info);
8423}
8424EXPORT_SYMBOL(netdev_lower_state_changed);
8425
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008426static void dev_change_rx_flags(struct net_device *dev, int flags)
8427{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008428 const struct net_device_ops *ops = dev->netdev_ops;
8429
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05008430 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008431 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008432}
8433
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008434static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07008435{
Eric Dumazetb536db92011-11-30 21:42:26 +00008436 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06008437 kuid_t uid;
8438 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07008439
Patrick McHardy24023452007-07-14 18:51:31 -07008440 ASSERT_RTNL();
8441
Wang Chendad9b332008-06-18 01:48:28 -07008442 dev->flags |= IFF_PROMISC;
8443 dev->promiscuity += inc;
8444 if (dev->promiscuity == 0) {
8445 /*
8446 * Avoid overflow.
8447 * If inc causes overflow, untouch promisc and return error.
8448 */
8449 if (inc < 0)
8450 dev->flags &= ~IFF_PROMISC;
8451 else {
8452 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008453 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
8454 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008455 return -EOVERFLOW;
8456 }
8457 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008458 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008459 pr_info("device %s %s promiscuous mode\n",
8460 dev->name,
8461 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11008462 if (audit_enabled) {
8463 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04008464 audit_log(audit_context(), GFP_ATOMIC,
8465 AUDIT_ANOM_PROMISCUOUS,
8466 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
8467 dev->name, (dev->flags & IFF_PROMISC),
8468 (old_flags & IFF_PROMISC),
8469 from_kuid(&init_user_ns, audit_get_loginuid(current)),
8470 from_kuid(&init_user_ns, uid),
8471 from_kgid(&init_user_ns, gid),
8472 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11008473 }
Patrick McHardy24023452007-07-14 18:51:31 -07008474
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008475 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07008476 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008477 if (notify)
8478 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07008479 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008480}
8481
Linus Torvalds1da177e2005-04-16 15:20:36 -07008482/**
8483 * dev_set_promiscuity - update promiscuity count on a device
8484 * @dev: device
8485 * @inc: modifier
8486 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07008487 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008488 * remains above zero the interface remains promiscuous. Once it hits zero
8489 * the device reverts back to normal filtering operation. A negative inc
8490 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07008491 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008492 */
Wang Chendad9b332008-06-18 01:48:28 -07008493int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494{
Eric Dumazetb536db92011-11-30 21:42:26 +00008495 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07008496 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008498 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07008499 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07008500 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07008501 if (dev->flags != old_flags)
8502 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07008503 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008504}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008505EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008506
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008507static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008509 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008510
Patrick McHardy24023452007-07-14 18:51:31 -07008511 ASSERT_RTNL();
8512
Linus Torvalds1da177e2005-04-16 15:20:36 -07008513 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07008514 dev->allmulti += inc;
8515 if (dev->allmulti == 0) {
8516 /*
8517 * Avoid overflow.
8518 * If inc causes overflow, untouch allmulti and return error.
8519 */
8520 if (inc < 0)
8521 dev->flags &= ~IFF_ALLMULTI;
8522 else {
8523 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008524 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
8525 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008526 return -EOVERFLOW;
8527 }
8528 }
Patrick McHardy24023452007-07-14 18:51:31 -07008529 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008530 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07008531 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008532 if (notify)
8533 __dev_notify_flags(dev, old_flags,
8534 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07008535 }
Wang Chendad9b332008-06-18 01:48:28 -07008536 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008537}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008538
8539/**
8540 * dev_set_allmulti - update allmulti count on a device
8541 * @dev: device
8542 * @inc: modifier
8543 *
8544 * Add or remove reception of all multicast frames to a device. While the
8545 * count in the device remains above zero the interface remains listening
8546 * to all interfaces. Once it hits zero the device reverts back to normal
8547 * filtering operation. A negative @inc value is used to drop the counter
8548 * when releasing a resource needing all multicasts.
8549 * Return 0 if successful or a negative errno code on error.
8550 */
8551
8552int dev_set_allmulti(struct net_device *dev, int inc)
8553{
8554 return __dev_set_allmulti(dev, inc, true);
8555}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008556EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07008557
8558/*
8559 * Upload unicast and multicast address lists to device and
8560 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08008561 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07008562 * are present.
8563 */
8564void __dev_set_rx_mode(struct net_device *dev)
8565{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008566 const struct net_device_ops *ops = dev->netdev_ops;
8567
Patrick McHardy4417da62007-06-27 01:28:10 -07008568 /* dev_open will call this function so the list will stay sane. */
8569 if (!(dev->flags&IFF_UP))
8570 return;
8571
8572 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09008573 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07008574
Jiri Pirko01789342011-08-16 06:29:00 +00008575 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07008576 /* Unicast addresses changes may only happen under the rtnl,
8577 * therefore calling __dev_set_promiscuity here is safe.
8578 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008579 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008580 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008581 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008582 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008583 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008584 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07008585 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008586 }
Jiri Pirko01789342011-08-16 06:29:00 +00008587
8588 if (ops->ndo_set_rx_mode)
8589 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008590}
8591
8592void dev_set_rx_mode(struct net_device *dev)
8593{
David S. Millerb9e40852008-07-15 00:15:08 -07008594 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008595 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07008596 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008597}
8598
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008599/**
8600 * dev_get_flags - get flags reported to userspace
8601 * @dev: device
8602 *
8603 * Get the combination of flag bits exported through APIs to userspace.
8604 */
Eric Dumazet95c96172012-04-15 05:58:06 +00008605unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008606{
Eric Dumazet95c96172012-04-15 05:58:06 +00008607 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008608
8609 flags = (dev->flags & ~(IFF_PROMISC |
8610 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08008611 IFF_RUNNING |
8612 IFF_LOWER_UP |
8613 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008614 (dev->gflags & (IFF_PROMISC |
8615 IFF_ALLMULTI));
8616
Stefan Rompfb00055a2006-03-20 17:09:11 -08008617 if (netif_running(dev)) {
8618 if (netif_oper_up(dev))
8619 flags |= IFF_RUNNING;
8620 if (netif_carrier_ok(dev))
8621 flags |= IFF_LOWER_UP;
8622 if (netif_dormant(dev))
8623 flags |= IFF_DORMANT;
8624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008625
8626 return flags;
8627}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008628EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008629
Petr Machata6d040322018-12-06 17:05:43 +00008630int __dev_change_flags(struct net_device *dev, unsigned int flags,
8631 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008632{
Eric Dumazetb536db92011-11-30 21:42:26 +00008633 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00008634 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008635
Patrick McHardy24023452007-07-14 18:51:31 -07008636 ASSERT_RTNL();
8637
Linus Torvalds1da177e2005-04-16 15:20:36 -07008638 /*
8639 * Set the flags on our device.
8640 */
8641
8642 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8643 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8644 IFF_AUTOMEDIA)) |
8645 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8646 IFF_ALLMULTI));
8647
8648 /*
8649 * Load in the correct multicast list now the flags have changed.
8650 */
8651
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008652 if ((old_flags ^ flags) & IFF_MULTICAST)
8653 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07008654
Patrick McHardy4417da62007-06-27 01:28:10 -07008655 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008656
8657 /*
8658 * Have we downed the interface. We handle IFF_UP ourselves
8659 * according to user attempts to set it, rather than blindly
8660 * setting it.
8661 */
8662
8663 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07008664 if ((old_flags ^ flags) & IFF_UP) {
8665 if (old_flags & IFF_UP)
8666 __dev_close(dev);
8667 else
Petr Machata40c900a2018-12-06 17:05:47 +00008668 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07008669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008670
Linus Torvalds1da177e2005-04-16 15:20:36 -07008671 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008672 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008673 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008674
Linus Torvalds1da177e2005-04-16 15:20:36 -07008675 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008676
8677 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8678 if (dev->flags != old_flags)
8679 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008680 }
8681
8682 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11008683 * is important. Some (broken) drivers set IFF_PROMISC, when
8684 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008685 */
8686 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008687 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8688
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008690 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008691 }
8692
Patrick McHardybd380812010-02-26 06:34:53 +00008693 return ret;
8694}
8695
Nicolas Dichtela528c212013-09-25 12:02:44 +02008696void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8697 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00008698{
8699 unsigned int changes = dev->flags ^ old_flags;
8700
Nicolas Dichtela528c212013-09-25 12:02:44 +02008701 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008702 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008703
Patrick McHardybd380812010-02-26 06:34:53 +00008704 if (changes & IFF_UP) {
8705 if (dev->flags & IFF_UP)
8706 call_netdevice_notifiers(NETDEV_UP, dev);
8707 else
8708 call_netdevice_notifiers(NETDEV_DOWN, dev);
8709 }
8710
8711 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008712 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07008713 struct netdev_notifier_change_info change_info = {
8714 .info = {
8715 .dev = dev,
8716 },
8717 .flags_changed = changes,
8718 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008719
David Ahern51d0c0472017-10-04 17:48:45 -07008720 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008721 }
Patrick McHardybd380812010-02-26 06:34:53 +00008722}
8723
8724/**
8725 * dev_change_flags - change device settings
8726 * @dev: device
8727 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00008728 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00008729 *
8730 * Change settings on device based state flags. The flags are
8731 * in the userspace exported format.
8732 */
Petr Machata567c5e12018-12-06 17:05:42 +00008733int dev_change_flags(struct net_device *dev, unsigned int flags,
8734 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00008735{
Eric Dumazetb536db92011-11-30 21:42:26 +00008736 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008737 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00008738
Petr Machata6d040322018-12-06 17:05:43 +00008739 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00008740 if (ret < 0)
8741 return ret;
8742
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008743 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008744 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008745 return ret;
8746}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008747EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008748
WANG Congf51048c2017-07-06 15:01:57 -07008749int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008750{
8751 const struct net_device_ops *ops = dev->netdev_ops;
8752
8753 if (ops->ndo_change_mtu)
8754 return ops->ndo_change_mtu(dev, new_mtu);
8755
Eric Dumazet501a90c2019-12-05 20:43:46 -08008756 /* Pairs with all the lockless reads of dev->mtu in the stack */
8757 WRITE_ONCE(dev->mtu, new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008758 return 0;
8759}
WANG Congf51048c2017-07-06 15:01:57 -07008760EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008761
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008762int dev_validate_mtu(struct net_device *dev, int new_mtu,
8763 struct netlink_ext_ack *extack)
8764{
8765 /* MTU must be positive, and in range */
8766 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
8767 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
8768 return -EINVAL;
8769 }
8770
8771 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
8772 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
8773 return -EINVAL;
8774 }
8775 return 0;
8776}
8777
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008778/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008779 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008780 * @dev: device
8781 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008782 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008783 *
8784 * Change the maximum transfer size of the network device.
8785 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008786int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8787 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008788{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008789 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008790
8791 if (new_mtu == dev->mtu)
8792 return 0;
8793
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008794 err = dev_validate_mtu(dev, new_mtu, extack);
8795 if (err)
8796 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008797
8798 if (!netif_device_present(dev))
8799 return -ENODEV;
8800
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01008801 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8802 err = notifier_to_errno(err);
8803 if (err)
8804 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008805
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008806 orig_mtu = dev->mtu;
8807 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008808
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008809 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008810 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8811 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008812 err = notifier_to_errno(err);
8813 if (err) {
8814 /* setting mtu back and notifying everyone again,
8815 * so that they have a chance to revert changes.
8816 */
8817 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008818 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8819 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008820 }
8821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008822 return err;
8823}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008824
8825int dev_set_mtu(struct net_device *dev, int new_mtu)
8826{
8827 struct netlink_ext_ack extack;
8828 int err;
8829
Li RongQinga6bcfc82018-08-03 15:45:21 +08008830 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008831 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08008832 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008833 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8834 return err;
8835}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008836EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008837
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008838/**
Cong Wang6a643dd2018-01-25 18:26:22 -08008839 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8840 * @dev: device
8841 * @new_len: new tx queue length
8842 */
8843int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8844{
8845 unsigned int orig_len = dev->tx_queue_len;
8846 int res;
8847
8848 if (new_len != (unsigned int)new_len)
8849 return -ERANGE;
8850
8851 if (new_len != orig_len) {
8852 dev->tx_queue_len = new_len;
8853 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8854 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03008855 if (res)
8856 goto err_rollback;
8857 res = dev_qdisc_change_tx_queue_len(dev);
8858 if (res)
8859 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08008860 }
8861
8862 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03008863
8864err_rollback:
8865 netdev_err(dev, "refused to change device tx_queue_len\n");
8866 dev->tx_queue_len = orig_len;
8867 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08008868}
8869
8870/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008871 * dev_set_group - Change group this device belongs to
8872 * @dev: device
8873 * @new_group: group this device should belong to
8874 */
8875void dev_set_group(struct net_device *dev, int new_group)
8876{
8877 dev->group = new_group;
8878}
8879EXPORT_SYMBOL(dev_set_group);
8880
8881/**
Petr Machatad59cdf92018-12-13 11:54:35 +00008882 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
8883 * @dev: device
8884 * @addr: new address
8885 * @extack: netlink extended ack
8886 */
8887int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
8888 struct netlink_ext_ack *extack)
8889{
8890 struct netdev_notifier_pre_changeaddr_info info = {
8891 .info.dev = dev,
8892 .info.extack = extack,
8893 .dev_addr = addr,
8894 };
8895 int rc;
8896
8897 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
8898 return notifier_to_errno(rc);
8899}
8900EXPORT_SYMBOL(dev_pre_changeaddr_notify);
8901
8902/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008903 * dev_set_mac_address - Change Media Access Control Address
8904 * @dev: device
8905 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00008906 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008907 *
8908 * Change the hardware (MAC) address of the device
8909 */
Petr Machata3a37a962018-12-13 11:54:30 +00008910int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
8911 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008912{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008913 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008914 int err;
8915
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008916 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008917 return -EOPNOTSUPP;
8918 if (sa->sa_family != dev->type)
8919 return -EINVAL;
8920 if (!netif_device_present(dev))
8921 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00008922 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
8923 if (err)
8924 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008925 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00008926 if (err)
8927 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00008928 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00008929 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008930 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00008931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008932}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008933EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008934
Cong Wang3b23a322021-02-11 11:34:10 -08008935static DECLARE_RWSEM(dev_addr_sem);
8936
8937int dev_set_mac_address_user(struct net_device *dev, struct sockaddr *sa,
8938 struct netlink_ext_ack *extack)
8939{
8940 int ret;
8941
8942 down_write(&dev_addr_sem);
8943 ret = dev_set_mac_address(dev, sa, extack);
8944 up_write(&dev_addr_sem);
8945 return ret;
8946}
8947EXPORT_SYMBOL(dev_set_mac_address_user);
8948
8949int dev_get_mac_address(struct sockaddr *sa, struct net *net, char *dev_name)
8950{
8951 size_t size = sizeof(sa->sa_data);
8952 struct net_device *dev;
8953 int ret = 0;
8954
8955 down_read(&dev_addr_sem);
8956 rcu_read_lock();
8957
8958 dev = dev_get_by_name_rcu(net, dev_name);
8959 if (!dev) {
8960 ret = -ENODEV;
8961 goto unlock;
8962 }
8963 if (!dev->addr_len)
8964 memset(sa->sa_data, 0, size);
8965 else
8966 memcpy(sa->sa_data, dev->dev_addr,
8967 min_t(size_t, size, dev->addr_len));
8968 sa->sa_family = dev->type;
8969
8970unlock:
8971 rcu_read_unlock();
8972 up_read(&dev_addr_sem);
8973 return ret;
8974}
8975EXPORT_SYMBOL(dev_get_mac_address);
8976
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008977/**
8978 * dev_change_carrier - Change device carrier
8979 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00008980 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008981 *
8982 * Change device carrier
8983 */
8984int dev_change_carrier(struct net_device *dev, bool new_carrier)
8985{
8986 const struct net_device_ops *ops = dev->netdev_ops;
8987
8988 if (!ops->ndo_change_carrier)
8989 return -EOPNOTSUPP;
8990 if (!netif_device_present(dev))
8991 return -ENODEV;
8992 return ops->ndo_change_carrier(dev, new_carrier);
8993}
8994EXPORT_SYMBOL(dev_change_carrier);
8995
Linus Torvalds1da177e2005-04-16 15:20:36 -07008996/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02008997 * dev_get_phys_port_id - Get device physical port ID
8998 * @dev: device
8999 * @ppid: port ID
9000 *
9001 * Get device physical port ID
9002 */
9003int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01009004 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02009005{
9006 const struct net_device_ops *ops = dev->netdev_ops;
9007
9008 if (!ops->ndo_get_phys_port_id)
9009 return -EOPNOTSUPP;
9010 return ops->ndo_get_phys_port_id(dev, ppid);
9011}
9012EXPORT_SYMBOL(dev_get_phys_port_id);
9013
9014/**
David Aherndb24a902015-03-17 20:23:15 -06009015 * dev_get_phys_port_name - Get device physical port name
9016 * @dev: device
9017 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00009018 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06009019 *
9020 * Get device physical port name
9021 */
9022int dev_get_phys_port_name(struct net_device *dev,
9023 char *name, size_t len)
9024{
9025 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01009026 int err;
David Aherndb24a902015-03-17 20:23:15 -06009027
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01009028 if (ops->ndo_get_phys_port_name) {
9029 err = ops->ndo_get_phys_port_name(dev, name, len);
9030 if (err != -EOPNOTSUPP)
9031 return err;
9032 }
9033 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06009034}
9035EXPORT_SYMBOL(dev_get_phys_port_name);
9036
9037/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08009038 * dev_get_port_parent_id - Get the device's port parent identifier
9039 * @dev: network device
9040 * @ppid: pointer to a storage for the port's parent identifier
9041 * @recurse: allow/disallow recursion to lower devices
9042 *
9043 * Get the devices's port parent identifier
9044 */
9045int dev_get_port_parent_id(struct net_device *dev,
9046 struct netdev_phys_item_id *ppid,
9047 bool recurse)
9048{
9049 const struct net_device_ops *ops = dev->netdev_ops;
9050 struct netdev_phys_item_id first = { };
9051 struct net_device *lower_dev;
9052 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009053 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009054
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009055 if (ops->ndo_get_port_parent_id) {
9056 err = ops->ndo_get_port_parent_id(dev, ppid);
9057 if (err != -EOPNOTSUPP)
9058 return err;
9059 }
9060
9061 err = devlink_compat_switch_id_get(dev, ppid);
9062 if (!err || err != -EOPNOTSUPP)
9063 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009064
9065 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02009066 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009067
9068 netdev_for_each_lower_dev(dev, lower_dev, iter) {
9069 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
9070 if (err)
9071 break;
9072 if (!first.id_len)
9073 first = *ppid;
9074 else if (memcmp(&first, ppid, sizeof(*ppid)))
Ido Schimmele1b9efe2020-09-10 14:01:26 +03009075 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08009076 }
9077
9078 return err;
9079}
9080EXPORT_SYMBOL(dev_get_port_parent_id);
9081
9082/**
9083 * netdev_port_same_parent_id - Indicate if two network devices have
9084 * the same port parent identifier
9085 * @a: first network device
9086 * @b: second network device
9087 */
9088bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
9089{
9090 struct netdev_phys_item_id a_id = { };
9091 struct netdev_phys_item_id b_id = { };
9092
9093 if (dev_get_port_parent_id(a, &a_id, true) ||
9094 dev_get_port_parent_id(b, &b_id, true))
9095 return false;
9096
9097 return netdev_phys_item_id_same(&a_id, &b_id);
9098}
9099EXPORT_SYMBOL(netdev_port_same_parent_id);
9100
9101/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009102 * dev_change_proto_down - update protocol port state information
9103 * @dev: device
9104 * @proto_down: new value
9105 *
9106 * This info can be used by switch drivers to set the phys state of the
9107 * port.
9108 */
9109int dev_change_proto_down(struct net_device *dev, bool proto_down)
9110{
9111 const struct net_device_ops *ops = dev->netdev_ops;
9112
9113 if (!ops->ndo_change_proto_down)
9114 return -EOPNOTSUPP;
9115 if (!netif_device_present(dev))
9116 return -ENODEV;
9117 return ops->ndo_change_proto_down(dev, proto_down);
9118}
9119EXPORT_SYMBOL(dev_change_proto_down);
9120
Andy Roulinb5899672019-02-22 18:06:36 +00009121/**
9122 * dev_change_proto_down_generic - generic implementation for
9123 * ndo_change_proto_down that sets carrier according to
9124 * proto_down.
9125 *
9126 * @dev: device
9127 * @proto_down: new value
9128 */
9129int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
9130{
9131 if (proto_down)
9132 netif_carrier_off(dev);
9133 else
9134 netif_carrier_on(dev);
9135 dev->proto_down = proto_down;
9136 return 0;
9137}
9138EXPORT_SYMBOL(dev_change_proto_down_generic);
9139
Roopa Prabhu829eb202020-07-31 17:34:01 -07009140/**
9141 * dev_change_proto_down_reason - proto down reason
9142 *
9143 * @dev: device
9144 * @mask: proto down mask
9145 * @value: proto down value
9146 */
9147void dev_change_proto_down_reason(struct net_device *dev, unsigned long mask,
9148 u32 value)
9149{
9150 int b;
9151
9152 if (!mask) {
9153 dev->proto_down_reason = value;
9154 } else {
9155 for_each_set_bit(b, &mask, 32) {
9156 if (value & (1 << b))
9157 dev->proto_down_reason |= BIT(b);
9158 else
9159 dev->proto_down_reason &= ~BIT(b);
9160 }
9161 }
9162}
9163EXPORT_SYMBOL(dev_change_proto_down_reason);
9164
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009165struct bpf_xdp_link {
9166 struct bpf_link link;
9167 struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
9168 int flags;
9169};
9170
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009171static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009172{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009173 if (flags & XDP_FLAGS_HW_MODE)
9174 return XDP_MODE_HW;
9175 if (flags & XDP_FLAGS_DRV_MODE)
9176 return XDP_MODE_DRV;
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009177 if (flags & XDP_FLAGS_SKB_MODE)
9178 return XDP_MODE_SKB;
9179 return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009180}
9181
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009182static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009183{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009184 switch (mode) {
9185 case XDP_MODE_SKB:
9186 return generic_xdp_install;
9187 case XDP_MODE_DRV:
9188 case XDP_MODE_HW:
9189 return dev->netdev_ops->ndo_bpf;
9190 default:
9191 return NULL;
Tom Rix5d867242020-11-01 07:36:47 -08009192 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009193}
9194
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009195static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
9196 enum bpf_xdp_mode mode)
9197{
9198 return dev->xdp_state[mode].link;
9199}
9200
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009201static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
9202 enum bpf_xdp_mode mode)
9203{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009204 struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
9205
9206 if (link)
9207 return link->link.prog;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009208 return dev->xdp_state[mode].prog;
9209}
9210
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009211static u8 dev_xdp_prog_count(struct net_device *dev)
9212{
9213 u8 count = 0;
9214 int i;
9215
9216 for (i = 0; i < __MAX_XDP_MODE; i++)
9217 if (dev->xdp_state[i].prog || dev->xdp_state[i].link)
9218 count++;
9219 return count;
9220}
9221
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009222u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
9223{
9224 struct bpf_prog *prog = dev_xdp_prog(dev, mode);
9225
9226 return prog ? prog->aux->id : 0;
9227}
9228
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009229static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
9230 struct bpf_xdp_link *link)
9231{
9232 dev->xdp_state[mode].link = link;
9233 dev->xdp_state[mode].prog = NULL;
9234}
9235
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009236static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
9237 struct bpf_prog *prog)
9238{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009239 dev->xdp_state[mode].link = NULL;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009240 dev->xdp_state[mode].prog = prog;
9241}
9242
9243static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
9244 bpf_op_t bpf_op, struct netlink_ext_ack *extack,
9245 u32 flags, struct bpf_prog *prog)
9246{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07009247 struct netdev_bpf xdp;
Björn Töpel7e6897f2019-12-13 18:51:09 +01009248 int err;
9249
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009250 memset(&xdp, 0, sizeof(xdp));
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009251 xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009252 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07009253 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009254 xdp.prog = prog;
9255
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009256 /* Drivers assume refcnt is already incremented (i.e, prog pointer is
9257 * "moved" into driver), so they don't increment it on their own, but
9258 * they do decrement refcnt when program is detached or replaced.
9259 * Given net_device also owns link/prog, we need to bump refcnt here
9260 * to prevent drivers from underflowing it.
9261 */
9262 if (prog)
9263 bpf_prog_inc(prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009264 err = bpf_op(dev, &xdp);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009265 if (err) {
9266 if (prog)
9267 bpf_prog_put(prog);
9268 return err;
9269 }
Björn Töpel7e6897f2019-12-13 18:51:09 +01009270
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009271 if (mode != XDP_MODE_HW)
9272 bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01009273
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009274 return 0;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02009275}
9276
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009277static void dev_xdp_uninstall(struct net_device *dev)
9278{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009279 struct bpf_xdp_link *link;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009280 struct bpf_prog *prog;
9281 enum bpf_xdp_mode mode;
9282 bpf_op_t bpf_op;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009283
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009284 ASSERT_RTNL();
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009285
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009286 for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
9287 prog = dev_xdp_prog(dev, mode);
9288 if (!prog)
9289 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009290
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009291 bpf_op = dev_xdp_bpf_op(dev, mode);
9292 if (!bpf_op)
9293 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009294
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009295 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9296
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009297 /* auto-detach link from net device */
9298 link = dev_xdp_link(dev, mode);
9299 if (link)
9300 link->dev = NULL;
9301 else
9302 bpf_prog_put(prog);
9303
9304 dev_xdp_set_link(dev, mode, NULL);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009305 }
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009306}
9307
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009308static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009309 struct bpf_xdp_link *link, struct bpf_prog *new_prog,
9310 struct bpf_prog *old_prog, u32 flags)
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009311{
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009312 unsigned int num_modes = hweight32(flags & XDP_FLAGS_MODES);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009313 struct bpf_prog *cur_prog;
9314 enum bpf_xdp_mode mode;
9315 bpf_op_t bpf_op;
9316 int err;
9317
9318 ASSERT_RTNL();
9319
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009320 /* either link or prog attachment, never both */
9321 if (link && (new_prog || old_prog))
9322 return -EINVAL;
9323 /* link supports only XDP mode flags */
9324 if (link && (flags & ~XDP_FLAGS_MODES)) {
9325 NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
9326 return -EINVAL;
9327 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009328 /* just one XDP mode bit should be set, zero defaults to drv/skb mode */
9329 if (num_modes > 1) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009330 NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
9331 return -EINVAL;
9332 }
Toke Høiland-Jørgensen998f1722020-12-09 14:57:37 +01009333 /* avoid ambiguity if offload + drv/skb mode progs are both loaded */
9334 if (!num_modes && dev_xdp_prog_count(dev) > 1) {
9335 NL_SET_ERR_MSG(extack,
9336 "More than one program loaded, unset mode is ambiguous");
9337 return -EINVAL;
9338 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009339 /* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
9340 if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
9341 NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
9342 return -EINVAL;
9343 }
9344
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009345 mode = dev_xdp_mode(dev, flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009346 /* can't replace attached link */
9347 if (dev_xdp_link(dev, mode)) {
9348 NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
9349 return -EBUSY;
9350 }
9351
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009352 cur_prog = dev_xdp_prog(dev, mode);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009353 /* can't replace attached prog with link */
9354 if (link && cur_prog) {
9355 NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
9356 return -EBUSY;
9357 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009358 if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
9359 NL_SET_ERR_MSG(extack, "Active program does not match expected");
9360 return -EEXIST;
9361 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009362
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009363 /* put effective new program into new_prog */
9364 if (link)
9365 new_prog = link->link.prog;
9366
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009367 if (new_prog) {
9368 bool offload = mode == XDP_MODE_HW;
9369 enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
9370 ? XDP_MODE_DRV : XDP_MODE_SKB;
9371
Andrii Nakryiko068d9d12020-08-11 19:29:23 -07009372 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
9373 NL_SET_ERR_MSG(extack, "XDP program already attached");
9374 return -EBUSY;
9375 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009376 if (!offload && dev_xdp_prog(dev, other_mode)) {
9377 NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
9378 return -EEXIST;
9379 }
9380 if (!offload && bpf_prog_is_dev_bound(new_prog->aux)) {
9381 NL_SET_ERR_MSG(extack, "Using device-bound program without HW_MODE flag is not supported");
9382 return -EINVAL;
9383 }
9384 if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
9385 NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
9386 return -EINVAL;
9387 }
9388 if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
9389 NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
9390 return -EINVAL;
9391 }
9392 }
9393
9394 /* don't call drivers if the effective program didn't change */
9395 if (new_prog != cur_prog) {
9396 bpf_op = dev_xdp_bpf_op(dev, mode);
9397 if (!bpf_op) {
9398 NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
9399 return -EOPNOTSUPP;
9400 }
9401
9402 err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
9403 if (err)
9404 return err;
9405 }
9406
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009407 if (link)
9408 dev_xdp_set_link(dev, mode, link);
9409 else
9410 dev_xdp_set_prog(dev, mode, new_prog);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009411 if (cur_prog)
9412 bpf_prog_put(cur_prog);
9413
9414 return 0;
9415}
9416
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009417static int dev_xdp_attach_link(struct net_device *dev,
9418 struct netlink_ext_ack *extack,
9419 struct bpf_xdp_link *link)
9420{
9421 return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
9422}
9423
9424static int dev_xdp_detach_link(struct net_device *dev,
9425 struct netlink_ext_ack *extack,
9426 struct bpf_xdp_link *link)
9427{
9428 enum bpf_xdp_mode mode;
9429 bpf_op_t bpf_op;
9430
9431 ASSERT_RTNL();
9432
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009433 mode = dev_xdp_mode(dev, link->flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009434 if (dev_xdp_link(dev, mode) != link)
9435 return -EINVAL;
9436
9437 bpf_op = dev_xdp_bpf_op(dev, mode);
9438 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9439 dev_xdp_set_link(dev, mode, NULL);
9440 return 0;
9441}
9442
9443static void bpf_xdp_link_release(struct bpf_link *link)
9444{
9445 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9446
9447 rtnl_lock();
9448
9449 /* if racing with net_device's tear down, xdp_link->dev might be
9450 * already NULL, in which case link was already auto-detached
9451 */
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009452 if (xdp_link->dev) {
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009453 WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009454 xdp_link->dev = NULL;
9455 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009456
9457 rtnl_unlock();
9458}
9459
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009460static int bpf_xdp_link_detach(struct bpf_link *link)
9461{
9462 bpf_xdp_link_release(link);
9463 return 0;
9464}
9465
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009466static void bpf_xdp_link_dealloc(struct bpf_link *link)
9467{
9468 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9469
9470 kfree(xdp_link);
9471}
9472
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009473static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
9474 struct seq_file *seq)
9475{
9476 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9477 u32 ifindex = 0;
9478
9479 rtnl_lock();
9480 if (xdp_link->dev)
9481 ifindex = xdp_link->dev->ifindex;
9482 rtnl_unlock();
9483
9484 seq_printf(seq, "ifindex:\t%u\n", ifindex);
9485}
9486
9487static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
9488 struct bpf_link_info *info)
9489{
9490 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9491 u32 ifindex = 0;
9492
9493 rtnl_lock();
9494 if (xdp_link->dev)
9495 ifindex = xdp_link->dev->ifindex;
9496 rtnl_unlock();
9497
9498 info->xdp.ifindex = ifindex;
9499 return 0;
9500}
9501
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009502static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
9503 struct bpf_prog *old_prog)
9504{
9505 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9506 enum bpf_xdp_mode mode;
9507 bpf_op_t bpf_op;
9508 int err = 0;
9509
9510 rtnl_lock();
9511
9512 /* link might have been auto-released already, so fail */
9513 if (!xdp_link->dev) {
9514 err = -ENOLINK;
9515 goto out_unlock;
9516 }
9517
9518 if (old_prog && link->prog != old_prog) {
9519 err = -EPERM;
9520 goto out_unlock;
9521 }
9522 old_prog = link->prog;
9523 if (old_prog == new_prog) {
9524 /* no-op, don't disturb drivers */
9525 bpf_prog_put(new_prog);
9526 goto out_unlock;
9527 }
9528
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009529 mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009530 bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
9531 err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
9532 xdp_link->flags, new_prog);
9533 if (err)
9534 goto out_unlock;
9535
9536 old_prog = xchg(&link->prog, new_prog);
9537 bpf_prog_put(old_prog);
9538
9539out_unlock:
9540 rtnl_unlock();
9541 return err;
9542}
9543
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009544static const struct bpf_link_ops bpf_xdp_link_lops = {
9545 .release = bpf_xdp_link_release,
9546 .dealloc = bpf_xdp_link_dealloc,
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009547 .detach = bpf_xdp_link_detach,
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009548 .show_fdinfo = bpf_xdp_link_show_fdinfo,
9549 .fill_link_info = bpf_xdp_link_fill_link_info,
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009550 .update_prog = bpf_xdp_link_update,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009551};
9552
9553int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
9554{
9555 struct net *net = current->nsproxy->net_ns;
9556 struct bpf_link_primer link_primer;
9557 struct bpf_xdp_link *link;
9558 struct net_device *dev;
9559 int err, fd;
9560
9561 dev = dev_get_by_index(net, attr->link_create.target_ifindex);
9562 if (!dev)
9563 return -EINVAL;
9564
9565 link = kzalloc(sizeof(*link), GFP_USER);
9566 if (!link) {
9567 err = -ENOMEM;
9568 goto out_put_dev;
9569 }
9570
9571 bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog);
9572 link->dev = dev;
9573 link->flags = attr->link_create.flags;
9574
9575 err = bpf_link_prime(&link->link, &link_primer);
9576 if (err) {
9577 kfree(link);
9578 goto out_put_dev;
9579 }
9580
9581 rtnl_lock();
9582 err = dev_xdp_attach_link(dev, NULL, link);
9583 rtnl_unlock();
9584
9585 if (err) {
9586 bpf_link_cleanup(&link_primer);
9587 goto out_put_dev;
9588 }
9589
9590 fd = bpf_link_settle(&link_primer);
9591 /* link itself doesn't hold dev's refcnt to not complicate shutdown */
9592 dev_put(dev);
9593 return fd;
9594
9595out_put_dev:
9596 dev_put(dev);
9597 return err;
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009598}
9599
9600/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07009601 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
9602 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07009603 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07009604 * @fd: new program fd or negative value to clear
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009605 * @expected_fd: old program fd that userspace expects to replace or clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01009606 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07009607 *
9608 * Set or clear a bpf program for a device
9609 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07009610int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009611 int fd, int expected_fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07009612{
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009613 enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009614 struct bpf_prog *new_prog = NULL, *old_prog = NULL;
Brenden Blancoa7862b42016-07-19 12:16:48 -07009615 int err;
9616
Daniel Borkmann85de8572016-11-28 23:16:54 +01009617 ASSERT_RTNL();
9618
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009619 if (fd >= 0) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009620 new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
9621 mode != XDP_MODE_SKB);
9622 if (IS_ERR(new_prog))
9623 return PTR_ERR(new_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009624 }
9625
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009626 if (expected_fd >= 0) {
9627 old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
9628 mode != XDP_MODE_SKB);
9629 if (IS_ERR(old_prog)) {
9630 err = PTR_ERR(old_prog);
9631 old_prog = NULL;
9632 goto err_out;
9633 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009634 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07009635
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009636 err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009637
9638err_out:
9639 if (err && new_prog)
9640 bpf_prog_put(new_prog);
9641 if (old_prog)
9642 bpf_prog_put(old_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009643 return err;
9644}
Brenden Blancoa7862b42016-07-19 12:16:48 -07009645
9646/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009647 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07009648 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07009649 *
9650 * Returns a suitable unique value for a new device interface
9651 * number. The caller must hold the rtnl semaphore or the
9652 * dev_base_lock to be sure it remains unique.
9653 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07009654static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009655{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009656 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11009657
Linus Torvalds1da177e2005-04-16 15:20:36 -07009658 for (;;) {
9659 if (++ifindex <= 0)
9660 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009661 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009662 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009663 }
9664}
9665
Linus Torvalds1da177e2005-04-16 15:20:36 -07009666/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08009667static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07009668DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009669
Stephen Hemminger6f05f622007-03-08 20:46:03 -08009670static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009671{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009672 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009673 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009674}
9675
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009676static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
9677 struct net_device *upper, netdev_features_t features)
9678{
9679 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9680 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009681 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009682
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009683 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009684 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009685 if (!(upper->wanted_features & feature)
9686 && (features & feature)) {
9687 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
9688 &feature, upper->name);
9689 features &= ~feature;
9690 }
9691 }
9692
9693 return features;
9694}
9695
9696static void netdev_sync_lower_features(struct net_device *upper,
9697 struct net_device *lower, netdev_features_t features)
9698{
9699 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9700 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009701 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009702
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009703 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009704 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009705 if (!(features & feature) && (lower->features & feature)) {
9706 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
9707 &feature, lower->name);
9708 lower->wanted_features &= ~feature;
Cong Wangdd912302020-05-07 12:19:03 -07009709 __netdev_update_features(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009710
9711 if (unlikely(lower->features & feature))
9712 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
9713 &feature, lower->name);
Cong Wangdd912302020-05-07 12:19:03 -07009714 else
9715 netdev_features_change(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009716 }
9717 }
9718}
9719
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009720static netdev_features_t netdev_fix_features(struct net_device *dev,
9721 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07009722{
Michał Mirosław57422dc2011-01-22 12:14:12 +00009723 /* Fix illegal checksum combinations */
9724 if ((features & NETIF_F_HW_CSUM) &&
9725 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009726 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00009727 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
9728 }
9729
Herbert Xub63365a2008-10-23 01:11:29 -07009730 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009731 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009732 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009733 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07009734 }
9735
Pravin B Shelarec5f0612013-03-07 09:28:01 +00009736 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
9737 !(features & NETIF_F_IP_CSUM)) {
9738 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
9739 features &= ~NETIF_F_TSO;
9740 features &= ~NETIF_F_TSO_ECN;
9741 }
9742
9743 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
9744 !(features & NETIF_F_IPV6_CSUM)) {
9745 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
9746 features &= ~NETIF_F_TSO6;
9747 }
9748
Alexander Duyckb1dc4972016-05-02 09:38:24 -07009749 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
9750 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
9751 features &= ~NETIF_F_TSO_MANGLEID;
9752
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00009753 /* TSO ECN requires that TSO is present as well. */
9754 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
9755 features &= ~NETIF_F_TSO_ECN;
9756
Michał Mirosław212b5732011-02-15 16:59:16 +00009757 /* Software GSO depends on SG. */
9758 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009759 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00009760 features &= ~NETIF_F_GSO;
9761 }
9762
Alexander Duyck802ab552016-04-10 21:45:03 -04009763 /* GSO partial features require GSO partial be set */
9764 if ((features & dev->gso_partial_features) &&
9765 !(features & NETIF_F_GSO_PARTIAL)) {
9766 netdev_dbg(dev,
9767 "Dropping partially supported GSO features since no GSO partial.\n");
9768 features &= ~dev->gso_partial_features;
9769 }
9770
Michael Chanfb1f5f72017-12-16 03:09:40 -05009771 if (!(features & NETIF_F_RXCSUM)) {
9772 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
9773 * successfully merged by hardware must also have the
9774 * checksum verified by hardware. If the user does not
9775 * want to enable RXCSUM, logically, we should disable GRO_HW.
9776 */
9777 if (features & NETIF_F_GRO_HW) {
9778 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
9779 features &= ~NETIF_F_GRO_HW;
9780 }
9781 }
9782
Gal Pressmande8d5ab2018-03-12 11:48:49 +02009783 /* LRO/HW-GRO features cannot be combined with RX-FCS */
9784 if (features & NETIF_F_RXFCS) {
9785 if (features & NETIF_F_LRO) {
9786 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
9787 features &= ~NETIF_F_LRO;
9788 }
9789
9790 if (features & NETIF_F_GRO_HW) {
9791 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
9792 features &= ~NETIF_F_GRO_HW;
9793 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02009794 }
9795
Tariq Toukan25537d72021-01-14 17:12:15 +02009796 if (features & NETIF_F_HW_TLS_TX) {
9797 bool ip_csum = (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) ==
9798 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM);
9799 bool hw_csum = features & NETIF_F_HW_CSUM;
9800
9801 if (!ip_csum && !hw_csum) {
9802 netdev_dbg(dev, "Dropping TLS TX HW offload feature since no CSUM feature.\n");
9803 features &= ~NETIF_F_HW_TLS_TX;
9804 }
Tariq Toukanae0b04b2020-12-13 16:39:29 +02009805 }
9806
Tariq Toukana3eb4e92021-01-17 17:15:38 +02009807 if ((features & NETIF_F_HW_TLS_RX) && !(features & NETIF_F_RXCSUM)) {
9808 netdev_dbg(dev, "Dropping TLS RX HW offload feature since no RXCSUM feature.\n");
9809 features &= ~NETIF_F_HW_TLS_RX;
9810 }
9811
Herbert Xub63365a2008-10-23 01:11:29 -07009812 return features;
9813}
Herbert Xub63365a2008-10-23 01:11:29 -07009814
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009815int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00009816{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009817 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009818 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009819 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05009820 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00009821
Michał Mirosław87267482011-04-12 09:56:38 +00009822 ASSERT_RTNL();
9823
Michał Mirosław5455c692011-02-15 16:59:17 +00009824 features = netdev_get_wanted_features(dev);
9825
9826 if (dev->netdev_ops->ndo_fix_features)
9827 features = dev->netdev_ops->ndo_fix_features(dev, features);
9828
9829 /* driver might be less strict about feature dependencies */
9830 features = netdev_fix_features(dev, features);
9831
Randy Dunlap4250b752020-09-17 21:35:15 -07009832 /* some features can't be enabled if they're off on an upper device */
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009833 netdev_for_each_upper_dev_rcu(dev, upper, iter)
9834 features = netdev_sync_upper_features(dev, upper, features);
9835
Michał Mirosław5455c692011-02-15 16:59:17 +00009836 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05009837 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00009838
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009839 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
9840 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00009841
9842 if (dev->netdev_ops->ndo_set_features)
9843 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01009844 else
9845 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00009846
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009847 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00009848 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009849 "set_features() failed (%d); wanted %pNF, left %pNF\n",
9850 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01009851 /* return non-0 since some features might have changed and
9852 * it's better to fire a spurious notification than miss it
9853 */
9854 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009855 }
9856
Jarod Wilsone7868a82015-11-03 23:09:32 -05009857sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009858 /* some features must be disabled on lower devices when disabled
9859 * on an upper device (think: bonding master or bridge)
9860 */
9861 netdev_for_each_lower_dev(dev, lower, iter)
9862 netdev_sync_lower_features(dev, lower, features);
9863
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009864 if (!err) {
9865 netdev_features_t diff = features ^ dev->features;
9866
9867 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
9868 /* udp_tunnel_{get,drop}_rx_info both need
9869 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
9870 * device, or they won't do anything.
9871 * Thus we need to update dev->features
9872 * *before* calling udp_tunnel_get_rx_info,
9873 * but *after* calling udp_tunnel_drop_rx_info.
9874 */
9875 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
9876 dev->features = features;
9877 udp_tunnel_get_rx_info(dev);
9878 } else {
9879 udp_tunnel_drop_rx_info(dev);
9880 }
9881 }
9882
Gal Pressman9daae9b2018-03-28 17:46:54 +03009883 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
9884 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
9885 dev->features = features;
9886 err |= vlan_get_rx_ctag_filter_info(dev);
9887 } else {
9888 vlan_drop_rx_ctag_filter_info(dev);
9889 }
9890 }
9891
9892 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
9893 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
9894 dev->features = features;
9895 err |= vlan_get_rx_stag_filter_info(dev);
9896 } else {
9897 vlan_drop_rx_stag_filter_info(dev);
9898 }
9899 }
9900
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009901 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009902 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009903
Jarod Wilsone7868a82015-11-03 23:09:32 -05009904 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009905}
9906
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009907/**
9908 * netdev_update_features - recalculate device features
9909 * @dev: the device to check
9910 *
9911 * Recalculate dev->features set and send notifications if it
9912 * has changed. Should be called after driver or hardware dependent
9913 * conditions might have changed that influence the features.
9914 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009915void netdev_update_features(struct net_device *dev)
9916{
9917 if (__netdev_update_features(dev))
9918 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00009919}
9920EXPORT_SYMBOL(netdev_update_features);
9921
Linus Torvalds1da177e2005-04-16 15:20:36 -07009922/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009923 * netdev_change_features - recalculate device features
9924 * @dev: the device to check
9925 *
9926 * Recalculate dev->features set and send notifications even
9927 * if they have not changed. Should be called instead of
9928 * netdev_update_features() if also dev->vlan_features might
9929 * have changed to allow the changes to be propagated to stacked
9930 * VLAN devices.
9931 */
9932void netdev_change_features(struct net_device *dev)
9933{
9934 __netdev_update_features(dev);
9935 netdev_features_change(dev);
9936}
9937EXPORT_SYMBOL(netdev_change_features);
9938
9939/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009940 * netif_stacked_transfer_operstate - transfer operstate
9941 * @rootdev: the root or lower level device to transfer state from
9942 * @dev: the device to transfer operstate to
9943 *
9944 * Transfer operational state from root to device. This is normally
9945 * called when a stacking relationship exists between the root
9946 * device and the device(a leaf device).
9947 */
9948void netif_stacked_transfer_operstate(const struct net_device *rootdev,
9949 struct net_device *dev)
9950{
9951 if (rootdev->operstate == IF_OPER_DORMANT)
9952 netif_dormant_on(dev);
9953 else
9954 netif_dormant_off(dev);
9955
Andrew Lunneec517cd2020-04-20 00:11:50 +02009956 if (rootdev->operstate == IF_OPER_TESTING)
9957 netif_testing_on(dev);
9958 else
9959 netif_testing_off(dev);
9960
Zhang Shengju0575c862017-04-26 17:49:38 +08009961 if (netif_carrier_ok(rootdev))
9962 netif_carrier_on(dev);
9963 else
9964 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009965}
9966EXPORT_SYMBOL(netif_stacked_transfer_operstate);
9967
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009968static int netif_alloc_rx_queues(struct net_device *dev)
9969{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009970 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00009971 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05309972 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009973 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009974
Tom Herbertbd25fa72010-10-18 18:00:16 +00009975 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009976
Michal Hockodcda9b02017-07-12 14:36:45 -07009977 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009978 if (!rx)
9979 return -ENOMEM;
9980
Tom Herbertbd25fa72010-10-18 18:00:16 +00009981 dev->_rx = rx;
9982
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009983 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00009984 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009985
9986 /* XDP RX-queue setup */
Björn Töpelb02e5a02020-11-30 19:52:01 +01009987 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i, 0);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009988 if (err < 0)
9989 goto err_rxq_info;
9990 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009991 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009992
9993err_rxq_info:
9994 /* Rollback successful reg's and free other resources */
9995 while (i--)
9996 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08009997 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009998 dev->_rx = NULL;
9999 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010000}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010001
10002static void netif_free_rx_queues(struct net_device *dev)
10003{
10004 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010005
10006 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
10007 if (!dev->_rx)
10008 return;
10009
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010010 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -080010011 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
10012
10013 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010014}
Eric Dumazet1b4bf462010-09-23 17:26:35 +000010015
Changli Gaoaa942102010-12-04 02:31:41 +000010016static void netdev_init_one_queue(struct net_device *dev,
10017 struct netdev_queue *queue, void *_unused)
10018{
10019 /* Initialize queue lock */
10020 spin_lock_init(&queue->_xmit_lock);
Cong Wang1a33e102020-05-02 22:22:19 -070010021 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
Changli Gaoaa942102010-12-04 02:31:41 +000010022 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +000010023 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +000010024 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +000010025#ifdef CONFIG_BQL
10026 dql_init(&queue->dql, HZ);
10027#endif
Changli Gaoaa942102010-12-04 02:31:41 +000010028}
10029
Eric Dumazet60877a32013-06-20 01:15:51 -070010030static void netif_free_tx_queues(struct net_device *dev)
10031{
WANG Cong4cb28972014-06-02 15:55:22 -070010032 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -070010033}
10034
Tom Herberte6484932010-10-18 18:04:39 +000010035static int netif_alloc_netdev_queues(struct net_device *dev)
10036{
10037 unsigned int count = dev->num_tx_queues;
10038 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -070010039 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +000010040
Eric Dumazetd3397272015-07-06 17:13:26 +020010041 if (count < 1 || count > 0xffff)
10042 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +000010043
Michal Hockodcda9b02017-07-12 14:36:45 -070010044 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -070010045 if (!tx)
10046 return -ENOMEM;
10047
Tom Herberte6484932010-10-18 18:04:39 +000010048 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +000010049
Tom Herberte6484932010-10-18 18:04:39 +000010050 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
10051 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +000010052
10053 return 0;
Tom Herberte6484932010-10-18 18:04:39 +000010054}
10055
Denys Vlasenkoa2029242015-05-11 21:17:53 +020010056void netif_tx_stop_all_queues(struct net_device *dev)
10057{
10058 unsigned int i;
10059
10060 for (i = 0; i < dev->num_tx_queues; i++) {
10061 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +110010062
Denys Vlasenkoa2029242015-05-11 21:17:53 +020010063 netif_tx_stop_queue(txq);
10064 }
10065}
10066EXPORT_SYMBOL(netif_tx_stop_all_queues);
10067
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -080010068/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010069 * register_netdevice - register a network device
10070 * @dev: device to register
10071 *
10072 * Take a completed network device structure and add it to the kernel
10073 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10074 * chain. 0 is returned on success. A negative errno code is returned
10075 * on a failure to set up the device, or if the name is a duplicate.
10076 *
10077 * Callers must hold the rtnl semaphore. You may want
10078 * register_netdev() instead of this.
10079 *
10080 * BUGS:
10081 * The locking appears insufficient to guarantee two parallel registers
10082 * will not get the same name.
10083 */
10084
10085int register_netdevice(struct net_device *dev)
10086{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010087 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010088 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010089
Florian Fainellie283de32018-04-30 14:20:05 -070010090 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
10091 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010092 BUG_ON(dev_boot_phase);
10093 ASSERT_RTNL();
10094
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010095 might_sleep();
10096
Linus Torvalds1da177e2005-04-16 15:20:36 -070010097 /* When net_device's are persistent, this will be fatal. */
10098 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010099 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010100
Jakub Kicinski9000edb2020-03-16 13:47:12 -070010101 ret = ethtool_check_ops(dev->ethtool_ops);
10102 if (ret)
10103 return ret;
10104
David S. Millerf1f28aa2008-07-15 00:08:33 -070010105 spin_lock_init(&dev->addr_list_lock);
Cong Wang845e0eb2020-06-08 14:53:01 -070010106 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010107
Gao feng828de4f2012-09-13 20:58:27 +000010108 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +000010109 if (ret < 0)
10110 goto out;
10111
Eric Dumazet9077f052019-10-03 08:59:24 -070010112 ret = -ENOMEM;
Jiri Pirkoff927412019-09-30 11:48:15 +020010113 dev->name_node = netdev_name_node_head_alloc(dev);
10114 if (!dev->name_node)
10115 goto out;
10116
Linus Torvalds1da177e2005-04-16 15:20:36 -070010117 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010118 if (dev->netdev_ops->ndo_init) {
10119 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010120 if (ret) {
10121 if (ret > 0)
10122 ret = -EIO;
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010123 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010124 }
10125 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010126
Patrick McHardyf6469682013-04-19 02:04:27 +000010127 if (((dev->hw_features | dev->features) &
10128 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +000010129 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
10130 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
10131 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
10132 ret = -EINVAL;
10133 goto err_uninit;
10134 }
10135
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +000010136 ret = -EBUSY;
10137 if (!dev->ifindex)
10138 dev->ifindex = dev_new_index(net);
10139 else if (__dev_get_by_index(net, dev->ifindex))
10140 goto err_uninit;
10141
Michał Mirosław5455c692011-02-15 16:59:17 +000010142 /* Transfer changeable features to wanted_features and enable
10143 * software offloads (GSO and GRO).
10144 */
Steffen Klassert1a3c9982020-01-25 11:26:43 +010010145 dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
Michał Mirosław14d12322011-02-22 16:52:28 +000010146 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +020010147
Jakub Kicinski876c4382021-01-06 13:06:34 -080010148 if (dev->udp_tunnel_nic_info) {
Sabrina Dubrocad764a122017-07-21 12:49:28 +020010149 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
10150 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
10151 }
10152
Michał Mirosław14d12322011-02-22 16:52:28 +000010153 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010154
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010155 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +000010156 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010157
Alexander Duyck7f348a62016-04-20 16:51:00 -040010158 /* If IPv4 TCP segmentation offload is supported we should also
10159 * allow the device to enable segmenting the frame with the option
10160 * of ignoring a static IP ID value. This doesn't enable the
10161 * feature itself but allows the user to enable it later.
10162 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -040010163 if (dev->hw_features & NETIF_F_TSO)
10164 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -040010165 if (dev->vlan_features & NETIF_F_TSO)
10166 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
10167 if (dev->mpls_features & NETIF_F_TSO)
10168 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
10169 if (dev->hw_enc_features & NETIF_F_TSO)
10170 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -070010171
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010172 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +000010173 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -070010174 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +000010175
Pravin B Shelaree579672013-03-07 09:28:08 +000010176 /* Make NETIF_F_SG inheritable to tunnel devices.
10177 */
Alexander Duyck802ab552016-04-10 21:45:03 -040010178 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +000010179
Simon Horman0d89d202013-05-23 21:02:52 +000010180 /* Make NETIF_F_SG inheritable to MPLS.
10181 */
10182 dev->mpls_features |= NETIF_F_SG;
10183
Johannes Berg7ffbe3f2009-10-02 05:15:27 +000010184 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
10185 ret = notifier_to_errno(ret);
10186 if (ret)
10187 goto err_uninit;
10188
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010189 ret = netdev_register_kobject(dev);
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010190 if (ret) {
10191 dev->reg_state = NETREG_UNREGISTERED;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010192 goto err_uninit;
Jouni Hogandercb626bf2020-01-20 09:51:03 +020010193 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010194 dev->reg_state = NETREG_REGISTERED;
10195
Michał Mirosław6cb6a272011-04-02 22:48:47 -070010196 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +000010197
Linus Torvalds1da177e2005-04-16 15:20:36 -070010198 /*
10199 * Default initial state at registry is that the
10200 * device is present.
10201 */
10202
10203 set_bit(__LINK_STATE_PRESENT, &dev->state);
10204
Ben Hutchings8f4cccb2012-08-20 22:16:51 +010010205 linkwatch_init_dev(dev);
10206
Linus Torvalds1da177e2005-04-16 15:20:36 -070010207 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010208 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010209 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -040010210 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010211
Jiri Pirko948b3372013-01-08 01:38:25 +000010212 /* If the device has permanent device address, driver should
10213 * set dev_addr and also addr_assign_type should be set to
10214 * NET_ADDR_PERM (default value).
10215 */
10216 if (dev->addr_assign_type == NET_ADDR_PERM)
10217 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
10218
Linus Torvalds1da177e2005-04-16 15:20:36 -070010219 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010220 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -070010221 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010222 if (ret) {
Jakub Kicinski766b0512021-01-06 10:40:07 -080010223 /* Expect explicit free_netdev() on failure */
10224 dev->needs_free_netdev = false;
Jakub Kicinski037e56b2021-01-19 12:25:19 -080010225 unregister_netdevice_queue(dev, NULL);
Jakub Kicinski766b0512021-01-06 10:40:07 -080010226 goto out;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010227 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010228 /*
10229 * Prevent userspace races by waiting until the network
10230 * device is fully setup before sending notifications.
10231 */
Patrick McHardya2835762010-02-26 06:34:51 +000010232 if (!dev->rtnl_link_ops ||
10233 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010234 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010235
10236out:
10237 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010238
10239err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010240 if (dev->netdev_ops->ndo_uninit)
10241 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -040010242 if (dev->priv_destructor)
10243 dev->priv_destructor(dev);
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010244err_free_name:
10245 netdev_name_node_free(dev->name_node);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010246 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010247}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010248EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010249
10250/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010251 * init_dummy_netdev - init a dummy network device for NAPI
10252 * @dev: device to init
10253 *
10254 * This takes a network device structure and initialize the minimum
10255 * amount of fields so it can be used to schedule NAPI polls without
10256 * registering a full blown interface. This is to be used by drivers
10257 * that need to tie several hardware interfaces to a single NAPI
10258 * poll scheduler due to HW limitations.
10259 */
10260int init_dummy_netdev(struct net_device *dev)
10261{
10262 /* Clear everything. Note we don't initialize spinlocks
10263 * are they aren't supposed to be taken by any of the
10264 * NAPI code and this dummy netdev is supposed to be
10265 * only ever used for NAPI polls
10266 */
10267 memset(dev, 0, sizeof(struct net_device));
10268
10269 /* make sure we BUG if trying to hit standard
10270 * register/unregister code path
10271 */
10272 dev->reg_state = NETREG_DUMMY;
10273
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010274 /* NAPI wants this */
10275 INIT_LIST_HEAD(&dev->napi_list);
10276
10277 /* a dummy interface is started by default */
10278 set_bit(__LINK_STATE_PRESENT, &dev->state);
10279 set_bit(__LINK_STATE_START, &dev->state);
10280
Josh Elsasser35edfdc2019-01-26 14:38:33 -080010281 /* napi_busy_loop stats accounting wants this */
10282 dev_net_set(dev, &init_net);
10283
Eric Dumazet29b44332010-10-11 10:22:12 +000010284 /* Note : We dont allocate pcpu_refcnt for dummy devices,
10285 * because users of this 'device' dont need to change
10286 * its refcount.
10287 */
10288
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010289 return 0;
10290}
10291EXPORT_SYMBOL_GPL(init_dummy_netdev);
10292
10293
10294/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010295 * register_netdev - register a network device
10296 * @dev: device to register
10297 *
10298 * Take a completed network device structure and add it to the kernel
10299 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10300 * chain. 0 is returned on success. A negative errno code is returned
10301 * on a failure to set up the device, or if the name is a duplicate.
10302 *
Borislav Petkov38b4da382007-04-20 22:14:10 -070010303 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010304 * and expands the device name if you passed a format string to
10305 * alloc_netdev.
10306 */
10307int register_netdev(struct net_device *dev)
10308{
10309 int err;
10310
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +030010311 if (rtnl_lock_killable())
10312 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010313 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010314 rtnl_unlock();
10315 return err;
10316}
10317EXPORT_SYMBOL(register_netdev);
10318
Eric Dumazet29b44332010-10-11 10:22:12 +000010319int netdev_refcnt_read(const struct net_device *dev)
10320{
10321 int i, refcnt = 0;
10322
10323 for_each_possible_cpu(i)
10324 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
10325 return refcnt;
10326}
10327EXPORT_SYMBOL(netdev_refcnt_read);
10328
Mauro Carvalho Chehabde2b5412020-09-22 13:22:52 +020010329#define WAIT_REFS_MIN_MSECS 1
10330#define WAIT_REFS_MAX_MSECS 250
Ben Hutchings2c530402012-07-10 10:55:09 +000010331/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010332 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +000010333 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010334 *
10335 * This is called when unregistering network devices.
10336 *
10337 * Any protocol or device that holds a reference should register
10338 * for netdevice notification, and cleanup and put back the
10339 * reference if they receive an UNREGISTER event.
10340 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010341 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010342 */
10343static void netdev_wait_allrefs(struct net_device *dev)
10344{
10345 unsigned long rebroadcast_time, warning_time;
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010346 int wait = 0, refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010347
Eric Dumazete014deb2009-11-17 05:59:21 +000010348 linkwatch_forget_dev(dev);
10349
Linus Torvalds1da177e2005-04-16 15:20:36 -070010350 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +000010351 refcnt = netdev_refcnt_read(dev);
10352
10353 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010354 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010355 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010356
10357 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010358 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010359
Eric Dumazet748e2d92012-08-22 21:50:59 +000010360 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010361 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +000010362 rtnl_lock();
10363
Linus Torvalds1da177e2005-04-16 15:20:36 -070010364 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
10365 &dev->state)) {
10366 /* We must not have linkwatch events
10367 * pending on unregister. If this
10368 * happens, we simply run the queue
10369 * unscheduled, resulting in a noop
10370 * for this device.
10371 */
10372 linkwatch_run_queue();
10373 }
10374
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010375 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010376
10377 rebroadcast_time = jiffies;
10378 }
10379
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010380 if (!wait) {
10381 rcu_barrier();
10382 wait = WAIT_REFS_MIN_MSECS;
10383 } else {
10384 msleep(wait);
10385 wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
10386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010387
Eric Dumazet29b44332010-10-11 10:22:12 +000010388 refcnt = netdev_refcnt_read(dev);
10389
Eric Dumazetd7c04b02019-05-16 08:09:57 -070010390 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010391 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
10392 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010393 warning_time = jiffies;
10394 }
10395 }
10396}
10397
10398/* The sequence is:
10399 *
10400 * rtnl_lock();
10401 * ...
10402 * register_netdevice(x1);
10403 * register_netdevice(x2);
10404 * ...
10405 * unregister_netdevice(y1);
10406 * unregister_netdevice(y2);
10407 * ...
10408 * rtnl_unlock();
10409 * free_netdev(y1);
10410 * free_netdev(y2);
10411 *
Herbert Xu58ec3b42008-10-07 15:50:03 -070010412 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -070010413 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010414 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070010415 * without deadlocking with linkwatch via keventd.
10416 * 2) Since we run with the RTNL semaphore not held, we can sleep
10417 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -070010418 *
10419 * We must not return until all unregister events added during
10420 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010422void netdev_run_todo(void)
10423{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010424 struct list_head list;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010425#ifdef CONFIG_LOCKDEP
10426 struct list_head unlink_list;
10427
10428 list_replace_init(&net_unlink_list, &unlink_list);
10429
10430 while (!list_empty(&unlink_list)) {
10431 struct net_device *dev = list_first_entry(&unlink_list,
10432 struct net_device,
10433 unlink_list);
Taehee Yoo0e8b8d62020-10-15 16:26:06 +000010434 list_del_init(&dev->unlink_list);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010435 dev->nested_level = dev->lower_level - 1;
10436 }
10437#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010438
Linus Torvalds1da177e2005-04-16 15:20:36 -070010439 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010440 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -070010441
10442 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010443
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010444
10445 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +000010446 if (!list_empty(&list))
10447 rcu_barrier();
10448
Linus Torvalds1da177e2005-04-16 15:20:36 -070010449 while (!list_empty(&list)) {
10450 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +000010451 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010452 list_del(&dev->todo_list);
10453
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010454 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010455 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070010456 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010457 dump_stack();
10458 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010459 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010460
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010461 dev->reg_state = NETREG_UNREGISTERED;
10462
10463 netdev_wait_allrefs(dev);
10464
10465 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +000010466 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -080010467 BUG_ON(!list_empty(&dev->ptype_all));
10468 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +000010469 WARN_ON(rcu_access_pointer(dev->ip_ptr));
10470 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -080010471#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -070010472 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -080010473#endif
David S. Millercf124db2017-05-08 12:52:56 -040010474 if (dev->priv_destructor)
10475 dev->priv_destructor(dev);
10476 if (dev->needs_free_netdev)
10477 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010478
Eric W. Biederman50624c92013-09-23 21:19:49 -070010479 /* Report a network device has been unregistered */
10480 rtnl_lock();
10481 dev_net(dev)->dev_unreg_count--;
10482 __rtnl_unlock();
10483 wake_up(&netdev_unregistering_wq);
10484
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010485 /* Free network device */
10486 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010488}
10489
Jarod Wilson92566452016-02-01 18:51:04 -050010490/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
10491 * all the same fields in the same order as net_device_stats, with only
10492 * the type differing, but rtnl_link_stats64 may have additional fields
10493 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +000010494 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010495void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
10496 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +000010497{
10498#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -050010499 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +020010500 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -050010501 /* zero out counters that only exist in rtnl_link_stats64 */
10502 memset((char *)stats64 + sizeof(*netdev_stats), 0,
10503 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010504#else
Jarod Wilson92566452016-02-01 18:51:04 -050010505 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010506 const unsigned long *src = (const unsigned long *)netdev_stats;
10507 u64 *dst = (u64 *)stats64;
10508
Jarod Wilson92566452016-02-01 18:51:04 -050010509 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010510 for (i = 0; i < n; i++)
10511 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -050010512 /* zero out counters that only exist in rtnl_link_stats64 */
10513 memset((char *)stats64 + n * sizeof(u64), 0,
10514 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010515#endif
10516}
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010517EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010518
Eric Dumazetd83345a2009-11-16 03:36:51 +000010519/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010520 * dev_get_stats - get network device statistics
10521 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -070010522 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010523 *
Ben Hutchingsd7753512010-07-09 09:12:41 +000010524 * Get network statistics from device. Return @storage.
10525 * The device driver may provide its own method by setting
10526 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
10527 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010528 */
Ben Hutchingsd7753512010-07-09 09:12:41 +000010529struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
10530 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +000010531{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010532 const struct net_device_ops *ops = dev->netdev_ops;
10533
Eric Dumazet28172732010-07-07 14:58:56 -070010534 if (ops->ndo_get_stats64) {
10535 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010536 ops->ndo_get_stats64(dev, storage);
10537 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +000010538 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010539 } else {
10540 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -070010541 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -070010542 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
10543 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
10544 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -070010545 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -070010546}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010547EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -070010548
Heiner Kallweit44fa32f2020-10-12 10:01:27 +020010549/**
10550 * dev_fetch_sw_netstats - get per-cpu network device statistics
10551 * @s: place to store stats
10552 * @netstats: per-cpu network stats to read from
10553 *
10554 * Read per-cpu network statistics and populate the related fields in @s.
10555 */
10556void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
10557 const struct pcpu_sw_netstats __percpu *netstats)
10558{
10559 int cpu;
10560
10561 for_each_possible_cpu(cpu) {
10562 const struct pcpu_sw_netstats *stats;
10563 struct pcpu_sw_netstats tmp;
10564 unsigned int start;
10565
10566 stats = per_cpu_ptr(netstats, cpu);
10567 do {
10568 start = u64_stats_fetch_begin_irq(&stats->syncp);
10569 tmp.rx_packets = stats->rx_packets;
10570 tmp.rx_bytes = stats->rx_bytes;
10571 tmp.tx_packets = stats->tx_packets;
10572 tmp.tx_bytes = stats->tx_bytes;
10573 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
10574
10575 s->rx_packets += tmp.rx_packets;
10576 s->rx_bytes += tmp.rx_bytes;
10577 s->tx_packets += tmp.tx_packets;
10578 s->tx_bytes += tmp.tx_bytes;
10579 }
10580}
10581EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
10582
Heiner Kallweita1839422020-11-07 21:49:07 +010010583/**
10584 * dev_get_tstats64 - ndo_get_stats64 implementation
10585 * @dev: device to get statistics from
10586 * @s: place to store stats
10587 *
10588 * Populate @s from dev->stats and dev->tstats. Can be used as
10589 * ndo_get_stats64() callback.
10590 */
10591void dev_get_tstats64(struct net_device *dev, struct rtnl_link_stats64 *s)
10592{
10593 netdev_stats_to_stats64(s, &dev->stats);
10594 dev_fetch_sw_netstats(s, dev->tstats);
10595}
10596EXPORT_SYMBOL_GPL(dev_get_tstats64);
10597
Eric Dumazet24824a02010-10-02 06:11:55 +000010598struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -070010599{
Eric Dumazet24824a02010-10-02 06:11:55 +000010600 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -070010601
Eric Dumazet24824a02010-10-02 06:11:55 +000010602#ifdef CONFIG_NET_CLS_ACT
10603 if (queue)
10604 return queue;
10605 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10606 if (!queue)
10607 return NULL;
10608 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -080010609 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +000010610 queue->qdisc_sleeping = &noop_qdisc;
10611 rcu_assign_pointer(dev->ingress_queue, queue);
10612#endif
10613 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -070010614}
10615
Eric Dumazet2c60db02012-09-16 09:17:26 +000010616static const struct ethtool_ops default_ethtool_ops;
10617
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +000010618void netdev_set_default_ethtool_ops(struct net_device *dev,
10619 const struct ethtool_ops *ops)
10620{
10621 if (dev->ethtool_ops == &default_ethtool_ops)
10622 dev->ethtool_ops = ops;
10623}
10624EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
10625
Eric Dumazet74d332c2013-10-30 13:10:44 -070010626void netdev_freemem(struct net_device *dev)
10627{
10628 char *addr = (char *)dev - dev->padded;
10629
WANG Cong4cb28972014-06-02 15:55:22 -070010630 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010631}
10632
Linus Torvalds1da177e2005-04-16 15:20:36 -070010633/**
tcharding722c9a02017-02-09 17:56:04 +110010634 * alloc_netdev_mqs - allocate network device
10635 * @sizeof_priv: size of private data to allocate space for
10636 * @name: device name format string
10637 * @name_assign_type: origin of device name
10638 * @setup: callback to initialize device
10639 * @txqs: the number of TX subqueues to allocate
10640 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -070010641 *
tcharding722c9a02017-02-09 17:56:04 +110010642 * Allocates a struct net_device with private data area for driver use
10643 * and performs basic initialization. Also allocates subqueue structs
10644 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010645 */
Tom Herbert36909ea2011-01-09 19:36:31 +000010646struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +020010647 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +000010648 void (*setup)(struct net_device *),
10649 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010650{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010651 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +030010652 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010653 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010654
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -070010655 BUG_ON(strlen(name) >= sizeof(dev->name));
10656
Tom Herbert36909ea2011-01-09 19:36:31 +000010657 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010658 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +000010659 return NULL;
10660 }
10661
Tom Herbert36909ea2011-01-09 19:36:31 +000010662 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010663 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +000010664 return NULL;
10665 }
Tom Herbert36909ea2011-01-09 19:36:31 +000010666
David S. Millerfd2ea0a2008-07-17 01:56:23 -070010667 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010668 if (sizeof_priv) {
10669 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010670 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010671 alloc_size += sizeof_priv;
10672 }
10673 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010674 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010675
Michal Hockodcda9b02017-07-12 14:36:45 -070010676 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +000010677 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010678 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010679
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010680 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010681 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010682
Eric Dumazet29b44332010-10-11 10:22:12 +000010683 dev->pcpu_refcnt = alloc_percpu(int);
10684 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -070010685 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010686
Linus Torvalds1da177e2005-04-16 15:20:36 -070010687 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +000010688 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010689
Jiri Pirko22bedad32010-04-01 21:22:57 +000010690 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010691 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +000010692
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010693 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010694
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -070010695 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +000010696 dev->gso_max_segs = GSO_MAX_SEGS;
Taehee Yoo5343da42019-10-21 18:47:50 +000010697 dev->upper_level = 1;
10698 dev->lower_level = 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010699#ifdef CONFIG_LOCKDEP
10700 dev->nested_level = 0;
10701 INIT_LIST_HEAD(&dev->unlink_list);
10702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010703
Herbert Xud565b0a2008-12-15 23:38:52 -080010704 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010705 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -070010706 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +000010707 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +020010708 INIT_LIST_HEAD(&dev->adj_list.upper);
10709 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -080010710 INIT_LIST_HEAD(&dev->ptype_all);
10711 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Pirko93642e12020-01-25 12:17:08 +010010712 INIT_LIST_HEAD(&dev->net_notifier_list);
Jiri Kosina59cc1f62016-08-10 11:05:15 +020010713#ifdef CONFIG_NET_SCHED
10714 hash_init(dev->qdisc_hash);
10715#endif
Eric Dumazet02875872014-10-05 18:38:35 -070010716 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010717 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010718
Phil Suttera8131042016-02-17 15:37:43 +010010719 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +020010720 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +010010721 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +010010722 }
Phil Sutter906470c2015-08-18 10:30:48 +020010723
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010724 dev->num_tx_queues = txqs;
10725 dev->real_num_tx_queues = txqs;
10726 if (netif_alloc_netdev_queues(dev))
10727 goto free_all;
10728
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010729 dev->num_rx_queues = rxqs;
10730 dev->real_num_rx_queues = rxqs;
10731 if (netif_alloc_rx_queues(dev))
10732 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010733
Linus Torvalds1da177e2005-04-16 15:20:36 -070010734 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +020010735 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +000010736 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +000010737 if (!dev->ethtool_ops)
10738 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +020010739
Daniel Borkmann357b6cc2020-03-18 10:33:22 +010010740 nf_hook_ingress_init(dev);
Pablo Neirae687ad62015-05-13 18:19:38 +020010741
Linus Torvalds1da177e2005-04-16 15:20:36 -070010742 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010743
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010744free_all:
10745 free_netdev(dev);
10746 return NULL;
10747
Eric Dumazet29b44332010-10-11 10:22:12 +000010748free_pcpu:
10749 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010750free_dev:
10751 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010752 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010753}
Tom Herbert36909ea2011-01-09 19:36:31 +000010754EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010755
10756/**
tcharding722c9a02017-02-09 17:56:04 +110010757 * free_netdev - free network device
10758 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010759 *
tcharding722c9a02017-02-09 17:56:04 +110010760 * This function does the last stage of destroying an allocated device
10761 * interface. The reference to the device object is released. If this
10762 * is the last reference then it will be freed.Must be called in process
10763 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010764 */
10765void free_netdev(struct net_device *dev)
10766{
Herbert Xud565b0a2008-12-15 23:38:52 -080010767 struct napi_struct *p, *n;
10768
Eric Dumazet93d05d42015-11-18 06:31:03 -080010769 might_sleep();
Jakub Kicinskic269a242021-01-06 10:40:06 -080010770
10771 /* When called immediately after register_netdevice() failed the unwind
10772 * handling may still be dismantling the device. Handle that case by
10773 * deferring the free.
10774 */
10775 if (dev->reg_state == NETREG_UNREGISTERING) {
10776 ASSERT_RTNL();
10777 dev->needs_free_netdev = true;
10778 return;
10779 }
10780
Eric Dumazet60877a32013-06-20 01:15:51 -070010781 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010782 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -070010783
Eric Dumazet33d480c2011-08-11 19:30:52 +000010784 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +000010785
Jiri Pirkof001fde2009-05-05 02:48:28 +000010786 /* Flush device addresses */
10787 dev_addr_flush(dev);
10788
Herbert Xud565b0a2008-12-15 23:38:52 -080010789 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
10790 netif_napi_del(p);
10791
Eric Dumazet29b44332010-10-11 10:22:12 +000010792 free_percpu(dev->pcpu_refcnt);
10793 dev->pcpu_refcnt = NULL;
Toke Høiland-Jørgensen75ccae62020-01-16 16:14:44 +010010794 free_percpu(dev->xdp_bulkq);
10795 dev->xdp_bulkq = NULL;
Eric Dumazet29b44332010-10-11 10:22:12 +000010796
Stephen Hemminger3041a062006-05-26 13:25:24 -070010797 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010798 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -070010799 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010800 return;
10801 }
10802
10803 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
10804 dev->reg_state = NETREG_RELEASED;
10805
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070010806 /* will free via device release */
10807 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010808}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010809EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010810
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010811/**
10812 * synchronize_net - Synchronize with packet receive processing
10813 *
10814 * Wait for packets currently being received to be done.
10815 * Does not block later packets from starting.
10816 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010817void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010818{
10819 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +000010820 if (rtnl_is_locked())
10821 synchronize_rcu_expedited();
10822 else
10823 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010824}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010825EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010826
10827/**
Eric Dumazet44a08732009-10-27 07:03:04 +000010828 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070010829 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +000010830 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -080010831 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010832 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010833 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +000010834 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010835 *
10836 * Callers must hold the rtnl semaphore. You may want
10837 * unregister_netdev() instead of this.
10838 */
10839
Eric Dumazet44a08732009-10-27 07:03:04 +000010840void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010841{
Herbert Xua6620712007-12-12 19:21:56 -080010842 ASSERT_RTNL();
10843
Eric Dumazet44a08732009-10-27 07:03:04 +000010844 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010845 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +000010846 } else {
Jakub Kicinski037e56b2021-01-19 12:25:19 -080010847 LIST_HEAD(single);
10848
10849 list_add(&dev->unreg_list, &single);
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080010850 unregister_netdevice_many(&single);
Eric Dumazet44a08732009-10-27 07:03:04 +000010851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010852}
Eric Dumazet44a08732009-10-27 07:03:04 +000010853EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010854
10855/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010856 * unregister_netdevice_many - unregister many devices
10857 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -070010858 *
10859 * Note: As most callers use a stack allocated list_head,
10860 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010861 */
10862void unregister_netdevice_many(struct list_head *head)
10863{
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080010864 struct net_device *dev, *tmp;
10865 LIST_HEAD(close_head);
10866
10867 BUG_ON(dev_boot_phase);
10868 ASSERT_RTNL();
10869
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080010870 if (list_empty(head))
10871 return;
10872
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080010873 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
10874 /* Some devices call without registering
10875 * for initialization unwind. Remove those
10876 * devices and proceed with the remaining.
10877 */
10878 if (dev->reg_state == NETREG_UNINITIALIZED) {
10879 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
10880 dev->name, dev);
10881
10882 WARN_ON(1);
10883 list_del(&dev->unreg_list);
10884 continue;
10885 }
10886 dev->dismantle = true;
10887 BUG_ON(dev->reg_state != NETREG_REGISTERED);
10888 }
10889
10890 /* If device is running, close it first. */
10891 list_for_each_entry(dev, head, unreg_list)
10892 list_add_tail(&dev->close_list, &close_head);
10893 dev_close_many(&close_head, true);
10894
10895 list_for_each_entry(dev, head, unreg_list) {
10896 /* And unlink it from device chain. */
10897 unlist_netdevice(dev);
10898
10899 dev->reg_state = NETREG_UNREGISTERING;
10900 }
10901 flush_all_backlogs();
10902
10903 synchronize_net();
10904
10905 list_for_each_entry(dev, head, unreg_list) {
10906 struct sk_buff *skb = NULL;
10907
10908 /* Shutdown queueing discipline. */
10909 dev_shutdown(dev);
10910
10911 dev_xdp_uninstall(dev);
10912
10913 /* Notify protocols, that we are about to destroy
10914 * this device. They should clean all the things.
10915 */
10916 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
10917
10918 if (!dev->rtnl_link_ops ||
10919 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
10920 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
10921 GFP_KERNEL, NULL, 0);
10922
10923 /*
10924 * Flush the unicast and multicast chains
10925 */
10926 dev_uc_flush(dev);
10927 dev_mc_flush(dev);
10928
10929 netdev_name_node_alt_flush(dev);
10930 netdev_name_node_free(dev->name_node);
10931
10932 if (dev->netdev_ops->ndo_uninit)
10933 dev->netdev_ops->ndo_uninit(dev);
10934
10935 if (skb)
10936 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
10937
10938 /* Notifier chain MUST detach us all upper devices. */
10939 WARN_ON(netdev_has_any_upper_dev(dev));
10940 WARN_ON(netdev_has_any_lower_dev(dev));
10941
10942 /* Remove entries from kobject tree */
10943 netdev_unregister_kobject(dev);
10944#ifdef CONFIG_XPS
10945 /* Remove XPS queueing entries */
10946 netif_reset_xps_queues_gt(dev, 0);
10947#endif
10948 }
10949
10950 synchronize_net();
10951
10952 list_for_each_entry(dev, head, unreg_list) {
10953 dev_put(dev);
10954 net_set_todo(dev);
10955 }
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080010956
10957 list_del(head);
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080010958}
Jakub Kicinski0cbe1e52021-01-19 12:25:21 -080010959EXPORT_SYMBOL(unregister_netdevice_many);
Jakub Kicinskibcfe2f12021-01-19 12:25:20 -080010960
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010961/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010962 * unregister_netdev - remove device from the kernel
10963 * @dev: device
10964 *
10965 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010966 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010967 *
10968 * This is just a wrapper for unregister_netdevice that takes
10969 * the rtnl semaphore. In general you want to use this and not
10970 * unregister_netdevice.
10971 */
10972void unregister_netdev(struct net_device *dev)
10973{
10974 rtnl_lock();
10975 unregister_netdevice(dev);
10976 rtnl_unlock();
10977}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010978EXPORT_SYMBOL(unregister_netdev);
10979
Eric W. Biedermance286d32007-09-12 13:53:49 +020010980/**
10981 * dev_change_net_namespace - move device to different nethost namespace
10982 * @dev: device
10983 * @net: network namespace
10984 * @pat: If not NULL name pattern to try if the current device name
10985 * is already taken in the destination network namespace.
10986 *
10987 * This function shuts down a device interface and moves it
10988 * to a new network namespace. On success 0 is returned, on
10989 * a failure a netagive errno code is returned.
10990 *
10991 * Callers must hold the rtnl semaphore.
10992 */
10993
10994int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
10995{
Christian Brauneref6a4c82020-02-27 04:37:19 +010010996 struct net *net_old = dev_net(dev);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010997 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010998
10999 ASSERT_RTNL();
11000
11001 /* Don't allow namespace local devices to be moved. */
11002 err = -EINVAL;
11003 if (dev->features & NETIF_F_NETNS_LOCAL)
11004 goto out;
11005
11006 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011007 if (dev->reg_state != NETREG_REGISTERED)
11008 goto out;
11009
11010 /* Get out if there is nothing todo */
11011 err = 0;
Christian Brauneref6a4c82020-02-27 04:37:19 +010011012 if (net_eq(net_old, net))
Eric W. Biedermance286d32007-09-12 13:53:49 +020011013 goto out;
11014
11015 /* Pick the destination device name, and ensure
11016 * we can use it in the destination network namespace.
11017 */
11018 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +000011019 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011020 /* We get here if we can't use the current device name */
11021 if (!pat)
11022 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +080011023 err = dev_get_valid_name(net, dev, pat);
11024 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011025 goto out;
11026 }
11027
11028 /*
11029 * And now a mini version of register_netdevice unregister_netdevice.
11030 */
11031
11032 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -070011033 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011034
11035 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011036 unlist_netdevice(dev);
11037
11038 synchronize_net();
11039
11040 /* Shutdown queueing discipline. */
11041 dev_shutdown(dev);
11042
11043 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +110011044 * this device. They should clean all the things.
11045 *
11046 * Note that dev->reg_state stays at NETREG_REGISTERED.
11047 * This is wanted because this way 8021q and macvlan know
11048 * the device is just moving and can keep their slaves up.
11049 */
Eric W. Biedermance286d32007-09-12 13:53:49 +020011050 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +000011051 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011052
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +020011053 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011054 /* If there is an ifindex conflict assign a new one */
11055 if (__dev_get_by_index(net, dev->ifindex))
11056 new_ifindex = dev_new_index(net);
11057 else
11058 new_ifindex = dev->ifindex;
11059
11060 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
11061 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011062
11063 /*
11064 * Flush the unicast and multicast chains
11065 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +000011066 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +000011067 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011068
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011069 /* Send a netdev-removed uevent to the old namespace */
11070 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040011071 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011072
Jiri Pirko93642e12020-01-25 12:17:08 +010011073 /* Move per-net netdevice notifiers that are following the netdevice */
11074 move_netdevice_notifiers_dev_net(dev, net);
11075
Eric W. Biedermance286d32007-09-12 13:53:49 +020011076 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090011077 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010011078 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011079
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011080 /* Send a netdev-add uevent to the new namespace */
11081 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040011082 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000011083
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011084 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -070011085 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011086 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011087
Christian Brauneref6a4c82020-02-27 04:37:19 +010011088 /* Adapt owner in case owning user namespace of target network
11089 * namespace is different from the original one.
11090 */
11091 err = netdev_change_owner(dev, net_old, net);
11092 WARN_ON(err);
11093
Eric W. Biedermance286d32007-09-12 13:53:49 +020011094 /* Add the device back in the hashes */
11095 list_netdevice(dev);
11096
11097 /* Notify protocols, that a new device appeared. */
11098 call_netdevice_notifiers(NETDEV_REGISTER, dev);
11099
Eric W. Biedermand90a9092009-12-12 22:11:15 +000011100 /*
11101 * Prevent userspace races by waiting until the network
11102 * device is fully setup before sending notifications.
11103 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -070011104 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +000011105
Eric W. Biedermance286d32007-09-12 13:53:49 +020011106 synchronize_net();
11107 err = 0;
11108out:
11109 return err;
11110}
Johannes Berg463d0182009-07-14 00:33:35 +020011111EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011112
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011113static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011114{
11115 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011116 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011117 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +053011118 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011119
Linus Torvalds1da177e2005-04-16 15:20:36 -070011120 local_irq_disable();
11121 cpu = smp_processor_id();
11122 sd = &per_cpu(softnet_data, cpu);
11123 oldsd = &per_cpu(softnet_data, oldcpu);
11124
11125 /* Find end of our completion_queue. */
11126 list_skb = &sd->completion_queue;
11127 while (*list_skb)
11128 list_skb = &(*list_skb)->next;
11129 /* Append completion queue from offline CPU. */
11130 *list_skb = oldsd->completion_queue;
11131 oldsd->completion_queue = NULL;
11132
Linus Torvalds1da177e2005-04-16 15:20:36 -070011133 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +000011134 if (oldsd->output_queue) {
11135 *sd->output_queue_tailp = oldsd->output_queue;
11136 sd->output_queue_tailp = oldsd->output_queue_tailp;
11137 oldsd->output_queue = NULL;
11138 oldsd->output_queue_tailp = &oldsd->output_queue;
11139 }
Eric Dumazetac64da02015-01-15 17:04:22 -080011140 /* Append NAPI poll list from offline CPU, with one exception :
11141 * process_backlog() must be called by cpu owning percpu backlog.
11142 * We properly handle process_queue & input_pkt_queue later.
11143 */
11144 while (!list_empty(&oldsd->poll_list)) {
11145 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
11146 struct napi_struct,
11147 poll_list);
11148
11149 list_del_init(&napi->poll_list);
11150 if (napi->poll == process_backlog)
11151 napi->state = 0;
11152 else
11153 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +000011154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011155
11156 raise_softirq_irqoff(NET_TX_SOFTIRQ);
11157 local_irq_enable();
11158
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +053011159#ifdef CONFIG_RPS
11160 remsd = oldsd->rps_ipi_list;
11161 oldsd->rps_ipi_list = NULL;
11162#endif
11163 /* send out pending IPI's on offline CPU */
11164 net_rps_send_ipi(remsd);
11165
Linus Torvalds1da177e2005-04-16 15:20:36 -070011166 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +000011167 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080011168 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000011169 input_queue_head_incr(oldsd);
11170 }
Eric Dumazetac64da02015-01-15 17:04:22 -080011171 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080011172 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000011173 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -070011174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070011175
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011177}
Linus Torvalds1da177e2005-04-16 15:20:36 -070011178
Herbert Xu7f353bf2007-08-10 15:47:58 -070011179/**
Herbert Xub63365a2008-10-23 01:11:29 -070011180 * netdev_increment_features - increment feature set by one
11181 * @all: current feature set
11182 * @one: new feature set
11183 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -070011184 *
11185 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -070011186 * @one to the master device with current feature set @all. Will not
11187 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -070011188 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +000011189netdev_features_t netdev_increment_features(netdev_features_t all,
11190 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -070011191{
Tom Herbertc8cd0982015-12-14 11:19:44 -080011192 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -080011193 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +000011194 mask |= NETIF_F_VLAN_CHALLENGED;
11195
Tom Herberta1882222015-12-14 11:19:43 -080011196 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +000011197 all &= one | ~NETIF_F_ALL_FOR_ALL;
11198
Michał Mirosław1742f182011-04-22 06:31:16 +000011199 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -080011200 if (all & NETIF_F_HW_CSUM)
11201 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -070011202
11203 return all;
11204}
Herbert Xub63365a2008-10-23 01:11:29 -070011205EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -070011206
Baruch Siach430f03c2013-06-02 20:43:55 +000011207static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011208{
11209 int i;
11210 struct hlist_head *hash;
11211
Kees Cook6da2ec52018-06-12 13:55:00 -070011212 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011213 if (hash != NULL)
11214 for (i = 0; i < NETDEV_HASHENTRIES; i++)
11215 INIT_HLIST_HEAD(&hash[i]);
11216
11217 return hash;
11218}
11219
Eric W. Biederman881d9662007-09-17 11:56:21 -070011220/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -070011221static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011222{
Li RongQingd9f37d02018-07-13 14:41:36 +080011223 BUILD_BUG_ON(GRO_HASH_BUCKETS >
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080011224 8 * sizeof_field(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +080011225
Rustad, Mark D734b6542012-07-18 09:06:07 +000011226 if (net != &init_net)
11227 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -070011228
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011229 net->dev_name_head = netdev_create_hash();
11230 if (net->dev_name_head == NULL)
11231 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011232
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011233 net->dev_index_head = netdev_create_hash();
11234 if (net->dev_index_head == NULL)
11235 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011236
Jiri Pirkoa30c7b42019-09-30 10:15:10 +020011237 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
11238
Eric W. Biederman881d9662007-09-17 11:56:21 -070011239 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070011240
11241err_idx:
11242 kfree(net->dev_name_head);
11243err_name:
11244 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -070011245}
11246
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070011247/**
11248 * netdev_drivername - network driver for the device
11249 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070011250 *
11251 * Determine network driver for device.
11252 */
David S. Miller3019de12011-06-06 16:41:33 -070011253const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -070011254{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -070011255 const struct device_driver *driver;
11256 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -070011257 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -070011258
11259 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011260 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -070011261 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011262
11263 driver = parent->driver;
11264 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -070011265 return driver->name;
11266 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070011267}
11268
Joe Perches6ea754e2014-09-22 11:10:50 -070011269static void __netdev_printk(const char *level, const struct net_device *dev,
11270 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +000011271{
Joe Perchesb004ff42012-09-12 20:12:19 -070011272 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011273 dev_printk_emit(level[1] - '0',
11274 dev->dev.parent,
11275 "%s %s %s%s: %pV",
11276 dev_driver_string(dev->dev.parent),
11277 dev_name(dev->dev.parent),
11278 netdev_name(dev), netdev_reg_state(dev),
11279 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011280 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -070011281 printk("%s%s%s: %pV",
11282 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011283 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -070011284 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011285 }
Joe Perches256df2f2010-06-27 01:02:35 +000011286}
11287
Joe Perches6ea754e2014-09-22 11:10:50 -070011288void netdev_printk(const char *level, const struct net_device *dev,
11289 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +000011290{
11291 struct va_format vaf;
11292 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +000011293
11294 va_start(args, format);
11295
11296 vaf.fmt = format;
11297 vaf.va = &args;
11298
Joe Perches6ea754e2014-09-22 11:10:50 -070011299 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070011300
Joe Perches256df2f2010-06-27 01:02:35 +000011301 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +000011302}
11303EXPORT_SYMBOL(netdev_printk);
11304
11305#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -070011306void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +000011307{ \
Joe Perches256df2f2010-06-27 01:02:35 +000011308 struct va_format vaf; \
11309 va_list args; \
11310 \
11311 va_start(args, fmt); \
11312 \
11313 vaf.fmt = fmt; \
11314 vaf.va = &args; \
11315 \
Joe Perches6ea754e2014-09-22 11:10:50 -070011316 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -070011317 \
Joe Perches256df2f2010-06-27 01:02:35 +000011318 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +000011319} \
11320EXPORT_SYMBOL(func);
11321
11322define_netdev_printk_level(netdev_emerg, KERN_EMERG);
11323define_netdev_printk_level(netdev_alert, KERN_ALERT);
11324define_netdev_printk_level(netdev_crit, KERN_CRIT);
11325define_netdev_printk_level(netdev_err, KERN_ERR);
11326define_netdev_printk_level(netdev_warn, KERN_WARNING);
11327define_netdev_printk_level(netdev_notice, KERN_NOTICE);
11328define_netdev_printk_level(netdev_info, KERN_INFO);
11329
Pavel Emelyanov46650792007-10-08 20:38:39 -070011330static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011331{
11332 kfree(net->dev_name_head);
11333 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +030011334 if (net != &init_net)
11335 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -070011336}
11337
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011338static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -070011339 .init = netdev_init,
11340 .exit = netdev_exit,
11341};
11342
Pavel Emelyanov46650792007-10-08 20:38:39 -070011343static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011344{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011345 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011346 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011347 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +020011348 * initial network namespace
11349 */
11350 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011351 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011352 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011353 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +020011354
11355 /* Ignore unmoveable devices (i.e. loopback) */
11356 if (dev->features & NETIF_F_NETNS_LOCAL)
11357 continue;
11358
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011359 /* Leave virtual devices for the generic cleanup */
11360 if (dev->rtnl_link_ops)
11361 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -080011362
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011363 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011364 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko55b40db2019-07-28 14:56:36 +020011365 if (__dev_get_by_name(&init_net, fb_name))
11366 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011367 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011368 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000011369 pr_emerg("%s: failed to move %s to init_net: %d\n",
11370 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011371 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +020011372 }
11373 }
11374 rtnl_unlock();
11375}
11376
Eric W. Biederman50624c92013-09-23 21:19:49 -070011377static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
11378{
11379 /* Return with the rtnl_lock held when there are no network
11380 * devices unregistering in any network namespace in net_list.
11381 */
11382 struct net *net;
11383 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +010011384 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011385
Peter Zijlstraff960a72014-10-29 17:04:56 +010011386 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011387 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -070011388 unregistering = false;
11389 rtnl_lock();
11390 list_for_each_entry(net, net_list, exit_list) {
11391 if (net->dev_unreg_count > 0) {
11392 unregistering = true;
11393 break;
11394 }
11395 }
11396 if (!unregistering)
11397 break;
11398 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +010011399
11400 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011401 }
Peter Zijlstraff960a72014-10-29 17:04:56 +010011402 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011403}
11404
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011405static void __net_exit default_device_exit_batch(struct list_head *net_list)
11406{
11407 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011408 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011409 * Do this across as many network namespaces as possible to
11410 * improve batching efficiency.
11411 */
11412 struct net_device *dev;
11413 struct net *net;
11414 LIST_HEAD(dev_kill_list);
11415
Eric W. Biederman50624c92013-09-23 21:19:49 -070011416 /* To prevent network device cleanup code from dereferencing
11417 * loopback devices or network devices that have been freed
11418 * wait here for all pending unregistrations to complete,
11419 * before unregistring the loopback device and allowing the
11420 * network namespace be freed.
11421 *
11422 * The netdev todo list containing all network devices
11423 * unregistrations that happen in default_device_exit_batch
11424 * will run in the rtnl_unlock() at the end of
11425 * default_device_exit_batch.
11426 */
11427 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011428 list_for_each_entry(net, net_list, exit_list) {
11429 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +020011430 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011431 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
11432 else
11433 unregister_netdevice_queue(dev, &dev_kill_list);
11434 }
11435 }
11436 unregister_netdevice_many(&dev_kill_list);
11437 rtnl_unlock();
11438}
11439
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011440static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011441 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011442 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +020011443};
11444
Linus Torvalds1da177e2005-04-16 15:20:36 -070011445/*
11446 * Initialize the DEV module. At boot time this walks the device list and
11447 * unhooks any devices that fail to initialise (normally hardware not
11448 * present) and leaves us with a valid list of present and active devices.
11449 *
11450 */
11451
11452/*
11453 * This is called single threaded during boot, so no need
11454 * to take the rtnl semaphore.
11455 */
11456static int __init net_dev_init(void)
11457{
11458 int i, rc = -ENOMEM;
11459
11460 BUG_ON(!dev_boot_phase);
11461
Linus Torvalds1da177e2005-04-16 15:20:36 -070011462 if (dev_proc_init())
11463 goto out;
11464
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011465 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -070011466 goto out;
11467
11468 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +080011469 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011470 INIT_LIST_HEAD(&ptype_base[i]);
11471
Vlad Yasevich62532da2012-11-15 08:49:10 +000011472 INIT_LIST_HEAD(&offload_base);
11473
Eric W. Biederman881d9662007-09-17 11:56:21 -070011474 if (register_pernet_subsys(&netdev_net_ops))
11475 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011476
11477 /*
11478 * Initialise the packet receive queues.
11479 */
11480
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070011481 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -070011482 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011483 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011484
Eric Dumazet41852492016-08-26 12:50:39 -070011485 INIT_WORK(flush, flush_backlog);
11486
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011487 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -070011488 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +010011489#ifdef CONFIG_XFRM_OFFLOAD
11490 skb_queue_head_init(&sd->xfrm_backlog);
11491#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011492 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +000011493 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +000011494#ifdef CONFIG_RPS
Peter Zijlstra545b8c82020-06-15 11:29:31 +020011495 INIT_CSD(&sd->csd, rps_trigger_softirq, sd);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011496 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -070011497#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +000011498
David S. Miller7c4ec742018-07-20 23:37:55 -070011499 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011500 sd->backlog.poll = process_backlog;
11501 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011502 }
11503
Linus Torvalds1da177e2005-04-16 15:20:36 -070011504 dev_boot_phase = 0;
11505
Eric W. Biederman505d4f72008-11-07 22:54:20 -080011506 /* The loopback device is special if any other network devices
11507 * is present in a network namespace the loopback device must
11508 * be present. Since we now dynamically allocate and free the
11509 * loopback device ensure this invariant is maintained by
11510 * keeping the loopback device as the first device on the
11511 * list of network devices. Ensuring the loopback devices
11512 * is the first device that appears and the last network device
11513 * that disappears.
11514 */
11515 if (register_pernet_device(&loopback_net_ops))
11516 goto out;
11517
11518 if (register_pernet_device(&default_device_ops))
11519 goto out;
11520
Carlos R. Mafra962cf362008-05-15 11:15:37 -030011521 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
11522 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011523
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011524 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
11525 NULL, dev_cpu_dead);
11526 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011527 rc = 0;
11528out:
11529 return rc;
11530}
11531
11532subsys_initcall(net_dev_init);