blob: 9499a414d67e1021f976b31579ecbad9920044c0 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
tcharding722c9a02017-02-09 17:56:04 +11003 * NET3 Protocol independent device support routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Derived from the non IP parts of dev.c 1.0.19
tcharding722c9a02017-02-09 17:56:04 +11006 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
8 * Mark Evans, <evansmp@uhura.aston.ac.uk>
9 *
10 * Additional Authors:
11 * Florian la Roche <rzsfl@rz.uni-sb.de>
12 * Alan Cox <gw4pts@gw4pts.ampr.org>
13 * David Hinds <dahinds@users.sourceforge.net>
14 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
15 * Adam Sulmicki <adam@cfar.umd.edu>
16 * Pekka Riikonen <priikone@poesidon.pspt.fi>
17 *
18 * Changes:
19 * D.J. Barrow : Fixed bug where dev->refcnt gets set
tcharding722c9a02017-02-09 17:56:04 +110020 * to 2 if register_netdev gets called
21 * before net_dev_init & also removed a
22 * few lines of code in the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Alan Cox : device private ioctl copies fields back.
24 * Alan Cox : Transmit queue code does relevant
25 * stunts to keep the queue safe.
26 * Alan Cox : Fixed double lock.
27 * Alan Cox : Fixed promisc NULL pointer trap
28 * ???????? : Support the full private ioctl range
29 * Alan Cox : Moved ioctl permission check into
30 * drivers
31 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
32 * Alan Cox : 100 backlog just doesn't cut it when
33 * you start doing multicast video 8)
34 * Alan Cox : Rewrote net_bh and list manager.
tcharding722c9a02017-02-09 17:56:04 +110035 * Alan Cox : Fix ETH_P_ALL echoback lengths.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * Alan Cox : Took out transmit every packet pass
37 * Saved a few bytes in the ioctl handler
38 * Alan Cox : Network driver sets packet type before
39 * calling netif_rx. Saves a function
40 * call a packet.
41 * Alan Cox : Hashed net_bh()
42 * Richard Kooijman: Timestamp fixes.
43 * Alan Cox : Wrong field in SIOCGIFDSTADDR
44 * Alan Cox : Device lock protection.
tcharding722c9a02017-02-09 17:56:04 +110045 * Alan Cox : Fixed nasty side effect of device close
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * changes.
47 * Rudi Cilibrasi : Pass the right thing to
48 * set_mac_address()
49 * Dave Miller : 32bit quantity for the device lock to
50 * make it work out on a Sparc.
51 * Bjorn Ekwall : Added KERNELD hack.
52 * Alan Cox : Cleaned up the backlog initialise.
53 * Craig Metz : SIOCGIFCONF fix if space for under
54 * 1 device.
55 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
56 * is no device open function.
57 * Andi Kleen : Fix error reporting for SIOCGIFCONF
58 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
59 * Cyrus Durgin : Cleaned for KMOD
60 * Adam Sulmicki : Bug Fix : Network Device Unload
61 * A network device unload needs to purge
62 * the backlog queue.
63 * Paul Rusty Russell : SIOCSIFNAME
64 * Pekka Riikonen : Netdev boot-time settings code
65 * Andrew Morton : Make unregister_netdevice wait
tcharding722c9a02017-02-09 17:56:04 +110066 * indefinitely on dev->refcnt
67 * J Hadi Salim : - Backlog queue sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * - netif_rx() feedback
69 */
70
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080071#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080073#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/cpu.h>
75#include <linux/types.h>
76#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000077#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090078#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070080#include <linux/sched/mm.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080081#include <linux/mutex.h>
Ahmed S. Darwish11d60112020-06-03 16:49:44 +020082#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/string.h>
84#include <linux/mm.h>
85#include <linux/socket.h>
86#include <linux/sockios.h>
87#include <linux/errno.h>
88#include <linux/interrupt.h>
89#include <linux/if_ether.h>
90#include <linux/netdevice.h>
91#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070092#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070094#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040095#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020096#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -080098#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/stat.h>
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +0300101#include <net/dsa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700103#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200105#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000107#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/highmem.h>
109#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <linux/netpoll.h>
112#include <linux/rcupdate.h>
113#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500116#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700117#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700118#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700119#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700120#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700121#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700123#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700124#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ipv6.h>
126#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700127#include <linux/jhash.h>
128#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700129#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900130#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900131#include <trace/events/skb.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700132#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000133#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100134#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300135#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700136#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100137#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400138#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800139#include <linux/hrtimer.h>
Daniel Borkmann357b6cc2020-03-18 10:33:22 +0100140#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530141#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200142#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200143#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200144#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100145#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100146#include <net/devlink.h>
Heiner Kallweitbd869242020-06-20 22:35:42 +0200147#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700149#include "net-sysfs.h"
150
Herbert Xud565b0a2008-12-15 23:38:52 -0800151#define MAX_GRO_SKBS 8
152
Herbert Xu5d38a072009-01-04 16:13:40 -0800153/* This should be increased if a protocol with a bigger head is added. */
154#define GRO_MAX_HEAD (MAX_HEADER + 128)
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000157static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000158struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
159struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000160static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000162static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700163static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700164 struct netdev_notifier_info *info);
Petr Machata26372602018-12-06 17:05:45 +0000165static int call_netdevice_notifiers_extack(unsigned long val,
166 struct net_device *dev,
167 struct netlink_ext_ack *extack);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200168static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700171 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * semaphore.
173 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800174 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *
176 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700177 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * actual updates. This allows pure readers to access the list even
179 * while a writer is preparing to update it.
180 *
181 * To put it another way, dev_base_lock is held for writing only to
182 * protect against pure readers; the rtnl semaphore provides the
183 * protection against other writers.
184 *
185 * See, for example usages, register_netdevice() and
186 * unregister_netdevice(), which must be called with the rtnl
187 * semaphore held.
188 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190EXPORT_SYMBOL(dev_base_lock);
191
Florian Westphal6c557002017-10-02 23:50:05 +0200192static DEFINE_MUTEX(ifalias_mutex);
193
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300194/* protects napi_hash addition/deletion and napi_gen_id */
195static DEFINE_SPINLOCK(napi_hash_lock);
196
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800197static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800198static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300199
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200200static DECLARE_RWSEM(devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +0000201
Thomas Graf4e985ad2011-06-21 03:11:20 +0000202static inline void dev_base_seq_inc(struct net *net)
203{
tcharding643aa9c2017-02-09 17:56:05 +1100204 while (++net->dev_base_seq == 0)
205 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000206}
207
Eric W. Biederman881d9662007-09-17 11:56:21 -0700208static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700210 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000211
stephen hemminger08e98972009-11-10 07:20:34 +0000212 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Eric W. Biederman881d9662007-09-17 11:56:21 -0700215static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700217 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000220static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000221{
222#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000223 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000224#endif
225}
226
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000227static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000228{
229#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000230 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000231#endif
232}
233
Jiri Pirkoff927412019-09-30 11:48:15 +0200234static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
235 const char *name)
236{
237 struct netdev_name_node *name_node;
238
239 name_node = kmalloc(sizeof(*name_node), GFP_KERNEL);
240 if (!name_node)
241 return NULL;
242 INIT_HLIST_NODE(&name_node->hlist);
243 name_node->dev = dev;
244 name_node->name = name;
245 return name_node;
246}
247
248static struct netdev_name_node *
249netdev_name_node_head_alloc(struct net_device *dev)
250{
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200251 struct netdev_name_node *name_node;
252
253 name_node = netdev_name_node_alloc(dev, dev->name);
254 if (!name_node)
255 return NULL;
256 INIT_LIST_HEAD(&name_node->list);
257 return name_node;
Jiri Pirkoff927412019-09-30 11:48:15 +0200258}
259
260static void netdev_name_node_free(struct netdev_name_node *name_node)
261{
262 kfree(name_node);
263}
264
265static void netdev_name_node_add(struct net *net,
266 struct netdev_name_node *name_node)
267{
268 hlist_add_head_rcu(&name_node->hlist,
269 dev_name_hash(net, name_node->name));
270}
271
272static void netdev_name_node_del(struct netdev_name_node *name_node)
273{
274 hlist_del_rcu(&name_node->hlist);
275}
276
277static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
278 const char *name)
279{
280 struct hlist_head *head = dev_name_hash(net, name);
281 struct netdev_name_node *name_node;
282
283 hlist_for_each_entry(name_node, head, hlist)
284 if (!strcmp(name_node->name, name))
285 return name_node;
286 return NULL;
287}
288
289static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
290 const char *name)
291{
292 struct hlist_head *head = dev_name_hash(net, name);
293 struct netdev_name_node *name_node;
294
295 hlist_for_each_entry_rcu(name_node, head, hlist)
296 if (!strcmp(name_node->name, name))
297 return name_node;
298 return NULL;
299}
300
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200301int netdev_name_node_alt_create(struct net_device *dev, const char *name)
302{
303 struct netdev_name_node *name_node;
304 struct net *net = dev_net(dev);
305
306 name_node = netdev_name_node_lookup(net, name);
307 if (name_node)
308 return -EEXIST;
309 name_node = netdev_name_node_alloc(dev, name);
310 if (!name_node)
311 return -ENOMEM;
312 netdev_name_node_add(net, name_node);
313 /* The node that holds dev->name acts as a head of per-device list. */
314 list_add_tail(&name_node->list, &dev->name_node->list);
315
316 return 0;
317}
318EXPORT_SYMBOL(netdev_name_node_alt_create);
319
320static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
321{
322 list_del(&name_node->list);
323 netdev_name_node_del(name_node);
324 kfree(name_node->name);
325 netdev_name_node_free(name_node);
326}
327
328int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
329{
330 struct netdev_name_node *name_node;
331 struct net *net = dev_net(dev);
332
333 name_node = netdev_name_node_lookup(net, name);
334 if (!name_node)
335 return -ENOENT;
Eric Dumazete08ad802020-02-14 07:53:53 -0800336 /* lookup might have found our primary name or a name belonging
337 * to another device.
338 */
339 if (name_node == dev->name_node || name_node->dev != dev)
340 return -EINVAL;
341
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200342 __netdev_name_node_alt_destroy(name_node);
343
344 return 0;
345}
346EXPORT_SYMBOL(netdev_name_node_alt_destroy);
347
348static void netdev_name_node_alt_flush(struct net_device *dev)
349{
350 struct netdev_name_node *name_node, *tmp;
351
352 list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list)
353 __netdev_name_node_alt_destroy(name_node);
354}
355
Eric W. Biedermance286d32007-09-12 13:53:49 +0200356/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000357static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200358{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900359 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200360
361 ASSERT_RTNL();
362
363 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800364 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Jiri Pirkoff927412019-09-30 11:48:15 +0200365 netdev_name_node_add(net, dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000366 hlist_add_head_rcu(&dev->index_hlist,
367 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200368 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000369
370 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200371}
372
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000373/* Device list removal
374 * caller must respect a RCU grace period before freeing/reusing dev
375 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200376static void unlist_netdevice(struct net_device *dev)
377{
378 ASSERT_RTNL();
379
380 /* Unlink dev from the device chain */
381 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800382 list_del_rcu(&dev->dev_list);
Jiri Pirkoff927412019-09-30 11:48:15 +0200383 netdev_name_node_del(dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000384 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200385 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000386
387 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200388}
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/*
391 * Our notifier list
392 */
393
Alan Sternf07d5b92006-05-09 15:23:03 -0700394static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396/*
397 * Device drivers call our routines to queue packets here. We empty the
398 * queue in the local softnet handler.
399 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700400
Eric Dumazet9958da02010-04-17 04:17:02 +0000401DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700402EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Cong Wang1a33e102020-05-02 22:22:19 -0700404#ifdef CONFIG_LOCKDEP
405/*
406 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
407 * according to dev->type
408 */
409static const unsigned short netdev_lock_type[] = {
410 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
411 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
412 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
413 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
414 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
415 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
416 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
417 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
418 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
419 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
420 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
421 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
422 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
423 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
424 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
425
426static const char *const netdev_lock_name[] = {
427 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
428 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
429 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
430 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
431 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
432 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
433 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
434 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
435 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
436 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
437 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
438 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
439 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
440 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
441 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
442
443static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang845e0eb2020-06-08 14:53:01 -0700444static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang1a33e102020-05-02 22:22:19 -0700445
446static inline unsigned short netdev_lock_pos(unsigned short dev_type)
447{
448 int i;
449
450 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
451 if (netdev_lock_type[i] == dev_type)
452 return i;
453 /* the last key is used by default */
454 return ARRAY_SIZE(netdev_lock_type) - 1;
455}
456
457static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
458 unsigned short dev_type)
459{
460 int i;
461
462 i = netdev_lock_pos(dev_type);
463 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
464 netdev_lock_name[i]);
465}
Cong Wang845e0eb2020-06-08 14:53:01 -0700466
467static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
468{
469 int i;
470
471 i = netdev_lock_pos(dev->type);
472 lockdep_set_class_and_name(&dev->addr_list_lock,
473 &netdev_addr_lock_key[i],
474 netdev_lock_name[i]);
475}
Cong Wang1a33e102020-05-02 22:22:19 -0700476#else
477static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
478 unsigned short dev_type)
479{
480}
Cong Wang845e0eb2020-06-08 14:53:01 -0700481
482static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
483{
484}
Cong Wang1a33e102020-05-02 22:22:19 -0700485#endif
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100488 *
489 * Protocol management and registration routines
490 *
491 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 * Add a protocol ID to the list. Now that the input handler is
496 * smarter we can dispense with all the messy stuff that used to be
497 * here.
498 *
499 * BEWARE!!! Protocol handlers, mangling input packets,
500 * MUST BE last in hash buckets and checking protocol handlers
501 * MUST start from promiscuous ptype_all chain in net_bh.
502 * It is true now, do not change it.
503 * Explanation follows: if protocol handler, mangling packet, will
504 * be the first on list, it is not able to sense, that packet
505 * is cloned and should be copied-on-write, so that it will
506 * change it and subsequent readers will get broken packet.
507 * --ANK (980803)
508 */
509
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000510static inline struct list_head *ptype_head(const struct packet_type *pt)
511{
512 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800513 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000514 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800515 return pt->dev ? &pt->dev->ptype_specific :
516 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/**
520 * dev_add_pack - add packet handler
521 * @pt: packet type declaration
522 *
523 * Add a protocol handler to the networking stack. The passed &packet_type
524 * is linked into kernel lists and may not be freed until it has been
525 * removed from the kernel lists.
526 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900527 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 * guarantee all CPU's that are in middle of receiving packets
529 * will see the new packet type (until the next received packet).
530 */
531
532void dev_add_pack(struct packet_type *pt)
533{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000534 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000536 spin_lock(&ptype_lock);
537 list_add_rcu(&pt->list, head);
538 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700540EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/**
543 * __dev_remove_pack - remove packet handler
544 * @pt: packet type declaration
545 *
546 * Remove a protocol handler that was previously added to the kernel
547 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
548 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900549 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 *
551 * The packet type might still be in use by receivers
552 * and must not be freed until after all the CPU's have gone
553 * through a quiescent state.
554 */
555void __dev_remove_pack(struct packet_type *pt)
556{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000557 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct packet_type *pt1;
559
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000560 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 list_for_each_entry(pt1, head, list) {
563 if (pt == pt1) {
564 list_del_rcu(&pt->list);
565 goto out;
566 }
567 }
568
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000569 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000571 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700573EXPORT_SYMBOL(__dev_remove_pack);
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/**
576 * dev_remove_pack - remove packet handler
577 * @pt: packet type declaration
578 *
579 * Remove a protocol handler that was previously added to the kernel
580 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
581 * from the kernel lists and can be freed or reused once this function
582 * returns.
583 *
584 * This call sleeps to guarantee that no CPU is looking at the packet
585 * type after return.
586 */
587void dev_remove_pack(struct packet_type *pt)
588{
589 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 synchronize_net();
592}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700593EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Vlad Yasevich62532da2012-11-15 08:49:10 +0000595
596/**
597 * dev_add_offload - register offload handlers
598 * @po: protocol offload declaration
599 *
600 * Add protocol offload handlers to the networking stack. The passed
601 * &proto_offload is linked into kernel lists and may not be freed until
602 * it has been removed from the kernel lists.
603 *
604 * This call does not sleep therefore it can not
605 * guarantee all CPU's that are in middle of receiving packets
606 * will see the new offload handlers (until the next received packet).
607 */
608void dev_add_offload(struct packet_offload *po)
609{
David S. Millerbdef7de2015-06-01 14:56:09 -0700610 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000611
612 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700613 list_for_each_entry(elem, &offload_base, list) {
614 if (po->priority < elem->priority)
615 break;
616 }
617 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000618 spin_unlock(&offload_lock);
619}
620EXPORT_SYMBOL(dev_add_offload);
621
622/**
623 * __dev_remove_offload - remove offload handler
624 * @po: packet offload declaration
625 *
626 * Remove a protocol offload handler that was previously added to the
627 * kernel offload handlers by dev_add_offload(). The passed &offload_type
628 * is removed from the kernel lists and can be freed or reused once this
629 * function returns.
630 *
631 * The packet type might still be in use by receivers
632 * and must not be freed until after all the CPU's have gone
633 * through a quiescent state.
634 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800635static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000636{
637 struct list_head *head = &offload_base;
638 struct packet_offload *po1;
639
Eric Dumazetc53aa502012-11-16 08:08:23 +0000640 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000641
642 list_for_each_entry(po1, head, list) {
643 if (po == po1) {
644 list_del_rcu(&po->list);
645 goto out;
646 }
647 }
648
649 pr_warn("dev_remove_offload: %p not found\n", po);
650out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000651 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000652}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000653
654/**
655 * dev_remove_offload - remove packet offload handler
656 * @po: packet offload declaration
657 *
658 * Remove a packet offload handler that was previously added to the kernel
659 * offload handlers by dev_add_offload(). The passed &offload_type is
660 * removed from the kernel lists and can be freed or reused once this
661 * function returns.
662 *
663 * This call sleeps to guarantee that no CPU is looking at the packet
664 * type after return.
665 */
666void dev_remove_offload(struct packet_offload *po)
667{
668 __dev_remove_offload(po);
669
670 synchronize_net();
671}
672EXPORT_SYMBOL(dev_remove_offload);
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100675 *
676 * Device Boot-time Settings Routines
677 *
678 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680/* Boot time configuration table */
681static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
682
683/**
684 * netdev_boot_setup_add - add new setup entry
685 * @name: name of the device
686 * @map: configured settings for the device
687 *
688 * Adds new setup entry to the dev_boot_setup list. The function
689 * returns 0 on error and 1 on success. This is a generic routine to
690 * all netdevices.
691 */
692static int netdev_boot_setup_add(char *name, struct ifmap *map)
693{
694 struct netdev_boot_setup *s;
695 int i;
696
697 s = dev_boot_setup;
698 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
699 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
700 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700701 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 memcpy(&s[i].map, map, sizeof(s[i].map));
703 break;
704 }
705 }
706
707 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
708}
709
710/**
tcharding722c9a02017-02-09 17:56:04 +1100711 * netdev_boot_setup_check - check boot time settings
712 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 *
tcharding722c9a02017-02-09 17:56:04 +1100714 * Check boot time settings for the device.
715 * The found settings are set for the device to be used
716 * later in the device probing.
717 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
719int netdev_boot_setup_check(struct net_device *dev)
720{
721 struct netdev_boot_setup *s = dev_boot_setup;
722 int i;
723
724 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
725 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700726 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100727 dev->irq = s[i].map.irq;
728 dev->base_addr = s[i].map.base_addr;
729 dev->mem_start = s[i].map.mem_start;
730 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return 1;
732 }
733 }
734 return 0;
735}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700736EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738
739/**
tcharding722c9a02017-02-09 17:56:04 +1100740 * netdev_boot_base - get address from boot time settings
741 * @prefix: prefix for network device
742 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 *
tcharding722c9a02017-02-09 17:56:04 +1100744 * Check boot time settings for the base address of device.
745 * The found settings are set for the device to be used
746 * later in the device probing.
747 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
749unsigned long netdev_boot_base(const char *prefix, int unit)
750{
751 const struct netdev_boot_setup *s = dev_boot_setup;
752 char name[IFNAMSIZ];
753 int i;
754
755 sprintf(name, "%s%d", prefix, unit);
756
757 /*
758 * If device already registered then return base of 1
759 * to indicate not to probe for this interface
760 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700761 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 1;
763
764 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
765 if (!strcmp(name, s[i].name))
766 return s[i].map.base_addr;
767 return 0;
768}
769
770/*
771 * Saves at boot time configured settings for any netdevice.
772 */
773int __init netdev_boot_setup(char *str)
774{
775 int ints[5];
776 struct ifmap map;
777
778 str = get_options(str, ARRAY_SIZE(ints), ints);
779 if (!str || !*str)
780 return 0;
781
782 /* Save settings */
783 memset(&map, 0, sizeof(map));
784 if (ints[0] > 0)
785 map.irq = ints[1];
786 if (ints[0] > 1)
787 map.base_addr = ints[2];
788 if (ints[0] > 2)
789 map.mem_start = ints[3];
790 if (ints[0] > 3)
791 map.mem_end = ints[4];
792
793 /* Add new entry to the list */
794 return netdev_boot_setup_add(str, &map);
795}
796
797__setup("netdev=", netdev_boot_setup);
798
799/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100800 *
801 * Device Interface Subroutines
802 *
803 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200806 * dev_get_iflink - get 'iflink' value of a interface
807 * @dev: targeted interface
808 *
809 * Indicates the ifindex the interface is linked to.
810 * Physical interfaces have the same 'ifindex' and 'iflink' values.
811 */
812
813int dev_get_iflink(const struct net_device *dev)
814{
815 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
816 return dev->netdev_ops->ndo_get_iflink(dev);
817
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200818 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200819}
820EXPORT_SYMBOL(dev_get_iflink);
821
822/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700823 * dev_fill_metadata_dst - Retrieve tunnel egress information.
824 * @dev: targeted interface
825 * @skb: The packet.
826 *
827 * For better visibility of tunnel traffic OVS needs to retrieve
828 * egress tunnel information for a packet. Following API allows
829 * user to get this info.
830 */
831int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
832{
833 struct ip_tunnel_info *info;
834
835 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
836 return -EINVAL;
837
838 info = skb_tunnel_info_unclone(skb);
839 if (!info)
840 return -ENOMEM;
841 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
842 return -EINVAL;
843
844 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
845}
846EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
847
848/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700850 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * @name: name to find
852 *
853 * Find an interface by name. Must be called under RTNL semaphore
854 * or @dev_base_lock. If the name is found a pointer to the device
855 * is returned. If the name is not found then %NULL is returned. The
856 * reference counters are not incremented so the caller must be
857 * careful with locks.
858 */
859
Eric W. Biederman881d9662007-09-17 11:56:21 -0700860struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Jiri Pirkoff927412019-09-30 11:48:15 +0200862 struct netdev_name_node *node_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Jiri Pirkoff927412019-09-30 11:48:15 +0200864 node_name = netdev_name_node_lookup(net, name);
865 return node_name ? node_name->dev : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700867EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869/**
tcharding722c9a02017-02-09 17:56:04 +1100870 * dev_get_by_name_rcu - find a device by its name
871 * @net: the applicable net namespace
872 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000873 *
tcharding722c9a02017-02-09 17:56:04 +1100874 * Find an interface by name.
875 * If the name is found a pointer to the device is returned.
876 * If the name is not found then %NULL is returned.
877 * The reference counters are not incremented so the caller must be
878 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000879 */
880
881struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
882{
Jiri Pirkoff927412019-09-30 11:48:15 +0200883 struct netdev_name_node *node_name;
Eric Dumazet72c95282009-10-30 07:11:27 +0000884
Jiri Pirkoff927412019-09-30 11:48:15 +0200885 node_name = netdev_name_node_lookup_rcu(net, name);
886 return node_name ? node_name->dev : NULL;
Eric Dumazet72c95282009-10-30 07:11:27 +0000887}
888EXPORT_SYMBOL(dev_get_by_name_rcu);
889
890/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700892 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 * @name: name to find
894 *
895 * Find an interface by name. This can be called from any
896 * context and does its own locking. The returned handle has
897 * the usage count incremented and the caller must use dev_put() to
898 * release it when it is no longer needed. %NULL is returned if no
899 * matching device is found.
900 */
901
Eric W. Biederman881d9662007-09-17 11:56:21 -0700902struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct net_device *dev;
905
Eric Dumazet72c95282009-10-30 07:11:27 +0000906 rcu_read_lock();
907 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (dev)
909 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000910 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return dev;
912}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700913EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915/**
916 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700917 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 * @ifindex: index of device
919 *
920 * Search for an interface by index. Returns %NULL if the device
921 * is not found or a pointer to the device. The device has not
922 * had its reference counter increased so the caller must be careful
923 * about locking. The caller must hold either the RTNL semaphore
924 * or @dev_base_lock.
925 */
926
Eric W. Biederman881d9662007-09-17 11:56:21 -0700927struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700929 struct net_device *dev;
930 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Sasha Levinb67bfe02013-02-27 17:06:00 -0800932 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (dev->ifindex == ifindex)
934 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return NULL;
937}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700938EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000940/**
941 * dev_get_by_index_rcu - find a device by its ifindex
942 * @net: the applicable net namespace
943 * @ifindex: index of device
944 *
945 * Search for an interface by index. Returns %NULL if the device
946 * is not found or a pointer to the device. The device has not
947 * had its reference counter increased so the caller must be careful
948 * about locking. The caller must hold RCU lock.
949 */
950
951struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
952{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000953 struct net_device *dev;
954 struct hlist_head *head = dev_index_hash(net, ifindex);
955
Sasha Levinb67bfe02013-02-27 17:06:00 -0800956 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000957 if (dev->ifindex == ifindex)
958 return dev;
959
960 return NULL;
961}
962EXPORT_SYMBOL(dev_get_by_index_rcu);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965/**
966 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700967 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * @ifindex: index of device
969 *
970 * Search for an interface by index. Returns NULL if the device
971 * is not found or a pointer to the device. The device returned has
972 * had a reference added and the pointer is safe until the user calls
973 * dev_put to indicate they have finished with it.
974 */
975
Eric W. Biederman881d9662007-09-17 11:56:21 -0700976struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 struct net_device *dev;
979
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000980 rcu_read_lock();
981 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (dev)
983 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000984 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return dev;
986}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700987EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200990 * dev_get_by_napi_id - find a device by napi_id
991 * @napi_id: ID of the NAPI struct
992 *
993 * Search for an interface by NAPI ID. Returns %NULL if the device
994 * is not found or a pointer to the device. The device has not had
995 * its reference counter increased so the caller must be careful
996 * about locking. The caller must hold RCU lock.
997 */
998
999struct net_device *dev_get_by_napi_id(unsigned int napi_id)
1000{
1001 struct napi_struct *napi;
1002
1003 WARN_ON_ONCE(!rcu_read_lock_held());
1004
1005 if (napi_id < MIN_NAPI_ID)
1006 return NULL;
1007
1008 napi = napi_by_id(napi_id);
1009
1010 return napi ? napi->dev : NULL;
1011}
1012EXPORT_SYMBOL(dev_get_by_napi_id);
1013
1014/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001015 * netdev_get_name - get a netdevice name, knowing its ifindex.
1016 * @net: network namespace
1017 * @name: a pointer to the buffer where the name will be stored.
1018 * @ifindex: the ifindex of the interface to get the name from.
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001019 */
1020int netdev_get_name(struct net *net, char *name, int ifindex)
1021{
1022 struct net_device *dev;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001023 int ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001024
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001025 down_read(&devnet_rename_sem);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001026 rcu_read_lock();
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001027
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001028 dev = dev_get_by_index_rcu(net, ifindex);
1029 if (!dev) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001030 ret = -ENODEV;
1031 goto out;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001032 }
1033
1034 strcpy(name, dev->name);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001035
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001036 ret = 0;
1037out:
1038 rcu_read_unlock();
1039 up_read(&devnet_rename_sem);
1040 return ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001041}
1042
1043/**
Eric Dumazet941666c2010-12-05 01:23:53 +00001044 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001045 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 * @type: media type of device
1047 * @ha: hardware address
1048 *
1049 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -08001050 * is not found or a pointer to the device.
1051 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +00001052 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 * and the caller must therefore be careful about locking
1054 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 */
1056
Eric Dumazet941666c2010-12-05 01:23:53 +00001057struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
1058 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
1060 struct net_device *dev;
1061
Eric Dumazet941666c2010-12-05 01:23:53 +00001062 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (dev->type == type &&
1064 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -07001065 return dev;
1066
1067 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
Eric Dumazet941666c2010-12-05 01:23:53 +00001069EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -03001070
Eric W. Biederman881d9662007-09-17 11:56:21 -07001071struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001072{
1073 struct net_device *dev;
1074
1075 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001076 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001077 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -07001078 return dev;
1079
1080 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001081}
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001082EXPORT_SYMBOL(__dev_getfirstbyhwtype);
1083
Eric W. Biederman881d9662007-09-17 11:56:21 -07001084struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001086 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001088 rcu_read_lock();
1089 for_each_netdev_rcu(net, dev)
1090 if (dev->type == type) {
1091 dev_hold(dev);
1092 ret = dev;
1093 break;
1094 }
1095 rcu_read_unlock();
1096 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098EXPORT_SYMBOL(dev_getfirstbyhwtype);
1099
1100/**
WANG Cong6c555492014-09-11 15:35:09 -07001101 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001102 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * @if_flags: IFF_* values
1104 * @mask: bitmask of bits in if_flags to check
1105 *
1106 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +00001107 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -07001108 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 */
1110
WANG Cong6c555492014-09-11 15:35:09 -07001111struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1112 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001114 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
WANG Cong6c555492014-09-11 15:35:09 -07001116 ASSERT_RTNL();
1117
Pavel Emelianov7562f872007-05-03 15:13:45 -07001118 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001119 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001121 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 break;
1123 }
1124 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001125 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
WANG Cong6c555492014-09-11 15:35:09 -07001127EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129/**
1130 * dev_valid_name - check if name is okay for network device
1131 * @name: name string
1132 *
1133 * Network device names need to be valid file names to
Randy Dunlap4250b752020-09-17 21:35:15 -07001134 * allow sysfs to work. We also disallow any kind of
David S. Millerc7fa9d12006-08-15 16:34:13 -07001135 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 */
David S. Miller95f050b2012-03-06 16:12:15 -05001137bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001139 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001140 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001141 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001142 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001143 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001144 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001145
1146 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001147 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001148 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001149 name++;
1150 }
David S. Miller95f050b2012-03-06 16:12:15 -05001151 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001153EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001156 * __dev_alloc_name - allocate a name for a device
1157 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001159 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 *
1161 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001162 * id. It scans list of devices to build up a free map, then chooses
1163 * the first empty slot. The caller must hold the dev_base or rtnl lock
1164 * while allocating the name and adding the device in order to avoid
1165 * duplicates.
1166 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1167 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
1169
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001170static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
1172 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 const char *p;
1174 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001175 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 struct net_device *d;
1177
Rasmus Villemoes93809102017-11-13 00:15:08 +01001178 if (!dev_valid_name(name))
1179 return -EINVAL;
1180
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001181 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (p) {
1183 /*
1184 * Verify the string as this thing may have come from
1185 * the user. There must be either one "%d" and no other "%"
1186 * characters.
1187 */
1188 if (p[1] != 'd' || strchr(p + 2, '%'))
1189 return -EINVAL;
1190
1191 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001192 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 if (!inuse)
1194 return -ENOMEM;
1195
Eric W. Biederman881d9662007-09-17 11:56:21 -07001196 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (!sscanf(d->name, name, &i))
1198 continue;
1199 if (i < 0 || i >= max_netdevices)
1200 continue;
1201
1202 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001203 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if (!strncmp(buf, d->name, IFNAMSIZ))
1205 set_bit(i, inuse);
1206 }
1207
1208 i = find_first_zero_bit(inuse, max_netdevices);
1209 free_page((unsigned long) inuse);
1210 }
1211
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001212 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001213 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /* It is possible to run out of possible slots
1217 * when the name is long and there isn't enough space left
1218 * for the digits, or if all bits are used.
1219 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001220 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001223static int dev_alloc_name_ns(struct net *net,
1224 struct net_device *dev,
1225 const char *name)
1226{
1227 char buf[IFNAMSIZ];
1228 int ret;
1229
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001230 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001231 ret = __dev_alloc_name(net, name, buf);
1232 if (ret >= 0)
1233 strlcpy(dev->name, buf, IFNAMSIZ);
1234 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001237/**
1238 * dev_alloc_name - allocate a name for a device
1239 * @dev: device
1240 * @name: name format string
1241 *
1242 * Passed a format string - eg "lt%d" it will try and find a suitable
1243 * id. It scans list of devices to build up a free map, then chooses
1244 * the first empty slot. The caller must hold the dev_base or rtnl lock
1245 * while allocating the name and adding the device in order to avoid
1246 * duplicates.
1247 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1248 * Returns the number of the unit assigned or a negative errno code.
1249 */
1250
1251int dev_alloc_name(struct net_device *dev, const char *name)
1252{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001253 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001254}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001255EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001256
Eric Dumazetbacb7e12019-10-08 14:20:34 -07001257static int dev_get_valid_name(struct net *net, struct net_device *dev,
1258 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001259{
David S. Miller55a5ec92018-01-02 11:45:07 -05001260 BUG_ON(!net);
1261
1262 if (!dev_valid_name(name))
1263 return -EINVAL;
1264
1265 if (strchr(name, '%'))
1266 return dev_alloc_name_ns(net, dev, name);
1267 else if (__dev_get_by_name(net, name))
1268 return -EEXIST;
1269 else if (dev->name != name)
1270 strlcpy(dev->name, name, IFNAMSIZ);
1271
1272 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275/**
1276 * dev_change_name - change name of a device
1277 * @dev: device
1278 * @newname: name (or format string) must be at least IFNAMSIZ
1279 *
1280 * Change name of a device, can pass format strings "eth%d".
1281 * for wildcarding.
1282 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001283int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Tom Gundersen238fa362014-07-14 16:37:23 +02001285 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001286 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001288 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001289 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001292 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001294 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001295
1296 /* Some auto-enslaved devices e.g. failover slaves are
1297 * special, as userspace might rename the device after
1298 * the interface had been brought up and running since
1299 * the point kernel initiated auto-enslavement. Allow
1300 * live name change even when these slave devices are
1301 * up and running.
1302 *
1303 * Typically, users of these auto-enslaving devices
1304 * don't actually care about slave name change, as
1305 * they are supposed to operate on master interface
1306 * directly.
1307 */
1308 if (dev->flags & IFF_UP &&
1309 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return -EBUSY;
1311
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001312 down_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001313
1314 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001315 up_write(&devnet_rename_sem);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001316 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001317 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001318
Herbert Xufcc5a032007-07-30 17:03:38 -07001319 memcpy(oldname, dev->name, IFNAMSIZ);
1320
Gao feng828de4f2012-09-13 20:58:27 +00001321 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001322 if (err < 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001323 up_write(&devnet_rename_sem);
Octavian Purdilad9031022009-11-18 02:36:59 +00001324 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001327 if (oldname[0] && !strchr(oldname, '%'))
1328 netdev_info(dev, "renamed from %s\n", oldname);
1329
Tom Gundersen238fa362014-07-14 16:37:23 +02001330 old_assign_type = dev->name_assign_type;
1331 dev->name_assign_type = NET_NAME_RENAMED;
1332
Herbert Xufcc5a032007-07-30 17:03:38 -07001333rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001334 ret = device_rename(&dev->dev, dev->name);
1335 if (ret) {
1336 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001337 dev->name_assign_type = old_assign_type;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001338 up_write(&devnet_rename_sem);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001339 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001340 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001341
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001342 up_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001343
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001344 netdev_adjacent_rename_links(dev, oldname);
1345
Herbert Xu7f988ea2007-07-30 16:35:46 -07001346 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001347 netdev_name_node_del(dev->name_node);
Eric Dumazet72c95282009-10-30 07:11:27 +00001348 write_unlock_bh(&dev_base_lock);
1349
1350 synchronize_rcu();
1351
1352 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001353 netdev_name_node_add(net, dev->name_node);
Herbert Xu7f988ea2007-07-30 16:35:46 -07001354 write_unlock_bh(&dev_base_lock);
1355
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001356 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001357 ret = notifier_to_errno(ret);
1358
1359 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001360 /* err >= 0 after dev_alloc_name() or stores the first errno */
1361 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001362 err = ret;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001363 down_write(&devnet_rename_sem);
Herbert Xufcc5a032007-07-30 17:03:38 -07001364 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001365 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001366 dev->name_assign_type = old_assign_type;
1367 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001368 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001369 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001370 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001371 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001372 }
1373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 return err;
1376}
1377
1378/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001379 * dev_set_alias - change ifalias of a device
1380 * @dev: device
1381 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001382 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001383 *
1384 * Set ifalias for a device,
1385 */
1386int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1387{
Florian Westphal6c557002017-10-02 23:50:05 +02001388 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001389
1390 if (len >= IFALIASZ)
1391 return -EINVAL;
1392
Florian Westphal6c557002017-10-02 23:50:05 +02001393 if (len) {
1394 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1395 if (!new_alias)
1396 return -ENOMEM;
1397
1398 memcpy(new_alias->ifalias, alias, len);
1399 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001400 }
1401
Florian Westphal6c557002017-10-02 23:50:05 +02001402 mutex_lock(&ifalias_mutex);
Paul E. McKenneye3f0d762019-09-23 15:42:28 -07001403 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1404 mutex_is_locked(&ifalias_mutex));
Florian Westphal6c557002017-10-02 23:50:05 +02001405 mutex_unlock(&ifalias_mutex);
1406
1407 if (new_alias)
1408 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001409
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001410 return len;
1411}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001412EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001413
Florian Westphal6c557002017-10-02 23:50:05 +02001414/**
1415 * dev_get_alias - get ifalias of a device
1416 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001417 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001418 * @len: size of buffer
1419 *
1420 * get ifalias for a device. Caller must make sure dev cannot go
1421 * away, e.g. rcu read lock or own a reference count to device.
1422 */
1423int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1424{
1425 const struct dev_ifalias *alias;
1426 int ret = 0;
1427
1428 rcu_read_lock();
1429 alias = rcu_dereference(dev->ifalias);
1430 if (alias)
1431 ret = snprintf(name, len, "%s", alias->ifalias);
1432 rcu_read_unlock();
1433
1434 return ret;
1435}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001436
1437/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001438 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001439 * @dev: device to cause notification
1440 *
1441 * Called to indicate a device has changed features.
1442 */
1443void netdev_features_change(struct net_device *dev)
1444{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001445 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001446}
1447EXPORT_SYMBOL(netdev_features_change);
1448
1449/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 * netdev_state_change - device changes state
1451 * @dev: device to cause notification
1452 *
1453 * Called to indicate a device has changed state. This function calls
1454 * the notifier chains for netdev_chain and sends a NEWLINK message
1455 * to the routing socket.
1456 */
1457void netdev_state_change(struct net_device *dev)
1458{
1459 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001460 struct netdev_notifier_change_info change_info = {
1461 .info.dev = dev,
1462 };
Loic Prylli54951192014-07-01 21:39:43 -07001463
David Ahern51d0c0472017-10-04 17:48:45 -07001464 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001465 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001466 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001469EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Amerigo Wangee89bab2012-08-09 22:14:56 +00001471/**
tcharding722c9a02017-02-09 17:56:04 +11001472 * netdev_notify_peers - notify network peers about existence of @dev
1473 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001474 *
1475 * Generate traffic such that interested network peers are aware of
1476 * @dev, such as by generating a gratuitous ARP. This may be used when
1477 * a device wants to inform the rest of the network about some sort of
1478 * reconfiguration such as a failover event or virtual machine
1479 * migration.
1480 */
1481void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001482{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001483 rtnl_lock();
1484 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001485 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001486 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001487}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001488EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001489
Petr Machata40c900a2018-12-06 17:05:47 +00001490static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001492 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001493 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001495 ASSERT_RTNL();
1496
Heiner Kallweitbd869242020-06-20 22:35:42 +02001497 if (!netif_device_present(dev)) {
1498 /* may be detached because parent is runtime-suspended */
1499 if (dev->dev.parent)
1500 pm_runtime_resume(dev->dev.parent);
1501 if (!netif_device_present(dev))
1502 return -ENODEV;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Neil Hormanca99ca12013-02-05 08:05:43 +00001505 /* Block netpoll from trying to do any rx path servicing.
1506 * If we don't do this there is a chance ndo_poll_controller
1507 * or ndo_poll may be running while we open the device
1508 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001509 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001510
Petr Machata40c900a2018-12-06 17:05:47 +00001511 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001512 ret = notifier_to_errno(ret);
1513 if (ret)
1514 return ret;
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001517
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001518 if (ops->ndo_validate_addr)
1519 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001520
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001521 if (!ret && ops->ndo_open)
1522 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Eric W. Biederman66b55522014-03-27 15:39:03 -07001524 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001525
Jeff Garzikbada3392007-10-23 20:19:37 -07001526 if (ret)
1527 clear_bit(__LINK_STATE_START, &dev->state);
1528 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001530 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001532 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return ret;
1536}
Patrick McHardybd380812010-02-26 06:34:53 +00001537
1538/**
1539 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001540 * @dev: device to open
1541 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001542 *
1543 * Takes a device from down to up state. The device's private open
1544 * function is invoked and then the multicast lists are loaded. Finally
1545 * the device is moved into the up state and a %NETDEV_UP message is
1546 * sent to the netdev notifier chain.
1547 *
1548 * Calling this function on an active interface is a nop. On a failure
1549 * a negative errno code is returned.
1550 */
Petr Machata00f54e62018-12-06 17:05:36 +00001551int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001552{
1553 int ret;
1554
Patrick McHardybd380812010-02-26 06:34:53 +00001555 if (dev->flags & IFF_UP)
1556 return 0;
1557
Petr Machata40c900a2018-12-06 17:05:47 +00001558 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001559 if (ret < 0)
1560 return ret;
1561
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001562 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001563 call_netdevice_notifiers(NETDEV_UP, dev);
1564
1565 return ret;
1566}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001567EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
stephen hemminger7051b882017-07-18 15:59:27 -07001569static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Octavian Purdila44345722010-12-13 12:44:07 +00001571 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001572
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001573 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001574 might_sleep();
1575
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001576 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001577 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001578 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001579
Octavian Purdila44345722010-12-13 12:44:07 +00001580 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Octavian Purdila44345722010-12-13 12:44:07 +00001582 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Octavian Purdila44345722010-12-13 12:44:07 +00001584 /* Synchronize to scheduled poll. We cannot touch poll list, it
1585 * can be even on different cpu. So just clear netif_running().
1586 *
1587 * dev->stop() will invoke napi_disable() on all of it's
1588 * napi_struct instances on this device.
1589 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001590 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Octavian Purdila44345722010-12-13 12:44:07 +00001593 dev_deactivate_many(head);
1594
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001595 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001596 const struct net_device_ops *ops = dev->netdev_ops;
1597
1598 /*
1599 * Call the device specific close. This cannot fail.
1600 * Only if device is UP
1601 *
1602 * We allow it to be called even after a DETACH hot-plug
1603 * event.
1604 */
1605 if (ops->ndo_stop)
1606 ops->ndo_stop(dev);
1607
Octavian Purdila44345722010-12-13 12:44:07 +00001608 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001609 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001610 }
Octavian Purdila44345722010-12-13 12:44:07 +00001611}
1612
stephen hemminger7051b882017-07-18 15:59:27 -07001613static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001614{
1615 LIST_HEAD(single);
1616
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001617 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001618 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001619 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001620}
1621
stephen hemminger7051b882017-07-18 15:59:27 -07001622void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001623{
1624 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001625
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001626 /* Remove the devices that don't need to be closed */
1627 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001628 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001629 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001630
1631 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001632
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001633 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001634 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001635 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001636 if (unlink)
1637 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
David S. Miller99c4a262015-03-18 22:52:33 -04001640EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001641
1642/**
1643 * dev_close - shutdown an interface.
1644 * @dev: device to shutdown
1645 *
1646 * This function moves an active device into down state. A
1647 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1648 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1649 * chain.
1650 */
stephen hemminger7051b882017-07-18 15:59:27 -07001651void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001652{
Eric Dumazete14a5992011-05-10 12:26:06 -07001653 if (dev->flags & IFF_UP) {
1654 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001655
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001656 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001657 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001658 list_del(&single);
1659 }
Patrick McHardybd380812010-02-26 06:34:53 +00001660}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001661EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001664/**
1665 * dev_disable_lro - disable Large Receive Offload on a device
1666 * @dev: device
1667 *
1668 * Disable Large Receive Offload (LRO) on a net device. Must be
1669 * called under RTNL. This is needed if received packets may be
1670 * forwarded to another interface.
1671 */
1672void dev_disable_lro(struct net_device *dev)
1673{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001674 struct net_device *lower_dev;
1675 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001676
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001677 dev->wanted_features &= ~NETIF_F_LRO;
1678 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001679
Michał Mirosław22d59692011-04-21 12:42:15 +00001680 if (unlikely(dev->features & NETIF_F_LRO))
1681 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001682
1683 netdev_for_each_lower_dev(dev, lower_dev, iter)
1684 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001685}
1686EXPORT_SYMBOL(dev_disable_lro);
1687
Michael Chan56f5aa72017-12-16 03:09:41 -05001688/**
1689 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1690 * @dev: device
1691 *
1692 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1693 * called under RTNL. This is needed if Generic XDP is installed on
1694 * the device.
1695 */
1696static void dev_disable_gro_hw(struct net_device *dev)
1697{
1698 dev->wanted_features &= ~NETIF_F_GRO_HW;
1699 netdev_update_features(dev);
1700
1701 if (unlikely(dev->features & NETIF_F_GRO_HW))
1702 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1703}
1704
Kirill Tkhaiede27622018-03-23 19:47:19 +03001705const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1706{
1707#define N(val) \
1708 case NETDEV_##val: \
1709 return "NETDEV_" __stringify(val);
1710 switch (cmd) {
1711 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1712 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1713 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1714 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1715 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1716 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1717 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001718 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1719 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001720 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001721 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001722#undef N
1723 return "UNKNOWN_NETDEV_EVENT";
1724}
1725EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1726
Jiri Pirko351638e2013-05-28 01:30:21 +00001727static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1728 struct net_device *dev)
1729{
David Ahern51d0c0472017-10-04 17:48:45 -07001730 struct netdev_notifier_info info = {
1731 .dev = dev,
1732 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001733
Jiri Pirko351638e2013-05-28 01:30:21 +00001734 return nb->notifier_call(nb, val, &info);
1735}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001736
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001737static int call_netdevice_register_notifiers(struct notifier_block *nb,
1738 struct net_device *dev)
1739{
1740 int err;
1741
1742 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1743 err = notifier_to_errno(err);
1744 if (err)
1745 return err;
1746
1747 if (!(dev->flags & IFF_UP))
1748 return 0;
1749
1750 call_netdevice_notifier(nb, NETDEV_UP, dev);
1751 return 0;
1752}
1753
1754static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1755 struct net_device *dev)
1756{
1757 if (dev->flags & IFF_UP) {
1758 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1759 dev);
1760 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1761 }
1762 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1763}
1764
1765static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1766 struct net *net)
1767{
1768 struct net_device *dev;
1769 int err;
1770
1771 for_each_netdev(net, dev) {
1772 err = call_netdevice_register_notifiers(nb, dev);
1773 if (err)
1774 goto rollback;
1775 }
1776 return 0;
1777
1778rollback:
1779 for_each_netdev_continue_reverse(net, dev)
1780 call_netdevice_unregister_notifiers(nb, dev);
1781 return err;
1782}
1783
1784static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1785 struct net *net)
1786{
1787 struct net_device *dev;
1788
1789 for_each_netdev(net, dev)
1790 call_netdevice_unregister_notifiers(nb, dev);
1791}
1792
Eric W. Biederman881d9662007-09-17 11:56:21 -07001793static int dev_boot_phase = 1;
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795/**
tcharding722c9a02017-02-09 17:56:04 +11001796 * register_netdevice_notifier - register a network notifier block
1797 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 *
tcharding722c9a02017-02-09 17:56:04 +11001799 * Register a notifier to be called when network device events occur.
1800 * The notifier passed is linked into the kernel structures and must
1801 * not be reused until it has been unregistered. A negative errno code
1802 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 *
tcharding722c9a02017-02-09 17:56:04 +11001804 * When registered all registration and up events are replayed
1805 * to the new notifier to allow device to have a race free
1806 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 */
1808
1809int register_netdevice_notifier(struct notifier_block *nb)
1810{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001811 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 int err;
1813
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001814 /* Close race with setup_net() and cleanup_net() */
1815 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001817 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001818 if (err)
1819 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001820 if (dev_boot_phase)
1821 goto unlock;
1822 for_each_net(net) {
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001823 err = call_netdevice_register_net_notifiers(nb, net);
1824 if (err)
1825 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001827
1828unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001830 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001832
1833rollback:
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001834 for_each_net_continue_reverse(net)
1835 call_netdevice_unregister_net_notifiers(nb, net);
Herbert Xufcc5a032007-07-30 17:03:38 -07001836
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001837 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001838 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001840EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842/**
tcharding722c9a02017-02-09 17:56:04 +11001843 * unregister_netdevice_notifier - unregister a network notifier block
1844 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 *
tcharding722c9a02017-02-09 17:56:04 +11001846 * Unregister a notifier previously registered by
1847 * register_netdevice_notifier(). The notifier is unlinked into the
1848 * kernel structures and may then be reused. A negative errno code
1849 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001850 *
tcharding722c9a02017-02-09 17:56:04 +11001851 * After unregistering unregister and down device events are synthesized
1852 * for all devices on the device list to the removed notifier to remove
1853 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 */
1855
1856int unregister_netdevice_notifier(struct notifier_block *nb)
1857{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001858 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001859 int err;
1860
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001861 /* Close race with setup_net() and cleanup_net() */
1862 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001863 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001864 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001865 if (err)
1866 goto unlock;
1867
Jiri Pirko48b3a132020-01-25 12:17:06 +01001868 for_each_net(net)
1869 call_netdevice_unregister_net_notifiers(nb, net);
1870
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001871unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001872 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001873 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001874 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001876EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Jiri Pirko1f637702020-01-25 12:17:07 +01001878static int __register_netdevice_notifier_net(struct net *net,
1879 struct notifier_block *nb,
1880 bool ignore_call_fail)
1881{
1882 int err;
1883
1884 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1885 if (err)
1886 return err;
1887 if (dev_boot_phase)
1888 return 0;
1889
1890 err = call_netdevice_register_net_notifiers(nb, net);
1891 if (err && !ignore_call_fail)
1892 goto chain_unregister;
1893
1894 return 0;
1895
1896chain_unregister:
1897 raw_notifier_chain_unregister(&net->netdev_chain, nb);
1898 return err;
1899}
1900
1901static int __unregister_netdevice_notifier_net(struct net *net,
1902 struct notifier_block *nb)
1903{
1904 int err;
1905
1906 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1907 if (err)
1908 return err;
1909
1910 call_netdevice_unregister_net_notifiers(nb, net);
1911 return 0;
1912}
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914/**
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001915 * register_netdevice_notifier_net - register a per-netns network notifier block
1916 * @net: network namespace
1917 * @nb: notifier
1918 *
1919 * Register a notifier to be called when network device events occur.
1920 * The notifier passed is linked into the kernel structures and must
1921 * not be reused until it has been unregistered. A negative errno code
1922 * is returned on a failure.
1923 *
1924 * When registered all registration and up events are replayed
1925 * to the new notifier to allow device to have a race free
1926 * view of the network device list.
1927 */
1928
1929int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
1930{
1931 int err;
1932
1933 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001934 err = __register_netdevice_notifier_net(net, nb, false);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001935 rtnl_unlock();
1936 return err;
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001937}
1938EXPORT_SYMBOL(register_netdevice_notifier_net);
1939
1940/**
1941 * unregister_netdevice_notifier_net - unregister a per-netns
1942 * network notifier block
1943 * @net: network namespace
1944 * @nb: notifier
1945 *
1946 * Unregister a notifier previously registered by
1947 * register_netdevice_notifier(). The notifier is unlinked into the
1948 * kernel structures and may then be reused. A negative errno code
1949 * is returned on a failure.
1950 *
1951 * After unregistering unregister and down device events are synthesized
1952 * for all devices on the device list to the removed notifier to remove
1953 * the need for special case cleanup code.
1954 */
1955
1956int unregister_netdevice_notifier_net(struct net *net,
1957 struct notifier_block *nb)
1958{
1959 int err;
1960
1961 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001962 err = __unregister_netdevice_notifier_net(net, nb);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001963 rtnl_unlock();
1964 return err;
1965}
1966EXPORT_SYMBOL(unregister_netdevice_notifier_net);
1967
Jiri Pirko93642e12020-01-25 12:17:08 +01001968int register_netdevice_notifier_dev_net(struct net_device *dev,
1969 struct notifier_block *nb,
1970 struct netdev_net_notifier *nn)
1971{
1972 int err;
1973
1974 rtnl_lock();
1975 err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
1976 if (!err) {
1977 nn->nb = nb;
1978 list_add(&nn->list, &dev->net_notifier_list);
1979 }
1980 rtnl_unlock();
1981 return err;
1982}
1983EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
1984
1985int unregister_netdevice_notifier_dev_net(struct net_device *dev,
1986 struct notifier_block *nb,
1987 struct netdev_net_notifier *nn)
1988{
1989 int err;
1990
1991 rtnl_lock();
1992 list_del(&nn->list);
1993 err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
1994 rtnl_unlock();
1995 return err;
1996}
1997EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
1998
1999static void move_netdevice_notifiers_dev_net(struct net_device *dev,
2000 struct net *net)
2001{
2002 struct netdev_net_notifier *nn;
2003
2004 list_for_each_entry(nn, &dev->net_notifier_list, list) {
2005 __unregister_netdevice_notifier_net(dev_net(dev), nn->nb);
2006 __register_netdevice_notifier_net(net, nn->nb, true);
2007 }
2008}
2009
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002010/**
Jiri Pirko351638e2013-05-28 01:30:21 +00002011 * call_netdevice_notifiers_info - call all network notifier blocks
2012 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00002013 * @info: notifier information data
2014 *
2015 * Call all network notifier blocks. Parameters and return value
2016 * are as for raw_notifier_call_chain().
2017 */
2018
stephen hemminger1d143d92013-12-29 14:01:29 -08002019static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08002020 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00002021{
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002022 struct net *net = dev_net(info->dev);
2023 int ret;
2024
Jiri Pirko351638e2013-05-28 01:30:21 +00002025 ASSERT_RTNL();
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002026
2027 /* Run per-netns notifier block chain first, then run the global one.
2028 * Hopefully, one day, the global one is going to be removed after
2029 * all notifier block registrators get converted to be per-netns.
2030 */
2031 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2032 if (ret & NOTIFY_STOP_MASK)
2033 return ret;
Jiri Pirko351638e2013-05-28 01:30:21 +00002034 return raw_notifier_call_chain(&netdev_chain, val, info);
2035}
Jiri Pirko351638e2013-05-28 01:30:21 +00002036
Petr Machata26372602018-12-06 17:05:45 +00002037static int call_netdevice_notifiers_extack(unsigned long val,
2038 struct net_device *dev,
2039 struct netlink_ext_ack *extack)
2040{
2041 struct netdev_notifier_info info = {
2042 .dev = dev,
2043 .extack = extack,
2044 };
2045
2046 return call_netdevice_notifiers_info(val, &info);
2047}
2048
Jiri Pirko351638e2013-05-28 01:30:21 +00002049/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 * call_netdevice_notifiers - call all network notifier blocks
2051 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002052 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 *
2054 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07002055 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 */
2057
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07002058int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Petr Machata26372602018-12-06 17:05:45 +00002060 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
stephen hemmingeredf947f2011-03-24 13:24:01 +00002062EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02002064/**
2065 * call_netdevice_notifiers_mtu - call all network notifier blocks
2066 * @val: value passed unmodified to notifier function
2067 * @dev: net_device pointer passed unmodified to notifier function
2068 * @arg: additional u32 argument passed to the notifier function
2069 *
2070 * Call all network notifier blocks. Parameters and return value
2071 * are as for raw_notifier_call_chain().
2072 */
2073static int call_netdevice_notifiers_mtu(unsigned long val,
2074 struct net_device *dev, u32 arg)
2075{
2076 struct netdev_notifier_info_ext info = {
2077 .info.dev = dev,
2078 .ext.mtu = arg,
2079 };
2080
2081 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2082
2083 return call_netdevice_notifiers_info(val, &info.info);
2084}
2085
Pablo Neira1cf519002015-05-13 18:19:37 +02002086#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002087static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002088
2089void net_inc_ingress_queue(void)
2090{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002091 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002092}
2093EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2094
2095void net_dec_ingress_queue(void)
2096{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002097 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002098}
2099EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2100#endif
2101
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002102#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002103static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002104
2105void net_inc_egress_queue(void)
2106{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002107 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002108}
2109EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2110
2111void net_dec_egress_queue(void)
2112{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002113 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002114}
2115EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2116#endif
2117
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002118static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002119#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00002120static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08002121static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002122static void netstamp_clear(struct work_struct *work)
2123{
2124 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08002125 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002126
Eric Dumazet13baa002017-03-01 14:28:39 -08002127 wanted = atomic_add_return(deferred, &netstamp_wanted);
2128 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002129 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002130 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002131 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002132}
2133static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00002134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136void net_enable_timestamp(void)
2137{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002138#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002139 int wanted;
2140
2141 while (1) {
2142 wanted = atomic_read(&netstamp_wanted);
2143 if (wanted <= 0)
2144 break;
2145 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2146 return;
2147 }
2148 atomic_inc(&netstamp_needed_deferred);
2149 schedule_work(&netstamp_work);
2150#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002151 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002154EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156void net_disable_timestamp(void)
2157{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002158#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002159 int wanted;
2160
2161 while (1) {
2162 wanted = atomic_read(&netstamp_wanted);
2163 if (wanted <= 1)
2164 break;
2165 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2166 return;
2167 }
2168 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002169 schedule_work(&netstamp_work);
2170#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002171 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002172#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002174EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Eric Dumazet3b098e22010-05-15 23:57:10 -07002176static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Thomas Gleixner2456e852016-12-25 11:38:40 +01002178 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002179 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002180 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002183#define net_timestamp_check(COND, SKB) \
2184 if (static_branch_unlikely(&netstamp_needed_key)) { \
2185 if ((COND) && !(SKB)->tstamp) \
2186 __net_timestamp(SKB); \
2187 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07002188
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02002189bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002190{
2191 unsigned int len;
2192
2193 if (!(dev->flags & IFF_UP))
2194 return false;
2195
2196 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
2197 if (skb->len <= len)
2198 return true;
2199
2200 /* if TSO is enabled, we don't care about the length as the packet
2201 * could be forwarded without being segmented before
2202 */
2203 if (skb_is_gso(skb))
2204 return true;
2205
2206 return false;
2207}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04002208EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002209
Herbert Xua0265d22014-04-17 13:45:03 +08002210int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2211{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002212 int ret = ____dev_forward_skb(dev, skb);
2213
2214 if (likely(!ret)) {
2215 skb->protocol = eth_type_trans(skb, dev);
2216 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08002217 }
2218
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002219 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08002220}
2221EXPORT_SYMBOL_GPL(__dev_forward_skb);
2222
Arnd Bergmann44540962009-11-26 06:07:08 +00002223/**
2224 * dev_forward_skb - loopback an skb to another netif
2225 *
2226 * @dev: destination network device
2227 * @skb: buffer to forward
2228 *
2229 * return values:
2230 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07002231 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00002232 *
2233 * dev_forward_skb can be used for injecting an skb from the
2234 * start_xmit function of one device into the receive queue
2235 * of another device.
2236 *
2237 * The receiving device may be in another namespace, so
2238 * we have to clear all information in the skb that could
2239 * impact namespace isolation.
2240 */
2241int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2242{
Herbert Xua0265d22014-04-17 13:45:03 +08002243 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00002244}
2245EXPORT_SYMBOL_GPL(dev_forward_skb);
2246
Changli Gao71d9dec2010-12-15 19:57:25 +00002247static inline int deliver_skb(struct sk_buff *skb,
2248 struct packet_type *pt_prev,
2249 struct net_device *orig_dev)
2250{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04002251 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00002252 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03002253 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00002254 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2255}
2256
Salam Noureddine7866a622015-01-27 11:35:48 -08002257static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2258 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002259 struct net_device *orig_dev,
2260 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08002261 struct list_head *ptype_list)
2262{
2263 struct packet_type *ptype, *pt_prev = *pt;
2264
2265 list_for_each_entry_rcu(ptype, ptype_list, list) {
2266 if (ptype->type != type)
2267 continue;
2268 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002269 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08002270 pt_prev = ptype;
2271 }
2272 *pt = pt_prev;
2273}
2274
Eric Leblondc0de08d2012-08-16 22:02:58 +00002275static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2276{
Eric Leblonda3d744e2012-11-06 02:10:10 +00002277 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00002278 return false;
2279
2280 if (ptype->id_match)
2281 return ptype->id_match(ptype, skb->sk);
2282 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2283 return true;
2284
2285 return false;
2286}
2287
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002288/**
2289 * dev_nit_active - return true if any network interface taps are in use
2290 *
2291 * @dev: network device to check for the presence of taps
2292 */
2293bool dev_nit_active(struct net_device *dev)
2294{
2295 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2296}
2297EXPORT_SYMBOL_GPL(dev_nit_active);
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299/*
2300 * Support routine. Sends outgoing frames to any network
2301 * taps currently in use.
2302 */
2303
David Ahern74b20582016-05-10 11:19:50 -07002304void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
2306 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002307 struct sk_buff *skb2 = NULL;
2308 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002309 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002312again:
2313 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002314 if (ptype->ignore_outgoing)
2315 continue;
2316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 /* Never send packets back to the socket
2318 * they originated from - MvS (miquels@drinkel.ow.org)
2319 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002320 if (skb_loop_sk(ptype, skb))
2321 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002322
Salam Noureddine7866a622015-01-27 11:35:48 -08002323 if (pt_prev) {
2324 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002325 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002326 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002328
2329 /* need to clone skb, done only once */
2330 skb2 = skb_clone(skb, GFP_ATOMIC);
2331 if (!skb2)
2332 goto out_unlock;
2333
2334 net_timestamp_set(skb2);
2335
2336 /* skb->nh should be correctly
2337 * set by sender, so that the second statement is
2338 * just protection against buggy protocols.
2339 */
2340 skb_reset_mac_header(skb2);
2341
2342 if (skb_network_header(skb2) < skb2->data ||
2343 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2344 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2345 ntohs(skb2->protocol),
2346 dev->name);
2347 skb_reset_network_header(skb2);
2348 }
2349
2350 skb2->transport_header = skb2->network_header;
2351 skb2->pkt_type = PACKET_OUTGOING;
2352 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002354
2355 if (ptype_list == &ptype_all) {
2356 ptype_list = &dev->ptype_all;
2357 goto again;
2358 }
2359out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002360 if (pt_prev) {
2361 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2362 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2363 else
2364 kfree_skb(skb2);
2365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 rcu_read_unlock();
2367}
David Ahern74b20582016-05-10 11:19:50 -07002368EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Ben Hutchings2c530402012-07-10 10:55:09 +00002370/**
2371 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002372 * @dev: Network device
2373 * @txq: number of queues available
2374 *
2375 * If real_num_tx_queues is changed the tc mappings may no longer be
2376 * valid. To resolve this verify the tc mapping remains valid and if
2377 * not NULL the mapping. With no priorities mapping to this
2378 * offset/count pair it will no longer be used. In the worst case TC0
2379 * is invalid nothing can be done so disable priority mappings. If is
2380 * expected that drivers will fix this mapping if they can before
2381 * calling netif_set_real_num_tx_queues.
2382 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002383static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002384{
2385 int i;
2386 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2387
2388 /* If TC0 is invalidated disable TC mapping */
2389 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002390 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002391 dev->num_tc = 0;
2392 return;
2393 }
2394
2395 /* Invalidated prio to tc mappings set to TC0 */
2396 for (i = 1; i < TC_BITMASK + 1; i++) {
2397 int q = netdev_get_prio_tc_map(dev, i);
2398
2399 tc = &dev->tc_to_txq[q];
2400 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002401 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2402 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002403 netdev_set_prio_tc_map(dev, i, 0);
2404 }
2405 }
2406}
2407
Alexander Duyck8d059b02016-10-28 11:43:49 -04002408int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2409{
2410 if (dev->num_tc) {
2411 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2412 int i;
2413
Alexander Duyckffcfe252018-07-09 12:19:38 -04002414 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002415 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2416 if ((txq - tc->offset) < tc->count)
2417 return i;
2418 }
2419
Alexander Duyckffcfe252018-07-09 12:19:38 -04002420 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002421 return -1;
2422 }
2423
2424 return 0;
2425}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002426EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002427
Alexander Duyck537c00d2013-01-10 08:57:02 +00002428#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002429struct static_key xps_needed __read_mostly;
2430EXPORT_SYMBOL(xps_needed);
2431struct static_key xps_rxqs_needed __read_mostly;
2432EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002433static DEFINE_MUTEX(xps_map_mutex);
2434#define xmap_dereference(P) \
2435 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2436
Alexander Duyck6234f872016-10-28 11:46:49 -04002437static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2438 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002439{
2440 struct xps_map *map = NULL;
2441 int pos;
2442
2443 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002444 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002445 if (!map)
2446 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002447
Alexander Duyck6234f872016-10-28 11:46:49 -04002448 for (pos = map->len; pos--;) {
2449 if (map->queues[pos] != index)
2450 continue;
2451
2452 if (map->len > 1) {
2453 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002454 break;
2455 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002456
Amritha Nambiar80d19662018-06-29 21:26:41 -07002457 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002458 kfree_rcu(map, rcu);
2459 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002460 }
2461
Alexander Duyck6234f872016-10-28 11:46:49 -04002462 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002463}
2464
Alexander Duyck6234f872016-10-28 11:46:49 -04002465static bool remove_xps_queue_cpu(struct net_device *dev,
2466 struct xps_dev_maps *dev_maps,
2467 int cpu, u16 offset, u16 count)
2468{
Alexander Duyck184c4492016-10-28 11:50:13 -04002469 int num_tc = dev->num_tc ? : 1;
2470 bool active = false;
2471 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002472
Alexander Duyck184c4492016-10-28 11:50:13 -04002473 for (tci = cpu * num_tc; num_tc--; tci++) {
2474 int i, j;
2475
2476 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002477 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002478 break;
2479 }
2480
2481 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002482 }
2483
Alexander Duyck184c4492016-10-28 11:50:13 -04002484 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002485}
2486
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002487static void reset_xps_maps(struct net_device *dev,
2488 struct xps_dev_maps *dev_maps,
2489 bool is_rxqs_map)
2490{
2491 if (is_rxqs_map) {
2492 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2493 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2494 } else {
2495 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2496 }
2497 static_key_slow_dec_cpuslocked(&xps_needed);
2498 kfree_rcu(dev_maps, rcu);
2499}
2500
Amritha Nambiar80d19662018-06-29 21:26:41 -07002501static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2502 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2503 u16 offset, u16 count, bool is_rxqs_map)
2504{
2505 bool active = false;
2506 int i, j;
2507
2508 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2509 j < nr_ids;)
2510 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2511 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002512 if (!active)
2513 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002514
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002515 if (!is_rxqs_map) {
2516 for (i = offset + (count - 1); count--; i--) {
2517 netdev_queue_numa_node_write(
2518 netdev_get_tx_queue(dev, i),
2519 NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002520 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002521 }
2522}
2523
Alexander Duyck6234f872016-10-28 11:46:49 -04002524static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2525 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002526{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002527 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002528 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002529 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002530
Amritha Nambiar04157462018-06-29 21:26:46 -07002531 if (!static_key_false(&xps_needed))
2532 return;
2533
Andrei Vagin4d99f662018-08-08 20:07:35 -07002534 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002535 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002536
Amritha Nambiar04157462018-06-29 21:26:46 -07002537 if (static_key_false(&xps_rxqs_needed)) {
2538 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2539 if (dev_maps) {
2540 nr_ids = dev->num_rx_queues;
2541 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2542 offset, count, true);
2543 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002544 }
2545
2546 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002547 if (!dev_maps)
2548 goto out_no_maps;
2549
Amritha Nambiar80d19662018-06-29 21:26:41 -07002550 if (num_possible_cpus() > 1)
2551 possible_mask = cpumask_bits(cpu_possible_mask);
2552 nr_ids = nr_cpu_ids;
2553 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2554 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002555
Alexander Duyck537c00d2013-01-10 08:57:02 +00002556out_no_maps:
2557 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002558 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002559}
2560
Alexander Duyck6234f872016-10-28 11:46:49 -04002561static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2562{
2563 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2564}
2565
Amritha Nambiar80d19662018-06-29 21:26:41 -07002566static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2567 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002568{
2569 struct xps_map *new_map;
2570 int alloc_len = XPS_MIN_MAP_ALLOC;
2571 int i, pos;
2572
2573 for (pos = 0; map && pos < map->len; pos++) {
2574 if (map->queues[pos] != index)
2575 continue;
2576 return map;
2577 }
2578
Amritha Nambiar80d19662018-06-29 21:26:41 -07002579 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002580 if (map) {
2581 if (pos < map->alloc_len)
2582 return map;
2583
2584 alloc_len = map->alloc_len * 2;
2585 }
2586
Amritha Nambiar80d19662018-06-29 21:26:41 -07002587 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2588 * map
2589 */
2590 if (is_rxqs_map)
2591 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2592 else
2593 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2594 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002595 if (!new_map)
2596 return NULL;
2597
2598 for (i = 0; i < pos; i++)
2599 new_map->queues[i] = map->queues[i];
2600 new_map->alloc_len = alloc_len;
2601 new_map->len = pos;
2602
2603 return new_map;
2604}
2605
Andrei Vagin4d99f662018-08-08 20:07:35 -07002606/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002607int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2608 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002609{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002610 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002611 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002612 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002613 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002614 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002615 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002616 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002617
Alexander Duyck184c4492016-10-28 11:50:13 -04002618 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002619 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002620 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002621 if (num_tc < 0)
2622 return -EINVAL;
2623
2624 /* If queue belongs to subordinate dev use its map */
2625 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2626
Alexander Duyck184c4492016-10-28 11:50:13 -04002627 tc = netdev_txq_to_tc(dev, index);
2628 if (tc < 0)
2629 return -EINVAL;
2630 }
2631
Amritha Nambiar80d19662018-06-29 21:26:41 -07002632 mutex_lock(&xps_map_mutex);
2633 if (is_rxqs_map) {
2634 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2635 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2636 nr_ids = dev->num_rx_queues;
2637 } else {
2638 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2639 if (num_possible_cpus() > 1) {
2640 online_mask = cpumask_bits(cpu_online_mask);
2641 possible_mask = cpumask_bits(cpu_possible_mask);
2642 }
2643 dev_maps = xmap_dereference(dev->xps_cpus_map);
2644 nr_ids = nr_cpu_ids;
2645 }
2646
Alexander Duyck184c4492016-10-28 11:50:13 -04002647 if (maps_sz < L1_CACHE_BYTES)
2648 maps_sz = L1_CACHE_BYTES;
2649
Alexander Duyck01c5f862013-01-10 08:57:35 +00002650 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002651 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2652 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002653 if (!new_dev_maps)
2654 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002655 if (!new_dev_maps) {
2656 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002657 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002658 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002659
Amritha Nambiar80d19662018-06-29 21:26:41 -07002660 tci = j * num_tc + tc;
2661 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002662 NULL;
2663
Amritha Nambiar80d19662018-06-29 21:26:41 -07002664 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002665 if (!map)
2666 goto error;
2667
Amritha Nambiar80d19662018-06-29 21:26:41 -07002668 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002669 }
2670
2671 if (!new_dev_maps)
2672 goto out_no_new_maps;
2673
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002674 if (!dev_maps) {
2675 /* Increment static keys at most once per type */
2676 static_key_slow_inc_cpuslocked(&xps_needed);
2677 if (is_rxqs_map)
2678 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2679 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002680
Amritha Nambiar80d19662018-06-29 21:26:41 -07002681 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2682 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002683 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002684 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002685 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002686 map = xmap_dereference(dev_maps->attr_map[tci]);
2687 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002688 }
2689
2690 /* We need to explicitly update tci as prevous loop
2691 * could break out early if dev_maps is NULL.
2692 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002693 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002694
Amritha Nambiar80d19662018-06-29 21:26:41 -07002695 if (netif_attr_test_mask(j, mask, nr_ids) &&
2696 netif_attr_test_online(j, online_mask, nr_ids)) {
2697 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002698 int pos = 0;
2699
Amritha Nambiar80d19662018-06-29 21:26:41 -07002700 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002701 while ((pos < map->len) && (map->queues[pos] != index))
2702 pos++;
2703
2704 if (pos == map->len)
2705 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002706#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002707 if (!is_rxqs_map) {
2708 if (numa_node_id == -2)
2709 numa_node_id = cpu_to_node(j);
2710 else if (numa_node_id != cpu_to_node(j))
2711 numa_node_id = -1;
2712 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002713#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002714 } else if (dev_maps) {
2715 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002716 map = xmap_dereference(dev_maps->attr_map[tci]);
2717 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002718 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002719
Alexander Duyck184c4492016-10-28 11:50:13 -04002720 /* copy maps belonging to foreign traffic classes */
2721 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2722 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002723 map = xmap_dereference(dev_maps->attr_map[tci]);
2724 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002725 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002726 }
2727
Amritha Nambiar80d19662018-06-29 21:26:41 -07002728 if (is_rxqs_map)
2729 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2730 else
2731 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002732
Alexander Duyck537c00d2013-01-10 08:57:02 +00002733 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002734 if (!dev_maps)
2735 goto out_no_old_maps;
2736
Amritha Nambiar80d19662018-06-29 21:26:41 -07002737 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2738 j < nr_ids;) {
2739 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2740 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2741 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002742 if (map && map != new_map)
2743 kfree_rcu(map, rcu);
2744 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002745 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002746
Alexander Duyck184c4492016-10-28 11:50:13 -04002747 kfree_rcu(dev_maps, rcu);
2748
2749out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002750 dev_maps = new_dev_maps;
2751 active = true;
2752
2753out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002754 if (!is_rxqs_map) {
2755 /* update Tx queue numa node */
2756 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2757 (numa_node_id >= 0) ?
2758 numa_node_id : NUMA_NO_NODE);
2759 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002760
Alexander Duyck01c5f862013-01-10 08:57:35 +00002761 if (!dev_maps)
2762 goto out_no_maps;
2763
Amritha Nambiar80d19662018-06-29 21:26:41 -07002764 /* removes tx-queue from unused CPUs/rx-queues */
2765 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2766 j < nr_ids;) {
2767 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002768 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002769 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2770 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002771 active |= remove_xps_queue(dev_maps, tci, index);
2772 for (i = num_tc - tc, tci++; --i; tci++)
2773 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002774 }
2775
2776 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002777 if (!active)
2778 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002779
2780out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002781 mutex_unlock(&xps_map_mutex);
2782
2783 return 0;
2784error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002785 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002786 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2787 j < nr_ids;) {
2788 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2789 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002790 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002791 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002792 NULL;
2793 if (new_map && new_map != map)
2794 kfree(new_map);
2795 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002796 }
2797
Alexander Duyck537c00d2013-01-10 08:57:02 +00002798 mutex_unlock(&xps_map_mutex);
2799
Alexander Duyck537c00d2013-01-10 08:57:02 +00002800 kfree(new_dev_maps);
2801 return -ENOMEM;
2802}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002803EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002804
2805int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2806 u16 index)
2807{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002808 int ret;
2809
2810 cpus_read_lock();
2811 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2812 cpus_read_unlock();
2813
2814 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002815}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002816EXPORT_SYMBOL(netif_set_xps_queue);
2817
2818#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002819static void netdev_unbind_all_sb_channels(struct net_device *dev)
2820{
2821 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2822
2823 /* Unbind any subordinate channels */
2824 while (txq-- != &dev->_tx[0]) {
2825 if (txq->sb_dev)
2826 netdev_unbind_sb_channel(dev, txq->sb_dev);
2827 }
2828}
2829
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002830void netdev_reset_tc(struct net_device *dev)
2831{
Alexander Duyck6234f872016-10-28 11:46:49 -04002832#ifdef CONFIG_XPS
2833 netif_reset_xps_queues_gt(dev, 0);
2834#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002835 netdev_unbind_all_sb_channels(dev);
2836
2837 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002838 dev->num_tc = 0;
2839 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2840 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2841}
2842EXPORT_SYMBOL(netdev_reset_tc);
2843
2844int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2845{
2846 if (tc >= dev->num_tc)
2847 return -EINVAL;
2848
Alexander Duyck6234f872016-10-28 11:46:49 -04002849#ifdef CONFIG_XPS
2850 netif_reset_xps_queues(dev, offset, count);
2851#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002852 dev->tc_to_txq[tc].count = count;
2853 dev->tc_to_txq[tc].offset = offset;
2854 return 0;
2855}
2856EXPORT_SYMBOL(netdev_set_tc_queue);
2857
2858int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2859{
2860 if (num_tc > TC_MAX_QUEUE)
2861 return -EINVAL;
2862
Alexander Duyck6234f872016-10-28 11:46:49 -04002863#ifdef CONFIG_XPS
2864 netif_reset_xps_queues_gt(dev, 0);
2865#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002866 netdev_unbind_all_sb_channels(dev);
2867
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002868 dev->num_tc = num_tc;
2869 return 0;
2870}
2871EXPORT_SYMBOL(netdev_set_num_tc);
2872
Alexander Duyckffcfe252018-07-09 12:19:38 -04002873void netdev_unbind_sb_channel(struct net_device *dev,
2874 struct net_device *sb_dev)
2875{
2876 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2877
2878#ifdef CONFIG_XPS
2879 netif_reset_xps_queues_gt(sb_dev, 0);
2880#endif
2881 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2882 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2883
2884 while (txq-- != &dev->_tx[0]) {
2885 if (txq->sb_dev == sb_dev)
2886 txq->sb_dev = NULL;
2887 }
2888}
2889EXPORT_SYMBOL(netdev_unbind_sb_channel);
2890
2891int netdev_bind_sb_channel_queue(struct net_device *dev,
2892 struct net_device *sb_dev,
2893 u8 tc, u16 count, u16 offset)
2894{
2895 /* Make certain the sb_dev and dev are already configured */
2896 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2897 return -EINVAL;
2898
2899 /* We cannot hand out queues we don't have */
2900 if ((offset + count) > dev->real_num_tx_queues)
2901 return -EINVAL;
2902
2903 /* Record the mapping */
2904 sb_dev->tc_to_txq[tc].count = count;
2905 sb_dev->tc_to_txq[tc].offset = offset;
2906
2907 /* Provide a way for Tx queue to find the tc_to_txq map or
2908 * XPS map for itself.
2909 */
2910 while (count--)
2911 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2912
2913 return 0;
2914}
2915EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2916
2917int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2918{
2919 /* Do not use a multiqueue device to represent a subordinate channel */
2920 if (netif_is_multiqueue(dev))
2921 return -ENODEV;
2922
2923 /* We allow channels 1 - 32767 to be used for subordinate channels.
2924 * Channel 0 is meant to be "native" mode and used only to represent
2925 * the main root device. We allow writing 0 to reset the device back
2926 * to normal mode after being used as a subordinate channel.
2927 */
2928 if (channel > S16_MAX)
2929 return -EINVAL;
2930
2931 dev->num_tc = -channel;
2932
2933 return 0;
2934}
2935EXPORT_SYMBOL(netdev_set_sb_channel);
2936
John Fastabendf0796d52010-07-01 13:21:57 +00002937/*
2938 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002939 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002940 */
Tom Herberte6484932010-10-18 18:04:39 +00002941int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002942{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002943 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002944 int rc;
2945
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002946 disabling = txq < dev->real_num_tx_queues;
2947
Tom Herberte6484932010-10-18 18:04:39 +00002948 if (txq < 1 || txq > dev->num_tx_queues)
2949 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002950
Ben Hutchings5c565802011-02-15 19:39:21 +00002951 if (dev->reg_state == NETREG_REGISTERED ||
2952 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002953 ASSERT_RTNL();
2954
Tom Herbert1d24eb42010-11-21 13:17:27 +00002955 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2956 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002957 if (rc)
2958 return rc;
2959
John Fastabend4f57c082011-01-17 08:06:04 +00002960 if (dev->num_tc)
2961 netif_setup_tc(dev, txq);
2962
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002963 dev->real_num_tx_queues = txq;
2964
2965 if (disabling) {
2966 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002967 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002968#ifdef CONFIG_XPS
2969 netif_reset_xps_queues_gt(dev, txq);
2970#endif
2971 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002972 } else {
2973 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002974 }
Tom Herberte6484932010-10-18 18:04:39 +00002975
Tom Herberte6484932010-10-18 18:04:39 +00002976 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002977}
2978EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002979
Michael Daltona953be52014-01-16 22:23:28 -08002980#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002981/**
2982 * netif_set_real_num_rx_queues - set actual number of RX queues used
2983 * @dev: Network device
2984 * @rxq: Actual number of RX queues
2985 *
2986 * This must be called either with the rtnl_lock held or before
2987 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002988 * negative error code. If called before registration, it always
2989 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002990 */
2991int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2992{
2993 int rc;
2994
Tom Herbertbd25fa72010-10-18 18:00:16 +00002995 if (rxq < 1 || rxq > dev->num_rx_queues)
2996 return -EINVAL;
2997
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002998 if (dev->reg_state == NETREG_REGISTERED) {
2999 ASSERT_RTNL();
3000
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003001 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
3002 rxq);
3003 if (rc)
3004 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003005 }
3006
3007 dev->real_num_rx_queues = rxq;
3008 return 0;
3009}
3010EXPORT_SYMBOL(netif_set_real_num_rx_queues);
3011#endif
3012
Ben Hutchings2c530402012-07-10 10:55:09 +00003013/**
3014 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00003015 *
3016 * This routine should set an upper limit on the number of RSS queues
3017 * used by default by multiqueue devices.
3018 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00003019int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00003020{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05303021 return is_kdump_kernel() ?
3022 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00003023}
3024EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3025
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003026static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003027{
3028 struct softnet_data *sd;
3029 unsigned long flags;
3030
3031 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05003032 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00003033 q->next_sched = NULL;
3034 *sd->output_queue_tailp = q;
3035 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003036 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3037 local_irq_restore(flags);
3038}
3039
David S. Miller37437bb2008-07-16 02:15:04 -07003040void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08003041{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003042 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3043 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08003044}
3045EXPORT_SYMBOL(__netif_schedule);
3046
Eric Dumazete6247022013-12-05 04:45:08 -08003047struct dev_kfree_skb_cb {
3048 enum skb_free_reason reason;
3049};
3050
3051static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08003052{
Eric Dumazete6247022013-12-05 04:45:08 -08003053 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08003054}
Denis Vlasenko56079432006-03-29 15:57:29 -08003055
John Fastabend46e5da40a2014-09-12 20:04:52 -07003056void netif_schedule_queue(struct netdev_queue *txq)
3057{
3058 rcu_read_lock();
Julio Faracco5be55152019-10-01 11:39:04 -03003059 if (!netif_xmit_stopped(txq)) {
John Fastabend46e5da40a2014-09-12 20:04:52 -07003060 struct Qdisc *q = rcu_dereference(txq->qdisc);
3061
3062 __netif_schedule(q);
3063 }
3064 rcu_read_unlock();
3065}
3066EXPORT_SYMBOL(netif_schedule_queue);
3067
John Fastabend46e5da40a2014-09-12 20:04:52 -07003068void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3069{
3070 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3071 struct Qdisc *q;
3072
3073 rcu_read_lock();
3074 q = rcu_dereference(dev_queue->qdisc);
3075 __netif_schedule(q);
3076 rcu_read_unlock();
3077 }
3078}
3079EXPORT_SYMBOL(netif_tx_wake_queue);
3080
Eric Dumazete6247022013-12-05 04:45:08 -08003081void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
3082{
3083 unsigned long flags;
3084
Myungho Jung98998862017-04-25 11:58:15 -07003085 if (unlikely(!skb))
3086 return;
3087
Reshetova, Elena63354792017-06-30 13:07:58 +03003088 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08003089 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03003090 refcount_set(&skb->users, 0);
3091 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08003092 return;
3093 }
3094 get_kfree_skb_cb(skb)->reason = reason;
3095 local_irq_save(flags);
3096 skb->next = __this_cpu_read(softnet_data.completion_queue);
3097 __this_cpu_write(softnet_data.completion_queue, skb);
3098 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3099 local_irq_restore(flags);
3100}
3101EXPORT_SYMBOL(__dev_kfree_skb_irq);
3102
3103void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08003104{
3105 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08003106 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08003107 else
3108 dev_kfree_skb(skb);
3109}
Eric Dumazete6247022013-12-05 04:45:08 -08003110EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08003111
3112
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003113/**
3114 * netif_device_detach - mark device as removed
3115 * @dev: network device
3116 *
3117 * Mark device as removed from system and therefore no longer available.
3118 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003119void netif_device_detach(struct net_device *dev)
3120{
3121 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3122 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003123 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003124 }
3125}
3126EXPORT_SYMBOL(netif_device_detach);
3127
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003128/**
3129 * netif_device_attach - mark device as attached
3130 * @dev: network device
3131 *
3132 * Mark device as attached from system and restart if needed.
3133 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003134void netif_device_attach(struct net_device *dev)
3135{
3136 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3137 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003138 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003139 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003140 }
3141}
3142EXPORT_SYMBOL(netif_device_attach);
3143
Jiri Pirko5605c762015-05-12 14:56:12 +02003144/*
3145 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3146 * to be used as a distribution range.
3147 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003148static u16 skb_tx_hash(const struct net_device *dev,
3149 const struct net_device *sb_dev,
3150 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02003151{
3152 u32 hash;
3153 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003154 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02003155
Alexander Duyckeadec8772018-07-09 12:19:48 -04003156 if (dev->num_tc) {
3157 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3158
3159 qoffset = sb_dev->tc_to_txq[tc].offset;
3160 qcount = sb_dev->tc_to_txq[tc].count;
3161 }
3162
Jiri Pirko5605c762015-05-12 14:56:12 +02003163 if (skb_rx_queue_recorded(skb)) {
3164 hash = skb_get_rx_queue(skb);
Amritha Nambiar6e11d152020-02-24 10:56:00 -08003165 if (hash >= qoffset)
3166 hash -= qoffset;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003167 while (unlikely(hash >= qcount))
3168 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04003169 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02003170 }
3171
3172 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3173}
Jiri Pirko5605c762015-05-12 14:56:12 +02003174
Ben Hutchings36c92472012-01-17 07:57:56 +00003175static void skb_warn_bad_offload(const struct sk_buff *skb)
3176{
Wei Tang84d15ae2016-06-16 21:17:49 +08003177 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00003178 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01003179 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00003180
Ben Greearc846ad92013-04-19 10:45:52 +00003181 if (!net_ratelimit())
3182 return;
3183
Bjørn Mork88ad4172015-11-16 19:16:40 +01003184 if (dev) {
3185 if (dev->dev.parent)
3186 name = dev_driver_string(dev->dev.parent);
3187 else
3188 name = netdev_name(dev);
3189 }
Willem de Bruijn64131392019-07-07 05:51:55 -04003190 skb_dump(KERN_WARNING, skb, false);
3191 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01003192 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04003193 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00003194}
3195
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196/*
3197 * Invalidate hardware checksum when packet is to be mangled, and
3198 * complete checksum manually on outgoing path.
3199 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003200int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201{
Al Virod3bc23e2006-11-14 21:24:49 -08003202 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07003203 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Patrick McHardy84fa7932006-08-29 16:44:56 -07003205 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07003206 goto out_set_summed;
3207
3208 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00003209 skb_warn_bad_offload(skb);
3210 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
3212
Eric Dumazetcef401d2013-01-25 20:34:37 +00003213 /* Before computing a checksum, we should make sure no frag could
3214 * be modified by an external entity : checksum could be wrong.
3215 */
3216 if (skb_has_shared_frag(skb)) {
3217 ret = __skb_linearize(skb);
3218 if (ret)
3219 goto out;
3220 }
3221
Michał Mirosław55508d62010-12-14 15:24:08 +00003222 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07003223 BUG_ON(offset >= skb_headlen(skb));
3224 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3225
3226 offset += skb->csum_offset;
3227 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3228
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003229 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3230 if (ret)
3231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07003233 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07003234out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003236out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 return ret;
3238}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003239EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
Davide Carattib72b5bf2017-05-18 15:44:38 +02003241int skb_crc32c_csum_help(struct sk_buff *skb)
3242{
3243 __le32 crc32c_csum;
3244 int ret = 0, offset, start;
3245
3246 if (skb->ip_summed != CHECKSUM_PARTIAL)
3247 goto out;
3248
3249 if (unlikely(skb_is_gso(skb)))
3250 goto out;
3251
3252 /* Before computing a checksum, we should make sure no frag could
3253 * be modified by an external entity : checksum could be wrong.
3254 */
3255 if (unlikely(skb_has_shared_frag(skb))) {
3256 ret = __skb_linearize(skb);
3257 if (ret)
3258 goto out;
3259 }
3260 start = skb_checksum_start_offset(skb);
3261 offset = start + offsetof(struct sctphdr, checksum);
3262 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3263 ret = -EINVAL;
3264 goto out;
3265 }
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003266
3267 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3268 if (ret)
3269 goto out;
3270
Davide Carattib72b5bf2017-05-18 15:44:38 +02003271 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3272 skb->len - start, ~(__u32)0,
3273 crc32c_csum_stub));
3274 *(__le32 *)(skb->data + offset) = crc32c_csum;
3275 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02003276 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003277out:
3278 return ret;
3279}
3280
Vlad Yasevich53d64712014-03-27 17:26:18 -04003281__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003282{
3283 __be16 type = skb->protocol;
3284
Pravin B Shelar19acc322013-05-07 20:41:07 +00003285 /* Tunnel gso handlers can set protocol to ethernet. */
3286 if (type == htons(ETH_P_TEB)) {
3287 struct ethhdr *eth;
3288
3289 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3290 return 0;
3291
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003292 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003293 type = eth->h_proto;
3294 }
3295
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003296 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003297}
3298
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003299/**
3300 * skb_mac_gso_segment - mac layer segmentation handler.
3301 * @skb: buffer to segment
3302 * @features: features for the output path (see dev->features)
3303 */
3304struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3305 netdev_features_t features)
3306{
3307 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3308 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003309 int vlan_depth = skb->mac_len;
3310 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003311
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003312 if (unlikely(!type))
3313 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003314
Vlad Yasevich53d64712014-03-27 17:26:18 -04003315 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003316
3317 rcu_read_lock();
3318 list_for_each_entry_rcu(ptype, &offload_base, list) {
3319 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003320 segs = ptype->callbacks.gso_segment(skb, features);
3321 break;
3322 }
3323 }
3324 rcu_read_unlock();
3325
3326 __skb_push(skb, skb->data - skb_mac_header(skb));
3327
3328 return segs;
3329}
3330EXPORT_SYMBOL(skb_mac_gso_segment);
3331
3332
Cong Wang12b00042013-02-05 16:36:38 +00003333/* openvswitch calls this on rx path, so we need a different check.
3334 */
3335static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3336{
3337 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003338 return skb->ip_summed != CHECKSUM_PARTIAL &&
3339 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003340
3341 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003342}
3343
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003344/**
Cong Wang12b00042013-02-05 16:36:38 +00003345 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003346 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003347 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003348 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003349 *
3350 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003351 *
3352 * It may return NULL if the skb requires no segmentation. This is
3353 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003354 *
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003355 * Segmentation preserves SKB_GSO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003356 */
Cong Wang12b00042013-02-05 16:36:38 +00003357struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3358 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003359{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003360 struct sk_buff *segs;
3361
Cong Wang12b00042013-02-05 16:36:38 +00003362 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003363 int err;
3364
Eric Dumazetb2504a52017-01-31 10:20:32 -08003365 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003366 err = skb_cow_head(skb, 0);
3367 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003368 return ERR_PTR(err);
3369 }
3370
Alexander Duyck802ab552016-04-10 21:45:03 -04003371 /* Only report GSO partial support if it will enable us to
3372 * support segmentation on this frame without needing additional
3373 * work.
3374 */
3375 if (features & NETIF_F_GSO_PARTIAL) {
3376 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3377 struct net_device *dev = skb->dev;
3378
3379 partial_features |= dev->features & dev->gso_partial_features;
3380 if (!skb_gso_ok(skb, features | partial_features))
3381 features &= ~NETIF_F_GSO_PARTIAL;
3382 }
3383
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003384 BUILD_BUG_ON(SKB_GSO_CB_OFFSET +
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003385 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3386
Pravin B Shelar68c33162013-02-14 14:02:41 +00003387 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003388 SKB_GSO_CB(skb)->encap_level = 0;
3389
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003390 skb_reset_mac_header(skb);
3391 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003392
Eric Dumazetb2504a52017-01-31 10:20:32 -08003393 segs = skb_mac_gso_segment(skb, features);
3394
Steffen Klassert3a1296a2020-01-25 11:26:44 +01003395 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003396 skb_warn_bad_offload(skb);
3397
3398 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003399}
Cong Wang12b00042013-02-05 16:36:38 +00003400EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003401
Herbert Xufb286bb2005-11-10 13:01:24 -08003402/* Take action when hardware reception checksum errors are detected. */
3403#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003404void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003405{
3406 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003407 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Willem de Bruijn64131392019-07-07 05:51:55 -04003408 skb_dump(KERN_ERR, skb, true);
Herbert Xufb286bb2005-11-10 13:01:24 -08003409 dump_stack();
3410 }
3411}
3412EXPORT_SYMBOL(netdev_rx_csum_fault);
3413#endif
3414
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003415/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003416static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003418#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 int i;
tchardingf4563a72017-02-09 17:56:07 +11003420
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003421 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003422 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3423 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003424
Ian Campbellea2ab692011-08-22 23:44:58 +00003425 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003426 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003427 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003428 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003429#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 return 0;
3431}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
Simon Horman3b392dd2014-06-04 08:53:17 +09003433/* If MPLS offload request, verify we are testing hardware MPLS features
3434 * instead of standard features for the netdev.
3435 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003436#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003437static netdev_features_t net_mpls_features(struct sk_buff *skb,
3438 netdev_features_t features,
3439 __be16 type)
3440{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003441 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003442 features &= skb->dev->mpls_features;
3443
3444 return features;
3445}
3446#else
3447static netdev_features_t net_mpls_features(struct sk_buff *skb,
3448 netdev_features_t features,
3449 __be16 type)
3450{
3451 return features;
3452}
3453#endif
3454
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003455static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003456 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003457{
Simon Horman3b392dd2014-06-04 08:53:17 +09003458 __be16 type;
3459
Miaohe Lin9fc95f52020-07-30 19:02:36 +08003460 type = skb_network_protocol(skb, NULL);
Simon Horman3b392dd2014-06-04 08:53:17 +09003461 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003462
Ed Cashinc0d680e2012-09-19 15:49:00 +00003463 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003464 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003465 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003466 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003467 if (illegal_highdma(skb->dev, skb))
3468 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003469
3470 return features;
3471}
3472
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003473netdev_features_t passthru_features_check(struct sk_buff *skb,
3474 struct net_device *dev,
3475 netdev_features_t features)
3476{
3477 return features;
3478}
3479EXPORT_SYMBOL(passthru_features_check);
3480
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003481static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003482 struct net_device *dev,
3483 netdev_features_t features)
3484{
3485 return vlan_features_check(skb, features);
3486}
3487
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003488static netdev_features_t gso_features_check(const struct sk_buff *skb,
3489 struct net_device *dev,
3490 netdev_features_t features)
3491{
3492 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3493
3494 if (gso_segs > dev->gso_max_segs)
3495 return features & ~NETIF_F_GSO_MASK;
3496
Alexander Duyck802ab552016-04-10 21:45:03 -04003497 /* Support for GSO partial features requires software
3498 * intervention before we can actually process the packets
3499 * so we need to strip support for any partial features now
3500 * and we can pull them back in after we have partially
3501 * segmented the frame.
3502 */
3503 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3504 features &= ~dev->gso_partial_features;
3505
3506 /* Make sure to clear the IPv4 ID mangling feature if the
3507 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003508 */
3509 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3510 struct iphdr *iph = skb->encapsulation ?
3511 inner_ip_hdr(skb) : ip_hdr(skb);
3512
3513 if (!(iph->frag_off & htons(IP_DF)))
3514 features &= ~NETIF_F_TSO_MANGLEID;
3515 }
3516
3517 return features;
3518}
3519
Florian Westphalc1e756b2014-05-05 15:00:44 +02003520netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003521{
Jesse Gross5f352272014-12-23 22:37:26 -08003522 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003523 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003524
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003525 if (skb_is_gso(skb))
3526 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003527
Jesse Gross5f352272014-12-23 22:37:26 -08003528 /* If encapsulation offload request, verify we are testing
3529 * hardware encapsulation features instead of standard
3530 * features for the netdev
3531 */
3532 if (skb->encapsulation)
3533 features &= dev->hw_enc_features;
3534
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003535 if (skb_vlan_tagged(skb))
3536 features = netdev_intersect_features(features,
3537 dev->vlan_features |
3538 NETIF_F_HW_VLAN_CTAG_TX |
3539 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003540
Jesse Gross5f352272014-12-23 22:37:26 -08003541 if (dev->netdev_ops->ndo_features_check)
3542 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3543 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003544 else
3545 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003546
Florian Westphalc1e756b2014-05-05 15:00:44 +02003547 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003548}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003549EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003550
David S. Miller2ea25512014-08-29 21:10:01 -07003551static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003552 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003553{
David S. Miller2ea25512014-08-29 21:10:01 -07003554 unsigned int len;
3555 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003556
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003557 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003558 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003559
David S. Miller2ea25512014-08-29 21:10:01 -07003560 len = skb->len;
3561 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003562 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003563 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003564
Patrick McHardy572a9d72009-11-10 06:14:14 +00003565 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003566}
David S. Miller2ea25512014-08-29 21:10:01 -07003567
David S. Miller8dcda222014-09-01 15:06:40 -07003568struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3569 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003570{
3571 struct sk_buff *skb = first;
3572 int rc = NETDEV_TX_OK;
3573
3574 while (skb) {
3575 struct sk_buff *next = skb->next;
3576
David S. Millera8305bf2018-07-29 20:42:53 -07003577 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003578 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003579 if (unlikely(!dev_xmit_complete(rc))) {
3580 skb->next = next;
3581 goto out;
3582 }
3583
3584 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003585 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003586 rc = NETDEV_TX_BUSY;
3587 break;
3588 }
3589 }
3590
3591out:
3592 *ret = rc;
3593 return skb;
3594}
3595
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003596static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3597 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003598{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003599 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003600 !vlan_hw_offload_capable(features, skb->vlan_proto))
3601 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003602 return skb;
3603}
3604
Davide Caratti43c26a12017-05-18 15:44:41 +02003605int skb_csum_hwoffload_help(struct sk_buff *skb,
3606 const netdev_features_t features)
3607{
3608 if (unlikely(skb->csum_not_inet))
3609 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3610 skb_crc32c_csum_help(skb);
3611
3612 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3613}
3614EXPORT_SYMBOL(skb_csum_hwoffload_help);
3615
Steffen Klassertf53c7232017-12-20 10:41:36 +01003616static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003617{
3618 netdev_features_t features;
3619
David S. Millereae3f882014-08-30 15:17:13 -07003620 features = netif_skb_features(skb);
3621 skb = validate_xmit_vlan(skb, features);
3622 if (unlikely(!skb))
3623 goto out_null;
3624
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003625 skb = sk_validate_xmit_skb(skb, dev);
3626 if (unlikely(!skb))
3627 goto out_null;
3628
Johannes Berg8b86a612015-04-17 15:45:04 +02003629 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003630 struct sk_buff *segs;
3631
3632 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003633 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003634 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003635 } else if (segs) {
3636 consume_skb(skb);
3637 skb = segs;
3638 }
David S. Millereae3f882014-08-30 15:17:13 -07003639 } else {
3640 if (skb_needs_linearize(skb, features) &&
3641 __skb_linearize(skb))
3642 goto out_kfree_skb;
3643
3644 /* If packet is not checksummed and device does not
3645 * support checksumming for this protocol, complete
3646 * checksumming here.
3647 */
3648 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3649 if (skb->encapsulation)
3650 skb_set_inner_transport_header(skb,
3651 skb_checksum_start_offset(skb));
3652 else
3653 skb_set_transport_header(skb,
3654 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003655 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003656 goto out_kfree_skb;
3657 }
3658 }
3659
Steffen Klassertf53c7232017-12-20 10:41:36 +01003660 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003661
David S. Millereae3f882014-08-30 15:17:13 -07003662 return skb;
3663
3664out_kfree_skb:
3665 kfree_skb(skb);
3666out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003667 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003668 return NULL;
3669}
3670
Steffen Klassertf53c7232017-12-20 10:41:36 +01003671struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003672{
3673 struct sk_buff *next, *head = NULL, *tail;
3674
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003675 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003676 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003677 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003678
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003679 /* in case skb wont be segmented, point to itself */
3680 skb->prev = skb;
3681
Steffen Klassertf53c7232017-12-20 10:41:36 +01003682 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003683 if (!skb)
3684 continue;
3685
3686 if (!head)
3687 head = skb;
3688 else
3689 tail->next = skb;
3690 /* If skb was segmented, skb->prev points to
3691 * the last segment. If not, it still contains skb.
3692 */
3693 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003694 }
3695 return head;
3696}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003697EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003698
Eric Dumazet1def9232013-01-10 12:36:42 +00003699static void qdisc_pkt_len_init(struct sk_buff *skb)
3700{
3701 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3702
3703 qdisc_skb_cb(skb)->pkt_len = skb->len;
3704
3705 /* To get more precise estimation of bytes sent on wire,
3706 * we add to pkt_len the headers size of all segments
3707 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003708 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003709 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003710 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003711
Eric Dumazet757b8b12013-01-15 21:14:21 -08003712 /* mac layer + network layer */
3713 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3714
3715 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003716 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3717 const struct tcphdr *th;
3718 struct tcphdr _tcphdr;
3719
3720 th = skb_header_pointer(skb, skb_transport_offset(skb),
3721 sizeof(_tcphdr), &_tcphdr);
3722 if (likely(th))
3723 hdr_len += __tcp_hdrlen(th);
3724 } else {
3725 struct udphdr _udphdr;
3726
3727 if (skb_header_pointer(skb, skb_transport_offset(skb),
3728 sizeof(_udphdr), &_udphdr))
3729 hdr_len += sizeof(struct udphdr);
3730 }
Jason Wang15e5a032013-03-25 20:19:59 +00003731
3732 if (shinfo->gso_type & SKB_GSO_DODGY)
3733 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3734 shinfo->gso_size);
3735
3736 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003737 }
3738}
3739
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003740static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3741 struct net_device *dev,
3742 struct netdev_queue *txq)
3743{
3744 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003745 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003746 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003747 int rc;
3748
Eric Dumazeta2da5702011-01-20 03:48:19 +00003749 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003750
3751 if (q->flags & TCQ_F_NOLOCK) {
Petr Machataac5c66f2020-07-14 20:03:08 +03003752 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni379349e2020-02-18 18:15:44 +01003753 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003754
3755 if (unlikely(to_free))
3756 kfree_skb_list(to_free);
3757 return rc;
3758 }
3759
Eric Dumazet79640a42010-06-02 05:09:29 -07003760 /*
3761 * Heuristic to force contended enqueues to serialize on a
3762 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003763 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003764 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003765 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003766 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003767 if (unlikely(contended))
3768 spin_lock(&q->busylock);
3769
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003770 spin_lock(root_lock);
3771 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003772 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003773 rc = NET_XMIT_DROP;
3774 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003775 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003776 /*
3777 * This is a work-conserving queue; there are no old skbs
3778 * waiting to be sent out; and the qdisc is not running -
3779 * xmit the skb directly.
3780 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003781
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003782 qdisc_bstats_update(q, skb);
3783
Eric Dumazet55a93b32014-10-03 15:31:07 -07003784 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003785 if (unlikely(contended)) {
3786 spin_unlock(&q->busylock);
3787 contended = false;
3788 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003789 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003790 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003791
John Fastabend6c148182017-12-07 09:54:06 -08003792 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003793 rc = NET_XMIT_SUCCESS;
3794 } else {
Petr Machataac5c66f2020-07-14 20:03:08 +03003795 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003796 if (qdisc_run_begin(q)) {
3797 if (unlikely(contended)) {
3798 spin_unlock(&q->busylock);
3799 contended = false;
3800 }
3801 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003802 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003803 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003804 }
3805 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003806 if (unlikely(to_free))
3807 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003808 if (unlikely(contended))
3809 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003810 return rc;
3811}
3812
Daniel Borkmann86f85152013-12-29 17:27:11 +01003813#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003814static void skb_update_prio(struct sk_buff *skb)
3815{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003816 const struct netprio_map *map;
3817 const struct sock *sk;
3818 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003819
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003820 if (skb->priority)
3821 return;
3822 map = rcu_dereference_bh(skb->dev->priomap);
3823 if (!map)
3824 return;
3825 sk = skb_to_full_sk(skb);
3826 if (!sk)
3827 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003828
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003829 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3830
3831 if (prioidx < map->priomap_len)
3832 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003833}
3834#else
3835#define skb_update_prio(skb)
3836#endif
3837
Dave Jonesd29f7492008-07-22 14:09:06 -07003838/**
Michel Machado95603e22012-06-12 10:16:35 +00003839 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003840 * @net: network namespace this loopback is happening in
3841 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003842 * @skb: buffer to transmit
3843 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003844int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003845{
3846 skb_reset_mac_header(skb);
3847 __skb_pull(skb, skb_network_offset(skb));
3848 skb->pkt_type = PACKET_LOOPBACK;
3849 skb->ip_summed = CHECKSUM_UNNECESSARY;
3850 WARN_ON(!skb_dst(skb));
3851 skb_dst_force(skb);
3852 netif_rx_ni(skb);
3853 return 0;
3854}
3855EXPORT_SYMBOL(dev_loopback_xmit);
3856
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003857#ifdef CONFIG_NET_EGRESS
3858static struct sk_buff *
3859sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3860{
Jiri Pirko46209402017-11-03 11:46:25 +01003861 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003862 struct tcf_result cl_res;
3863
Jiri Pirko46209402017-11-03 11:46:25 +01003864 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003865 return skb;
3866
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003867 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003868 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003869
Jiri Pirko46209402017-11-03 11:46:25 +01003870 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003871 case TC_ACT_OK:
3872 case TC_ACT_RECLASSIFY:
3873 skb->tc_index = TC_H_MIN(cl_res.classid);
3874 break;
3875 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003876 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003877 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003878 kfree_skb(skb);
3879 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003880 case TC_ACT_STOLEN:
3881 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003882 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003883 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003884 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003885 return NULL;
3886 case TC_ACT_REDIRECT:
3887 /* No need to push/pop skb's mac_header here on egress! */
3888 skb_do_redirect(skb);
3889 *ret = NET_XMIT_SUCCESS;
3890 return NULL;
3891 default:
3892 break;
3893 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01003894
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003895 return skb;
3896}
3897#endif /* CONFIG_NET_EGRESS */
3898
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003899#ifdef CONFIG_XPS
3900static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3901 struct xps_dev_maps *dev_maps, unsigned int tci)
3902{
3903 struct xps_map *map;
3904 int queue_index = -1;
3905
3906 if (dev->num_tc) {
3907 tci *= dev->num_tc;
3908 tci += netdev_get_prio_tc_map(dev, skb->priority);
3909 }
3910
3911 map = rcu_dereference(dev_maps->attr_map[tci]);
3912 if (map) {
3913 if (map->len == 1)
3914 queue_index = map->queues[0];
3915 else
3916 queue_index = map->queues[reciprocal_scale(
3917 skb_get_hash(skb), map->len)];
3918 if (unlikely(queue_index >= dev->real_num_tx_queues))
3919 queue_index = -1;
3920 }
3921 return queue_index;
3922}
3923#endif
3924
Alexander Duyckeadec8772018-07-09 12:19:48 -04003925static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3926 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003927{
3928#ifdef CONFIG_XPS
3929 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003930 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003931 int queue_index = -1;
3932
Amritha Nambiar04157462018-06-29 21:26:46 -07003933 if (!static_key_false(&xps_needed))
3934 return -1;
3935
Jiri Pirko638b2a62015-05-12 14:56:13 +02003936 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003937 if (!static_key_false(&xps_rxqs_needed))
3938 goto get_cpus_map;
3939
Alexander Duyckeadec8772018-07-09 12:19:48 -04003940 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003941 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003942 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003943
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003944 if (tci >= 0 && tci < dev->num_rx_queues)
3945 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3946 tci);
3947 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003948
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003949get_cpus_map:
3950 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003951 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003952 if (dev_maps) {
3953 unsigned int tci = skb->sender_cpu - 1;
3954
3955 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3956 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003957 }
3958 }
3959 rcu_read_unlock();
3960
3961 return queue_index;
3962#else
3963 return -1;
3964#endif
3965}
3966
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003967u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003968 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003969{
3970 return 0;
3971}
3972EXPORT_SYMBOL(dev_pick_tx_zero);
3973
3974u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003975 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003976{
3977 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3978}
3979EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3980
Paolo Abenib71b5832019-03-20 11:02:05 +01003981u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3982 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003983{
3984 struct sock *sk = skb->sk;
3985 int queue_index = sk_tx_queue_get(sk);
3986
Alexander Duyckeadec8772018-07-09 12:19:48 -04003987 sb_dev = sb_dev ? : dev;
3988
Jiri Pirko638b2a62015-05-12 14:56:13 +02003989 if (queue_index < 0 || skb->ooo_okay ||
3990 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003991 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003992
Jiri Pirko638b2a62015-05-12 14:56:13 +02003993 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003994 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003995
3996 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003997 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003998 rcu_access_pointer(sk->sk_dst_cache))
3999 sk_tx_queue_set(sk, new_index);
4000
4001 queue_index = new_index;
4002 }
4003
4004 return queue_index;
4005}
Paolo Abenib71b5832019-03-20 11:02:05 +01004006EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004007
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004008struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4009 struct sk_buff *skb,
4010 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004011{
4012 int queue_index = 0;
4013
4014#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08004015 u32 sender_cpu = skb->sender_cpu - 1;
4016
4017 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004018 skb->sender_cpu = raw_smp_processor_id() + 1;
4019#endif
4020
4021 if (dev->real_num_tx_queues != 1) {
4022 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11004023
Jiri Pirko638b2a62015-05-12 14:56:13 +02004024 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01004025 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004026 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004027 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004028
Alexander Duyckd5845272017-11-22 10:57:41 -08004029 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004030 }
4031
4032 skb_set_queue_mapping(skb, queue_index);
4033 return netdev_get_tx_queue(dev, queue_index);
4034}
4035
Michel Machado95603e22012-06-12 10:16:35 +00004036/**
Jason Wang9d08dd32014-01-20 11:25:13 +08004037 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07004038 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04004039 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07004040 *
4041 * Queue a buffer for transmission to a network device. The caller must
4042 * have set the device and priority and built the buffer before calling
4043 * this function. The function can be called from an interrupt.
4044 *
4045 * A negative errno code is returned on a failure. A success does not
4046 * guarantee the frame will be transmitted as it may be dropped due
4047 * to congestion or traffic shaping.
4048 *
4049 * -----------------------------------------------------------------------------------
4050 * I notice this method can also return errors from the queue disciplines,
4051 * including NET_XMIT_DROP, which is a positive value. So, errors can also
4052 * be positive.
4053 *
4054 * Regardless of the return value, the skb is consumed, so it is currently
4055 * difficult to retry a send to this method. (You can bump the ref count
4056 * before sending to hold a reference for retry if you are careful.)
4057 *
4058 * When calling this method, interrupts MUST be enabled. This is because
4059 * the BH enable code must have IRQs enabled so that it will not deadlock.
4060 * --BLG
4061 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04004062static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063{
4064 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07004065 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 struct Qdisc *q;
4067 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01004068 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00004070 skb_reset_mac_header(skb);
4071
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004072 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
4073 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
4074
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004075 /* Disable soft irqs for various locks below. Also
4076 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004078 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Neil Horman5bc14212011-11-22 05:10:51 +00004080 skb_update_prio(skb);
4081
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004082 qdisc_pkt_len_init(skb);
4083#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004084 skb->tc_at_ingress = 0;
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004085# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004086 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004087 skb = sch_handle_egress(skb, &rc, dev);
4088 if (!skb)
4089 goto out;
4090 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004091# endif
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004092#endif
Eric Dumazet02875872014-10-05 18:38:35 -07004093 /* If device/qdisc don't need skb->dst, release it right now while
4094 * its hot in this cpu cache.
4095 */
4096 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4097 skb_dst_drop(skb);
4098 else
4099 skb_dst_force(skb);
4100
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004101 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08004102 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07004103
Koki Sanagicf66ba52010-08-23 18:45:02 +09004104 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00004106 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07004107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 }
4109
4110 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11004111 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
tchardingeb13da12017-02-09 17:56:06 +11004113 * Really, it is unlikely that netif_tx_lock protection is necessary
4114 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
4115 * counters.)
4116 * However, it is possible, that they rely on protection
4117 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
tchardingeb13da12017-02-09 17:56:06 +11004119 * Check this and shot the lock. It is not prone from deadlocks.
4120 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 */
4122 if (dev->flags & IFF_UP) {
4123 int cpu = smp_processor_id(); /* ok because BHs are off */
4124
David S. Millerc773e842008-07-08 23:13:53 -07004125 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004126 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07004127 goto recursion_alert;
4128
Steffen Klassertf53c7232017-12-20 10:41:36 +01004129 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004130 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07004131 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004132
David S. Millerc773e842008-07-08 23:13:53 -07004133 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Tom Herbert734664982011-11-28 16:32:44 +00004135 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004136 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07004137 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02004138 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00004139 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07004140 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 goto out;
4142 }
4143 }
David S. Millerc773e842008-07-08 23:13:53 -07004144 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00004145 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4146 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 } else {
4148 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07004149 * unfortunately
4150 */
4151recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00004152 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4153 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 }
4155 }
4156
4157 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07004158 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159
Eric Dumazet015f0682014-03-27 08:45:56 -07004160 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004161 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 return rc;
4163out:
Herbert Xud4828d82006-06-22 02:28:18 -07004164 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 return rc;
4166}
Jason Wangf663dd92014-01-10 16:18:26 +08004167
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004168int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08004169{
4170 return __dev_queue_xmit(skb, NULL);
4171}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004172EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173
Alexander Duyckeadec8772018-07-09 12:19:48 -04004174int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08004175{
Alexander Duyckeadec8772018-07-09 12:19:48 -04004176 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08004177}
4178EXPORT_SYMBOL(dev_queue_xmit_accel);
4179
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004180int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
4181{
4182 struct net_device *dev = skb->dev;
4183 struct sk_buff *orig_skb = skb;
4184 struct netdev_queue *txq;
4185 int ret = NETDEV_TX_BUSY;
4186 bool again = false;
4187
4188 if (unlikely(!netif_running(dev) ||
4189 !netif_carrier_ok(dev)))
4190 goto drop;
4191
4192 skb = validate_xmit_skb_list(skb, dev, &again);
4193 if (skb != orig_skb)
4194 goto drop;
4195
4196 skb_set_queue_mapping(skb, queue_id);
4197 txq = skb_get_tx_queue(dev, skb);
4198
4199 local_bh_disable();
4200
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004201 dev_xmit_recursion_inc();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004202 HARD_TX_LOCK(dev, txq, smp_processor_id());
4203 if (!netif_xmit_frozen_or_drv_stopped(txq))
4204 ret = netdev_start_xmit(skb, dev, txq, false);
4205 HARD_TX_UNLOCK(dev, txq);
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004206 dev_xmit_recursion_dec();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004207
4208 local_bh_enable();
4209
4210 if (!dev_xmit_complete(ret))
4211 kfree_skb(skb);
4212
4213 return ret;
4214drop:
4215 atomic_long_inc(&dev->tx_dropped);
4216 kfree_skb_list(skb);
4217 return NET_XMIT_DROP;
4218}
4219EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
tchardingeb13da12017-02-09 17:56:06 +11004221/*************************************************************************
4222 * Receiver routines
4223 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004225int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00004226EXPORT_SYMBOL(netdev_max_backlog);
4227
Eric Dumazet3b098e22010-05-15 23:57:10 -07004228int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004229int netdev_budget __read_mostly = 300;
Konstantin Khlebnikova48379802020-04-06 14:39:32 +03004230/* Must be at least 2 jiffes to guarantee 1 jiffy timeout */
4231unsigned int __read_mostly netdev_budget_usecs = 2 * USEC_PER_SEC / HZ;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01004232int weight_p __read_mostly = 64; /* old backlog weight */
4233int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4234int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4235int dev_rx_weight __read_mostly = 64;
4236int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01004237/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4238int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004240/* Called with irq disabled */
4241static inline void ____napi_schedule(struct softnet_data *sd,
4242 struct napi_struct *napi)
4243{
4244 list_add_tail(&napi->poll_list, &sd->poll_list);
4245 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4246}
4247
Eric Dumazetdf334542010-03-24 19:13:54 +00004248#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07004249
4250/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00004251struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07004252EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004253u32 rps_cpu_mask __read_mostly;
4254EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07004255
Eric Dumazetdc053602019-03-22 08:56:38 -07004256struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04004257EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07004258struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08004259EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00004260
Ben Hutchingsc4454772011-01-19 11:03:53 +00004261static struct rps_dev_flow *
4262set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4263 struct rps_dev_flow *rflow, u16 next_cpu)
4264{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004265 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004266#ifdef CONFIG_RFS_ACCEL
4267 struct netdev_rx_queue *rxqueue;
4268 struct rps_dev_flow_table *flow_table;
4269 struct rps_dev_flow *old_rflow;
4270 u32 flow_id;
4271 u16 rxq_index;
4272 int rc;
4273
4274 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004275 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4276 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004277 goto out;
4278 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4279 if (rxq_index == skb_get_rx_queue(skb))
4280 goto out;
4281
4282 rxqueue = dev->_rx + rxq_index;
4283 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4284 if (!flow_table)
4285 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004286 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004287 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4288 rxq_index, flow_id);
4289 if (rc < 0)
4290 goto out;
4291 old_rflow = rflow;
4292 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004293 rflow->filter = rc;
4294 if (old_rflow->filter == rflow->filter)
4295 old_rflow->filter = RPS_NO_FILTER;
4296 out:
4297#endif
4298 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004299 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004300 }
4301
Ben Hutchings09994d12011-10-03 04:42:46 +00004302 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004303 return rflow;
4304}
4305
Tom Herbert0a9627f2010-03-16 08:03:29 +00004306/*
4307 * get_rps_cpu is called from netif_receive_skb and returns the target
4308 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004309 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004310 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004311static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4312 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004313{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004314 const struct rps_sock_flow_table *sock_flow_table;
4315 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004316 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004317 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004318 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004319 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004320 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004321
Tom Herbert0a9627f2010-03-16 08:03:29 +00004322 if (skb_rx_queue_recorded(skb)) {
4323 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004324
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004325 if (unlikely(index >= dev->real_num_rx_queues)) {
4326 WARN_ONCE(dev->real_num_rx_queues > 1,
4327 "%s received packet on queue %u, but number "
4328 "of RX queues is %u\n",
4329 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004330 goto done;
4331 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004332 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004333 }
4334
Eric Dumazet567e4b72015-02-06 12:59:01 -08004335 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4336
4337 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4338 map = rcu_dereference(rxqueue->rps_map);
4339 if (!flow_table && !map)
4340 goto done;
4341
Changli Gao2d47b452010-08-17 19:00:56 +00004342 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004343 hash = skb_get_hash(skb);
4344 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004345 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004346
Tom Herbertfec5e652010-04-16 16:01:27 -07004347 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4348 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004349 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004350 u32 next_cpu;
4351 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004352
Eric Dumazet567e4b72015-02-06 12:59:01 -08004353 /* First check into global flow table if there is a match */
4354 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4355 if ((ident ^ hash) & ~rps_cpu_mask)
4356 goto try_rps;
4357
4358 next_cpu = ident & rps_cpu_mask;
4359
4360 /* OK, now we know there is a match,
4361 * we can look at the local (per receive queue) flow table
4362 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004363 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004364 tcpu = rflow->cpu;
4365
Tom Herbertfec5e652010-04-16 16:01:27 -07004366 /*
4367 * If the desired CPU (where last recvmsg was done) is
4368 * different from current CPU (one in the rx-queue flow
4369 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004370 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004371 * - Current CPU is offline.
4372 * - The current CPU's queue tail has advanced beyond the
4373 * last packet that was enqueued using this table entry.
4374 * This guarantees that all previous packets for the flow
4375 * have been dequeued, thus preserving in order delivery.
4376 */
4377 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004378 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004379 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004380 rflow->last_qtail)) >= 0)) {
4381 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004382 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004383 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004384
Eric Dumazeta31196b2015-04-25 09:35:24 -07004385 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004386 *rflowp = rflow;
4387 cpu = tcpu;
4388 goto done;
4389 }
4390 }
4391
Eric Dumazet567e4b72015-02-06 12:59:01 -08004392try_rps:
4393
Tom Herbert0a9627f2010-03-16 08:03:29 +00004394 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004395 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004396 if (cpu_online(tcpu)) {
4397 cpu = tcpu;
4398 goto done;
4399 }
4400 }
4401
4402done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004403 return cpu;
4404}
4405
Ben Hutchingsc4454772011-01-19 11:03:53 +00004406#ifdef CONFIG_RFS_ACCEL
4407
4408/**
4409 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4410 * @dev: Device on which the filter was set
4411 * @rxq_index: RX queue index
4412 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4413 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4414 *
4415 * Drivers that implement ndo_rx_flow_steer() should periodically call
4416 * this function for each installed filter and remove the filters for
4417 * which it returns %true.
4418 */
4419bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4420 u32 flow_id, u16 filter_id)
4421{
4422 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4423 struct rps_dev_flow_table *flow_table;
4424 struct rps_dev_flow *rflow;
4425 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004426 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004427
4428 rcu_read_lock();
4429 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4430 if (flow_table && flow_id <= flow_table->mask) {
4431 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004432 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004433 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004434 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4435 rflow->last_qtail) <
4436 (int)(10 * flow_table->mask)))
4437 expire = false;
4438 }
4439 rcu_read_unlock();
4440 return expire;
4441}
4442EXPORT_SYMBOL(rps_may_expire_flow);
4443
4444#endif /* CONFIG_RFS_ACCEL */
4445
Tom Herbert0a9627f2010-03-16 08:03:29 +00004446/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004447static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004448{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004449 struct softnet_data *sd = data;
4450
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004451 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004452 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004453}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004454
Tom Herbertfec5e652010-04-16 16:01:27 -07004455#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004456
4457/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004458 * Check if this softnet_data structure is another cpu one
4459 * If yes, queue it to our IPI list and return 1
4460 * If no, return 0
4461 */
4462static int rps_ipi_queued(struct softnet_data *sd)
4463{
4464#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004465 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004466
4467 if (sd != mysd) {
4468 sd->rps_ipi_next = mysd->rps_ipi_list;
4469 mysd->rps_ipi_list = sd;
4470
4471 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4472 return 1;
4473 }
4474#endif /* CONFIG_RPS */
4475 return 0;
4476}
4477
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004478#ifdef CONFIG_NET_FLOW_LIMIT
4479int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4480#endif
4481
4482static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4483{
4484#ifdef CONFIG_NET_FLOW_LIMIT
4485 struct sd_flow_limit *fl;
4486 struct softnet_data *sd;
4487 unsigned int old_flow, new_flow;
4488
4489 if (qlen < (netdev_max_backlog >> 1))
4490 return false;
4491
Christoph Lameter903ceff2014-08-17 12:30:35 -05004492 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004493
4494 rcu_read_lock();
4495 fl = rcu_dereference(sd->flow_limit);
4496 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004497 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004498 old_flow = fl->history[fl->history_head];
4499 fl->history[fl->history_head] = new_flow;
4500
4501 fl->history_head++;
4502 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4503
4504 if (likely(fl->buckets[old_flow]))
4505 fl->buckets[old_flow]--;
4506
4507 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4508 fl->count++;
4509 rcu_read_unlock();
4510 return true;
4511 }
4512 }
4513 rcu_read_unlock();
4514#endif
4515 return false;
4516}
4517
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004518/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004519 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4520 * queue (may be a remote CPU queue).
4521 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004522static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4523 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004524{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004525 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004526 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004527 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004528
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004529 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004530
4531 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004532
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004533 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004534 if (!netif_running(skb->dev))
4535 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004536 qlen = skb_queue_len(&sd->input_pkt_queue);
4537 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004538 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004539enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004540 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004541 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004542 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004543 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004544 return NET_RX_SUCCESS;
4545 }
4546
Eric Dumazetebda37c22010-05-06 23:51:21 +00004547 /* Schedule NAPI for backlog device
4548 * We can use non atomic operation since we own the queue lock
4549 */
4550 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004551 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004552 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004553 }
4554 goto enqueue;
4555 }
4556
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004557drop:
Changli Gaodee42872010-05-02 05:42:16 +00004558 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004559 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004560
Tom Herbert0a9627f2010-03-16 08:03:29 +00004561 local_irq_restore(flags);
4562
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004563 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004564 kfree_skb(skb);
4565 return NET_RX_DROP;
4566}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004568static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4569{
4570 struct net_device *dev = skb->dev;
4571 struct netdev_rx_queue *rxqueue;
4572
4573 rxqueue = dev->_rx;
4574
4575 if (skb_rx_queue_recorded(skb)) {
4576 u16 index = skb_get_rx_queue(skb);
4577
4578 if (unlikely(index >= dev->real_num_rx_queues)) {
4579 WARN_ONCE(dev->real_num_rx_queues > 1,
4580 "%s received packet on queue %u, but number "
4581 "of RX queues is %u\n",
4582 dev->name, index, dev->real_num_rx_queues);
4583
4584 return rxqueue; /* Return first rxqueue */
4585 }
4586 rxqueue += index;
4587 }
4588 return rxqueue;
4589}
4590
John Fastabendd4455162017-07-17 09:26:45 -07004591static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004592 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004593 struct bpf_prog *xdp_prog)
4594{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004595 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004596 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004597 u32 metalen, act = XDP_DROP;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004598 __be16 orig_eth_type;
4599 struct ethhdr *eth;
4600 bool orig_bcast;
John Fastabendd4455162017-07-17 09:26:45 -07004601 int hlen, off;
4602 u32 mac_len;
4603
4604 /* Reinjected packets coming from act_mirred or similar should
4605 * not get XDP generic processing.
4606 */
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01004607 if (skb_is_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004608 return XDP_PASS;
4609
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004610 /* XDP packets must be linear and must have sufficient headroom
4611 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4612 * native XDP provides, thus we need to do it here as well.
4613 */
Toke Høiland-Jørgensenad1e03b2020-02-10 17:10:46 +01004614 if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004615 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4616 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4617 int troom = skb->tail + skb->data_len - skb->end;
4618
4619 /* In case we have to go down the path and also linearize,
4620 * then lets do the pskb_expand_head() work just once here.
4621 */
4622 if (pskb_expand_head(skb,
4623 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4624 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4625 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004626 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004627 goto do_drop;
4628 }
John Fastabendd4455162017-07-17 09:26:45 -07004629
4630 /* The XDP program wants to see the packet starting at the MAC
4631 * header.
4632 */
4633 mac_len = skb->data - skb_mac_header(skb);
4634 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004635 xdp->data = skb->data - mac_len;
4636 xdp->data_meta = xdp->data;
4637 xdp->data_end = xdp->data + hlen;
4638 xdp->data_hard_start = skb->data - skb_headroom(skb);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004639
4640 /* SKB "head" area always have tailroom for skb_shared_info */
4641 xdp->frame_sz = (void *)skb_end_pointer(skb) - xdp->data_hard_start;
4642 xdp->frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4643
Björn Töpel02671e22018-05-02 13:01:30 +02004644 orig_data_end = xdp->data_end;
4645 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004646 eth = (struct ethhdr *)xdp->data;
4647 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4648 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004649
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004650 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004651 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004652
Björn Töpel02671e22018-05-02 13:01:30 +02004653 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004654
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004655 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004656 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004657 if (off) {
4658 if (off > 0)
4659 __skb_pull(skb, off);
4660 else if (off < 0)
4661 __skb_push(skb, -off);
4662
4663 skb->mac_header += off;
4664 skb_reset_network_header(skb);
4665 }
John Fastabendd4455162017-07-17 09:26:45 -07004666
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004667 /* check if bpf_xdp_adjust_tail was used */
4668 off = xdp->data_end - orig_data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004669 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004670 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004671 skb->len += off; /* positive on grow, negative on shrink */
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004672 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004673
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004674 /* check if XDP changed eth hdr such SKB needs update */
4675 eth = (struct ethhdr *)xdp->data;
4676 if ((orig_eth_type != eth->h_proto) ||
4677 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4678 __skb_push(skb, ETH_HLEN);
4679 skb->protocol = eth_type_trans(skb, skb->dev);
4680 }
4681
John Fastabendd4455162017-07-17 09:26:45 -07004682 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004683 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004684 case XDP_TX:
4685 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004686 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004687 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004688 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004689 if (metalen)
4690 skb_metadata_set(skb, metalen);
4691 break;
John Fastabendd4455162017-07-17 09:26:45 -07004692 default:
4693 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004694 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004695 case XDP_ABORTED:
4696 trace_xdp_exception(skb->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004697 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004698 case XDP_DROP:
4699 do_drop:
4700 kfree_skb(skb);
4701 break;
4702 }
4703
4704 return act;
4705}
4706
4707/* When doing generic XDP we have to bypass the qdisc layer and the
4708 * network taps in order to match in-driver-XDP behavior.
4709 */
Jason Wang7c497472017-08-11 19:41:17 +08004710void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004711{
4712 struct net_device *dev = skb->dev;
4713 struct netdev_queue *txq;
4714 bool free_skb = true;
4715 int cpu, rc;
4716
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004717 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004718 cpu = smp_processor_id();
4719 HARD_TX_LOCK(dev, txq, cpu);
4720 if (!netif_xmit_stopped(txq)) {
4721 rc = netdev_start_xmit(skb, dev, txq, 0);
4722 if (dev_xmit_complete(rc))
4723 free_skb = false;
4724 }
4725 HARD_TX_UNLOCK(dev, txq);
4726 if (free_skb) {
4727 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4728 kfree_skb(skb);
4729 }
4730}
4731
Davidlohr Bueso02786472018-05-08 09:07:02 -07004732static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004733
Jason Wang7c497472017-08-11 19:41:17 +08004734int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004735{
John Fastabendd4455162017-07-17 09:26:45 -07004736 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004737 struct xdp_buff xdp;
4738 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004739 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004740
Björn Töpel02671e22018-05-02 13:01:30 +02004741 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004742 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004743 switch (act) {
4744 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004745 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004746 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004747 if (err)
4748 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004749 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004750 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004751 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004752 break;
4753 }
John Fastabendd4455162017-07-17 09:26:45 -07004754 return XDP_DROP;
4755 }
4756 }
4757 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004758out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004759 kfree_skb(skb);
4760 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004761}
Jason Wang7c497472017-08-11 19:41:17 +08004762EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004763
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004764static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004766 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767
Eric Dumazet588f0332011-11-15 04:12:55 +00004768 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769
Koki Sanagicf66ba52010-08-23 18:45:02 +09004770 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004771
Eric Dumazetdf334542010-03-24 19:13:54 +00004772#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004773 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004774 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004775 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776
Changli Gaocece1942010-08-07 20:35:43 -07004777 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004778 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004779
4780 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004781 if (cpu < 0)
4782 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004783
4784 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4785
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004786 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004787 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004788 } else
4789#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004790 {
4791 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004792
Tom Herbertfec5e652010-04-16 16:01:27 -07004793 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4794 put_cpu();
4795 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004796 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004798
4799/**
4800 * netif_rx - post buffer to the network code
4801 * @skb: buffer to post
4802 *
4803 * This function receives a packet from a device driver and queues it for
4804 * the upper (protocol) levels to process. It always succeeds. The buffer
4805 * may be dropped during processing for congestion control or by the
4806 * protocol layers.
4807 *
4808 * return values:
4809 * NET_RX_SUCCESS (no congestion)
4810 * NET_RX_DROP (packet was dropped)
4811 *
4812 */
4813
4814int netif_rx(struct sk_buff *skb)
4815{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004816 int ret;
4817
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004818 trace_netif_rx_entry(skb);
4819
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004820 ret = netif_rx_internal(skb);
4821 trace_netif_rx_exit(ret);
4822
4823 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004824}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004825EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
4827int netif_rx_ni(struct sk_buff *skb)
4828{
4829 int err;
4830
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004831 trace_netif_rx_ni_entry(skb);
4832
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004834 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835 if (local_softirq_pending())
4836 do_softirq();
4837 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004838 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839
4840 return err;
4841}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842EXPORT_SYMBOL(netif_rx_ni);
4843
Sebastian Andrzej Siewiorc11171a2020-09-29 22:25:12 +02004844int netif_rx_any_context(struct sk_buff *skb)
4845{
4846 /*
4847 * If invoked from contexts which do not invoke bottom half
4848 * processing either at return from interrupt or when softrqs are
4849 * reenabled, use netif_rx_ni() which invokes bottomhalf processing
4850 * directly.
4851 */
4852 if (in_interrupt())
4853 return netif_rx(skb);
4854 else
4855 return netif_rx_ni(skb);
4856}
4857EXPORT_SYMBOL(netif_rx_any_context);
4858
Emese Revfy0766f782016-06-20 20:42:34 +02004859static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004861 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
4863 if (sd->completion_queue) {
4864 struct sk_buff *clist;
4865
4866 local_irq_disable();
4867 clist = sd->completion_queue;
4868 sd->completion_queue = NULL;
4869 local_irq_enable();
4870
4871 while (clist) {
4872 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 clist = clist->next;
4875
Reshetova, Elena63354792017-06-30 13:07:58 +03004876 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004877 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4878 trace_consume_skb(skb);
4879 else
4880 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004881
4882 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4883 __kfree_skb(skb);
4884 else
4885 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004887
4888 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 }
4890
4891 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004892 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893
4894 local_irq_disable();
4895 head = sd->output_queue;
4896 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004897 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 local_irq_enable();
4899
4900 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004901 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004902 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004903
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 head = head->next_sched;
4905
John Fastabend6b3ba912017-12-07 09:54:25 -08004906 if (!(q->flags & TCQ_F_NOLOCK)) {
4907 root_lock = qdisc_lock(q);
4908 spin_lock(root_lock);
4909 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004910 /* We need to make sure head->next_sched is read
4911 * before clearing __QDISC_STATE_SCHED
4912 */
4913 smp_mb__before_atomic();
4914 clear_bit(__QDISC_STATE_SCHED, &q->state);
4915 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004916 if (root_lock)
4917 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918 }
4919 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004920
4921 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922}
4923
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004924#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004925/* This hook is defined here for ATM LANE */
4926int (*br_fdb_test_addr_hook)(struct net_device *dev,
4927 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004928EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004929#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004931static inline struct sk_buff *
4932sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004933 struct net_device *orig_dev, bool *another)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004934{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004935#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004936 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004937 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004938
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004939 /* If there's at least one ingress present somewhere (so
4940 * we get here via enabled static key), remaining devices
4941 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004942 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004943 */
Jiri Pirko46209402017-11-03 11:46:25 +01004944 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004945 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004946
Herbert Xuf697c3e2007-10-14 00:38:47 -07004947 if (*pt_prev) {
4948 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4949 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004950 }
4951
Florian Westphal33654952015-05-14 00:36:28 +02004952 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004953 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004954 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004955
Paul Blakey7d17c542020-02-16 12:01:22 +02004956 switch (tcf_classify_ingress(skb, miniq->block, miniq->filter_list,
4957 &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004958 case TC_ACT_OK:
4959 case TC_ACT_RECLASSIFY:
4960 skb->tc_index = TC_H_MIN(cl_res.classid);
4961 break;
4962 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004963 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004964 kfree_skb(skb);
4965 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004966 case TC_ACT_STOLEN:
4967 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004968 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004969 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004970 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004971 case TC_ACT_REDIRECT:
4972 /* skb_mac_header check was done by cls/act_bpf, so
4973 * we can safely push the L2 header back before
4974 * redirecting to another netdev
4975 */
4976 __skb_push(skb, skb->mac_len);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004977 if (skb_do_redirect(skb) == -EAGAIN) {
4978 __skb_pull(skb, skb->mac_len);
4979 *another = true;
4980 break;
4981 }
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004982 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01004983 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02004984 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004985 default:
4986 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004987 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004988#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004989 return skb;
4990}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004992/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004993 * netdev_is_rx_handler_busy - check if receive handler is registered
4994 * @dev: device to check
4995 *
4996 * Check if a receive handler is already registered for a given device.
4997 * Return true if there one.
4998 *
4999 * The caller must hold the rtnl_mutex.
5000 */
5001bool netdev_is_rx_handler_busy(struct net_device *dev)
5002{
5003 ASSERT_RTNL();
5004 return dev && rtnl_dereference(dev->rx_handler);
5005}
5006EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5007
5008/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005009 * netdev_rx_handler_register - register receive handler
5010 * @dev: device to register a handler for
5011 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00005012 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005013 *
Masanari Iidae2278672014-02-18 22:54:36 +09005014 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005015 * called from __netif_receive_skb. A negative errno code is returned
5016 * on a failure.
5017 *
5018 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005019 *
5020 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005021 */
5022int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00005023 rx_handler_func_t *rx_handler,
5024 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005025{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08005026 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005027 return -EBUSY;
5028
Paolo Abenif54262502018-03-09 10:39:24 +01005029 if (dev->priv_flags & IFF_NO_RX_HANDLER)
5030 return -EINVAL;
5031
Eric Dumazet00cfec32013-03-29 03:01:22 +00005032 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00005033 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005034 rcu_assign_pointer(dev->rx_handler, rx_handler);
5035
5036 return 0;
5037}
5038EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5039
5040/**
5041 * netdev_rx_handler_unregister - unregister receive handler
5042 * @dev: device to unregister a handler from
5043 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00005044 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005045 *
5046 * The caller must hold the rtnl_mutex.
5047 */
5048void netdev_rx_handler_unregister(struct net_device *dev)
5049{
5050
5051 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005052 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00005053 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5054 * section has a guarantee to see a non NULL rx_handler_data
5055 * as well.
5056 */
5057 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005058 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005059}
5060EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5061
Mel Gormanb4b9e352012-07-31 16:44:26 -07005062/*
5063 * Limit the use of PFMEMALLOC reserves to those protocols that implement
5064 * the special handling of PFMEMALLOC skbs.
5065 */
5066static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5067{
5068 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07005069 case htons(ETH_P_ARP):
5070 case htons(ETH_P_IP):
5071 case htons(ETH_P_IPV6):
5072 case htons(ETH_P_8021Q):
5073 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07005074 return true;
5075 default:
5076 return false;
5077 }
5078}
5079
Pablo Neirae687ad62015-05-13 18:19:38 +02005080static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5081 int *ret, struct net_device *orig_dev)
5082{
5083 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04005084 int ingress_retval;
5085
Pablo Neirae687ad62015-05-13 18:19:38 +02005086 if (*pt_prev) {
5087 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5088 *pt_prev = NULL;
5089 }
5090
Aaron Conole2c1e2702016-09-21 11:35:03 -04005091 rcu_read_lock();
5092 ingress_retval = nf_hook_ingress(skb);
5093 rcu_read_unlock();
5094 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02005095 }
5096 return 0;
5097}
Pablo Neirae687ad62015-05-13 18:19:38 +02005098
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005099static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
Edward Cree88eb1942018-07-02 16:13:56 +01005100 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101{
5102 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005103 rx_handler_func_t *rx_handler;
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005104 struct sk_buff *skb = *pskb;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07005105 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005106 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08005108 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109
Eric Dumazet588f0332011-11-15 04:12:55 +00005110 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07005111
Koki Sanagicf66ba52010-08-23 18:45:02 +09005112 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08005113
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07005114 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00005115
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07005116 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00005117 if (!skb_transport_header_was_set(skb))
5118 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00005119 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120
5121 pt_prev = NULL;
5122
David S. Miller63d8ea72011-02-28 10:48:59 -08005123another_round:
David S. Millerb6858172012-07-23 16:27:54 -07005124 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08005125
5126 __this_cpu_inc(softnet_data.processed);
5127
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005128 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5129 int ret2;
5130
5131 preempt_disable();
5132 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5133 preempt_enable();
5134
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005135 if (ret2 != XDP_PASS) {
5136 ret = NET_RX_DROP;
5137 goto out;
5138 }
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005139 skb_reset_mac_len(skb);
5140 }
5141
Patrick McHardy8ad227f2013-04-19 02:04:31 +00005142 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5143 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04005144 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005145 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005146 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005147 }
5148
Willem de Bruijne7246e12017-01-07 17:06:35 -05005149 if (skb_skip_tc_classify(skb))
5150 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151
David S. Miller9754e292013-02-14 15:57:38 -05005152 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07005153 goto skip_taps;
5154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08005156 if (pt_prev)
5157 ret = deliver_skb(skb, pt_prev, orig_dev);
5158 pt_prev = ptype;
5159 }
5160
5161 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5162 if (pt_prev)
5163 ret = deliver_skb(skb, pt_prev, orig_dev);
5164 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 }
5166
Mel Gormanb4b9e352012-07-31 16:44:26 -07005167skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02005168#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07005169 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005170 bool another = false;
5171
5172 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
5173 &another);
5174 if (another)
5175 goto another_round;
Daniel Borkmann45771392015-04-10 23:07:54 +02005176 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005177 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02005178
5179 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005180 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02005181 }
Pablo Neira1cf519002015-05-13 18:19:37 +02005182#endif
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01005183 skb_reset_redirect(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05005184skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05005185 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07005186 goto drop;
5187
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005188 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00005189 if (pt_prev) {
5190 ret = deliver_skb(skb, pt_prev, orig_dev);
5191 pt_prev = NULL;
5192 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005193 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00005194 goto another_round;
5195 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005196 goto out;
John Fastabend24257172011-10-10 09:16:41 +00005197 }
5198
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005199 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005200 if (rx_handler) {
5201 if (pt_prev) {
5202 ret = deliver_skb(skb, pt_prev, orig_dev);
5203 pt_prev = NULL;
5204 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005205 switch (rx_handler(&skb)) {
5206 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00005207 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005208 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005209 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08005210 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005211 case RX_HANDLER_EXACT:
5212 deliver_exact = true;
5213 case RX_HANDLER_PASS:
5214 break;
5215 default:
5216 BUG();
5217 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +03005220 if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005221check_vlan_id:
5222 if (skb_vlan_tag_get_id(skb)) {
5223 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5224 * find vlan device.
5225 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005226 skb->pkt_type = PACKET_OTHERHOST;
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005227 } else if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5228 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
5229 /* Outer header is 802.1P with vlan 0, inner header is
5230 * 802.1Q or 802.1AD and vlan_do_receive() above could
5231 * not find vlan dev for vlan id 0.
5232 */
5233 __vlan_hwaccel_clear_tag(skb);
5234 skb = skb_vlan_untag(skb);
5235 if (unlikely(!skb))
5236 goto out;
5237 if (vlan_do_receive(&skb))
5238 /* After stripping off 802.1P header with vlan 0
5239 * vlan dev is found for inner header.
5240 */
5241 goto another_round;
5242 else if (unlikely(!skb))
5243 goto out;
5244 else
5245 /* We have stripped outer 802.1P vlan 0 header.
5246 * But could not find vlan dev.
5247 * check again for vlan id to set OTHERHOST.
5248 */
5249 goto check_vlan_id;
5250 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005251 /* Note: we might in the future use prio bits
5252 * and set skb->priority like in vlan_do_receive()
5253 * For the time being, just ignore Priority Code Point
5254 */
Michał Mirosławb18175242018-11-09 00:18:02 +01005255 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005256 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005257
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08005259
5260 /* deliver only exact match when indicated */
5261 if (likely(!deliver_exact)) {
5262 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5263 &ptype_base[ntohs(type) &
5264 PTYPE_HASH_MASK]);
5265 }
5266
5267 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5268 &orig_dev->ptype_specific);
5269
5270 if (unlikely(skb->dev != orig_dev)) {
5271 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5272 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273 }
5274
5275 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04005276 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00005277 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01005278 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07005280drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05005281 if (!deliver_exact)
5282 atomic_long_inc(&skb->dev->rx_dropped);
5283 else
5284 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 kfree_skb(skb);
5286 /* Jamal, now you will not able to escape explaining
5287 * me how you were going to use this. :-)
5288 */
5289 ret = NET_RX_DROP;
5290 }
5291
Julian Anastasov2c17d272015-07-09 09:59:10 +03005292out:
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005293 /* The invariant here is that if *ppt_prev is not NULL
5294 * then skb should also be non-NULL.
5295 *
5296 * Apparently *ppt_prev assignment above holds this invariant due to
5297 * skb dereferencing near it.
5298 */
5299 *pskb = skb;
David S. Miller9754e292013-02-14 15:57:38 -05005300 return ret;
5301}
5302
Edward Cree88eb1942018-07-02 16:13:56 +01005303static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5304{
5305 struct net_device *orig_dev = skb->dev;
5306 struct packet_type *pt_prev = NULL;
5307 int ret;
5308
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005309 ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree88eb1942018-07-02 16:13:56 +01005310 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005311 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5312 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005313 return ret;
5314}
5315
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005316/**
5317 * netif_receive_skb_core - special purpose version of netif_receive_skb
5318 * @skb: buffer to process
5319 *
5320 * More direct receive version of netif_receive_skb(). It should
5321 * only be used by callers that have a need to skip RPS and Generic XDP.
Mauro Carvalho Chehab2de97802020-03-17 15:54:20 +01005322 * Caller must also take care of handling if ``(page_is_)pfmemalloc``.
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005323 *
5324 * This function may only be called from softirq context and interrupts
5325 * should be enabled.
5326 *
5327 * Return values (usually ignored):
5328 * NET_RX_SUCCESS: no congestion
5329 * NET_RX_DROP: packet was dropped
5330 */
5331int netif_receive_skb_core(struct sk_buff *skb)
5332{
5333 int ret;
5334
5335 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005336 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005337 rcu_read_unlock();
5338
5339 return ret;
5340}
5341EXPORT_SYMBOL(netif_receive_skb_core);
5342
Edward Cree88eb1942018-07-02 16:13:56 +01005343static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5344 struct packet_type *pt_prev,
5345 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005346{
5347 struct sk_buff *skb, *next;
5348
Edward Cree88eb1942018-07-02 16:13:56 +01005349 if (!pt_prev)
5350 return;
5351 if (list_empty(head))
5352 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005353 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005354 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5355 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005356 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005357 list_for_each_entry_safe(skb, next, head, list) {
5358 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005359 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005360 }
Edward Cree88eb1942018-07-02 16:13:56 +01005361}
5362
5363static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5364{
5365 /* Fast-path assumptions:
5366 * - There is no RX handler.
5367 * - Only one packet_type matches.
5368 * If either of these fails, we will end up doing some per-packet
5369 * processing in-line, then handling the 'last ptype' for the whole
5370 * sublist. This can't cause out-of-order delivery to any single ptype,
5371 * because the 'last ptype' must be constant across the sublist, and all
5372 * other ptypes are handled per-packet.
5373 */
5374 /* Current (common) ptype of sublist */
5375 struct packet_type *pt_curr = NULL;
5376 /* Current (common) orig_dev of sublist */
5377 struct net_device *od_curr = NULL;
5378 struct list_head sublist;
5379 struct sk_buff *skb, *next;
5380
Edward Cree9af86f932018-07-09 18:10:19 +01005381 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005382 list_for_each_entry_safe(skb, next, head, list) {
5383 struct net_device *orig_dev = skb->dev;
5384 struct packet_type *pt_prev = NULL;
5385
Edward Cree22f6bbb2018-12-04 17:37:57 +00005386 skb_list_del_init(skb);
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005387 __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree9af86f932018-07-09 18:10:19 +01005388 if (!pt_prev)
5389 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005390 if (pt_curr != pt_prev || od_curr != orig_dev) {
5391 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005392 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5393 /* start new sublist */
Edward Cree9af86f932018-07-09 18:10:19 +01005394 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005395 pt_curr = pt_prev;
5396 od_curr = orig_dev;
5397 }
Edward Cree9af86f932018-07-09 18:10:19 +01005398 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005399 }
5400
5401 /* dispatch final sublist */
Edward Cree9af86f932018-07-09 18:10:19 +01005402 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005403}
5404
David S. Miller9754e292013-02-14 15:57:38 -05005405static int __netif_receive_skb(struct sk_buff *skb)
5406{
5407 int ret;
5408
5409 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005410 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005411
5412 /*
5413 * PFMEMALLOC skbs are special, they should
5414 * - be delivered to SOCK_MEMALLOC sockets only
5415 * - stay away from userspace
5416 * - have bounded memory usage
5417 *
5418 * Use PF_MEMALLOC as this saves us from propagating the allocation
5419 * context down to all allocation sites.
5420 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005421 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005422 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005423 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005424 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005425 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 return ret;
5428}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005429
Edward Cree4ce00172018-07-02 16:13:40 +01005430static void __netif_receive_skb_list(struct list_head *head)
5431{
5432 unsigned long noreclaim_flag = 0;
5433 struct sk_buff *skb, *next;
5434 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5435
5436 list_for_each_entry_safe(skb, next, head, list) {
5437 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5438 struct list_head sublist;
5439
5440 /* Handle the previous sublist */
5441 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005442 if (!list_empty(&sublist))
5443 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005444 pfmemalloc = !pfmemalloc;
5445 /* See comments in __netif_receive_skb */
5446 if (pfmemalloc)
5447 noreclaim_flag = memalloc_noreclaim_save();
5448 else
5449 memalloc_noreclaim_restore(noreclaim_flag);
5450 }
5451 }
5452 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005453 if (!list_empty(head))
5454 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005455 /* Restore pflags */
5456 if (pfmemalloc)
5457 memalloc_noreclaim_restore(noreclaim_flag);
5458}
5459
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005460static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005461{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005462 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005463 struct bpf_prog *new = xdp->prog;
5464 int ret = 0;
5465
David Ahernfbee97f2020-05-29 16:07:13 -06005466 if (new) {
5467 u32 i;
5468
YiFei Zhu984fe942020-09-15 16:45:39 -07005469 mutex_lock(&new->aux->used_maps_mutex);
5470
David Ahernfbee97f2020-05-29 16:07:13 -06005471 /* generic XDP does not work with DEVMAPs that can
5472 * have a bpf_prog installed on an entry
5473 */
5474 for (i = 0; i < new->aux->used_map_cnt; i++) {
YiFei Zhu984fe942020-09-15 16:45:39 -07005475 if (dev_map_can_have_prog(new->aux->used_maps[i]) ||
5476 cpu_map_prog_allowed(new->aux->used_maps[i])) {
5477 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005478 return -EINVAL;
YiFei Zhu984fe942020-09-15 16:45:39 -07005479 }
David Ahernfbee97f2020-05-29 16:07:13 -06005480 }
YiFei Zhu984fe942020-09-15 16:45:39 -07005481
5482 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005483 }
5484
David S. Millerb5cdae32017-04-18 15:36:58 -04005485 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005486 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005487 rcu_assign_pointer(dev->xdp_prog, new);
5488 if (old)
5489 bpf_prog_put(old);
5490
5491 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005492 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005493 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005494 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005495 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005496 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005497 }
5498 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005499
David S. Millerb5cdae32017-04-18 15:36:58 -04005500 default:
5501 ret = -EINVAL;
5502 break;
5503 }
5504
5505 return ret;
5506}
5507
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005508static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005509{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005510 int ret;
5511
Eric Dumazet588f0332011-11-15 04:12:55 +00005512 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005513
Richard Cochranc1f19b52010-07-17 08:49:36 +00005514 if (skb_defer_rx_timestamp(skb))
5515 return NET_RX_SUCCESS;
5516
John Fastabendbbbe2112017-09-08 14:00:30 -07005517 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005518#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005519 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005520 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005521 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005522
Eric Dumazet3b098e22010-05-15 23:57:10 -07005523 if (cpu >= 0) {
5524 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5525 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005526 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005527 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005528 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005529#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005530 ret = __netif_receive_skb(skb);
5531 rcu_read_unlock();
5532 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005533}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005534
Edward Cree7da517a2018-07-02 16:13:24 +01005535static void netif_receive_skb_list_internal(struct list_head *head)
5536{
Edward Cree7da517a2018-07-02 16:13:24 +01005537 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005538 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005539
Edward Cree8c057ef2018-07-09 18:09:54 +01005540 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005541 list_for_each_entry_safe(skb, next, head, list) {
5542 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005543 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005544 if (!skb_defer_rx_timestamp(skb))
5545 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005546 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005547 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005548
Edward Cree7da517a2018-07-02 16:13:24 +01005549 rcu_read_lock();
5550#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005551 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005552 list_for_each_entry_safe(skb, next, head, list) {
5553 struct rps_dev_flow voidflow, *rflow = &voidflow;
5554 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5555
5556 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005557 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005558 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005559 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005560 }
5561 }
5562 }
5563#endif
5564 __netif_receive_skb_list(head);
5565 rcu_read_unlock();
5566}
5567
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005568/**
5569 * netif_receive_skb - process receive buffer from network
5570 * @skb: buffer to process
5571 *
5572 * netif_receive_skb() is the main receive data processing function.
5573 * It always succeeds. The buffer may be dropped during processing
5574 * for congestion control or by the protocol layers.
5575 *
5576 * This function may only be called from softirq context and interrupts
5577 * should be enabled.
5578 *
5579 * Return values (usually ignored):
5580 * NET_RX_SUCCESS: no congestion
5581 * NET_RX_DROP: packet was dropped
5582 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005583int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005584{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005585 int ret;
5586
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005587 trace_netif_receive_skb_entry(skb);
5588
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005589 ret = netif_receive_skb_internal(skb);
5590 trace_netif_receive_skb_exit(ret);
5591
5592 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005593}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005594EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Edward Creef6ad8c12018-07-02 16:12:45 +01005596/**
5597 * netif_receive_skb_list - process many receive buffers from network
5598 * @head: list of skbs to process.
5599 *
Edward Cree7da517a2018-07-02 16:13:24 +01005600 * Since return value of netif_receive_skb() is normally ignored, and
5601 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005602 *
5603 * This function may only be called from softirq context and interrupts
5604 * should be enabled.
5605 */
5606void netif_receive_skb_list(struct list_head *head)
5607{
Edward Cree7da517a2018-07-02 16:13:24 +01005608 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005609
Edward Creeb9f463d2018-07-02 16:14:44 +01005610 if (list_empty(head))
5611 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005612 if (trace_netif_receive_skb_list_entry_enabled()) {
5613 list_for_each_entry(skb, head, list)
5614 trace_netif_receive_skb_list_entry(skb);
5615 }
Edward Cree7da517a2018-07-02 16:13:24 +01005616 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005617 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005618}
5619EXPORT_SYMBOL(netif_receive_skb_list);
5620
Wei Yongjunce1e2a72020-07-13 22:23:44 +08005621static DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005622
5623/* Network device is going away, flush any packets still pending */
5624static void flush_backlog(struct work_struct *work)
5625{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005626 struct sk_buff *skb, *tmp;
5627 struct softnet_data *sd;
5628
5629 local_bh_disable();
5630 sd = this_cpu_ptr(&softnet_data);
5631
5632 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005633 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005634 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005635 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005636 __skb_unlink(skb, &sd->input_pkt_queue);
Subash Abhinov Kasiviswanathan7df5cb752020-07-23 11:31:48 -06005637 dev_kfree_skb_irq(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005638 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005639 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005640 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005641 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005642 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005643
5644 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005645 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005646 __skb_unlink(skb, &sd->process_queue);
5647 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005648 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005649 }
5650 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005651 local_bh_enable();
5652}
5653
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005654static bool flush_required(int cpu)
5655{
5656#if IS_ENABLED(CONFIG_RPS)
5657 struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5658 bool do_flush;
5659
5660 local_irq_disable();
5661 rps_lock(sd);
5662
5663 /* as insertion into process_queue happens with the rps lock held,
5664 * process_queue access may race only with dequeue
5665 */
5666 do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
5667 !skb_queue_empty_lockless(&sd->process_queue);
5668 rps_unlock(sd);
5669 local_irq_enable();
5670
5671 return do_flush;
5672#endif
5673 /* without RPS we can't safely check input_pkt_queue: during a
5674 * concurrent remote skb_queue_splice() we can detect as empty both
5675 * input_pkt_queue and process_queue even if the latter could end-up
5676 * containing a lot of packets.
5677 */
5678 return true;
5679}
5680
Eric Dumazet41852492016-08-26 12:50:39 -07005681static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005682{
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005683 static cpumask_t flush_cpus;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005684 unsigned int cpu;
5685
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005686 /* since we are under rtnl lock protection we can use static data
5687 * for the cpumask and avoid allocating on stack the possibly
5688 * large mask
5689 */
5690 ASSERT_RTNL();
5691
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005692 get_online_cpus();
5693
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005694 cpumask_clear(&flush_cpus);
5695 for_each_online_cpu(cpu) {
5696 if (flush_required(cpu)) {
5697 queue_work_on(cpu, system_highpri_wq,
5698 per_cpu_ptr(&flush_works, cpu));
5699 cpumask_set_cpu(cpu, &flush_cpus);
5700 }
5701 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005702
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005703 /* we can have in flight packet[s] on the cpus we are not flushing,
5704 * synchronize_net() in rollback_registered_many() will take care of
5705 * them
5706 */
5707 for_each_cpu(cpu, &flush_cpus)
Eric Dumazet41852492016-08-26 12:50:39 -07005708 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005709
5710 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005711}
5712
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005713/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5714static void gro_normal_list(struct napi_struct *napi)
5715{
5716 if (!napi->rx_count)
5717 return;
5718 netif_receive_skb_list_internal(&napi->rx_list);
5719 INIT_LIST_HEAD(&napi->rx_list);
5720 napi->rx_count = 0;
5721}
5722
5723/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5724 * pass the whole batch up to the stack.
5725 */
5726static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb)
5727{
5728 list_add_tail(&skb->list, &napi->rx_list);
5729 if (++napi->rx_count >= gro_normal_batch)
5730 gro_normal_list(napi);
5731}
5732
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005733INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
5734INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005735static int napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005736{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005737 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005738 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005739 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005740 int err = -ENOENT;
5741
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005742 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5743
Herbert Xufc59f9a2009-04-14 15:11:06 -07005744 if (NAPI_GRO_CB(skb)->count == 1) {
5745 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005746 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005747 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005748
5749 rcu_read_lock();
5750 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005751 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005752 continue;
5753
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005754 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5755 ipv6_gro_complete, inet_gro_complete,
5756 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005757 break;
5758 }
5759 rcu_read_unlock();
5760
5761 if (err) {
5762 WARN_ON(&ptype->list == head);
5763 kfree_skb(skb);
5764 return NET_RX_SUCCESS;
5765 }
5766
5767out:
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005768 gro_normal_one(napi, skb);
5769 return NET_RX_SUCCESS;
Herbert Xud565b0a2008-12-15 23:38:52 -08005770}
5771
Li RongQing6312fe72018-07-05 14:34:32 +08005772static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005773 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005774{
Li RongQing6312fe72018-07-05 14:34:32 +08005775 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005776 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005777
David Miller07d78362018-06-24 14:14:02 +09005778 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005779 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5780 return;
David S. Miller992cba72018-07-31 15:27:56 -07005781 skb_list_del_init(skb);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005782 napi_gro_complete(napi, skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005783 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005784 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005785
5786 if (!napi->gro_hash[index].count)
5787 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005788}
David Miller07d78362018-06-24 14:14:02 +09005789
Li RongQing6312fe72018-07-05 14:34:32 +08005790/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005791 * youngest packets at the head of it.
5792 * Complete skbs in reverse order to reduce latencies.
5793 */
5794void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5795{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005796 unsigned long bitmask = napi->gro_bitmask;
5797 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005798
Eric Dumazet42519ed2018-11-21 11:39:28 -08005799 while ((i = ffs(bitmask)) != 0) {
5800 bitmask >>= i;
5801 base += i;
5802 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005803 }
David Miller07d78362018-06-24 14:14:02 +09005804}
Eric Dumazet86cac582010-08-31 18:25:32 +00005805EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005806
David Miller07d78362018-06-24 14:14:02 +09005807static struct list_head *gro_list_prepare(struct napi_struct *napi,
5808 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005809{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005810 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005811 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005812 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005813 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005814
Li RongQing6312fe72018-07-05 14:34:32 +08005815 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005816 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005817 unsigned long diffs;
5818
Tom Herbert0b4cec82014-01-15 08:58:06 -08005819 NAPI_GRO_CB(p)->flush = 0;
5820
5821 if (hash != skb_get_hash_raw(p)) {
5822 NAPI_GRO_CB(p)->same_flow = 0;
5823 continue;
5824 }
5825
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005826 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005827 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5828 if (skb_vlan_tag_present(p))
Tonghao Zhangfc5141c2019-11-22 20:38:01 +08005829 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
Jesse Grossce87fc62016-01-20 17:59:49 -08005830 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005831 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005832 if (maclen == ETH_HLEN)
5833 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005834 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005835 else if (!diffs)
5836 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005837 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005838 maclen);
5839 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005840 }
David Miller07d78362018-06-24 14:14:02 +09005841
5842 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005843}
5844
Jerry Chu299603e82013-12-11 20:53:45 -08005845static void skb_gro_reset_offset(struct sk_buff *skb)
5846{
5847 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5848 const skb_frag_t *frag0 = &pinfo->frags[0];
5849
5850 NAPI_GRO_CB(skb)->data_offset = 0;
5851 NAPI_GRO_CB(skb)->frag0 = NULL;
5852 NAPI_GRO_CB(skb)->frag0_len = 0;
5853
Alexander Lobakin8aef9982019-11-15 12:11:35 +03005854 if (!skb_headlen(skb) && pinfo->nr_frags &&
Jerry Chu299603e82013-12-11 20:53:45 -08005855 !PageHighMem(skb_frag_page(frag0))) {
5856 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005857 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5858 skb_frag_size(frag0),
5859 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005860 }
5861}
5862
Eric Dumazeta50e2332014-03-29 21:28:21 -07005863static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5864{
5865 struct skb_shared_info *pinfo = skb_shinfo(skb);
5866
5867 BUG_ON(skb->end - skb->tail < grow);
5868
5869 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5870
5871 skb->data_len -= grow;
5872 skb->tail += grow;
5873
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07005874 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005875 skb_frag_size_sub(&pinfo->frags[0], grow);
5876
5877 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5878 skb_frag_unref(skb, 0);
5879 memmove(pinfo->frags, pinfo->frags + 1,
5880 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5881 }
5882}
5883
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005884static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005885{
Li RongQing6312fe72018-07-05 14:34:32 +08005886 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005887
Li RongQing6312fe72018-07-05 14:34:32 +08005888 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005889
Li RongQing6312fe72018-07-05 14:34:32 +08005890 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005891 * impossible.
5892 */
5893 if (WARN_ON_ONCE(!oldest))
5894 return;
5895
Li RongQingd9f37d02018-07-13 14:41:36 +08005896 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5897 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005898 */
David S. Millerece23712018-10-28 10:35:12 -07005899 skb_list_del_init(oldest);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005900 napi_gro_complete(napi, oldest);
David Miller07d78362018-06-24 14:14:02 +09005901}
5902
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005903INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
5904 struct sk_buff *));
5905INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
5906 struct sk_buff *));
Rami Rosenbb728822012-11-28 21:55:25 +00005907static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005908{
Li RongQing6312fe72018-07-05 14:34:32 +08005909 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005910 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005911 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005912 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005913 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005914 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005915 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005916 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005917 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005918
David S. Millerb5cdae32017-04-18 15:36:58 -04005919 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005920 goto normal;
5921
David Miller07d78362018-06-24 14:14:02 +09005922 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005923
Herbert Xud565b0a2008-12-15 23:38:52 -08005924 rcu_read_lock();
5925 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005926 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005927 continue;
5928
Herbert Xu86911732009-01-29 14:19:50 +00005929 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005930 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005931 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005932 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005933 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005934 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005935 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005936 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005937 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005938 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005939
Tom Herbert662880f2014-08-27 21:26:56 -07005940 /* Setup for GRO checksum validation */
5941 switch (skb->ip_summed) {
5942 case CHECKSUM_COMPLETE:
5943 NAPI_GRO_CB(skb)->csum = skb->csum;
5944 NAPI_GRO_CB(skb)->csum_valid = 1;
5945 NAPI_GRO_CB(skb)->csum_cnt = 0;
5946 break;
5947 case CHECKSUM_UNNECESSARY:
5948 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5949 NAPI_GRO_CB(skb)->csum_valid = 0;
5950 break;
5951 default:
5952 NAPI_GRO_CB(skb)->csum_cnt = 0;
5953 NAPI_GRO_CB(skb)->csum_valid = 0;
5954 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005955
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005956 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
5957 ipv6_gro_receive, inet_gro_receive,
5958 gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005959 break;
5960 }
5961 rcu_read_unlock();
5962
5963 if (&ptype->list == head)
5964 goto normal;
5965
Masahiro Yamada45586c72020-02-03 17:37:45 -08005966 if (PTR_ERR(pp) == -EINPROGRESS) {
Steffen Klassert25393d32017-02-15 09:39:44 +01005967 ret = GRO_CONSUMED;
5968 goto ok;
5969 }
5970
Herbert Xu0da2afd52008-12-26 14:57:42 -08005971 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005972 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005973
Herbert Xud565b0a2008-12-15 23:38:52 -08005974 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07005975 skb_list_del_init(pp);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005976 napi_gro_complete(napi, pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005977 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005978 }
5979
Herbert Xu0da2afd52008-12-26 14:57:42 -08005980 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005981 goto ok;
5982
Eric Dumazet600adc12014-01-09 14:12:19 -08005983 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005984 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005985
Li RongQing6312fe72018-07-05 14:34:32 +08005986 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005987 gro_flush_oldest(napi, gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005988 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005989 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005990 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005991 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005992 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005993 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005994 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005995 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005996 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08005997
Herbert Xuad0f9902009-02-01 01:24:55 -08005998pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07005999 grow = skb_gro_offset(skb) - skb_headlen(skb);
6000 if (grow > 0)
6001 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08006002ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08006003 if (napi->gro_hash[hash].count) {
6004 if (!test_bit(hash, &napi->gro_bitmask))
6005 __set_bit(hash, &napi->gro_bitmask);
6006 } else if (test_bit(hash, &napi->gro_bitmask)) {
6007 __clear_bit(hash, &napi->gro_bitmask);
6008 }
6009
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006010 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006011
6012normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08006013 ret = GRO_NORMAL;
6014 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08006015}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006016
Jerry Chubf5a7552014-01-07 10:23:19 -08006017struct packet_offload *gro_find_receive_by_type(__be16 type)
6018{
6019 struct list_head *offload_head = &offload_base;
6020 struct packet_offload *ptype;
6021
6022 list_for_each_entry_rcu(ptype, offload_head, list) {
6023 if (ptype->type != type || !ptype->callbacks.gro_receive)
6024 continue;
6025 return ptype;
6026 }
6027 return NULL;
6028}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006029EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08006030
6031struct packet_offload *gro_find_complete_by_type(__be16 type)
6032{
6033 struct list_head *offload_head = &offload_base;
6034 struct packet_offload *ptype;
6035
6036 list_for_each_entry_rcu(ptype, offload_head, list) {
6037 if (ptype->type != type || !ptype->callbacks.gro_complete)
6038 continue;
6039 return ptype;
6040 }
6041 return NULL;
6042}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006043EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006044
Michal Kubečeke44699d2017-06-29 11:13:36 +02006045static void napi_skb_free_stolen_head(struct sk_buff *skb)
6046{
6047 skb_dst_drop(skb);
Florian Westphal174e2382019-09-26 20:37:05 +02006048 skb_ext_put(skb);
Michal Kubečeke44699d2017-06-29 11:13:36 +02006049 kmem_cache_free(skbuff_head_cache, skb);
6050}
6051
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006052static gro_result_t napi_skb_finish(struct napi_struct *napi,
6053 struct sk_buff *skb,
6054 gro_result_t ret)
Herbert Xu5d38a072009-01-04 16:13:40 -08006055{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006056 switch (ret) {
6057 case GRO_NORMAL:
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006058 gro_normal_one(napi, skb);
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006059 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006060
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006061 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08006062 kfree_skb(skb);
6063 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006064
Eric Dumazetdaa86542012-04-19 07:07:40 +00006065 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02006066 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6067 napi_skb_free_stolen_head(skb);
6068 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00006069 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00006070 break;
6071
Ben Hutchings5b252f02009-10-29 07:17:09 +00006072 case GRO_HELD:
6073 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006074 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006075 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006076 }
6077
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006078 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006079}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006080
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006081gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006082{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006083 gro_result_t ret;
6084
Eric Dumazet93f93a42015-11-18 06:30:59 -08006085 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006086 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00006087
Eric Dumazeta50e2332014-03-29 21:28:21 -07006088 skb_gro_reset_offset(skb);
6089
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006090 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006091 trace_napi_gro_receive_exit(ret);
6092
6093 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006094}
6095EXPORT_SYMBOL(napi_gro_receive);
6096
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00006097static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006098{
Eric Dumazet93a35f52014-10-23 06:30:30 -07006099 if (unlikely(skb->pfmemalloc)) {
6100 consume_skb(skb);
6101 return;
6102 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006103 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00006104 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
6105 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01006106 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08006107 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08006108 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08006109
6110 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
6111 skb->pkt_type = PACKET_HOST;
6112
Jerry Chuc3caf112014-07-14 15:54:46 -07006113 skb->encapsulation = 0;
6114 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07006115 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Florian Westphal174e2382019-09-26 20:37:05 +02006116 skb_ext_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006117
6118 napi->skb = skb;
6119}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006120
Herbert Xu76620aa2009-04-16 02:02:07 -07006121struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08006122{
Herbert Xu5d38a072009-01-04 16:13:40 -08006123 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08006124
6125 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08006126 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08006127 if (skb) {
6128 napi->skb = skb;
6129 skb_mark_napi_id(skb, napi);
6130 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006131 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006132 return skb;
6133}
Herbert Xu76620aa2009-04-16 02:02:07 -07006134EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006135
Eric Dumazeta50e2332014-03-29 21:28:21 -07006136static gro_result_t napi_frags_finish(struct napi_struct *napi,
6137 struct sk_buff *skb,
6138 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006139{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006140 switch (ret) {
6141 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006142 case GRO_HELD:
6143 __skb_push(skb, ETH_HLEN);
6144 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01006145 if (ret == GRO_NORMAL)
6146 gro_normal_one(napi, skb);
Herbert Xu86911732009-01-29 14:19:50 +00006147 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006148
6149 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006150 napi_reuse_skb(napi, skb);
6151 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006152
Michal Kubečeke44699d2017-06-29 11:13:36 +02006153 case GRO_MERGED_FREE:
6154 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6155 napi_skb_free_stolen_head(skb);
6156 else
6157 napi_reuse_skb(napi, skb);
6158 break;
6159
Ben Hutchings5b252f02009-10-29 07:17:09 +00006160 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006161 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006162 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006163 }
6164
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006165 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006166}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006167
Eric Dumazeta50e2332014-03-29 21:28:21 -07006168/* Upper GRO stack assumes network header starts at gro_offset=0
6169 * Drivers could call both napi_gro_frags() and napi_gro_receive()
6170 * We copy ethernet header into skb->data to have a common layout.
6171 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00006172static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006173{
Herbert Xu76620aa2009-04-16 02:02:07 -07006174 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006175 const struct ethhdr *eth;
6176 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07006177
6178 napi->skb = NULL;
6179
Eric Dumazeta50e2332014-03-29 21:28:21 -07006180 skb_reset_mac_header(skb);
6181 skb_gro_reset_offset(skb);
6182
Eric Dumazeta50e2332014-03-29 21:28:21 -07006183 if (unlikely(skb_gro_header_hard(skb, hlen))) {
6184 eth = skb_gro_header_slow(skb, hlen, 0);
6185 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04006186 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
6187 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006188 napi_reuse_skb(napi, skb);
6189 return NULL;
6190 }
6191 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07006192 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006193 gro_pull_from_frag0(skb, hlen);
6194 NAPI_GRO_CB(skb)->frag0 += hlen;
6195 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07006196 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07006197 __skb_pull(skb, hlen);
6198
6199 /*
6200 * This works because the only protocols we care about don't require
6201 * special handling.
6202 * We'll fix it up properly in napi_frags_finish()
6203 */
6204 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07006205
Herbert Xu76620aa2009-04-16 02:02:07 -07006206 return skb;
6207}
Herbert Xu76620aa2009-04-16 02:02:07 -07006208
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006209gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07006210{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006211 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07006212 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006213
6214 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006215 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08006216
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006217 trace_napi_gro_frags_entry(skb);
6218
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006219 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6220 trace_napi_gro_frags_exit(ret);
6221
6222 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08006223}
6224EXPORT_SYMBOL(napi_gro_frags);
6225
Tom Herbert573e8fc2014-08-22 13:33:47 -07006226/* Compute the checksum from gro_offset and return the folded value
6227 * after adding in any pseudo checksum.
6228 */
6229__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6230{
6231 __wsum wsum;
6232 __sum16 sum;
6233
6234 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6235
6236 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6237 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08006238 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07006239 if (likely(!sum)) {
6240 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6241 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08006242 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07006243 }
6244
6245 NAPI_GRO_CB(skb)->csum = wsum;
6246 NAPI_GRO_CB(skb)->csum_valid = 1;
6247
6248 return sum;
6249}
6250EXPORT_SYMBOL(__skb_gro_checksum_complete);
6251
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306252static void net_rps_send_ipi(struct softnet_data *remsd)
6253{
6254#ifdef CONFIG_RPS
6255 while (remsd) {
6256 struct softnet_data *next = remsd->rps_ipi_next;
6257
6258 if (cpu_online(remsd->cpu))
6259 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6260 remsd = next;
6261 }
6262#endif
6263}
6264
Eric Dumazete326bed2010-04-22 00:22:45 -07006265/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08006266 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07006267 * Note: called with local irq disabled, but exits with local irq enabled.
6268 */
6269static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6270{
6271#ifdef CONFIG_RPS
6272 struct softnet_data *remsd = sd->rps_ipi_list;
6273
6274 if (remsd) {
6275 sd->rps_ipi_list = NULL;
6276
6277 local_irq_enable();
6278
6279 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306280 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07006281 } else
6282#endif
6283 local_irq_enable();
6284}
6285
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006286static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6287{
6288#ifdef CONFIG_RPS
6289 return sd->rps_ipi_list != NULL;
6290#else
6291 return false;
6292#endif
6293}
6294
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006295static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006297 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006298 bool again = true;
6299 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300
Eric Dumazete326bed2010-04-22 00:22:45 -07006301 /* Check if we have pending ipi, its better to send them now,
6302 * not waiting net_rx_action() end.
6303 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006304 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07006305 local_irq_disable();
6306 net_rps_action_and_irq_enable(sd);
6307 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006308
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01006309 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006310 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312
Changli Gao6e7676c2010-04-27 15:07:33 -07006313 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03006314 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07006315 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03006316 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00006317 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006318 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00006319 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006320
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006322
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006323 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006324 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07006325 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006326 /*
6327 * Inline a custom version of __napi_complete().
6328 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07006329 * and NAPI_STATE_SCHED is the only possible flag set
6330 * on backlog.
6331 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006332 * and we dont need an smp_mb() memory barrier.
6333 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006334 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006335 again = false;
6336 } else {
6337 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6338 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07006339 }
6340 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006341 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006344 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345}
6346
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006347/**
6348 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006349 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006350 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006351 * The entry's receive function will be scheduled to run.
6352 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006353 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08006354void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006355{
6356 unsigned long flags;
6357
6358 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05006359 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006360 local_irq_restore(flags);
6361}
6362EXPORT_SYMBOL(__napi_schedule);
6363
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006364/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006365 * napi_schedule_prep - check if napi can be scheduled
6366 * @n: napi context
6367 *
6368 * Test if NAPI routine is already running, and if not mark
Jonathan Neuschäferee1a4c82020-09-05 20:32:18 +02006369 * it as running. This is used as a condition variable to
Eric Dumazet39e6c822017-02-28 10:34:50 -08006370 * insure only one NAPI poll instance runs. We also make
6371 * sure there is no pending NAPI disable.
6372 */
6373bool napi_schedule_prep(struct napi_struct *n)
6374{
6375 unsigned long val, new;
6376
6377 do {
6378 val = READ_ONCE(n->state);
6379 if (unlikely(val & NAPIF_STATE_DISABLE))
6380 return false;
6381 new = val | NAPIF_STATE_SCHED;
6382
6383 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6384 * This was suggested by Alexander Duyck, as compiler
6385 * emits better code than :
6386 * if (val & NAPIF_STATE_SCHED)
6387 * new |= NAPIF_STATE_MISSED;
6388 */
6389 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6390 NAPIF_STATE_MISSED;
6391 } while (cmpxchg(&n->state, val, new) != val);
6392
6393 return !(val & NAPIF_STATE_SCHED);
6394}
6395EXPORT_SYMBOL(napi_schedule_prep);
6396
6397/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006398 * __napi_schedule_irqoff - schedule for receive
6399 * @n: entry to schedule
6400 *
6401 * Variant of __napi_schedule() assuming hard irqs are masked
6402 */
6403void __napi_schedule_irqoff(struct napi_struct *n)
6404{
6405 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6406}
6407EXPORT_SYMBOL(__napi_schedule_irqoff);
6408
Eric Dumazet364b6052016-11-15 10:15:13 -08006409bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006410{
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006411 unsigned long flags, val, new, timeout = 0;
6412 bool ret = true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006413
6414 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006415 * 1) Don't let napi dequeue from the cpu poll list
6416 * just in case its running on a different cpu.
6417 * 2) If we are busy polling, do nothing here, we have
6418 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006419 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006420 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6421 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006422 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006423
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006424 if (work_done) {
6425 if (n->gro_bitmask)
Eric Dumazet7e417a62020-04-22 09:13:28 -07006426 timeout = READ_ONCE(n->dev->gro_flush_timeout);
6427 n->defer_hard_irqs_count = READ_ONCE(n->dev->napi_defer_hard_irqs);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006428 }
6429 if (n->defer_hard_irqs_count > 0) {
6430 n->defer_hard_irqs_count--;
Eric Dumazet7e417a62020-04-22 09:13:28 -07006431 timeout = READ_ONCE(n->dev->gro_flush_timeout);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006432 if (timeout)
6433 ret = false;
6434 }
6435 if (n->gro_bitmask) {
Paolo Abeni605108a2018-11-21 18:21:35 +01006436 /* When the NAPI instance uses a timeout and keeps postponing
6437 * it, we need to bound somehow the time packets are kept in
6438 * the GRO layer
6439 */
6440 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006441 }
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006442
6443 gro_normal_list(n);
6444
Eric Dumazet02c16022017-02-04 15:25:02 -08006445 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006446 /* If n->poll_list is not empty, we need to mask irqs */
6447 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006448 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006449 local_irq_restore(flags);
6450 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006451
6452 do {
6453 val = READ_ONCE(n->state);
6454
6455 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6456
6457 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
6458
6459 /* If STATE_MISSED was set, leave STATE_SCHED set,
6460 * because we will call napi->poll() one more time.
6461 * This C code was suggested by Alexander Duyck to help gcc.
6462 */
6463 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6464 NAPIF_STATE_SCHED;
6465 } while (cmpxchg(&n->state, val, new) != val);
6466
6467 if (unlikely(val & NAPIF_STATE_MISSED)) {
6468 __napi_schedule(n);
6469 return false;
6470 }
6471
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006472 if (timeout)
6473 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6474 HRTIMER_MODE_REL_PINNED);
6475 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006476}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006477EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006478
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006479/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006480static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006481{
6482 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6483 struct napi_struct *napi;
6484
6485 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6486 if (napi->napi_id == napi_id)
6487 return napi;
6488
6489 return NULL;
6490}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006491
6492#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006493
Eric Dumazetce6aea92015-11-18 06:30:54 -08006494#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08006495
6496static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
6497{
6498 int rc;
6499
Eric Dumazet39e6c822017-02-28 10:34:50 -08006500 /* Busy polling means there is a high chance device driver hard irq
6501 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6502 * set in napi_schedule_prep().
6503 * Since we are about to call napi->poll() once more, we can safely
6504 * clear NAPI_STATE_MISSED.
6505 *
6506 * Note: x86 could use a single "lock and ..." instruction
6507 * to perform these two clear_bit()
6508 */
6509 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006510 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6511
6512 local_bh_disable();
6513
6514 /* All we really want here is to re-enable device interrupts.
6515 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6516 */
6517 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Edward Cree323ebb62019-08-06 14:53:55 +01006518 /* We can't gro_normal_list() here, because napi->poll() might have
6519 * rearmed the napi (napi_complete_done()) in which case it could
6520 * already be running on another CPU.
6521 */
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02006522 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006523 netpoll_poll_unlock(have_poll_lock);
Edward Cree323ebb62019-08-06 14:53:55 +01006524 if (rc == BUSY_POLL_BUDGET) {
6525 /* As the whole budget was spent, we still own the napi so can
6526 * safely handle the rx_list.
6527 */
6528 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006529 __napi_schedule(napi);
Edward Cree323ebb62019-08-06 14:53:55 +01006530 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006531 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006532}
6533
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006534void napi_busy_loop(unsigned int napi_id,
6535 bool (*loop_end)(void *, unsigned long),
6536 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006537{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006538 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006539 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006540 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006541 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006542
6543restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006544 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006545
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006546 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006547
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006548 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006549 if (!napi)
6550 goto out;
6551
Eric Dumazet217f6972016-11-15 10:15:11 -08006552 preempt_disable();
6553 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006554 int work = 0;
6555
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006556 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006557 if (!napi_poll) {
6558 unsigned long val = READ_ONCE(napi->state);
6559
6560 /* If multiple threads are competing for this napi,
6561 * we avoid dirtying napi->state as much as we can.
6562 */
6563 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6564 NAPIF_STATE_IN_BUSY_POLL))
6565 goto count;
6566 if (cmpxchg(&napi->state, val,
6567 val | NAPIF_STATE_IN_BUSY_POLL |
6568 NAPIF_STATE_SCHED) != val)
6569 goto count;
6570 have_poll_lock = netpoll_poll_lock(napi);
6571 napi_poll = napi->poll;
6572 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006573 work = napi_poll(napi, BUSY_POLL_BUDGET);
6574 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Edward Cree323ebb62019-08-06 14:53:55 +01006575 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006576count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006577 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006578 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006579 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006580 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006581
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006582 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006583 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006584
Eric Dumazet217f6972016-11-15 10:15:11 -08006585 if (unlikely(need_resched())) {
6586 if (napi_poll)
6587 busy_poll_stop(napi, have_poll_lock);
6588 preempt_enable();
6589 rcu_read_unlock();
6590 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006591 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006592 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006593 goto restart;
6594 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006595 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006596 }
6597 if (napi_poll)
6598 busy_poll_stop(napi, have_poll_lock);
6599 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006600out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006601 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006602}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006603EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006604
6605#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006606
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006607static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006608{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006609 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006610 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006611
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006612 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006613
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006614 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006615 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006616 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6617 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006618 } while (napi_by_id(napi_gen_id));
6619 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006620
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006621 hlist_add_head_rcu(&napi->napi_hash_node,
6622 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006623
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006624 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006625}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006626
6627/* Warning : caller is responsible to make sure rcu grace period
6628 * is respected before freeing memory containing @napi
6629 */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006630static void napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006631{
6632 spin_lock(&napi_hash_lock);
6633
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006634 hlist_del_init_rcu(&napi->napi_hash_node);
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006635
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006636 spin_unlock(&napi_hash_lock);
6637}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006638
Eric Dumazet3b47d302014-11-06 21:09:44 -08006639static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6640{
6641 struct napi_struct *napi;
6642
6643 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006644
6645 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6646 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6647 */
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006648 if (!napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006649 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6650 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006651
6652 return HRTIMER_NORESTART;
6653}
6654
David S. Miller7c4ec742018-07-20 23:37:55 -07006655static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006656{
David Miller07d78362018-06-24 14:14:02 +09006657 int i;
6658
Li RongQing6312fe72018-07-05 14:34:32 +08006659 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6660 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6661 napi->gro_hash[i].count = 0;
6662 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006663 napi->gro_bitmask = 0;
6664}
6665
6666void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6667 int (*poll)(struct napi_struct *, int), int weight)
6668{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006669 if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
6670 return;
6671
David S. Miller7c4ec742018-07-20 23:37:55 -07006672 INIT_LIST_HEAD(&napi->poll_list);
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006673 INIT_HLIST_NODE(&napi->napi_hash_node);
David S. Miller7c4ec742018-07-20 23:37:55 -07006674 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6675 napi->timer.function = napi_watchdog;
6676 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006677 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006678 INIT_LIST_HEAD(&napi->rx_list);
6679 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006680 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006681 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006682 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6683 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006684 napi->weight = weight;
Herbert Xud565b0a2008-12-15 23:38:52 -08006685 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006686#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006687 napi->poll_owner = -1;
6688#endif
6689 set_bit(NAPI_STATE_SCHED, &napi->state);
Jakub Kicinski96e97bc2020-08-26 12:40:06 -07006690 set_bit(NAPI_STATE_NPSVC, &napi->state);
6691 list_add_rcu(&napi->dev_list, &dev->napi_list);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006692 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006693}
6694EXPORT_SYMBOL(netif_napi_add);
6695
Eric Dumazet3b47d302014-11-06 21:09:44 -08006696void napi_disable(struct napi_struct *n)
6697{
6698 might_sleep();
6699 set_bit(NAPI_STATE_DISABLE, &n->state);
6700
6701 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6702 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006703 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6704 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006705
6706 hrtimer_cancel(&n->timer);
6707
6708 clear_bit(NAPI_STATE_DISABLE, &n->state);
6709}
6710EXPORT_SYMBOL(napi_disable);
6711
David Miller07d78362018-06-24 14:14:02 +09006712static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006713{
David Miller07d78362018-06-24 14:14:02 +09006714 int i;
David Millerd4546c22018-06-24 14:13:49 +09006715
David Miller07d78362018-06-24 14:14:02 +09006716 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6717 struct sk_buff *skb, *n;
6718
Li RongQing6312fe72018-07-05 14:34:32 +08006719 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006720 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006721 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006722 }
David Millerd4546c22018-06-24 14:13:49 +09006723}
6724
Eric Dumazet93d05d42015-11-18 06:31:03 -08006725/* Must be called in process context */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006726void __netif_napi_del(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006727{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006728 if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
6729 return;
6730
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006731 napi_hash_del(napi);
Jakub Kicinski5251ef82020-09-09 10:37:53 -07006732 list_del_rcu(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006733 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006734
David Miller07d78362018-06-24 14:14:02 +09006735 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006736 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006737}
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006738EXPORT_SYMBOL(__netif_napi_del);
Herbert Xud565b0a2008-12-15 23:38:52 -08006739
Herbert Xu726ce702014-12-21 07:16:21 +11006740static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6741{
6742 void *have;
6743 int work, weight;
6744
6745 list_del_init(&n->poll_list);
6746
6747 have = netpoll_poll_lock(n);
6748
6749 weight = n->weight;
6750
6751 /* This NAPI_STATE_SCHED test is for avoiding a race
6752 * with netpoll's poll_napi(). Only the entity which
6753 * obtains the lock and sees NAPI_STATE_SCHED set will
6754 * actually make the ->poll() call. Therefore we avoid
6755 * accidentally calling ->poll() when NAPI is not scheduled.
6756 */
6757 work = 0;
6758 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6759 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006760 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006761 }
6762
Eric Dumazet427d5832020-06-17 09:40:51 -07006763 if (unlikely(work > weight))
6764 pr_err_once("NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
6765 n->poll, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006766
6767 if (likely(work < weight))
6768 goto out_unlock;
6769
6770 /* Drivers must not modify the NAPI state if they
6771 * consume the entire weight. In such cases this code
6772 * still "owns" the NAPI instance and therefore can
6773 * move the instance around on the list at-will.
6774 */
6775 if (unlikely(napi_disable_pending(n))) {
6776 napi_complete(n);
6777 goto out_unlock;
6778 }
6779
Li RongQingd9f37d02018-07-13 14:41:36 +08006780 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006781 /* flush too old packets
6782 * If HZ < 1000, flush all packets.
6783 */
6784 napi_gro_flush(n, HZ >= 1000);
6785 }
6786
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006787 gro_normal_list(n);
6788
Herbert Xu001ce542014-12-21 07:16:22 +11006789 /* Some drivers may have called napi_schedule
6790 * prior to exhausting their budget.
6791 */
6792 if (unlikely(!list_empty(&n->poll_list))) {
6793 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6794 n->dev ? n->dev->name : "backlog");
6795 goto out_unlock;
6796 }
6797
Herbert Xu726ce702014-12-21 07:16:21 +11006798 list_add_tail(&n->poll_list, repoll);
6799
6800out_unlock:
6801 netpoll_poll_unlock(have);
6802
6803 return work;
6804}
6805
Emese Revfy0766f782016-06-20 20:42:34 +02006806static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006808 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006809 unsigned long time_limit = jiffies +
6810 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006811 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006812 LIST_HEAD(list);
6813 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006814
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006816 list_splice_init(&sd->poll_list, &list);
6817 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006819 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006820 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006821
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006822 if (list_empty(&list)) {
6823 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006824 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006825 break;
6826 }
6827
Herbert Xu6bd373e2014-12-21 07:16:24 +11006828 n = list_first_entry(&list, struct napi_struct, poll_list);
6829 budget -= napi_poll(n, &repoll);
6830
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006831 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006832 * Allow this to run for 2 jiffies since which will allow
6833 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006834 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006835 if (unlikely(budget <= 0 ||
6836 time_after_eq(jiffies, time_limit))) {
6837 sd->time_squeeze++;
6838 break;
6839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006840 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006841
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006842 local_irq_disable();
6843
6844 list_splice_tail_init(&sd->poll_list, &list);
6845 list_splice_tail(&repoll, &list);
6846 list_splice(&list, &sd->poll_list);
6847 if (!list_empty(&sd->poll_list))
6848 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6849
Eric Dumazete326bed2010-04-22 00:22:45 -07006850 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006851out:
6852 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006853}
6854
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006855struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006856 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006857
6858 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006859 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006860
Taehee Yoo32b6d342019-10-21 18:47:56 +00006861 /* lookup ignore flag */
6862 bool ignore;
6863
Veaceslav Falico5d261912013-08-28 23:25:05 +02006864 /* counter for the number of times this device was added to us */
6865 u16 ref_nr;
6866
Veaceslav Falico402dae92013-09-25 09:20:09 +02006867 /* private field for the users */
6868 void *private;
6869
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006870 struct list_head list;
6871 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006872};
6873
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006874static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006875 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006876{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006877 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006878
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006879 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006880 if (adj->dev == adj_dev)
6881 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006882 }
6883 return NULL;
6884}
6885
Taehee Yooeff74232020-09-25 18:13:12 +00006886static int ____netdev_has_upper_dev(struct net_device *upper_dev,
6887 struct netdev_nested_priv *priv)
David Ahernf1170fd2016-10-17 19:15:51 -07006888{
Taehee Yooeff74232020-09-25 18:13:12 +00006889 struct net_device *dev = (struct net_device *)priv->data;
David Ahernf1170fd2016-10-17 19:15:51 -07006890
6891 return upper_dev == dev;
6892}
6893
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006894/**
6895 * netdev_has_upper_dev - Check if device is linked to an upper device
6896 * @dev: device
6897 * @upper_dev: upper device to check
6898 *
6899 * Find out if a device is linked to specified upper device and return true
6900 * in case it is. Note that this checks only immediate upper device,
6901 * not through a complete stack of devices. The caller must hold the RTNL lock.
6902 */
6903bool netdev_has_upper_dev(struct net_device *dev,
6904 struct net_device *upper_dev)
6905{
Taehee Yooeff74232020-09-25 18:13:12 +00006906 struct netdev_nested_priv priv = {
6907 .data = (void *)upper_dev,
6908 };
6909
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006910 ASSERT_RTNL();
6911
Taehee Yoo32b6d342019-10-21 18:47:56 +00006912 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00006913 &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006914}
6915EXPORT_SYMBOL(netdev_has_upper_dev);
6916
6917/**
David Ahern1a3f0602016-10-17 19:15:44 -07006918 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6919 * @dev: device
6920 * @upper_dev: upper device to check
6921 *
6922 * Find out if a device is linked to specified upper device and return true
6923 * in case it is. Note that this checks the entire upper device chain.
6924 * The caller must hold rcu lock.
6925 */
6926
David Ahern1a3f0602016-10-17 19:15:44 -07006927bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6928 struct net_device *upper_dev)
6929{
Taehee Yooeff74232020-09-25 18:13:12 +00006930 struct netdev_nested_priv priv = {
6931 .data = (void *)upper_dev,
6932 };
6933
Taehee Yoo32b6d342019-10-21 18:47:56 +00006934 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00006935 &priv);
David Ahern1a3f0602016-10-17 19:15:44 -07006936}
6937EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6938
6939/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006940 * netdev_has_any_upper_dev - Check if device is linked to some device
6941 * @dev: device
6942 *
6943 * Find out if a device is linked to an upper device and return true in case
6944 * it is. The caller must hold the RTNL lock.
6945 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006946bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006947{
6948 ASSERT_RTNL();
6949
David Ahernf1170fd2016-10-17 19:15:51 -07006950 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006951}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006952EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006953
6954/**
6955 * netdev_master_upper_dev_get - Get master upper device
6956 * @dev: device
6957 *
6958 * Find a master upper device and return pointer to it or NULL in case
6959 * it's not there. The caller must hold the RTNL lock.
6960 */
6961struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6962{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006963 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006964
6965 ASSERT_RTNL();
6966
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006967 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006968 return NULL;
6969
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006970 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006971 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006972 if (likely(upper->master))
6973 return upper->dev;
6974 return NULL;
6975}
6976EXPORT_SYMBOL(netdev_master_upper_dev_get);
6977
Taehee Yoo32b6d342019-10-21 18:47:56 +00006978static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
6979{
6980 struct netdev_adjacent *upper;
6981
6982 ASSERT_RTNL();
6983
6984 if (list_empty(&dev->adj_list.upper))
6985 return NULL;
6986
6987 upper = list_first_entry(&dev->adj_list.upper,
6988 struct netdev_adjacent, list);
6989 if (likely(upper->master) && !upper->ignore)
6990 return upper->dev;
6991 return NULL;
6992}
6993
David Ahern0f524a82016-10-17 19:15:52 -07006994/**
6995 * netdev_has_any_lower_dev - Check if device is linked to some device
6996 * @dev: device
6997 *
6998 * Find out if a device is linked to a lower device and return true in case
6999 * it is. The caller must hold the RTNL lock.
7000 */
7001static bool netdev_has_any_lower_dev(struct net_device *dev)
7002{
7003 ASSERT_RTNL();
7004
7005 return !list_empty(&dev->adj_list.lower);
7006}
7007
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02007008void *netdev_adjacent_get_private(struct list_head *adj_list)
7009{
7010 struct netdev_adjacent *adj;
7011
7012 adj = list_entry(adj_list, struct netdev_adjacent, list);
7013
7014 return adj->private;
7015}
7016EXPORT_SYMBOL(netdev_adjacent_get_private);
7017
Veaceslav Falico31088a12013-09-25 09:20:12 +02007018/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04007019 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
7020 * @dev: device
7021 * @iter: list_head ** of the current position
7022 *
7023 * Gets the next device from the dev's upper list, starting from iter
7024 * position. The caller must hold RCU read lock.
7025 */
7026struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
7027 struct list_head **iter)
7028{
7029 struct netdev_adjacent *upper;
7030
7031 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7032
7033 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7034
7035 if (&upper->list == &dev->adj_list.upper)
7036 return NULL;
7037
7038 *iter = &upper->list;
7039
7040 return upper->dev;
7041}
7042EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
7043
Taehee Yoo32b6d342019-10-21 18:47:56 +00007044static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
7045 struct list_head **iter,
7046 bool *ignore)
Taehee Yoo5343da42019-10-21 18:47:50 +00007047{
7048 struct netdev_adjacent *upper;
7049
7050 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
7051
7052 if (&upper->list == &dev->adj_list.upper)
7053 return NULL;
7054
7055 *iter = &upper->list;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007056 *ignore = upper->ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007057
7058 return upper->dev;
7059}
7060
David Ahern1a3f0602016-10-17 19:15:44 -07007061static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
7062 struct list_head **iter)
7063{
7064 struct netdev_adjacent *upper;
7065
7066 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7067
7068 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7069
7070 if (&upper->list == &dev->adj_list.upper)
7071 return NULL;
7072
7073 *iter = &upper->list;
7074
7075 return upper->dev;
7076}
7077
Taehee Yoo32b6d342019-10-21 18:47:56 +00007078static int __netdev_walk_all_upper_dev(struct net_device *dev,
7079 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007080 struct netdev_nested_priv *priv),
7081 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007082{
7083 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7084 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7085 int ret, cur = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007086 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007087
7088 now = dev;
7089 iter = &dev->adj_list.upper;
7090
7091 while (1) {
7092 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007093 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007094 if (ret)
7095 return ret;
7096 }
7097
7098 next = NULL;
7099 while (1) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007100 udev = __netdev_next_upper_dev(now, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007101 if (!udev)
7102 break;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007103 if (ignore)
7104 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007105
7106 next = udev;
7107 niter = &udev->adj_list.upper;
7108 dev_stack[cur] = now;
7109 iter_stack[cur++] = iter;
7110 break;
7111 }
7112
7113 if (!next) {
7114 if (!cur)
7115 return 0;
7116 next = dev_stack[--cur];
7117 niter = iter_stack[cur];
7118 }
7119
7120 now = next;
7121 iter = niter;
7122 }
7123
7124 return 0;
7125}
7126
David Ahern1a3f0602016-10-17 19:15:44 -07007127int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
7128 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007129 struct netdev_nested_priv *priv),
7130 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007131{
Taehee Yoo5343da42019-10-21 18:47:50 +00007132 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7133 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7134 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007135
Taehee Yoo5343da42019-10-21 18:47:50 +00007136 now = dev;
7137 iter = &dev->adj_list.upper;
David Ahern1a3f0602016-10-17 19:15:44 -07007138
Taehee Yoo5343da42019-10-21 18:47:50 +00007139 while (1) {
7140 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007141 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007142 if (ret)
7143 return ret;
7144 }
7145
7146 next = NULL;
7147 while (1) {
7148 udev = netdev_next_upper_dev_rcu(now, &iter);
7149 if (!udev)
7150 break;
7151
7152 next = udev;
7153 niter = &udev->adj_list.upper;
7154 dev_stack[cur] = now;
7155 iter_stack[cur++] = iter;
7156 break;
7157 }
7158
7159 if (!next) {
7160 if (!cur)
7161 return 0;
7162 next = dev_stack[--cur];
7163 niter = iter_stack[cur];
7164 }
7165
7166 now = next;
7167 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007168 }
7169
7170 return 0;
7171}
7172EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
7173
Taehee Yoo32b6d342019-10-21 18:47:56 +00007174static bool __netdev_has_upper_dev(struct net_device *dev,
7175 struct net_device *upper_dev)
7176{
Taehee Yooeff74232020-09-25 18:13:12 +00007177 struct netdev_nested_priv priv = {
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007178 .flags = 0,
Taehee Yooeff74232020-09-25 18:13:12 +00007179 .data = (void *)upper_dev,
7180 };
7181
Taehee Yoo32b6d342019-10-21 18:47:56 +00007182 ASSERT_RTNL();
7183
7184 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007185 &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007186}
7187
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007188/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02007189 * netdev_lower_get_next_private - Get the next ->private from the
7190 * lower neighbour list
7191 * @dev: device
7192 * @iter: list_head ** of the current position
7193 *
7194 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7195 * list, starting from iter position. The caller must hold either hold the
7196 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007197 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02007198 */
7199void *netdev_lower_get_next_private(struct net_device *dev,
7200 struct list_head **iter)
7201{
7202 struct netdev_adjacent *lower;
7203
7204 lower = list_entry(*iter, struct netdev_adjacent, list);
7205
7206 if (&lower->list == &dev->adj_list.lower)
7207 return NULL;
7208
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007209 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007210
7211 return lower->private;
7212}
7213EXPORT_SYMBOL(netdev_lower_get_next_private);
7214
7215/**
7216 * netdev_lower_get_next_private_rcu - Get the next ->private from the
7217 * lower neighbour list, RCU
7218 * variant
7219 * @dev: device
7220 * @iter: list_head ** of the current position
7221 *
7222 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7223 * list, starting from iter position. The caller must hold RCU read lock.
7224 */
7225void *netdev_lower_get_next_private_rcu(struct net_device *dev,
7226 struct list_head **iter)
7227{
7228 struct netdev_adjacent *lower;
7229
7230 WARN_ON_ONCE(!rcu_read_lock_held());
7231
7232 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7233
7234 if (&lower->list == &dev->adj_list.lower)
7235 return NULL;
7236
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007237 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007238
7239 return lower->private;
7240}
7241EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7242
7243/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007244 * netdev_lower_get_next - Get the next device from the lower neighbour
7245 * list
7246 * @dev: device
7247 * @iter: list_head ** of the current position
7248 *
7249 * Gets the next netdev_adjacent from the dev's lower neighbour
7250 * list, starting from iter position. The caller must hold RTNL lock or
7251 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007252 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007253 */
7254void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7255{
7256 struct netdev_adjacent *lower;
7257
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007258 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007259
7260 if (&lower->list == &dev->adj_list.lower)
7261 return NULL;
7262
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007263 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007264
7265 return lower->dev;
7266}
7267EXPORT_SYMBOL(netdev_lower_get_next);
7268
David Ahern1a3f0602016-10-17 19:15:44 -07007269static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7270 struct list_head **iter)
7271{
7272 struct netdev_adjacent *lower;
7273
David Ahern46b5ab12016-10-26 13:21:33 -07007274 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07007275
7276 if (&lower->list == &dev->adj_list.lower)
7277 return NULL;
7278
David Ahern46b5ab12016-10-26 13:21:33 -07007279 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07007280
7281 return lower->dev;
7282}
7283
Taehee Yoo32b6d342019-10-21 18:47:56 +00007284static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7285 struct list_head **iter,
7286 bool *ignore)
7287{
7288 struct netdev_adjacent *lower;
7289
7290 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7291
7292 if (&lower->list == &dev->adj_list.lower)
7293 return NULL;
7294
7295 *iter = &lower->list;
7296 *ignore = lower->ignore;
7297
7298 return lower->dev;
7299}
7300
David Ahern1a3f0602016-10-17 19:15:44 -07007301int netdev_walk_all_lower_dev(struct net_device *dev,
7302 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007303 struct netdev_nested_priv *priv),
7304 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007305{
Taehee Yoo5343da42019-10-21 18:47:50 +00007306 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7307 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7308 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007309
Taehee Yoo5343da42019-10-21 18:47:50 +00007310 now = dev;
7311 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007312
Taehee Yoo5343da42019-10-21 18:47:50 +00007313 while (1) {
7314 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007315 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007316 if (ret)
7317 return ret;
7318 }
7319
7320 next = NULL;
7321 while (1) {
7322 ldev = netdev_next_lower_dev(now, &iter);
7323 if (!ldev)
7324 break;
7325
7326 next = ldev;
7327 niter = &ldev->adj_list.lower;
7328 dev_stack[cur] = now;
7329 iter_stack[cur++] = iter;
7330 break;
7331 }
7332
7333 if (!next) {
7334 if (!cur)
7335 return 0;
7336 next = dev_stack[--cur];
7337 niter = iter_stack[cur];
7338 }
7339
7340 now = next;
7341 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007342 }
7343
7344 return 0;
7345}
7346EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7347
Taehee Yoo32b6d342019-10-21 18:47:56 +00007348static int __netdev_walk_all_lower_dev(struct net_device *dev,
7349 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007350 struct netdev_nested_priv *priv),
7351 struct netdev_nested_priv *priv)
Taehee Yoo32b6d342019-10-21 18:47:56 +00007352{
7353 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7354 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7355 int ret, cur = 0;
7356 bool ignore;
7357
7358 now = dev;
7359 iter = &dev->adj_list.lower;
7360
7361 while (1) {
7362 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007363 ret = fn(now, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007364 if (ret)
7365 return ret;
7366 }
7367
7368 next = NULL;
7369 while (1) {
7370 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7371 if (!ldev)
7372 break;
7373 if (ignore)
7374 continue;
7375
7376 next = ldev;
7377 niter = &ldev->adj_list.lower;
7378 dev_stack[cur] = now;
7379 iter_stack[cur++] = iter;
7380 break;
7381 }
7382
7383 if (!next) {
7384 if (!cur)
7385 return 0;
7386 next = dev_stack[--cur];
7387 niter = iter_stack[cur];
7388 }
7389
7390 now = next;
7391 iter = niter;
7392 }
7393
7394 return 0;
7395}
7396
Taehee Yoo7151aff2020-02-15 10:50:21 +00007397struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7398 struct list_head **iter)
David Ahern1a3f0602016-10-17 19:15:44 -07007399{
7400 struct netdev_adjacent *lower;
7401
7402 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7403 if (&lower->list == &dev->adj_list.lower)
7404 return NULL;
7405
7406 *iter = &lower->list;
7407
7408 return lower->dev;
7409}
Taehee Yoo7151aff2020-02-15 10:50:21 +00007410EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
David Ahern1a3f0602016-10-17 19:15:44 -07007411
Taehee Yoo5343da42019-10-21 18:47:50 +00007412static u8 __netdev_upper_depth(struct net_device *dev)
7413{
7414 struct net_device *udev;
7415 struct list_head *iter;
7416 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007417 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007418
7419 for (iter = &dev->adj_list.upper,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007420 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007421 udev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007422 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7423 if (ignore)
7424 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007425 if (max_depth < udev->upper_level)
7426 max_depth = udev->upper_level;
7427 }
7428
7429 return max_depth;
7430}
7431
7432static u8 __netdev_lower_depth(struct net_device *dev)
7433{
7434 struct net_device *ldev;
7435 struct list_head *iter;
7436 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007437 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007438
7439 for (iter = &dev->adj_list.lower,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007440 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007441 ldev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007442 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7443 if (ignore)
7444 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007445 if (max_depth < ldev->lower_level)
7446 max_depth = ldev->lower_level;
7447 }
7448
7449 return max_depth;
7450}
7451
Taehee Yooeff74232020-09-25 18:13:12 +00007452static int __netdev_update_upper_level(struct net_device *dev,
7453 struct netdev_nested_priv *__unused)
Taehee Yoo5343da42019-10-21 18:47:50 +00007454{
7455 dev->upper_level = __netdev_upper_depth(dev) + 1;
7456 return 0;
7457}
7458
Taehee Yooeff74232020-09-25 18:13:12 +00007459static int __netdev_update_lower_level(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007460 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007461{
7462 dev->lower_level = __netdev_lower_depth(dev) + 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007463
7464#ifdef CONFIG_LOCKDEP
7465 if (!priv)
7466 return 0;
7467
7468 if (priv->flags & NESTED_SYNC_IMM)
7469 dev->nested_level = dev->lower_level - 1;
7470 if (priv->flags & NESTED_SYNC_TODO)
7471 net_unlink_todo(dev);
7472#endif
Taehee Yoo5343da42019-10-21 18:47:50 +00007473 return 0;
7474}
7475
David Ahern1a3f0602016-10-17 19:15:44 -07007476int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7477 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007478 struct netdev_nested_priv *priv),
7479 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007480{
Taehee Yoo5343da42019-10-21 18:47:50 +00007481 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7482 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7483 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007484
Taehee Yoo5343da42019-10-21 18:47:50 +00007485 now = dev;
7486 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007487
Taehee Yoo5343da42019-10-21 18:47:50 +00007488 while (1) {
7489 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007490 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007491 if (ret)
7492 return ret;
7493 }
7494
7495 next = NULL;
7496 while (1) {
7497 ldev = netdev_next_lower_dev_rcu(now, &iter);
7498 if (!ldev)
7499 break;
7500
7501 next = ldev;
7502 niter = &ldev->adj_list.lower;
7503 dev_stack[cur] = now;
7504 iter_stack[cur++] = iter;
7505 break;
7506 }
7507
7508 if (!next) {
7509 if (!cur)
7510 return 0;
7511 next = dev_stack[--cur];
7512 niter = iter_stack[cur];
7513 }
7514
7515 now = next;
7516 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007517 }
7518
7519 return 0;
7520}
7521EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7522
Jiri Pirko7ce856a2016-07-04 08:23:12 +02007523/**
dingtianhonge001bfa2013-12-13 10:19:55 +08007524 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7525 * lower neighbour list, RCU
7526 * variant
7527 * @dev: device
7528 *
7529 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7530 * list. The caller must hold RCU read lock.
7531 */
7532void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7533{
7534 struct netdev_adjacent *lower;
7535
7536 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7537 struct netdev_adjacent, list);
7538 if (lower)
7539 return lower->private;
7540 return NULL;
7541}
7542EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7543
7544/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007545 * netdev_master_upper_dev_get_rcu - Get master upper device
7546 * @dev: device
7547 *
7548 * Find a master upper device and return pointer to it or NULL in case
7549 * it's not there. The caller must hold the RCU read lock.
7550 */
7551struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7552{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007553 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007554
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007555 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007556 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007557 if (upper && likely(upper->master))
7558 return upper->dev;
7559 return NULL;
7560}
7561EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7562
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307563static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007564 struct net_device *adj_dev,
7565 struct list_head *dev_list)
7566{
7567 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007568
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007569 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7570 "upper_%s" : "lower_%s", adj_dev->name);
7571 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7572 linkname);
7573}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307574static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007575 char *name,
7576 struct list_head *dev_list)
7577{
7578 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007579
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007580 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7581 "upper_%s" : "lower_%s", name);
7582 sysfs_remove_link(&(dev->dev.kobj), linkname);
7583}
7584
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007585static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7586 struct net_device *adj_dev,
7587 struct list_head *dev_list)
7588{
7589 return (dev_list == &dev->adj_list.upper ||
7590 dev_list == &dev->adj_list.lower) &&
7591 net_eq(dev_net(dev), dev_net(adj_dev));
7592}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007593
Veaceslav Falico5d261912013-08-28 23:25:05 +02007594static int __netdev_adjacent_dev_insert(struct net_device *dev,
7595 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02007596 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007597 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007598{
7599 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007600 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007601
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007602 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007603
7604 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07007605 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07007606 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7607 dev->name, adj_dev->name, adj->ref_nr);
7608
Veaceslav Falico5d261912013-08-28 23:25:05 +02007609 return 0;
7610 }
7611
7612 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7613 if (!adj)
7614 return -ENOMEM;
7615
7616 adj->dev = adj_dev;
7617 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07007618 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007619 adj->private = private;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007620 adj->ignore = false;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007621 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007622
David Ahern67b62f92016-10-17 19:15:53 -07007623 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7624 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007625
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007626 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007627 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007628 if (ret)
7629 goto free_adj;
7630 }
7631
Veaceslav Falico7863c052013-09-25 09:20:06 +02007632 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007633 if (master) {
7634 ret = sysfs_create_link(&(dev->dev.kobj),
7635 &(adj_dev->dev.kobj), "master");
7636 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02007637 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007638
Veaceslav Falico7863c052013-09-25 09:20:06 +02007639 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007640 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02007641 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007642 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007643
7644 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007645
Veaceslav Falico5831d662013-09-25 09:20:32 +02007646remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007647 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007648 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007649free_adj:
7650 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02007651 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007652
7653 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007654}
7655
stephen hemminger1d143d92013-12-29 14:01:29 -08007656static void __netdev_adjacent_dev_remove(struct net_device *dev,
7657 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007658 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007659 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007660{
7661 struct netdev_adjacent *adj;
7662
David Ahern67b62f92016-10-17 19:15:53 -07007663 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
7664 dev->name, adj_dev->name, ref_nr);
7665
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007666 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007667
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007668 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07007669 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007670 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07007671 WARN_ON(1);
7672 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007673 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007674
Andrew Collins93409032016-10-03 13:43:02 -06007675 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07007676 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7677 dev->name, adj_dev->name, ref_nr,
7678 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06007679 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007680 return;
7681 }
7682
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007683 if (adj->master)
7684 sysfs_remove_link(&(dev->dev.kobj), "master");
7685
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007686 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007687 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007688
Veaceslav Falico5d261912013-08-28 23:25:05 +02007689 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07007690 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007691 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007692 dev_put(adj_dev);
7693 kfree_rcu(adj, rcu);
7694}
7695
stephen hemminger1d143d92013-12-29 14:01:29 -08007696static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7697 struct net_device *upper_dev,
7698 struct list_head *up_list,
7699 struct list_head *down_list,
7700 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007701{
7702 int ret;
7703
David Ahern790510d2016-10-17 19:15:43 -07007704 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06007705 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007706 if (ret)
7707 return ret;
7708
David Ahern790510d2016-10-17 19:15:43 -07007709 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06007710 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007711 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07007712 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007713 return ret;
7714 }
7715
7716 return 0;
7717}
7718
stephen hemminger1d143d92013-12-29 14:01:29 -08007719static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7720 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007721 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007722 struct list_head *up_list,
7723 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007724{
Andrew Collins93409032016-10-03 13:43:02 -06007725 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7726 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007727}
7728
stephen hemminger1d143d92013-12-29 14:01:29 -08007729static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7730 struct net_device *upper_dev,
7731 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007732{
David Ahernf1170fd2016-10-17 19:15:51 -07007733 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7734 &dev->adj_list.upper,
7735 &upper_dev->adj_list.lower,
7736 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007737}
7738
stephen hemminger1d143d92013-12-29 14:01:29 -08007739static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7740 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007741{
Andrew Collins93409032016-10-03 13:43:02 -06007742 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007743 &dev->adj_list.upper,
7744 &upper_dev->adj_list.lower);
7745}
Veaceslav Falico5d261912013-08-28 23:25:05 +02007746
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007747static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007748 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07007749 void *upper_priv, void *upper_info,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007750 struct netdev_nested_priv *priv,
David Ahern42ab19e2017-10-04 17:48:47 -07007751 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007752{
David Ahern51d0c0472017-10-04 17:48:45 -07007753 struct netdev_notifier_changeupper_info changeupper_info = {
7754 .info = {
7755 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007756 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07007757 },
7758 .upper_dev = upper_dev,
7759 .master = master,
7760 .linking = true,
7761 .upper_info = upper_info,
7762 };
Mike Manning50d629e2018-02-26 23:49:30 +00007763 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007764 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007765
7766 ASSERT_RTNL();
7767
7768 if (dev == upper_dev)
7769 return -EBUSY;
7770
7771 /* To prevent loops, check if dev is not upper device to upper_dev. */
Taehee Yoo32b6d342019-10-21 18:47:56 +00007772 if (__netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007773 return -EBUSY;
7774
Taehee Yoo5343da42019-10-21 18:47:50 +00007775 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
7776 return -EMLINK;
7777
Mike Manning50d629e2018-02-26 23:49:30 +00007778 if (!master) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007779 if (__netdev_has_upper_dev(dev, upper_dev))
Mike Manning50d629e2018-02-26 23:49:30 +00007780 return -EEXIST;
7781 } else {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007782 master_dev = __netdev_master_upper_dev_get(dev);
Mike Manning50d629e2018-02-26 23:49:30 +00007783 if (master_dev)
7784 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7785 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007786
David Ahern51d0c0472017-10-04 17:48:45 -07007787 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007788 &changeupper_info.info);
7789 ret = notifier_to_errno(ret);
7790 if (ret)
7791 return ret;
7792
Jiri Pirko6dffb042015-12-03 12:12:10 +01007793 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007794 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007795 if (ret)
7796 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007797
David Ahern51d0c0472017-10-04 17:48:45 -07007798 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01007799 &changeupper_info.info);
7800 ret = notifier_to_errno(ret);
7801 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07007802 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01007803
Taehee Yoo5343da42019-10-21 18:47:50 +00007804 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007805 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00007806
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007807 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007808 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007809 priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007810
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007811 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007812
David Ahernf1170fd2016-10-17 19:15:51 -07007813rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007814 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007815
7816 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007817}
7818
7819/**
7820 * netdev_upper_dev_link - Add a link to the upper device
7821 * @dev: device
7822 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007823 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007824 *
7825 * Adds a link to device which is upper to this one. The caller must hold
7826 * the RTNL lock. On a failure a negative errno code is returned.
7827 * On success the reference counts are adjusted and the function
7828 * returns zero.
7829 */
7830int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007831 struct net_device *upper_dev,
7832 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007833{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007834 struct netdev_nested_priv priv = {
7835 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7836 .data = NULL,
7837 };
7838
David Ahern42ab19e2017-10-04 17:48:47 -07007839 return __netdev_upper_dev_link(dev, upper_dev, false,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007840 NULL, NULL, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007841}
7842EXPORT_SYMBOL(netdev_upper_dev_link);
7843
7844/**
7845 * netdev_master_upper_dev_link - Add a master link to the upper device
7846 * @dev: device
7847 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007848 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007849 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007850 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007851 *
7852 * Adds a link to device which is upper to this one. In this case, only
7853 * one master upper device can be linked, although other non-master devices
7854 * might be linked as well. The caller must hold the RTNL lock.
7855 * On a failure a negative errno code is returned. On success the reference
7856 * counts are adjusted and the function returns zero.
7857 */
7858int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007859 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007860 void *upper_priv, void *upper_info,
7861 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007862{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007863 struct netdev_nested_priv priv = {
7864 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7865 .data = NULL,
7866 };
7867
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007868 return __netdev_upper_dev_link(dev, upper_dev, true,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007869 upper_priv, upper_info, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007870}
7871EXPORT_SYMBOL(netdev_master_upper_dev_link);
7872
Taehee Yoofe8300f2020-09-25 18:13:02 +00007873static void __netdev_upper_dev_unlink(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007874 struct net_device *upper_dev,
7875 struct netdev_nested_priv *priv)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007876{
David Ahern51d0c0472017-10-04 17:48:45 -07007877 struct netdev_notifier_changeupper_info changeupper_info = {
7878 .info = {
7879 .dev = dev,
7880 },
7881 .upper_dev = upper_dev,
7882 .linking = false,
7883 };
tchardingf4563a72017-02-09 17:56:07 +11007884
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007885 ASSERT_RTNL();
7886
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007887 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007888
David Ahern51d0c0472017-10-04 17:48:45 -07007889 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007890 &changeupper_info.info);
7891
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007892 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007893
David Ahern51d0c0472017-10-04 17:48:45 -07007894 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007895 &changeupper_info.info);
Taehee Yoo5343da42019-10-21 18:47:50 +00007896
7897 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007898 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00007899
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007900 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007901 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007902 priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007903}
Taehee Yoofe8300f2020-09-25 18:13:02 +00007904
7905/**
7906 * netdev_upper_dev_unlink - Removes a link to upper device
7907 * @dev: device
7908 * @upper_dev: new upper device
7909 *
7910 * Removes a link to device which is upper to this one. The caller must hold
7911 * the RTNL lock.
7912 */
7913void netdev_upper_dev_unlink(struct net_device *dev,
7914 struct net_device *upper_dev)
7915{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007916 struct netdev_nested_priv priv = {
7917 .flags = NESTED_SYNC_TODO,
7918 .data = NULL,
7919 };
7920
7921 __netdev_upper_dev_unlink(dev, upper_dev, &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007922}
7923EXPORT_SYMBOL(netdev_upper_dev_unlink);
7924
Taehee Yoo32b6d342019-10-21 18:47:56 +00007925static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
7926 struct net_device *lower_dev,
7927 bool val)
7928{
7929 struct netdev_adjacent *adj;
7930
7931 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
7932 if (adj)
7933 adj->ignore = val;
7934
7935 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
7936 if (adj)
7937 adj->ignore = val;
7938}
7939
7940static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
7941 struct net_device *lower_dev)
7942{
7943 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
7944}
7945
7946static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
7947 struct net_device *lower_dev)
7948{
7949 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
7950}
7951
7952int netdev_adjacent_change_prepare(struct net_device *old_dev,
7953 struct net_device *new_dev,
7954 struct net_device *dev,
7955 struct netlink_ext_ack *extack)
7956{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007957 struct netdev_nested_priv priv = {
7958 .flags = 0,
7959 .data = NULL,
7960 };
Taehee Yoo32b6d342019-10-21 18:47:56 +00007961 int err;
7962
7963 if (!new_dev)
7964 return 0;
7965
7966 if (old_dev && new_dev != old_dev)
7967 netdev_adjacent_dev_disable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007968 err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
7969 extack);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007970 if (err) {
7971 if (old_dev && new_dev != old_dev)
7972 netdev_adjacent_dev_enable(dev, old_dev);
7973 return err;
7974 }
7975
7976 return 0;
7977}
7978EXPORT_SYMBOL(netdev_adjacent_change_prepare);
7979
7980void netdev_adjacent_change_commit(struct net_device *old_dev,
7981 struct net_device *new_dev,
7982 struct net_device *dev)
7983{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007984 struct netdev_nested_priv priv = {
7985 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7986 .data = NULL,
7987 };
7988
Taehee Yoo32b6d342019-10-21 18:47:56 +00007989 if (!new_dev || !old_dev)
7990 return;
7991
7992 if (new_dev == old_dev)
7993 return;
7994
7995 netdev_adjacent_dev_enable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007996 __netdev_upper_dev_unlink(old_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007997}
7998EXPORT_SYMBOL(netdev_adjacent_change_commit);
7999
8000void netdev_adjacent_change_abort(struct net_device *old_dev,
8001 struct net_device *new_dev,
8002 struct net_device *dev)
8003{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008004 struct netdev_nested_priv priv = {
8005 .flags = 0,
8006 .data = NULL,
8007 };
8008
Taehee Yoo32b6d342019-10-21 18:47:56 +00008009 if (!new_dev)
8010 return;
8011
8012 if (old_dev && new_dev != old_dev)
8013 netdev_adjacent_dev_enable(dev, old_dev);
8014
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008015 __netdev_upper_dev_unlink(new_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008016}
8017EXPORT_SYMBOL(netdev_adjacent_change_abort);
8018
Moni Shoua61bd3852015-02-03 16:48:29 +02008019/**
8020 * netdev_bonding_info_change - Dispatch event about slave change
8021 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09008022 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02008023 *
8024 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
8025 * The caller must hold the RTNL lock.
8026 */
8027void netdev_bonding_info_change(struct net_device *dev,
8028 struct netdev_bonding_info *bonding_info)
8029{
David Ahern51d0c0472017-10-04 17:48:45 -07008030 struct netdev_notifier_bonding_info info = {
8031 .info.dev = dev,
8032 };
Moni Shoua61bd3852015-02-03 16:48:29 +02008033
8034 memcpy(&info.bonding_info, bonding_info,
8035 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07008036 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02008037 &info.info);
8038}
8039EXPORT_SYMBOL(netdev_bonding_info_change);
8040
Maor Gottliebcff9f122020-04-30 22:21:31 +03008041/**
8042 * netdev_get_xmit_slave - Get the xmit slave of master device
Andrew Lunn88425002020-07-13 01:14:59 +02008043 * @dev: device
Maor Gottliebcff9f122020-04-30 22:21:31 +03008044 * @skb: The packet
8045 * @all_slaves: assume all the slaves are active
8046 *
8047 * The reference counters are not incremented so the caller must be
8048 * careful with locks. The caller must hold RCU lock.
8049 * %NULL is returned if no slave is found.
8050 */
8051
8052struct net_device *netdev_get_xmit_slave(struct net_device *dev,
8053 struct sk_buff *skb,
8054 bool all_slaves)
8055{
8056 const struct net_device_ops *ops = dev->netdev_ops;
8057
8058 if (!ops->ndo_get_xmit_slave)
8059 return NULL;
8060 return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
8061}
8062EXPORT_SYMBOL(netdev_get_xmit_slave);
8063
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008064static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008065{
8066 struct netdev_adjacent *iter;
8067
8068 struct net *net = dev_net(dev);
8069
8070 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008071 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008072 continue;
8073 netdev_adjacent_sysfs_add(iter->dev, dev,
8074 &iter->dev->adj_list.lower);
8075 netdev_adjacent_sysfs_add(dev, iter->dev,
8076 &dev->adj_list.upper);
8077 }
8078
8079 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008080 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008081 continue;
8082 netdev_adjacent_sysfs_add(iter->dev, dev,
8083 &iter->dev->adj_list.upper);
8084 netdev_adjacent_sysfs_add(dev, iter->dev,
8085 &dev->adj_list.lower);
8086 }
8087}
8088
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008089static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008090{
8091 struct netdev_adjacent *iter;
8092
8093 struct net *net = dev_net(dev);
8094
8095 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008096 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008097 continue;
8098 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8099 &iter->dev->adj_list.lower);
8100 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8101 &dev->adj_list.upper);
8102 }
8103
8104 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008105 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008106 continue;
8107 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8108 &iter->dev->adj_list.upper);
8109 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8110 &dev->adj_list.lower);
8111 }
8112}
8113
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008114void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02008115{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008116 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02008117
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008118 struct net *net = dev_net(dev);
8119
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008120 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008121 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008122 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008123 netdev_adjacent_sysfs_del(iter->dev, oldname,
8124 &iter->dev->adj_list.lower);
8125 netdev_adjacent_sysfs_add(iter->dev, dev,
8126 &iter->dev->adj_list.lower);
8127 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008128
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008129 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008130 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008131 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008132 netdev_adjacent_sysfs_del(iter->dev, oldname,
8133 &iter->dev->adj_list.upper);
8134 netdev_adjacent_sysfs_add(iter->dev, dev,
8135 &iter->dev->adj_list.upper);
8136 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008137}
Veaceslav Falico402dae92013-09-25 09:20:09 +02008138
8139void *netdev_lower_dev_get_private(struct net_device *dev,
8140 struct net_device *lower_dev)
8141{
8142 struct netdev_adjacent *lower;
8143
8144 if (!lower_dev)
8145 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008146 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02008147 if (!lower)
8148 return NULL;
8149
8150 return lower->private;
8151}
8152EXPORT_SYMBOL(netdev_lower_dev_get_private);
8153
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04008154
Jiri Pirko04d48262015-12-03 12:12:15 +01008155/**
8156 * netdev_lower_change - Dispatch event about lower device state change
8157 * @lower_dev: device
8158 * @lower_state_info: state to dispatch
8159 *
8160 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
8161 * The caller must hold the RTNL lock.
8162 */
8163void netdev_lower_state_changed(struct net_device *lower_dev,
8164 void *lower_state_info)
8165{
David Ahern51d0c0472017-10-04 17:48:45 -07008166 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
8167 .info.dev = lower_dev,
8168 };
Jiri Pirko04d48262015-12-03 12:12:15 +01008169
8170 ASSERT_RTNL();
8171 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07008172 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01008173 &changelowerstate_info.info);
8174}
8175EXPORT_SYMBOL(netdev_lower_state_changed);
8176
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008177static void dev_change_rx_flags(struct net_device *dev, int flags)
8178{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008179 const struct net_device_ops *ops = dev->netdev_ops;
8180
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05008181 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008182 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008183}
8184
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008185static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07008186{
Eric Dumazetb536db92011-11-30 21:42:26 +00008187 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06008188 kuid_t uid;
8189 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07008190
Patrick McHardy24023452007-07-14 18:51:31 -07008191 ASSERT_RTNL();
8192
Wang Chendad9b332008-06-18 01:48:28 -07008193 dev->flags |= IFF_PROMISC;
8194 dev->promiscuity += inc;
8195 if (dev->promiscuity == 0) {
8196 /*
8197 * Avoid overflow.
8198 * If inc causes overflow, untouch promisc and return error.
8199 */
8200 if (inc < 0)
8201 dev->flags &= ~IFF_PROMISC;
8202 else {
8203 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008204 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
8205 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008206 return -EOVERFLOW;
8207 }
8208 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008209 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008210 pr_info("device %s %s promiscuous mode\n",
8211 dev->name,
8212 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11008213 if (audit_enabled) {
8214 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04008215 audit_log(audit_context(), GFP_ATOMIC,
8216 AUDIT_ANOM_PROMISCUOUS,
8217 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
8218 dev->name, (dev->flags & IFF_PROMISC),
8219 (old_flags & IFF_PROMISC),
8220 from_kuid(&init_user_ns, audit_get_loginuid(current)),
8221 from_kuid(&init_user_ns, uid),
8222 from_kgid(&init_user_ns, gid),
8223 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11008224 }
Patrick McHardy24023452007-07-14 18:51:31 -07008225
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008226 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07008227 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008228 if (notify)
8229 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07008230 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008231}
8232
Linus Torvalds1da177e2005-04-16 15:20:36 -07008233/**
8234 * dev_set_promiscuity - update promiscuity count on a device
8235 * @dev: device
8236 * @inc: modifier
8237 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07008238 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008239 * remains above zero the interface remains promiscuous. Once it hits zero
8240 * the device reverts back to normal filtering operation. A negative inc
8241 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07008242 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008243 */
Wang Chendad9b332008-06-18 01:48:28 -07008244int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008245{
Eric Dumazetb536db92011-11-30 21:42:26 +00008246 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07008247 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008248
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008249 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07008250 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07008251 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07008252 if (dev->flags != old_flags)
8253 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07008254 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008256EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008258static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008260 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261
Patrick McHardy24023452007-07-14 18:51:31 -07008262 ASSERT_RTNL();
8263
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07008265 dev->allmulti += inc;
8266 if (dev->allmulti == 0) {
8267 /*
8268 * Avoid overflow.
8269 * If inc causes overflow, untouch allmulti and return error.
8270 */
8271 if (inc < 0)
8272 dev->flags &= ~IFF_ALLMULTI;
8273 else {
8274 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008275 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
8276 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008277 return -EOVERFLOW;
8278 }
8279 }
Patrick McHardy24023452007-07-14 18:51:31 -07008280 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008281 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07008282 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008283 if (notify)
8284 __dev_notify_flags(dev, old_flags,
8285 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07008286 }
Wang Chendad9b332008-06-18 01:48:28 -07008287 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008288}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008289
8290/**
8291 * dev_set_allmulti - update allmulti count on a device
8292 * @dev: device
8293 * @inc: modifier
8294 *
8295 * Add or remove reception of all multicast frames to a device. While the
8296 * count in the device remains above zero the interface remains listening
8297 * to all interfaces. Once it hits zero the device reverts back to normal
8298 * filtering operation. A negative @inc value is used to drop the counter
8299 * when releasing a resource needing all multicasts.
8300 * Return 0 if successful or a negative errno code on error.
8301 */
8302
8303int dev_set_allmulti(struct net_device *dev, int inc)
8304{
8305 return __dev_set_allmulti(dev, inc, true);
8306}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008307EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07008308
8309/*
8310 * Upload unicast and multicast address lists to device and
8311 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08008312 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07008313 * are present.
8314 */
8315void __dev_set_rx_mode(struct net_device *dev)
8316{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008317 const struct net_device_ops *ops = dev->netdev_ops;
8318
Patrick McHardy4417da62007-06-27 01:28:10 -07008319 /* dev_open will call this function so the list will stay sane. */
8320 if (!(dev->flags&IFF_UP))
8321 return;
8322
8323 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09008324 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07008325
Jiri Pirko01789342011-08-16 06:29:00 +00008326 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07008327 /* Unicast addresses changes may only happen under the rtnl,
8328 * therefore calling __dev_set_promiscuity here is safe.
8329 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008330 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008331 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008332 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008333 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008334 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008335 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07008336 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008337 }
Jiri Pirko01789342011-08-16 06:29:00 +00008338
8339 if (ops->ndo_set_rx_mode)
8340 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008341}
8342
8343void dev_set_rx_mode(struct net_device *dev)
8344{
David S. Millerb9e40852008-07-15 00:15:08 -07008345 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008346 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07008347 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008348}
8349
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008350/**
8351 * dev_get_flags - get flags reported to userspace
8352 * @dev: device
8353 *
8354 * Get the combination of flag bits exported through APIs to userspace.
8355 */
Eric Dumazet95c96172012-04-15 05:58:06 +00008356unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008357{
Eric Dumazet95c96172012-04-15 05:58:06 +00008358 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359
8360 flags = (dev->flags & ~(IFF_PROMISC |
8361 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08008362 IFF_RUNNING |
8363 IFF_LOWER_UP |
8364 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008365 (dev->gflags & (IFF_PROMISC |
8366 IFF_ALLMULTI));
8367
Stefan Rompfb00055a2006-03-20 17:09:11 -08008368 if (netif_running(dev)) {
8369 if (netif_oper_up(dev))
8370 flags |= IFF_RUNNING;
8371 if (netif_carrier_ok(dev))
8372 flags |= IFF_LOWER_UP;
8373 if (netif_dormant(dev))
8374 flags |= IFF_DORMANT;
8375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008376
8377 return flags;
8378}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008379EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380
Petr Machata6d040322018-12-06 17:05:43 +00008381int __dev_change_flags(struct net_device *dev, unsigned int flags,
8382 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008383{
Eric Dumazetb536db92011-11-30 21:42:26 +00008384 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00008385 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008386
Patrick McHardy24023452007-07-14 18:51:31 -07008387 ASSERT_RTNL();
8388
Linus Torvalds1da177e2005-04-16 15:20:36 -07008389 /*
8390 * Set the flags on our device.
8391 */
8392
8393 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8394 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8395 IFF_AUTOMEDIA)) |
8396 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8397 IFF_ALLMULTI));
8398
8399 /*
8400 * Load in the correct multicast list now the flags have changed.
8401 */
8402
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008403 if ((old_flags ^ flags) & IFF_MULTICAST)
8404 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07008405
Patrick McHardy4417da62007-06-27 01:28:10 -07008406 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008407
8408 /*
8409 * Have we downed the interface. We handle IFF_UP ourselves
8410 * according to user attempts to set it, rather than blindly
8411 * setting it.
8412 */
8413
8414 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07008415 if ((old_flags ^ flags) & IFF_UP) {
8416 if (old_flags & IFF_UP)
8417 __dev_close(dev);
8418 else
Petr Machata40c900a2018-12-06 17:05:47 +00008419 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07008420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008421
Linus Torvalds1da177e2005-04-16 15:20:36 -07008422 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008423 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008424 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008425
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008427
8428 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8429 if (dev->flags != old_flags)
8430 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008431 }
8432
8433 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11008434 * is important. Some (broken) drivers set IFF_PROMISC, when
8435 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008436 */
8437 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008438 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8439
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008441 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008442 }
8443
Patrick McHardybd380812010-02-26 06:34:53 +00008444 return ret;
8445}
8446
Nicolas Dichtela528c212013-09-25 12:02:44 +02008447void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8448 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00008449{
8450 unsigned int changes = dev->flags ^ old_flags;
8451
Nicolas Dichtela528c212013-09-25 12:02:44 +02008452 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008453 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008454
Patrick McHardybd380812010-02-26 06:34:53 +00008455 if (changes & IFF_UP) {
8456 if (dev->flags & IFF_UP)
8457 call_netdevice_notifiers(NETDEV_UP, dev);
8458 else
8459 call_netdevice_notifiers(NETDEV_DOWN, dev);
8460 }
8461
8462 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008463 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07008464 struct netdev_notifier_change_info change_info = {
8465 .info = {
8466 .dev = dev,
8467 },
8468 .flags_changed = changes,
8469 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008470
David Ahern51d0c0472017-10-04 17:48:45 -07008471 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008472 }
Patrick McHardybd380812010-02-26 06:34:53 +00008473}
8474
8475/**
8476 * dev_change_flags - change device settings
8477 * @dev: device
8478 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00008479 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00008480 *
8481 * Change settings on device based state flags. The flags are
8482 * in the userspace exported format.
8483 */
Petr Machata567c5e12018-12-06 17:05:42 +00008484int dev_change_flags(struct net_device *dev, unsigned int flags,
8485 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00008486{
Eric Dumazetb536db92011-11-30 21:42:26 +00008487 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008488 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00008489
Petr Machata6d040322018-12-06 17:05:43 +00008490 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00008491 if (ret < 0)
8492 return ret;
8493
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008494 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008495 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008496 return ret;
8497}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008498EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008499
WANG Congf51048c2017-07-06 15:01:57 -07008500int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008501{
8502 const struct net_device_ops *ops = dev->netdev_ops;
8503
8504 if (ops->ndo_change_mtu)
8505 return ops->ndo_change_mtu(dev, new_mtu);
8506
Eric Dumazet501a90c2019-12-05 20:43:46 -08008507 /* Pairs with all the lockless reads of dev->mtu in the stack */
8508 WRITE_ONCE(dev->mtu, new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008509 return 0;
8510}
WANG Congf51048c2017-07-06 15:01:57 -07008511EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008512
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008513int dev_validate_mtu(struct net_device *dev, int new_mtu,
8514 struct netlink_ext_ack *extack)
8515{
8516 /* MTU must be positive, and in range */
8517 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
8518 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
8519 return -EINVAL;
8520 }
8521
8522 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
8523 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
8524 return -EINVAL;
8525 }
8526 return 0;
8527}
8528
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008529/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008530 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008531 * @dev: device
8532 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008533 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008534 *
8535 * Change the maximum transfer size of the network device.
8536 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008537int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8538 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008539{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008540 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541
8542 if (new_mtu == dev->mtu)
8543 return 0;
8544
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008545 err = dev_validate_mtu(dev, new_mtu, extack);
8546 if (err)
8547 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008548
8549 if (!netif_device_present(dev))
8550 return -ENODEV;
8551
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01008552 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8553 err = notifier_to_errno(err);
8554 if (err)
8555 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008556
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008557 orig_mtu = dev->mtu;
8558 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008560 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008561 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8562 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008563 err = notifier_to_errno(err);
8564 if (err) {
8565 /* setting mtu back and notifying everyone again,
8566 * so that they have a chance to revert changes.
8567 */
8568 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008569 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8570 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008571 }
8572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008573 return err;
8574}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008575
8576int dev_set_mtu(struct net_device *dev, int new_mtu)
8577{
8578 struct netlink_ext_ack extack;
8579 int err;
8580
Li RongQinga6bcfc82018-08-03 15:45:21 +08008581 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008582 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08008583 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008584 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8585 return err;
8586}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008587EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008588
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008589/**
Cong Wang6a643dd2018-01-25 18:26:22 -08008590 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8591 * @dev: device
8592 * @new_len: new tx queue length
8593 */
8594int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8595{
8596 unsigned int orig_len = dev->tx_queue_len;
8597 int res;
8598
8599 if (new_len != (unsigned int)new_len)
8600 return -ERANGE;
8601
8602 if (new_len != orig_len) {
8603 dev->tx_queue_len = new_len;
8604 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8605 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03008606 if (res)
8607 goto err_rollback;
8608 res = dev_qdisc_change_tx_queue_len(dev);
8609 if (res)
8610 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08008611 }
8612
8613 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03008614
8615err_rollback:
8616 netdev_err(dev, "refused to change device tx_queue_len\n");
8617 dev->tx_queue_len = orig_len;
8618 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08008619}
8620
8621/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008622 * dev_set_group - Change group this device belongs to
8623 * @dev: device
8624 * @new_group: group this device should belong to
8625 */
8626void dev_set_group(struct net_device *dev, int new_group)
8627{
8628 dev->group = new_group;
8629}
8630EXPORT_SYMBOL(dev_set_group);
8631
8632/**
Petr Machatad59cdf92018-12-13 11:54:35 +00008633 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
8634 * @dev: device
8635 * @addr: new address
8636 * @extack: netlink extended ack
8637 */
8638int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
8639 struct netlink_ext_ack *extack)
8640{
8641 struct netdev_notifier_pre_changeaddr_info info = {
8642 .info.dev = dev,
8643 .info.extack = extack,
8644 .dev_addr = addr,
8645 };
8646 int rc;
8647
8648 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
8649 return notifier_to_errno(rc);
8650}
8651EXPORT_SYMBOL(dev_pre_changeaddr_notify);
8652
8653/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008654 * dev_set_mac_address - Change Media Access Control Address
8655 * @dev: device
8656 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00008657 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008658 *
8659 * Change the hardware (MAC) address of the device
8660 */
Petr Machata3a37a962018-12-13 11:54:30 +00008661int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
8662 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008663{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008664 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008665 int err;
8666
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008667 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008668 return -EOPNOTSUPP;
8669 if (sa->sa_family != dev->type)
8670 return -EINVAL;
8671 if (!netif_device_present(dev))
8672 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00008673 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
8674 if (err)
8675 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008676 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00008677 if (err)
8678 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00008679 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00008680 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008681 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00008682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008683}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008684EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008685
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008686/**
8687 * dev_change_carrier - Change device carrier
8688 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00008689 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008690 *
8691 * Change device carrier
8692 */
8693int dev_change_carrier(struct net_device *dev, bool new_carrier)
8694{
8695 const struct net_device_ops *ops = dev->netdev_ops;
8696
8697 if (!ops->ndo_change_carrier)
8698 return -EOPNOTSUPP;
8699 if (!netif_device_present(dev))
8700 return -ENODEV;
8701 return ops->ndo_change_carrier(dev, new_carrier);
8702}
8703EXPORT_SYMBOL(dev_change_carrier);
8704
Linus Torvalds1da177e2005-04-16 15:20:36 -07008705/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02008706 * dev_get_phys_port_id - Get device physical port ID
8707 * @dev: device
8708 * @ppid: port ID
8709 *
8710 * Get device physical port ID
8711 */
8712int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008713 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02008714{
8715 const struct net_device_ops *ops = dev->netdev_ops;
8716
8717 if (!ops->ndo_get_phys_port_id)
8718 return -EOPNOTSUPP;
8719 return ops->ndo_get_phys_port_id(dev, ppid);
8720}
8721EXPORT_SYMBOL(dev_get_phys_port_id);
8722
8723/**
David Aherndb24a902015-03-17 20:23:15 -06008724 * dev_get_phys_port_name - Get device physical port name
8725 * @dev: device
8726 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00008727 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06008728 *
8729 * Get device physical port name
8730 */
8731int dev_get_phys_port_name(struct net_device *dev,
8732 char *name, size_t len)
8733{
8734 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01008735 int err;
David Aherndb24a902015-03-17 20:23:15 -06008736
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01008737 if (ops->ndo_get_phys_port_name) {
8738 err = ops->ndo_get_phys_port_name(dev, name, len);
8739 if (err != -EOPNOTSUPP)
8740 return err;
8741 }
8742 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06008743}
8744EXPORT_SYMBOL(dev_get_phys_port_name);
8745
8746/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08008747 * dev_get_port_parent_id - Get the device's port parent identifier
8748 * @dev: network device
8749 * @ppid: pointer to a storage for the port's parent identifier
8750 * @recurse: allow/disallow recursion to lower devices
8751 *
8752 * Get the devices's port parent identifier
8753 */
8754int dev_get_port_parent_id(struct net_device *dev,
8755 struct netdev_phys_item_id *ppid,
8756 bool recurse)
8757{
8758 const struct net_device_ops *ops = dev->netdev_ops;
8759 struct netdev_phys_item_id first = { };
8760 struct net_device *lower_dev;
8761 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008762 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008763
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008764 if (ops->ndo_get_port_parent_id) {
8765 err = ops->ndo_get_port_parent_id(dev, ppid);
8766 if (err != -EOPNOTSUPP)
8767 return err;
8768 }
8769
8770 err = devlink_compat_switch_id_get(dev, ppid);
8771 if (!err || err != -EOPNOTSUPP)
8772 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008773
8774 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008775 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008776
8777 netdev_for_each_lower_dev(dev, lower_dev, iter) {
8778 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
8779 if (err)
8780 break;
8781 if (!first.id_len)
8782 first = *ppid;
8783 else if (memcmp(&first, ppid, sizeof(*ppid)))
Ido Schimmele1b9efe2020-09-10 14:01:26 +03008784 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008785 }
8786
8787 return err;
8788}
8789EXPORT_SYMBOL(dev_get_port_parent_id);
8790
8791/**
8792 * netdev_port_same_parent_id - Indicate if two network devices have
8793 * the same port parent identifier
8794 * @a: first network device
8795 * @b: second network device
8796 */
8797bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
8798{
8799 struct netdev_phys_item_id a_id = { };
8800 struct netdev_phys_item_id b_id = { };
8801
8802 if (dev_get_port_parent_id(a, &a_id, true) ||
8803 dev_get_port_parent_id(b, &b_id, true))
8804 return false;
8805
8806 return netdev_phys_item_id_same(&a_id, &b_id);
8807}
8808EXPORT_SYMBOL(netdev_port_same_parent_id);
8809
8810/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07008811 * dev_change_proto_down - update protocol port state information
8812 * @dev: device
8813 * @proto_down: new value
8814 *
8815 * This info can be used by switch drivers to set the phys state of the
8816 * port.
8817 */
8818int dev_change_proto_down(struct net_device *dev, bool proto_down)
8819{
8820 const struct net_device_ops *ops = dev->netdev_ops;
8821
8822 if (!ops->ndo_change_proto_down)
8823 return -EOPNOTSUPP;
8824 if (!netif_device_present(dev))
8825 return -ENODEV;
8826 return ops->ndo_change_proto_down(dev, proto_down);
8827}
8828EXPORT_SYMBOL(dev_change_proto_down);
8829
Andy Roulinb5899672019-02-22 18:06:36 +00008830/**
8831 * dev_change_proto_down_generic - generic implementation for
8832 * ndo_change_proto_down that sets carrier according to
8833 * proto_down.
8834 *
8835 * @dev: device
8836 * @proto_down: new value
8837 */
8838int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
8839{
8840 if (proto_down)
8841 netif_carrier_off(dev);
8842 else
8843 netif_carrier_on(dev);
8844 dev->proto_down = proto_down;
8845 return 0;
8846}
8847EXPORT_SYMBOL(dev_change_proto_down_generic);
8848
Roopa Prabhu829eb202020-07-31 17:34:01 -07008849/**
8850 * dev_change_proto_down_reason - proto down reason
8851 *
8852 * @dev: device
8853 * @mask: proto down mask
8854 * @value: proto down value
8855 */
8856void dev_change_proto_down_reason(struct net_device *dev, unsigned long mask,
8857 u32 value)
8858{
8859 int b;
8860
8861 if (!mask) {
8862 dev->proto_down_reason = value;
8863 } else {
8864 for_each_set_bit(b, &mask, 32) {
8865 if (value & (1 << b))
8866 dev->proto_down_reason |= BIT(b);
8867 else
8868 dev->proto_down_reason &= ~BIT(b);
8869 }
8870 }
8871}
8872EXPORT_SYMBOL(dev_change_proto_down_reason);
8873
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008874struct bpf_xdp_link {
8875 struct bpf_link link;
8876 struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
8877 int flags;
8878};
8879
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07008880static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008881{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008882 if (flags & XDP_FLAGS_HW_MODE)
8883 return XDP_MODE_HW;
8884 if (flags & XDP_FLAGS_DRV_MODE)
8885 return XDP_MODE_DRV;
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07008886 if (flags & XDP_FLAGS_SKB_MODE)
8887 return XDP_MODE_SKB;
8888 return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008889}
8890
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008891static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008892{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008893 switch (mode) {
8894 case XDP_MODE_SKB:
8895 return generic_xdp_install;
8896 case XDP_MODE_DRV:
8897 case XDP_MODE_HW:
8898 return dev->netdev_ops->ndo_bpf;
8899 default:
8900 return NULL;
8901 };
8902}
8903
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008904static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
8905 enum bpf_xdp_mode mode)
8906{
8907 return dev->xdp_state[mode].link;
8908}
8909
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008910static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
8911 enum bpf_xdp_mode mode)
8912{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008913 struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
8914
8915 if (link)
8916 return link->link.prog;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008917 return dev->xdp_state[mode].prog;
8918}
8919
8920u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
8921{
8922 struct bpf_prog *prog = dev_xdp_prog(dev, mode);
8923
8924 return prog ? prog->aux->id : 0;
8925}
8926
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008927static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
8928 struct bpf_xdp_link *link)
8929{
8930 dev->xdp_state[mode].link = link;
8931 dev->xdp_state[mode].prog = NULL;
8932}
8933
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008934static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
8935 struct bpf_prog *prog)
8936{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008937 dev->xdp_state[mode].link = NULL;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008938 dev->xdp_state[mode].prog = prog;
8939}
8940
8941static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
8942 bpf_op_t bpf_op, struct netlink_ext_ack *extack,
8943 u32 flags, struct bpf_prog *prog)
8944{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008945 struct netdev_bpf xdp;
Björn Töpel7e6897f2019-12-13 18:51:09 +01008946 int err;
8947
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008948 memset(&xdp, 0, sizeof(xdp));
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008949 xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008950 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07008951 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008952 xdp.prog = prog;
8953
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008954 /* Drivers assume refcnt is already incremented (i.e, prog pointer is
8955 * "moved" into driver), so they don't increment it on their own, but
8956 * they do decrement refcnt when program is detached or replaced.
8957 * Given net_device also owns link/prog, we need to bump refcnt here
8958 * to prevent drivers from underflowing it.
8959 */
8960 if (prog)
8961 bpf_prog_inc(prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01008962 err = bpf_op(dev, &xdp);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008963 if (err) {
8964 if (prog)
8965 bpf_prog_put(prog);
8966 return err;
8967 }
Björn Töpel7e6897f2019-12-13 18:51:09 +01008968
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008969 if (mode != XDP_MODE_HW)
8970 bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01008971
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008972 return 0;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008973}
8974
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008975static void dev_xdp_uninstall(struct net_device *dev)
8976{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008977 struct bpf_xdp_link *link;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008978 struct bpf_prog *prog;
8979 enum bpf_xdp_mode mode;
8980 bpf_op_t bpf_op;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008981
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008982 ASSERT_RTNL();
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008983
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008984 for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
8985 prog = dev_xdp_prog(dev, mode);
8986 if (!prog)
8987 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008988
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008989 bpf_op = dev_xdp_bpf_op(dev, mode);
8990 if (!bpf_op)
8991 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008992
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008993 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
8994
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008995 /* auto-detach link from net device */
8996 link = dev_xdp_link(dev, mode);
8997 if (link)
8998 link->dev = NULL;
8999 else
9000 bpf_prog_put(prog);
9001
9002 dev_xdp_set_link(dev, mode, NULL);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009003 }
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009004}
9005
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009006static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009007 struct bpf_xdp_link *link, struct bpf_prog *new_prog,
9008 struct bpf_prog *old_prog, u32 flags)
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009009{
9010 struct bpf_prog *cur_prog;
9011 enum bpf_xdp_mode mode;
9012 bpf_op_t bpf_op;
9013 int err;
9014
9015 ASSERT_RTNL();
9016
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009017 /* either link or prog attachment, never both */
9018 if (link && (new_prog || old_prog))
9019 return -EINVAL;
9020 /* link supports only XDP mode flags */
9021 if (link && (flags & ~XDP_FLAGS_MODES)) {
9022 NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
9023 return -EINVAL;
9024 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009025 /* just one XDP mode bit should be set, zero defaults to SKB mode */
9026 if (hweight32(flags & XDP_FLAGS_MODES) > 1) {
9027 NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
9028 return -EINVAL;
9029 }
9030 /* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
9031 if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
9032 NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
9033 return -EINVAL;
9034 }
9035
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009036 mode = dev_xdp_mode(dev, flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009037 /* can't replace attached link */
9038 if (dev_xdp_link(dev, mode)) {
9039 NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
9040 return -EBUSY;
9041 }
9042
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009043 cur_prog = dev_xdp_prog(dev, mode);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009044 /* can't replace attached prog with link */
9045 if (link && cur_prog) {
9046 NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
9047 return -EBUSY;
9048 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009049 if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
9050 NL_SET_ERR_MSG(extack, "Active program does not match expected");
9051 return -EEXIST;
9052 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009053
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009054 /* put effective new program into new_prog */
9055 if (link)
9056 new_prog = link->link.prog;
9057
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009058 if (new_prog) {
9059 bool offload = mode == XDP_MODE_HW;
9060 enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
9061 ? XDP_MODE_DRV : XDP_MODE_SKB;
9062
Andrii Nakryiko068d9d12020-08-11 19:29:23 -07009063 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
9064 NL_SET_ERR_MSG(extack, "XDP program already attached");
9065 return -EBUSY;
9066 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009067 if (!offload && dev_xdp_prog(dev, other_mode)) {
9068 NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
9069 return -EEXIST;
9070 }
9071 if (!offload && bpf_prog_is_dev_bound(new_prog->aux)) {
9072 NL_SET_ERR_MSG(extack, "Using device-bound program without HW_MODE flag is not supported");
9073 return -EINVAL;
9074 }
9075 if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
9076 NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
9077 return -EINVAL;
9078 }
9079 if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
9080 NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
9081 return -EINVAL;
9082 }
9083 }
9084
9085 /* don't call drivers if the effective program didn't change */
9086 if (new_prog != cur_prog) {
9087 bpf_op = dev_xdp_bpf_op(dev, mode);
9088 if (!bpf_op) {
9089 NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
9090 return -EOPNOTSUPP;
9091 }
9092
9093 err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
9094 if (err)
9095 return err;
9096 }
9097
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009098 if (link)
9099 dev_xdp_set_link(dev, mode, link);
9100 else
9101 dev_xdp_set_prog(dev, mode, new_prog);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009102 if (cur_prog)
9103 bpf_prog_put(cur_prog);
9104
9105 return 0;
9106}
9107
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009108static int dev_xdp_attach_link(struct net_device *dev,
9109 struct netlink_ext_ack *extack,
9110 struct bpf_xdp_link *link)
9111{
9112 return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
9113}
9114
9115static int dev_xdp_detach_link(struct net_device *dev,
9116 struct netlink_ext_ack *extack,
9117 struct bpf_xdp_link *link)
9118{
9119 enum bpf_xdp_mode mode;
9120 bpf_op_t bpf_op;
9121
9122 ASSERT_RTNL();
9123
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009124 mode = dev_xdp_mode(dev, link->flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009125 if (dev_xdp_link(dev, mode) != link)
9126 return -EINVAL;
9127
9128 bpf_op = dev_xdp_bpf_op(dev, mode);
9129 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9130 dev_xdp_set_link(dev, mode, NULL);
9131 return 0;
9132}
9133
9134static void bpf_xdp_link_release(struct bpf_link *link)
9135{
9136 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9137
9138 rtnl_lock();
9139
9140 /* if racing with net_device's tear down, xdp_link->dev might be
9141 * already NULL, in which case link was already auto-detached
9142 */
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009143 if (xdp_link->dev) {
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009144 WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009145 xdp_link->dev = NULL;
9146 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009147
9148 rtnl_unlock();
9149}
9150
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009151static int bpf_xdp_link_detach(struct bpf_link *link)
9152{
9153 bpf_xdp_link_release(link);
9154 return 0;
9155}
9156
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009157static void bpf_xdp_link_dealloc(struct bpf_link *link)
9158{
9159 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9160
9161 kfree(xdp_link);
9162}
9163
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009164static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
9165 struct seq_file *seq)
9166{
9167 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9168 u32 ifindex = 0;
9169
9170 rtnl_lock();
9171 if (xdp_link->dev)
9172 ifindex = xdp_link->dev->ifindex;
9173 rtnl_unlock();
9174
9175 seq_printf(seq, "ifindex:\t%u\n", ifindex);
9176}
9177
9178static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
9179 struct bpf_link_info *info)
9180{
9181 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9182 u32 ifindex = 0;
9183
9184 rtnl_lock();
9185 if (xdp_link->dev)
9186 ifindex = xdp_link->dev->ifindex;
9187 rtnl_unlock();
9188
9189 info->xdp.ifindex = ifindex;
9190 return 0;
9191}
9192
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009193static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
9194 struct bpf_prog *old_prog)
9195{
9196 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9197 enum bpf_xdp_mode mode;
9198 bpf_op_t bpf_op;
9199 int err = 0;
9200
9201 rtnl_lock();
9202
9203 /* link might have been auto-released already, so fail */
9204 if (!xdp_link->dev) {
9205 err = -ENOLINK;
9206 goto out_unlock;
9207 }
9208
9209 if (old_prog && link->prog != old_prog) {
9210 err = -EPERM;
9211 goto out_unlock;
9212 }
9213 old_prog = link->prog;
9214 if (old_prog == new_prog) {
9215 /* no-op, don't disturb drivers */
9216 bpf_prog_put(new_prog);
9217 goto out_unlock;
9218 }
9219
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009220 mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009221 bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
9222 err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
9223 xdp_link->flags, new_prog);
9224 if (err)
9225 goto out_unlock;
9226
9227 old_prog = xchg(&link->prog, new_prog);
9228 bpf_prog_put(old_prog);
9229
9230out_unlock:
9231 rtnl_unlock();
9232 return err;
9233}
9234
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009235static const struct bpf_link_ops bpf_xdp_link_lops = {
9236 .release = bpf_xdp_link_release,
9237 .dealloc = bpf_xdp_link_dealloc,
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009238 .detach = bpf_xdp_link_detach,
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009239 .show_fdinfo = bpf_xdp_link_show_fdinfo,
9240 .fill_link_info = bpf_xdp_link_fill_link_info,
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009241 .update_prog = bpf_xdp_link_update,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009242};
9243
9244int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
9245{
9246 struct net *net = current->nsproxy->net_ns;
9247 struct bpf_link_primer link_primer;
9248 struct bpf_xdp_link *link;
9249 struct net_device *dev;
9250 int err, fd;
9251
9252 dev = dev_get_by_index(net, attr->link_create.target_ifindex);
9253 if (!dev)
9254 return -EINVAL;
9255
9256 link = kzalloc(sizeof(*link), GFP_USER);
9257 if (!link) {
9258 err = -ENOMEM;
9259 goto out_put_dev;
9260 }
9261
9262 bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog);
9263 link->dev = dev;
9264 link->flags = attr->link_create.flags;
9265
9266 err = bpf_link_prime(&link->link, &link_primer);
9267 if (err) {
9268 kfree(link);
9269 goto out_put_dev;
9270 }
9271
9272 rtnl_lock();
9273 err = dev_xdp_attach_link(dev, NULL, link);
9274 rtnl_unlock();
9275
9276 if (err) {
9277 bpf_link_cleanup(&link_primer);
9278 goto out_put_dev;
9279 }
9280
9281 fd = bpf_link_settle(&link_primer);
9282 /* link itself doesn't hold dev's refcnt to not complicate shutdown */
9283 dev_put(dev);
9284 return fd;
9285
9286out_put_dev:
9287 dev_put(dev);
9288 return err;
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009289}
9290
9291/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07009292 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
9293 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07009294 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07009295 * @fd: new program fd or negative value to clear
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009296 * @expected_fd: old program fd that userspace expects to replace or clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01009297 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07009298 *
9299 * Set or clear a bpf program for a device
9300 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07009301int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009302 int fd, int expected_fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07009303{
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009304 enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009305 struct bpf_prog *new_prog = NULL, *old_prog = NULL;
Brenden Blancoa7862b42016-07-19 12:16:48 -07009306 int err;
9307
Daniel Borkmann85de8572016-11-28 23:16:54 +01009308 ASSERT_RTNL();
9309
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009310 if (fd >= 0) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009311 new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
9312 mode != XDP_MODE_SKB);
9313 if (IS_ERR(new_prog))
9314 return PTR_ERR(new_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009315 }
9316
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009317 if (expected_fd >= 0) {
9318 old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
9319 mode != XDP_MODE_SKB);
9320 if (IS_ERR(old_prog)) {
9321 err = PTR_ERR(old_prog);
9322 old_prog = NULL;
9323 goto err_out;
9324 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009325 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07009326
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009327 err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009328
9329err_out:
9330 if (err && new_prog)
9331 bpf_prog_put(new_prog);
9332 if (old_prog)
9333 bpf_prog_put(old_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009334 return err;
9335}
Brenden Blancoa7862b42016-07-19 12:16:48 -07009336
9337/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009338 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07009339 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07009340 *
9341 * Returns a suitable unique value for a new device interface
9342 * number. The caller must hold the rtnl semaphore or the
9343 * dev_base_lock to be sure it remains unique.
9344 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07009345static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009346{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009347 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11009348
Linus Torvalds1da177e2005-04-16 15:20:36 -07009349 for (;;) {
9350 if (++ifindex <= 0)
9351 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009352 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009353 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009354 }
9355}
9356
Linus Torvalds1da177e2005-04-16 15:20:36 -07009357/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08009358static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07009359DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009360
Stephen Hemminger6f05f622007-03-08 20:46:03 -08009361static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009362{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009363 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009364 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009365}
9366
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009367static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009368{
Krishna Kumare93737b2009-12-08 22:26:02 +00009369 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009370 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009371
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009372 BUG_ON(dev_boot_phase);
9373 ASSERT_RTNL();
9374
Krishna Kumare93737b2009-12-08 22:26:02 +00009375 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009376 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00009377 * for initialization unwind. Remove those
9378 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009379 */
9380 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009381 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
9382 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009383
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009384 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00009385 list_del(&dev->unreg_list);
9386 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009387 }
Eric Dumazet449f4542011-05-19 12:24:16 +00009388 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009389 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00009390 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009391
Octavian Purdila44345722010-12-13 12:44:07 +00009392 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009393 list_for_each_entry(dev, head, unreg_list)
9394 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04009395 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009396
Octavian Purdila44345722010-12-13 12:44:07 +00009397 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009398 /* And unlink it from device chain. */
9399 unlist_netdevice(dev);
9400
9401 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009402 }
Eric Dumazet41852492016-08-26 12:50:39 -07009403 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009404
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009405 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009406
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009407 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009408 struct sk_buff *skb = NULL;
9409
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009410 /* Shutdown queueing discipline. */
9411 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009412
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009413 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009414
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009415 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009416 * this device. They should clean all the things.
9417 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009418 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
9419
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009420 if (!dev->rtnl_link_ops ||
9421 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04009422 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009423 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009424
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009425 /*
9426 * Flush the unicast and multicast chains
9427 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009428 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009429 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009430
Jiri Pirko36fbf1e2019-09-30 11:48:16 +02009431 netdev_name_node_alt_flush(dev);
Jiri Pirkoff927412019-09-30 11:48:15 +02009432 netdev_name_node_free(dev->name_node);
9433
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009434 if (dev->netdev_ops->ndo_uninit)
9435 dev->netdev_ops->ndo_uninit(dev);
9436
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009437 if (skb)
9438 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07009439
Jiri Pirko9ff162a2013-01-03 22:48:49 +00009440 /* Notifier chain MUST detach us all upper devices. */
9441 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07009442 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009443
9444 /* Remove entries from kobject tree */
9445 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00009446#ifdef CONFIG_XPS
9447 /* Remove XPS queueing entries */
9448 netif_reset_xps_queues_gt(dev, 0);
9449#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009450 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009451
Eric W. Biederman850a5452011-10-13 22:25:23 +00009452 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009453
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00009454 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009455 dev_put(dev);
9456}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009457
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009458static void rollback_registered(struct net_device *dev)
9459{
9460 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009461
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009462 list_add(&dev->unreg_list, &single);
9463 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00009464 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009465}
9466
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009467static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
9468 struct net_device *upper, netdev_features_t features)
9469{
9470 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9471 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009472 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009473
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009474 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009475 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009476 if (!(upper->wanted_features & feature)
9477 && (features & feature)) {
9478 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
9479 &feature, upper->name);
9480 features &= ~feature;
9481 }
9482 }
9483
9484 return features;
9485}
9486
9487static void netdev_sync_lower_features(struct net_device *upper,
9488 struct net_device *lower, netdev_features_t features)
9489{
9490 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9491 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009492 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009493
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009494 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009495 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009496 if (!(features & feature) && (lower->features & feature)) {
9497 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
9498 &feature, lower->name);
9499 lower->wanted_features &= ~feature;
Cong Wangdd912302020-05-07 12:19:03 -07009500 __netdev_update_features(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009501
9502 if (unlikely(lower->features & feature))
9503 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
9504 &feature, lower->name);
Cong Wangdd912302020-05-07 12:19:03 -07009505 else
9506 netdev_features_change(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009507 }
9508 }
9509}
9510
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009511static netdev_features_t netdev_fix_features(struct net_device *dev,
9512 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07009513{
Michał Mirosław57422dc2011-01-22 12:14:12 +00009514 /* Fix illegal checksum combinations */
9515 if ((features & NETIF_F_HW_CSUM) &&
9516 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009517 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00009518 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
9519 }
9520
Herbert Xub63365a2008-10-23 01:11:29 -07009521 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009522 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009523 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009524 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07009525 }
9526
Pravin B Shelarec5f0612013-03-07 09:28:01 +00009527 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
9528 !(features & NETIF_F_IP_CSUM)) {
9529 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
9530 features &= ~NETIF_F_TSO;
9531 features &= ~NETIF_F_TSO_ECN;
9532 }
9533
9534 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
9535 !(features & NETIF_F_IPV6_CSUM)) {
9536 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
9537 features &= ~NETIF_F_TSO6;
9538 }
9539
Alexander Duyckb1dc4972016-05-02 09:38:24 -07009540 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
9541 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
9542 features &= ~NETIF_F_TSO_MANGLEID;
9543
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00009544 /* TSO ECN requires that TSO is present as well. */
9545 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
9546 features &= ~NETIF_F_TSO_ECN;
9547
Michał Mirosław212b5732011-02-15 16:59:16 +00009548 /* Software GSO depends on SG. */
9549 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009550 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00009551 features &= ~NETIF_F_GSO;
9552 }
9553
Alexander Duyck802ab552016-04-10 21:45:03 -04009554 /* GSO partial features require GSO partial be set */
9555 if ((features & dev->gso_partial_features) &&
9556 !(features & NETIF_F_GSO_PARTIAL)) {
9557 netdev_dbg(dev,
9558 "Dropping partially supported GSO features since no GSO partial.\n");
9559 features &= ~dev->gso_partial_features;
9560 }
9561
Michael Chanfb1f5f72017-12-16 03:09:40 -05009562 if (!(features & NETIF_F_RXCSUM)) {
9563 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
9564 * successfully merged by hardware must also have the
9565 * checksum verified by hardware. If the user does not
9566 * want to enable RXCSUM, logically, we should disable GRO_HW.
9567 */
9568 if (features & NETIF_F_GRO_HW) {
9569 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
9570 features &= ~NETIF_F_GRO_HW;
9571 }
9572 }
9573
Gal Pressmande8d5ab2018-03-12 11:48:49 +02009574 /* LRO/HW-GRO features cannot be combined with RX-FCS */
9575 if (features & NETIF_F_RXFCS) {
9576 if (features & NETIF_F_LRO) {
9577 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
9578 features &= ~NETIF_F_LRO;
9579 }
9580
9581 if (features & NETIF_F_GRO_HW) {
9582 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
9583 features &= ~NETIF_F_GRO_HW;
9584 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02009585 }
9586
Herbert Xub63365a2008-10-23 01:11:29 -07009587 return features;
9588}
Herbert Xub63365a2008-10-23 01:11:29 -07009589
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009590int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00009591{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009592 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009593 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009594 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05009595 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00009596
Michał Mirosław87267482011-04-12 09:56:38 +00009597 ASSERT_RTNL();
9598
Michał Mirosław5455c692011-02-15 16:59:17 +00009599 features = netdev_get_wanted_features(dev);
9600
9601 if (dev->netdev_ops->ndo_fix_features)
9602 features = dev->netdev_ops->ndo_fix_features(dev, features);
9603
9604 /* driver might be less strict about feature dependencies */
9605 features = netdev_fix_features(dev, features);
9606
Randy Dunlap4250b752020-09-17 21:35:15 -07009607 /* some features can't be enabled if they're off on an upper device */
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009608 netdev_for_each_upper_dev_rcu(dev, upper, iter)
9609 features = netdev_sync_upper_features(dev, upper, features);
9610
Michał Mirosław5455c692011-02-15 16:59:17 +00009611 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05009612 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00009613
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009614 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
9615 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00009616
9617 if (dev->netdev_ops->ndo_set_features)
9618 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01009619 else
9620 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00009621
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009622 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00009623 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009624 "set_features() failed (%d); wanted %pNF, left %pNF\n",
9625 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01009626 /* return non-0 since some features might have changed and
9627 * it's better to fire a spurious notification than miss it
9628 */
9629 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009630 }
9631
Jarod Wilsone7868a82015-11-03 23:09:32 -05009632sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009633 /* some features must be disabled on lower devices when disabled
9634 * on an upper device (think: bonding master or bridge)
9635 */
9636 netdev_for_each_lower_dev(dev, lower, iter)
9637 netdev_sync_lower_features(dev, lower, features);
9638
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009639 if (!err) {
9640 netdev_features_t diff = features ^ dev->features;
9641
9642 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
9643 /* udp_tunnel_{get,drop}_rx_info both need
9644 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
9645 * device, or they won't do anything.
9646 * Thus we need to update dev->features
9647 * *before* calling udp_tunnel_get_rx_info,
9648 * but *after* calling udp_tunnel_drop_rx_info.
9649 */
9650 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
9651 dev->features = features;
9652 udp_tunnel_get_rx_info(dev);
9653 } else {
9654 udp_tunnel_drop_rx_info(dev);
9655 }
9656 }
9657
Gal Pressman9daae9b2018-03-28 17:46:54 +03009658 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
9659 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
9660 dev->features = features;
9661 err |= vlan_get_rx_ctag_filter_info(dev);
9662 } else {
9663 vlan_drop_rx_ctag_filter_info(dev);
9664 }
9665 }
9666
9667 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
9668 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
9669 dev->features = features;
9670 err |= vlan_get_rx_stag_filter_info(dev);
9671 } else {
9672 vlan_drop_rx_stag_filter_info(dev);
9673 }
9674 }
9675
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009676 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009677 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009678
Jarod Wilsone7868a82015-11-03 23:09:32 -05009679 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009680}
9681
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009682/**
9683 * netdev_update_features - recalculate device features
9684 * @dev: the device to check
9685 *
9686 * Recalculate dev->features set and send notifications if it
9687 * has changed. Should be called after driver or hardware dependent
9688 * conditions might have changed that influence the features.
9689 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009690void netdev_update_features(struct net_device *dev)
9691{
9692 if (__netdev_update_features(dev))
9693 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00009694}
9695EXPORT_SYMBOL(netdev_update_features);
9696
Linus Torvalds1da177e2005-04-16 15:20:36 -07009697/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009698 * netdev_change_features - recalculate device features
9699 * @dev: the device to check
9700 *
9701 * Recalculate dev->features set and send notifications even
9702 * if they have not changed. Should be called instead of
9703 * netdev_update_features() if also dev->vlan_features might
9704 * have changed to allow the changes to be propagated to stacked
9705 * VLAN devices.
9706 */
9707void netdev_change_features(struct net_device *dev)
9708{
9709 __netdev_update_features(dev);
9710 netdev_features_change(dev);
9711}
9712EXPORT_SYMBOL(netdev_change_features);
9713
9714/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009715 * netif_stacked_transfer_operstate - transfer operstate
9716 * @rootdev: the root or lower level device to transfer state from
9717 * @dev: the device to transfer operstate to
9718 *
9719 * Transfer operational state from root to device. This is normally
9720 * called when a stacking relationship exists between the root
9721 * device and the device(a leaf device).
9722 */
9723void netif_stacked_transfer_operstate(const struct net_device *rootdev,
9724 struct net_device *dev)
9725{
9726 if (rootdev->operstate == IF_OPER_DORMANT)
9727 netif_dormant_on(dev);
9728 else
9729 netif_dormant_off(dev);
9730
Andrew Lunneec517cd2020-04-20 00:11:50 +02009731 if (rootdev->operstate == IF_OPER_TESTING)
9732 netif_testing_on(dev);
9733 else
9734 netif_testing_off(dev);
9735
Zhang Shengju0575c862017-04-26 17:49:38 +08009736 if (netif_carrier_ok(rootdev))
9737 netif_carrier_on(dev);
9738 else
9739 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009740}
9741EXPORT_SYMBOL(netif_stacked_transfer_operstate);
9742
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009743static int netif_alloc_rx_queues(struct net_device *dev)
9744{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009745 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00009746 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05309747 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009748 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009749
Tom Herbertbd25fa72010-10-18 18:00:16 +00009750 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009751
Michal Hockodcda9b02017-07-12 14:36:45 -07009752 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009753 if (!rx)
9754 return -ENOMEM;
9755
Tom Herbertbd25fa72010-10-18 18:00:16 +00009756 dev->_rx = rx;
9757
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009758 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00009759 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009760
9761 /* XDP RX-queue setup */
9762 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
9763 if (err < 0)
9764 goto err_rxq_info;
9765 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009766 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009767
9768err_rxq_info:
9769 /* Rollback successful reg's and free other resources */
9770 while (i--)
9771 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08009772 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009773 dev->_rx = NULL;
9774 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009775}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009776
9777static void netif_free_rx_queues(struct net_device *dev)
9778{
9779 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009780
9781 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
9782 if (!dev->_rx)
9783 return;
9784
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009785 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08009786 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
9787
9788 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009789}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009790
Changli Gaoaa942102010-12-04 02:31:41 +00009791static void netdev_init_one_queue(struct net_device *dev,
9792 struct netdev_queue *queue, void *_unused)
9793{
9794 /* Initialize queue lock */
9795 spin_lock_init(&queue->_xmit_lock);
Cong Wang1a33e102020-05-02 22:22:19 -07009796 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
Changli Gaoaa942102010-12-04 02:31:41 +00009797 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00009798 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00009799 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00009800#ifdef CONFIG_BQL
9801 dql_init(&queue->dql, HZ);
9802#endif
Changli Gaoaa942102010-12-04 02:31:41 +00009803}
9804
Eric Dumazet60877a32013-06-20 01:15:51 -07009805static void netif_free_tx_queues(struct net_device *dev)
9806{
WANG Cong4cb28972014-06-02 15:55:22 -07009807 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07009808}
9809
Tom Herberte6484932010-10-18 18:04:39 +00009810static int netif_alloc_netdev_queues(struct net_device *dev)
9811{
9812 unsigned int count = dev->num_tx_queues;
9813 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07009814 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00009815
Eric Dumazetd3397272015-07-06 17:13:26 +02009816 if (count < 1 || count > 0xffff)
9817 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00009818
Michal Hockodcda9b02017-07-12 14:36:45 -07009819 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009820 if (!tx)
9821 return -ENOMEM;
9822
Tom Herberte6484932010-10-18 18:04:39 +00009823 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00009824
Tom Herberte6484932010-10-18 18:04:39 +00009825 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
9826 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00009827
9828 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00009829}
9830
Denys Vlasenkoa2029242015-05-11 21:17:53 +02009831void netif_tx_stop_all_queues(struct net_device *dev)
9832{
9833 unsigned int i;
9834
9835 for (i = 0; i < dev->num_tx_queues; i++) {
9836 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11009837
Denys Vlasenkoa2029242015-05-11 21:17:53 +02009838 netif_tx_stop_queue(txq);
9839 }
9840}
9841EXPORT_SYMBOL(netif_tx_stop_all_queues);
9842
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009843/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009844 * register_netdevice - register a network device
9845 * @dev: device to register
9846 *
9847 * Take a completed network device structure and add it to the kernel
9848 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
9849 * chain. 0 is returned on success. A negative errno code is returned
9850 * on a failure to set up the device, or if the name is a duplicate.
9851 *
9852 * Callers must hold the rtnl semaphore. You may want
9853 * register_netdev() instead of this.
9854 *
9855 * BUGS:
9856 * The locking appears insufficient to guarantee two parallel registers
9857 * will not get the same name.
9858 */
9859
9860int register_netdevice(struct net_device *dev)
9861{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009862 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009863 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009864
Florian Fainellie283de32018-04-30 14:20:05 -07009865 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
9866 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009867 BUG_ON(dev_boot_phase);
9868 ASSERT_RTNL();
9869
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009870 might_sleep();
9871
Linus Torvalds1da177e2005-04-16 15:20:36 -07009872 /* When net_device's are persistent, this will be fatal. */
9873 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009874 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009875
Jakub Kicinski9000edb2020-03-16 13:47:12 -07009876 ret = ethtool_check_ops(dev->ethtool_ops);
9877 if (ret)
9878 return ret;
9879
David S. Millerf1f28aa2008-07-15 00:08:33 -07009880 spin_lock_init(&dev->addr_list_lock);
Cong Wang845e0eb2020-06-08 14:53:01 -07009881 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009882
Gao feng828de4f2012-09-13 20:58:27 +00009883 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00009884 if (ret < 0)
9885 goto out;
9886
Eric Dumazet9077f052019-10-03 08:59:24 -07009887 ret = -ENOMEM;
Jiri Pirkoff927412019-09-30 11:48:15 +02009888 dev->name_node = netdev_name_node_head_alloc(dev);
9889 if (!dev->name_node)
9890 goto out;
9891
Linus Torvalds1da177e2005-04-16 15:20:36 -07009892 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009893 if (dev->netdev_ops->ndo_init) {
9894 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009895 if (ret) {
9896 if (ret > 0)
9897 ret = -EIO;
Dan Carpenter42c17fa2019-12-03 17:12:39 +03009898 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899 }
9900 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009901
Patrick McHardyf6469682013-04-19 02:04:27 +00009902 if (((dev->hw_features | dev->features) &
9903 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00009904 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
9905 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
9906 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
9907 ret = -EINVAL;
9908 goto err_uninit;
9909 }
9910
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00009911 ret = -EBUSY;
9912 if (!dev->ifindex)
9913 dev->ifindex = dev_new_index(net);
9914 else if (__dev_get_by_index(net, dev->ifindex))
9915 goto err_uninit;
9916
Michał Mirosław5455c692011-02-15 16:59:17 +00009917 /* Transfer changeable features to wanted_features and enable
9918 * software offloads (GSO and GRO).
9919 */
Steffen Klassert1a3c9982020-01-25 11:26:43 +01009920 dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
Michał Mirosław14d12322011-02-22 16:52:28 +00009921 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02009922
9923 if (dev->netdev_ops->ndo_udp_tunnel_add) {
9924 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9925 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9926 }
9927
Michał Mirosław14d12322011-02-22 16:52:28 +00009928 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009929
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009930 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00009931 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009932
Alexander Duyck7f348a62016-04-20 16:51:00 -04009933 /* If IPv4 TCP segmentation offload is supported we should also
9934 * allow the device to enable segmenting the frame with the option
9935 * of ignoring a static IP ID value. This doesn't enable the
9936 * feature itself but allows the user to enable it later.
9937 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009938 if (dev->hw_features & NETIF_F_TSO)
9939 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04009940 if (dev->vlan_features & NETIF_F_TSO)
9941 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
9942 if (dev->mpls_features & NETIF_F_TSO)
9943 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
9944 if (dev->hw_enc_features & NETIF_F_TSO)
9945 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07009946
Michał Mirosław1180e7d2011-07-14 14:41:11 -07009947 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00009948 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07009949 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00009950
Pravin B Shelaree579672013-03-07 09:28:08 +00009951 /* Make NETIF_F_SG inheritable to tunnel devices.
9952 */
Alexander Duyck802ab552016-04-10 21:45:03 -04009953 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00009954
Simon Horman0d89d202013-05-23 21:02:52 +00009955 /* Make NETIF_F_SG inheritable to MPLS.
9956 */
9957 dev->mpls_features |= NETIF_F_SG;
9958
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00009959 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
9960 ret = notifier_to_errno(ret);
9961 if (ret)
9962 goto err_uninit;
9963
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009964 ret = netdev_register_kobject(dev);
Jouni Hogandercb626bf2020-01-20 09:51:03 +02009965 if (ret) {
9966 dev->reg_state = NETREG_UNREGISTERED;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07009967 goto err_uninit;
Jouni Hogandercb626bf2020-01-20 09:51:03 +02009968 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009969 dev->reg_state = NETREG_REGISTERED;
9970
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009971 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00009972
Linus Torvalds1da177e2005-04-16 15:20:36 -07009973 /*
9974 * Default initial state at registry is that the
9975 * device is present.
9976 */
9977
9978 set_bit(__LINK_STATE_PRESENT, &dev->state);
9979
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01009980 linkwatch_init_dev(dev);
9981
Linus Torvalds1da177e2005-04-16 15:20:36 -07009982 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009983 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009984 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04009985 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986
Jiri Pirko948b3372013-01-08 01:38:25 +00009987 /* If the device has permanent device address, driver should
9988 * set dev_addr and also addr_assign_type should be set to
9989 * NET_ADDR_PERM (default value).
9990 */
9991 if (dev->addr_assign_type == NET_ADDR_PERM)
9992 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
9993
Linus Torvalds1da177e2005-04-16 15:20:36 -07009994 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07009995 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07009996 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009997 if (ret) {
9998 rollback_registered(dev);
Subash Abhinov Kasiviswanathan10cc5142019-09-10 14:02:57 -06009999 rcu_barrier();
10000
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010001 dev->reg_state = NETREG_UNREGISTERED;
Yang Yingliang814152a2020-06-16 09:39:21 +000010002 /* We should put the kobject that hold in
10003 * netdev_unregister_kobject(), otherwise
10004 * the net device cannot be freed when
10005 * driver calls free_netdev(), because the
10006 * kobject is being hold.
10007 */
10008 kobject_put(&dev->dev.kobj);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010009 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010010 /*
10011 * Prevent userspace races by waiting until the network
10012 * device is fully setup before sending notifications.
10013 */
Patrick McHardya2835762010-02-26 06:34:51 +000010014 if (!dev->rtnl_link_ops ||
10015 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010016 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010017
10018out:
10019 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010020
10021err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010022 if (dev->netdev_ops->ndo_uninit)
10023 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -040010024 if (dev->priv_destructor)
10025 dev->priv_destructor(dev);
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010026err_free_name:
10027 netdev_name_node_free(dev->name_node);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010028 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010029}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010030EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010031
10032/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010033 * init_dummy_netdev - init a dummy network device for NAPI
10034 * @dev: device to init
10035 *
10036 * This takes a network device structure and initialize the minimum
10037 * amount of fields so it can be used to schedule NAPI polls without
10038 * registering a full blown interface. This is to be used by drivers
10039 * that need to tie several hardware interfaces to a single NAPI
10040 * poll scheduler due to HW limitations.
10041 */
10042int init_dummy_netdev(struct net_device *dev)
10043{
10044 /* Clear everything. Note we don't initialize spinlocks
10045 * are they aren't supposed to be taken by any of the
10046 * NAPI code and this dummy netdev is supposed to be
10047 * only ever used for NAPI polls
10048 */
10049 memset(dev, 0, sizeof(struct net_device));
10050
10051 /* make sure we BUG if trying to hit standard
10052 * register/unregister code path
10053 */
10054 dev->reg_state = NETREG_DUMMY;
10055
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010056 /* NAPI wants this */
10057 INIT_LIST_HEAD(&dev->napi_list);
10058
10059 /* a dummy interface is started by default */
10060 set_bit(__LINK_STATE_PRESENT, &dev->state);
10061 set_bit(__LINK_STATE_START, &dev->state);
10062
Josh Elsasser35edfdc2019-01-26 14:38:33 -080010063 /* napi_busy_loop stats accounting wants this */
10064 dev_net_set(dev, &init_net);
10065
Eric Dumazet29b44332010-10-11 10:22:12 +000010066 /* Note : We dont allocate pcpu_refcnt for dummy devices,
10067 * because users of this 'device' dont need to change
10068 * its refcount.
10069 */
10070
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010071 return 0;
10072}
10073EXPORT_SYMBOL_GPL(init_dummy_netdev);
10074
10075
10076/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010077 * register_netdev - register a network device
10078 * @dev: device to register
10079 *
10080 * Take a completed network device structure and add it to the kernel
10081 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10082 * chain. 0 is returned on success. A negative errno code is returned
10083 * on a failure to set up the device, or if the name is a duplicate.
10084 *
Borislav Petkov38b4da32007-04-20 22:14:10 -070010085 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010086 * and expands the device name if you passed a format string to
10087 * alloc_netdev.
10088 */
10089int register_netdev(struct net_device *dev)
10090{
10091 int err;
10092
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +030010093 if (rtnl_lock_killable())
10094 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010095 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010096 rtnl_unlock();
10097 return err;
10098}
10099EXPORT_SYMBOL(register_netdev);
10100
Eric Dumazet29b44332010-10-11 10:22:12 +000010101int netdev_refcnt_read(const struct net_device *dev)
10102{
10103 int i, refcnt = 0;
10104
10105 for_each_possible_cpu(i)
10106 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
10107 return refcnt;
10108}
10109EXPORT_SYMBOL(netdev_refcnt_read);
10110
Mauro Carvalho Chehabde2b5412020-09-22 13:22:52 +020010111#define WAIT_REFS_MIN_MSECS 1
10112#define WAIT_REFS_MAX_MSECS 250
Ben Hutchings2c530402012-07-10 10:55:09 +000010113/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010114 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +000010115 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010116 *
10117 * This is called when unregistering network devices.
10118 *
10119 * Any protocol or device that holds a reference should register
10120 * for netdevice notification, and cleanup and put back the
10121 * reference if they receive an UNREGISTER event.
10122 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010123 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010124 */
10125static void netdev_wait_allrefs(struct net_device *dev)
10126{
10127 unsigned long rebroadcast_time, warning_time;
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010128 int wait = 0, refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010129
Eric Dumazete014deb2009-11-17 05:59:21 +000010130 linkwatch_forget_dev(dev);
10131
Linus Torvalds1da177e2005-04-16 15:20:36 -070010132 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +000010133 refcnt = netdev_refcnt_read(dev);
10134
10135 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010137 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010138
10139 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010140 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010141
Eric Dumazet748e2d92012-08-22 21:50:59 +000010142 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010143 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +000010144 rtnl_lock();
10145
Linus Torvalds1da177e2005-04-16 15:20:36 -070010146 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
10147 &dev->state)) {
10148 /* We must not have linkwatch events
10149 * pending on unregister. If this
10150 * happens, we simply run the queue
10151 * unscheduled, resulting in a noop
10152 * for this device.
10153 */
10154 linkwatch_run_queue();
10155 }
10156
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010157 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010158
10159 rebroadcast_time = jiffies;
10160 }
10161
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010162 if (!wait) {
10163 rcu_barrier();
10164 wait = WAIT_REFS_MIN_MSECS;
10165 } else {
10166 msleep(wait);
10167 wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
10168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010169
Eric Dumazet29b44332010-10-11 10:22:12 +000010170 refcnt = netdev_refcnt_read(dev);
10171
Eric Dumazetd7c04b02019-05-16 08:09:57 -070010172 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010173 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
10174 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010175 warning_time = jiffies;
10176 }
10177 }
10178}
10179
10180/* The sequence is:
10181 *
10182 * rtnl_lock();
10183 * ...
10184 * register_netdevice(x1);
10185 * register_netdevice(x2);
10186 * ...
10187 * unregister_netdevice(y1);
10188 * unregister_netdevice(y2);
10189 * ...
10190 * rtnl_unlock();
10191 * free_netdev(y1);
10192 * free_netdev(y2);
10193 *
Herbert Xu58ec3b42008-10-07 15:50:03 -070010194 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -070010195 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010196 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070010197 * without deadlocking with linkwatch via keventd.
10198 * 2) Since we run with the RTNL semaphore not held, we can sleep
10199 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -070010200 *
10201 * We must not return until all unregister events added during
10202 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010204void netdev_run_todo(void)
10205{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010206 struct list_head list;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010207#ifdef CONFIG_LOCKDEP
10208 struct list_head unlink_list;
10209
10210 list_replace_init(&net_unlink_list, &unlink_list);
10211
10212 while (!list_empty(&unlink_list)) {
10213 struct net_device *dev = list_first_entry(&unlink_list,
10214 struct net_device,
10215 unlink_list);
Taehee Yoo0e8b8d62020-10-15 16:26:06 +000010216 list_del_init(&dev->unlink_list);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010217 dev->nested_level = dev->lower_level - 1;
10218 }
10219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010220
Linus Torvalds1da177e2005-04-16 15:20:36 -070010221 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010222 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -070010223
10224 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010225
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010226
10227 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +000010228 if (!list_empty(&list))
10229 rcu_barrier();
10230
Linus Torvalds1da177e2005-04-16 15:20:36 -070010231 while (!list_empty(&list)) {
10232 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +000010233 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010234 list_del(&dev->todo_list);
10235
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010236 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010237 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070010238 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010239 dump_stack();
10240 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010241 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010242
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010243 dev->reg_state = NETREG_UNREGISTERED;
10244
10245 netdev_wait_allrefs(dev);
10246
10247 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +000010248 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -080010249 BUG_ON(!list_empty(&dev->ptype_all));
10250 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +000010251 WARN_ON(rcu_access_pointer(dev->ip_ptr));
10252 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -080010253#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -070010254 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -080010255#endif
David S. Millercf124db2017-05-08 12:52:56 -040010256 if (dev->priv_destructor)
10257 dev->priv_destructor(dev);
10258 if (dev->needs_free_netdev)
10259 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010260
Eric W. Biederman50624c92013-09-23 21:19:49 -070010261 /* Report a network device has been unregistered */
10262 rtnl_lock();
10263 dev_net(dev)->dev_unreg_count--;
10264 __rtnl_unlock();
10265 wake_up(&netdev_unregistering_wq);
10266
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010267 /* Free network device */
10268 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010270}
10271
Jarod Wilson92566452016-02-01 18:51:04 -050010272/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
10273 * all the same fields in the same order as net_device_stats, with only
10274 * the type differing, but rtnl_link_stats64 may have additional fields
10275 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +000010276 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010277void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
10278 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +000010279{
10280#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -050010281 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +020010282 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -050010283 /* zero out counters that only exist in rtnl_link_stats64 */
10284 memset((char *)stats64 + sizeof(*netdev_stats), 0,
10285 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010286#else
Jarod Wilson92566452016-02-01 18:51:04 -050010287 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010288 const unsigned long *src = (const unsigned long *)netdev_stats;
10289 u64 *dst = (u64 *)stats64;
10290
Jarod Wilson92566452016-02-01 18:51:04 -050010291 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010292 for (i = 0; i < n; i++)
10293 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -050010294 /* zero out counters that only exist in rtnl_link_stats64 */
10295 memset((char *)stats64 + n * sizeof(u64), 0,
10296 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010297#endif
10298}
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010299EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010300
Eric Dumazetd83345a2009-11-16 03:36:51 +000010301/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010302 * dev_get_stats - get network device statistics
10303 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -070010304 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010305 *
Ben Hutchingsd7753512010-07-09 09:12:41 +000010306 * Get network statistics from device. Return @storage.
10307 * The device driver may provide its own method by setting
10308 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
10309 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010310 */
Ben Hutchingsd7753512010-07-09 09:12:41 +000010311struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
10312 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +000010313{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010314 const struct net_device_ops *ops = dev->netdev_ops;
10315
Eric Dumazet28172732010-07-07 14:58:56 -070010316 if (ops->ndo_get_stats64) {
10317 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010318 ops->ndo_get_stats64(dev, storage);
10319 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +000010320 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010321 } else {
10322 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -070010323 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -070010324 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
10325 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
10326 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -070010327 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -070010328}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010329EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -070010330
Heiner Kallweit44fa32f2020-10-12 10:01:27 +020010331/**
10332 * dev_fetch_sw_netstats - get per-cpu network device statistics
10333 * @s: place to store stats
10334 * @netstats: per-cpu network stats to read from
10335 *
10336 * Read per-cpu network statistics and populate the related fields in @s.
10337 */
10338void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
10339 const struct pcpu_sw_netstats __percpu *netstats)
10340{
10341 int cpu;
10342
10343 for_each_possible_cpu(cpu) {
10344 const struct pcpu_sw_netstats *stats;
10345 struct pcpu_sw_netstats tmp;
10346 unsigned int start;
10347
10348 stats = per_cpu_ptr(netstats, cpu);
10349 do {
10350 start = u64_stats_fetch_begin_irq(&stats->syncp);
10351 tmp.rx_packets = stats->rx_packets;
10352 tmp.rx_bytes = stats->rx_bytes;
10353 tmp.tx_packets = stats->tx_packets;
10354 tmp.tx_bytes = stats->tx_bytes;
10355 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
10356
10357 s->rx_packets += tmp.rx_packets;
10358 s->rx_bytes += tmp.rx_bytes;
10359 s->tx_packets += tmp.tx_packets;
10360 s->tx_bytes += tmp.tx_bytes;
10361 }
10362}
10363EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
10364
Eric Dumazet24824a02010-10-02 06:11:55 +000010365struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -070010366{
Eric Dumazet24824a02010-10-02 06:11:55 +000010367 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -070010368
Eric Dumazet24824a02010-10-02 06:11:55 +000010369#ifdef CONFIG_NET_CLS_ACT
10370 if (queue)
10371 return queue;
10372 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10373 if (!queue)
10374 return NULL;
10375 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -080010376 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +000010377 queue->qdisc_sleeping = &noop_qdisc;
10378 rcu_assign_pointer(dev->ingress_queue, queue);
10379#endif
10380 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -070010381}
10382
Eric Dumazet2c60db02012-09-16 09:17:26 +000010383static const struct ethtool_ops default_ethtool_ops;
10384
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +000010385void netdev_set_default_ethtool_ops(struct net_device *dev,
10386 const struct ethtool_ops *ops)
10387{
10388 if (dev->ethtool_ops == &default_ethtool_ops)
10389 dev->ethtool_ops = ops;
10390}
10391EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
10392
Eric Dumazet74d332c2013-10-30 13:10:44 -070010393void netdev_freemem(struct net_device *dev)
10394{
10395 char *addr = (char *)dev - dev->padded;
10396
WANG Cong4cb28972014-06-02 15:55:22 -070010397 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010398}
10399
Linus Torvalds1da177e2005-04-16 15:20:36 -070010400/**
tcharding722c9a02017-02-09 17:56:04 +110010401 * alloc_netdev_mqs - allocate network device
10402 * @sizeof_priv: size of private data to allocate space for
10403 * @name: device name format string
10404 * @name_assign_type: origin of device name
10405 * @setup: callback to initialize device
10406 * @txqs: the number of TX subqueues to allocate
10407 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -070010408 *
tcharding722c9a02017-02-09 17:56:04 +110010409 * Allocates a struct net_device with private data area for driver use
10410 * and performs basic initialization. Also allocates subqueue structs
10411 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412 */
Tom Herbert36909ea2011-01-09 19:36:31 +000010413struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +020010414 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +000010415 void (*setup)(struct net_device *),
10416 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010417{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010418 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +030010419 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010420 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010421
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -070010422 BUG_ON(strlen(name) >= sizeof(dev->name));
10423
Tom Herbert36909ea2011-01-09 19:36:31 +000010424 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010425 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +000010426 return NULL;
10427 }
10428
Tom Herbert36909ea2011-01-09 19:36:31 +000010429 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010430 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +000010431 return NULL;
10432 }
Tom Herbert36909ea2011-01-09 19:36:31 +000010433
David S. Millerfd2ea0a2008-07-17 01:56:23 -070010434 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010435 if (sizeof_priv) {
10436 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010437 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010438 alloc_size += sizeof_priv;
10439 }
10440 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010441 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010442
Michal Hockodcda9b02017-07-12 14:36:45 -070010443 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +000010444 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010445 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010446
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010447 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010448 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010449
Eric Dumazet29b44332010-10-11 10:22:12 +000010450 dev->pcpu_refcnt = alloc_percpu(int);
10451 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -070010452 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010453
Linus Torvalds1da177e2005-04-16 15:20:36 -070010454 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +000010455 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010456
Jiri Pirko22bedad32010-04-01 21:22:57 +000010457 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010458 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +000010459
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010460 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010461
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -070010462 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +000010463 dev->gso_max_segs = GSO_MAX_SEGS;
Taehee Yoo5343da42019-10-21 18:47:50 +000010464 dev->upper_level = 1;
10465 dev->lower_level = 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010466#ifdef CONFIG_LOCKDEP
10467 dev->nested_level = 0;
10468 INIT_LIST_HEAD(&dev->unlink_list);
10469#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010470
Herbert Xud565b0a2008-12-15 23:38:52 -080010471 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010472 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -070010473 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +000010474 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +020010475 INIT_LIST_HEAD(&dev->adj_list.upper);
10476 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -080010477 INIT_LIST_HEAD(&dev->ptype_all);
10478 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Pirko93642e12020-01-25 12:17:08 +010010479 INIT_LIST_HEAD(&dev->net_notifier_list);
Jiri Kosina59cc1f62016-08-10 11:05:15 +020010480#ifdef CONFIG_NET_SCHED
10481 hash_init(dev->qdisc_hash);
10482#endif
Eric Dumazet02875872014-10-05 18:38:35 -070010483 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010484 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010485
Phil Suttera8131042016-02-17 15:37:43 +010010486 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +020010487 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +010010488 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +010010489 }
Phil Sutter906470c2015-08-18 10:30:48 +020010490
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010491 dev->num_tx_queues = txqs;
10492 dev->real_num_tx_queues = txqs;
10493 if (netif_alloc_netdev_queues(dev))
10494 goto free_all;
10495
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010496 dev->num_rx_queues = rxqs;
10497 dev->real_num_rx_queues = rxqs;
10498 if (netif_alloc_rx_queues(dev))
10499 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010500
Linus Torvalds1da177e2005-04-16 15:20:36 -070010501 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +020010502 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +000010503 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +000010504 if (!dev->ethtool_ops)
10505 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +020010506
Daniel Borkmann357b6cc2020-03-18 10:33:22 +010010507 nf_hook_ingress_init(dev);
Pablo Neirae687ad62015-05-13 18:19:38 +020010508
Linus Torvalds1da177e2005-04-16 15:20:36 -070010509 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010510
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010511free_all:
10512 free_netdev(dev);
10513 return NULL;
10514
Eric Dumazet29b44332010-10-11 10:22:12 +000010515free_pcpu:
10516 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010517free_dev:
10518 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010519 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010520}
Tom Herbert36909ea2011-01-09 19:36:31 +000010521EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010522
10523/**
tcharding722c9a02017-02-09 17:56:04 +110010524 * free_netdev - free network device
10525 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010526 *
tcharding722c9a02017-02-09 17:56:04 +110010527 * This function does the last stage of destroying an allocated device
10528 * interface. The reference to the device object is released. If this
10529 * is the last reference then it will be freed.Must be called in process
10530 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010531 */
10532void free_netdev(struct net_device *dev)
10533{
Herbert Xud565b0a2008-12-15 23:38:52 -080010534 struct napi_struct *p, *n;
10535
Eric Dumazet93d05d42015-11-18 06:31:03 -080010536 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -070010537 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010538 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -070010539
Eric Dumazet33d480c2011-08-11 19:30:52 +000010540 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +000010541
Jiri Pirkof001fde2009-05-05 02:48:28 +000010542 /* Flush device addresses */
10543 dev_addr_flush(dev);
10544
Herbert Xud565b0a2008-12-15 23:38:52 -080010545 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
10546 netif_napi_del(p);
10547
Eric Dumazet29b44332010-10-11 10:22:12 +000010548 free_percpu(dev->pcpu_refcnt);
10549 dev->pcpu_refcnt = NULL;
Toke Høiland-Jørgensen75ccae62020-01-16 16:14:44 +010010550 free_percpu(dev->xdp_bulkq);
10551 dev->xdp_bulkq = NULL;
Eric Dumazet29b44332010-10-11 10:22:12 +000010552
Stephen Hemminger3041a062006-05-26 13:25:24 -070010553 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010554 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -070010555 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010556 return;
10557 }
10558
10559 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
10560 dev->reg_state = NETREG_RELEASED;
10561
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070010562 /* will free via device release */
10563 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010564}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010565EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010566
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010567/**
10568 * synchronize_net - Synchronize with packet receive processing
10569 *
10570 * Wait for packets currently being received to be done.
10571 * Does not block later packets from starting.
10572 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010573void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010574{
10575 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +000010576 if (rtnl_is_locked())
10577 synchronize_rcu_expedited();
10578 else
10579 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010580}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010581EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010582
10583/**
Eric Dumazet44a08732009-10-27 07:03:04 +000010584 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070010585 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +000010586 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -080010587 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010588 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010589 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +000010590 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010591 *
10592 * Callers must hold the rtnl semaphore. You may want
10593 * unregister_netdev() instead of this.
10594 */
10595
Eric Dumazet44a08732009-10-27 07:03:04 +000010596void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010597{
Herbert Xua6620712007-12-12 19:21:56 -080010598 ASSERT_RTNL();
10599
Eric Dumazet44a08732009-10-27 07:03:04 +000010600 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010601 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +000010602 } else {
10603 rollback_registered(dev);
10604 /* Finish processing unregister after unlock */
10605 net_set_todo(dev);
10606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010607}
Eric Dumazet44a08732009-10-27 07:03:04 +000010608EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010609
10610/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010611 * unregister_netdevice_many - unregister many devices
10612 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -070010613 *
10614 * Note: As most callers use a stack allocated list_head,
10615 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010616 */
10617void unregister_netdevice_many(struct list_head *head)
10618{
10619 struct net_device *dev;
10620
10621 if (!list_empty(head)) {
10622 rollback_registered_many(head);
10623 list_for_each_entry(dev, head, unreg_list)
10624 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -070010625 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010626 }
10627}
Eric Dumazet63c80992009-10-27 07:06:49 +000010628EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010629
10630/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010631 * unregister_netdev - remove device from the kernel
10632 * @dev: device
10633 *
10634 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010635 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010636 *
10637 * This is just a wrapper for unregister_netdevice that takes
10638 * the rtnl semaphore. In general you want to use this and not
10639 * unregister_netdevice.
10640 */
10641void unregister_netdev(struct net_device *dev)
10642{
10643 rtnl_lock();
10644 unregister_netdevice(dev);
10645 rtnl_unlock();
10646}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010647EXPORT_SYMBOL(unregister_netdev);
10648
Eric W. Biedermance286d32007-09-12 13:53:49 +020010649/**
10650 * dev_change_net_namespace - move device to different nethost namespace
10651 * @dev: device
10652 * @net: network namespace
10653 * @pat: If not NULL name pattern to try if the current device name
10654 * is already taken in the destination network namespace.
10655 *
10656 * This function shuts down a device interface and moves it
10657 * to a new network namespace. On success 0 is returned, on
10658 * a failure a netagive errno code is returned.
10659 *
10660 * Callers must hold the rtnl semaphore.
10661 */
10662
10663int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
10664{
Christian Brauneref6a4c82020-02-27 04:37:19 +010010665 struct net *net_old = dev_net(dev);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010666 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010667
10668 ASSERT_RTNL();
10669
10670 /* Don't allow namespace local devices to be moved. */
10671 err = -EINVAL;
10672 if (dev->features & NETIF_F_NETNS_LOCAL)
10673 goto out;
10674
10675 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010676 if (dev->reg_state != NETREG_REGISTERED)
10677 goto out;
10678
10679 /* Get out if there is nothing todo */
10680 err = 0;
Christian Brauneref6a4c82020-02-27 04:37:19 +010010681 if (net_eq(net_old, net))
Eric W. Biedermance286d32007-09-12 13:53:49 +020010682 goto out;
10683
10684 /* Pick the destination device name, and ensure
10685 * we can use it in the destination network namespace.
10686 */
10687 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +000010688 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020010689 /* We get here if we can't use the current device name */
10690 if (!pat)
10691 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +080010692 err = dev_get_valid_name(net, dev, pat);
10693 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +020010694 goto out;
10695 }
10696
10697 /*
10698 * And now a mini version of register_netdevice unregister_netdevice.
10699 */
10700
10701 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -070010702 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010703
10704 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010705 unlist_netdevice(dev);
10706
10707 synchronize_net();
10708
10709 /* Shutdown queueing discipline. */
10710 dev_shutdown(dev);
10711
10712 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +110010713 * this device. They should clean all the things.
10714 *
10715 * Note that dev->reg_state stays at NETREG_REGISTERED.
10716 * This is wanted because this way 8021q and macvlan know
10717 * the device is just moving and can keep their slaves up.
10718 */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010719 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +000010720 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010721
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +020010722 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010723 /* If there is an ifindex conflict assign a new one */
10724 if (__dev_get_by_index(net, dev->ifindex))
10725 new_ifindex = dev_new_index(net);
10726 else
10727 new_ifindex = dev->ifindex;
10728
10729 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
10730 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010731
10732 /*
10733 * Flush the unicast and multicast chains
10734 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010735 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +000010736 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010737
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010738 /* Send a netdev-removed uevent to the old namespace */
10739 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040010740 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010741
Jiri Pirko93642e12020-01-25 12:17:08 +010010742 /* Move per-net netdevice notifiers that are following the netdevice */
10743 move_netdevice_notifiers_dev_net(dev, net);
10744
Eric W. Biedermance286d32007-09-12 13:53:49 +020010745 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010746 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010747 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010748
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010749 /* Send a netdev-add uevent to the new namespace */
10750 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040010751 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010752
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010753 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -070010754 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010755 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010756
Christian Brauneref6a4c82020-02-27 04:37:19 +010010757 /* Adapt owner in case owning user namespace of target network
10758 * namespace is different from the original one.
10759 */
10760 err = netdev_change_owner(dev, net_old, net);
10761 WARN_ON(err);
10762
Eric W. Biedermance286d32007-09-12 13:53:49 +020010763 /* Add the device back in the hashes */
10764 list_netdevice(dev);
10765
10766 /* Notify protocols, that a new device appeared. */
10767 call_netdevice_notifiers(NETDEV_REGISTER, dev);
10768
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010769 /*
10770 * Prevent userspace races by waiting until the network
10771 * device is fully setup before sending notifications.
10772 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010773 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010774
Eric W. Biedermance286d32007-09-12 13:53:49 +020010775 synchronize_net();
10776 err = 0;
10777out:
10778 return err;
10779}
Johannes Berg463d0182009-07-14 00:33:35 +020010780EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010781
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010782static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010783{
10784 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010785 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010786 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +053010787 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010788
Linus Torvalds1da177e2005-04-16 15:20:36 -070010789 local_irq_disable();
10790 cpu = smp_processor_id();
10791 sd = &per_cpu(softnet_data, cpu);
10792 oldsd = &per_cpu(softnet_data, oldcpu);
10793
10794 /* Find end of our completion_queue. */
10795 list_skb = &sd->completion_queue;
10796 while (*list_skb)
10797 list_skb = &(*list_skb)->next;
10798 /* Append completion queue from offline CPU. */
10799 *list_skb = oldsd->completion_queue;
10800 oldsd->completion_queue = NULL;
10801
Linus Torvalds1da177e2005-04-16 15:20:36 -070010802 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +000010803 if (oldsd->output_queue) {
10804 *sd->output_queue_tailp = oldsd->output_queue;
10805 sd->output_queue_tailp = oldsd->output_queue_tailp;
10806 oldsd->output_queue = NULL;
10807 oldsd->output_queue_tailp = &oldsd->output_queue;
10808 }
Eric Dumazetac64da02015-01-15 17:04:22 -080010809 /* Append NAPI poll list from offline CPU, with one exception :
10810 * process_backlog() must be called by cpu owning percpu backlog.
10811 * We properly handle process_queue & input_pkt_queue later.
10812 */
10813 while (!list_empty(&oldsd->poll_list)) {
10814 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
10815 struct napi_struct,
10816 poll_list);
10817
10818 list_del_init(&napi->poll_list);
10819 if (napi->poll == process_backlog)
10820 napi->state = 0;
10821 else
10822 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +000010823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010824
10825 raise_softirq_irqoff(NET_TX_SOFTIRQ);
10826 local_irq_enable();
10827
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +053010828#ifdef CONFIG_RPS
10829 remsd = oldsd->rps_ipi_list;
10830 oldsd->rps_ipi_list = NULL;
10831#endif
10832 /* send out pending IPI's on offline CPU */
10833 net_rps_send_ipi(remsd);
10834
Linus Torvalds1da177e2005-04-16 15:20:36 -070010835 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +000010836 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080010837 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000010838 input_queue_head_incr(oldsd);
10839 }
Eric Dumazetac64da02015-01-15 17:04:22 -080010840 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080010841 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000010842 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -070010843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010844
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010846}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010847
Herbert Xu7f353bf2007-08-10 15:47:58 -070010848/**
Herbert Xub63365a2008-10-23 01:11:29 -070010849 * netdev_increment_features - increment feature set by one
10850 * @all: current feature set
10851 * @one: new feature set
10852 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -070010853 *
10854 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -070010855 * @one to the master device with current feature set @all. Will not
10856 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -070010857 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +000010858netdev_features_t netdev_increment_features(netdev_features_t all,
10859 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -070010860{
Tom Herbertc8cd0982015-12-14 11:19:44 -080010861 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -080010862 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +000010863 mask |= NETIF_F_VLAN_CHALLENGED;
10864
Tom Herberta1882222015-12-14 11:19:43 -080010865 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +000010866 all &= one | ~NETIF_F_ALL_FOR_ALL;
10867
Michał Mirosław1742f182011-04-22 06:31:16 +000010868 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -080010869 if (all & NETIF_F_HW_CSUM)
10870 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -070010871
10872 return all;
10873}
Herbert Xub63365a2008-10-23 01:11:29 -070010874EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -070010875
Baruch Siach430f03c2013-06-02 20:43:55 +000010876static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010877{
10878 int i;
10879 struct hlist_head *hash;
10880
Kees Cook6da2ec52018-06-12 13:55:00 -070010881 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010882 if (hash != NULL)
10883 for (i = 0; i < NETDEV_HASHENTRIES; i++)
10884 INIT_HLIST_HEAD(&hash[i]);
10885
10886 return hash;
10887}
10888
Eric W. Biederman881d9662007-09-17 11:56:21 -070010889/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -070010890static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070010891{
Li RongQingd9f37d02018-07-13 14:41:36 +080010892 BUILD_BUG_ON(GRO_HASH_BUCKETS >
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080010893 8 * sizeof_field(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +080010894
Rustad, Mark D734b6542012-07-18 09:06:07 +000010895 if (net != &init_net)
10896 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -070010897
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010898 net->dev_name_head = netdev_create_hash();
10899 if (net->dev_name_head == NULL)
10900 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010901
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010902 net->dev_index_head = netdev_create_hash();
10903 if (net->dev_index_head == NULL)
10904 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010905
Jiri Pirkoa30c7b42019-09-30 10:15:10 +020010906 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
10907
Eric W. Biederman881d9662007-09-17 11:56:21 -070010908 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010909
10910err_idx:
10911 kfree(net->dev_name_head);
10912err_name:
10913 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010914}
10915
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010916/**
10917 * netdev_drivername - network driver for the device
10918 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010919 *
10920 * Determine network driver for device.
10921 */
David S. Miller3019de12011-06-06 16:41:33 -070010922const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -070010923{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -070010924 const struct device_driver *driver;
10925 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -070010926 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -070010927
10928 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -070010929 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -070010930 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070010931
10932 driver = parent->driver;
10933 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -070010934 return driver->name;
10935 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070010936}
10937
Joe Perches6ea754e2014-09-22 11:10:50 -070010938static void __netdev_printk(const char *level, const struct net_device *dev,
10939 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +000010940{
Joe Perchesb004ff42012-09-12 20:12:19 -070010941 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -070010942 dev_printk_emit(level[1] - '0',
10943 dev->dev.parent,
10944 "%s %s %s%s: %pV",
10945 dev_driver_string(dev->dev.parent),
10946 dev_name(dev->dev.parent),
10947 netdev_name(dev), netdev_reg_state(dev),
10948 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010949 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -070010950 printk("%s%s%s: %pV",
10951 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010952 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -070010953 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010954 }
Joe Perches256df2f2010-06-27 01:02:35 +000010955}
10956
Joe Perches6ea754e2014-09-22 11:10:50 -070010957void netdev_printk(const char *level, const struct net_device *dev,
10958 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +000010959{
10960 struct va_format vaf;
10961 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +000010962
10963 va_start(args, format);
10964
10965 vaf.fmt = format;
10966 vaf.va = &args;
10967
Joe Perches6ea754e2014-09-22 11:10:50 -070010968 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010969
Joe Perches256df2f2010-06-27 01:02:35 +000010970 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +000010971}
10972EXPORT_SYMBOL(netdev_printk);
10973
10974#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -070010975void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +000010976{ \
Joe Perches256df2f2010-06-27 01:02:35 +000010977 struct va_format vaf; \
10978 va_list args; \
10979 \
10980 va_start(args, fmt); \
10981 \
10982 vaf.fmt = fmt; \
10983 vaf.va = &args; \
10984 \
Joe Perches6ea754e2014-09-22 11:10:50 -070010985 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -070010986 \
Joe Perches256df2f2010-06-27 01:02:35 +000010987 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +000010988} \
10989EXPORT_SYMBOL(func);
10990
10991define_netdev_printk_level(netdev_emerg, KERN_EMERG);
10992define_netdev_printk_level(netdev_alert, KERN_ALERT);
10993define_netdev_printk_level(netdev_crit, KERN_CRIT);
10994define_netdev_printk_level(netdev_err, KERN_ERR);
10995define_netdev_printk_level(netdev_warn, KERN_WARNING);
10996define_netdev_printk_level(netdev_notice, KERN_NOTICE);
10997define_netdev_printk_level(netdev_info, KERN_INFO);
10998
Pavel Emelyanov46650792007-10-08 20:38:39 -070010999static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011000{
11001 kfree(net->dev_name_head);
11002 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +030011003 if (net != &init_net)
11004 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -070011005}
11006
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011007static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -070011008 .init = netdev_init,
11009 .exit = netdev_exit,
11010};
11011
Pavel Emelyanov46650792007-10-08 20:38:39 -070011012static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011013{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011014 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011015 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011016 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +020011017 * initial network namespace
11018 */
11019 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011020 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011021 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011022 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +020011023
11024 /* Ignore unmoveable devices (i.e. loopback) */
11025 if (dev->features & NETIF_F_NETNS_LOCAL)
11026 continue;
11027
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011028 /* Leave virtual devices for the generic cleanup */
11029 if (dev->rtnl_link_ops)
11030 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -080011031
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011032 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011033 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko55b40db2019-07-28 14:56:36 +020011034 if (__dev_get_by_name(&init_net, fb_name))
11035 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011036 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011037 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000011038 pr_emerg("%s: failed to move %s to init_net: %d\n",
11039 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011040 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +020011041 }
11042 }
11043 rtnl_unlock();
11044}
11045
Eric W. Biederman50624c92013-09-23 21:19:49 -070011046static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
11047{
11048 /* Return with the rtnl_lock held when there are no network
11049 * devices unregistering in any network namespace in net_list.
11050 */
11051 struct net *net;
11052 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +010011053 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011054
Peter Zijlstraff960a72014-10-29 17:04:56 +010011055 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011056 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -070011057 unregistering = false;
11058 rtnl_lock();
11059 list_for_each_entry(net, net_list, exit_list) {
11060 if (net->dev_unreg_count > 0) {
11061 unregistering = true;
11062 break;
11063 }
11064 }
11065 if (!unregistering)
11066 break;
11067 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +010011068
11069 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011070 }
Peter Zijlstraff960a72014-10-29 17:04:56 +010011071 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011072}
11073
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011074static void __net_exit default_device_exit_batch(struct list_head *net_list)
11075{
11076 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011077 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011078 * Do this across as many network namespaces as possible to
11079 * improve batching efficiency.
11080 */
11081 struct net_device *dev;
11082 struct net *net;
11083 LIST_HEAD(dev_kill_list);
11084
Eric W. Biederman50624c92013-09-23 21:19:49 -070011085 /* To prevent network device cleanup code from dereferencing
11086 * loopback devices or network devices that have been freed
11087 * wait here for all pending unregistrations to complete,
11088 * before unregistring the loopback device and allowing the
11089 * network namespace be freed.
11090 *
11091 * The netdev todo list containing all network devices
11092 * unregistrations that happen in default_device_exit_batch
11093 * will run in the rtnl_unlock() at the end of
11094 * default_device_exit_batch.
11095 */
11096 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011097 list_for_each_entry(net, net_list, exit_list) {
11098 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +020011099 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011100 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
11101 else
11102 unregister_netdevice_queue(dev, &dev_kill_list);
11103 }
11104 }
11105 unregister_netdevice_many(&dev_kill_list);
11106 rtnl_unlock();
11107}
11108
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011109static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011110 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011111 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +020011112};
11113
Linus Torvalds1da177e2005-04-16 15:20:36 -070011114/*
11115 * Initialize the DEV module. At boot time this walks the device list and
11116 * unhooks any devices that fail to initialise (normally hardware not
11117 * present) and leaves us with a valid list of present and active devices.
11118 *
11119 */
11120
11121/*
11122 * This is called single threaded during boot, so no need
11123 * to take the rtnl semaphore.
11124 */
11125static int __init net_dev_init(void)
11126{
11127 int i, rc = -ENOMEM;
11128
11129 BUG_ON(!dev_boot_phase);
11130
Linus Torvalds1da177e2005-04-16 15:20:36 -070011131 if (dev_proc_init())
11132 goto out;
11133
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011134 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -070011135 goto out;
11136
11137 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +080011138 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011139 INIT_LIST_HEAD(&ptype_base[i]);
11140
Vlad Yasevich62532da2012-11-15 08:49:10 +000011141 INIT_LIST_HEAD(&offload_base);
11142
Eric W. Biederman881d9662007-09-17 11:56:21 -070011143 if (register_pernet_subsys(&netdev_net_ops))
11144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011145
11146 /*
11147 * Initialise the packet receive queues.
11148 */
11149
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070011150 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -070011151 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011152 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011153
Eric Dumazet41852492016-08-26 12:50:39 -070011154 INIT_WORK(flush, flush_backlog);
11155
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011156 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -070011157 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +010011158#ifdef CONFIG_XFRM_OFFLOAD
11159 skb_queue_head_init(&sd->xfrm_backlog);
11160#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011161 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +000011162 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +000011163#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011164 sd->csd.func = rps_trigger_softirq;
11165 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011166 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -070011167#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +000011168
David S. Miller7c4ec742018-07-20 23:37:55 -070011169 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011170 sd->backlog.poll = process_backlog;
11171 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011172 }
11173
Linus Torvalds1da177e2005-04-16 15:20:36 -070011174 dev_boot_phase = 0;
11175
Eric W. Biederman505d4f72008-11-07 22:54:20 -080011176 /* The loopback device is special if any other network devices
11177 * is present in a network namespace the loopback device must
11178 * be present. Since we now dynamically allocate and free the
11179 * loopback device ensure this invariant is maintained by
11180 * keeping the loopback device as the first device on the
11181 * list of network devices. Ensuring the loopback devices
11182 * is the first device that appears and the last network device
11183 * that disappears.
11184 */
11185 if (register_pernet_device(&loopback_net_ops))
11186 goto out;
11187
11188 if (register_pernet_device(&default_device_ops))
11189 goto out;
11190
Carlos R. Mafra962cf362008-05-15 11:15:37 -030011191 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
11192 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011193
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011194 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
11195 NULL, dev_cpu_dead);
11196 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011197 rc = 0;
11198out:
11199 return rc;
11200}
11201
11202subsys_initcall(net_dev_init);