blob: bd6100da66f476b6b532a5bd96cade77a7bcae6c [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
tcharding722c9a02017-02-09 17:56:04 +11003 * NET3 Protocol independent device support routines.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Derived from the non IP parts of dev.c 1.0.19
tcharding722c9a02017-02-09 17:56:04 +11006 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
8 * Mark Evans, <evansmp@uhura.aston.ac.uk>
9 *
10 * Additional Authors:
11 * Florian la Roche <rzsfl@rz.uni-sb.de>
12 * Alan Cox <gw4pts@gw4pts.ampr.org>
13 * David Hinds <dahinds@users.sourceforge.net>
14 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
15 * Adam Sulmicki <adam@cfar.umd.edu>
16 * Pekka Riikonen <priikone@poesidon.pspt.fi>
17 *
18 * Changes:
19 * D.J. Barrow : Fixed bug where dev->refcnt gets set
tcharding722c9a02017-02-09 17:56:04 +110020 * to 2 if register_netdev gets called
21 * before net_dev_init & also removed a
22 * few lines of code in the process.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * Alan Cox : device private ioctl copies fields back.
24 * Alan Cox : Transmit queue code does relevant
25 * stunts to keep the queue safe.
26 * Alan Cox : Fixed double lock.
27 * Alan Cox : Fixed promisc NULL pointer trap
28 * ???????? : Support the full private ioctl range
29 * Alan Cox : Moved ioctl permission check into
30 * drivers
31 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
32 * Alan Cox : 100 backlog just doesn't cut it when
33 * you start doing multicast video 8)
34 * Alan Cox : Rewrote net_bh and list manager.
tcharding722c9a02017-02-09 17:56:04 +110035 * Alan Cox : Fix ETH_P_ALL echoback lengths.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * Alan Cox : Took out transmit every packet pass
37 * Saved a few bytes in the ioctl handler
38 * Alan Cox : Network driver sets packet type before
39 * calling netif_rx. Saves a function
40 * call a packet.
41 * Alan Cox : Hashed net_bh()
42 * Richard Kooijman: Timestamp fixes.
43 * Alan Cox : Wrong field in SIOCGIFDSTADDR
44 * Alan Cox : Device lock protection.
tcharding722c9a02017-02-09 17:56:04 +110045 * Alan Cox : Fixed nasty side effect of device close
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * changes.
47 * Rudi Cilibrasi : Pass the right thing to
48 * set_mac_address()
49 * Dave Miller : 32bit quantity for the device lock to
50 * make it work out on a Sparc.
51 * Bjorn Ekwall : Added KERNELD hack.
52 * Alan Cox : Cleaned up the backlog initialise.
53 * Craig Metz : SIOCGIFCONF fix if space for under
54 * 1 device.
55 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
56 * is no device open function.
57 * Andi Kleen : Fix error reporting for SIOCGIFCONF
58 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
59 * Cyrus Durgin : Cleaned for KMOD
60 * Adam Sulmicki : Bug Fix : Network Device Unload
61 * A network device unload needs to purge
62 * the backlog queue.
63 * Paul Rusty Russell : SIOCSIFNAME
64 * Pekka Riikonen : Netdev boot-time settings code
65 * Andrew Morton : Make unregister_netdevice wait
tcharding722c9a02017-02-09 17:56:04 +110066 * indefinitely on dev->refcnt
67 * J Hadi Salim : - Backlog queue sampling
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * - netif_rx() feedback
69 */
70
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080071#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080073#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#include <linux/cpu.h>
75#include <linux/types.h>
76#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000077#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090078#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/sched.h>
Vlastimil Babkaf1083042017-05-08 15:59:53 -070080#include <linux/sched/mm.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080081#include <linux/mutex.h>
Ahmed S. Darwish11d60112020-06-03 16:49:44 +020082#include <linux/rwsem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/string.h>
84#include <linux/mm.h>
85#include <linux/socket.h>
86#include <linux/sockios.h>
87#include <linux/errno.h>
88#include <linux/interrupt.h>
89#include <linux/if_ether.h>
90#include <linux/netdevice.h>
91#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070092#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070094#include <linux/bpf.h>
David S. Millerb5cdae32017-04-18 15:36:58 -040095#include <linux/bpf_trace.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020096#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -080098#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/stat.h>
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +0300101#include <net/dsa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700103#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#include <net/pkt_sched.h>
Jiri Pirko87d83092017-05-17 11:07:54 +0200105#include <net/pkt_cls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000107#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/highmem.h>
109#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <linux/netpoll.h>
112#include <linux/rcupdate.h>
113#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500116#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700117#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700118#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700119#include <linux/ctype.h>
Jarek Poplawski723e98b72007-05-15 22:46:18 -0700120#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700121#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700123#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700124#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ipv6.h>
126#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700127#include <linux/jhash.h>
128#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700129#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900130#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900131#include <trace/events/skb.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700132#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000133#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100134#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300135#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700136#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100137#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400138#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800139#include <linux/hrtimer.h>
Daniel Borkmann357b6cc2020-03-18 10:33:22 +0100140#include <linux/netfilter_ingress.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530141#include <linux/crash_dump.h>
Davide Carattib72b5bf2017-05-18 15:44:38 +0200142#include <linux/sctp.h>
Sabrina Dubrocaae847f42017-07-21 12:49:31 +0200143#include <net/udp_tunnel.h>
Nicolas Dichtel6621dd22017-10-03 13:53:23 +0200144#include <linux/net_namespace.h>
Paolo Abeniaaa5d902018-12-14 11:51:58 +0100145#include <linux/indirect_call_wrapper.h>
Jiri Pirkoaf3836d2019-03-28 13:56:37 +0100146#include <net/devlink.h>
Heiner Kallweitbd869242020-06-20 22:35:42 +0200147#include <linux/pm_runtime.h>
Willy Tarreau37447412020-08-10 10:27:42 +0200148#include <linux/prandom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700150#include "net-sysfs.h"
151
Herbert Xud565b0a2008-12-15 23:38:52 -0800152#define MAX_GRO_SKBS 8
153
Herbert Xu5d38a072009-01-04 16:13:40 -0800154/* This should be increased if a protocol with a bigger head is added. */
155#define GRO_MAX_HEAD (MAX_HEADER + 128)
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000158static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000159struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
160struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000161static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000163static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli54951192014-07-01 21:39:43 -0700164static int call_netdevice_notifiers_info(unsigned long val,
Loic Prylli54951192014-07-01 21:39:43 -0700165 struct netdev_notifier_info *info);
Petr Machata26372602018-12-06 17:05:45 +0000166static int call_netdevice_notifiers_extack(unsigned long val,
167 struct net_device *dev,
168 struct netlink_ext_ack *extack);
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200169static struct napi_struct *napi_by_id(unsigned int napi_id);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700172 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 * semaphore.
174 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800175 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 *
177 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700178 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 * actual updates. This allows pure readers to access the list even
180 * while a writer is preparing to update it.
181 *
182 * To put it another way, dev_base_lock is held for writing only to
183 * protect against pure readers; the rtnl semaphore provides the
184 * protection against other writers.
185 *
186 * See, for example usages, register_netdevice() and
187 * unregister_netdevice(), which must be called with the rtnl
188 * semaphore held.
189 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191EXPORT_SYMBOL(dev_base_lock);
192
Florian Westphal6c557002017-10-02 23:50:05 +0200193static DEFINE_MUTEX(ifalias_mutex);
194
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300195/* protects napi_hash addition/deletion and napi_gen_id */
196static DEFINE_SPINLOCK(napi_hash_lock);
197
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800198static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800199static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300200
Ahmed S. Darwish11d60112020-06-03 16:49:44 +0200201static DECLARE_RWSEM(devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +0000202
Thomas Graf4e985ad2011-06-21 03:11:20 +0000203static inline void dev_base_seq_inc(struct net *net)
204{
tcharding643aa9c2017-02-09 17:56:05 +1100205 while (++net->dev_base_seq == 0)
206 ;
Thomas Graf4e985ad2011-06-21 03:11:20 +0000207}
208
Eric W. Biederman881d9662007-09-17 11:56:21 -0700209static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700211 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000212
stephen hemminger08e98972009-11-10 07:20:34 +0000213 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Eric W. Biederman881d9662007-09-17 11:56:21 -0700216static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700218 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000221static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000222{
223#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000224 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000225#endif
226}
227
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000228static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000229{
230#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000231 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000232#endif
233}
234
Jiri Pirkoff927412019-09-30 11:48:15 +0200235static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
236 const char *name)
237{
238 struct netdev_name_node *name_node;
239
240 name_node = kmalloc(sizeof(*name_node), GFP_KERNEL);
241 if (!name_node)
242 return NULL;
243 INIT_HLIST_NODE(&name_node->hlist);
244 name_node->dev = dev;
245 name_node->name = name;
246 return name_node;
247}
248
249static struct netdev_name_node *
250netdev_name_node_head_alloc(struct net_device *dev)
251{
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200252 struct netdev_name_node *name_node;
253
254 name_node = netdev_name_node_alloc(dev, dev->name);
255 if (!name_node)
256 return NULL;
257 INIT_LIST_HEAD(&name_node->list);
258 return name_node;
Jiri Pirkoff927412019-09-30 11:48:15 +0200259}
260
261static void netdev_name_node_free(struct netdev_name_node *name_node)
262{
263 kfree(name_node);
264}
265
266static void netdev_name_node_add(struct net *net,
267 struct netdev_name_node *name_node)
268{
269 hlist_add_head_rcu(&name_node->hlist,
270 dev_name_hash(net, name_node->name));
271}
272
273static void netdev_name_node_del(struct netdev_name_node *name_node)
274{
275 hlist_del_rcu(&name_node->hlist);
276}
277
278static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
279 const char *name)
280{
281 struct hlist_head *head = dev_name_hash(net, name);
282 struct netdev_name_node *name_node;
283
284 hlist_for_each_entry(name_node, head, hlist)
285 if (!strcmp(name_node->name, name))
286 return name_node;
287 return NULL;
288}
289
290static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
291 const char *name)
292{
293 struct hlist_head *head = dev_name_hash(net, name);
294 struct netdev_name_node *name_node;
295
296 hlist_for_each_entry_rcu(name_node, head, hlist)
297 if (!strcmp(name_node->name, name))
298 return name_node;
299 return NULL;
300}
301
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200302int netdev_name_node_alt_create(struct net_device *dev, const char *name)
303{
304 struct netdev_name_node *name_node;
305 struct net *net = dev_net(dev);
306
307 name_node = netdev_name_node_lookup(net, name);
308 if (name_node)
309 return -EEXIST;
310 name_node = netdev_name_node_alloc(dev, name);
311 if (!name_node)
312 return -ENOMEM;
313 netdev_name_node_add(net, name_node);
314 /* The node that holds dev->name acts as a head of per-device list. */
315 list_add_tail(&name_node->list, &dev->name_node->list);
316
317 return 0;
318}
319EXPORT_SYMBOL(netdev_name_node_alt_create);
320
321static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
322{
323 list_del(&name_node->list);
324 netdev_name_node_del(name_node);
325 kfree(name_node->name);
326 netdev_name_node_free(name_node);
327}
328
329int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
330{
331 struct netdev_name_node *name_node;
332 struct net *net = dev_net(dev);
333
334 name_node = netdev_name_node_lookup(net, name);
335 if (!name_node)
336 return -ENOENT;
Eric Dumazete08ad802020-02-14 07:53:53 -0800337 /* lookup might have found our primary name or a name belonging
338 * to another device.
339 */
340 if (name_node == dev->name_node || name_node->dev != dev)
341 return -EINVAL;
342
Jiri Pirko36fbf1e2019-09-30 11:48:16 +0200343 __netdev_name_node_alt_destroy(name_node);
344
345 return 0;
346}
347EXPORT_SYMBOL(netdev_name_node_alt_destroy);
348
349static void netdev_name_node_alt_flush(struct net_device *dev)
350{
351 struct netdev_name_node *name_node, *tmp;
352
353 list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list)
354 __netdev_name_node_alt_destroy(name_node);
355}
356
Eric W. Biedermance286d32007-09-12 13:53:49 +0200357/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000358static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200359{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900360 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200361
362 ASSERT_RTNL();
363
364 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800365 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Jiri Pirkoff927412019-09-30 11:48:15 +0200366 netdev_name_node_add(net, dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000367 hlist_add_head_rcu(&dev->index_hlist,
368 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200369 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000370
371 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200372}
373
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000374/* Device list removal
375 * caller must respect a RCU grace period before freeing/reusing dev
376 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200377static void unlist_netdevice(struct net_device *dev)
378{
379 ASSERT_RTNL();
380
381 /* Unlink dev from the device chain */
382 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800383 list_del_rcu(&dev->dev_list);
Jiri Pirkoff927412019-09-30 11:48:15 +0200384 netdev_name_node_del(dev->name_node);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000385 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200386 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000387
388 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391/*
392 * Our notifier list
393 */
394
Alan Sternf07d5b92006-05-09 15:23:03 -0700395static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397/*
398 * Device drivers call our routines to queue packets here. We empty the
399 * queue in the local softnet handler.
400 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700401
Eric Dumazet9958da02010-04-17 04:17:02 +0000402DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700403EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Cong Wang1a33e102020-05-02 22:22:19 -0700405#ifdef CONFIG_LOCKDEP
406/*
407 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
408 * according to dev->type
409 */
410static const unsigned short netdev_lock_type[] = {
411 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
412 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
413 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
414 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
415 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
416 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
417 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
418 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
419 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
420 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
421 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
422 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
423 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
424 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
425 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
426
427static const char *const netdev_lock_name[] = {
428 "_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
429 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
430 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
431 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
432 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
433 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
434 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
435 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
436 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
437 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
438 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
439 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
440 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
441 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
442 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
443
444static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang845e0eb2020-06-08 14:53:01 -0700445static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Cong Wang1a33e102020-05-02 22:22:19 -0700446
447static inline unsigned short netdev_lock_pos(unsigned short dev_type)
448{
449 int i;
450
451 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
452 if (netdev_lock_type[i] == dev_type)
453 return i;
454 /* the last key is used by default */
455 return ARRAY_SIZE(netdev_lock_type) - 1;
456}
457
458static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
459 unsigned short dev_type)
460{
461 int i;
462
463 i = netdev_lock_pos(dev_type);
464 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
465 netdev_lock_name[i]);
466}
Cong Wang845e0eb2020-06-08 14:53:01 -0700467
468static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
469{
470 int i;
471
472 i = netdev_lock_pos(dev->type);
473 lockdep_set_class_and_name(&dev->addr_list_lock,
474 &netdev_addr_lock_key[i],
475 netdev_lock_name[i]);
476}
Cong Wang1a33e102020-05-02 22:22:19 -0700477#else
478static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
479 unsigned short dev_type)
480{
481}
Cong Wang845e0eb2020-06-08 14:53:01 -0700482
483static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
484{
485}
Cong Wang1a33e102020-05-02 22:22:19 -0700486#endif
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100489 *
490 * Protocol management and registration routines
491 *
492 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * Add a protocol ID to the list. Now that the input handler is
497 * smarter we can dispense with all the messy stuff that used to be
498 * here.
499 *
500 * BEWARE!!! Protocol handlers, mangling input packets,
501 * MUST BE last in hash buckets and checking protocol handlers
502 * MUST start from promiscuous ptype_all chain in net_bh.
503 * It is true now, do not change it.
504 * Explanation follows: if protocol handler, mangling packet, will
505 * be the first on list, it is not able to sense, that packet
506 * is cloned and should be copied-on-write, so that it will
507 * change it and subsequent readers will get broken packet.
508 * --ANK (980803)
509 */
510
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000511static inline struct list_head *ptype_head(const struct packet_type *pt)
512{
513 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800514 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000515 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800516 return pt->dev ? &pt->dev->ptype_specific :
517 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000518}
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/**
521 * dev_add_pack - add packet handler
522 * @pt: packet type declaration
523 *
524 * Add a protocol handler to the networking stack. The passed &packet_type
525 * is linked into kernel lists and may not be freed until it has been
526 * removed from the kernel lists.
527 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900528 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * guarantee all CPU's that are in middle of receiving packets
530 * will see the new packet type (until the next received packet).
531 */
532
533void dev_add_pack(struct packet_type *pt)
534{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000535 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000537 spin_lock(&ptype_lock);
538 list_add_rcu(&pt->list, head);
539 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700541EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
544 * __dev_remove_pack - remove packet handler
545 * @pt: packet type declaration
546 *
547 * Remove a protocol handler that was previously added to the kernel
548 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
549 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900550 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 *
552 * The packet type might still be in use by receivers
553 * and must not be freed until after all the CPU's have gone
554 * through a quiescent state.
555 */
556void __dev_remove_pack(struct packet_type *pt)
557{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000558 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct packet_type *pt1;
560
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000561 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 list_for_each_entry(pt1, head, list) {
564 if (pt == pt1) {
565 list_del_rcu(&pt->list);
566 goto out;
567 }
568 }
569
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000570 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000572 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700574EXPORT_SYMBOL(__dev_remove_pack);
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/**
577 * dev_remove_pack - remove packet handler
578 * @pt: packet type declaration
579 *
580 * Remove a protocol handler that was previously added to the kernel
581 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
582 * from the kernel lists and can be freed or reused once this function
583 * returns.
584 *
585 * This call sleeps to guarantee that no CPU is looking at the packet
586 * type after return.
587 */
588void dev_remove_pack(struct packet_type *pt)
589{
590 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 synchronize_net();
593}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700594EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Vlad Yasevich62532da2012-11-15 08:49:10 +0000596
597/**
598 * dev_add_offload - register offload handlers
599 * @po: protocol offload declaration
600 *
601 * Add protocol offload handlers to the networking stack. The passed
602 * &proto_offload is linked into kernel lists and may not be freed until
603 * it has been removed from the kernel lists.
604 *
605 * This call does not sleep therefore it can not
606 * guarantee all CPU's that are in middle of receiving packets
607 * will see the new offload handlers (until the next received packet).
608 */
609void dev_add_offload(struct packet_offload *po)
610{
David S. Millerbdef7de2015-06-01 14:56:09 -0700611 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000612
613 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700614 list_for_each_entry(elem, &offload_base, list) {
615 if (po->priority < elem->priority)
616 break;
617 }
618 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000619 spin_unlock(&offload_lock);
620}
621EXPORT_SYMBOL(dev_add_offload);
622
623/**
624 * __dev_remove_offload - remove offload handler
625 * @po: packet offload declaration
626 *
627 * Remove a protocol offload handler that was previously added to the
628 * kernel offload handlers by dev_add_offload(). The passed &offload_type
629 * is removed from the kernel lists and can be freed or reused once this
630 * function returns.
631 *
632 * The packet type might still be in use by receivers
633 * and must not be freed until after all the CPU's have gone
634 * through a quiescent state.
635 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800636static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000637{
638 struct list_head *head = &offload_base;
639 struct packet_offload *po1;
640
Eric Dumazetc53aa502012-11-16 08:08:23 +0000641 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000642
643 list_for_each_entry(po1, head, list) {
644 if (po == po1) {
645 list_del_rcu(&po->list);
646 goto out;
647 }
648 }
649
650 pr_warn("dev_remove_offload: %p not found\n", po);
651out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000652 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000653}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000654
655/**
656 * dev_remove_offload - remove packet offload handler
657 * @po: packet offload declaration
658 *
659 * Remove a packet offload handler that was previously added to the kernel
660 * offload handlers by dev_add_offload(). The passed &offload_type is
661 * removed from the kernel lists and can be freed or reused once this
662 * function returns.
663 *
664 * This call sleeps to guarantee that no CPU is looking at the packet
665 * type after return.
666 */
667void dev_remove_offload(struct packet_offload *po)
668{
669 __dev_remove_offload(po);
670
671 synchronize_net();
672}
673EXPORT_SYMBOL(dev_remove_offload);
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100676 *
677 * Device Boot-time Settings Routines
678 *
679 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681/* Boot time configuration table */
682static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
683
684/**
685 * netdev_boot_setup_add - add new setup entry
686 * @name: name of the device
687 * @map: configured settings for the device
688 *
689 * Adds new setup entry to the dev_boot_setup list. The function
690 * returns 0 on error and 1 on success. This is a generic routine to
691 * all netdevices.
692 */
693static int netdev_boot_setup_add(char *name, struct ifmap *map)
694{
695 struct netdev_boot_setup *s;
696 int i;
697
698 s = dev_boot_setup;
699 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
700 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
701 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff92008-07-01 19:57:19 -0700702 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 memcpy(&s[i].map, map, sizeof(s[i].map));
704 break;
705 }
706 }
707
708 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
709}
710
711/**
tcharding722c9a02017-02-09 17:56:04 +1100712 * netdev_boot_setup_check - check boot time settings
713 * @dev: the netdevice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *
tcharding722c9a02017-02-09 17:56:04 +1100715 * Check boot time settings for the device.
716 * The found settings are set for the device to be used
717 * later in the device probing.
718 * Returns 0 if no settings found, 1 if they are.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
720int netdev_boot_setup_check(struct net_device *dev)
721{
722 struct netdev_boot_setup *s = dev_boot_setup;
723 int i;
724
725 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
726 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff92008-07-01 19:57:19 -0700727 !strcmp(dev->name, s[i].name)) {
tcharding722c9a02017-02-09 17:56:04 +1100728 dev->irq = s[i].map.irq;
729 dev->base_addr = s[i].map.base_addr;
730 dev->mem_start = s[i].map.mem_start;
731 dev->mem_end = s[i].map.mem_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return 1;
733 }
734 }
735 return 0;
736}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700737EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739
740/**
tcharding722c9a02017-02-09 17:56:04 +1100741 * netdev_boot_base - get address from boot time settings
742 * @prefix: prefix for network device
743 * @unit: id for network device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 *
tcharding722c9a02017-02-09 17:56:04 +1100745 * Check boot time settings for the base address of device.
746 * The found settings are set for the device to be used
747 * later in the device probing.
748 * Returns 0 if no settings found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
750unsigned long netdev_boot_base(const char *prefix, int unit)
751{
752 const struct netdev_boot_setup *s = dev_boot_setup;
753 char name[IFNAMSIZ];
754 int i;
755
756 sprintf(name, "%s%d", prefix, unit);
757
758 /*
759 * If device already registered then return base of 1
760 * to indicate not to probe for this interface
761 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700762 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return 1;
764
765 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
766 if (!strcmp(name, s[i].name))
767 return s[i].map.base_addr;
768 return 0;
769}
770
771/*
772 * Saves at boot time configured settings for any netdevice.
773 */
774int __init netdev_boot_setup(char *str)
775{
776 int ints[5];
777 struct ifmap map;
778
779 str = get_options(str, ARRAY_SIZE(ints), ints);
780 if (!str || !*str)
781 return 0;
782
783 /* Save settings */
784 memset(&map, 0, sizeof(map));
785 if (ints[0] > 0)
786 map.irq = ints[1];
787 if (ints[0] > 1)
788 map.base_addr = ints[2];
789 if (ints[0] > 2)
790 map.mem_start = ints[3];
791 if (ints[0] > 3)
792 map.mem_end = ints[4];
793
794 /* Add new entry to the list */
795 return netdev_boot_setup_add(str, &map);
796}
797
798__setup("netdev=", netdev_boot_setup);
799
800/*******************************************************************************
tchardingeb13da12017-02-09 17:56:06 +1100801 *
802 * Device Interface Subroutines
803 *
804 *******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200807 * dev_get_iflink - get 'iflink' value of a interface
808 * @dev: targeted interface
809 *
810 * Indicates the ifindex the interface is linked to.
811 * Physical interfaces have the same 'ifindex' and 'iflink' values.
812 */
813
814int dev_get_iflink(const struct net_device *dev)
815{
816 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
817 return dev->netdev_ops->ndo_get_iflink(dev);
818
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200819 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200820}
821EXPORT_SYMBOL(dev_get_iflink);
822
823/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700824 * dev_fill_metadata_dst - Retrieve tunnel egress information.
825 * @dev: targeted interface
826 * @skb: The packet.
827 *
828 * For better visibility of tunnel traffic OVS needs to retrieve
829 * egress tunnel information for a packet. Following API allows
830 * user to get this info.
831 */
832int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
833{
834 struct ip_tunnel_info *info;
835
836 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
837 return -EINVAL;
838
839 info = skb_tunnel_info_unclone(skb);
840 if (!info)
841 return -ENOMEM;
842 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
843 return -EINVAL;
844
845 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
846}
847EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
848
849/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700851 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 * @name: name to find
853 *
854 * Find an interface by name. Must be called under RTNL semaphore
855 * or @dev_base_lock. If the name is found a pointer to the device
856 * is returned. If the name is not found then %NULL is returned. The
857 * reference counters are not incremented so the caller must be
858 * careful with locks.
859 */
860
Eric W. Biederman881d9662007-09-17 11:56:21 -0700861struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Jiri Pirkoff927412019-09-30 11:48:15 +0200863 struct netdev_name_node *node_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jiri Pirkoff927412019-09-30 11:48:15 +0200865 node_name = netdev_name_node_lookup(net, name);
866 return node_name ? node_name->dev : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700868EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870/**
tcharding722c9a02017-02-09 17:56:04 +1100871 * dev_get_by_name_rcu - find a device by its name
872 * @net: the applicable net namespace
873 * @name: name to find
Eric Dumazet72c95282009-10-30 07:11:27 +0000874 *
tcharding722c9a02017-02-09 17:56:04 +1100875 * Find an interface by name.
876 * If the name is found a pointer to the device is returned.
877 * If the name is not found then %NULL is returned.
878 * The reference counters are not incremented so the caller must be
879 * careful with locks. The caller must hold RCU lock.
Eric Dumazet72c95282009-10-30 07:11:27 +0000880 */
881
882struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
883{
Jiri Pirkoff927412019-09-30 11:48:15 +0200884 struct netdev_name_node *node_name;
Eric Dumazet72c95282009-10-30 07:11:27 +0000885
Jiri Pirkoff927412019-09-30 11:48:15 +0200886 node_name = netdev_name_node_lookup_rcu(net, name);
887 return node_name ? node_name->dev : NULL;
Eric Dumazet72c95282009-10-30 07:11:27 +0000888}
889EXPORT_SYMBOL(dev_get_by_name_rcu);
890
891/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700893 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 * @name: name to find
895 *
896 * Find an interface by name. This can be called from any
897 * context and does its own locking. The returned handle has
898 * the usage count incremented and the caller must use dev_put() to
899 * release it when it is no longer needed. %NULL is returned if no
900 * matching device is found.
901 */
902
Eric W. Biederman881d9662007-09-17 11:56:21 -0700903struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct net_device *dev;
906
Eric Dumazet72c95282009-10-30 07:11:27 +0000907 rcu_read_lock();
908 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (dev)
910 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000911 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return dev;
913}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700914EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916/**
917 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700918 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * @ifindex: index of device
920 *
921 * Search for an interface by index. Returns %NULL if the device
922 * is not found or a pointer to the device. The device has not
923 * had its reference counter increased so the caller must be careful
924 * about locking. The caller must hold either the RTNL semaphore
925 * or @dev_base_lock.
926 */
927
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700930 struct net_device *dev;
931 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Sasha Levinb67bfe02013-02-27 17:06:00 -0800933 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (dev->ifindex == ifindex)
935 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return NULL;
938}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700939EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000941/**
942 * dev_get_by_index_rcu - find a device by its ifindex
943 * @net: the applicable net namespace
944 * @ifindex: index of device
945 *
946 * Search for an interface by index. Returns %NULL if the device
947 * is not found or a pointer to the device. The device has not
948 * had its reference counter increased so the caller must be careful
949 * about locking. The caller must hold RCU lock.
950 */
951
952struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
953{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000954 struct net_device *dev;
955 struct hlist_head *head = dev_index_hash(net, ifindex);
956
Sasha Levinb67bfe02013-02-27 17:06:00 -0800957 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000958 if (dev->ifindex == ifindex)
959 return dev;
960
961 return NULL;
962}
963EXPORT_SYMBOL(dev_get_by_index_rcu);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966/**
967 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700968 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 * @ifindex: index of device
970 *
971 * Search for an interface by index. Returns NULL if the device
972 * is not found or a pointer to the device. The device returned has
973 * had a reference added and the pointer is safe until the user calls
974 * dev_put to indicate they have finished with it.
975 */
976
Eric W. Biederman881d9662007-09-17 11:56:21 -0700977struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 struct net_device *dev;
980
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000981 rcu_read_lock();
982 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (dev)
984 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000985 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return dev;
987}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700988EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990/**
Miroslav Lichvar90b602f2017-05-19 17:52:37 +0200991 * dev_get_by_napi_id - find a device by napi_id
992 * @napi_id: ID of the NAPI struct
993 *
994 * Search for an interface by NAPI ID. Returns %NULL if the device
995 * is not found or a pointer to the device. The device has not had
996 * its reference counter increased so the caller must be careful
997 * about locking. The caller must hold RCU lock.
998 */
999
1000struct net_device *dev_get_by_napi_id(unsigned int napi_id)
1001{
1002 struct napi_struct *napi;
1003
1004 WARN_ON_ONCE(!rcu_read_lock_held());
1005
1006 if (napi_id < MIN_NAPI_ID)
1007 return NULL;
1008
1009 napi = napi_by_id(napi_id);
1010
1011 return napi ? napi->dev : NULL;
1012}
1013EXPORT_SYMBOL(dev_get_by_napi_id);
1014
1015/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001016 * netdev_get_name - get a netdevice name, knowing its ifindex.
1017 * @net: network namespace
1018 * @name: a pointer to the buffer where the name will be stored.
1019 * @ifindex: the ifindex of the interface to get the name from.
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001020 */
1021int netdev_get_name(struct net *net, char *name, int ifindex)
1022{
1023 struct net_device *dev;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001024 int ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001025
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001026 down_read(&devnet_rename_sem);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001027 rcu_read_lock();
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001028
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001029 dev = dev_get_by_index_rcu(net, ifindex);
1030 if (!dev) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001031 ret = -ENODEV;
1032 goto out;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001033 }
1034
1035 strcpy(name, dev->name);
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001036
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001037 ret = 0;
1038out:
1039 rcu_read_unlock();
1040 up_read(&devnet_rename_sem);
1041 return ret;
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +02001042}
1043
1044/**
Eric Dumazet941666c2010-12-05 01:23:53 +00001045 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001046 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 * @type: media type of device
1048 * @ha: hardware address
1049 *
1050 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -08001051 * is not found or a pointer to the device.
1052 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +00001053 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 * and the caller must therefore be careful about locking
1055 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
1057
Eric Dumazet941666c2010-12-05 01:23:53 +00001058struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
1059 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct net_device *dev;
1062
Eric Dumazet941666c2010-12-05 01:23:53 +00001063 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (dev->type == type &&
1065 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -07001066 return dev;
1067
1068 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
Eric Dumazet941666c2010-12-05 01:23:53 +00001070EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -03001071
Eric W. Biederman881d9662007-09-17 11:56:21 -07001072struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001073{
1074 struct net_device *dev;
1075
1076 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -07001077 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001078 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -07001079 return dev;
1080
1081 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001082}
Patrick McHardy4e9cac22007-05-03 03:28:13 -07001083EXPORT_SYMBOL(__dev_getfirstbyhwtype);
1084
Eric W. Biederman881d9662007-09-17 11:56:21 -07001085struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001087 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Eric Dumazet99fe3c32010-03-18 11:27:25 +00001089 rcu_read_lock();
1090 for_each_netdev_rcu(net, dev)
1091 if (dev->type == type) {
1092 dev_hold(dev);
1093 ret = dev;
1094 break;
1095 }
1096 rcu_read_unlock();
1097 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099EXPORT_SYMBOL(dev_getfirstbyhwtype);
1100
1101/**
WANG Cong6c555492014-09-11 15:35:09 -07001102 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001103 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * @if_flags: IFF_* values
1105 * @mask: bitmask of bits in if_flags to check
1106 *
1107 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +00001108 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -07001109 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 */
1111
WANG Cong6c555492014-09-11 15:35:09 -07001112struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
1113 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Pavel Emelianov7562f872007-05-03 15:13:45 -07001115 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
WANG Cong6c555492014-09-11 15:35:09 -07001117 ASSERT_RTNL();
1118
Pavel Emelianov7562f872007-05-03 15:13:45 -07001119 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -07001120 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -07001122 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 break;
1124 }
1125 }
Pavel Emelianov7562f872007-05-03 15:13:45 -07001126 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
WANG Cong6c555492014-09-11 15:35:09 -07001128EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130/**
1131 * dev_valid_name - check if name is okay for network device
1132 * @name: name string
1133 *
1134 * Network device names need to be valid file names to
Randy Dunlap4250b752020-09-17 21:35:15 -07001135 * allow sysfs to work. We also disallow any kind of
David S. Millerc7fa9d12006-08-15 16:34:13 -07001136 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
David S. Miller95f050b2012-03-06 16:12:15 -05001138bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
David S. Millerc7fa9d12006-08-15 16:34:13 -07001140 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -05001141 return false;
Eric Dumazeta9d48202018-04-05 06:39:26 -07001142 if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -05001143 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001144 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001145 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001146
1147 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001148 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001149 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001150 name++;
1151 }
David S. Miller95f050b2012-03-06 16:12:15 -05001152 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001154EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
1156/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001157 * __dev_alloc_name - allocate a name for a device
1158 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001160 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 *
1162 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001163 * id. It scans list of devices to build up a free map, then chooses
1164 * the first empty slot. The caller must hold the dev_base or rtnl lock
1165 * while allocating the name and adding the device in order to avoid
1166 * duplicates.
1167 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1168 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 */
1170
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001171static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
1173 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 const char *p;
1175 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001176 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 struct net_device *d;
1178
Rasmus Villemoes93809102017-11-13 00:15:08 +01001179 if (!dev_valid_name(name))
1180 return -EINVAL;
1181
Rasmus Villemoes51f299d2017-11-13 00:15:04 +01001182 p = strchr(name, '%');
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (p) {
1184 /*
1185 * Verify the string as this thing may have come from
1186 * the user. There must be either one "%d" and no other "%"
1187 * characters.
1188 */
1189 if (p[1] != 'd' || strchr(p + 2, '%'))
1190 return -EINVAL;
1191
1192 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001193 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!inuse)
1195 return -ENOMEM;
1196
Eric W. Biederman881d9662007-09-17 11:56:21 -07001197 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (!sscanf(d->name, name, &i))
1199 continue;
1200 if (i < 0 || i >= max_netdevices)
1201 continue;
1202
1203 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001204 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (!strncmp(buf, d->name, IFNAMSIZ))
1206 set_bit(i, inuse);
1207 }
1208
1209 i = find_first_zero_bit(inuse, max_netdevices);
1210 free_page((unsigned long) inuse);
1211 }
1212
Rasmus Villemoes6224abd2017-11-13 00:15:07 +01001213 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001214 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 /* It is possible to run out of possible slots
1218 * when the name is long and there isn't enough space left
1219 * for the digits, or if all bits are used.
1220 */
Johannes Berg029b6d12017-12-02 08:41:55 +01001221 return -ENFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001224static int dev_alloc_name_ns(struct net *net,
1225 struct net_device *dev,
1226 const char *name)
1227{
1228 char buf[IFNAMSIZ];
1229 int ret;
1230
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001231 BUG_ON(!net);
Rasmus Villemoes2c88b852017-11-13 00:15:05 +01001232 ret = __dev_alloc_name(net, name, buf);
1233 if (ret >= 0)
1234 strlcpy(dev->name, buf, IFNAMSIZ);
1235 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001238/**
1239 * dev_alloc_name - allocate a name for a device
1240 * @dev: device
1241 * @name: name format string
1242 *
1243 * Passed a format string - eg "lt%d" it will try and find a suitable
1244 * id. It scans list of devices to build up a free map, then chooses
1245 * the first empty slot. The caller must hold the dev_base or rtnl lock
1246 * while allocating the name and adding the device in order to avoid
1247 * duplicates.
1248 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1249 * Returns the number of the unit assigned or a negative errno code.
1250 */
1251
1252int dev_alloc_name(struct net_device *dev, const char *name)
1253{
Rasmus Villemoesc46d7642017-11-13 00:15:06 +01001254 return dev_alloc_name_ns(dev_net(dev), dev, name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001255}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001256EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001257
Eric Dumazetbacb7e12019-10-08 14:20:34 -07001258static int dev_get_valid_name(struct net *net, struct net_device *dev,
1259 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001260{
David S. Miller55a5ec92018-01-02 11:45:07 -05001261 BUG_ON(!net);
1262
1263 if (!dev_valid_name(name))
1264 return -EINVAL;
1265
1266 if (strchr(name, '%'))
1267 return dev_alloc_name_ns(net, dev, name);
1268 else if (__dev_get_by_name(net, name))
1269 return -EEXIST;
1270 else if (dev->name != name)
1271 strlcpy(dev->name, name, IFNAMSIZ);
1272
1273 return 0;
Octavian Purdilad9031022009-11-18 02:36:59 +00001274}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276/**
1277 * dev_change_name - change name of a device
1278 * @dev: device
1279 * @newname: name (or format string) must be at least IFNAMSIZ
1280 *
1281 * Change name of a device, can pass format strings "eth%d".
1282 * for wildcarding.
1283 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001284int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
Tom Gundersen238fa362014-07-14 16:37:23 +02001286 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001287 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001289 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001290 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001293 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001295 net = dev_net(dev);
Si-Wei Liu8065a772019-04-08 19:45:27 -04001296
1297 /* Some auto-enslaved devices e.g. failover slaves are
1298 * special, as userspace might rename the device after
1299 * the interface had been brought up and running since
1300 * the point kernel initiated auto-enslavement. Allow
1301 * live name change even when these slave devices are
1302 * up and running.
1303 *
1304 * Typically, users of these auto-enslaving devices
1305 * don't actually care about slave name change, as
1306 * they are supposed to operate on master interface
1307 * directly.
1308 */
1309 if (dev->flags & IFF_UP &&
1310 likely(!(dev->priv_flags & IFF_LIVE_RENAME_OK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return -EBUSY;
1312
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001313 down_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001314
1315 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001316 up_write(&devnet_rename_sem);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001317 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001318 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001319
Herbert Xufcc5a032007-07-30 17:03:38 -07001320 memcpy(oldname, dev->name, IFNAMSIZ);
1321
Gao feng828de4f2012-09-13 20:58:27 +00001322 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001323 if (err < 0) {
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001324 up_write(&devnet_rename_sem);
Octavian Purdilad9031022009-11-18 02:36:59 +00001325 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001328 if (oldname[0] && !strchr(oldname, '%'))
1329 netdev_info(dev, "renamed from %s\n", oldname);
1330
Tom Gundersen238fa362014-07-14 16:37:23 +02001331 old_assign_type = dev->name_assign_type;
1332 dev->name_assign_type = NET_NAME_RENAMED;
1333
Herbert Xufcc5a032007-07-30 17:03:38 -07001334rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001335 ret = device_rename(&dev->dev, dev->name);
1336 if (ret) {
1337 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001338 dev->name_assign_type = old_assign_type;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001339 up_write(&devnet_rename_sem);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001340 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001341 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001342
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001343 up_write(&devnet_rename_sem);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001344
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001345 netdev_adjacent_rename_links(dev, oldname);
1346
Herbert Xu7f988ea2007-07-30 16:35:46 -07001347 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001348 netdev_name_node_del(dev->name_node);
Eric Dumazet72c95282009-10-30 07:11:27 +00001349 write_unlock_bh(&dev_base_lock);
1350
1351 synchronize_rcu();
1352
1353 write_lock_bh(&dev_base_lock);
Jiri Pirkoff927412019-09-30 11:48:15 +02001354 netdev_name_node_add(net, dev->name_node);
Herbert Xu7f988ea2007-07-30 16:35:46 -07001355 write_unlock_bh(&dev_base_lock);
1356
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001357 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001358 ret = notifier_to_errno(ret);
1359
1360 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001361 /* err >= 0 after dev_alloc_name() or stores the first errno */
1362 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001363 err = ret;
Ahmed S. Darwish11d60112020-06-03 16:49:44 +02001364 down_write(&devnet_rename_sem);
Herbert Xufcc5a032007-07-30 17:03:38 -07001365 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001366 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001367 dev->name_assign_type = old_assign_type;
1368 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001369 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001370 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001371 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001372 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001373 }
1374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 return err;
1377}
1378
1379/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001380 * dev_set_alias - change ifalias of a device
1381 * @dev: device
1382 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001383 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001384 *
1385 * Set ifalias for a device,
1386 */
1387int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1388{
Florian Westphal6c557002017-10-02 23:50:05 +02001389 struct dev_ifalias *new_alias = NULL;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001390
1391 if (len >= IFALIASZ)
1392 return -EINVAL;
1393
Florian Westphal6c557002017-10-02 23:50:05 +02001394 if (len) {
1395 new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1396 if (!new_alias)
1397 return -ENOMEM;
1398
1399 memcpy(new_alias->ifalias, alias, len);
1400 new_alias->ifalias[len] = 0;
Oliver Hartkopp96ca4a2c2008-09-23 21:23:19 -07001401 }
1402
Florian Westphal6c557002017-10-02 23:50:05 +02001403 mutex_lock(&ifalias_mutex);
Paul E. McKenneye3f0d762019-09-23 15:42:28 -07001404 new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1405 mutex_is_locked(&ifalias_mutex));
Florian Westphal6c557002017-10-02 23:50:05 +02001406 mutex_unlock(&ifalias_mutex);
1407
1408 if (new_alias)
1409 kfree_rcu(new_alias, rcuhead);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001410
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001411 return len;
1412}
Stephen Hemminger0fe554a2018-04-17 14:25:30 -07001413EXPORT_SYMBOL(dev_set_alias);
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001414
Florian Westphal6c557002017-10-02 23:50:05 +02001415/**
1416 * dev_get_alias - get ifalias of a device
1417 * @dev: device
Florian Westphal20e88322017-10-04 13:56:50 +02001418 * @name: buffer to store name of ifalias
Florian Westphal6c557002017-10-02 23:50:05 +02001419 * @len: size of buffer
1420 *
1421 * get ifalias for a device. Caller must make sure dev cannot go
1422 * away, e.g. rcu read lock or own a reference count to device.
1423 */
1424int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1425{
1426 const struct dev_ifalias *alias;
1427 int ret = 0;
1428
1429 rcu_read_lock();
1430 alias = rcu_dereference(dev->ifalias);
1431 if (alias)
1432 ret = snprintf(name, len, "%s", alias->ifalias);
1433 rcu_read_unlock();
1434
1435 return ret;
1436}
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001437
1438/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001439 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001440 * @dev: device to cause notification
1441 *
1442 * Called to indicate a device has changed features.
1443 */
1444void netdev_features_change(struct net_device *dev)
1445{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001446 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001447}
1448EXPORT_SYMBOL(netdev_features_change);
1449
1450/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 * netdev_state_change - device changes state
1452 * @dev: device to cause notification
1453 *
1454 * Called to indicate a device has changed state. This function calls
1455 * the notifier chains for netdev_chain and sends a NEWLINK message
1456 * to the routing socket.
1457 */
1458void netdev_state_change(struct net_device *dev)
1459{
1460 if (dev->flags & IFF_UP) {
David Ahern51d0c0472017-10-04 17:48:45 -07001461 struct netdev_notifier_change_info change_info = {
1462 .info.dev = dev,
1463 };
Loic Prylli54951192014-07-01 21:39:43 -07001464
David Ahern51d0c0472017-10-04 17:48:45 -07001465 call_netdevice_notifiers_info(NETDEV_CHANGE,
Loic Prylli54951192014-07-01 21:39:43 -07001466 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001467 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001470EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Amerigo Wangee89bab2012-08-09 22:14:56 +00001472/**
tcharding722c9a02017-02-09 17:56:04 +11001473 * netdev_notify_peers - notify network peers about existence of @dev
1474 * @dev: network device
Amerigo Wangee89bab2012-08-09 22:14:56 +00001475 *
1476 * Generate traffic such that interested network peers are aware of
1477 * @dev, such as by generating a gratuitous ARP. This may be used when
1478 * a device wants to inform the rest of the network about some sort of
1479 * reconfiguration such as a failover event or virtual machine
1480 * migration.
1481 */
1482void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001483{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001484 rtnl_lock();
1485 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich37c343b2017-03-14 08:58:08 -04001486 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001487 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001488}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001489EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001490
Petr Machata40c900a2018-12-06 17:05:47 +00001491static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001493 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001494 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001496 ASSERT_RTNL();
1497
Heiner Kallweitbd869242020-06-20 22:35:42 +02001498 if (!netif_device_present(dev)) {
1499 /* may be detached because parent is runtime-suspended */
1500 if (dev->dev.parent)
1501 pm_runtime_resume(dev->dev.parent);
1502 if (!netif_device_present(dev))
1503 return -ENODEV;
1504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Neil Hormanca99ca12013-02-05 08:05:43 +00001506 /* Block netpoll from trying to do any rx path servicing.
1507 * If we don't do this there is a chance ndo_poll_controller
1508 * or ndo_poll may be running while we open the device
1509 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001510 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001511
Petr Machata40c900a2018-12-06 17:05:47 +00001512 ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001513 ret = notifier_to_errno(ret);
1514 if (ret)
1515 return ret;
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001518
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001519 if (ops->ndo_validate_addr)
1520 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001521
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001522 if (!ret && ops->ndo_open)
1523 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Eric W. Biederman66b55522014-03-27 15:39:03 -07001525 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001526
Jeff Garzikbada3392007-10-23 20:19:37 -07001527 if (ret)
1528 clear_bit(__LINK_STATE_START, &dev->state);
1529 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001531 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001533 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return ret;
1537}
Patrick McHardybd380812010-02-26 06:34:53 +00001538
1539/**
1540 * dev_open - prepare an interface for use.
Petr Machata00f54e62018-12-06 17:05:36 +00001541 * @dev: device to open
1542 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00001543 *
1544 * Takes a device from down to up state. The device's private open
1545 * function is invoked and then the multicast lists are loaded. Finally
1546 * the device is moved into the up state and a %NETDEV_UP message is
1547 * sent to the netdev notifier chain.
1548 *
1549 * Calling this function on an active interface is a nop. On a failure
1550 * a negative errno code is returned.
1551 */
Petr Machata00f54e62018-12-06 17:05:36 +00001552int dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00001553{
1554 int ret;
1555
Patrick McHardybd380812010-02-26 06:34:53 +00001556 if (dev->flags & IFF_UP)
1557 return 0;
1558
Petr Machata40c900a2018-12-06 17:05:47 +00001559 ret = __dev_open(dev, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00001560 if (ret < 0)
1561 return ret;
1562
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001563 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001564 call_netdevice_notifiers(NETDEV_UP, dev);
1565
1566 return ret;
1567}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001568EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
stephen hemminger7051b882017-07-18 15:59:27 -07001570static void __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Octavian Purdila44345722010-12-13 12:44:07 +00001572 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001573
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001574 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001575 might_sleep();
1576
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001577 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001578 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001579 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001580
Octavian Purdila44345722010-12-13 12:44:07 +00001581 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Octavian Purdila44345722010-12-13 12:44:07 +00001583 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Octavian Purdila44345722010-12-13 12:44:07 +00001585 /* Synchronize to scheduled poll. We cannot touch poll list, it
1586 * can be even on different cpu. So just clear netif_running().
1587 *
1588 * dev->stop() will invoke napi_disable() on all of it's
1589 * napi_struct instances on this device.
1590 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001591 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Octavian Purdila44345722010-12-13 12:44:07 +00001594 dev_deactivate_many(head);
1595
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001596 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001597 const struct net_device_ops *ops = dev->netdev_ops;
1598
1599 /*
1600 * Call the device specific close. This cannot fail.
1601 * Only if device is UP
1602 *
1603 * We allow it to be called even after a DETACH hot-plug
1604 * event.
1605 */
1606 if (ops->ndo_stop)
1607 ops->ndo_stop(dev);
1608
Octavian Purdila44345722010-12-13 12:44:07 +00001609 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001610 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001611 }
Octavian Purdila44345722010-12-13 12:44:07 +00001612}
1613
stephen hemminger7051b882017-07-18 15:59:27 -07001614static void __dev_close(struct net_device *dev)
Octavian Purdila44345722010-12-13 12:44:07 +00001615{
1616 LIST_HEAD(single);
1617
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001618 list_add(&dev->close_list, &single);
stephen hemminger7051b882017-07-18 15:59:27 -07001619 __dev_close_many(&single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001620 list_del(&single);
Octavian Purdila44345722010-12-13 12:44:07 +00001621}
1622
stephen hemminger7051b882017-07-18 15:59:27 -07001623void dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001624{
1625 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001626
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001627 /* Remove the devices that don't need to be closed */
1628 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001629 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001630 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001631
1632 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001633
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001634 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001635 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001636 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001637 if (unlink)
1638 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640}
David S. Miller99c4a262015-03-18 22:52:33 -04001641EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001642
1643/**
1644 * dev_close - shutdown an interface.
1645 * @dev: device to shutdown
1646 *
1647 * This function moves an active device into down state. A
1648 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1649 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1650 * chain.
1651 */
stephen hemminger7051b882017-07-18 15:59:27 -07001652void dev_close(struct net_device *dev)
Patrick McHardybd380812010-02-26 06:34:53 +00001653{
Eric Dumazete14a5992011-05-10 12:26:06 -07001654 if (dev->flags & IFF_UP) {
1655 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001656
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001657 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001658 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001659 list_del(&single);
1660 }
Patrick McHardybd380812010-02-26 06:34:53 +00001661}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001662EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001665/**
1666 * dev_disable_lro - disable Large Receive Offload on a device
1667 * @dev: device
1668 *
1669 * Disable Large Receive Offload (LRO) on a net device. Must be
1670 * called under RTNL. This is needed if received packets may be
1671 * forwarded to another interface.
1672 */
1673void dev_disable_lro(struct net_device *dev)
1674{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001675 struct net_device *lower_dev;
1676 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001677
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001678 dev->wanted_features &= ~NETIF_F_LRO;
1679 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001680
Michał Mirosław22d59692011-04-21 12:42:15 +00001681 if (unlikely(dev->features & NETIF_F_LRO))
1682 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001683
1684 netdev_for_each_lower_dev(dev, lower_dev, iter)
1685 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001686}
1687EXPORT_SYMBOL(dev_disable_lro);
1688
Michael Chan56f5aa72017-12-16 03:09:41 -05001689/**
1690 * dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1691 * @dev: device
1692 *
1693 * Disable HW Generic Receive Offload (GRO_HW) on a net device. Must be
1694 * called under RTNL. This is needed if Generic XDP is installed on
1695 * the device.
1696 */
1697static void dev_disable_gro_hw(struct net_device *dev)
1698{
1699 dev->wanted_features &= ~NETIF_F_GRO_HW;
1700 netdev_update_features(dev);
1701
1702 if (unlikely(dev->features & NETIF_F_GRO_HW))
1703 netdev_WARN(dev, "failed to disable GRO_HW!\n");
1704}
1705
Kirill Tkhaiede27622018-03-23 19:47:19 +03001706const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1707{
1708#define N(val) \
1709 case NETDEV_##val: \
1710 return "NETDEV_" __stringify(val);
1711 switch (cmd) {
1712 N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1713 N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1714 N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1715 N(POST_INIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN) N(CHANGEUPPER)
1716 N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA) N(BONDING_INFO)
1717 N(PRECHANGEUPPER) N(CHANGELOWERSTATE) N(UDP_TUNNEL_PUSH_INFO)
1718 N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
Gal Pressman9daae9b2018-03-28 17:46:54 +03001719 N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1720 N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
Petr Machata15704152018-12-13 11:54:33 +00001721 N(PRE_CHANGEADDR)
Kirill Tkhai3f5ecd82018-04-26 15:18:38 +03001722 }
Kirill Tkhaiede27622018-03-23 19:47:19 +03001723#undef N
1724 return "UNKNOWN_NETDEV_EVENT";
1725}
1726EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1727
Jiri Pirko351638e2013-05-28 01:30:21 +00001728static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1729 struct net_device *dev)
1730{
David Ahern51d0c0472017-10-04 17:48:45 -07001731 struct netdev_notifier_info info = {
1732 .dev = dev,
1733 };
Jiri Pirko351638e2013-05-28 01:30:21 +00001734
Jiri Pirko351638e2013-05-28 01:30:21 +00001735 return nb->notifier_call(nb, val, &info);
1736}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001737
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001738static int call_netdevice_register_notifiers(struct notifier_block *nb,
1739 struct net_device *dev)
1740{
1741 int err;
1742
1743 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1744 err = notifier_to_errno(err);
1745 if (err)
1746 return err;
1747
1748 if (!(dev->flags & IFF_UP))
1749 return 0;
1750
1751 call_netdevice_notifier(nb, NETDEV_UP, dev);
1752 return 0;
1753}
1754
1755static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1756 struct net_device *dev)
1757{
1758 if (dev->flags & IFF_UP) {
1759 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1760 dev);
1761 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1762 }
1763 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1764}
1765
1766static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1767 struct net *net)
1768{
1769 struct net_device *dev;
1770 int err;
1771
1772 for_each_netdev(net, dev) {
1773 err = call_netdevice_register_notifiers(nb, dev);
1774 if (err)
1775 goto rollback;
1776 }
1777 return 0;
1778
1779rollback:
1780 for_each_netdev_continue_reverse(net, dev)
1781 call_netdevice_unregister_notifiers(nb, dev);
1782 return err;
1783}
1784
1785static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1786 struct net *net)
1787{
1788 struct net_device *dev;
1789
1790 for_each_netdev(net, dev)
1791 call_netdevice_unregister_notifiers(nb, dev);
1792}
1793
Eric W. Biederman881d9662007-09-17 11:56:21 -07001794static int dev_boot_phase = 1;
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796/**
tcharding722c9a02017-02-09 17:56:04 +11001797 * register_netdevice_notifier - register a network notifier block
1798 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 *
tcharding722c9a02017-02-09 17:56:04 +11001800 * Register a notifier to be called when network device events occur.
1801 * The notifier passed is linked into the kernel structures and must
1802 * not be reused until it has been unregistered. A negative errno code
1803 * is returned on a failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 *
tcharding722c9a02017-02-09 17:56:04 +11001805 * When registered all registration and up events are replayed
1806 * to the new notifier to allow device to have a race free
1807 * view of the network device list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
1809
1810int register_netdevice_notifier(struct notifier_block *nb)
1811{
Eric W. Biederman881d9662007-09-17 11:56:21 -07001812 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 int err;
1814
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001815 /* Close race with setup_net() and cleanup_net() */
1816 down_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001818 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001819 if (err)
1820 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001821 if (dev_boot_phase)
1822 goto unlock;
1823 for_each_net(net) {
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001824 err = call_netdevice_register_net_notifiers(nb, net);
1825 if (err)
1826 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001828
1829unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001831 up_write(&pernet_ops_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001833
1834rollback:
Jiri Pirkoafa0df52019-09-30 10:15:09 +02001835 for_each_net_continue_reverse(net)
1836 call_netdevice_unregister_net_notifiers(nb, net);
Herbert Xufcc5a032007-07-30 17:03:38 -07001837
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001838 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001839 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001841EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843/**
tcharding722c9a02017-02-09 17:56:04 +11001844 * unregister_netdevice_notifier - unregister a network notifier block
1845 * @nb: notifier
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 *
tcharding722c9a02017-02-09 17:56:04 +11001847 * Unregister a notifier previously registered by
1848 * register_netdevice_notifier(). The notifier is unlinked into the
1849 * kernel structures and may then be reused. A negative errno code
1850 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001851 *
tcharding722c9a02017-02-09 17:56:04 +11001852 * After unregistering unregister and down device events are synthesized
1853 * for all devices on the device list to the removed notifier to remove
1854 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 */
1856
1857int unregister_netdevice_notifier(struct notifier_block *nb)
1858{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001859 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001860 int err;
1861
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001862 /* Close race with setup_net() and cleanup_net() */
1863 down_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001864 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001865 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001866 if (err)
1867 goto unlock;
1868
Jiri Pirko48b3a132020-01-25 12:17:06 +01001869 for_each_net(net)
1870 call_netdevice_unregister_net_notifiers(nb, net);
1871
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001872unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001873 rtnl_unlock();
Kirill Tkhai328fbe72018-03-29 17:03:45 +03001874 up_write(&pernet_ops_rwsem);
Herbert Xu9f514952006-03-25 01:24:25 -08001875 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001877EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Jiri Pirko1f637702020-01-25 12:17:07 +01001879static int __register_netdevice_notifier_net(struct net *net,
1880 struct notifier_block *nb,
1881 bool ignore_call_fail)
1882{
1883 int err;
1884
1885 err = raw_notifier_chain_register(&net->netdev_chain, nb);
1886 if (err)
1887 return err;
1888 if (dev_boot_phase)
1889 return 0;
1890
1891 err = call_netdevice_register_net_notifiers(nb, net);
1892 if (err && !ignore_call_fail)
1893 goto chain_unregister;
1894
1895 return 0;
1896
1897chain_unregister:
1898 raw_notifier_chain_unregister(&net->netdev_chain, nb);
1899 return err;
1900}
1901
1902static int __unregister_netdevice_notifier_net(struct net *net,
1903 struct notifier_block *nb)
1904{
1905 int err;
1906
1907 err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
1908 if (err)
1909 return err;
1910
1911 call_netdevice_unregister_net_notifiers(nb, net);
1912 return 0;
1913}
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915/**
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001916 * register_netdevice_notifier_net - register a per-netns network notifier block
1917 * @net: network namespace
1918 * @nb: notifier
1919 *
1920 * Register a notifier to be called when network device events occur.
1921 * The notifier passed is linked into the kernel structures and must
1922 * not be reused until it has been unregistered. A negative errno code
1923 * is returned on a failure.
1924 *
1925 * When registered all registration and up events are replayed
1926 * to the new notifier to allow device to have a race free
1927 * view of the network device list.
1928 */
1929
1930int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
1931{
1932 int err;
1933
1934 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001935 err = __register_netdevice_notifier_net(net, nb, false);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001936 rtnl_unlock();
1937 return err;
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001938}
1939EXPORT_SYMBOL(register_netdevice_notifier_net);
1940
1941/**
1942 * unregister_netdevice_notifier_net - unregister a per-netns
1943 * network notifier block
1944 * @net: network namespace
1945 * @nb: notifier
1946 *
1947 * Unregister a notifier previously registered by
1948 * register_netdevice_notifier(). The notifier is unlinked into the
1949 * kernel structures and may then be reused. A negative errno code
1950 * is returned on a failure.
1951 *
1952 * After unregistering unregister and down device events are synthesized
1953 * for all devices on the device list to the removed notifier to remove
1954 * the need for special case cleanup code.
1955 */
1956
1957int unregister_netdevice_notifier_net(struct net *net,
1958 struct notifier_block *nb)
1959{
1960 int err;
1961
1962 rtnl_lock();
Jiri Pirko1f637702020-01-25 12:17:07 +01001963 err = __unregister_netdevice_notifier_net(net, nb);
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02001964 rtnl_unlock();
1965 return err;
1966}
1967EXPORT_SYMBOL(unregister_netdevice_notifier_net);
1968
Jiri Pirko93642e12020-01-25 12:17:08 +01001969int register_netdevice_notifier_dev_net(struct net_device *dev,
1970 struct notifier_block *nb,
1971 struct netdev_net_notifier *nn)
1972{
1973 int err;
1974
1975 rtnl_lock();
1976 err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
1977 if (!err) {
1978 nn->nb = nb;
1979 list_add(&nn->list, &dev->net_notifier_list);
1980 }
1981 rtnl_unlock();
1982 return err;
1983}
1984EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
1985
1986int unregister_netdevice_notifier_dev_net(struct net_device *dev,
1987 struct notifier_block *nb,
1988 struct netdev_net_notifier *nn)
1989{
1990 int err;
1991
1992 rtnl_lock();
1993 list_del(&nn->list);
1994 err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
1995 rtnl_unlock();
1996 return err;
1997}
1998EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
1999
2000static void move_netdevice_notifiers_dev_net(struct net_device *dev,
2001 struct net *net)
2002{
2003 struct netdev_net_notifier *nn;
2004
2005 list_for_each_entry(nn, &dev->net_notifier_list, list) {
2006 __unregister_netdevice_notifier_net(dev_net(dev), nn->nb);
2007 __register_netdevice_notifier_net(net, nn->nb, true);
2008 }
2009}
2010
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002011/**
Jiri Pirko351638e2013-05-28 01:30:21 +00002012 * call_netdevice_notifiers_info - call all network notifier blocks
2013 * @val: value passed unmodified to notifier function
Jiri Pirko351638e2013-05-28 01:30:21 +00002014 * @info: notifier information data
2015 *
2016 * Call all network notifier blocks. Parameters and return value
2017 * are as for raw_notifier_call_chain().
2018 */
2019
stephen hemminger1d143d92013-12-29 14:01:29 -08002020static int call_netdevice_notifiers_info(unsigned long val,
stephen hemminger1d143d92013-12-29 14:01:29 -08002021 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00002022{
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002023 struct net *net = dev_net(info->dev);
2024 int ret;
2025
Jiri Pirko351638e2013-05-28 01:30:21 +00002026 ASSERT_RTNL();
Jiri Pirkoa30c7b42019-09-30 10:15:10 +02002027
2028 /* Run per-netns notifier block chain first, then run the global one.
2029 * Hopefully, one day, the global one is going to be removed after
2030 * all notifier block registrators get converted to be per-netns.
2031 */
2032 ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2033 if (ret & NOTIFY_STOP_MASK)
2034 return ret;
Jiri Pirko351638e2013-05-28 01:30:21 +00002035 return raw_notifier_call_chain(&netdev_chain, val, info);
2036}
Jiri Pirko351638e2013-05-28 01:30:21 +00002037
Petr Machata26372602018-12-06 17:05:45 +00002038static int call_netdevice_notifiers_extack(unsigned long val,
2039 struct net_device *dev,
2040 struct netlink_ext_ack *extack)
2041{
2042 struct netdev_notifier_info info = {
2043 .dev = dev,
2044 .extack = extack,
2045 };
2046
2047 return call_netdevice_notifiers_info(val, &info);
2048}
2049
Jiri Pirko351638e2013-05-28 01:30:21 +00002050/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 * call_netdevice_notifiers - call all network notifier blocks
2052 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07002053 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 *
2055 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07002056 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 */
2058
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07002059int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Petr Machata26372602018-12-06 17:05:45 +00002061 return call_netdevice_notifiers_extack(val, dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
stephen hemmingeredf947f2011-03-24 13:24:01 +00002063EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02002065/**
2066 * call_netdevice_notifiers_mtu - call all network notifier blocks
2067 * @val: value passed unmodified to notifier function
2068 * @dev: net_device pointer passed unmodified to notifier function
2069 * @arg: additional u32 argument passed to the notifier function
2070 *
2071 * Call all network notifier blocks. Parameters and return value
2072 * are as for raw_notifier_call_chain().
2073 */
2074static int call_netdevice_notifiers_mtu(unsigned long val,
2075 struct net_device *dev, u32 arg)
2076{
2077 struct netdev_notifier_info_ext info = {
2078 .info.dev = dev,
2079 .ext.mtu = arg,
2080 };
2081
2082 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2083
2084 return call_netdevice_notifiers_info(val, &info.info);
2085}
2086
Pablo Neira1cf519002015-05-13 18:19:37 +02002087#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002088static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002089
2090void net_inc_ingress_queue(void)
2091{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002092 static_branch_inc(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002093}
2094EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2095
2096void net_dec_ingress_queue(void)
2097{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002098 static_branch_dec(&ingress_needed_key);
Daniel Borkmann45771392015-04-10 23:07:54 +02002099}
2100EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2101#endif
2102
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002103#ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002104static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002105
2106void net_inc_egress_queue(void)
2107{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002108 static_branch_inc(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002109}
2110EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2111
2112void net_dec_egress_queue(void)
2113{
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07002114 static_branch_dec(&egress_needed_key);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01002115}
2116EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2117#endif
2118
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002119static DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002120#ifdef CONFIG_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00002121static atomic_t netstamp_needed_deferred;
Eric Dumazet13baa002017-03-01 14:28:39 -08002122static atomic_t netstamp_wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002123static void netstamp_clear(struct work_struct *work)
2124{
2125 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet13baa002017-03-01 14:28:39 -08002126 int wanted;
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002127
Eric Dumazet13baa002017-03-01 14:28:39 -08002128 wanted = atomic_add_return(deferred, &netstamp_wanted);
2129 if (wanted > 0)
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002130 static_branch_enable(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002131 else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002132 static_branch_disable(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002133}
2134static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00002135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137void net_enable_timestamp(void)
2138{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002139#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002140 int wanted;
2141
2142 while (1) {
2143 wanted = atomic_read(&netstamp_wanted);
2144 if (wanted <= 0)
2145 break;
2146 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
2147 return;
2148 }
2149 atomic_inc(&netstamp_needed_deferred);
2150 schedule_work(&netstamp_work);
2151#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002152 static_branch_inc(&netstamp_needed_key);
Eric Dumazet13baa002017-03-01 14:28:39 -08002153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002155EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
2157void net_disable_timestamp(void)
2158{
Masahiro Yamadae9666d12018-12-31 00:14:15 +09002159#ifdef CONFIG_JUMP_LABEL
Eric Dumazet13baa002017-03-01 14:28:39 -08002160 int wanted;
2161
2162 while (1) {
2163 wanted = atomic_read(&netstamp_wanted);
2164 if (wanted <= 1)
2165 break;
2166 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
2167 return;
2168 }
2169 atomic_dec(&netstamp_needed_deferred);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002170 schedule_work(&netstamp_work);
2171#else
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002172 static_branch_dec(&netstamp_needed_key);
Eric Dumazet5fa8bbd2017-02-02 10:31:35 -08002173#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002175EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Eric Dumazet3b098e22010-05-15 23:57:10 -07002177static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Thomas Gleixner2456e852016-12-25 11:38:40 +01002179 skb->tstamp = 0;
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002180 if (static_branch_unlikely(&netstamp_needed_key))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002181 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
Davidlohr Bueso39e83922018-05-08 09:07:01 -07002184#define net_timestamp_check(COND, SKB) \
2185 if (static_branch_unlikely(&netstamp_needed_key)) { \
2186 if ((COND) && !(SKB)->tstamp) \
2187 __net_timestamp(SKB); \
2188 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07002189
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02002190bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002191{
2192 unsigned int len;
2193
2194 if (!(dev->flags & IFF_UP))
2195 return false;
2196
2197 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
2198 if (skb->len <= len)
2199 return true;
2200
2201 /* if TSO is enabled, we don't care about the length as the packet
2202 * could be forwarded without being segmented before
2203 */
2204 if (skb_is_gso(skb))
2205 return true;
2206
2207 return false;
2208}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04002209EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07002210
Herbert Xua0265d22014-04-17 13:45:03 +08002211int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2212{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002213 int ret = ____dev_forward_skb(dev, skb);
2214
2215 if (likely(!ret)) {
2216 skb->protocol = eth_type_trans(skb, dev);
2217 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08002218 }
2219
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08002220 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08002221}
2222EXPORT_SYMBOL_GPL(__dev_forward_skb);
2223
Arnd Bergmann44540962009-11-26 06:07:08 +00002224/**
2225 * dev_forward_skb - loopback an skb to another netif
2226 *
2227 * @dev: destination network device
2228 * @skb: buffer to forward
2229 *
2230 * return values:
2231 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07002232 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00002233 *
2234 * dev_forward_skb can be used for injecting an skb from the
2235 * start_xmit function of one device into the receive queue
2236 * of another device.
2237 *
2238 * The receiving device may be in another namespace, so
2239 * we have to clear all information in the skb that could
2240 * impact namespace isolation.
2241 */
2242int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2243{
Herbert Xua0265d22014-04-17 13:45:03 +08002244 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00002245}
2246EXPORT_SYMBOL_GPL(dev_forward_skb);
2247
Changli Gao71d9dec2010-12-15 19:57:25 +00002248static inline int deliver_skb(struct sk_buff *skb,
2249 struct packet_type *pt_prev,
2250 struct net_device *orig_dev)
2251{
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04002252 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00002253 return -ENOMEM;
Reshetova, Elena63354792017-06-30 13:07:58 +03002254 refcount_inc(&skb->users);
Changli Gao71d9dec2010-12-15 19:57:25 +00002255 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2256}
2257
Salam Noureddine7866a622015-01-27 11:35:48 -08002258static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2259 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002260 struct net_device *orig_dev,
2261 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08002262 struct list_head *ptype_list)
2263{
2264 struct packet_type *ptype, *pt_prev = *pt;
2265
2266 list_for_each_entry_rcu(ptype, ptype_list, list) {
2267 if (ptype->type != type)
2268 continue;
2269 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02002270 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08002271 pt_prev = ptype;
2272 }
2273 *pt = pt_prev;
2274}
2275
Eric Leblondc0de08d2012-08-16 22:02:58 +00002276static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2277{
Eric Leblonda3d744e2012-11-06 02:10:10 +00002278 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00002279 return false;
2280
2281 if (ptype->id_match)
2282 return ptype->id_match(ptype, skb->sk);
2283 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2284 return true;
2285
2286 return false;
2287}
2288
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01002289/**
2290 * dev_nit_active - return true if any network interface taps are in use
2291 *
2292 * @dev: network device to check for the presence of taps
2293 */
2294bool dev_nit_active(struct net_device *dev)
2295{
2296 return !list_empty(&ptype_all) || !list_empty(&dev->ptype_all);
2297}
2298EXPORT_SYMBOL_GPL(dev_nit_active);
2299
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300/*
2301 * Support routine. Sends outgoing frames to any network
2302 * taps currently in use.
2303 */
2304
David Ahern74b20582016-05-10 11:19:50 -07002305void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
2307 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00002308 struct sk_buff *skb2 = NULL;
2309 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08002310 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002311
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08002313again:
2314 list_for_each_entry_rcu(ptype, ptype_list, list) {
Vincent Whitchurchfa788d92018-09-03 16:23:36 +02002315 if (ptype->ignore_outgoing)
2316 continue;
2317
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 /* Never send packets back to the socket
2319 * they originated from - MvS (miquels@drinkel.ow.org)
2320 */
Salam Noureddine7866a622015-01-27 11:35:48 -08002321 if (skb_loop_sk(ptype, skb))
2322 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00002323
Salam Noureddine7866a622015-01-27 11:35:48 -08002324 if (pt_prev) {
2325 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00002326 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08002327 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002329
2330 /* need to clone skb, done only once */
2331 skb2 = skb_clone(skb, GFP_ATOMIC);
2332 if (!skb2)
2333 goto out_unlock;
2334
2335 net_timestamp_set(skb2);
2336
2337 /* skb->nh should be correctly
2338 * set by sender, so that the second statement is
2339 * just protection against buggy protocols.
2340 */
2341 skb_reset_mac_header(skb2);
2342
2343 if (skb_network_header(skb2) < skb2->data ||
2344 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2345 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2346 ntohs(skb2->protocol),
2347 dev->name);
2348 skb_reset_network_header(skb2);
2349 }
2350
2351 skb2->transport_header = skb2->network_header;
2352 skb2->pkt_type = PACKET_OUTGOING;
2353 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
Salam Noureddine7866a622015-01-27 11:35:48 -08002355
2356 if (ptype_list == &ptype_all) {
2357 ptype_list = &dev->ptype_all;
2358 goto again;
2359 }
2360out_unlock:
Willem de Bruijn581fe0e2017-09-22 19:42:37 -04002361 if (pt_prev) {
2362 if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2363 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2364 else
2365 kfree_skb(skb2);
2366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 rcu_read_unlock();
2368}
David Ahern74b20582016-05-10 11:19:50 -07002369EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Ben Hutchings2c530402012-07-10 10:55:09 +00002371/**
2372 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00002373 * @dev: Network device
2374 * @txq: number of queues available
2375 *
2376 * If real_num_tx_queues is changed the tc mappings may no longer be
2377 * valid. To resolve this verify the tc mapping remains valid and if
2378 * not NULL the mapping. With no priorities mapping to this
2379 * offset/count pair it will no longer be used. In the worst case TC0
2380 * is invalid nothing can be done so disable priority mappings. If is
2381 * expected that drivers will fix this mapping if they can before
2382 * calling netif_set_real_num_tx_queues.
2383 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00002384static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00002385{
2386 int i;
2387 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2388
2389 /* If TC0 is invalidated disable TC mapping */
2390 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002391 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00002392 dev->num_tc = 0;
2393 return;
2394 }
2395
2396 /* Invalidated prio to tc mappings set to TC0 */
2397 for (i = 1; i < TC_BITMASK + 1; i++) {
2398 int q = netdev_get_prio_tc_map(dev, i);
2399
2400 tc = &dev->tc_to_txq[q];
2401 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002402 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2403 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00002404 netdev_set_prio_tc_map(dev, i, 0);
2405 }
2406 }
2407}
2408
Alexander Duyck8d059b02016-10-28 11:43:49 -04002409int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2410{
2411 if (dev->num_tc) {
2412 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2413 int i;
2414
Alexander Duyckffcfe252018-07-09 12:19:38 -04002415 /* walk through the TCs and see if it falls into any of them */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002416 for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2417 if ((txq - tc->offset) < tc->count)
2418 return i;
2419 }
2420
Alexander Duyckffcfe252018-07-09 12:19:38 -04002421 /* didn't find it, just return -1 to indicate no match */
Alexander Duyck8d059b02016-10-28 11:43:49 -04002422 return -1;
2423 }
2424
2425 return 0;
2426}
Henrik Austad8a5f2162017-10-17 12:10:10 +02002427EXPORT_SYMBOL(netdev_txq_to_tc);
Alexander Duyck8d059b02016-10-28 11:43:49 -04002428
Alexander Duyck537c00d2013-01-10 08:57:02 +00002429#ifdef CONFIG_XPS
Amritha Nambiar04157462018-06-29 21:26:46 -07002430struct static_key xps_needed __read_mostly;
2431EXPORT_SYMBOL(xps_needed);
2432struct static_key xps_rxqs_needed __read_mostly;
2433EXPORT_SYMBOL(xps_rxqs_needed);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002434static DEFINE_MUTEX(xps_map_mutex);
2435#define xmap_dereference(P) \
2436 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2437
Alexander Duyck6234f872016-10-28 11:46:49 -04002438static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2439 int tci, u16 index)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002440{
2441 struct xps_map *map = NULL;
2442 int pos;
2443
2444 if (dev_maps)
Amritha Nambiar80d19662018-06-29 21:26:41 -07002445 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck6234f872016-10-28 11:46:49 -04002446 if (!map)
2447 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002448
Alexander Duyck6234f872016-10-28 11:46:49 -04002449 for (pos = map->len; pos--;) {
2450 if (map->queues[pos] != index)
2451 continue;
2452
2453 if (map->len > 1) {
2454 map->queues[pos] = map->queues[--map->len];
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002455 break;
2456 }
Alexander Duyck6234f872016-10-28 11:46:49 -04002457
Amritha Nambiar80d19662018-06-29 21:26:41 -07002458 RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
Alexander Duyck6234f872016-10-28 11:46:49 -04002459 kfree_rcu(map, rcu);
2460 return false;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002461 }
2462
Alexander Duyck6234f872016-10-28 11:46:49 -04002463 return true;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002464}
2465
Alexander Duyck6234f872016-10-28 11:46:49 -04002466static bool remove_xps_queue_cpu(struct net_device *dev,
2467 struct xps_dev_maps *dev_maps,
2468 int cpu, u16 offset, u16 count)
2469{
Alexander Duyck184c4492016-10-28 11:50:13 -04002470 int num_tc = dev->num_tc ? : 1;
2471 bool active = false;
2472 int tci;
Alexander Duyck6234f872016-10-28 11:46:49 -04002473
Alexander Duyck184c4492016-10-28 11:50:13 -04002474 for (tci = cpu * num_tc; num_tc--; tci++) {
2475 int i, j;
2476
2477 for (i = count, j = offset; i--; j++) {
Amritha Nambiar6358d492018-05-17 14:50:44 -07002478 if (!remove_xps_queue(dev_maps, tci, j))
Alexander Duyck184c4492016-10-28 11:50:13 -04002479 break;
2480 }
2481
2482 active |= i < 0;
Alexander Duyck6234f872016-10-28 11:46:49 -04002483 }
2484
Alexander Duyck184c4492016-10-28 11:50:13 -04002485 return active;
Alexander Duyck6234f872016-10-28 11:46:49 -04002486}
2487
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002488static void reset_xps_maps(struct net_device *dev,
2489 struct xps_dev_maps *dev_maps,
2490 bool is_rxqs_map)
2491{
2492 if (is_rxqs_map) {
2493 static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2494 RCU_INIT_POINTER(dev->xps_rxqs_map, NULL);
2495 } else {
2496 RCU_INIT_POINTER(dev->xps_cpus_map, NULL);
2497 }
2498 static_key_slow_dec_cpuslocked(&xps_needed);
2499 kfree_rcu(dev_maps, rcu);
2500}
2501
Amritha Nambiar80d19662018-06-29 21:26:41 -07002502static void clean_xps_maps(struct net_device *dev, const unsigned long *mask,
2503 struct xps_dev_maps *dev_maps, unsigned int nr_ids,
2504 u16 offset, u16 count, bool is_rxqs_map)
2505{
2506 bool active = false;
2507 int i, j;
2508
2509 for (j = -1; j = netif_attrmask_next(j, mask, nr_ids),
2510 j < nr_ids;)
2511 active |= remove_xps_queue_cpu(dev, dev_maps, j, offset,
2512 count);
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002513 if (!active)
2514 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002515
Sabrina Dubrocaf28c0202018-11-29 14:14:48 +01002516 if (!is_rxqs_map) {
2517 for (i = offset + (count - 1); count--; i--) {
2518 netdev_queue_numa_node_write(
2519 netdev_get_tx_queue(dev, i),
2520 NUMA_NO_NODE);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002521 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002522 }
2523}
2524
Alexander Duyck6234f872016-10-28 11:46:49 -04002525static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2526 u16 count)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002527{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002528 const unsigned long *possible_mask = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002529 struct xps_dev_maps *dev_maps;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002530 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002531
Amritha Nambiar04157462018-06-29 21:26:46 -07002532 if (!static_key_false(&xps_needed))
2533 return;
2534
Andrei Vagin4d99f662018-08-08 20:07:35 -07002535 cpus_read_lock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002536 mutex_lock(&xps_map_mutex);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002537
Amritha Nambiar04157462018-06-29 21:26:46 -07002538 if (static_key_false(&xps_rxqs_needed)) {
2539 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2540 if (dev_maps) {
2541 nr_ids = dev->num_rx_queues;
2542 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids,
2543 offset, count, true);
2544 }
Amritha Nambiar80d19662018-06-29 21:26:41 -07002545 }
2546
2547 dev_maps = xmap_dereference(dev->xps_cpus_map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002548 if (!dev_maps)
2549 goto out_no_maps;
2550
Amritha Nambiar80d19662018-06-29 21:26:41 -07002551 if (num_possible_cpus() > 1)
2552 possible_mask = cpumask_bits(cpu_possible_mask);
2553 nr_ids = nr_cpu_ids;
2554 clean_xps_maps(dev, possible_mask, dev_maps, nr_ids, offset, count,
2555 false);
Alexander Duyck024e9672013-01-10 08:57:46 +00002556
Alexander Duyck537c00d2013-01-10 08:57:02 +00002557out_no_maps:
2558 mutex_unlock(&xps_map_mutex);
Andrei Vagin4d99f662018-08-08 20:07:35 -07002559 cpus_read_unlock();
Alexander Duyck537c00d2013-01-10 08:57:02 +00002560}
2561
Alexander Duyck6234f872016-10-28 11:46:49 -04002562static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2563{
2564 netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2565}
2566
Amritha Nambiar80d19662018-06-29 21:26:41 -07002567static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2568 u16 index, bool is_rxqs_map)
Alexander Duyck01c5f862013-01-10 08:57:35 +00002569{
2570 struct xps_map *new_map;
2571 int alloc_len = XPS_MIN_MAP_ALLOC;
2572 int i, pos;
2573
2574 for (pos = 0; map && pos < map->len; pos++) {
2575 if (map->queues[pos] != index)
2576 continue;
2577 return map;
2578 }
2579
Amritha Nambiar80d19662018-06-29 21:26:41 -07002580 /* Need to add tx-queue to this CPU's/rx-queue's existing map */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002581 if (map) {
2582 if (pos < map->alloc_len)
2583 return map;
2584
2585 alloc_len = map->alloc_len * 2;
2586 }
2587
Amritha Nambiar80d19662018-06-29 21:26:41 -07002588 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2589 * map
2590 */
2591 if (is_rxqs_map)
2592 new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2593 else
2594 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2595 cpu_to_node(attr_index));
Alexander Duyck01c5f862013-01-10 08:57:35 +00002596 if (!new_map)
2597 return NULL;
2598
2599 for (i = 0; i < pos; i++)
2600 new_map->queues[i] = map->queues[i];
2601 new_map->alloc_len = alloc_len;
2602 new_map->len = pos;
2603
2604 return new_map;
2605}
2606
Andrei Vagin4d99f662018-08-08 20:07:35 -07002607/* Must be called under cpus_read_lock */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002608int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2609 u16 index, bool is_rxqs_map)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002610{
Amritha Nambiar80d19662018-06-29 21:26:41 -07002611 const unsigned long *online_mask = NULL, *possible_mask = NULL;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002612 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002613 int i, j, tci, numa_node_id = -2;
Alexander Duyck184c4492016-10-28 11:50:13 -04002614 int maps_sz, num_tc = 1, tc = 0;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002615 struct xps_map *map, *new_map;
Alexander Duyck01c5f862013-01-10 08:57:35 +00002616 bool active = false;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002617 unsigned int nr_ids;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002618
Alexander Duyck184c4492016-10-28 11:50:13 -04002619 if (dev->num_tc) {
Alexander Duyckffcfe252018-07-09 12:19:38 -04002620 /* Do not allow XPS on subordinate device directly */
Alexander Duyck184c4492016-10-28 11:50:13 -04002621 num_tc = dev->num_tc;
Alexander Duyckffcfe252018-07-09 12:19:38 -04002622 if (num_tc < 0)
2623 return -EINVAL;
2624
2625 /* If queue belongs to subordinate dev use its map */
2626 dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2627
Alexander Duyck184c4492016-10-28 11:50:13 -04002628 tc = netdev_txq_to_tc(dev, index);
2629 if (tc < 0)
2630 return -EINVAL;
2631 }
2632
Amritha Nambiar80d19662018-06-29 21:26:41 -07002633 mutex_lock(&xps_map_mutex);
2634 if (is_rxqs_map) {
2635 maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2636 dev_maps = xmap_dereference(dev->xps_rxqs_map);
2637 nr_ids = dev->num_rx_queues;
2638 } else {
2639 maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2640 if (num_possible_cpus() > 1) {
2641 online_mask = cpumask_bits(cpu_online_mask);
2642 possible_mask = cpumask_bits(cpu_possible_mask);
2643 }
2644 dev_maps = xmap_dereference(dev->xps_cpus_map);
2645 nr_ids = nr_cpu_ids;
2646 }
2647
Alexander Duyck184c4492016-10-28 11:50:13 -04002648 if (maps_sz < L1_CACHE_BYTES)
2649 maps_sz = L1_CACHE_BYTES;
2650
Alexander Duyck01c5f862013-01-10 08:57:35 +00002651 /* allocate memory for queue storage */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002652 for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2653 j < nr_ids;) {
Alexander Duyck01c5f862013-01-10 08:57:35 +00002654 if (!new_dev_maps)
2655 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002656 if (!new_dev_maps) {
2657 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002658 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002659 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002660
Amritha Nambiar80d19662018-06-29 21:26:41 -07002661 tci = j * num_tc + tc;
2662 map = dev_maps ? xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck01c5f862013-01-10 08:57:35 +00002663 NULL;
2664
Amritha Nambiar80d19662018-06-29 21:26:41 -07002665 map = expand_xps_map(map, j, index, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002666 if (!map)
2667 goto error;
2668
Amritha Nambiar80d19662018-06-29 21:26:41 -07002669 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002670 }
2671
2672 if (!new_dev_maps)
2673 goto out_no_new_maps;
2674
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002675 if (!dev_maps) {
2676 /* Increment static keys at most once per type */
2677 static_key_slow_inc_cpuslocked(&xps_needed);
2678 if (is_rxqs_map)
2679 static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2680 }
Amritha Nambiar04157462018-06-29 21:26:46 -07002681
Amritha Nambiar80d19662018-06-29 21:26:41 -07002682 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2683 j < nr_ids;) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002684 /* copy maps belonging to foreign traffic classes */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002685 for (i = tc, tci = j * num_tc; dev_maps && i--; tci++) {
Alexander Duyck184c4492016-10-28 11:50:13 -04002686 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002687 map = xmap_dereference(dev_maps->attr_map[tci]);
2688 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002689 }
2690
2691 /* We need to explicitly update tci as prevous loop
2692 * could break out early if dev_maps is NULL.
2693 */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002694 tci = j * num_tc + tc;
Alexander Duyck184c4492016-10-28 11:50:13 -04002695
Amritha Nambiar80d19662018-06-29 21:26:41 -07002696 if (netif_attr_test_mask(j, mask, nr_ids) &&
2697 netif_attr_test_online(j, online_mask, nr_ids)) {
2698 /* add tx-queue to CPU/rx-queue maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002699 int pos = 0;
2700
Amritha Nambiar80d19662018-06-29 21:26:41 -07002701 map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002702 while ((pos < map->len) && (map->queues[pos] != index))
2703 pos++;
2704
2705 if (pos == map->len)
2706 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002707#ifdef CONFIG_NUMA
Amritha Nambiar80d19662018-06-29 21:26:41 -07002708 if (!is_rxqs_map) {
2709 if (numa_node_id == -2)
2710 numa_node_id = cpu_to_node(j);
2711 else if (numa_node_id != cpu_to_node(j))
2712 numa_node_id = -1;
2713 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002714#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002715 } else if (dev_maps) {
2716 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002717 map = xmap_dereference(dev_maps->attr_map[tci]);
2718 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002719 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002720
Alexander Duyck184c4492016-10-28 11:50:13 -04002721 /* copy maps belonging to foreign traffic classes */
2722 for (i = num_tc - tc, tci++; dev_maps && --i; tci++) {
2723 /* fill in the new device map from the old device map */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002724 map = xmap_dereference(dev_maps->attr_map[tci]);
2725 RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
Alexander Duyck184c4492016-10-28 11:50:13 -04002726 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002727 }
2728
Amritha Nambiar80d19662018-06-29 21:26:41 -07002729 if (is_rxqs_map)
2730 rcu_assign_pointer(dev->xps_rxqs_map, new_dev_maps);
2731 else
2732 rcu_assign_pointer(dev->xps_cpus_map, new_dev_maps);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002733
Alexander Duyck537c00d2013-01-10 08:57:02 +00002734 /* Cleanup old maps */
Alexander Duyck184c4492016-10-28 11:50:13 -04002735 if (!dev_maps)
2736 goto out_no_old_maps;
2737
Amritha Nambiar80d19662018-06-29 21:26:41 -07002738 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2739 j < nr_ids;) {
2740 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2741 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2742 map = xmap_dereference(dev_maps->attr_map[tci]);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002743 if (map && map != new_map)
2744 kfree_rcu(map, rcu);
2745 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002746 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002747
Alexander Duyck184c4492016-10-28 11:50:13 -04002748 kfree_rcu(dev_maps, rcu);
2749
2750out_no_old_maps:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002751 dev_maps = new_dev_maps;
2752 active = true;
2753
2754out_no_new_maps:
Amritha Nambiar80d19662018-06-29 21:26:41 -07002755 if (!is_rxqs_map) {
2756 /* update Tx queue numa node */
2757 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2758 (numa_node_id >= 0) ?
2759 numa_node_id : NUMA_NO_NODE);
2760 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002761
Alexander Duyck01c5f862013-01-10 08:57:35 +00002762 if (!dev_maps)
2763 goto out_no_maps;
2764
Amritha Nambiar80d19662018-06-29 21:26:41 -07002765 /* removes tx-queue from unused CPUs/rx-queues */
2766 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2767 j < nr_ids;) {
2768 for (i = tc, tci = j * num_tc; i--; tci++)
Alexander Duyck184c4492016-10-28 11:50:13 -04002769 active |= remove_xps_queue(dev_maps, tci, index);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002770 if (!netif_attr_test_mask(j, mask, nr_ids) ||
2771 !netif_attr_test_online(j, online_mask, nr_ids))
Alexander Duyck184c4492016-10-28 11:50:13 -04002772 active |= remove_xps_queue(dev_maps, tci, index);
2773 for (i = num_tc - tc, tci++; --i; tci++)
2774 active |= remove_xps_queue(dev_maps, tci, index);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002775 }
2776
2777 /* free map if not active */
Sabrina Dubroca867d0ad2018-11-29 14:14:49 +01002778 if (!active)
2779 reset_xps_maps(dev, dev_maps, is_rxqs_map);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002780
2781out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002782 mutex_unlock(&xps_map_mutex);
2783
2784 return 0;
2785error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002786 /* remove any maps that we added */
Amritha Nambiar80d19662018-06-29 21:26:41 -07002787 for (j = -1; j = netif_attrmask_next(j, possible_mask, nr_ids),
2788 j < nr_ids;) {
2789 for (i = num_tc, tci = j * num_tc; i--; tci++) {
2790 new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
Alexander Duyck184c4492016-10-28 11:50:13 -04002791 map = dev_maps ?
Amritha Nambiar80d19662018-06-29 21:26:41 -07002792 xmap_dereference(dev_maps->attr_map[tci]) :
Alexander Duyck184c4492016-10-28 11:50:13 -04002793 NULL;
2794 if (new_map && new_map != map)
2795 kfree(new_map);
2796 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002797 }
2798
Alexander Duyck537c00d2013-01-10 08:57:02 +00002799 mutex_unlock(&xps_map_mutex);
2800
Alexander Duyck537c00d2013-01-10 08:57:02 +00002801 kfree(new_dev_maps);
2802 return -ENOMEM;
2803}
Andrei Vagin4d99f662018-08-08 20:07:35 -07002804EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
Amritha Nambiar80d19662018-06-29 21:26:41 -07002805
2806int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2807 u16 index)
2808{
Andrei Vagin4d99f662018-08-08 20:07:35 -07002809 int ret;
2810
2811 cpus_read_lock();
2812 ret = __netif_set_xps_queue(dev, cpumask_bits(mask), index, false);
2813 cpus_read_unlock();
2814
2815 return ret;
Amritha Nambiar80d19662018-06-29 21:26:41 -07002816}
Alexander Duyck537c00d2013-01-10 08:57:02 +00002817EXPORT_SYMBOL(netif_set_xps_queue);
2818
2819#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002820static void netdev_unbind_all_sb_channels(struct net_device *dev)
2821{
2822 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2823
2824 /* Unbind any subordinate channels */
2825 while (txq-- != &dev->_tx[0]) {
2826 if (txq->sb_dev)
2827 netdev_unbind_sb_channel(dev, txq->sb_dev);
2828 }
2829}
2830
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002831void netdev_reset_tc(struct net_device *dev)
2832{
Alexander Duyck6234f872016-10-28 11:46:49 -04002833#ifdef CONFIG_XPS
2834 netif_reset_xps_queues_gt(dev, 0);
2835#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002836 netdev_unbind_all_sb_channels(dev);
2837
2838 /* Reset TC configuration of device */
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002839 dev->num_tc = 0;
2840 memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
2841 memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
2842}
2843EXPORT_SYMBOL(netdev_reset_tc);
2844
2845int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
2846{
2847 if (tc >= dev->num_tc)
2848 return -EINVAL;
2849
Alexander Duyck6234f872016-10-28 11:46:49 -04002850#ifdef CONFIG_XPS
2851 netif_reset_xps_queues(dev, offset, count);
2852#endif
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002853 dev->tc_to_txq[tc].count = count;
2854 dev->tc_to_txq[tc].offset = offset;
2855 return 0;
2856}
2857EXPORT_SYMBOL(netdev_set_tc_queue);
2858
2859int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
2860{
2861 if (num_tc > TC_MAX_QUEUE)
2862 return -EINVAL;
2863
Alexander Duyck6234f872016-10-28 11:46:49 -04002864#ifdef CONFIG_XPS
2865 netif_reset_xps_queues_gt(dev, 0);
2866#endif
Alexander Duyckffcfe252018-07-09 12:19:38 -04002867 netdev_unbind_all_sb_channels(dev);
2868
Alexander Duyck9cf1f6a2016-10-28 11:43:20 -04002869 dev->num_tc = num_tc;
2870 return 0;
2871}
2872EXPORT_SYMBOL(netdev_set_num_tc);
2873
Alexander Duyckffcfe252018-07-09 12:19:38 -04002874void netdev_unbind_sb_channel(struct net_device *dev,
2875 struct net_device *sb_dev)
2876{
2877 struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
2878
2879#ifdef CONFIG_XPS
2880 netif_reset_xps_queues_gt(sb_dev, 0);
2881#endif
2882 memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
2883 memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
2884
2885 while (txq-- != &dev->_tx[0]) {
2886 if (txq->sb_dev == sb_dev)
2887 txq->sb_dev = NULL;
2888 }
2889}
2890EXPORT_SYMBOL(netdev_unbind_sb_channel);
2891
2892int netdev_bind_sb_channel_queue(struct net_device *dev,
2893 struct net_device *sb_dev,
2894 u8 tc, u16 count, u16 offset)
2895{
2896 /* Make certain the sb_dev and dev are already configured */
2897 if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
2898 return -EINVAL;
2899
2900 /* We cannot hand out queues we don't have */
2901 if ((offset + count) > dev->real_num_tx_queues)
2902 return -EINVAL;
2903
2904 /* Record the mapping */
2905 sb_dev->tc_to_txq[tc].count = count;
2906 sb_dev->tc_to_txq[tc].offset = offset;
2907
2908 /* Provide a way for Tx queue to find the tc_to_txq map or
2909 * XPS map for itself.
2910 */
2911 while (count--)
2912 netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
2913
2914 return 0;
2915}
2916EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
2917
2918int netdev_set_sb_channel(struct net_device *dev, u16 channel)
2919{
2920 /* Do not use a multiqueue device to represent a subordinate channel */
2921 if (netif_is_multiqueue(dev))
2922 return -ENODEV;
2923
2924 /* We allow channels 1 - 32767 to be used for subordinate channels.
2925 * Channel 0 is meant to be "native" mode and used only to represent
2926 * the main root device. We allow writing 0 to reset the device back
2927 * to normal mode after being used as a subordinate channel.
2928 */
2929 if (channel > S16_MAX)
2930 return -EINVAL;
2931
2932 dev->num_tc = -channel;
2933
2934 return 0;
2935}
2936EXPORT_SYMBOL(netdev_set_sb_channel);
2937
John Fastabendf0796d52010-07-01 13:21:57 +00002938/*
2939 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
Gal Pressman3a053b12018-02-28 15:59:15 +02002940 * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
John Fastabendf0796d52010-07-01 13:21:57 +00002941 */
Tom Herberte6484932010-10-18 18:04:39 +00002942int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002943{
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002944 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002945 int rc;
2946
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002947 disabling = txq < dev->real_num_tx_queues;
2948
Tom Herberte6484932010-10-18 18:04:39 +00002949 if (txq < 1 || txq > dev->num_tx_queues)
2950 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002951
Ben Hutchings5c565802011-02-15 19:39:21 +00002952 if (dev->reg_state == NETREG_REGISTERED ||
2953 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002954 ASSERT_RTNL();
2955
Tom Herbert1d24eb42010-11-21 13:17:27 +00002956 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2957 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002958 if (rc)
2959 return rc;
2960
John Fastabend4f57c082011-01-17 08:06:04 +00002961 if (dev->num_tc)
2962 netif_setup_tc(dev, txq);
2963
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002964 dev->real_num_tx_queues = txq;
2965
2966 if (disabling) {
2967 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002968 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002969#ifdef CONFIG_XPS
2970 netif_reset_xps_queues_gt(dev, txq);
2971#endif
2972 }
Jakub Kicinskiac5b7012018-02-12 21:35:31 -08002973 } else {
2974 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002975 }
Tom Herberte6484932010-10-18 18:04:39 +00002976
Tom Herberte6484932010-10-18 18:04:39 +00002977 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002978}
2979EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002980
Michael Daltona953be52014-01-16 22:23:28 -08002981#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002982/**
2983 * netif_set_real_num_rx_queues - set actual number of RX queues used
2984 * @dev: Network device
2985 * @rxq: Actual number of RX queues
2986 *
2987 * This must be called either with the rtnl_lock held or before
2988 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002989 * negative error code. If called before registration, it always
2990 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002991 */
2992int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2993{
2994 int rc;
2995
Tom Herbertbd25fa72010-10-18 18:00:16 +00002996 if (rxq < 1 || rxq > dev->num_rx_queues)
2997 return -EINVAL;
2998
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002999 if (dev->reg_state == NETREG_REGISTERED) {
3000 ASSERT_RTNL();
3001
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003002 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
3003 rxq);
3004 if (rc)
3005 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003006 }
3007
3008 dev->real_num_rx_queues = rxq;
3009 return 0;
3010}
3011EXPORT_SYMBOL(netif_set_real_num_rx_queues);
3012#endif
3013
Ben Hutchings2c530402012-07-10 10:55:09 +00003014/**
3015 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00003016 *
3017 * This routine should set an upper limit on the number of RSS queues
3018 * used by default by multiqueue devices.
3019 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00003020int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00003021{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05303022 return is_kdump_kernel() ?
3023 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00003024}
3025EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3026
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003027static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003028{
3029 struct softnet_data *sd;
3030 unsigned long flags;
3031
3032 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05003033 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00003034 q->next_sched = NULL;
3035 *sd->output_queue_tailp = q;
3036 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003037 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3038 local_irq_restore(flags);
3039}
3040
David S. Miller37437bb2008-07-16 02:15:04 -07003041void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08003042{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003043 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3044 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08003045}
3046EXPORT_SYMBOL(__netif_schedule);
3047
Eric Dumazete6247022013-12-05 04:45:08 -08003048struct dev_kfree_skb_cb {
3049 enum skb_free_reason reason;
3050};
3051
3052static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08003053{
Eric Dumazete6247022013-12-05 04:45:08 -08003054 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08003055}
Denis Vlasenko56079432006-03-29 15:57:29 -08003056
John Fastabend46e5da40a2014-09-12 20:04:52 -07003057void netif_schedule_queue(struct netdev_queue *txq)
3058{
3059 rcu_read_lock();
Julio Faracco5be55152019-10-01 11:39:04 -03003060 if (!netif_xmit_stopped(txq)) {
John Fastabend46e5da40a2014-09-12 20:04:52 -07003061 struct Qdisc *q = rcu_dereference(txq->qdisc);
3062
3063 __netif_schedule(q);
3064 }
3065 rcu_read_unlock();
3066}
3067EXPORT_SYMBOL(netif_schedule_queue);
3068
John Fastabend46e5da40a2014-09-12 20:04:52 -07003069void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3070{
3071 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3072 struct Qdisc *q;
3073
3074 rcu_read_lock();
3075 q = rcu_dereference(dev_queue->qdisc);
3076 __netif_schedule(q);
3077 rcu_read_unlock();
3078 }
3079}
3080EXPORT_SYMBOL(netif_tx_wake_queue);
3081
Eric Dumazete6247022013-12-05 04:45:08 -08003082void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
3083{
3084 unsigned long flags;
3085
Myungho Jung98998862017-04-25 11:58:15 -07003086 if (unlikely(!skb))
3087 return;
3088
Reshetova, Elena63354792017-06-30 13:07:58 +03003089 if (likely(refcount_read(&skb->users) == 1)) {
Eric Dumazete6247022013-12-05 04:45:08 -08003090 smp_rmb();
Reshetova, Elena63354792017-06-30 13:07:58 +03003091 refcount_set(&skb->users, 0);
3092 } else if (likely(!refcount_dec_and_test(&skb->users))) {
Eric Dumazete6247022013-12-05 04:45:08 -08003093 return;
3094 }
3095 get_kfree_skb_cb(skb)->reason = reason;
3096 local_irq_save(flags);
3097 skb->next = __this_cpu_read(softnet_data.completion_queue);
3098 __this_cpu_write(softnet_data.completion_queue, skb);
3099 raise_softirq_irqoff(NET_TX_SOFTIRQ);
3100 local_irq_restore(flags);
3101}
3102EXPORT_SYMBOL(__dev_kfree_skb_irq);
3103
3104void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08003105{
3106 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08003107 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08003108 else
3109 dev_kfree_skb(skb);
3110}
Eric Dumazete6247022013-12-05 04:45:08 -08003111EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08003112
3113
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003114/**
3115 * netif_device_detach - mark device as removed
3116 * @dev: network device
3117 *
3118 * Mark device as removed from system and therefore no longer available.
3119 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003120void netif_device_detach(struct net_device *dev)
3121{
3122 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3123 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003124 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003125 }
3126}
3127EXPORT_SYMBOL(netif_device_detach);
3128
Stephen Hemmingerbea33482007-10-03 16:41:36 -07003129/**
3130 * netif_device_attach - mark device as attached
3131 * @dev: network device
3132 *
3133 * Mark device as attached from system and restart if needed.
3134 */
Denis Vlasenko56079432006-03-29 15:57:29 -08003135void netif_device_attach(struct net_device *dev)
3136{
3137 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3138 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00003139 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003140 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08003141 }
3142}
3143EXPORT_SYMBOL(netif_device_attach);
3144
Jiri Pirko5605c762015-05-12 14:56:12 +02003145/*
3146 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3147 * to be used as a distribution range.
3148 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04003149static u16 skb_tx_hash(const struct net_device *dev,
3150 const struct net_device *sb_dev,
3151 struct sk_buff *skb)
Jiri Pirko5605c762015-05-12 14:56:12 +02003152{
3153 u32 hash;
3154 u16 qoffset = 0;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003155 u16 qcount = dev->real_num_tx_queues;
Jiri Pirko5605c762015-05-12 14:56:12 +02003156
Alexander Duyckeadec8772018-07-09 12:19:48 -04003157 if (dev->num_tc) {
3158 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3159
3160 qoffset = sb_dev->tc_to_txq[tc].offset;
3161 qcount = sb_dev->tc_to_txq[tc].count;
3162 }
3163
Jiri Pirko5605c762015-05-12 14:56:12 +02003164 if (skb_rx_queue_recorded(skb)) {
3165 hash = skb_get_rx_queue(skb);
Amritha Nambiar6e11d152020-02-24 10:56:00 -08003166 if (hash >= qoffset)
3167 hash -= qoffset;
Alexander Duyck1b837d42018-04-27 14:06:53 -04003168 while (unlikely(hash >= qcount))
3169 hash -= qcount;
Alexander Duyckeadec8772018-07-09 12:19:48 -04003170 return hash + qoffset;
Jiri Pirko5605c762015-05-12 14:56:12 +02003171 }
3172
3173 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3174}
Jiri Pirko5605c762015-05-12 14:56:12 +02003175
Ben Hutchings36c92472012-01-17 07:57:56 +00003176static void skb_warn_bad_offload(const struct sk_buff *skb)
3177{
Wei Tang84d15ae2016-06-16 21:17:49 +08003178 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00003179 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01003180 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00003181
Ben Greearc846ad92013-04-19 10:45:52 +00003182 if (!net_ratelimit())
3183 return;
3184
Bjørn Mork88ad4172015-11-16 19:16:40 +01003185 if (dev) {
3186 if (dev->dev.parent)
3187 name = dev_driver_string(dev->dev.parent);
3188 else
3189 name = netdev_name(dev);
3190 }
Willem de Bruijn64131392019-07-07 05:51:55 -04003191 skb_dump(KERN_WARNING, skb, false);
3192 WARN(1, "%s: caps=(%pNF, %pNF)\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01003193 name, dev ? &dev->features : &null_features,
Willem de Bruijn64131392019-07-07 05:51:55 -04003194 skb->sk ? &skb->sk->sk_route_caps : &null_features);
Ben Hutchings36c92472012-01-17 07:57:56 +00003195}
3196
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197/*
3198 * Invalidate hardware checksum when packet is to be mangled, and
3199 * complete checksum manually on outgoing path.
3200 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07003201int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202{
Al Virod3bc23e2006-11-14 21:24:49 -08003203 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07003204 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Patrick McHardy84fa7932006-08-29 16:44:56 -07003206 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07003207 goto out_set_summed;
3208
Yi Li3aefd7d2020-10-27 13:59:04 +08003209 if (unlikely(skb_is_gso(skb))) {
Ben Hutchings36c92472012-01-17 07:57:56 +00003210 skb_warn_bad_offload(skb);
3211 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 }
3213
Eric Dumazetcef401d2013-01-25 20:34:37 +00003214 /* Before computing a checksum, we should make sure no frag could
3215 * be modified by an external entity : checksum could be wrong.
3216 */
3217 if (skb_has_shared_frag(skb)) {
3218 ret = __skb_linearize(skb);
3219 if (ret)
3220 goto out;
3221 }
3222
Michał Mirosław55508d62010-12-14 15:24:08 +00003223 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07003224 BUG_ON(offset >= skb_headlen(skb));
3225 csum = skb_checksum(skb, offset, skb->len - offset, 0);
3226
3227 offset += skb->csum_offset;
3228 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
3229
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003230 ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3231 if (ret)
3232 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07003234 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07003235out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003237out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 return ret;
3239}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003240EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Davide Carattib72b5bf2017-05-18 15:44:38 +02003242int skb_crc32c_csum_help(struct sk_buff *skb)
3243{
3244 __le32 crc32c_csum;
3245 int ret = 0, offset, start;
3246
3247 if (skb->ip_summed != CHECKSUM_PARTIAL)
3248 goto out;
3249
3250 if (unlikely(skb_is_gso(skb)))
3251 goto out;
3252
3253 /* Before computing a checksum, we should make sure no frag could
3254 * be modified by an external entity : checksum could be wrong.
3255 */
3256 if (unlikely(skb_has_shared_frag(skb))) {
3257 ret = __skb_linearize(skb);
3258 if (ret)
3259 goto out;
3260 }
3261 start = skb_checksum_start_offset(skb);
3262 offset = start + offsetof(struct sctphdr, checksum);
3263 if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3264 ret = -EINVAL;
3265 goto out;
3266 }
Heiner Kallweit8211fbf2019-10-06 18:52:43 +02003267
3268 ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3269 if (ret)
3270 goto out;
3271
Davide Carattib72b5bf2017-05-18 15:44:38 +02003272 crc32c_csum = cpu_to_le32(~__skb_checksum(skb, start,
3273 skb->len - start, ~(__u32)0,
3274 crc32c_csum_stub));
3275 *(__le32 *)(skb->data + offset) = crc32c_csum;
3276 skb->ip_summed = CHECKSUM_NONE;
Davide Carattidba00302017-05-18 15:44:40 +02003277 skb->csum_not_inet = 0;
Davide Carattib72b5bf2017-05-18 15:44:38 +02003278out:
3279 return ret;
3280}
3281
Vlad Yasevich53d64712014-03-27 17:26:18 -04003282__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003283{
3284 __be16 type = skb->protocol;
3285
Pravin B Shelar19acc322013-05-07 20:41:07 +00003286 /* Tunnel gso handlers can set protocol to ethernet. */
3287 if (type == htons(ETH_P_TEB)) {
3288 struct ethhdr *eth;
3289
3290 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3291 return 0;
3292
Eric Dumazet1dfe82e2018-03-26 08:08:07 -07003293 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00003294 type = eth->h_proto;
3295 }
3296
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09003297 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003298}
3299
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003300/**
3301 * skb_mac_gso_segment - mac layer segmentation handler.
3302 * @skb: buffer to segment
3303 * @features: features for the output path (see dev->features)
3304 */
3305struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
3306 netdev_features_t features)
3307{
3308 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
3309 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04003310 int vlan_depth = skb->mac_len;
3311 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003312
Pravin B Shelarec5f0612013-03-07 09:28:01 +00003313 if (unlikely(!type))
3314 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003315
Vlad Yasevich53d64712014-03-27 17:26:18 -04003316 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003317
3318 rcu_read_lock();
3319 list_for_each_entry_rcu(ptype, &offload_base, list) {
3320 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003321 segs = ptype->callbacks.gso_segment(skb, features);
3322 break;
3323 }
3324 }
3325 rcu_read_unlock();
3326
3327 __skb_push(skb, skb->data - skb_mac_header(skb));
3328
3329 return segs;
3330}
3331EXPORT_SYMBOL(skb_mac_gso_segment);
3332
3333
Cong Wang12b00042013-02-05 16:36:38 +00003334/* openvswitch calls this on rx path, so we need a different check.
3335 */
3336static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
3337{
3338 if (tx_path)
Willem de Bruijn0c19f8462017-11-21 10:22:25 -05003339 return skb->ip_summed != CHECKSUM_PARTIAL &&
3340 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet6e7bc472017-02-03 14:29:42 -08003341
3342 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00003343}
3344
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003345/**
Cong Wang12b00042013-02-05 16:36:38 +00003346 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003347 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07003348 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00003349 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003350 *
3351 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07003352 *
3353 * It may return NULL if the skb requires no segmentation. This is
3354 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003355 *
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003356 * Segmentation preserves SKB_GSO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003357 */
Cong Wang12b00042013-02-05 16:36:38 +00003358struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
3359 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003360{
Eric Dumazetb2504a52017-01-31 10:20:32 -08003361 struct sk_buff *segs;
3362
Cong Wang12b00042013-02-05 16:36:38 +00003363 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003364 int err;
3365
Eric Dumazetb2504a52017-01-31 10:20:32 -08003366 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02003367 err = skb_cow_head(skb, 0);
3368 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07003369 return ERR_PTR(err);
3370 }
3371
Alexander Duyck802ab552016-04-10 21:45:03 -04003372 /* Only report GSO partial support if it will enable us to
3373 * support segmentation on this frame without needing additional
3374 * work.
3375 */
3376 if (features & NETIF_F_GSO_PARTIAL) {
3377 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
3378 struct net_device *dev = skb->dev;
3379
3380 partial_features |= dev->features & dev->gso_partial_features;
3381 if (!skb_gso_ok(skb, features | partial_features))
3382 features &= ~NETIF_F_GSO_PARTIAL;
3383 }
3384
Cambda Zhua08e7fd2020-03-26 15:33:14 +08003385 BUILD_BUG_ON(SKB_GSO_CB_OFFSET +
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03003386 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
3387
Pravin B Shelar68c33162013-02-14 14:02:41 +00003388 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07003389 SKB_GSO_CB(skb)->encap_level = 0;
3390
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00003391 skb_reset_mac_header(skb);
3392 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003393
Eric Dumazetb2504a52017-01-31 10:20:32 -08003394 segs = skb_mac_gso_segment(skb, features);
3395
Steffen Klassert3a1296a2020-01-25 11:26:44 +01003396 if (segs != skb && unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazetb2504a52017-01-31 10:20:32 -08003397 skb_warn_bad_offload(skb);
3398
3399 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003400}
Cong Wang12b00042013-02-05 16:36:38 +00003401EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003402
Herbert Xufb286bb2005-11-10 13:01:24 -08003403/* Take action when hardware reception checksum errors are detected. */
3404#ifdef CONFIG_BUG
Cong Wang7fe50ac2018-11-12 14:47:18 -08003405void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
Herbert Xufb286bb2005-11-10 13:01:24 -08003406{
3407 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00003408 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Willem de Bruijn64131392019-07-07 05:51:55 -04003409 skb_dump(KERN_ERR, skb, true);
Herbert Xufb286bb2005-11-10 13:01:24 -08003410 dump_stack();
3411 }
3412}
3413EXPORT_SYMBOL(netdev_rx_csum_fault);
3414#endif
3415
Christoph Hellwigab74cfe2018-04-03 20:31:35 +02003416/* XXX: check that highmem exists at all on the given machine. */
Florian Westphalc1e756b2014-05-05 15:00:44 +02003417static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
Herbert Xu3d3a8532006-06-27 13:33:10 -07003419#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 int i;
tchardingf4563a72017-02-09 17:56:07 +11003421
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003422 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00003423 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3424 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
tchardingf4563a72017-02-09 17:56:07 +11003425
Ian Campbellea2ab692011-08-22 23:44:58 +00003426 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003427 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00003428 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00003429 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07003430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 return 0;
3432}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Simon Horman3b392dd2014-06-04 08:53:17 +09003434/* If MPLS offload request, verify we are testing hardware MPLS features
3435 * instead of standard features for the netdev.
3436 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08003437#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09003438static netdev_features_t net_mpls_features(struct sk_buff *skb,
3439 netdev_features_t features,
3440 __be16 type)
3441{
Simon Horman25cd9ba2014-10-06 05:05:13 -07003442 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09003443 features &= skb->dev->mpls_features;
3444
3445 return features;
3446}
3447#else
3448static netdev_features_t net_mpls_features(struct sk_buff *skb,
3449 netdev_features_t features,
3450 __be16 type)
3451{
3452 return features;
3453}
3454#endif
3455
Michał Mirosławc8f44af2011-11-15 15:29:55 +00003456static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02003457 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00003458{
Simon Horman3b392dd2014-06-04 08:53:17 +09003459 __be16 type;
3460
Miaohe Lin9fc95f52020-07-30 19:02:36 +08003461 type = skb_network_protocol(skb, NULL);
Simon Horman3b392dd2014-06-04 08:53:17 +09003462 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04003463
Ed Cashinc0d680e2012-09-19 15:49:00 +00003464 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09003465 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07003466 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00003467 }
Eric Dumazet7be2c822017-01-18 12:12:17 -08003468 if (illegal_highdma(skb->dev, skb))
3469 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00003470
3471 return features;
3472}
3473
Toshiaki Makitae38f3022015-03-27 14:31:13 +09003474netdev_features_t passthru_features_check(struct sk_buff *skb,
3475 struct net_device *dev,
3476 netdev_features_t features)
3477{
3478 return features;
3479}
3480EXPORT_SYMBOL(passthru_features_check);
3481
Toshiaki Makita7ce23672018-04-17 18:46:14 +09003482static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003483 struct net_device *dev,
3484 netdev_features_t features)
3485{
3486 return vlan_features_check(skb, features);
3487}
3488
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003489static netdev_features_t gso_features_check(const struct sk_buff *skb,
3490 struct net_device *dev,
3491 netdev_features_t features)
3492{
3493 u16 gso_segs = skb_shinfo(skb)->gso_segs;
3494
3495 if (gso_segs > dev->gso_max_segs)
3496 return features & ~NETIF_F_GSO_MASK;
3497
Alexander Duyck802ab552016-04-10 21:45:03 -04003498 /* Support for GSO partial features requires software
3499 * intervention before we can actually process the packets
3500 * so we need to strip support for any partial features now
3501 * and we can pull them back in after we have partially
3502 * segmented the frame.
3503 */
3504 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3505 features &= ~dev->gso_partial_features;
3506
3507 /* Make sure to clear the IPv4 ID mangling feature if the
3508 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003509 */
3510 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3511 struct iphdr *iph = skb->encapsulation ?
3512 inner_ip_hdr(skb) : ip_hdr(skb);
3513
3514 if (!(iph->frag_off & htons(IP_DF)))
3515 features &= ~NETIF_F_TSO_MANGLEID;
3516 }
3517
3518 return features;
3519}
3520
Florian Westphalc1e756b2014-05-05 15:00:44 +02003521netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00003522{
Jesse Gross5f352272014-12-23 22:37:26 -08003523 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07003524 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00003525
Alexander Duyckcbc53e02016-04-10 21:44:51 -04003526 if (skb_is_gso(skb))
3527 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00003528
Jesse Gross5f352272014-12-23 22:37:26 -08003529 /* If encapsulation offload request, verify we are testing
3530 * hardware encapsulation features instead of standard
3531 * features for the netdev
3532 */
3533 if (skb->encapsulation)
3534 features &= dev->hw_enc_features;
3535
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09003536 if (skb_vlan_tagged(skb))
3537 features = netdev_intersect_features(features,
3538 dev->vlan_features |
3539 NETIF_F_HW_VLAN_CTAG_TX |
3540 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00003541
Jesse Gross5f352272014-12-23 22:37:26 -08003542 if (dev->netdev_ops->ndo_features_check)
3543 features &= dev->netdev_ops->ndo_features_check(skb, dev,
3544 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09003545 else
3546 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08003547
Florian Westphalc1e756b2014-05-05 15:00:44 +02003548 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003549}
Florian Westphalc1e756b2014-05-05 15:00:44 +02003550EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00003551
David S. Miller2ea25512014-08-29 21:10:01 -07003552static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07003553 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003554{
David S. Miller2ea25512014-08-29 21:10:01 -07003555 unsigned int len;
3556 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08003557
Maciej W. Rozycki9f9a7422018-10-09 23:57:49 +01003558 if (dev_nit_active(dev))
David S. Miller2ea25512014-08-29 21:10:01 -07003559 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00003560
David S. Miller2ea25512014-08-29 21:10:01 -07003561 len = skb->len;
Willy Tarreau37447412020-08-10 10:27:42 +02003562 PRANDOM_ADD_NOISE(skb, dev, txq, len + jiffies);
David S. Miller2ea25512014-08-29 21:10:01 -07003563 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003564 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07003565 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00003566
Patrick McHardy572a9d72009-11-10 06:14:14 +00003567 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003568}
David S. Miller2ea25512014-08-29 21:10:01 -07003569
David S. Miller8dcda222014-09-01 15:06:40 -07003570struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3571 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003572{
3573 struct sk_buff *skb = first;
3574 int rc = NETDEV_TX_OK;
3575
3576 while (skb) {
3577 struct sk_buff *next = skb->next;
3578
David S. Millera8305bf2018-07-29 20:42:53 -07003579 skb_mark_not_on_list(skb);
David S. Miller95f6b3d2014-08-29 21:57:30 -07003580 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003581 if (unlikely(!dev_xmit_complete(rc))) {
3582 skb->next = next;
3583 goto out;
3584 }
3585
3586 skb = next;
Eric Dumazetfe60faa2018-10-31 08:39:13 -07003587 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003588 rc = NETDEV_TX_BUSY;
3589 break;
3590 }
3591 }
3592
3593out:
3594 *ret = rc;
3595 return skb;
3596}
3597
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003598static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3599 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003600{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003601 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003602 !vlan_hw_offload_capable(features, skb->vlan_proto))
3603 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003604 return skb;
3605}
3606
Davide Caratti43c26a12017-05-18 15:44:41 +02003607int skb_csum_hwoffload_help(struct sk_buff *skb,
3608 const netdev_features_t features)
3609{
3610 if (unlikely(skb->csum_not_inet))
3611 return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3612 skb_crc32c_csum_help(skb);
3613
3614 return !!(features & NETIF_F_CSUM_MASK) ? 0 : skb_checksum_help(skb);
3615}
3616EXPORT_SYMBOL(skb_csum_hwoffload_help);
3617
Steffen Klassertf53c7232017-12-20 10:41:36 +01003618static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
David S. Millereae3f882014-08-30 15:17:13 -07003619{
3620 netdev_features_t features;
3621
David S. Millereae3f882014-08-30 15:17:13 -07003622 features = netif_skb_features(skb);
3623 skb = validate_xmit_vlan(skb, features);
3624 if (unlikely(!skb))
3625 goto out_null;
3626
Ilya Lesokhinebf4e802018-04-30 10:16:12 +03003627 skb = sk_validate_xmit_skb(skb, dev);
3628 if (unlikely(!skb))
3629 goto out_null;
3630
Johannes Berg8b86a612015-04-17 15:45:04 +02003631 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003632 struct sk_buff *segs;
3633
3634 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003635 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003636 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003637 } else if (segs) {
3638 consume_skb(skb);
3639 skb = segs;
3640 }
David S. Millereae3f882014-08-30 15:17:13 -07003641 } else {
3642 if (skb_needs_linearize(skb, features) &&
3643 __skb_linearize(skb))
3644 goto out_kfree_skb;
3645
3646 /* If packet is not checksummed and device does not
3647 * support checksumming for this protocol, complete
3648 * checksumming here.
3649 */
3650 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3651 if (skb->encapsulation)
3652 skb_set_inner_transport_header(skb,
3653 skb_checksum_start_offset(skb));
3654 else
3655 skb_set_transport_header(skb,
3656 skb_checksum_start_offset(skb));
Davide Caratti43c26a12017-05-18 15:44:41 +02003657 if (skb_csum_hwoffload_help(skb, features))
David S. Millereae3f882014-08-30 15:17:13 -07003658 goto out_kfree_skb;
3659 }
3660 }
3661
Steffen Klassertf53c7232017-12-20 10:41:36 +01003662 skb = validate_xmit_xfrm(skb, features, again);
Steffen Klassert3dca3f32017-12-20 10:41:31 +01003663
David S. Millereae3f882014-08-30 15:17:13 -07003664 return skb;
3665
3666out_kfree_skb:
3667 kfree_skb(skb);
3668out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003669 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003670 return NULL;
3671}
3672
Steffen Klassertf53c7232017-12-20 10:41:36 +01003673struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
Eric Dumazet55a93b32014-10-03 15:31:07 -07003674{
3675 struct sk_buff *next, *head = NULL, *tail;
3676
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003677 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003678 next = skb->next;
David S. Millera8305bf2018-07-29 20:42:53 -07003679 skb_mark_not_on_list(skb);
Eric Dumazet55a93b32014-10-03 15:31:07 -07003680
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003681 /* in case skb wont be segmented, point to itself */
3682 skb->prev = skb;
3683
Steffen Klassertf53c7232017-12-20 10:41:36 +01003684 skb = validate_xmit_skb(skb, dev, again);
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003685 if (!skb)
3686 continue;
3687
3688 if (!head)
3689 head = skb;
3690 else
3691 tail->next = skb;
3692 /* If skb was segmented, skb->prev points to
3693 * the last segment. If not, it still contains skb.
3694 */
3695 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003696 }
3697 return head;
3698}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003699EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003700
Eric Dumazet1def9232013-01-10 12:36:42 +00003701static void qdisc_pkt_len_init(struct sk_buff *skb)
3702{
3703 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3704
3705 qdisc_skb_cb(skb)->pkt_len = skb->len;
3706
3707 /* To get more precise estimation of bytes sent on wire,
3708 * we add to pkt_len the headers size of all segments
3709 */
Maxim Mikityanskiya0dce872019-02-22 12:55:22 +00003710 if (shinfo->gso_size && skb_transport_header_was_set(skb)) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003711 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003712 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003713
Eric Dumazet757b8b12013-01-15 21:14:21 -08003714 /* mac layer + network layer */
3715 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3716
3717 /* + transport layer */
Eric Dumazet7c68d1a2018-01-18 19:59:19 -08003718 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3719 const struct tcphdr *th;
3720 struct tcphdr _tcphdr;
3721
3722 th = skb_header_pointer(skb, skb_transport_offset(skb),
3723 sizeof(_tcphdr), &_tcphdr);
3724 if (likely(th))
3725 hdr_len += __tcp_hdrlen(th);
3726 } else {
3727 struct udphdr _udphdr;
3728
3729 if (skb_header_pointer(skb, skb_transport_offset(skb),
3730 sizeof(_udphdr), &_udphdr))
3731 hdr_len += sizeof(struct udphdr);
3732 }
Jason Wang15e5a032013-03-25 20:19:59 +00003733
3734 if (shinfo->gso_type & SKB_GSO_DODGY)
3735 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3736 shinfo->gso_size);
3737
3738 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003739 }
3740}
3741
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003742static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3743 struct net_device *dev,
3744 struct netdev_queue *txq)
3745{
3746 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003747 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003748 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003749 int rc;
3750
Eric Dumazeta2da5702011-01-20 03:48:19 +00003751 qdisc_calculate_pkt_len(skb, q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003752
3753 if (q->flags & TCQ_F_NOLOCK) {
Petr Machataac5c66f2020-07-14 20:03:08 +03003754 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Paolo Abeni379349e2020-02-18 18:15:44 +01003755 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08003756
3757 if (unlikely(to_free))
3758 kfree_skb_list(to_free);
3759 return rc;
3760 }
3761
Eric Dumazet79640a42010-06-02 05:09:29 -07003762 /*
3763 * Heuristic to force contended enqueues to serialize on a
3764 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003765 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003766 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003767 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003768 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003769 if (unlikely(contended))
3770 spin_lock(&q->busylock);
3771
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003772 spin_lock(root_lock);
3773 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003774 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003775 rc = NET_XMIT_DROP;
3776 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003777 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003778 /*
3779 * This is a work-conserving queue; there are no old skbs
3780 * waiting to be sent out; and the qdisc is not running -
3781 * xmit the skb directly.
3782 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003783
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003784 qdisc_bstats_update(q, skb);
3785
Eric Dumazet55a93b32014-10-03 15:31:07 -07003786 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003787 if (unlikely(contended)) {
3788 spin_unlock(&q->busylock);
3789 contended = false;
3790 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003791 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003792 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003793
John Fastabend6c148182017-12-07 09:54:06 -08003794 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003795 rc = NET_XMIT_SUCCESS;
3796 } else {
Petr Machataac5c66f2020-07-14 20:03:08 +03003797 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003798 if (qdisc_run_begin(q)) {
3799 if (unlikely(contended)) {
3800 spin_unlock(&q->busylock);
3801 contended = false;
3802 }
3803 __qdisc_run(q);
John Fastabend6c148182017-12-07 09:54:06 -08003804 qdisc_run_end(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003805 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003806 }
3807 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003808 if (unlikely(to_free))
3809 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003810 if (unlikely(contended))
3811 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003812 return rc;
3813}
3814
Daniel Borkmann86f85152013-12-29 17:27:11 +01003815#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003816static void skb_update_prio(struct sk_buff *skb)
3817{
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003818 const struct netprio_map *map;
3819 const struct sock *sk;
3820 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003821
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003822 if (skb->priority)
3823 return;
3824 map = rcu_dereference_bh(skb->dev->priomap);
3825 if (!map)
3826 return;
3827 sk = skb_to_full_sk(skb);
3828 if (!sk)
3829 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003830
Eric Dumazet4dcb31d2018-03-14 09:04:16 -07003831 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3832
3833 if (prioidx < map->priomap_len)
3834 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003835}
3836#else
3837#define skb_update_prio(skb)
3838#endif
3839
Dave Jonesd29f7492008-07-22 14:09:06 -07003840/**
Michel Machado95603e22012-06-12 10:16:35 +00003841 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003842 * @net: network namespace this loopback is happening in
3843 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003844 * @skb: buffer to transmit
3845 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003846int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003847{
3848 skb_reset_mac_header(skb);
3849 __skb_pull(skb, skb_network_offset(skb));
3850 skb->pkt_type = PACKET_LOOPBACK;
3851 skb->ip_summed = CHECKSUM_UNNECESSARY;
3852 WARN_ON(!skb_dst(skb));
3853 skb_dst_force(skb);
3854 netif_rx_ni(skb);
3855 return 0;
3856}
3857EXPORT_SYMBOL(dev_loopback_xmit);
3858
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003859#ifdef CONFIG_NET_EGRESS
3860static struct sk_buff *
3861sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3862{
Jiri Pirko46209402017-11-03 11:46:25 +01003863 struct mini_Qdisc *miniq = rcu_dereference_bh(dev->miniq_egress);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003864 struct tcf_result cl_res;
3865
Jiri Pirko46209402017-11-03 11:46:25 +01003866 if (!miniq)
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003867 return skb;
3868
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05003869 /* qdisc_skb_cb(skb)->pkt_len was already set by the caller. */
Jiri Pirko46209402017-11-03 11:46:25 +01003870 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003871
Jiri Pirko46209402017-11-03 11:46:25 +01003872 switch (tcf_classify(skb, miniq->filter_list, &cl_res, false)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003873 case TC_ACT_OK:
3874 case TC_ACT_RECLASSIFY:
3875 skb->tc_index = TC_H_MIN(cl_res.classid);
3876 break;
3877 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01003878 mini_qdisc_qstats_cpu_drop(miniq);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003879 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003880 kfree_skb(skb);
3881 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003882 case TC_ACT_STOLEN:
3883 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02003884 case TC_ACT_TRAP:
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003885 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003886 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003887 return NULL;
3888 case TC_ACT_REDIRECT:
3889 /* No need to push/pop skb's mac_header here on egress! */
3890 skb_do_redirect(skb);
3891 *ret = NET_XMIT_SUCCESS;
3892 return NULL;
3893 default:
3894 break;
3895 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01003896
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003897 return skb;
3898}
3899#endif /* CONFIG_NET_EGRESS */
3900
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003901#ifdef CONFIG_XPS
3902static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
3903 struct xps_dev_maps *dev_maps, unsigned int tci)
3904{
3905 struct xps_map *map;
3906 int queue_index = -1;
3907
3908 if (dev->num_tc) {
3909 tci *= dev->num_tc;
3910 tci += netdev_get_prio_tc_map(dev, skb->priority);
3911 }
3912
3913 map = rcu_dereference(dev_maps->attr_map[tci]);
3914 if (map) {
3915 if (map->len == 1)
3916 queue_index = map->queues[0];
3917 else
3918 queue_index = map->queues[reciprocal_scale(
3919 skb_get_hash(skb), map->len)];
3920 if (unlikely(queue_index >= dev->real_num_tx_queues))
3921 queue_index = -1;
3922 }
3923 return queue_index;
3924}
3925#endif
3926
Alexander Duyckeadec8772018-07-09 12:19:48 -04003927static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
3928 struct sk_buff *skb)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003929{
3930#ifdef CONFIG_XPS
3931 struct xps_dev_maps *dev_maps;
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003932 struct sock *sk = skb->sk;
Jiri Pirko638b2a62015-05-12 14:56:13 +02003933 int queue_index = -1;
3934
Amritha Nambiar04157462018-06-29 21:26:46 -07003935 if (!static_key_false(&xps_needed))
3936 return -1;
3937
Jiri Pirko638b2a62015-05-12 14:56:13 +02003938 rcu_read_lock();
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003939 if (!static_key_false(&xps_rxqs_needed))
3940 goto get_cpus_map;
3941
Alexander Duyckeadec8772018-07-09 12:19:48 -04003942 dev_maps = rcu_dereference(sb_dev->xps_rxqs_map);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003943 if (dev_maps) {
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003944 int tci = sk_rx_queue_get(sk);
Alexander Duyck184c4492016-10-28 11:50:13 -04003945
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003946 if (tci >= 0 && tci < dev->num_rx_queues)
3947 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3948 tci);
3949 }
Alexander Duyck184c4492016-10-28 11:50:13 -04003950
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003951get_cpus_map:
3952 if (queue_index < 0) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003953 dev_maps = rcu_dereference(sb_dev->xps_cpus_map);
Amritha Nambiarfc9bab22018-06-29 21:27:02 -07003954 if (dev_maps) {
3955 unsigned int tci = skb->sender_cpu - 1;
3956
3957 queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
3958 tci);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003959 }
3960 }
3961 rcu_read_unlock();
3962
3963 return queue_index;
3964#else
3965 return -1;
3966#endif
3967}
3968
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003969u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003970 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003971{
3972 return 0;
3973}
3974EXPORT_SYMBOL(dev_pick_tx_zero);
3975
3976u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
Paolo Abenia350ecc2019-03-20 11:02:06 +01003977 struct net_device *sb_dev)
Alexander Duycka4ea8a32018-07-09 12:19:54 -04003978{
3979 return (u16)raw_smp_processor_id() % dev->real_num_tx_queues;
3980}
3981EXPORT_SYMBOL(dev_pick_tx_cpu_id);
3982
Paolo Abenib71b5832019-03-20 11:02:05 +01003983u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
3984 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003985{
3986 struct sock *sk = skb->sk;
3987 int queue_index = sk_tx_queue_get(sk);
3988
Alexander Duyckeadec8772018-07-09 12:19:48 -04003989 sb_dev = sb_dev ? : dev;
3990
Jiri Pirko638b2a62015-05-12 14:56:13 +02003991 if (queue_index < 0 || skb->ooo_okay ||
3992 queue_index >= dev->real_num_tx_queues) {
Alexander Duyckeadec8772018-07-09 12:19:48 -04003993 int new_index = get_xps_queue(dev, sb_dev, skb);
tchardingf4563a72017-02-09 17:56:07 +11003994
Jiri Pirko638b2a62015-05-12 14:56:13 +02003995 if (new_index < 0)
Alexander Duyckeadec8772018-07-09 12:19:48 -04003996 new_index = skb_tx_hash(dev, sb_dev, skb);
Jiri Pirko638b2a62015-05-12 14:56:13 +02003997
3998 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003999 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02004000 rcu_access_pointer(sk->sk_dst_cache))
4001 sk_tx_queue_set(sk, new_index);
4002
4003 queue_index = new_index;
4004 }
4005
4006 return queue_index;
4007}
Paolo Abenib71b5832019-03-20 11:02:05 +01004008EXPORT_SYMBOL(netdev_pick_tx);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004009
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004010struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4011 struct sk_buff *skb,
4012 struct net_device *sb_dev)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004013{
4014 int queue_index = 0;
4015
4016#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08004017 u32 sender_cpu = skb->sender_cpu - 1;
4018
4019 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02004020 skb->sender_cpu = raw_smp_processor_id() + 1;
4021#endif
4022
4023 if (dev->real_num_tx_queues != 1) {
4024 const struct net_device_ops *ops = dev->netdev_ops;
tchardingf4563a72017-02-09 17:56:07 +11004025
Jiri Pirko638b2a62015-05-12 14:56:13 +02004026 if (ops->ndo_select_queue)
Paolo Abenia350ecc2019-03-20 11:02:06 +01004027 queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004028 else
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004029 queue_index = netdev_pick_tx(dev, skb, sb_dev);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004030
Alexander Duyckd5845272017-11-22 10:57:41 -08004031 queue_index = netdev_cap_txqueue(dev, queue_index);
Jiri Pirko638b2a62015-05-12 14:56:13 +02004032 }
4033
4034 skb_set_queue_mapping(skb, queue_index);
4035 return netdev_get_tx_queue(dev, queue_index);
4036}
4037
Michel Machado95603e22012-06-12 10:16:35 +00004038/**
Jason Wang9d08dd32014-01-20 11:25:13 +08004039 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07004040 * @skb: buffer to transmit
Alexander Duyckeadec8772018-07-09 12:19:48 -04004041 * @sb_dev: suboordinate device used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07004042 *
4043 * Queue a buffer for transmission to a network device. The caller must
4044 * have set the device and priority and built the buffer before calling
4045 * this function. The function can be called from an interrupt.
4046 *
4047 * A negative errno code is returned on a failure. A success does not
4048 * guarantee the frame will be transmitted as it may be dropped due
4049 * to congestion or traffic shaping.
4050 *
4051 * -----------------------------------------------------------------------------------
4052 * I notice this method can also return errors from the queue disciplines,
4053 * including NET_XMIT_DROP, which is a positive value. So, errors can also
4054 * be positive.
4055 *
4056 * Regardless of the return value, the skb is consumed, so it is currently
4057 * difficult to retry a send to this method. (You can bump the ref count
4058 * before sending to hold a reference for retry if you are careful.)
4059 *
4060 * When calling this method, interrupts MUST be enabled. This is because
4061 * the BH enable code must have IRQs enabled so that it will not deadlock.
4062 * --BLG
4063 */
Alexander Duyckeadec8772018-07-09 12:19:48 -04004064static int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065{
4066 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07004067 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 struct Qdisc *q;
4069 int rc = -ENOMEM;
Steffen Klassertf53c7232017-12-20 10:41:36 +01004070 bool again = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00004072 skb_reset_mac_header(skb);
4073
Willem de Bruijne7fd2882014-08-04 22:11:48 -04004074 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
4075 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
4076
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004077 /* Disable soft irqs for various locks below. Also
4078 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09004080 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
Neil Horman5bc14212011-11-22 05:10:51 +00004082 skb_update_prio(skb);
4083
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004084 qdisc_pkt_len_init(skb);
4085#ifdef CONFIG_NET_CLS_ACT
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004086 skb->tc_at_ingress = 0;
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004087# ifdef CONFIG_NET_EGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07004088 if (static_branch_unlikely(&egress_needed_key)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004089 skb = sch_handle_egress(skb, &rc, dev);
4090 if (!skb)
4091 goto out;
4092 }
Daniel Borkmann357b6cc2020-03-18 10:33:22 +01004093# endif
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004094#endif
Eric Dumazet02875872014-10-05 18:38:35 -07004095 /* If device/qdisc don't need skb->dst, release it right now while
4096 * its hot in this cpu cache.
4097 */
4098 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4099 skb_dst_drop(skb);
4100 else
4101 skb_dst_force(skb);
4102
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004103 txq = netdev_core_pick_tx(dev, skb, sb_dev);
Paul E. McKenneya898def2010-02-22 17:04:49 -08004104 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07004105
Koki Sanagicf66ba52010-08-23 18:45:02 +09004106 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00004108 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07004109 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 }
4111
4112 /* The device has no queue. Common case for software devices:
tchardingeb13da12017-02-09 17:56:06 +11004113 * loopback, all the sorts of tunnels...
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
tchardingeb13da12017-02-09 17:56:06 +11004115 * Really, it is unlikely that netif_tx_lock protection is necessary
4116 * here. (f.e. loopback and IP tunnels are clean ignoring statistics
4117 * counters.)
4118 * However, it is possible, that they rely on protection
4119 * made by us here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
tchardingeb13da12017-02-09 17:56:06 +11004121 * Check this and shot the lock. It is not prone from deadlocks.
4122 *Either shot noqueue qdisc, it is even simpler 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 */
4124 if (dev->flags & IFF_UP) {
4125 int cpu = smp_processor_id(); /* ok because BHs are off */
4126
David S. Millerc773e842008-07-08 23:13:53 -07004127 if (txq->xmit_lock_owner != cpu) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004128 if (dev_xmit_recursion())
Eric Dumazet745e20f2010-09-29 13:23:09 -07004129 goto recursion_alert;
4130
Steffen Klassertf53c7232017-12-20 10:41:36 +01004131 skb = validate_xmit_skb(skb, dev, &again);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004132 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07004133 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004134
Willy Tarreau37447412020-08-10 10:27:42 +02004135 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
David S. Millerc773e842008-07-08 23:13:53 -07004136 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
Tom Herbert734664982011-11-28 16:32:44 +00004138 if (!netif_xmit_stopped(txq)) {
Florian Westphal97cdcf32019-04-01 16:42:13 +02004139 dev_xmit_recursion_inc();
David S. Millerce937182014-08-30 19:22:20 -07004140 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Florian Westphal97cdcf32019-04-01 16:42:13 +02004141 dev_xmit_recursion_dec();
Patrick McHardy572a9d72009-11-10 06:14:14 +00004142 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07004143 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 goto out;
4145 }
4146 }
David S. Millerc773e842008-07-08 23:13:53 -07004147 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00004148 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4149 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 } else {
4151 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07004152 * unfortunately
4153 */
4154recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00004155 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
4156 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157 }
4158 }
4159
4160 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07004161 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162
Eric Dumazet015f0682014-03-27 08:45:56 -07004163 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02004164 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 return rc;
4166out:
Herbert Xud4828d82006-06-22 02:28:18 -07004167 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 return rc;
4169}
Jason Wangf663dd92014-01-10 16:18:26 +08004170
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004171int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08004172{
4173 return __dev_queue_xmit(skb, NULL);
4174}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05004175EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176
Alexander Duyckeadec8772018-07-09 12:19:48 -04004177int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev)
Jason Wangf663dd92014-01-10 16:18:26 +08004178{
Alexander Duyckeadec8772018-07-09 12:19:48 -04004179 return __dev_queue_xmit(skb, sb_dev);
Jason Wangf663dd92014-01-10 16:18:26 +08004180}
4181EXPORT_SYMBOL(dev_queue_xmit_accel);
4182
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004183int dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
4184{
4185 struct net_device *dev = skb->dev;
4186 struct sk_buff *orig_skb = skb;
4187 struct netdev_queue *txq;
4188 int ret = NETDEV_TX_BUSY;
4189 bool again = false;
4190
4191 if (unlikely(!netif_running(dev) ||
4192 !netif_carrier_ok(dev)))
4193 goto drop;
4194
4195 skb = validate_xmit_skb_list(skb, dev, &again);
4196 if (skb != orig_skb)
4197 goto drop;
4198
4199 skb_set_queue_mapping(skb, queue_id);
4200 txq = skb_get_tx_queue(dev, skb);
Willy Tarreau37447412020-08-10 10:27:42 +02004201 PRANDOM_ADD_NOISE(skb, dev, txq, jiffies);
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004202
4203 local_bh_disable();
4204
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004205 dev_xmit_recursion_inc();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004206 HARD_TX_LOCK(dev, txq, smp_processor_id());
4207 if (!netif_xmit_frozen_or_drv_stopped(txq))
4208 ret = netdev_start_xmit(skb, dev, txq, false);
4209 HARD_TX_UNLOCK(dev, txq);
Eric Dumazet0ad6f6e2020-06-17 22:23:25 -07004210 dev_xmit_recursion_dec();
Magnus Karlsson865b03f2018-05-02 13:01:33 +02004211
4212 local_bh_enable();
4213
4214 if (!dev_xmit_complete(ret))
4215 kfree_skb(skb);
4216
4217 return ret;
4218drop:
4219 atomic_long_inc(&dev->tx_dropped);
4220 kfree_skb_list(skb);
4221 return NET_XMIT_DROP;
4222}
4223EXPORT_SYMBOL(dev_direct_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224
tchardingeb13da12017-02-09 17:56:06 +11004225/*************************************************************************
4226 * Receiver routines
4227 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004229int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00004230EXPORT_SYMBOL(netdev_max_backlog);
4231
Eric Dumazet3b098e22010-05-15 23:57:10 -07004232int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07004233int netdev_budget __read_mostly = 300;
Konstantin Khlebnikova48379802020-04-06 14:39:32 +03004234/* Must be at least 2 jiffes to guarantee 1 jiffy timeout */
4235unsigned int __read_mostly netdev_budget_usecs = 2 * USEC_PER_SEC / HZ;
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01004236int weight_p __read_mostly = 64; /* old backlog weight */
4237int dev_weight_rx_bias __read_mostly = 1; /* bias for backlog weight */
4238int dev_weight_tx_bias __read_mostly = 1; /* bias for output_queue quota */
4239int dev_rx_weight __read_mostly = 64;
4240int dev_tx_weight __read_mostly = 64;
Edward Cree323ebb62019-08-06 14:53:55 +01004241/* Maximum number of GRO_NORMAL skbs to batch up for list-RX */
4242int gro_normal_batch __read_mostly = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004244/* Called with irq disabled */
4245static inline void ____napi_schedule(struct softnet_data *sd,
4246 struct napi_struct *napi)
4247{
4248 list_add_tail(&napi->poll_list, &sd->poll_list);
4249 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4250}
4251
Eric Dumazetdf334542010-03-24 19:13:54 +00004252#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07004253
4254/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00004255struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07004256EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004257u32 rps_cpu_mask __read_mostly;
4258EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07004259
Eric Dumazetdc053602019-03-22 08:56:38 -07004260struct static_key_false rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04004261EXPORT_SYMBOL(rps_needed);
Eric Dumazetdc053602019-03-22 08:56:38 -07004262struct static_key_false rfs_needed __read_mostly;
Eric Dumazet13bfff22016-12-07 08:29:10 -08004263EXPORT_SYMBOL(rfs_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00004264
Ben Hutchingsc4454772011-01-19 11:03:53 +00004265static struct rps_dev_flow *
4266set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4267 struct rps_dev_flow *rflow, u16 next_cpu)
4268{
Eric Dumazeta31196b2015-04-25 09:35:24 -07004269 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00004270#ifdef CONFIG_RFS_ACCEL
4271 struct netdev_rx_queue *rxqueue;
4272 struct rps_dev_flow_table *flow_table;
4273 struct rps_dev_flow *old_rflow;
4274 u32 flow_id;
4275 u16 rxq_index;
4276 int rc;
4277
4278 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00004279 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
4280 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00004281 goto out;
4282 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
4283 if (rxq_index == skb_get_rx_queue(skb))
4284 goto out;
4285
4286 rxqueue = dev->_rx + rxq_index;
4287 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4288 if (!flow_table)
4289 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07004290 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004291 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
4292 rxq_index, flow_id);
4293 if (rc < 0)
4294 goto out;
4295 old_rflow = rflow;
4296 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00004297 rflow->filter = rc;
4298 if (old_rflow->filter == rflow->filter)
4299 old_rflow->filter = RPS_NO_FILTER;
4300 out:
4301#endif
4302 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00004303 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004304 }
4305
Ben Hutchings09994d12011-10-03 04:42:46 +00004306 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004307 return rflow;
4308}
4309
Tom Herbert0a9627f2010-03-16 08:03:29 +00004310/*
4311 * get_rps_cpu is called from netif_receive_skb and returns the target
4312 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004313 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00004314 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004315static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
4316 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004317{
Eric Dumazet567e4b72015-02-06 12:59:01 -08004318 const struct rps_sock_flow_table *sock_flow_table;
4319 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07004320 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004321 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004322 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004323 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07004324 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004325
Tom Herbert0a9627f2010-03-16 08:03:29 +00004326 if (skb_rx_queue_recorded(skb)) {
4327 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08004328
Ben Hutchings62fe0b42010-09-27 08:24:33 +00004329 if (unlikely(index >= dev->real_num_rx_queues)) {
4330 WARN_ONCE(dev->real_num_rx_queues > 1,
4331 "%s received packet on queue %u, but number "
4332 "of RX queues is %u\n",
4333 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004334 goto done;
4335 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08004336 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004337 }
4338
Eric Dumazet567e4b72015-02-06 12:59:01 -08004339 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
4340
4341 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4342 map = rcu_dereference(rxqueue->rps_map);
4343 if (!flow_table && !map)
4344 goto done;
4345
Changli Gao2d47b452010-08-17 19:00:56 +00004346 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07004347 hash = skb_get_hash(skb);
4348 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004349 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004350
Tom Herbertfec5e652010-04-16 16:01:27 -07004351 sock_flow_table = rcu_dereference(rps_sock_flow_table);
4352 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004353 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08004354 u32 next_cpu;
4355 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07004356
Eric Dumazet567e4b72015-02-06 12:59:01 -08004357 /* First check into global flow table if there is a match */
4358 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
4359 if ((ident ^ hash) & ~rps_cpu_mask)
4360 goto try_rps;
4361
4362 next_cpu = ident & rps_cpu_mask;
4363
4364 /* OK, now we know there is a match,
4365 * we can look at the local (per receive queue) flow table
4366 */
Tom Herbert61b905d2014-03-24 15:34:47 -07004367 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07004368 tcpu = rflow->cpu;
4369
Tom Herbertfec5e652010-04-16 16:01:27 -07004370 /*
4371 * If the desired CPU (where last recvmsg was done) is
4372 * different from current CPU (one in the rx-queue flow
4373 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07004374 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07004375 * - Current CPU is offline.
4376 * - The current CPU's queue tail has advanced beyond the
4377 * last packet that was enqueued using this table entry.
4378 * This guarantees that all previous packets for the flow
4379 * have been dequeued, thus preserving in order delivery.
4380 */
4381 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07004382 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07004383 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00004384 rflow->last_qtail)) >= 0)) {
4385 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004386 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00004387 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00004388
Eric Dumazeta31196b2015-04-25 09:35:24 -07004389 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004390 *rflowp = rflow;
4391 cpu = tcpu;
4392 goto done;
4393 }
4394 }
4395
Eric Dumazet567e4b72015-02-06 12:59:01 -08004396try_rps:
4397
Tom Herbert0a9627f2010-03-16 08:03:29 +00004398 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02004399 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00004400 if (cpu_online(tcpu)) {
4401 cpu = tcpu;
4402 goto done;
4403 }
4404 }
4405
4406done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00004407 return cpu;
4408}
4409
Ben Hutchingsc4454772011-01-19 11:03:53 +00004410#ifdef CONFIG_RFS_ACCEL
4411
4412/**
4413 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
4414 * @dev: Device on which the filter was set
4415 * @rxq_index: RX queue index
4416 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
4417 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
4418 *
4419 * Drivers that implement ndo_rx_flow_steer() should periodically call
4420 * this function for each installed filter and remove the filters for
4421 * which it returns %true.
4422 */
4423bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
4424 u32 flow_id, u16 filter_id)
4425{
4426 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
4427 struct rps_dev_flow_table *flow_table;
4428 struct rps_dev_flow *rflow;
4429 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07004430 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00004431
4432 rcu_read_lock();
4433 flow_table = rcu_dereference(rxqueue->rps_flow_table);
4434 if (flow_table && flow_id <= flow_table->mask) {
4435 rflow = &flow_table->flows[flow_id];
Mark Rutland6aa7de02017-10-23 14:07:29 -07004436 cpu = READ_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07004437 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00004438 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
4439 rflow->last_qtail) <
4440 (int)(10 * flow_table->mask)))
4441 expire = false;
4442 }
4443 rcu_read_unlock();
4444 return expire;
4445}
4446EXPORT_SYMBOL(rps_may_expire_flow);
4447
4448#endif /* CONFIG_RFS_ACCEL */
4449
Tom Herbert0a9627f2010-03-16 08:03:29 +00004450/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004451static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004452{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004453 struct softnet_data *sd = data;
4454
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004455 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00004456 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004457}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004458
Tom Herbertfec5e652010-04-16 16:01:27 -07004459#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00004460
4461/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004462 * Check if this softnet_data structure is another cpu one
4463 * If yes, queue it to our IPI list and return 1
4464 * If no, return 0
4465 */
4466static int rps_ipi_queued(struct softnet_data *sd)
4467{
4468#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05004469 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004470
4471 if (sd != mysd) {
4472 sd->rps_ipi_next = mysd->rps_ipi_list;
4473 mysd->rps_ipi_list = sd;
4474
4475 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4476 return 1;
4477 }
4478#endif /* CONFIG_RPS */
4479 return 0;
4480}
4481
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004482#ifdef CONFIG_NET_FLOW_LIMIT
4483int netdev_flow_limit_table_len __read_mostly = (1 << 12);
4484#endif
4485
4486static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
4487{
4488#ifdef CONFIG_NET_FLOW_LIMIT
4489 struct sd_flow_limit *fl;
4490 struct softnet_data *sd;
4491 unsigned int old_flow, new_flow;
4492
4493 if (qlen < (netdev_max_backlog >> 1))
4494 return false;
4495
Christoph Lameter903ceff2014-08-17 12:30:35 -05004496 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004497
4498 rcu_read_lock();
4499 fl = rcu_dereference(sd->flow_limit);
4500 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08004501 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004502 old_flow = fl->history[fl->history_head];
4503 fl->history[fl->history_head] = new_flow;
4504
4505 fl->history_head++;
4506 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
4507
4508 if (likely(fl->buckets[old_flow]))
4509 fl->buckets[old_flow]--;
4510
4511 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
4512 fl->count++;
4513 rcu_read_unlock();
4514 return true;
4515 }
4516 }
4517 rcu_read_unlock();
4518#endif
4519 return false;
4520}
4521
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004522/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00004523 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
4524 * queue (may be a remote CPU queue).
4525 */
Tom Herbertfec5e652010-04-16 16:01:27 -07004526static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
4527 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004528{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004529 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004530 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004531 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004532
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004533 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004534
4535 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004536
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004537 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004538 if (!netif_running(skb->dev))
4539 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00004540 qlen = skb_queue_len(&sd->input_pkt_queue);
4541 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08004542 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00004543enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004544 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004545 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004546 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00004547 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004548 return NET_RX_SUCCESS;
4549 }
4550
Eric Dumazetebda37c22010-05-06 23:51:21 +00004551 /* Schedule NAPI for backlog device
4552 * We can use non atomic operation since we own the queue lock
4553 */
4554 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004555 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004556 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004557 }
4558 goto enqueue;
4559 }
4560
Julian Anastasove9e4dd32015-07-09 09:59:09 +03004561drop:
Changli Gaodee42872010-05-02 05:42:16 +00004562 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004563 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004564
Tom Herbert0a9627f2010-03-16 08:03:29 +00004565 local_irq_restore(flags);
4566
Eric Dumazetcaf586e2010-09-30 21:06:55 +00004567 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004568 kfree_skb(skb);
4569 return NET_RX_DROP;
4570}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004572static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
4573{
4574 struct net_device *dev = skb->dev;
4575 struct netdev_rx_queue *rxqueue;
4576
4577 rxqueue = dev->_rx;
4578
4579 if (skb_rx_queue_recorded(skb)) {
4580 u16 index = skb_get_rx_queue(skb);
4581
4582 if (unlikely(index >= dev->real_num_rx_queues)) {
4583 WARN_ONCE(dev->real_num_rx_queues > 1,
4584 "%s received packet on queue %u, but number "
4585 "of RX queues is %u\n",
4586 dev->name, index, dev->real_num_rx_queues);
4587
4588 return rxqueue; /* Return first rxqueue */
4589 }
4590 rxqueue += index;
4591 }
4592 return rxqueue;
4593}
4594
John Fastabendd4455162017-07-17 09:26:45 -07004595static u32 netif_receive_generic_xdp(struct sk_buff *skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004596 struct xdp_buff *xdp,
John Fastabendd4455162017-07-17 09:26:45 -07004597 struct bpf_prog *xdp_prog)
4598{
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004599 struct netdev_rx_queue *rxqueue;
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004600 void *orig_data, *orig_data_end;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004601 u32 metalen, act = XDP_DROP;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004602 __be16 orig_eth_type;
4603 struct ethhdr *eth;
4604 bool orig_bcast;
John Fastabendd4455162017-07-17 09:26:45 -07004605 int hlen, off;
4606 u32 mac_len;
4607
4608 /* Reinjected packets coming from act_mirred or similar should
4609 * not get XDP generic processing.
4610 */
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01004611 if (skb_is_redirected(skb))
John Fastabendd4455162017-07-17 09:26:45 -07004612 return XDP_PASS;
4613
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004614 /* XDP packets must be linear and must have sufficient headroom
4615 * of XDP_PACKET_HEADROOM bytes. This is the guarantee that also
4616 * native XDP provides, thus we need to do it here as well.
4617 */
Toke Høiland-Jørgensenad1e03b2020-02-10 17:10:46 +01004618 if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004619 skb_headroom(skb) < XDP_PACKET_HEADROOM) {
4620 int hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
4621 int troom = skb->tail + skb->data_len - skb->end;
4622
4623 /* In case we have to go down the path and also linearize,
4624 * then lets do the pskb_expand_head() work just once here.
4625 */
4626 if (pskb_expand_head(skb,
4627 hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
4628 troom > 0 ? troom + 128 : 0, GFP_ATOMIC))
4629 goto do_drop;
Song Liu2d17d8d2017-12-14 17:17:56 -08004630 if (skb_linearize(skb))
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004631 goto do_drop;
4632 }
John Fastabendd4455162017-07-17 09:26:45 -07004633
4634 /* The XDP program wants to see the packet starting at the MAC
4635 * header.
4636 */
4637 mac_len = skb->data - skb_mac_header(skb);
4638 hlen = skb_headlen(skb) + mac_len;
Björn Töpel02671e22018-05-02 13:01:30 +02004639 xdp->data = skb->data - mac_len;
4640 xdp->data_meta = xdp->data;
4641 xdp->data_end = xdp->data + hlen;
4642 xdp->data_hard_start = skb->data - skb_headroom(skb);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004643
4644 /* SKB "head" area always have tailroom for skb_shared_info */
4645 xdp->frame_sz = (void *)skb_end_pointer(skb) - xdp->data_hard_start;
4646 xdp->frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
4647
Björn Töpel02671e22018-05-02 13:01:30 +02004648 orig_data_end = xdp->data_end;
4649 orig_data = xdp->data;
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004650 eth = (struct ethhdr *)xdp->data;
4651 orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
4652 orig_eth_type = eth->h_proto;
John Fastabendd4455162017-07-17 09:26:45 -07004653
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004654 rxqueue = netif_get_rxqueue(skb);
Björn Töpel02671e22018-05-02 13:01:30 +02004655 xdp->rxq = &rxqueue->xdp_rxq;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01004656
Björn Töpel02671e22018-05-02 13:01:30 +02004657 act = bpf_prog_run_xdp(xdp_prog, xdp);
John Fastabendd4455162017-07-17 09:26:45 -07004658
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004659 /* check if bpf_xdp_adjust_head was used */
Björn Töpel02671e22018-05-02 13:01:30 +02004660 off = xdp->data - orig_data;
Jesper Dangaard Brouer065af352019-08-01 20:00:31 +02004661 if (off) {
4662 if (off > 0)
4663 __skb_pull(skb, off);
4664 else if (off < 0)
4665 __skb_push(skb, -off);
4666
4667 skb->mac_header += off;
4668 skb_reset_network_header(skb);
4669 }
John Fastabendd4455162017-07-17 09:26:45 -07004670
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004671 /* check if bpf_xdp_adjust_tail was used */
4672 off = xdp->data_end - orig_data_end;
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004673 if (off != 0) {
Björn Töpel02671e22018-05-02 13:01:30 +02004674 skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
Jesper Dangaard Brouera0757672020-05-14 12:49:28 +02004675 skb->len += off; /* positive on grow, negative on shrink */
Nikita V. Shirokovf7613122018-04-25 07:15:03 -07004676 }
Nikita V. Shirokov198d83b2018-04-17 21:42:14 -07004677
Jesper Dangaard Brouer29724952018-10-09 12:04:43 +02004678 /* check if XDP changed eth hdr such SKB needs update */
4679 eth = (struct ethhdr *)xdp->data;
4680 if ((orig_eth_type != eth->h_proto) ||
4681 (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
4682 __skb_push(skb, ETH_HLEN);
4683 skb->protocol = eth_type_trans(skb, skb->dev);
4684 }
4685
John Fastabendd4455162017-07-17 09:26:45 -07004686 switch (act) {
John Fastabend6103aa92017-07-17 09:27:50 -07004687 case XDP_REDIRECT:
John Fastabendd4455162017-07-17 09:26:45 -07004688 case XDP_TX:
4689 __skb_push(skb, mac_len);
John Fastabendd4455162017-07-17 09:26:45 -07004690 break;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004691 case XDP_PASS:
Björn Töpel02671e22018-05-02 13:01:30 +02004692 metalen = xdp->data - xdp->data_meta;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02004693 if (metalen)
4694 skb_metadata_set(skb, metalen);
4695 break;
John Fastabendd4455162017-07-17 09:26:45 -07004696 default:
4697 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004698 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004699 case XDP_ABORTED:
4700 trace_xdp_exception(skb->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05004701 fallthrough;
John Fastabendd4455162017-07-17 09:26:45 -07004702 case XDP_DROP:
4703 do_drop:
4704 kfree_skb(skb);
4705 break;
4706 }
4707
4708 return act;
4709}
4710
4711/* When doing generic XDP we have to bypass the qdisc layer and the
4712 * network taps in order to match in-driver-XDP behavior.
4713 */
Jason Wang7c497472017-08-11 19:41:17 +08004714void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog)
John Fastabendd4455162017-07-17 09:26:45 -07004715{
4716 struct net_device *dev = skb->dev;
4717 struct netdev_queue *txq;
4718 bool free_skb = true;
4719 int cpu, rc;
4720
Paolo Abeni4bd97d52019-03-20 11:02:04 +01004721 txq = netdev_core_pick_tx(dev, skb, NULL);
John Fastabendd4455162017-07-17 09:26:45 -07004722 cpu = smp_processor_id();
4723 HARD_TX_LOCK(dev, txq, cpu);
4724 if (!netif_xmit_stopped(txq)) {
4725 rc = netdev_start_xmit(skb, dev, txq, 0);
4726 if (dev_xmit_complete(rc))
4727 free_skb = false;
4728 }
4729 HARD_TX_UNLOCK(dev, txq);
4730 if (free_skb) {
4731 trace_xdp_exception(dev, xdp_prog, XDP_TX);
4732 kfree_skb(skb);
4733 }
4734}
4735
Davidlohr Bueso02786472018-05-08 09:07:02 -07004736static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
John Fastabendd4455162017-07-17 09:26:45 -07004737
Jason Wang7c497472017-08-11 19:41:17 +08004738int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb)
John Fastabendd4455162017-07-17 09:26:45 -07004739{
John Fastabendd4455162017-07-17 09:26:45 -07004740 if (xdp_prog) {
Björn Töpel02671e22018-05-02 13:01:30 +02004741 struct xdp_buff xdp;
4742 u32 act;
John Fastabend6103aa92017-07-17 09:27:50 -07004743 int err;
John Fastabendd4455162017-07-17 09:26:45 -07004744
Björn Töpel02671e22018-05-02 13:01:30 +02004745 act = netif_receive_generic_xdp(skb, &xdp, xdp_prog);
John Fastabendd4455162017-07-17 09:26:45 -07004746 if (act != XDP_PASS) {
John Fastabend6103aa92017-07-17 09:27:50 -07004747 switch (act) {
4748 case XDP_REDIRECT:
Jesper Dangaard Brouer2facaad2017-08-24 12:33:08 +02004749 err = xdp_do_generic_redirect(skb->dev, skb,
Björn Töpel02671e22018-05-02 13:01:30 +02004750 &xdp, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004751 if (err)
4752 goto out_redir;
Björn Töpel02671e22018-05-02 13:01:30 +02004753 break;
John Fastabend6103aa92017-07-17 09:27:50 -07004754 case XDP_TX:
John Fastabendd4455162017-07-17 09:26:45 -07004755 generic_xdp_tx(skb, xdp_prog);
John Fastabend6103aa92017-07-17 09:27:50 -07004756 break;
4757 }
John Fastabendd4455162017-07-17 09:26:45 -07004758 return XDP_DROP;
4759 }
4760 }
4761 return XDP_PASS;
John Fastabend6103aa92017-07-17 09:27:50 -07004762out_redir:
John Fastabend6103aa92017-07-17 09:27:50 -07004763 kfree_skb(skb);
4764 return XDP_DROP;
John Fastabendd4455162017-07-17 09:26:45 -07004765}
Jason Wang7c497472017-08-11 19:41:17 +08004766EXPORT_SYMBOL_GPL(do_xdp_generic);
John Fastabendd4455162017-07-17 09:26:45 -07004767
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004768static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004770 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771
Eric Dumazet588f0332011-11-15 04:12:55 +00004772 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Koki Sanagicf66ba52010-08-23 18:45:02 +09004774 trace_netif_rx(skb);
John Fastabendd4455162017-07-17 09:26:45 -07004775
Eric Dumazetdf334542010-03-24 19:13:54 +00004776#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07004777 if (static_branch_unlikely(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07004778 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004779 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780
Changli Gaocece1942010-08-07 20:35:43 -07004781 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004782 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07004783
4784 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004785 if (cpu < 0)
4786 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07004787
4788 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4789
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004790 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07004791 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00004792 } else
4793#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07004794 {
4795 unsigned int qtail;
tchardingf4563a72017-02-09 17:56:07 +11004796
Tom Herbertfec5e652010-04-16 16:01:27 -07004797 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
4798 put_cpu();
4799 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07004800 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004802
4803/**
4804 * netif_rx - post buffer to the network code
4805 * @skb: buffer to post
4806 *
4807 * This function receives a packet from a device driver and queues it for
4808 * the upper (protocol) levels to process. It always succeeds. The buffer
4809 * may be dropped during processing for congestion control or by the
4810 * protocol layers.
4811 *
4812 * return values:
4813 * NET_RX_SUCCESS (no congestion)
4814 * NET_RX_DROP (packet was dropped)
4815 *
4816 */
4817
4818int netif_rx(struct sk_buff *skb)
4819{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004820 int ret;
4821
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004822 trace_netif_rx_entry(skb);
4823
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004824 ret = netif_rx_internal(skb);
4825 trace_netif_rx_exit(ret);
4826
4827 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004828}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07004829EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
4831int netif_rx_ni(struct sk_buff *skb)
4832{
4833 int err;
4834
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004835 trace_netif_rx_ni_entry(skb);
4836
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004838 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839 if (local_softirq_pending())
4840 do_softirq();
4841 preempt_enable();
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05004842 trace_netif_rx_ni_exit(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
4844 return err;
4845}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004846EXPORT_SYMBOL(netif_rx_ni);
4847
Sebastian Andrzej Siewiorc11171a2020-09-29 22:25:12 +02004848int netif_rx_any_context(struct sk_buff *skb)
4849{
4850 /*
4851 * If invoked from contexts which do not invoke bottom half
4852 * processing either at return from interrupt or when softrqs are
4853 * reenabled, use netif_rx_ni() which invokes bottomhalf processing
4854 * directly.
4855 */
4856 if (in_interrupt())
4857 return netif_rx(skb);
4858 else
4859 return netif_rx_ni(skb);
4860}
4861EXPORT_SYMBOL(netif_rx_any_context);
4862
Emese Revfy0766f782016-06-20 20:42:34 +02004863static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004865 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866
4867 if (sd->completion_queue) {
4868 struct sk_buff *clist;
4869
4870 local_irq_disable();
4871 clist = sd->completion_queue;
4872 sd->completion_queue = NULL;
4873 local_irq_enable();
4874
4875 while (clist) {
4876 struct sk_buff *skb = clist;
tchardingf4563a72017-02-09 17:56:07 +11004877
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 clist = clist->next;
4879
Reshetova, Elena63354792017-06-30 13:07:58 +03004880 WARN_ON(refcount_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004881 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4882 trace_consume_skb(skb);
4883 else
4884 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004885
4886 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4887 __kfree_skb(skb);
4888 else
4889 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004891
4892 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 }
4894
4895 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004896 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004897
4898 local_irq_disable();
4899 head = sd->output_queue;
4900 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004901 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902 local_irq_enable();
4903
4904 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004905 struct Qdisc *q = head;
John Fastabend6b3ba912017-12-07 09:54:25 -08004906 spinlock_t *root_lock = NULL;
David S. Miller37437bb2008-07-16 02:15:04 -07004907
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 head = head->next_sched;
4909
John Fastabend6b3ba912017-12-07 09:54:25 -08004910 if (!(q->flags & TCQ_F_NOLOCK)) {
4911 root_lock = qdisc_lock(q);
4912 spin_lock(root_lock);
4913 }
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004914 /* We need to make sure head->next_sched is read
4915 * before clearing __QDISC_STATE_SCHED
4916 */
4917 smp_mb__before_atomic();
4918 clear_bit(__QDISC_STATE_SCHED, &q->state);
4919 qdisc_run(q);
John Fastabend6b3ba912017-12-07 09:54:25 -08004920 if (root_lock)
4921 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 }
4923 }
Steffen Klassertf53c7232017-12-20 10:41:36 +01004924
4925 xfrm_dev_backlog(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926}
4927
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004928#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004929/* This hook is defined here for ATM LANE */
4930int (*br_fdb_test_addr_hook)(struct net_device *dev,
4931 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004932EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004935static inline struct sk_buff *
4936sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004937 struct net_device *orig_dev, bool *another)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004938{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004939#ifdef CONFIG_NET_CLS_ACT
Jiri Pirko46209402017-11-03 11:46:25 +01004940 struct mini_Qdisc *miniq = rcu_dereference_bh(skb->dev->miniq_ingress);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004941 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004942
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004943 /* If there's at least one ingress present somewhere (so
4944 * we get here via enabled static key), remaining devices
4945 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004946 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004947 */
Jiri Pirko46209402017-11-03 11:46:25 +01004948 if (!miniq)
Daniel Borkmann45771392015-04-10 23:07:54 +02004949 return skb;
Jiri Pirko46209402017-11-03 11:46:25 +01004950
Herbert Xuf697c3e2007-10-14 00:38:47 -07004951 if (*pt_prev) {
4952 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4953 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004954 }
4955
Florian Westphal33654952015-05-14 00:36:28 +02004956 qdisc_skb_cb(skb)->pkt_len = skb->len;
Willem de Bruijn8dc07fd2017-01-07 17:06:37 -05004957 skb->tc_at_ingress = 1;
Jiri Pirko46209402017-11-03 11:46:25 +01004958 mini_qdisc_bstats_cpu_update(miniq, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004959
Paul Blakey7d17c542020-02-16 12:01:22 +02004960 switch (tcf_classify_ingress(skb, miniq->block, miniq->filter_list,
4961 &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004962 case TC_ACT_OK:
4963 case TC_ACT_RECLASSIFY:
4964 skb->tc_index = TC_H_MIN(cl_res.classid);
4965 break;
4966 case TC_ACT_SHOT:
Jiri Pirko46209402017-11-03 11:46:25 +01004967 mini_qdisc_qstats_cpu_drop(miniq);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004968 kfree_skb(skb);
4969 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004970 case TC_ACT_STOLEN:
4971 case TC_ACT_QUEUED:
Jiri Pirkoe25ea212017-06-06 14:12:02 +02004972 case TC_ACT_TRAP:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004973 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004974 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004975 case TC_ACT_REDIRECT:
4976 /* skb_mac_header check was done by cls/act_bpf, so
4977 * we can safely push the L2 header back before
4978 * redirecting to another netdev
4979 */
4980 __skb_push(skb, skb->mac_len);
Daniel Borkmann9aa12062020-10-11 01:40:02 +02004981 if (skb_do_redirect(skb) == -EAGAIN) {
4982 __skb_pull(skb, skb->mac_len);
4983 *another = true;
4984 break;
4985 }
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004986 return NULL;
John Hurley720f22f2019-06-24 23:13:35 +01004987 case TC_ACT_CONSUMED:
Paolo Abenicd11b1642018-07-30 14:30:44 +02004988 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004989 default:
4990 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004991 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004992#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004993 return skb;
4994}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004996/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004997 * netdev_is_rx_handler_busy - check if receive handler is registered
4998 * @dev: device to check
4999 *
5000 * Check if a receive handler is already registered for a given device.
5001 * Return true if there one.
5002 *
5003 * The caller must hold the rtnl_mutex.
5004 */
5005bool netdev_is_rx_handler_busy(struct net_device *dev)
5006{
5007 ASSERT_RTNL();
5008 return dev && rtnl_dereference(dev->rx_handler);
5009}
5010EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5011
5012/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005013 * netdev_rx_handler_register - register receive handler
5014 * @dev: device to register a handler for
5015 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00005016 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005017 *
Masanari Iidae2278672014-02-18 22:54:36 +09005018 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005019 * called from __netif_receive_skb. A negative errno code is returned
5020 * on a failure.
5021 *
5022 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005023 *
5024 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005025 */
5026int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00005027 rx_handler_func_t *rx_handler,
5028 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005029{
Mahesh Bandewar1b7cd002017-01-18 15:02:49 -08005030 if (netdev_is_rx_handler_busy(dev))
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005031 return -EBUSY;
5032
Paolo Abenif54262502018-03-09 10:39:24 +01005033 if (dev->priv_flags & IFF_NO_RX_HANDLER)
5034 return -EINVAL;
5035
Eric Dumazet00cfec32013-03-29 03:01:22 +00005036 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00005037 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005038 rcu_assign_pointer(dev->rx_handler, rx_handler);
5039
5040 return 0;
5041}
5042EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5043
5044/**
5045 * netdev_rx_handler_unregister - unregister receive handler
5046 * @dev: device to unregister a handler from
5047 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00005048 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005049 *
5050 * The caller must hold the rtnl_mutex.
5051 */
5052void netdev_rx_handler_unregister(struct net_device *dev)
5053{
5054
5055 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005056 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00005057 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5058 * section has a guarantee to see a non NULL rx_handler_data
5059 * as well.
5060 */
5061 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00005062 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005063}
5064EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5065
Mel Gormanb4b9e352012-07-31 16:44:26 -07005066/*
5067 * Limit the use of PFMEMALLOC reserves to those protocols that implement
5068 * the special handling of PFMEMALLOC skbs.
5069 */
5070static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5071{
5072 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07005073 case htons(ETH_P_ARP):
5074 case htons(ETH_P_IP):
5075 case htons(ETH_P_IPV6):
5076 case htons(ETH_P_8021Q):
5077 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07005078 return true;
5079 default:
5080 return false;
5081 }
5082}
5083
Pablo Neirae687ad62015-05-13 18:19:38 +02005084static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5085 int *ret, struct net_device *orig_dev)
5086{
5087 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04005088 int ingress_retval;
5089
Pablo Neirae687ad62015-05-13 18:19:38 +02005090 if (*pt_prev) {
5091 *ret = deliver_skb(skb, *pt_prev, orig_dev);
5092 *pt_prev = NULL;
5093 }
5094
Aaron Conole2c1e2702016-09-21 11:35:03 -04005095 rcu_read_lock();
5096 ingress_retval = nf_hook_ingress(skb);
5097 rcu_read_unlock();
5098 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02005099 }
5100 return 0;
5101}
Pablo Neirae687ad62015-05-13 18:19:38 +02005102
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005103static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
Edward Cree88eb1942018-07-02 16:13:56 +01005104 struct packet_type **ppt_prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105{
5106 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005107 rx_handler_func_t *rx_handler;
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005108 struct sk_buff *skb = *pskb;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07005109 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005110 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 int ret = NET_RX_DROP;
Al Viro252e33462006-11-14 20:48:11 -08005112 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
Eric Dumazet588f0332011-11-15 04:12:55 +00005114 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07005115
Koki Sanagicf66ba52010-08-23 18:45:02 +09005116 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08005117
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07005118 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00005119
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07005120 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00005121 if (!skb_transport_header_was_set(skb))
5122 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00005123 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
5125 pt_prev = NULL;
5126
David S. Miller63d8ea72011-02-28 10:48:59 -08005127another_round:
David S. Millerb6858172012-07-23 16:27:54 -07005128 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08005129
5130 __this_cpu_inc(softnet_data.processed);
5131
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005132 if (static_branch_unlikely(&generic_xdp_needed_key)) {
5133 int ret2;
5134
5135 preempt_disable();
5136 ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog), skb);
5137 preempt_enable();
5138
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005139 if (ret2 != XDP_PASS) {
5140 ret = NET_RX_DROP;
5141 goto out;
5142 }
Stephen Hemminger458bf2f2019-05-28 11:47:31 -07005143 skb_reset_mac_len(skb);
5144 }
5145
Patrick McHardy8ad227f2013-04-19 02:04:31 +00005146 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5147 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04005148 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005149 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005150 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00005151 }
5152
Willem de Bruijne7246e12017-01-07 17:06:35 -05005153 if (skb_skip_tc_classify(skb))
5154 goto skip_classify;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
David S. Miller9754e292013-02-14 15:57:38 -05005156 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07005157 goto skip_taps;
5158
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08005160 if (pt_prev)
5161 ret = deliver_skb(skb, pt_prev, orig_dev);
5162 pt_prev = ptype;
5163 }
5164
5165 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
5166 if (pt_prev)
5167 ret = deliver_skb(skb, pt_prev, orig_dev);
5168 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 }
5170
Mel Gormanb4b9e352012-07-31 16:44:26 -07005171skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02005172#ifdef CONFIG_NET_INGRESS
Davidlohr Buesoaabf6772018-05-08 09:07:00 -07005173 if (static_branch_unlikely(&ingress_needed_key)) {
Daniel Borkmann9aa12062020-10-11 01:40:02 +02005174 bool another = false;
5175
5176 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
5177 &another);
5178 if (another)
5179 goto another_round;
Daniel Borkmann45771392015-04-10 23:07:54 +02005180 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005181 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02005182
5183 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03005184 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02005185 }
Pablo Neira1cf519002015-05-13 18:19:37 +02005186#endif
Pablo Neira Ayuso2c646052020-03-25 13:47:18 +01005187 skb_reset_redirect(skb);
Willem de Bruijne7246e12017-01-07 17:06:35 -05005188skip_classify:
David S. Miller9754e292013-02-14 15:57:38 -05005189 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07005190 goto drop;
5191
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01005192 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00005193 if (pt_prev) {
5194 ret = deliver_skb(skb, pt_prev, orig_dev);
5195 pt_prev = NULL;
5196 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005197 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00005198 goto another_round;
5199 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03005200 goto out;
John Fastabend24257172011-10-10 09:16:41 +00005201 }
5202
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005203 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005204 if (rx_handler) {
5205 if (pt_prev) {
5206 ret = deliver_skb(skb, pt_prev, orig_dev);
5207 pt_prev = NULL;
5208 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005209 switch (rx_handler(&skb)) {
5210 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00005211 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005212 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005213 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08005214 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00005215 case RX_HANDLER_EXACT:
5216 deliver_exact = true;
5217 case RX_HANDLER_PASS:
5218 break;
5219 default:
5220 BUG();
5221 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00005222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223
Vladimir Olteanb14a9fc2020-09-12 02:26:07 +03005224 if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005225check_vlan_id:
5226 if (skb_vlan_tag_get_id(skb)) {
5227 /* Vlan id is non 0 and vlan_do_receive() above couldn't
5228 * find vlan device.
5229 */
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005230 skb->pkt_type = PACKET_OTHERHOST;
Govindarajulu Varadarajan36b2f612019-06-14 06:13:54 -07005231 } else if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
5232 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
5233 /* Outer header is 802.1P with vlan 0, inner header is
5234 * 802.1Q or 802.1AD and vlan_do_receive() above could
5235 * not find vlan dev for vlan id 0.
5236 */
5237 __vlan_hwaccel_clear_tag(skb);
5238 skb = skb_vlan_untag(skb);
5239 if (unlikely(!skb))
5240 goto out;
5241 if (vlan_do_receive(&skb))
5242 /* After stripping off 802.1P header with vlan 0
5243 * vlan dev is found for inner header.
5244 */
5245 goto another_round;
5246 else if (unlikely(!skb))
5247 goto out;
5248 else
5249 /* We have stripped outer 802.1P vlan 0 header.
5250 * But could not find vlan dev.
5251 * check again for vlan id to set OTHERHOST.
5252 */
5253 goto check_vlan_id;
5254 }
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005255 /* Note: we might in the future use prio bits
5256 * and set skb->priority like in vlan_do_receive()
5257 * For the time being, just ignore Priority Code Point
5258 */
Michał Mirosławb18175242018-11-09 00:18:02 +01005259 __vlan_hwaccel_clear_tag(skb);
Eric Dumazetd4b812d2013-07-18 07:19:26 -07005260 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00005261
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08005263
5264 /* deliver only exact match when indicated */
5265 if (likely(!deliver_exact)) {
5266 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5267 &ptype_base[ntohs(type) &
5268 PTYPE_HASH_MASK]);
5269 }
5270
5271 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5272 &orig_dev->ptype_specific);
5273
5274 if (unlikely(skb->dev != orig_dev)) {
5275 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
5276 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 }
5278
5279 if (pt_prev) {
Willem de Bruijn1f8b9772017-08-03 16:29:41 -04005280 if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00005281 goto drop;
Edward Cree88eb1942018-07-02 16:13:56 +01005282 *ppt_prev = pt_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07005284drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05005285 if (!deliver_exact)
5286 atomic_long_inc(&skb->dev->rx_dropped);
5287 else
5288 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 kfree_skb(skb);
5290 /* Jamal, now you will not able to escape explaining
5291 * me how you were going to use this. :-)
5292 */
5293 ret = NET_RX_DROP;
5294 }
5295
Julian Anastasov2c17d272015-07-09 09:59:10 +03005296out:
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005297 /* The invariant here is that if *ppt_prev is not NULL
5298 * then skb should also be non-NULL.
5299 *
5300 * Apparently *ppt_prev assignment above holds this invariant due to
5301 * skb dereferencing near it.
5302 */
5303 *pskb = skb;
David S. Miller9754e292013-02-14 15:57:38 -05005304 return ret;
5305}
5306
Edward Cree88eb1942018-07-02 16:13:56 +01005307static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
5308{
5309 struct net_device *orig_dev = skb->dev;
5310 struct packet_type *pt_prev = NULL;
5311 int ret;
5312
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005313 ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree88eb1942018-07-02 16:13:56 +01005314 if (pt_prev)
Paolo Abenif5737cb2019-05-03 17:01:36 +02005315 ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
5316 skb->dev, pt_prev, orig_dev);
Edward Cree88eb1942018-07-02 16:13:56 +01005317 return ret;
5318}
5319
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005320/**
5321 * netif_receive_skb_core - special purpose version of netif_receive_skb
5322 * @skb: buffer to process
5323 *
5324 * More direct receive version of netif_receive_skb(). It should
5325 * only be used by callers that have a need to skip RPS and Generic XDP.
Mauro Carvalho Chehab2de97802020-03-17 15:54:20 +01005326 * Caller must also take care of handling if ``(page_is_)pfmemalloc``.
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005327 *
5328 * This function may only be called from softirq context and interrupts
5329 * should be enabled.
5330 *
5331 * Return values (usually ignored):
5332 * NET_RX_SUCCESS: no congestion
5333 * NET_RX_DROP: packet was dropped
5334 */
5335int netif_receive_skb_core(struct sk_buff *skb)
5336{
5337 int ret;
5338
5339 rcu_read_lock();
Edward Cree88eb1942018-07-02 16:13:56 +01005340 ret = __netif_receive_skb_one_core(skb, false);
Jesper Dangaard Brouer1c601d82017-10-16 12:19:39 +02005341 rcu_read_unlock();
5342
5343 return ret;
5344}
5345EXPORT_SYMBOL(netif_receive_skb_core);
5346
Edward Cree88eb1942018-07-02 16:13:56 +01005347static inline void __netif_receive_skb_list_ptype(struct list_head *head,
5348 struct packet_type *pt_prev,
5349 struct net_device *orig_dev)
Edward Cree4ce00172018-07-02 16:13:40 +01005350{
5351 struct sk_buff *skb, *next;
5352
Edward Cree88eb1942018-07-02 16:13:56 +01005353 if (!pt_prev)
5354 return;
5355 if (list_empty(head))
5356 return;
Edward Cree17266ee2018-07-02 16:14:12 +01005357 if (pt_prev->list_func != NULL)
Paolo Abenifdf71422019-06-04 11:44:06 +02005358 INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
5359 ip_list_rcv, head, pt_prev, orig_dev);
Edward Cree17266ee2018-07-02 16:14:12 +01005360 else
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005361 list_for_each_entry_safe(skb, next, head, list) {
5362 skb_list_del_init(skb);
Paolo Abenifdf71422019-06-04 11:44:06 +02005363 pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Alexander Lobakin9a5a90d2019-03-28 18:23:04 +03005364 }
Edward Cree88eb1942018-07-02 16:13:56 +01005365}
5366
5367static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
5368{
5369 /* Fast-path assumptions:
5370 * - There is no RX handler.
5371 * - Only one packet_type matches.
5372 * If either of these fails, we will end up doing some per-packet
5373 * processing in-line, then handling the 'last ptype' for the whole
5374 * sublist. This can't cause out-of-order delivery to any single ptype,
5375 * because the 'last ptype' must be constant across the sublist, and all
5376 * other ptypes are handled per-packet.
5377 */
5378 /* Current (common) ptype of sublist */
5379 struct packet_type *pt_curr = NULL;
5380 /* Current (common) orig_dev of sublist */
5381 struct net_device *od_curr = NULL;
5382 struct list_head sublist;
5383 struct sk_buff *skb, *next;
5384
Edward Cree9af86f92018-07-09 18:10:19 +01005385 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005386 list_for_each_entry_safe(skb, next, head, list) {
5387 struct net_device *orig_dev = skb->dev;
5388 struct packet_type *pt_prev = NULL;
5389
Edward Cree22f6bbb2018-12-04 17:37:57 +00005390 skb_list_del_init(skb);
Boris Sukholitkoc0bbbdc2020-05-19 10:32:37 +03005391 __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
Edward Cree9af86f92018-07-09 18:10:19 +01005392 if (!pt_prev)
5393 continue;
Edward Cree88eb1942018-07-02 16:13:56 +01005394 if (pt_curr != pt_prev || od_curr != orig_dev) {
5395 /* dispatch old sublist */
Edward Cree88eb1942018-07-02 16:13:56 +01005396 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
5397 /* start new sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005398 INIT_LIST_HEAD(&sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005399 pt_curr = pt_prev;
5400 od_curr = orig_dev;
5401 }
Edward Cree9af86f92018-07-09 18:10:19 +01005402 list_add_tail(&skb->list, &sublist);
Edward Cree88eb1942018-07-02 16:13:56 +01005403 }
5404
5405 /* dispatch final sublist */
Edward Cree9af86f92018-07-09 18:10:19 +01005406 __netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
Edward Cree4ce00172018-07-02 16:13:40 +01005407}
5408
David S. Miller9754e292013-02-14 15:57:38 -05005409static int __netif_receive_skb(struct sk_buff *skb)
5410{
5411 int ret;
5412
5413 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005414 unsigned int noreclaim_flag;
David S. Miller9754e292013-02-14 15:57:38 -05005415
5416 /*
5417 * PFMEMALLOC skbs are special, they should
5418 * - be delivered to SOCK_MEMALLOC sockets only
5419 * - stay away from userspace
5420 * - have bounded memory usage
5421 *
5422 * Use PF_MEMALLOC as this saves us from propagating the allocation
5423 * context down to all allocation sites.
5424 */
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005425 noreclaim_flag = memalloc_noreclaim_save();
Edward Cree88eb1942018-07-02 16:13:56 +01005426 ret = __netif_receive_skb_one_core(skb, true);
Vlastimil Babkaf1083042017-05-08 15:59:53 -07005427 memalloc_noreclaim_restore(noreclaim_flag);
David S. Miller9754e292013-02-14 15:57:38 -05005428 } else
Edward Cree88eb1942018-07-02 16:13:56 +01005429 ret = __netif_receive_skb_one_core(skb, false);
David S. Miller9754e292013-02-14 15:57:38 -05005430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 return ret;
5432}
Tom Herbert0a9627f2010-03-16 08:03:29 +00005433
Edward Cree4ce00172018-07-02 16:13:40 +01005434static void __netif_receive_skb_list(struct list_head *head)
5435{
5436 unsigned long noreclaim_flag = 0;
5437 struct sk_buff *skb, *next;
5438 bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
5439
5440 list_for_each_entry_safe(skb, next, head, list) {
5441 if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
5442 struct list_head sublist;
5443
5444 /* Handle the previous sublist */
5445 list_cut_before(&sublist, head, &skb->list);
Edward Creeb9f463d2018-07-02 16:14:44 +01005446 if (!list_empty(&sublist))
5447 __netif_receive_skb_list_core(&sublist, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005448 pfmemalloc = !pfmemalloc;
5449 /* See comments in __netif_receive_skb */
5450 if (pfmemalloc)
5451 noreclaim_flag = memalloc_noreclaim_save();
5452 else
5453 memalloc_noreclaim_restore(noreclaim_flag);
5454 }
5455 }
5456 /* Handle the remaining sublist */
Edward Creeb9f463d2018-07-02 16:14:44 +01005457 if (!list_empty(head))
5458 __netif_receive_skb_list_core(head, pfmemalloc);
Edward Cree4ce00172018-07-02 16:13:40 +01005459 /* Restore pflags */
5460 if (pfmemalloc)
5461 memalloc_noreclaim_restore(noreclaim_flag);
5462}
5463
Jakub Kicinskif4e63522017-11-03 13:56:16 -07005464static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
David S. Millerb5cdae32017-04-18 15:36:58 -04005465{
Martin KaFai Lau58038692017-06-15 17:29:09 -07005466 struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
David S. Millerb5cdae32017-04-18 15:36:58 -04005467 struct bpf_prog *new = xdp->prog;
5468 int ret = 0;
5469
David Ahernfbee97f2020-05-29 16:07:13 -06005470 if (new) {
5471 u32 i;
5472
YiFei Zhu984fe942020-09-15 16:45:39 -07005473 mutex_lock(&new->aux->used_maps_mutex);
5474
David Ahernfbee97f2020-05-29 16:07:13 -06005475 /* generic XDP does not work with DEVMAPs that can
5476 * have a bpf_prog installed on an entry
5477 */
5478 for (i = 0; i < new->aux->used_map_cnt; i++) {
YiFei Zhu984fe942020-09-15 16:45:39 -07005479 if (dev_map_can_have_prog(new->aux->used_maps[i]) ||
5480 cpu_map_prog_allowed(new->aux->used_maps[i])) {
5481 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005482 return -EINVAL;
YiFei Zhu984fe942020-09-15 16:45:39 -07005483 }
David Ahernfbee97f2020-05-29 16:07:13 -06005484 }
YiFei Zhu984fe942020-09-15 16:45:39 -07005485
5486 mutex_unlock(&new->aux->used_maps_mutex);
David Ahernfbee97f2020-05-29 16:07:13 -06005487 }
5488
David S. Millerb5cdae32017-04-18 15:36:58 -04005489 switch (xdp->command) {
Martin KaFai Lau58038692017-06-15 17:29:09 -07005490 case XDP_SETUP_PROG:
David S. Millerb5cdae32017-04-18 15:36:58 -04005491 rcu_assign_pointer(dev->xdp_prog, new);
5492 if (old)
5493 bpf_prog_put(old);
5494
5495 if (old && !new) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005496 static_branch_dec(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005497 } else if (new && !old) {
Davidlohr Bueso02786472018-05-08 09:07:02 -07005498 static_branch_inc(&generic_xdp_needed_key);
David S. Millerb5cdae32017-04-18 15:36:58 -04005499 dev_disable_lro(dev);
Michael Chan56f5aa72017-12-16 03:09:41 -05005500 dev_disable_gro_hw(dev);
David S. Millerb5cdae32017-04-18 15:36:58 -04005501 }
5502 break;
David S. Millerb5cdae32017-04-18 15:36:58 -04005503
David S. Millerb5cdae32017-04-18 15:36:58 -04005504 default:
5505 ret = -EINVAL;
5506 break;
5507 }
5508
5509 return ret;
5510}
5511
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005512static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00005513{
Julian Anastasov2c17d272015-07-09 09:59:10 +03005514 int ret;
5515
Eric Dumazet588f0332011-11-15 04:12:55 +00005516 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07005517
Richard Cochranc1f19b52010-07-17 08:49:36 +00005518 if (skb_defer_rx_timestamp(skb))
5519 return NET_RX_SUCCESS;
5520
John Fastabendbbbe2112017-09-08 14:00:30 -07005521 rcu_read_lock();
Eric Dumazetdf334542010-03-24 19:13:54 +00005522#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005523 if (static_branch_unlikely(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07005524 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03005525 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07005526
Eric Dumazet3b098e22010-05-15 23:57:10 -07005527 if (cpu >= 0) {
5528 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5529 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00005530 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07005531 }
Tom Herbertfec5e652010-04-16 16:01:27 -07005532 }
Tom Herbert1e94d722010-03-18 17:45:44 -07005533#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03005534 ret = __netif_receive_skb(skb);
5535 rcu_read_unlock();
5536 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00005537}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005538
Edward Cree7da517a2018-07-02 16:13:24 +01005539static void netif_receive_skb_list_internal(struct list_head *head)
5540{
Edward Cree7da517a2018-07-02 16:13:24 +01005541 struct sk_buff *skb, *next;
Edward Cree8c057ef2018-07-09 18:09:54 +01005542 struct list_head sublist;
Edward Cree7da517a2018-07-02 16:13:24 +01005543
Edward Cree8c057ef2018-07-09 18:09:54 +01005544 INIT_LIST_HEAD(&sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005545 list_for_each_entry_safe(skb, next, head, list) {
5546 net_timestamp_check(netdev_tstamp_prequeue, skb);
Edward Cree22f6bbb2018-12-04 17:37:57 +00005547 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005548 if (!skb_defer_rx_timestamp(skb))
5549 list_add_tail(&skb->list, &sublist);
Edward Cree7da517a2018-07-02 16:13:24 +01005550 }
Edward Cree8c057ef2018-07-09 18:09:54 +01005551 list_splice_init(&sublist, head);
Edward Cree7da517a2018-07-02 16:13:24 +01005552
Edward Cree7da517a2018-07-02 16:13:24 +01005553 rcu_read_lock();
5554#ifdef CONFIG_RPS
Eric Dumazetdc053602019-03-22 08:56:38 -07005555 if (static_branch_unlikely(&rps_needed)) {
Edward Cree7da517a2018-07-02 16:13:24 +01005556 list_for_each_entry_safe(skb, next, head, list) {
5557 struct rps_dev_flow voidflow, *rflow = &voidflow;
5558 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
5559
5560 if (cpu >= 0) {
Edward Cree8c057ef2018-07-09 18:09:54 +01005561 /* Will be handled, remove from list */
Edward Cree22f6bbb2018-12-04 17:37:57 +00005562 skb_list_del_init(skb);
Edward Cree8c057ef2018-07-09 18:09:54 +01005563 enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
Edward Cree7da517a2018-07-02 16:13:24 +01005564 }
5565 }
5566 }
5567#endif
5568 __netif_receive_skb_list(head);
5569 rcu_read_unlock();
5570}
5571
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005572/**
5573 * netif_receive_skb - process receive buffer from network
5574 * @skb: buffer to process
5575 *
5576 * netif_receive_skb() is the main receive data processing function.
5577 * It always succeeds. The buffer may be dropped during processing
5578 * for congestion control or by the protocol layers.
5579 *
5580 * This function may only be called from softirq context and interrupts
5581 * should be enabled.
5582 *
5583 * Return values (usually ignored):
5584 * NET_RX_SUCCESS: no congestion
5585 * NET_RX_DROP: packet was dropped
5586 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005587int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005588{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005589 int ret;
5590
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005591 trace_netif_receive_skb_entry(skb);
5592
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005593 ret = netif_receive_skb_internal(skb);
5594 trace_netif_receive_skb_exit(ret);
5595
5596 return ret;
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00005597}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05005598EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005599
Edward Creef6ad8c12018-07-02 16:12:45 +01005600/**
5601 * netif_receive_skb_list - process many receive buffers from network
5602 * @head: list of skbs to process.
5603 *
Edward Cree7da517a2018-07-02 16:13:24 +01005604 * Since return value of netif_receive_skb() is normally ignored, and
5605 * wouldn't be meaningful for a list, this function returns void.
Edward Creef6ad8c12018-07-02 16:12:45 +01005606 *
5607 * This function may only be called from softirq context and interrupts
5608 * should be enabled.
5609 */
5610void netif_receive_skb_list(struct list_head *head)
5611{
Edward Cree7da517a2018-07-02 16:13:24 +01005612 struct sk_buff *skb;
Edward Creef6ad8c12018-07-02 16:12:45 +01005613
Edward Creeb9f463d2018-07-02 16:14:44 +01005614 if (list_empty(head))
5615 return;
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005616 if (trace_netif_receive_skb_list_entry_enabled()) {
5617 list_for_each_entry(skb, head, list)
5618 trace_netif_receive_skb_list_entry(skb);
5619 }
Edward Cree7da517a2018-07-02 16:13:24 +01005620 netif_receive_skb_list_internal(head);
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05005621 trace_netif_receive_skb_list_exit(0);
Edward Creef6ad8c12018-07-02 16:12:45 +01005622}
5623EXPORT_SYMBOL(netif_receive_skb_list);
5624
Wei Yongjunce1e2a72020-07-13 22:23:44 +08005625static DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005626
5627/* Network device is going away, flush any packets still pending */
5628static void flush_backlog(struct work_struct *work)
5629{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005630 struct sk_buff *skb, *tmp;
5631 struct softnet_data *sd;
5632
5633 local_bh_disable();
5634 sd = this_cpu_ptr(&softnet_data);
5635
5636 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005637 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005638 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005639 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005640 __skb_unlink(skb, &sd->input_pkt_queue);
Subash Abhinov Kasiviswanathan7df5cb752020-07-23 11:31:48 -06005641 dev_kfree_skb_irq(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005642 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005643 }
Changli Gao6e7676c2010-04-27 15:07:33 -07005644 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00005645 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005646 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005647
5648 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07005649 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07005650 __skb_unlink(skb, &sd->process_queue);
5651 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00005652 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07005653 }
5654 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005655 local_bh_enable();
5656}
5657
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005658static bool flush_required(int cpu)
5659{
5660#if IS_ENABLED(CONFIG_RPS)
5661 struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5662 bool do_flush;
5663
5664 local_irq_disable();
5665 rps_lock(sd);
5666
5667 /* as insertion into process_queue happens with the rps lock held,
5668 * process_queue access may race only with dequeue
5669 */
5670 do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
5671 !skb_queue_empty_lockless(&sd->process_queue);
5672 rps_unlock(sd);
5673 local_irq_enable();
5674
5675 return do_flush;
5676#endif
5677 /* without RPS we can't safely check input_pkt_queue: during a
5678 * concurrent remote skb_queue_splice() we can detect as empty both
5679 * input_pkt_queue and process_queue even if the latter could end-up
5680 * containing a lot of packets.
5681 */
5682 return true;
5683}
5684
Eric Dumazet41852492016-08-26 12:50:39 -07005685static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005686{
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005687 static cpumask_t flush_cpus;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005688 unsigned int cpu;
5689
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005690 /* since we are under rtnl lock protection we can use static data
5691 * for the cpumask and avoid allocating on stack the possibly
5692 * large mask
5693 */
5694 ASSERT_RTNL();
5695
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005696 get_online_cpus();
5697
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005698 cpumask_clear(&flush_cpus);
5699 for_each_online_cpu(cpu) {
5700 if (flush_required(cpu)) {
5701 queue_work_on(cpu, system_highpri_wq,
5702 per_cpu_ptr(&flush_works, cpu));
5703 cpumask_set_cpu(cpu, &flush_cpus);
5704 }
5705 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005706
Paolo Abeni2de79ee2020-09-10 23:33:18 +02005707 /* we can have in flight packet[s] on the cpus we are not flushing,
5708 * synchronize_net() in rollback_registered_many() will take care of
5709 * them
5710 */
5711 for_each_cpu(cpu, &flush_cpus)
Eric Dumazet41852492016-08-26 12:50:39 -07005712 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005713
5714 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07005715}
5716
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005717/* Pass the currently batched GRO_NORMAL SKBs up to the stack. */
5718static void gro_normal_list(struct napi_struct *napi)
5719{
5720 if (!napi->rx_count)
5721 return;
5722 netif_receive_skb_list_internal(&napi->rx_list);
5723 INIT_LIST_HEAD(&napi->rx_list);
5724 napi->rx_count = 0;
5725}
5726
5727/* Queue one GRO_NORMAL SKB up for list processing. If batch size exceeded,
5728 * pass the whole batch up to the stack.
5729 */
5730static void gro_normal_one(struct napi_struct *napi, struct sk_buff *skb)
5731{
5732 list_add_tail(&skb->list, &napi->rx_list);
5733 if (++napi->rx_count >= gro_normal_batch)
5734 gro_normal_list(napi);
5735}
5736
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005737INDIRECT_CALLABLE_DECLARE(int inet_gro_complete(struct sk_buff *, int));
5738INDIRECT_CALLABLE_DECLARE(int ipv6_gro_complete(struct sk_buff *, int));
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005739static int napi_gro_complete(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005740{
Vlad Yasevich22061d82012-11-15 08:49:11 +00005741 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005742 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005743 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08005744 int err = -ENOENT;
5745
Eric Dumazetc3c7c252012-12-06 13:54:59 +00005746 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
5747
Herbert Xufc59f9a2009-04-14 15:11:06 -07005748 if (NAPI_GRO_CB(skb)->count == 1) {
5749 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005750 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07005751 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005752
5753 rcu_read_lock();
5754 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005755 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08005756 continue;
5757
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005758 err = INDIRECT_CALL_INET(ptype->callbacks.gro_complete,
5759 ipv6_gro_complete, inet_gro_complete,
5760 skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08005761 break;
5762 }
5763 rcu_read_unlock();
5764
5765 if (err) {
5766 WARN_ON(&ptype->list == head);
5767 kfree_skb(skb);
5768 return NET_RX_SUCCESS;
5769 }
5770
5771out:
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005772 gro_normal_one(napi, skb);
5773 return NET_RX_SUCCESS;
Herbert Xud565b0a2008-12-15 23:38:52 -08005774}
5775
Li RongQing6312fe72018-07-05 14:34:32 +08005776static void __napi_gro_flush_chain(struct napi_struct *napi, u32 index,
David Miller07d78362018-06-24 14:14:02 +09005777 bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08005778{
Li RongQing6312fe72018-07-05 14:34:32 +08005779 struct list_head *head = &napi->gro_hash[index].list;
David Millerd4546c22018-06-24 14:13:49 +09005780 struct sk_buff *skb, *p;
Herbert Xud565b0a2008-12-15 23:38:52 -08005781
David Miller07d78362018-06-24 14:14:02 +09005782 list_for_each_entry_safe_reverse(skb, p, head, list) {
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005783 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
5784 return;
David S. Miller992cba72018-07-31 15:27:56 -07005785 skb_list_del_init(skb);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005786 napi_gro_complete(napi, skb);
Li RongQing6312fe72018-07-05 14:34:32 +08005787 napi->gro_hash[index].count--;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005788 }
Li RongQingd9f37d02018-07-13 14:41:36 +08005789
5790 if (!napi->gro_hash[index].count)
5791 __clear_bit(index, &napi->gro_bitmask);
Herbert Xud565b0a2008-12-15 23:38:52 -08005792}
David Miller07d78362018-06-24 14:14:02 +09005793
Li RongQing6312fe72018-07-05 14:34:32 +08005794/* napi->gro_hash[].list contains packets ordered by age.
David Miller07d78362018-06-24 14:14:02 +09005795 * youngest packets at the head of it.
5796 * Complete skbs in reverse order to reduce latencies.
5797 */
5798void napi_gro_flush(struct napi_struct *napi, bool flush_old)
5799{
Eric Dumazet42519ed2018-11-21 11:39:28 -08005800 unsigned long bitmask = napi->gro_bitmask;
5801 unsigned int i, base = ~0U;
David Miller07d78362018-06-24 14:14:02 +09005802
Eric Dumazet42519ed2018-11-21 11:39:28 -08005803 while ((i = ffs(bitmask)) != 0) {
5804 bitmask >>= i;
5805 base += i;
5806 __napi_gro_flush_chain(napi, base, flush_old);
Li RongQingd9f37d02018-07-13 14:41:36 +08005807 }
David Miller07d78362018-06-24 14:14:02 +09005808}
Eric Dumazet86cac582010-08-31 18:25:32 +00005809EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08005810
David Miller07d78362018-06-24 14:14:02 +09005811static struct list_head *gro_list_prepare(struct napi_struct *napi,
5812 struct sk_buff *skb)
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005813{
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005814 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08005815 u32 hash = skb_get_hash_raw(skb);
David Miller07d78362018-06-24 14:14:02 +09005816 struct list_head *head;
David Millerd4546c22018-06-24 14:13:49 +09005817 struct sk_buff *p;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005818
Li RongQing6312fe72018-07-05 14:34:32 +08005819 head = &napi->gro_hash[hash & (GRO_HASH_BUCKETS - 1)].list;
David Miller07d78362018-06-24 14:14:02 +09005820 list_for_each_entry(p, head, list) {
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005821 unsigned long diffs;
5822
Tom Herbert0b4cec82014-01-15 08:58:06 -08005823 NAPI_GRO_CB(p)->flush = 0;
5824
5825 if (hash != skb_get_hash_raw(p)) {
5826 NAPI_GRO_CB(p)->same_flow = 0;
5827 continue;
5828 }
5829
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005830 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
Michał Mirosławb18175242018-11-09 00:18:02 +01005831 diffs |= skb_vlan_tag_present(p) ^ skb_vlan_tag_present(skb);
5832 if (skb_vlan_tag_present(p))
Tonghao Zhangfc5141c2019-11-22 20:38:01 +08005833 diffs |= skb_vlan_tag_get(p) ^ skb_vlan_tag_get(skb);
Jesse Grossce87fc62016-01-20 17:59:49 -08005834 diffs |= skb_metadata_dst_cmp(p, skb);
Daniel Borkmannde8f3a82017-09-25 02:25:51 +02005835 diffs |= skb_metadata_differs(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005836 if (maclen == ETH_HLEN)
5837 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005838 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005839 else if (!diffs)
5840 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07005841 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005842 maclen);
5843 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005844 }
David Miller07d78362018-06-24 14:14:02 +09005845
5846 return head;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005847}
5848
Jerry Chu299603e82013-12-11 20:53:45 -08005849static void skb_gro_reset_offset(struct sk_buff *skb)
5850{
5851 const struct skb_shared_info *pinfo = skb_shinfo(skb);
5852 const skb_frag_t *frag0 = &pinfo->frags[0];
5853
5854 NAPI_GRO_CB(skb)->data_offset = 0;
5855 NAPI_GRO_CB(skb)->frag0 = NULL;
5856 NAPI_GRO_CB(skb)->frag0_len = 0;
5857
Alexander Lobakin8aef9982019-11-15 12:11:35 +03005858 if (!skb_headlen(skb) && pinfo->nr_frags &&
Jerry Chu299603e82013-12-11 20:53:45 -08005859 !PageHighMem(skb_frag_page(frag0))) {
5860 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet7cfd5fd2017-01-10 19:52:43 -08005861 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
5862 skb_frag_size(frag0),
5863 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08005864 }
5865}
5866
Eric Dumazeta50e2332014-03-29 21:28:21 -07005867static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
5868{
5869 struct skb_shared_info *pinfo = skb_shinfo(skb);
5870
5871 BUG_ON(skb->end - skb->tail < grow);
5872
5873 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
5874
5875 skb->data_len -= grow;
5876 skb->tail += grow;
5877
Jonathan Lemonb54c9d52019-07-30 07:40:33 -07005878 skb_frag_off_add(&pinfo->frags[0], grow);
Eric Dumazeta50e2332014-03-29 21:28:21 -07005879 skb_frag_size_sub(&pinfo->frags[0], grow);
5880
5881 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
5882 skb_frag_unref(skb, 0);
5883 memmove(pinfo->frags, pinfo->frags + 1,
5884 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
5885 }
5886}
5887
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005888static void gro_flush_oldest(struct napi_struct *napi, struct list_head *head)
David Miller07d78362018-06-24 14:14:02 +09005889{
Li RongQing6312fe72018-07-05 14:34:32 +08005890 struct sk_buff *oldest;
David Miller07d78362018-06-24 14:14:02 +09005891
Li RongQing6312fe72018-07-05 14:34:32 +08005892 oldest = list_last_entry(head, struct sk_buff, list);
David Miller07d78362018-06-24 14:14:02 +09005893
Li RongQing6312fe72018-07-05 14:34:32 +08005894 /* We are called with head length >= MAX_GRO_SKBS, so this is
David Miller07d78362018-06-24 14:14:02 +09005895 * impossible.
5896 */
5897 if (WARN_ON_ONCE(!oldest))
5898 return;
5899
Li RongQingd9f37d02018-07-13 14:41:36 +08005900 /* Do not adjust napi->gro_hash[].count, caller is adding a new
5901 * SKB to the chain.
David Miller07d78362018-06-24 14:14:02 +09005902 */
David S. Millerece23712018-10-28 10:35:12 -07005903 skb_list_del_init(oldest);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005904 napi_gro_complete(napi, oldest);
David Miller07d78362018-06-24 14:14:02 +09005905}
5906
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005907INDIRECT_CALLABLE_DECLARE(struct sk_buff *inet_gro_receive(struct list_head *,
5908 struct sk_buff *));
5909INDIRECT_CALLABLE_DECLARE(struct sk_buff *ipv6_gro_receive(struct list_head *,
5910 struct sk_buff *));
Rami Rosenbb728822012-11-28 21:55:25 +00005911static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08005912{
Li RongQing6312fe72018-07-05 14:34:32 +08005913 u32 hash = skb_get_hash_raw(skb) & (GRO_HASH_BUCKETS - 1);
David Millerd4546c22018-06-24 14:13:49 +09005914 struct list_head *head = &offload_base;
Vlad Yasevich22061d82012-11-15 08:49:11 +00005915 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08005916 __be16 type = skb->protocol;
David Miller07d78362018-06-24 14:14:02 +09005917 struct list_head *gro_head;
David Millerd4546c22018-06-24 14:13:49 +09005918 struct sk_buff *pp = NULL;
Ben Hutchings5b252f02009-10-29 07:17:09 +00005919 enum gro_result ret;
David Millerd4546c22018-06-24 14:13:49 +09005920 int same_flow;
Eric Dumazeta50e2332014-03-29 21:28:21 -07005921 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08005922
David S. Millerb5cdae32017-04-18 15:36:58 -04005923 if (netif_elide_gro(skb->dev))
Herbert Xud565b0a2008-12-15 23:38:52 -08005924 goto normal;
5925
David Miller07d78362018-06-24 14:14:02 +09005926 gro_head = gro_list_prepare(napi, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00005927
Herbert Xud565b0a2008-12-15 23:38:52 -08005928 rcu_read_lock();
5929 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00005930 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08005931 continue;
5932
Herbert Xu86911732009-01-29 14:19:50 +00005933 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00005934 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005935 NAPI_GRO_CB(skb)->same_flow = 0;
Eric Dumazetd61d0722016-11-07 11:12:27 -08005936 NAPI_GRO_CB(skb)->flush = skb_is_gso(skb) || skb_has_frag_list(skb);
Herbert Xu5d38a072009-01-04 16:13:40 -08005937 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07005938 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02005939 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07005940 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04005941 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08005942 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005943
Tom Herbert662880f2014-08-27 21:26:56 -07005944 /* Setup for GRO checksum validation */
5945 switch (skb->ip_summed) {
5946 case CHECKSUM_COMPLETE:
5947 NAPI_GRO_CB(skb)->csum = skb->csum;
5948 NAPI_GRO_CB(skb)->csum_valid = 1;
5949 NAPI_GRO_CB(skb)->csum_cnt = 0;
5950 break;
5951 case CHECKSUM_UNNECESSARY:
5952 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
5953 NAPI_GRO_CB(skb)->csum_valid = 0;
5954 break;
5955 default:
5956 NAPI_GRO_CB(skb)->csum_cnt = 0;
5957 NAPI_GRO_CB(skb)->csum_valid = 0;
5958 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005959
Paolo Abeniaaa5d902018-12-14 11:51:58 +01005960 pp = INDIRECT_CALL_INET(ptype->callbacks.gro_receive,
5961 ipv6_gro_receive, inet_gro_receive,
5962 gro_head, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08005963 break;
5964 }
5965 rcu_read_unlock();
5966
5967 if (&ptype->list == head)
5968 goto normal;
5969
Masahiro Yamada45586c72020-02-03 17:37:45 -08005970 if (PTR_ERR(pp) == -EINPROGRESS) {
Steffen Klassert25393d32017-02-15 09:39:44 +01005971 ret = GRO_CONSUMED;
5972 goto ok;
5973 }
5974
Herbert Xu0da2afd52008-12-26 14:57:42 -08005975 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00005976 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08005977
Herbert Xud565b0a2008-12-15 23:38:52 -08005978 if (pp) {
David S. Miller992cba72018-07-31 15:27:56 -07005979 skb_list_del_init(pp);
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005980 napi_gro_complete(napi, pp);
Li RongQing6312fe72018-07-05 14:34:32 +08005981 napi->gro_hash[hash].count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08005982 }
5983
Herbert Xu0da2afd52008-12-26 14:57:42 -08005984 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08005985 goto ok;
5986
Eric Dumazet600adc12014-01-09 14:12:19 -08005987 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08005988 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08005989
Li RongQing6312fe72018-07-05 14:34:32 +08005990 if (unlikely(napi->gro_hash[hash].count >= MAX_GRO_SKBS)) {
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00005991 gro_flush_oldest(napi, gro_head);
Eric Dumazet600adc12014-01-09 14:12:19 -08005992 } else {
Li RongQing6312fe72018-07-05 14:34:32 +08005993 napi->gro_hash[hash].count++;
Eric Dumazet600adc12014-01-09 14:12:19 -08005994 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005995 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00005996 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07005997 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00005998 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
David Miller07d78362018-06-24 14:14:02 +09005999 list_add(&skb->list, gro_head);
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006000 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08006001
Herbert Xuad0f99042009-02-01 01:24:55 -08006002pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006003 grow = skb_gro_offset(skb) - skb_headlen(skb);
6004 if (grow > 0)
6005 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08006006ok:
Li RongQingd9f37d02018-07-13 14:41:36 +08006007 if (napi->gro_hash[hash].count) {
6008 if (!test_bit(hash, &napi->gro_bitmask))
6009 __set_bit(hash, &napi->gro_bitmask);
6010 } else if (test_bit(hash, &napi->gro_bitmask)) {
6011 __clear_bit(hash, &napi->gro_bitmask);
6012 }
6013
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006014 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006015
6016normal:
Herbert Xuad0f99042009-02-01 01:24:55 -08006017 ret = GRO_NORMAL;
6018 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08006019}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006020
Jerry Chubf5a7552014-01-07 10:23:19 -08006021struct packet_offload *gro_find_receive_by_type(__be16 type)
6022{
6023 struct list_head *offload_head = &offload_base;
6024 struct packet_offload *ptype;
6025
6026 list_for_each_entry_rcu(ptype, offload_head, list) {
6027 if (ptype->type != type || !ptype->callbacks.gro_receive)
6028 continue;
6029 return ptype;
6030 }
6031 return NULL;
6032}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006033EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08006034
6035struct packet_offload *gro_find_complete_by_type(__be16 type)
6036{
6037 struct list_head *offload_head = &offload_base;
6038 struct packet_offload *ptype;
6039
6040 list_for_each_entry_rcu(ptype, offload_head, list) {
6041 if (ptype->type != type || !ptype->callbacks.gro_complete)
6042 continue;
6043 return ptype;
6044 }
6045 return NULL;
6046}
Or Gerlitze27a2f82014-01-20 13:59:20 +02006047EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006048
Michal Kubečeke44699d2017-06-29 11:13:36 +02006049static void napi_skb_free_stolen_head(struct sk_buff *skb)
6050{
6051 skb_dst_drop(skb);
Florian Westphal174e2382019-09-26 20:37:05 +02006052 skb_ext_put(skb);
Michal Kubečeke44699d2017-06-29 11:13:36 +02006053 kmem_cache_free(skbuff_head_cache, skb);
6054}
6055
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006056static gro_result_t napi_skb_finish(struct napi_struct *napi,
6057 struct sk_buff *skb,
6058 gro_result_t ret)
Herbert Xu5d38a072009-01-04 16:13:40 -08006059{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006060 switch (ret) {
6061 case GRO_NORMAL:
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006062 gro_normal_one(napi, skb);
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006063 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006064
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006065 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08006066 kfree_skb(skb);
6067 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006068
Eric Dumazetdaa86542012-04-19 07:07:40 +00006069 case GRO_MERGED_FREE:
Michal Kubečeke44699d2017-06-29 11:13:36 +02006070 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6071 napi_skb_free_stolen_head(skb);
6072 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00006073 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00006074 break;
6075
Ben Hutchings5b252f02009-10-29 07:17:09 +00006076 case GRO_HELD:
6077 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006078 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006079 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08006080 }
6081
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006082 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006083}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006084
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006085gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006086{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006087 gro_result_t ret;
6088
Eric Dumazet93f93a42015-11-18 06:30:59 -08006089 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006090 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00006091
Eric Dumazeta50e2332014-03-29 21:28:21 -07006092 skb_gro_reset_offset(skb);
6093
Alexander Lobakin6570bc72019-10-14 11:00:33 +03006094 ret = napi_skb_finish(napi, skb, dev_gro_receive(napi, skb));
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006095 trace_napi_gro_receive_exit(ret);
6096
6097 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006098}
6099EXPORT_SYMBOL(napi_gro_receive);
6100
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00006101static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006102{
Eric Dumazet93a35f52014-10-23 06:30:30 -07006103 if (unlikely(skb->pfmemalloc)) {
6104 consume_skb(skb);
6105 return;
6106 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006107 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00006108 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
6109 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Michał Mirosławb18175242018-11-09 00:18:02 +01006110 __vlan_hwaccel_clear_tag(skb);
Herbert Xu66c46d72011-01-29 20:44:54 -08006111 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08006112 skb->skb_iif = 0;
Eric Dumazet33d9a2c2018-11-17 21:57:02 -08006113
6114 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
6115 skb->pkt_type = PACKET_HOST;
6116
Jerry Chuc3caf112014-07-14 15:54:46 -07006117 skb->encapsulation = 0;
6118 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07006119 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Florian Westphal174e2382019-09-26 20:37:05 +02006120 skb_ext_reset(skb);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006121
6122 napi->skb = skb;
6123}
Herbert Xu96e93ea2009-01-06 10:49:34 -08006124
Herbert Xu76620aa2009-04-16 02:02:07 -07006125struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08006126{
Herbert Xu5d38a072009-01-04 16:13:40 -08006127 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08006128
6129 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08006130 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08006131 if (skb) {
6132 napi->skb = skb;
6133 skb_mark_napi_id(skb, napi);
6134 }
Herbert Xu5d38a072009-01-04 16:13:40 -08006135 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08006136 return skb;
6137}
Herbert Xu76620aa2009-04-16 02:02:07 -07006138EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006139
Eric Dumazeta50e2332014-03-29 21:28:21 -07006140static gro_result_t napi_frags_finish(struct napi_struct *napi,
6141 struct sk_buff *skb,
6142 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006143{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006144 switch (ret) {
6145 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07006146 case GRO_HELD:
6147 __skb_push(skb, ETH_HLEN);
6148 skb->protocol = eth_type_trans(skb, skb->dev);
Edward Cree323ebb62019-08-06 14:53:55 +01006149 if (ret == GRO_NORMAL)
6150 gro_normal_one(napi, skb);
Herbert Xu86911732009-01-29 14:19:50 +00006151 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006152
6153 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006154 napi_reuse_skb(napi, skb);
6155 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00006156
Michal Kubečeke44699d2017-06-29 11:13:36 +02006157 case GRO_MERGED_FREE:
6158 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
6159 napi_skb_free_stolen_head(skb);
6160 else
6161 napi_reuse_skb(napi, skb);
6162 break;
6163
Ben Hutchings5b252f02009-10-29 07:17:09 +00006164 case GRO_MERGED:
Steffen Klassert25393d32017-02-15 09:39:44 +01006165 case GRO_CONSUMED:
Ben Hutchings5b252f02009-10-29 07:17:09 +00006166 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006167 }
6168
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006169 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006170}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00006171
Eric Dumazeta50e2332014-03-29 21:28:21 -07006172/* Upper GRO stack assumes network header starts at gro_offset=0
6173 * Drivers could call both napi_gro_frags() and napi_gro_receive()
6174 * We copy ethernet header into skb->data to have a common layout.
6175 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00006176static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08006177{
Herbert Xu76620aa2009-04-16 02:02:07 -07006178 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006179 const struct ethhdr *eth;
6180 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07006181
6182 napi->skb = NULL;
6183
Eric Dumazeta50e2332014-03-29 21:28:21 -07006184 skb_reset_mac_header(skb);
6185 skb_gro_reset_offset(skb);
6186
Eric Dumazeta50e2332014-03-29 21:28:21 -07006187 if (unlikely(skb_gro_header_hard(skb, hlen))) {
6188 eth = skb_gro_header_slow(skb, hlen, 0);
6189 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04006190 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
6191 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07006192 napi_reuse_skb(napi, skb);
6193 return NULL;
6194 }
6195 } else {
Eric Dumazeta4270d62019-05-29 15:36:10 -07006196 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07006197 gro_pull_from_frag0(skb, hlen);
6198 NAPI_GRO_CB(skb)->frag0 += hlen;
6199 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07006200 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07006201 __skb_pull(skb, hlen);
6202
6203 /*
6204 * This works because the only protocols we care about don't require
6205 * special handling.
6206 * We'll fix it up properly in napi_frags_finish()
6207 */
6208 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07006209
Herbert Xu76620aa2009-04-16 02:02:07 -07006210 return skb;
6211}
Herbert Xu76620aa2009-04-16 02:02:07 -07006212
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006213gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07006214{
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006215 gro_result_t ret;
Herbert Xu76620aa2009-04-16 02:02:07 -07006216 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08006217
6218 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07006219 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08006220
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006221 trace_napi_gro_frags_entry(skb);
6222
Geneviève Bastienb0e3f1b2018-11-27 12:52:39 -05006223 ret = napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
6224 trace_napi_gro_frags_exit(ret);
6225
6226 return ret;
Herbert Xu5d38a072009-01-04 16:13:40 -08006227}
6228EXPORT_SYMBOL(napi_gro_frags);
6229
Tom Herbert573e8fc2014-08-22 13:33:47 -07006230/* Compute the checksum from gro_offset and return the folded value
6231 * after adding in any pseudo checksum.
6232 */
6233__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
6234{
6235 __wsum wsum;
6236 __sum16 sum;
6237
6238 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
6239
6240 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
6241 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
Cong Wang14641932018-11-26 09:31:26 -08006242 /* See comments in __skb_checksum_complete(). */
Tom Herbert573e8fc2014-08-22 13:33:47 -07006243 if (likely(!sum)) {
6244 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
6245 !skb->csum_complete_sw)
Cong Wang7fe50ac2018-11-12 14:47:18 -08006246 netdev_rx_csum_fault(skb->dev, skb);
Tom Herbert573e8fc2014-08-22 13:33:47 -07006247 }
6248
6249 NAPI_GRO_CB(skb)->csum = wsum;
6250 NAPI_GRO_CB(skb)->csum_valid = 1;
6251
6252 return sum;
6253}
6254EXPORT_SYMBOL(__skb_gro_checksum_complete);
6255
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306256static void net_rps_send_ipi(struct softnet_data *remsd)
6257{
6258#ifdef CONFIG_RPS
6259 while (remsd) {
6260 struct softnet_data *next = remsd->rps_ipi_next;
6261
6262 if (cpu_online(remsd->cpu))
6263 smp_call_function_single_async(remsd->cpu, &remsd->csd);
6264 remsd = next;
6265 }
6266#endif
6267}
6268
Eric Dumazete326bed2010-04-22 00:22:45 -07006269/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08006270 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07006271 * Note: called with local irq disabled, but exits with local irq enabled.
6272 */
6273static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6274{
6275#ifdef CONFIG_RPS
6276 struct softnet_data *remsd = sd->rps_ipi_list;
6277
6278 if (remsd) {
6279 sd->rps_ipi_list = NULL;
6280
6281 local_irq_enable();
6282
6283 /* Send pending IPI's to kick RPS processing on remote cpus. */
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +05306284 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07006285 } else
6286#endif
6287 local_irq_enable();
6288}
6289
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006290static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6291{
6292#ifdef CONFIG_RPS
6293 return sd->rps_ipi_list != NULL;
6294#else
6295 return false;
6296#endif
6297}
6298
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006299static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006301 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006302 bool again = true;
6303 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304
Eric Dumazete326bed2010-04-22 00:22:45 -07006305 /* Check if we have pending ipi, its better to send them now,
6306 * not waiting net_rx_action() end.
6307 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006308 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07006309 local_irq_disable();
6310 net_rps_action_and_irq_enable(sd);
6311 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006312
Matthias Tafelmeier3d48b532016-12-29 21:37:21 +01006313 napi->weight = dev_rx_weight;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006314 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006316
Changli Gao6e7676c2010-04-27 15:07:33 -07006317 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03006318 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07006319 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03006320 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00006321 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006322 if (++work >= quota)
Tom Herbert76cc8b12010-05-20 18:37:59 +00006323 return work;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006324
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006327 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006328 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07006329 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006330 /*
6331 * Inline a custom version of __napi_complete().
6332 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07006333 * and NAPI_STATE_SCHED is the only possible flag set
6334 * on backlog.
6335 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006336 * and we dont need an smp_mb() memory barrier.
6337 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07006338 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006339 again = false;
6340 } else {
6341 skb_queue_splice_tail_init(&sd->input_pkt_queue,
6342 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07006343 }
6344 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02006345 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07006346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006348 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006349}
6350
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006351/**
6352 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006353 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006354 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006355 * The entry's receive function will be scheduled to run.
6356 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006357 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08006358void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006359{
6360 unsigned long flags;
6361
6362 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05006363 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006364 local_irq_restore(flags);
6365}
6366EXPORT_SYMBOL(__napi_schedule);
6367
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006368/**
Eric Dumazet39e6c822017-02-28 10:34:50 -08006369 * napi_schedule_prep - check if napi can be scheduled
6370 * @n: napi context
6371 *
6372 * Test if NAPI routine is already running, and if not mark
Jonathan Neuschäferee1a4c82020-09-05 20:32:18 +02006373 * it as running. This is used as a condition variable to
Eric Dumazet39e6c822017-02-28 10:34:50 -08006374 * insure only one NAPI poll instance runs. We also make
6375 * sure there is no pending NAPI disable.
6376 */
6377bool napi_schedule_prep(struct napi_struct *n)
6378{
6379 unsigned long val, new;
6380
6381 do {
6382 val = READ_ONCE(n->state);
6383 if (unlikely(val & NAPIF_STATE_DISABLE))
6384 return false;
6385 new = val | NAPIF_STATE_SCHED;
6386
6387 /* Sets STATE_MISSED bit if STATE_SCHED was already set
6388 * This was suggested by Alexander Duyck, as compiler
6389 * emits better code than :
6390 * if (val & NAPIF_STATE_SCHED)
6391 * new |= NAPIF_STATE_MISSED;
6392 */
6393 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6394 NAPIF_STATE_MISSED;
6395 } while (cmpxchg(&n->state, val, new) != val);
6396
6397 return !(val & NAPIF_STATE_SCHED);
6398}
6399EXPORT_SYMBOL(napi_schedule_prep);
6400
6401/**
Eric Dumazetbc9ad162014-10-28 18:05:13 -07006402 * __napi_schedule_irqoff - schedule for receive
6403 * @n: entry to schedule
6404 *
6405 * Variant of __napi_schedule() assuming hard irqs are masked
6406 */
6407void __napi_schedule_irqoff(struct napi_struct *n)
6408{
6409 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
6410}
6411EXPORT_SYMBOL(__napi_schedule_irqoff);
6412
Eric Dumazet364b6052016-11-15 10:15:13 -08006413bool napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08006414{
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006415 unsigned long flags, val, new, timeout = 0;
6416 bool ret = true;
Herbert Xud565b0a2008-12-15 23:38:52 -08006417
6418 /*
Eric Dumazet217f6972016-11-15 10:15:11 -08006419 * 1) Don't let napi dequeue from the cpu poll list
6420 * just in case its running on a different cpu.
6421 * 2) If we are busy polling, do nothing here, we have
6422 * the guarantee we will be called later.
Herbert Xud565b0a2008-12-15 23:38:52 -08006423 */
Eric Dumazet217f6972016-11-15 10:15:11 -08006424 if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6425 NAPIF_STATE_IN_BUSY_POLL)))
Eric Dumazet364b6052016-11-15 10:15:13 -08006426 return false;
Herbert Xud565b0a2008-12-15 23:38:52 -08006427
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006428 if (work_done) {
6429 if (n->gro_bitmask)
Eric Dumazet7e417a62020-04-22 09:13:28 -07006430 timeout = READ_ONCE(n->dev->gro_flush_timeout);
6431 n->defer_hard_irqs_count = READ_ONCE(n->dev->napi_defer_hard_irqs);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006432 }
6433 if (n->defer_hard_irqs_count > 0) {
6434 n->defer_hard_irqs_count--;
Eric Dumazet7e417a62020-04-22 09:13:28 -07006435 timeout = READ_ONCE(n->dev->gro_flush_timeout);
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006436 if (timeout)
6437 ret = false;
6438 }
6439 if (n->gro_bitmask) {
Paolo Abeni605108a2018-11-21 18:21:35 +01006440 /* When the NAPI instance uses a timeout and keeps postponing
6441 * it, we need to bound somehow the time packets are kept in
6442 * the GRO layer
6443 */
6444 napi_gro_flush(n, !!timeout);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006445 }
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006446
6447 gro_normal_list(n);
6448
Eric Dumazet02c16022017-02-04 15:25:02 -08006449 if (unlikely(!list_empty(&n->poll_list))) {
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006450 /* If n->poll_list is not empty, we need to mask irqs */
6451 local_irq_save(flags);
Eric Dumazet02c16022017-02-04 15:25:02 -08006452 list_del_init(&n->poll_list);
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006453 local_irq_restore(flags);
6454 }
Eric Dumazet39e6c822017-02-28 10:34:50 -08006455
6456 do {
6457 val = READ_ONCE(n->state);
6458
6459 WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6460
6461 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED);
6462
6463 /* If STATE_MISSED was set, leave STATE_SCHED set,
6464 * because we will call napi->poll() one more time.
6465 * This C code was suggested by Alexander Duyck to help gcc.
6466 */
6467 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6468 NAPIF_STATE_SCHED;
6469 } while (cmpxchg(&n->state, val, new) != val);
6470
6471 if (unlikely(val & NAPIF_STATE_MISSED)) {
6472 __napi_schedule(n);
6473 return false;
6474 }
6475
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006476 if (timeout)
6477 hrtimer_start(&n->timer, ns_to_ktime(timeout),
6478 HRTIMER_MODE_REL_PINNED);
6479 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08006480}
Eric Dumazet3b47d302014-11-06 21:09:44 -08006481EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08006482
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006483/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08006484static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006485{
6486 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
6487 struct napi_struct *napi;
6488
6489 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
6490 if (napi->napi_id == napi_id)
6491 return napi;
6492
6493 return NULL;
6494}
Eric Dumazet02d62e82015-11-18 06:30:52 -08006495
6496#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazet217f6972016-11-15 10:15:11 -08006497
Eric Dumazetce6aea92015-11-18 06:30:54 -08006498#define BUSY_POLL_BUDGET 8
Eric Dumazet217f6972016-11-15 10:15:11 -08006499
6500static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock)
6501{
6502 int rc;
6503
Eric Dumazet39e6c822017-02-28 10:34:50 -08006504 /* Busy polling means there is a high chance device driver hard irq
6505 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6506 * set in napi_schedule_prep().
6507 * Since we are about to call napi->poll() once more, we can safely
6508 * clear NAPI_STATE_MISSED.
6509 *
6510 * Note: x86 could use a single "lock and ..." instruction
6511 * to perform these two clear_bit()
6512 */
6513 clear_bit(NAPI_STATE_MISSED, &napi->state);
Eric Dumazet217f6972016-11-15 10:15:11 -08006514 clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6515
6516 local_bh_disable();
6517
6518 /* All we really want here is to re-enable device interrupts.
6519 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6520 */
6521 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Edward Cree323ebb62019-08-06 14:53:55 +01006522 /* We can't gro_normal_list() here, because napi->poll() might have
6523 * rearmed the napi (napi_complete_done()) in which case it could
6524 * already be running on another CPU.
6525 */
Jesper Dangaard Brouer1e223912017-08-25 15:04:32 +02006526 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazet217f6972016-11-15 10:15:11 -08006527 netpoll_poll_unlock(have_poll_lock);
Edward Cree323ebb62019-08-06 14:53:55 +01006528 if (rc == BUSY_POLL_BUDGET) {
6529 /* As the whole budget was spent, we still own the napi so can
6530 * safely handle the rx_list.
6531 */
6532 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006533 __napi_schedule(napi);
Edward Cree323ebb62019-08-06 14:53:55 +01006534 }
Eric Dumazet217f6972016-11-15 10:15:11 -08006535 local_bh_enable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006536}
6537
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006538void napi_busy_loop(unsigned int napi_id,
6539 bool (*loop_end)(void *, unsigned long),
6540 void *loop_end_arg)
Eric Dumazet02d62e82015-11-18 06:30:52 -08006541{
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006542 unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
Eric Dumazet217f6972016-11-15 10:15:11 -08006543 int (*napi_poll)(struct napi_struct *napi, int budget);
Eric Dumazet217f6972016-11-15 10:15:11 -08006544 void *have_poll_lock = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006545 struct napi_struct *napi;
Eric Dumazet217f6972016-11-15 10:15:11 -08006546
6547restart:
Eric Dumazet217f6972016-11-15 10:15:11 -08006548 napi_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006549
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006550 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006551
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006552 napi = napi_by_id(napi_id);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006553 if (!napi)
6554 goto out;
6555
Eric Dumazet217f6972016-11-15 10:15:11 -08006556 preempt_disable();
6557 for (;;) {
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006558 int work = 0;
6559
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006560 local_bh_disable();
Eric Dumazet217f6972016-11-15 10:15:11 -08006561 if (!napi_poll) {
6562 unsigned long val = READ_ONCE(napi->state);
6563
6564 /* If multiple threads are competing for this napi,
6565 * we avoid dirtying napi->state as much as we can.
6566 */
6567 if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6568 NAPIF_STATE_IN_BUSY_POLL))
6569 goto count;
6570 if (cmpxchg(&napi->state, val,
6571 val | NAPIF_STATE_IN_BUSY_POLL |
6572 NAPIF_STATE_SCHED) != val)
6573 goto count;
6574 have_poll_lock = netpoll_poll_lock(napi);
6575 napi_poll = napi->poll;
6576 }
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006577 work = napi_poll(napi, BUSY_POLL_BUDGET);
6578 trace_napi_poll(napi, work, BUSY_POLL_BUDGET);
Edward Cree323ebb62019-08-06 14:53:55 +01006579 gro_normal_list(napi);
Eric Dumazet217f6972016-11-15 10:15:11 -08006580count:
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006581 if (work > 0)
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006582 __NET_ADD_STATS(dev_net(napi->dev),
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006583 LINUX_MIB_BUSYPOLLRXPACKETS, work);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006584 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006585
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006586 if (!loop_end || loop_end(loop_end_arg, start_time))
Eric Dumazet217f6972016-11-15 10:15:11 -08006587 break;
Eric Dumazet02d62e82015-11-18 06:30:52 -08006588
Eric Dumazet217f6972016-11-15 10:15:11 -08006589 if (unlikely(need_resched())) {
6590 if (napi_poll)
6591 busy_poll_stop(napi, have_poll_lock);
6592 preempt_enable();
6593 rcu_read_unlock();
6594 cond_resched();
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006595 if (loop_end(loop_end_arg, start_time))
Alexander Duyck2b5cd0d2017-03-24 10:08:12 -07006596 return;
Eric Dumazet217f6972016-11-15 10:15:11 -08006597 goto restart;
6598 }
Linus Torvalds6cdf89b2016-12-12 10:48:02 -08006599 cpu_relax();
Eric Dumazet217f6972016-11-15 10:15:11 -08006600 }
6601 if (napi_poll)
6602 busy_poll_stop(napi, have_poll_lock);
6603 preempt_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006604out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08006605 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08006606}
Sridhar Samudrala7db6b042017-03-24 10:08:24 -07006607EXPORT_SYMBOL(napi_busy_loop);
Eric Dumazet02d62e82015-11-18 06:30:52 -08006608
6609#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006610
Eric Dumazet149d6ad2016-11-08 11:07:28 -08006611static void napi_hash_add(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006612{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006613 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006614 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006615
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006616 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006617
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006618 /* 0..NR_CPUS range is reserved for sender_cpu use */
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006619 do {
Alexander Duyck545cd5e2017-03-24 10:07:53 -07006620 if (unlikely(++napi_gen_id < MIN_NAPI_ID))
6621 napi_gen_id = MIN_NAPI_ID;
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006622 } while (napi_by_id(napi_gen_id));
6623 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006624
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006625 hlist_add_head_rcu(&napi->napi_hash_node,
6626 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006627
Eric Dumazet52bd2d62015-11-18 06:30:50 -08006628 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006629}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006630
6631/* Warning : caller is responsible to make sure rcu grace period
6632 * is respected before freeing memory containing @napi
6633 */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006634static void napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006635{
6636 spin_lock(&napi_hash_lock);
6637
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006638 hlist_del_init_rcu(&napi->napi_hash_node);
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006639
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006640 spin_unlock(&napi_hash_lock);
6641}
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03006642
Eric Dumazet3b47d302014-11-06 21:09:44 -08006643static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
6644{
6645 struct napi_struct *napi;
6646
6647 napi = container_of(timer, struct napi_struct, timer);
Eric Dumazet39e6c822017-02-28 10:34:50 -08006648
6649 /* Note : we use a relaxed variant of napi_schedule_prep() not setting
6650 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
6651 */
Eric Dumazet6f8b12d2020-04-22 09:13:27 -07006652 if (!napi_disable_pending(napi) &&
Eric Dumazet39e6c822017-02-28 10:34:50 -08006653 !test_and_set_bit(NAPI_STATE_SCHED, &napi->state))
6654 __napi_schedule_irqoff(napi);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006655
6656 return HRTIMER_NORESTART;
6657}
6658
David S. Miller7c4ec742018-07-20 23:37:55 -07006659static void init_gro_hash(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006660{
David Miller07d78362018-06-24 14:14:02 +09006661 int i;
6662
Li RongQing6312fe72018-07-05 14:34:32 +08006663 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6664 INIT_LIST_HEAD(&napi->gro_hash[i].list);
6665 napi->gro_hash[i].count = 0;
6666 }
David S. Miller7c4ec742018-07-20 23:37:55 -07006667 napi->gro_bitmask = 0;
6668}
6669
6670void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
6671 int (*poll)(struct napi_struct *, int), int weight)
6672{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006673 if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
6674 return;
6675
David S. Miller7c4ec742018-07-20 23:37:55 -07006676 INIT_LIST_HEAD(&napi->poll_list);
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006677 INIT_HLIST_NODE(&napi->napi_hash_node);
David S. Miller7c4ec742018-07-20 23:37:55 -07006678 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
6679 napi->timer.function = napi_watchdog;
6680 init_gro_hash(napi);
Herbert Xu5d38a072009-01-04 16:13:40 -08006681 napi->skb = NULL;
Edward Cree323ebb62019-08-06 14:53:55 +01006682 INIT_LIST_HEAD(&napi->rx_list);
6683 napi->rx_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006684 napi->poll = poll;
Eric Dumazet82dc3c63c2013-03-05 15:57:22 +00006685 if (weight > NAPI_POLL_WEIGHT)
Qian Caibf29e9e2018-12-01 21:11:19 -05006686 netdev_err_once(dev, "%s() called with weight %d\n", __func__,
6687 weight);
Herbert Xud565b0a2008-12-15 23:38:52 -08006688 napi->weight = weight;
Herbert Xud565b0a2008-12-15 23:38:52 -08006689 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08006690#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08006691 napi->poll_owner = -1;
6692#endif
6693 set_bit(NAPI_STATE_SCHED, &napi->state);
Jakub Kicinski96e97bc2020-08-26 12:40:06 -07006694 set_bit(NAPI_STATE_NPSVC, &napi->state);
6695 list_add_rcu(&napi->dev_list, &dev->napi_list);
Eric Dumazet93d05d42015-11-18 06:31:03 -08006696 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006697}
6698EXPORT_SYMBOL(netif_napi_add);
6699
Eric Dumazet3b47d302014-11-06 21:09:44 -08006700void napi_disable(struct napi_struct *n)
6701{
6702 might_sleep();
6703 set_bit(NAPI_STATE_DISABLE, &n->state);
6704
6705 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
6706 msleep(1);
Neil Horman2d8bff1262015-09-23 14:57:58 -04006707 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
6708 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08006709
6710 hrtimer_cancel(&n->timer);
6711
6712 clear_bit(NAPI_STATE_DISABLE, &n->state);
6713}
6714EXPORT_SYMBOL(napi_disable);
6715
David Miller07d78362018-06-24 14:14:02 +09006716static void flush_gro_hash(struct napi_struct *napi)
David Millerd4546c22018-06-24 14:13:49 +09006717{
David Miller07d78362018-06-24 14:14:02 +09006718 int i;
David Millerd4546c22018-06-24 14:13:49 +09006719
David Miller07d78362018-06-24 14:14:02 +09006720 for (i = 0; i < GRO_HASH_BUCKETS; i++) {
6721 struct sk_buff *skb, *n;
6722
Li RongQing6312fe72018-07-05 14:34:32 +08006723 list_for_each_entry_safe(skb, n, &napi->gro_hash[i].list, list)
David Miller07d78362018-06-24 14:14:02 +09006724 kfree_skb(skb);
Li RongQing6312fe72018-07-05 14:34:32 +08006725 napi->gro_hash[i].count = 0;
David Miller07d78362018-06-24 14:14:02 +09006726 }
David Millerd4546c22018-06-24 14:13:49 +09006727}
6728
Eric Dumazet93d05d42015-11-18 06:31:03 -08006729/* Must be called in process context */
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006730void __netif_napi_del(struct napi_struct *napi)
Herbert Xud565b0a2008-12-15 23:38:52 -08006731{
Jakub Kicinski4d092dd2020-09-09 10:37:52 -07006732 if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
6733 return;
6734
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006735 napi_hash_del(napi);
Jakub Kicinski5251ef82020-09-09 10:37:53 -07006736 list_del_rcu(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07006737 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08006738
David Miller07d78362018-06-24 14:14:02 +09006739 flush_gro_hash(napi);
Li RongQingd9f37d02018-07-13 14:41:36 +08006740 napi->gro_bitmask = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08006741}
Jakub Kicinski5198d5452020-09-09 10:37:51 -07006742EXPORT_SYMBOL(__netif_napi_del);
Herbert Xud565b0a2008-12-15 23:38:52 -08006743
Herbert Xu726ce702014-12-21 07:16:21 +11006744static int napi_poll(struct napi_struct *n, struct list_head *repoll)
6745{
6746 void *have;
6747 int work, weight;
6748
6749 list_del_init(&n->poll_list);
6750
6751 have = netpoll_poll_lock(n);
6752
6753 weight = n->weight;
6754
6755 /* This NAPI_STATE_SCHED test is for avoiding a race
6756 * with netpoll's poll_napi(). Only the entity which
6757 * obtains the lock and sees NAPI_STATE_SCHED set will
6758 * actually make the ->poll() call. Therefore we avoid
6759 * accidentally calling ->poll() when NAPI is not scheduled.
6760 */
6761 work = 0;
6762 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
6763 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02006764 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006765 }
6766
Eric Dumazet427d5832020-06-17 09:40:51 -07006767 if (unlikely(work > weight))
6768 pr_err_once("NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
6769 n->poll, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11006770
6771 if (likely(work < weight))
6772 goto out_unlock;
6773
6774 /* Drivers must not modify the NAPI state if they
6775 * consume the entire weight. In such cases this code
6776 * still "owns" the NAPI instance and therefore can
6777 * move the instance around on the list at-will.
6778 */
6779 if (unlikely(napi_disable_pending(n))) {
6780 napi_complete(n);
6781 goto out_unlock;
6782 }
6783
Li RongQingd9f37d02018-07-13 14:41:36 +08006784 if (n->gro_bitmask) {
Herbert Xu726ce702014-12-21 07:16:21 +11006785 /* flush too old packets
6786 * If HZ < 1000, flush all packets.
6787 */
6788 napi_gro_flush(n, HZ >= 1000);
6789 }
6790
Maxim Mikityanskiyc8079432020-01-21 15:09:40 +00006791 gro_normal_list(n);
6792
Herbert Xu001ce542014-12-21 07:16:22 +11006793 /* Some drivers may have called napi_schedule
6794 * prior to exhausting their budget.
6795 */
6796 if (unlikely(!list_empty(&n->poll_list))) {
6797 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
6798 n->dev ? n->dev->name : "backlog");
6799 goto out_unlock;
6800 }
6801
Herbert Xu726ce702014-12-21 07:16:21 +11006802 list_add_tail(&n->poll_list, repoll);
6803
6804out_unlock:
6805 netpoll_poll_unlock(have);
6806
6807 return work;
6808}
6809
Emese Revfy0766f782016-06-20 20:42:34 +02006810static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006811{
Christoph Lameter903ceff2014-08-17 12:30:35 -05006812 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Matthew Whitehead7acf8a12017-04-19 12:37:10 -04006813 unsigned long time_limit = jiffies +
6814 usecs_to_jiffies(netdev_budget_usecs);
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07006815 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006816 LIST_HEAD(list);
6817 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07006818
Linus Torvalds1da177e2005-04-16 15:20:36 -07006819 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006820 list_splice_init(&sd->poll_list, &list);
6821 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006822
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006823 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006824 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006825
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006826 if (list_empty(&list)) {
6827 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006828 goto out;
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006829 break;
6830 }
6831
Herbert Xu6bd373e2014-12-21 07:16:24 +11006832 n = list_first_entry(&list, struct napi_struct, poll_list);
6833 budget -= napi_poll(n, &repoll);
6834
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006835 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08006836 * Allow this to run for 2 jiffies since which will allow
6837 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07006838 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11006839 if (unlikely(budget <= 0 ||
6840 time_after_eq(jiffies, time_limit))) {
6841 sd->time_squeeze++;
6842 break;
6843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006845
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08006846 local_irq_disable();
6847
6848 list_splice_tail_init(&sd->poll_list, &list);
6849 list_splice_tail(&repoll, &list);
6850 list_splice(&list, &sd->poll_list);
6851 if (!list_empty(&sd->poll_list))
6852 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
6853
Eric Dumazete326bed2010-04-22 00:22:45 -07006854 net_rps_action_and_irq_enable(sd);
Eric Dumazetf52dffe2016-11-23 08:44:56 -08006855out:
6856 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006857}
6858
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006859struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006860 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006861
6862 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006863 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006864
Taehee Yoo32b6d342019-10-21 18:47:56 +00006865 /* lookup ignore flag */
6866 bool ignore;
6867
Veaceslav Falico5d261912013-08-28 23:25:05 +02006868 /* counter for the number of times this device was added to us */
6869 u16 ref_nr;
6870
Veaceslav Falico402dae92013-09-25 09:20:09 +02006871 /* private field for the users */
6872 void *private;
6873
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006874 struct list_head list;
6875 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006876};
6877
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006878static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006879 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006880{
Veaceslav Falico5d261912013-08-28 23:25:05 +02006881 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006882
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006883 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006884 if (adj->dev == adj_dev)
6885 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006886 }
6887 return NULL;
6888}
6889
Taehee Yooeff74232020-09-25 18:13:12 +00006890static int ____netdev_has_upper_dev(struct net_device *upper_dev,
6891 struct netdev_nested_priv *priv)
David Ahernf1170fd2016-10-17 19:15:51 -07006892{
Taehee Yooeff74232020-09-25 18:13:12 +00006893 struct net_device *dev = (struct net_device *)priv->data;
David Ahernf1170fd2016-10-17 19:15:51 -07006894
6895 return upper_dev == dev;
6896}
6897
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006898/**
6899 * netdev_has_upper_dev - Check if device is linked to an upper device
6900 * @dev: device
6901 * @upper_dev: upper device to check
6902 *
6903 * Find out if a device is linked to specified upper device and return true
6904 * in case it is. Note that this checks only immediate upper device,
6905 * not through a complete stack of devices. The caller must hold the RTNL lock.
6906 */
6907bool netdev_has_upper_dev(struct net_device *dev,
6908 struct net_device *upper_dev)
6909{
Taehee Yooeff74232020-09-25 18:13:12 +00006910 struct netdev_nested_priv priv = {
6911 .data = (void *)upper_dev,
6912 };
6913
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006914 ASSERT_RTNL();
6915
Taehee Yoo32b6d342019-10-21 18:47:56 +00006916 return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00006917 &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006918}
6919EXPORT_SYMBOL(netdev_has_upper_dev);
6920
6921/**
David Ahern1a3f0602016-10-17 19:15:44 -07006922 * netdev_has_upper_dev_all - Check if device is linked to an upper device
6923 * @dev: device
6924 * @upper_dev: upper device to check
6925 *
6926 * Find out if a device is linked to specified upper device and return true
6927 * in case it is. Note that this checks the entire upper device chain.
6928 * The caller must hold rcu lock.
6929 */
6930
David Ahern1a3f0602016-10-17 19:15:44 -07006931bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
6932 struct net_device *upper_dev)
6933{
Taehee Yooeff74232020-09-25 18:13:12 +00006934 struct netdev_nested_priv priv = {
6935 .data = (void *)upper_dev,
6936 };
6937
Taehee Yoo32b6d342019-10-21 18:47:56 +00006938 return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00006939 &priv);
David Ahern1a3f0602016-10-17 19:15:44 -07006940}
6941EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
6942
6943/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006944 * netdev_has_any_upper_dev - Check if device is linked to some device
6945 * @dev: device
6946 *
6947 * Find out if a device is linked to an upper device and return true in case
6948 * it is. The caller must hold the RTNL lock.
6949 */
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006950bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006951{
6952 ASSERT_RTNL();
6953
David Ahernf1170fd2016-10-17 19:15:51 -07006954 return !list_empty(&dev->adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006955}
Ido Schimmel25cc72a2017-09-01 10:52:31 +02006956EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006957
6958/**
6959 * netdev_master_upper_dev_get - Get master upper device
6960 * @dev: device
6961 *
6962 * Find a master upper device and return pointer to it or NULL in case
6963 * it's not there. The caller must hold the RTNL lock.
6964 */
6965struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
6966{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006967 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006968
6969 ASSERT_RTNL();
6970
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006971 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006972 return NULL;
6973
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006974 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02006975 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006976 if (likely(upper->master))
6977 return upper->dev;
6978 return NULL;
6979}
6980EXPORT_SYMBOL(netdev_master_upper_dev_get);
6981
Taehee Yoo32b6d342019-10-21 18:47:56 +00006982static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
6983{
6984 struct netdev_adjacent *upper;
6985
6986 ASSERT_RTNL();
6987
6988 if (list_empty(&dev->adj_list.upper))
6989 return NULL;
6990
6991 upper = list_first_entry(&dev->adj_list.upper,
6992 struct netdev_adjacent, list);
6993 if (likely(upper->master) && !upper->ignore)
6994 return upper->dev;
6995 return NULL;
6996}
6997
David Ahern0f524a82016-10-17 19:15:52 -07006998/**
6999 * netdev_has_any_lower_dev - Check if device is linked to some device
7000 * @dev: device
7001 *
7002 * Find out if a device is linked to a lower device and return true in case
7003 * it is. The caller must hold the RTNL lock.
7004 */
7005static bool netdev_has_any_lower_dev(struct net_device *dev)
7006{
7007 ASSERT_RTNL();
7008
7009 return !list_empty(&dev->adj_list.lower);
7010}
7011
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02007012void *netdev_adjacent_get_private(struct list_head *adj_list)
7013{
7014 struct netdev_adjacent *adj;
7015
7016 adj = list_entry(adj_list, struct netdev_adjacent, list);
7017
7018 return adj->private;
7019}
7020EXPORT_SYMBOL(netdev_adjacent_get_private);
7021
Veaceslav Falico31088a12013-09-25 09:20:12 +02007022/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04007023 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
7024 * @dev: device
7025 * @iter: list_head ** of the current position
7026 *
7027 * Gets the next device from the dev's upper list, starting from iter
7028 * position. The caller must hold RCU read lock.
7029 */
7030struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
7031 struct list_head **iter)
7032{
7033 struct netdev_adjacent *upper;
7034
7035 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7036
7037 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7038
7039 if (&upper->list == &dev->adj_list.upper)
7040 return NULL;
7041
7042 *iter = &upper->list;
7043
7044 return upper->dev;
7045}
7046EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
7047
Taehee Yoo32b6d342019-10-21 18:47:56 +00007048static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
7049 struct list_head **iter,
7050 bool *ignore)
Taehee Yoo5343da42019-10-21 18:47:50 +00007051{
7052 struct netdev_adjacent *upper;
7053
7054 upper = list_entry((*iter)->next, struct netdev_adjacent, list);
7055
7056 if (&upper->list == &dev->adj_list.upper)
7057 return NULL;
7058
7059 *iter = &upper->list;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007060 *ignore = upper->ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007061
7062 return upper->dev;
7063}
7064
David Ahern1a3f0602016-10-17 19:15:44 -07007065static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
7066 struct list_head **iter)
7067{
7068 struct netdev_adjacent *upper;
7069
7070 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
7071
7072 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7073
7074 if (&upper->list == &dev->adj_list.upper)
7075 return NULL;
7076
7077 *iter = &upper->list;
7078
7079 return upper->dev;
7080}
7081
Taehee Yoo32b6d342019-10-21 18:47:56 +00007082static int __netdev_walk_all_upper_dev(struct net_device *dev,
7083 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007084 struct netdev_nested_priv *priv),
7085 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007086{
7087 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7088 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7089 int ret, cur = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007090 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007091
7092 now = dev;
7093 iter = &dev->adj_list.upper;
7094
7095 while (1) {
7096 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007097 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007098 if (ret)
7099 return ret;
7100 }
7101
7102 next = NULL;
7103 while (1) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007104 udev = __netdev_next_upper_dev(now, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007105 if (!udev)
7106 break;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007107 if (ignore)
7108 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007109
7110 next = udev;
7111 niter = &udev->adj_list.upper;
7112 dev_stack[cur] = now;
7113 iter_stack[cur++] = iter;
7114 break;
7115 }
7116
7117 if (!next) {
7118 if (!cur)
7119 return 0;
7120 next = dev_stack[--cur];
7121 niter = iter_stack[cur];
7122 }
7123
7124 now = next;
7125 iter = niter;
7126 }
7127
7128 return 0;
7129}
7130
David Ahern1a3f0602016-10-17 19:15:44 -07007131int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
7132 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007133 struct netdev_nested_priv *priv),
7134 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007135{
Taehee Yoo5343da42019-10-21 18:47:50 +00007136 struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7137 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7138 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007139
Taehee Yoo5343da42019-10-21 18:47:50 +00007140 now = dev;
7141 iter = &dev->adj_list.upper;
David Ahern1a3f0602016-10-17 19:15:44 -07007142
Taehee Yoo5343da42019-10-21 18:47:50 +00007143 while (1) {
7144 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007145 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007146 if (ret)
7147 return ret;
7148 }
7149
7150 next = NULL;
7151 while (1) {
7152 udev = netdev_next_upper_dev_rcu(now, &iter);
7153 if (!udev)
7154 break;
7155
7156 next = udev;
7157 niter = &udev->adj_list.upper;
7158 dev_stack[cur] = now;
7159 iter_stack[cur++] = iter;
7160 break;
7161 }
7162
7163 if (!next) {
7164 if (!cur)
7165 return 0;
7166 next = dev_stack[--cur];
7167 niter = iter_stack[cur];
7168 }
7169
7170 now = next;
7171 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007172 }
7173
7174 return 0;
7175}
7176EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
7177
Taehee Yoo32b6d342019-10-21 18:47:56 +00007178static bool __netdev_has_upper_dev(struct net_device *dev,
7179 struct net_device *upper_dev)
7180{
Taehee Yooeff74232020-09-25 18:13:12 +00007181 struct netdev_nested_priv priv = {
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007182 .flags = 0,
Taehee Yooeff74232020-09-25 18:13:12 +00007183 .data = (void *)upper_dev,
7184 };
7185
Taehee Yoo32b6d342019-10-21 18:47:56 +00007186 ASSERT_RTNL();
7187
7188 return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007189 &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007190}
7191
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007192/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02007193 * netdev_lower_get_next_private - Get the next ->private from the
7194 * lower neighbour list
7195 * @dev: device
7196 * @iter: list_head ** of the current position
7197 *
7198 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7199 * list, starting from iter position. The caller must hold either hold the
7200 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007201 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02007202 */
7203void *netdev_lower_get_next_private(struct net_device *dev,
7204 struct list_head **iter)
7205{
7206 struct netdev_adjacent *lower;
7207
7208 lower = list_entry(*iter, struct netdev_adjacent, list);
7209
7210 if (&lower->list == &dev->adj_list.lower)
7211 return NULL;
7212
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007213 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007214
7215 return lower->private;
7216}
7217EXPORT_SYMBOL(netdev_lower_get_next_private);
7218
7219/**
7220 * netdev_lower_get_next_private_rcu - Get the next ->private from the
7221 * lower neighbour list, RCU
7222 * variant
7223 * @dev: device
7224 * @iter: list_head ** of the current position
7225 *
7226 * Gets the next netdev_adjacent->private from the dev's lower neighbour
7227 * list, starting from iter position. The caller must hold RCU read lock.
7228 */
7229void *netdev_lower_get_next_private_rcu(struct net_device *dev,
7230 struct list_head **iter)
7231{
7232 struct netdev_adjacent *lower;
7233
7234 WARN_ON_ONCE(!rcu_read_lock_held());
7235
7236 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7237
7238 if (&lower->list == &dev->adj_list.lower)
7239 return NULL;
7240
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02007241 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02007242
7243 return lower->private;
7244}
7245EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
7246
7247/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007248 * netdev_lower_get_next - Get the next device from the lower neighbour
7249 * list
7250 * @dev: device
7251 * @iter: list_head ** of the current position
7252 *
7253 * Gets the next netdev_adjacent from the dev's lower neighbour
7254 * list, starting from iter position. The caller must hold RTNL lock or
7255 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00007256 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007257 */
7258void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
7259{
7260 struct netdev_adjacent *lower;
7261
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007262 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007263
7264 if (&lower->list == &dev->adj_list.lower)
7265 return NULL;
7266
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01007267 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04007268
7269 return lower->dev;
7270}
7271EXPORT_SYMBOL(netdev_lower_get_next);
7272
David Ahern1a3f0602016-10-17 19:15:44 -07007273static struct net_device *netdev_next_lower_dev(struct net_device *dev,
7274 struct list_head **iter)
7275{
7276 struct netdev_adjacent *lower;
7277
David Ahern46b5ab12016-10-26 13:21:33 -07007278 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
David Ahern1a3f0602016-10-17 19:15:44 -07007279
7280 if (&lower->list == &dev->adj_list.lower)
7281 return NULL;
7282
David Ahern46b5ab12016-10-26 13:21:33 -07007283 *iter = &lower->list;
David Ahern1a3f0602016-10-17 19:15:44 -07007284
7285 return lower->dev;
7286}
7287
Taehee Yoo32b6d342019-10-21 18:47:56 +00007288static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
7289 struct list_head **iter,
7290 bool *ignore)
7291{
7292 struct netdev_adjacent *lower;
7293
7294 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
7295
7296 if (&lower->list == &dev->adj_list.lower)
7297 return NULL;
7298
7299 *iter = &lower->list;
7300 *ignore = lower->ignore;
7301
7302 return lower->dev;
7303}
7304
David Ahern1a3f0602016-10-17 19:15:44 -07007305int netdev_walk_all_lower_dev(struct net_device *dev,
7306 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007307 struct netdev_nested_priv *priv),
7308 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007309{
Taehee Yoo5343da42019-10-21 18:47:50 +00007310 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7311 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7312 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007313
Taehee Yoo5343da42019-10-21 18:47:50 +00007314 now = dev;
7315 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007316
Taehee Yoo5343da42019-10-21 18:47:50 +00007317 while (1) {
7318 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007319 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007320 if (ret)
7321 return ret;
7322 }
7323
7324 next = NULL;
7325 while (1) {
7326 ldev = netdev_next_lower_dev(now, &iter);
7327 if (!ldev)
7328 break;
7329
7330 next = ldev;
7331 niter = &ldev->adj_list.lower;
7332 dev_stack[cur] = now;
7333 iter_stack[cur++] = iter;
7334 break;
7335 }
7336
7337 if (!next) {
7338 if (!cur)
7339 return 0;
7340 next = dev_stack[--cur];
7341 niter = iter_stack[cur];
7342 }
7343
7344 now = next;
7345 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007346 }
7347
7348 return 0;
7349}
7350EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
7351
Taehee Yoo32b6d342019-10-21 18:47:56 +00007352static int __netdev_walk_all_lower_dev(struct net_device *dev,
7353 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007354 struct netdev_nested_priv *priv),
7355 struct netdev_nested_priv *priv)
Taehee Yoo32b6d342019-10-21 18:47:56 +00007356{
7357 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7358 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7359 int ret, cur = 0;
7360 bool ignore;
7361
7362 now = dev;
7363 iter = &dev->adj_list.lower;
7364
7365 while (1) {
7366 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007367 ret = fn(now, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007368 if (ret)
7369 return ret;
7370 }
7371
7372 next = NULL;
7373 while (1) {
7374 ldev = __netdev_next_lower_dev(now, &iter, &ignore);
7375 if (!ldev)
7376 break;
7377 if (ignore)
7378 continue;
7379
7380 next = ldev;
7381 niter = &ldev->adj_list.lower;
7382 dev_stack[cur] = now;
7383 iter_stack[cur++] = iter;
7384 break;
7385 }
7386
7387 if (!next) {
7388 if (!cur)
7389 return 0;
7390 next = dev_stack[--cur];
7391 niter = iter_stack[cur];
7392 }
7393
7394 now = next;
7395 iter = niter;
7396 }
7397
7398 return 0;
7399}
7400
Taehee Yoo7151aff2020-02-15 10:50:21 +00007401struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
7402 struct list_head **iter)
David Ahern1a3f0602016-10-17 19:15:44 -07007403{
7404 struct netdev_adjacent *lower;
7405
7406 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
7407 if (&lower->list == &dev->adj_list.lower)
7408 return NULL;
7409
7410 *iter = &lower->list;
7411
7412 return lower->dev;
7413}
Taehee Yoo7151aff2020-02-15 10:50:21 +00007414EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
David Ahern1a3f0602016-10-17 19:15:44 -07007415
Taehee Yoo5343da42019-10-21 18:47:50 +00007416static u8 __netdev_upper_depth(struct net_device *dev)
7417{
7418 struct net_device *udev;
7419 struct list_head *iter;
7420 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007421 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007422
7423 for (iter = &dev->adj_list.upper,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007424 udev = __netdev_next_upper_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007425 udev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007426 udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
7427 if (ignore)
7428 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007429 if (max_depth < udev->upper_level)
7430 max_depth = udev->upper_level;
7431 }
7432
7433 return max_depth;
7434}
7435
7436static u8 __netdev_lower_depth(struct net_device *dev)
7437{
7438 struct net_device *ldev;
7439 struct list_head *iter;
7440 u8 max_depth = 0;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007441 bool ignore;
Taehee Yoo5343da42019-10-21 18:47:50 +00007442
7443 for (iter = &dev->adj_list.lower,
Taehee Yoo32b6d342019-10-21 18:47:56 +00007444 ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
Taehee Yoo5343da42019-10-21 18:47:50 +00007445 ldev;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007446 ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
7447 if (ignore)
7448 continue;
Taehee Yoo5343da42019-10-21 18:47:50 +00007449 if (max_depth < ldev->lower_level)
7450 max_depth = ldev->lower_level;
7451 }
7452
7453 return max_depth;
7454}
7455
Taehee Yooeff74232020-09-25 18:13:12 +00007456static int __netdev_update_upper_level(struct net_device *dev,
7457 struct netdev_nested_priv *__unused)
Taehee Yoo5343da42019-10-21 18:47:50 +00007458{
7459 dev->upper_level = __netdev_upper_depth(dev) + 1;
7460 return 0;
7461}
7462
Taehee Yooeff74232020-09-25 18:13:12 +00007463static int __netdev_update_lower_level(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007464 struct netdev_nested_priv *priv)
Taehee Yoo5343da42019-10-21 18:47:50 +00007465{
7466 dev->lower_level = __netdev_lower_depth(dev) + 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007467
7468#ifdef CONFIG_LOCKDEP
7469 if (!priv)
7470 return 0;
7471
7472 if (priv->flags & NESTED_SYNC_IMM)
7473 dev->nested_level = dev->lower_level - 1;
7474 if (priv->flags & NESTED_SYNC_TODO)
7475 net_unlink_todo(dev);
7476#endif
Taehee Yoo5343da42019-10-21 18:47:50 +00007477 return 0;
7478}
7479
David Ahern1a3f0602016-10-17 19:15:44 -07007480int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
7481 int (*fn)(struct net_device *dev,
Taehee Yooeff74232020-09-25 18:13:12 +00007482 struct netdev_nested_priv *priv),
7483 struct netdev_nested_priv *priv)
David Ahern1a3f0602016-10-17 19:15:44 -07007484{
Taehee Yoo5343da42019-10-21 18:47:50 +00007485 struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
7486 struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
7487 int ret, cur = 0;
David Ahern1a3f0602016-10-17 19:15:44 -07007488
Taehee Yoo5343da42019-10-21 18:47:50 +00007489 now = dev;
7490 iter = &dev->adj_list.lower;
David Ahern1a3f0602016-10-17 19:15:44 -07007491
Taehee Yoo5343da42019-10-21 18:47:50 +00007492 while (1) {
7493 if (now != dev) {
Taehee Yooeff74232020-09-25 18:13:12 +00007494 ret = fn(now, priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007495 if (ret)
7496 return ret;
7497 }
7498
7499 next = NULL;
7500 while (1) {
7501 ldev = netdev_next_lower_dev_rcu(now, &iter);
7502 if (!ldev)
7503 break;
7504
7505 next = ldev;
7506 niter = &ldev->adj_list.lower;
7507 dev_stack[cur] = now;
7508 iter_stack[cur++] = iter;
7509 break;
7510 }
7511
7512 if (!next) {
7513 if (!cur)
7514 return 0;
7515 next = dev_stack[--cur];
7516 niter = iter_stack[cur];
7517 }
7518
7519 now = next;
7520 iter = niter;
David Ahern1a3f0602016-10-17 19:15:44 -07007521 }
7522
7523 return 0;
7524}
7525EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
7526
Jiri Pirko7ce856a2016-07-04 08:23:12 +02007527/**
dingtianhonge001bfa2013-12-13 10:19:55 +08007528 * netdev_lower_get_first_private_rcu - Get the first ->private from the
7529 * lower neighbour list, RCU
7530 * variant
7531 * @dev: device
7532 *
7533 * Gets the first netdev_adjacent->private from the dev's lower neighbour
7534 * list. The caller must hold RCU read lock.
7535 */
7536void *netdev_lower_get_first_private_rcu(struct net_device *dev)
7537{
7538 struct netdev_adjacent *lower;
7539
7540 lower = list_first_or_null_rcu(&dev->adj_list.lower,
7541 struct netdev_adjacent, list);
7542 if (lower)
7543 return lower->private;
7544 return NULL;
7545}
7546EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
7547
7548/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007549 * netdev_master_upper_dev_get_rcu - Get master upper device
7550 * @dev: device
7551 *
7552 * Find a master upper device and return pointer to it or NULL in case
7553 * it's not there. The caller must hold the RCU read lock.
7554 */
7555struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
7556{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007557 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007558
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007559 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02007560 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007561 if (upper && likely(upper->master))
7562 return upper->dev;
7563 return NULL;
7564}
7565EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
7566
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307567static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007568 struct net_device *adj_dev,
7569 struct list_head *dev_list)
7570{
7571 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007572
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007573 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7574 "upper_%s" : "lower_%s", adj_dev->name);
7575 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
7576 linkname);
7577}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05307578static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007579 char *name,
7580 struct list_head *dev_list)
7581{
7582 char linkname[IFNAMSIZ+7];
tchardingf4563a72017-02-09 17:56:07 +11007583
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007584 sprintf(linkname, dev_list == &dev->adj_list.upper ?
7585 "upper_%s" : "lower_%s", name);
7586 sysfs_remove_link(&(dev->dev.kobj), linkname);
7587}
7588
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007589static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
7590 struct net_device *adj_dev,
7591 struct list_head *dev_list)
7592{
7593 return (dev_list == &dev->adj_list.upper ||
7594 dev_list == &dev->adj_list.lower) &&
7595 net_eq(dev_net(dev), dev_net(adj_dev));
7596}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007597
Veaceslav Falico5d261912013-08-28 23:25:05 +02007598static int __netdev_adjacent_dev_insert(struct net_device *dev,
7599 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02007600 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007601 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007602{
7603 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007604 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007605
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007606 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007607
7608 if (adj) {
David Ahern790510d2016-10-17 19:15:43 -07007609 adj->ref_nr += 1;
David Ahern67b62f92016-10-17 19:15:53 -07007610 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
7611 dev->name, adj_dev->name, adj->ref_nr);
7612
Veaceslav Falico5d261912013-08-28 23:25:05 +02007613 return 0;
7614 }
7615
7616 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
7617 if (!adj)
7618 return -ENOMEM;
7619
7620 adj->dev = adj_dev;
7621 adj->master = master;
David Ahern790510d2016-10-17 19:15:43 -07007622 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02007623 adj->private = private;
Taehee Yoo32b6d342019-10-21 18:47:56 +00007624 adj->ignore = false;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007625 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007626
David Ahern67b62f92016-10-17 19:15:53 -07007627 pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
7628 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007629
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007630 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007631 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007632 if (ret)
7633 goto free_adj;
7634 }
7635
Veaceslav Falico7863c052013-09-25 09:20:06 +02007636 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007637 if (master) {
7638 ret = sysfs_create_link(&(dev->dev.kobj),
7639 &(adj_dev->dev.kobj), "master");
7640 if (ret)
Veaceslav Falico5831d662013-09-25 09:20:32 +02007641 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007642
Veaceslav Falico7863c052013-09-25 09:20:06 +02007643 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007644 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02007645 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007646 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007647
7648 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007649
Veaceslav Falico5831d662013-09-25 09:20:32 +02007650remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007651 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007652 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007653free_adj:
7654 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02007655 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007656
7657 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007658}
7659
stephen hemminger1d143d92013-12-29 14:01:29 -08007660static void __netdev_adjacent_dev_remove(struct net_device *dev,
7661 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007662 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007663 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007664{
7665 struct netdev_adjacent *adj;
7666
David Ahern67b62f92016-10-17 19:15:53 -07007667 pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
7668 dev->name, adj_dev->name, ref_nr);
7669
Michal Kubeček6ea29da2015-09-24 10:59:05 +02007670 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007671
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007672 if (!adj) {
David Ahern67b62f92016-10-17 19:15:53 -07007673 pr_err("Adjacency does not exist for device %s from %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007674 dev->name, adj_dev->name);
David Ahern67b62f92016-10-17 19:15:53 -07007675 WARN_ON(1);
7676 return;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007677 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02007678
Andrew Collins93409032016-10-03 13:43:02 -06007679 if (adj->ref_nr > ref_nr) {
David Ahern67b62f92016-10-17 19:15:53 -07007680 pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
7681 dev->name, adj_dev->name, ref_nr,
7682 adj->ref_nr - ref_nr);
Andrew Collins93409032016-10-03 13:43:02 -06007683 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007684 return;
7685 }
7686
Veaceslav Falico842d67a2013-09-25 09:20:31 +02007687 if (adj->master)
7688 sysfs_remove_link(&(dev->dev.kobj), "master");
7689
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04007690 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01007691 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d662013-09-25 09:20:32 +02007692
Veaceslav Falico5d261912013-08-28 23:25:05 +02007693 list_del_rcu(&adj->list);
David Ahern67b62f92016-10-17 19:15:53 -07007694 pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007695 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007696 dev_put(adj_dev);
7697 kfree_rcu(adj, rcu);
7698}
7699
stephen hemminger1d143d92013-12-29 14:01:29 -08007700static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
7701 struct net_device *upper_dev,
7702 struct list_head *up_list,
7703 struct list_head *down_list,
7704 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007705{
7706 int ret;
7707
David Ahern790510d2016-10-17 19:15:43 -07007708 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
Andrew Collins93409032016-10-03 13:43:02 -06007709 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007710 if (ret)
7711 return ret;
7712
David Ahern790510d2016-10-17 19:15:43 -07007713 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
Andrew Collins93409032016-10-03 13:43:02 -06007714 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007715 if (ret) {
David Ahern790510d2016-10-17 19:15:43 -07007716 __netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007717 return ret;
7718 }
7719
7720 return 0;
7721}
7722
stephen hemminger1d143d92013-12-29 14:01:29 -08007723static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
7724 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06007725 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08007726 struct list_head *up_list,
7727 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02007728{
Andrew Collins93409032016-10-03 13:43:02 -06007729 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
7730 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007731}
7732
stephen hemminger1d143d92013-12-29 14:01:29 -08007733static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
7734 struct net_device *upper_dev,
7735 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007736{
David Ahernf1170fd2016-10-17 19:15:51 -07007737 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
7738 &dev->adj_list.upper,
7739 &upper_dev->adj_list.lower,
7740 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007741}
7742
stephen hemminger1d143d92013-12-29 14:01:29 -08007743static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
7744 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007745{
Andrew Collins93409032016-10-03 13:43:02 -06007746 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007747 &dev->adj_list.upper,
7748 &upper_dev->adj_list.lower);
7749}
Veaceslav Falico5d261912013-08-28 23:25:05 +02007750
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007751static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007752 struct net_device *upper_dev, bool master,
David Ahern42ab19e2017-10-04 17:48:47 -07007753 void *upper_priv, void *upper_info,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007754 struct netdev_nested_priv *priv,
David Ahern42ab19e2017-10-04 17:48:47 -07007755 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007756{
David Ahern51d0c0472017-10-04 17:48:45 -07007757 struct netdev_notifier_changeupper_info changeupper_info = {
7758 .info = {
7759 .dev = dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007760 .extack = extack,
David Ahern51d0c0472017-10-04 17:48:45 -07007761 },
7762 .upper_dev = upper_dev,
7763 .master = master,
7764 .linking = true,
7765 .upper_info = upper_info,
7766 };
Mike Manning50d629e2018-02-26 23:49:30 +00007767 struct net_device *master_dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007768 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007769
7770 ASSERT_RTNL();
7771
7772 if (dev == upper_dev)
7773 return -EBUSY;
7774
7775 /* To prevent loops, check if dev is not upper device to upper_dev. */
Taehee Yoo32b6d342019-10-21 18:47:56 +00007776 if (__netdev_has_upper_dev(upper_dev, dev))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007777 return -EBUSY;
7778
Taehee Yoo5343da42019-10-21 18:47:50 +00007779 if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
7780 return -EMLINK;
7781
Mike Manning50d629e2018-02-26 23:49:30 +00007782 if (!master) {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007783 if (__netdev_has_upper_dev(dev, upper_dev))
Mike Manning50d629e2018-02-26 23:49:30 +00007784 return -EEXIST;
7785 } else {
Taehee Yoo32b6d342019-10-21 18:47:56 +00007786 master_dev = __netdev_master_upper_dev_get(dev);
Mike Manning50d629e2018-02-26 23:49:30 +00007787 if (master_dev)
7788 return master_dev == upper_dev ? -EEXIST : -EBUSY;
7789 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007790
David Ahern51d0c0472017-10-04 17:48:45 -07007791 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007792 &changeupper_info.info);
7793 ret = notifier_to_errno(ret);
7794 if (ret)
7795 return ret;
7796
Jiri Pirko6dffb042015-12-03 12:12:10 +01007797 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02007798 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007799 if (ret)
7800 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007801
David Ahern51d0c0472017-10-04 17:48:45 -07007802 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Ido Schimmelb03804e2015-12-03 12:12:03 +01007803 &changeupper_info.info);
7804 ret = notifier_to_errno(ret);
7805 if (ret)
David Ahernf1170fd2016-10-17 19:15:51 -07007806 goto rollback;
Ido Schimmelb03804e2015-12-03 12:12:03 +01007807
Taehee Yoo5343da42019-10-21 18:47:50 +00007808 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007809 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00007810
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007811 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007812 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007813 priv);
Taehee Yoo5343da42019-10-21 18:47:50 +00007814
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007815 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02007816
David Ahernf1170fd2016-10-17 19:15:51 -07007817rollback:
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007818 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007819
7820 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007821}
7822
7823/**
7824 * netdev_upper_dev_link - Add a link to the upper device
7825 * @dev: device
7826 * @upper_dev: new upper device
Florian Fainelli7a006d52018-01-22 19:14:28 -08007827 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007828 *
7829 * Adds a link to device which is upper to this one. The caller must hold
7830 * the RTNL lock. On a failure a negative errno code is returned.
7831 * On success the reference counts are adjusted and the function
7832 * returns zero.
7833 */
7834int netdev_upper_dev_link(struct net_device *dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007835 struct net_device *upper_dev,
7836 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007837{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007838 struct netdev_nested_priv priv = {
7839 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7840 .data = NULL,
7841 };
7842
David Ahern42ab19e2017-10-04 17:48:47 -07007843 return __netdev_upper_dev_link(dev, upper_dev, false,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007844 NULL, NULL, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007845}
7846EXPORT_SYMBOL(netdev_upper_dev_link);
7847
7848/**
7849 * netdev_master_upper_dev_link - Add a master link to the upper device
7850 * @dev: device
7851 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01007852 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007853 * @upper_info: upper info to be passed down via notifier
Florian Fainelli7a006d52018-01-22 19:14:28 -08007854 * @extack: netlink extended ack
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007855 *
7856 * Adds a link to device which is upper to this one. In this case, only
7857 * one master upper device can be linked, although other non-master devices
7858 * might be linked as well. The caller must hold the RTNL lock.
7859 * On a failure a negative errno code is returned. On success the reference
7860 * counts are adjusted and the function returns zero.
7861 */
7862int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01007863 struct net_device *upper_dev,
David Ahern42ab19e2017-10-04 17:48:47 -07007864 void *upper_priv, void *upper_info,
7865 struct netlink_ext_ack *extack)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007866{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007867 struct netdev_nested_priv priv = {
7868 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7869 .data = NULL,
7870 };
7871
Jiri Pirko29bf24a2015-12-03 12:12:11 +01007872 return __netdev_upper_dev_link(dev, upper_dev, true,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007873 upper_priv, upper_info, &priv, extack);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007874}
7875EXPORT_SYMBOL(netdev_master_upper_dev_link);
7876
Taehee Yoofe8300f2020-09-25 18:13:02 +00007877static void __netdev_upper_dev_unlink(struct net_device *dev,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007878 struct net_device *upper_dev,
7879 struct netdev_nested_priv *priv)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007880{
David Ahern51d0c0472017-10-04 17:48:45 -07007881 struct netdev_notifier_changeupper_info changeupper_info = {
7882 .info = {
7883 .dev = dev,
7884 },
7885 .upper_dev = upper_dev,
7886 .linking = false,
7887 };
tchardingf4563a72017-02-09 17:56:07 +11007888
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007889 ASSERT_RTNL();
7890
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007891 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007892
David Ahern51d0c0472017-10-04 17:48:45 -07007893 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
Jiri Pirko573c7ba2015-10-16 14:01:22 +02007894 &changeupper_info.info);
7895
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007896 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02007897
David Ahern51d0c0472017-10-04 17:48:45 -07007898 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
Jiri Pirko0e4ead92015-08-27 09:31:18 +02007899 &changeupper_info.info);
Taehee Yoo5343da42019-10-21 18:47:50 +00007900
7901 __netdev_update_upper_level(dev, NULL);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007902 __netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
Taehee Yoo5343da42019-10-21 18:47:50 +00007903
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007904 __netdev_update_lower_level(upper_dev, priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007905 __netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007906 priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007907}
Taehee Yoofe8300f2020-09-25 18:13:02 +00007908
7909/**
7910 * netdev_upper_dev_unlink - Removes a link to upper device
7911 * @dev: device
7912 * @upper_dev: new upper device
7913 *
7914 * Removes a link to device which is upper to this one. The caller must hold
7915 * the RTNL lock.
7916 */
7917void netdev_upper_dev_unlink(struct net_device *dev,
7918 struct net_device *upper_dev)
7919{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007920 struct netdev_nested_priv priv = {
7921 .flags = NESTED_SYNC_TODO,
7922 .data = NULL,
7923 };
7924
7925 __netdev_upper_dev_unlink(dev, upper_dev, &priv);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007926}
7927EXPORT_SYMBOL(netdev_upper_dev_unlink);
7928
Taehee Yoo32b6d342019-10-21 18:47:56 +00007929static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
7930 struct net_device *lower_dev,
7931 bool val)
7932{
7933 struct netdev_adjacent *adj;
7934
7935 adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
7936 if (adj)
7937 adj->ignore = val;
7938
7939 adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
7940 if (adj)
7941 adj->ignore = val;
7942}
7943
7944static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
7945 struct net_device *lower_dev)
7946{
7947 __netdev_adjacent_dev_set(upper_dev, lower_dev, true);
7948}
7949
7950static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
7951 struct net_device *lower_dev)
7952{
7953 __netdev_adjacent_dev_set(upper_dev, lower_dev, false);
7954}
7955
7956int netdev_adjacent_change_prepare(struct net_device *old_dev,
7957 struct net_device *new_dev,
7958 struct net_device *dev,
7959 struct netlink_ext_ack *extack)
7960{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007961 struct netdev_nested_priv priv = {
7962 .flags = 0,
7963 .data = NULL,
7964 };
Taehee Yoo32b6d342019-10-21 18:47:56 +00007965 int err;
7966
7967 if (!new_dev)
7968 return 0;
7969
7970 if (old_dev && new_dev != old_dev)
7971 netdev_adjacent_dev_disable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007972 err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
7973 extack);
Taehee Yoo32b6d342019-10-21 18:47:56 +00007974 if (err) {
7975 if (old_dev && new_dev != old_dev)
7976 netdev_adjacent_dev_enable(dev, old_dev);
7977 return err;
7978 }
7979
7980 return 0;
7981}
7982EXPORT_SYMBOL(netdev_adjacent_change_prepare);
7983
7984void netdev_adjacent_change_commit(struct net_device *old_dev,
7985 struct net_device *new_dev,
7986 struct net_device *dev)
7987{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00007988 struct netdev_nested_priv priv = {
7989 .flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
7990 .data = NULL,
7991 };
7992
Taehee Yoo32b6d342019-10-21 18:47:56 +00007993 if (!new_dev || !old_dev)
7994 return;
7995
7996 if (new_dev == old_dev)
7997 return;
7998
7999 netdev_adjacent_dev_enable(dev, old_dev);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008000 __netdev_upper_dev_unlink(old_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008001}
8002EXPORT_SYMBOL(netdev_adjacent_change_commit);
8003
8004void netdev_adjacent_change_abort(struct net_device *old_dev,
8005 struct net_device *new_dev,
8006 struct net_device *dev)
8007{
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008008 struct netdev_nested_priv priv = {
8009 .flags = 0,
8010 .data = NULL,
8011 };
8012
Taehee Yoo32b6d342019-10-21 18:47:56 +00008013 if (!new_dev)
8014 return;
8015
8016 if (old_dev && new_dev != old_dev)
8017 netdev_adjacent_dev_enable(dev, old_dev);
8018
Taehee Yoo1fc70ed2020-09-25 18:13:29 +00008019 __netdev_upper_dev_unlink(new_dev, dev, &priv);
Taehee Yoo32b6d342019-10-21 18:47:56 +00008020}
8021EXPORT_SYMBOL(netdev_adjacent_change_abort);
8022
Moni Shoua61bd3852015-02-03 16:48:29 +02008023/**
8024 * netdev_bonding_info_change - Dispatch event about slave change
8025 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09008026 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02008027 *
8028 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
8029 * The caller must hold the RTNL lock.
8030 */
8031void netdev_bonding_info_change(struct net_device *dev,
8032 struct netdev_bonding_info *bonding_info)
8033{
David Ahern51d0c0472017-10-04 17:48:45 -07008034 struct netdev_notifier_bonding_info info = {
8035 .info.dev = dev,
8036 };
Moni Shoua61bd3852015-02-03 16:48:29 +02008037
8038 memcpy(&info.bonding_info, bonding_info,
8039 sizeof(struct netdev_bonding_info));
David Ahern51d0c0472017-10-04 17:48:45 -07008040 call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
Moni Shoua61bd3852015-02-03 16:48:29 +02008041 &info.info);
8042}
8043EXPORT_SYMBOL(netdev_bonding_info_change);
8044
Maor Gottliebcff9f122020-04-30 22:21:31 +03008045/**
8046 * netdev_get_xmit_slave - Get the xmit slave of master device
Andrew Lunn88425002020-07-13 01:14:59 +02008047 * @dev: device
Maor Gottliebcff9f122020-04-30 22:21:31 +03008048 * @skb: The packet
8049 * @all_slaves: assume all the slaves are active
8050 *
8051 * The reference counters are not incremented so the caller must be
8052 * careful with locks. The caller must hold RCU lock.
8053 * %NULL is returned if no slave is found.
8054 */
8055
8056struct net_device *netdev_get_xmit_slave(struct net_device *dev,
8057 struct sk_buff *skb,
8058 bool all_slaves)
8059{
8060 const struct net_device_ops *ops = dev->netdev_ops;
8061
8062 if (!ops->ndo_get_xmit_slave)
8063 return NULL;
8064 return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
8065}
8066EXPORT_SYMBOL(netdev_get_xmit_slave);
8067
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008068static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008069{
8070 struct netdev_adjacent *iter;
8071
8072 struct net *net = dev_net(dev);
8073
8074 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008075 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008076 continue;
8077 netdev_adjacent_sysfs_add(iter->dev, dev,
8078 &iter->dev->adj_list.lower);
8079 netdev_adjacent_sysfs_add(dev, iter->dev,
8080 &dev->adj_list.upper);
8081 }
8082
8083 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008084 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008085 continue;
8086 netdev_adjacent_sysfs_add(iter->dev, dev,
8087 &iter->dev->adj_list.upper);
8088 netdev_adjacent_sysfs_add(dev, iter->dev,
8089 &dev->adj_list.lower);
8090 }
8091}
8092
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08008093static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008094{
8095 struct netdev_adjacent *iter;
8096
8097 struct net *net = dev_net(dev);
8098
8099 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008100 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008101 continue;
8102 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8103 &iter->dev->adj_list.lower);
8104 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8105 &dev->adj_list.upper);
8106 }
8107
8108 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008109 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008110 continue;
8111 netdev_adjacent_sysfs_del(iter->dev, dev->name,
8112 &iter->dev->adj_list.upper);
8113 netdev_adjacent_sysfs_del(dev, iter->dev->name,
8114 &dev->adj_list.lower);
8115 }
8116}
8117
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008118void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02008119{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008120 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02008121
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008122 struct net *net = dev_net(dev);
8123
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008124 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008125 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008126 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008127 netdev_adjacent_sysfs_del(iter->dev, oldname,
8128 &iter->dev->adj_list.lower);
8129 netdev_adjacent_sysfs_add(iter->dev, dev,
8130 &iter->dev->adj_list.lower);
8131 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008132
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008133 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08008134 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008135 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01008136 netdev_adjacent_sysfs_del(iter->dev, oldname,
8137 &iter->dev->adj_list.upper);
8138 netdev_adjacent_sysfs_add(iter->dev, dev,
8139 &iter->dev->adj_list.upper);
8140 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02008141}
Veaceslav Falico402dae92013-09-25 09:20:09 +02008142
8143void *netdev_lower_dev_get_private(struct net_device *dev,
8144 struct net_device *lower_dev)
8145{
8146 struct netdev_adjacent *lower;
8147
8148 if (!lower_dev)
8149 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02008150 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02008151 if (!lower)
8152 return NULL;
8153
8154 return lower->private;
8155}
8156EXPORT_SYMBOL(netdev_lower_dev_get_private);
8157
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04008158
Jiri Pirko04d48262015-12-03 12:12:15 +01008159/**
8160 * netdev_lower_change - Dispatch event about lower device state change
8161 * @lower_dev: device
8162 * @lower_state_info: state to dispatch
8163 *
8164 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
8165 * The caller must hold the RTNL lock.
8166 */
8167void netdev_lower_state_changed(struct net_device *lower_dev,
8168 void *lower_state_info)
8169{
David Ahern51d0c0472017-10-04 17:48:45 -07008170 struct netdev_notifier_changelowerstate_info changelowerstate_info = {
8171 .info.dev = lower_dev,
8172 };
Jiri Pirko04d48262015-12-03 12:12:15 +01008173
8174 ASSERT_RTNL();
8175 changelowerstate_info.lower_state_info = lower_state_info;
David Ahern51d0c0472017-10-04 17:48:45 -07008176 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
Jiri Pirko04d48262015-12-03 12:12:15 +01008177 &changelowerstate_info.info);
8178}
8179EXPORT_SYMBOL(netdev_lower_state_changed);
8180
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008181static void dev_change_rx_flags(struct net_device *dev, int flags)
8182{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008183 const struct net_device_ops *ops = dev->netdev_ops;
8184
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05008185 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008186 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008187}
8188
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008189static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07008190{
Eric Dumazetb536db92011-11-30 21:42:26 +00008191 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06008192 kuid_t uid;
8193 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07008194
Patrick McHardy24023452007-07-14 18:51:31 -07008195 ASSERT_RTNL();
8196
Wang Chendad9b332008-06-18 01:48:28 -07008197 dev->flags |= IFF_PROMISC;
8198 dev->promiscuity += inc;
8199 if (dev->promiscuity == 0) {
8200 /*
8201 * Avoid overflow.
8202 * If inc causes overflow, untouch promisc and return error.
8203 */
8204 if (inc < 0)
8205 dev->flags &= ~IFF_PROMISC;
8206 else {
8207 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008208 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
8209 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008210 return -EOVERFLOW;
8211 }
8212 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008213 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008214 pr_info("device %s %s promiscuous mode\n",
8215 dev->name,
8216 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11008217 if (audit_enabled) {
8218 current_uid_gid(&uid, &gid);
Richard Guy Briggscdfb6b32018-05-12 21:58:20 -04008219 audit_log(audit_context(), GFP_ATOMIC,
8220 AUDIT_ANOM_PROMISCUOUS,
8221 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
8222 dev->name, (dev->flags & IFF_PROMISC),
8223 (old_flags & IFF_PROMISC),
8224 from_kuid(&init_user_ns, audit_get_loginuid(current)),
8225 from_kuid(&init_user_ns, uid),
8226 from_kgid(&init_user_ns, gid),
8227 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11008228 }
Patrick McHardy24023452007-07-14 18:51:31 -07008229
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008230 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07008231 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008232 if (notify)
8233 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07008234 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008235}
8236
Linus Torvalds1da177e2005-04-16 15:20:36 -07008237/**
8238 * dev_set_promiscuity - update promiscuity count on a device
8239 * @dev: device
8240 * @inc: modifier
8241 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07008242 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07008243 * remains above zero the interface remains promiscuous. Once it hits zero
8244 * the device reverts back to normal filtering operation. A negative inc
8245 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07008246 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247 */
Wang Chendad9b332008-06-18 01:48:28 -07008248int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008249{
Eric Dumazetb536db92011-11-30 21:42:26 +00008250 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07008251 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008253 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07008254 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07008255 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07008256 if (dev->flags != old_flags)
8257 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07008258 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008260EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008261
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008262static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008264 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008265
Patrick McHardy24023452007-07-14 18:51:31 -07008266 ASSERT_RTNL();
8267
Linus Torvalds1da177e2005-04-16 15:20:36 -07008268 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07008269 dev->allmulti += inc;
8270 if (dev->allmulti == 0) {
8271 /*
8272 * Avoid overflow.
8273 * If inc causes overflow, untouch allmulti and return error.
8274 */
8275 if (inc < 0)
8276 dev->flags &= ~IFF_ALLMULTI;
8277 else {
8278 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008279 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
8280 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07008281 return -EOVERFLOW;
8282 }
8283 }
Patrick McHardy24023452007-07-14 18:51:31 -07008284 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008285 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07008286 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008287 if (notify)
8288 __dev_notify_flags(dev, old_flags,
8289 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07008290 }
Wang Chendad9b332008-06-18 01:48:28 -07008291 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07008292}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008293
8294/**
8295 * dev_set_allmulti - update allmulti count on a device
8296 * @dev: device
8297 * @inc: modifier
8298 *
8299 * Add or remove reception of all multicast frames to a device. While the
8300 * count in the device remains above zero the interface remains listening
8301 * to all interfaces. Once it hits zero the device reverts back to normal
8302 * filtering operation. A negative @inc value is used to drop the counter
8303 * when releasing a resource needing all multicasts.
8304 * Return 0 if successful or a negative errno code on error.
8305 */
8306
8307int dev_set_allmulti(struct net_device *dev, int inc)
8308{
8309 return __dev_set_allmulti(dev, inc, true);
8310}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008311EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07008312
8313/*
8314 * Upload unicast and multicast address lists to device and
8315 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08008316 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07008317 * are present.
8318 */
8319void __dev_set_rx_mode(struct net_device *dev)
8320{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008321 const struct net_device_ops *ops = dev->netdev_ops;
8322
Patrick McHardy4417da62007-06-27 01:28:10 -07008323 /* dev_open will call this function so the list will stay sane. */
8324 if (!(dev->flags&IFF_UP))
8325 return;
8326
8327 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09008328 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07008329
Jiri Pirko01789342011-08-16 06:29:00 +00008330 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07008331 /* Unicast addresses changes may only happen under the rtnl,
8332 * therefore calling __dev_set_promiscuity here is safe.
8333 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008334 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008335 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008336 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08008337 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008338 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07008339 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07008340 }
Patrick McHardy4417da62007-06-27 01:28:10 -07008341 }
Jiri Pirko01789342011-08-16 06:29:00 +00008342
8343 if (ops->ndo_set_rx_mode)
8344 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008345}
8346
8347void dev_set_rx_mode(struct net_device *dev)
8348{
David S. Millerb9e40852008-07-15 00:15:08 -07008349 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07008350 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07008351 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008352}
8353
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008354/**
8355 * dev_get_flags - get flags reported to userspace
8356 * @dev: device
8357 *
8358 * Get the combination of flag bits exported through APIs to userspace.
8359 */
Eric Dumazet95c96172012-04-15 05:58:06 +00008360unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008361{
Eric Dumazet95c96172012-04-15 05:58:06 +00008362 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363
8364 flags = (dev->flags & ~(IFF_PROMISC |
8365 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08008366 IFF_RUNNING |
8367 IFF_LOWER_UP |
8368 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369 (dev->gflags & (IFF_PROMISC |
8370 IFF_ALLMULTI));
8371
Stefan Rompfb00055a2006-03-20 17:09:11 -08008372 if (netif_running(dev)) {
8373 if (netif_oper_up(dev))
8374 flags |= IFF_RUNNING;
8375 if (netif_carrier_ok(dev))
8376 flags |= IFF_LOWER_UP;
8377 if (netif_dormant(dev))
8378 flags |= IFF_DORMANT;
8379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380
8381 return flags;
8382}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008383EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384
Petr Machata6d040322018-12-06 17:05:43 +00008385int __dev_change_flags(struct net_device *dev, unsigned int flags,
8386 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008387{
Eric Dumazetb536db92011-11-30 21:42:26 +00008388 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00008389 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008390
Patrick McHardy24023452007-07-14 18:51:31 -07008391 ASSERT_RTNL();
8392
Linus Torvalds1da177e2005-04-16 15:20:36 -07008393 /*
8394 * Set the flags on our device.
8395 */
8396
8397 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
8398 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
8399 IFF_AUTOMEDIA)) |
8400 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
8401 IFF_ALLMULTI));
8402
8403 /*
8404 * Load in the correct multicast list now the flags have changed.
8405 */
8406
Patrick McHardyb6c40d62008-10-07 15:26:48 -07008407 if ((old_flags ^ flags) & IFF_MULTICAST)
8408 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07008409
Patrick McHardy4417da62007-06-27 01:28:10 -07008410 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008411
8412 /*
8413 * Have we downed the interface. We handle IFF_UP ourselves
8414 * according to user attempts to set it, rather than blindly
8415 * setting it.
8416 */
8417
8418 ret = 0;
stephen hemminger7051b882017-07-18 15:59:27 -07008419 if ((old_flags ^ flags) & IFF_UP) {
8420 if (old_flags & IFF_UP)
8421 __dev_close(dev);
8422 else
Petr Machata40c900a2018-12-06 17:05:47 +00008423 ret = __dev_open(dev, extack);
stephen hemminger7051b882017-07-18 15:59:27 -07008424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008425
Linus Torvalds1da177e2005-04-16 15:20:36 -07008426 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008427 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008428 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008429
Linus Torvalds1da177e2005-04-16 15:20:36 -07008430 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008431
8432 if (__dev_set_promiscuity(dev, inc, false) >= 0)
8433 if (dev->flags != old_flags)
8434 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008435 }
8436
8437 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
tchardingeb13da12017-02-09 17:56:06 +11008438 * is important. Some (broken) drivers set IFF_PROMISC, when
8439 * IFF_ALLMULTI is requested not asking us and not reporting.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008440 */
8441 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008442 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
8443
Linus Torvalds1da177e2005-04-16 15:20:36 -07008444 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008445 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008446 }
8447
Patrick McHardybd380812010-02-26 06:34:53 +00008448 return ret;
8449}
8450
Nicolas Dichtela528c212013-09-25 12:02:44 +02008451void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
8452 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00008453{
8454 unsigned int changes = dev->flags ^ old_flags;
8455
Nicolas Dichtela528c212013-09-25 12:02:44 +02008456 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008457 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008458
Patrick McHardybd380812010-02-26 06:34:53 +00008459 if (changes & IFF_UP) {
8460 if (dev->flags & IFF_UP)
8461 call_netdevice_notifiers(NETDEV_UP, dev);
8462 else
8463 call_netdevice_notifiers(NETDEV_DOWN, dev);
8464 }
8465
8466 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008467 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
David Ahern51d0c0472017-10-04 17:48:45 -07008468 struct netdev_notifier_change_info change_info = {
8469 .info = {
8470 .dev = dev,
8471 },
8472 .flags_changed = changes,
8473 };
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008474
David Ahern51d0c0472017-10-04 17:48:45 -07008475 call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
Jiri Pirkobe9efd32013-05-28 01:30:22 +00008476 }
Patrick McHardybd380812010-02-26 06:34:53 +00008477}
8478
8479/**
8480 * dev_change_flags - change device settings
8481 * @dev: device
8482 * @flags: device state flags
Petr Machata567c5e12018-12-06 17:05:42 +00008483 * @extack: netlink extended ack
Patrick McHardybd380812010-02-26 06:34:53 +00008484 *
8485 * Change settings on device based state flags. The flags are
8486 * in the userspace exported format.
8487 */
Petr Machata567c5e12018-12-06 17:05:42 +00008488int dev_change_flags(struct net_device *dev, unsigned int flags,
8489 struct netlink_ext_ack *extack)
Patrick McHardybd380812010-02-26 06:34:53 +00008490{
Eric Dumazetb536db92011-11-30 21:42:26 +00008491 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008492 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00008493
Petr Machata6d040322018-12-06 17:05:43 +00008494 ret = __dev_change_flags(dev, flags, extack);
Patrick McHardybd380812010-02-26 06:34:53 +00008495 if (ret < 0)
8496 return ret;
8497
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02008498 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02008499 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500 return ret;
8501}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008502EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008503
WANG Congf51048c2017-07-06 15:01:57 -07008504int __dev_set_mtu(struct net_device *dev, int new_mtu)
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008505{
8506 const struct net_device_ops *ops = dev->netdev_ops;
8507
8508 if (ops->ndo_change_mtu)
8509 return ops->ndo_change_mtu(dev, new_mtu);
8510
Eric Dumazet501a90c2019-12-05 20:43:46 -08008511 /* Pairs with all the lockless reads of dev->mtu in the stack */
8512 WRITE_ONCE(dev->mtu, new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008513 return 0;
8514}
WANG Congf51048c2017-07-06 15:01:57 -07008515EXPORT_SYMBOL(__dev_set_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008516
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008517int dev_validate_mtu(struct net_device *dev, int new_mtu,
8518 struct netlink_ext_ack *extack)
8519{
8520 /* MTU must be positive, and in range */
8521 if (new_mtu < 0 || new_mtu < dev->min_mtu) {
8522 NL_SET_ERR_MSG(extack, "mtu less than device minimum");
8523 return -EINVAL;
8524 }
8525
8526 if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
8527 NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
8528 return -EINVAL;
8529 }
8530 return 0;
8531}
8532
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008533/**
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008534 * dev_set_mtu_ext - Change maximum transfer unit
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008535 * @dev: device
8536 * @new_mtu: new transfer unit
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008537 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008538 *
8539 * Change the maximum transfer size of the network device.
8540 */
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008541int dev_set_mtu_ext(struct net_device *dev, int new_mtu,
8542 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008543{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008544 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545
8546 if (new_mtu == dev->mtu)
8547 return 0;
8548
Eric Dumazetd836f5c2020-01-21 22:47:29 -08008549 err = dev_validate_mtu(dev, new_mtu, extack);
8550 if (err)
8551 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008552
8553 if (!netif_device_present(dev))
8554 return -ENODEV;
8555
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01008556 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
8557 err = notifier_to_errno(err);
8558 if (err)
8559 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008560
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008561 orig_mtu = dev->mtu;
8562 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008563
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008564 if (!err) {
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008565 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8566 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008567 err = notifier_to_errno(err);
8568 if (err) {
8569 /* setting mtu back and notifying everyone again,
8570 * so that they have a chance to revert changes.
8571 */
8572 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubrocaaf7d6cc2018-10-09 17:48:14 +02008573 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
8574 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01008575 }
8576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008577 return err;
8578}
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008579
8580int dev_set_mtu(struct net_device *dev, int new_mtu)
8581{
8582 struct netlink_ext_ack extack;
8583 int err;
8584
Li RongQinga6bcfc82018-08-03 15:45:21 +08008585 memset(&extack, 0, sizeof(extack));
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008586 err = dev_set_mtu_ext(dev, new_mtu, &extack);
Li RongQinga6bcfc82018-08-03 15:45:21 +08008587 if (err && extack._msg)
Stephen Hemminger7a4c53b2018-07-27 13:43:23 -07008588 net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
8589 return err;
8590}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008591EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008592
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008593/**
Cong Wang6a643dd2018-01-25 18:26:22 -08008594 * dev_change_tx_queue_len - Change TX queue length of a netdevice
8595 * @dev: device
8596 * @new_len: new tx queue length
8597 */
8598int dev_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
8599{
8600 unsigned int orig_len = dev->tx_queue_len;
8601 int res;
8602
8603 if (new_len != (unsigned int)new_len)
8604 return -ERANGE;
8605
8606 if (new_len != orig_len) {
8607 dev->tx_queue_len = new_len;
8608 res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
8609 res = notifier_to_errno(res);
Tariq Toukan7effaf02018-07-24 14:12:20 +03008610 if (res)
8611 goto err_rollback;
8612 res = dev_qdisc_change_tx_queue_len(dev);
8613 if (res)
8614 goto err_rollback;
Cong Wang6a643dd2018-01-25 18:26:22 -08008615 }
8616
8617 return 0;
Tariq Toukan7effaf02018-07-24 14:12:20 +03008618
8619err_rollback:
8620 netdev_err(dev, "refused to change device tx_queue_len\n");
8621 dev->tx_queue_len = orig_len;
8622 return res;
Cong Wang6a643dd2018-01-25 18:26:22 -08008623}
8624
8625/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00008626 * dev_set_group - Change group this device belongs to
8627 * @dev: device
8628 * @new_group: group this device should belong to
8629 */
8630void dev_set_group(struct net_device *dev, int new_group)
8631{
8632 dev->group = new_group;
8633}
8634EXPORT_SYMBOL(dev_set_group);
8635
8636/**
Petr Machatad59cdf92018-12-13 11:54:35 +00008637 * dev_pre_changeaddr_notify - Call NETDEV_PRE_CHANGEADDR.
8638 * @dev: device
8639 * @addr: new address
8640 * @extack: netlink extended ack
8641 */
8642int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
8643 struct netlink_ext_ack *extack)
8644{
8645 struct netdev_notifier_pre_changeaddr_info info = {
8646 .info.dev = dev,
8647 .info.extack = extack,
8648 .dev_addr = addr,
8649 };
8650 int rc;
8651
8652 rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
8653 return notifier_to_errno(rc);
8654}
8655EXPORT_SYMBOL(dev_pre_changeaddr_notify);
8656
8657/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008658 * dev_set_mac_address - Change Media Access Control Address
8659 * @dev: device
8660 * @sa: new address
Petr Machata3a37a962018-12-13 11:54:30 +00008661 * @extack: netlink extended ack
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008662 *
8663 * Change the hardware (MAC) address of the device
8664 */
Petr Machata3a37a962018-12-13 11:54:30 +00008665int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
8666 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008667{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008668 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008669 int err;
8670
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008671 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008672 return -EOPNOTSUPP;
8673 if (sa->sa_family != dev->type)
8674 return -EINVAL;
8675 if (!netif_device_present(dev))
8676 return -ENODEV;
Petr Machatad59cdf92018-12-13 11:54:35 +00008677 err = dev_pre_changeaddr_notify(dev, sa->sa_data, extack);
8678 if (err)
8679 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08008680 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00008681 if (err)
8682 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00008683 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00008684 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04008685 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00008686 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008687}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008688EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008689
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008690/**
8691 * dev_change_carrier - Change device carrier
8692 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00008693 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00008694 *
8695 * Change device carrier
8696 */
8697int dev_change_carrier(struct net_device *dev, bool new_carrier)
8698{
8699 const struct net_device_ops *ops = dev->netdev_ops;
8700
8701 if (!ops->ndo_change_carrier)
8702 return -EOPNOTSUPP;
8703 if (!netif_device_present(dev))
8704 return -ENODEV;
8705 return ops->ndo_change_carrier(dev, new_carrier);
8706}
8707EXPORT_SYMBOL(dev_change_carrier);
8708
Linus Torvalds1da177e2005-04-16 15:20:36 -07008709/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02008710 * dev_get_phys_port_id - Get device physical port ID
8711 * @dev: device
8712 * @ppid: port ID
8713 *
8714 * Get device physical port ID
8715 */
8716int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01008717 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02008718{
8719 const struct net_device_ops *ops = dev->netdev_ops;
8720
8721 if (!ops->ndo_get_phys_port_id)
8722 return -EOPNOTSUPP;
8723 return ops->ndo_get_phys_port_id(dev, ppid);
8724}
8725EXPORT_SYMBOL(dev_get_phys_port_id);
8726
8727/**
David Aherndb24a902015-03-17 20:23:15 -06008728 * dev_get_phys_port_name - Get device physical port name
8729 * @dev: device
8730 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00008731 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06008732 *
8733 * Get device physical port name
8734 */
8735int dev_get_phys_port_name(struct net_device *dev,
8736 char *name, size_t len)
8737{
8738 const struct net_device_ops *ops = dev->netdev_ops;
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01008739 int err;
David Aherndb24a902015-03-17 20:23:15 -06008740
Jiri Pirkoaf3836d2019-03-28 13:56:37 +01008741 if (ops->ndo_get_phys_port_name) {
8742 err = ops->ndo_get_phys_port_name(dev, name, len);
8743 if (err != -EOPNOTSUPP)
8744 return err;
8745 }
8746 return devlink_compat_phys_port_name_get(dev, name, len);
David Aherndb24a902015-03-17 20:23:15 -06008747}
8748EXPORT_SYMBOL(dev_get_phys_port_name);
8749
8750/**
Florian Fainellid6abc5962019-02-06 09:45:35 -08008751 * dev_get_port_parent_id - Get the device's port parent identifier
8752 * @dev: network device
8753 * @ppid: pointer to a storage for the port's parent identifier
8754 * @recurse: allow/disallow recursion to lower devices
8755 *
8756 * Get the devices's port parent identifier
8757 */
8758int dev_get_port_parent_id(struct net_device *dev,
8759 struct netdev_phys_item_id *ppid,
8760 bool recurse)
8761{
8762 const struct net_device_ops *ops = dev->netdev_ops;
8763 struct netdev_phys_item_id first = { };
8764 struct net_device *lower_dev;
8765 struct list_head *iter;
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008766 int err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008767
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008768 if (ops->ndo_get_port_parent_id) {
8769 err = ops->ndo_get_port_parent_id(dev, ppid);
8770 if (err != -EOPNOTSUPP)
8771 return err;
8772 }
8773
8774 err = devlink_compat_switch_id_get(dev, ppid);
8775 if (!err || err != -EOPNOTSUPP)
8776 return err;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008777
8778 if (!recurse)
Jiri Pirko7e1146e2019-04-03 14:24:17 +02008779 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008780
8781 netdev_for_each_lower_dev(dev, lower_dev, iter) {
8782 err = dev_get_port_parent_id(lower_dev, ppid, recurse);
8783 if (err)
8784 break;
8785 if (!first.id_len)
8786 first = *ppid;
8787 else if (memcmp(&first, ppid, sizeof(*ppid)))
Ido Schimmele1b9efe2020-09-10 14:01:26 +03008788 return -EOPNOTSUPP;
Florian Fainellid6abc5962019-02-06 09:45:35 -08008789 }
8790
8791 return err;
8792}
8793EXPORT_SYMBOL(dev_get_port_parent_id);
8794
8795/**
8796 * netdev_port_same_parent_id - Indicate if two network devices have
8797 * the same port parent identifier
8798 * @a: first network device
8799 * @b: second network device
8800 */
8801bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
8802{
8803 struct netdev_phys_item_id a_id = { };
8804 struct netdev_phys_item_id b_id = { };
8805
8806 if (dev_get_port_parent_id(a, &a_id, true) ||
8807 dev_get_port_parent_id(b, &b_id, true))
8808 return false;
8809
8810 return netdev_phys_item_id_same(&a_id, &b_id);
8811}
8812EXPORT_SYMBOL(netdev_port_same_parent_id);
8813
8814/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07008815 * dev_change_proto_down - update protocol port state information
8816 * @dev: device
8817 * @proto_down: new value
8818 *
8819 * This info can be used by switch drivers to set the phys state of the
8820 * port.
8821 */
8822int dev_change_proto_down(struct net_device *dev, bool proto_down)
8823{
8824 const struct net_device_ops *ops = dev->netdev_ops;
8825
8826 if (!ops->ndo_change_proto_down)
8827 return -EOPNOTSUPP;
8828 if (!netif_device_present(dev))
8829 return -ENODEV;
8830 return ops->ndo_change_proto_down(dev, proto_down);
8831}
8832EXPORT_SYMBOL(dev_change_proto_down);
8833
Andy Roulinb5899672019-02-22 18:06:36 +00008834/**
8835 * dev_change_proto_down_generic - generic implementation for
8836 * ndo_change_proto_down that sets carrier according to
8837 * proto_down.
8838 *
8839 * @dev: device
8840 * @proto_down: new value
8841 */
8842int dev_change_proto_down_generic(struct net_device *dev, bool proto_down)
8843{
8844 if (proto_down)
8845 netif_carrier_off(dev);
8846 else
8847 netif_carrier_on(dev);
8848 dev->proto_down = proto_down;
8849 return 0;
8850}
8851EXPORT_SYMBOL(dev_change_proto_down_generic);
8852
Roopa Prabhu829eb202020-07-31 17:34:01 -07008853/**
8854 * dev_change_proto_down_reason - proto down reason
8855 *
8856 * @dev: device
8857 * @mask: proto down mask
8858 * @value: proto down value
8859 */
8860void dev_change_proto_down_reason(struct net_device *dev, unsigned long mask,
8861 u32 value)
8862{
8863 int b;
8864
8865 if (!mask) {
8866 dev->proto_down_reason = value;
8867 } else {
8868 for_each_set_bit(b, &mask, 32) {
8869 if (value & (1 << b))
8870 dev->proto_down_reason |= BIT(b);
8871 else
8872 dev->proto_down_reason &= ~BIT(b);
8873 }
8874 }
8875}
8876EXPORT_SYMBOL(dev_change_proto_down_reason);
8877
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008878struct bpf_xdp_link {
8879 struct bpf_link link;
8880 struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
8881 int flags;
8882};
8883
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07008884static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008885{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008886 if (flags & XDP_FLAGS_HW_MODE)
8887 return XDP_MODE_HW;
8888 if (flags & XDP_FLAGS_DRV_MODE)
8889 return XDP_MODE_DRV;
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07008890 if (flags & XDP_FLAGS_SKB_MODE)
8891 return XDP_MODE_SKB;
8892 return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008893}
8894
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008895static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008896{
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008897 switch (mode) {
8898 case XDP_MODE_SKB:
8899 return generic_xdp_install;
8900 case XDP_MODE_DRV:
8901 case XDP_MODE_HW:
8902 return dev->netdev_ops->ndo_bpf;
8903 default:
8904 return NULL;
Tom Rix5d867242020-11-01 07:36:47 -08008905 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008906}
8907
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008908static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
8909 enum bpf_xdp_mode mode)
8910{
8911 return dev->xdp_state[mode].link;
8912}
8913
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008914static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
8915 enum bpf_xdp_mode mode)
8916{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008917 struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
8918
8919 if (link)
8920 return link->link.prog;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008921 return dev->xdp_state[mode].prog;
8922}
8923
8924u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
8925{
8926 struct bpf_prog *prog = dev_xdp_prog(dev, mode);
8927
8928 return prog ? prog->aux->id : 0;
8929}
8930
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008931static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
8932 struct bpf_xdp_link *link)
8933{
8934 dev->xdp_state[mode].link = link;
8935 dev->xdp_state[mode].prog = NULL;
8936}
8937
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008938static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
8939 struct bpf_prog *prog)
8940{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008941 dev->xdp_state[mode].link = NULL;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008942 dev->xdp_state[mode].prog = prog;
8943}
8944
8945static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
8946 bpf_op_t bpf_op, struct netlink_ext_ack *extack,
8947 u32 flags, struct bpf_prog *prog)
8948{
Jakub Kicinskif4e63522017-11-03 13:56:16 -07008949 struct netdev_bpf xdp;
Björn Töpel7e6897f2019-12-13 18:51:09 +01008950 int err;
8951
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008952 memset(&xdp, 0, sizeof(xdp));
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008953 xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008954 xdp.extack = extack;
Jakub Kicinski32d60272017-06-21 18:25:03 -07008955 xdp.flags = flags;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008956 xdp.prog = prog;
8957
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008958 /* Drivers assume refcnt is already incremented (i.e, prog pointer is
8959 * "moved" into driver), so they don't increment it on their own, but
8960 * they do decrement refcnt when program is detached or replaced.
8961 * Given net_device also owns link/prog, we need to bump refcnt here
8962 * to prevent drivers from underflowing it.
8963 */
8964 if (prog)
8965 bpf_prog_inc(prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01008966 err = bpf_op(dev, &xdp);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008967 if (err) {
8968 if (prog)
8969 bpf_prog_put(prog);
8970 return err;
8971 }
Björn Töpel7e6897f2019-12-13 18:51:09 +01008972
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008973 if (mode != XDP_MODE_HW)
8974 bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
Björn Töpel7e6897f2019-12-13 18:51:09 +01008975
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008976 return 0;
Daniel Borkmannd67b9cd2017-05-12 01:04:46 +02008977}
8978
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008979static void dev_xdp_uninstall(struct net_device *dev)
8980{
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008981 struct bpf_xdp_link *link;
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008982 struct bpf_prog *prog;
8983 enum bpf_xdp_mode mode;
8984 bpf_op_t bpf_op;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008985
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008986 ASSERT_RTNL();
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008987
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008988 for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
8989 prog = dev_xdp_prog(dev, mode);
8990 if (!prog)
8991 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008992
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008993 bpf_op = dev_xdp_bpf_op(dev, mode);
8994 if (!bpf_op)
8995 continue;
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08008996
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07008997 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
8998
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07008999 /* auto-detach link from net device */
9000 link = dev_xdp_link(dev, mode);
9001 if (link)
9002 link->dev = NULL;
9003 else
9004 bpf_prog_put(prog);
9005
9006 dev_xdp_set_link(dev, mode, NULL);
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009007 }
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009008}
9009
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009010static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009011 struct bpf_xdp_link *link, struct bpf_prog *new_prog,
9012 struct bpf_prog *old_prog, u32 flags)
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009013{
9014 struct bpf_prog *cur_prog;
9015 enum bpf_xdp_mode mode;
9016 bpf_op_t bpf_op;
9017 int err;
9018
9019 ASSERT_RTNL();
9020
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009021 /* either link or prog attachment, never both */
9022 if (link && (new_prog || old_prog))
9023 return -EINVAL;
9024 /* link supports only XDP mode flags */
9025 if (link && (flags & ~XDP_FLAGS_MODES)) {
9026 NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
9027 return -EINVAL;
9028 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009029 /* just one XDP mode bit should be set, zero defaults to SKB mode */
9030 if (hweight32(flags & XDP_FLAGS_MODES) > 1) {
9031 NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
9032 return -EINVAL;
9033 }
9034 /* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
9035 if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
9036 NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
9037 return -EINVAL;
9038 }
9039
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009040 mode = dev_xdp_mode(dev, flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009041 /* can't replace attached link */
9042 if (dev_xdp_link(dev, mode)) {
9043 NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
9044 return -EBUSY;
9045 }
9046
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009047 cur_prog = dev_xdp_prog(dev, mode);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009048 /* can't replace attached prog with link */
9049 if (link && cur_prog) {
9050 NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
9051 return -EBUSY;
9052 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009053 if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
9054 NL_SET_ERR_MSG(extack, "Active program does not match expected");
9055 return -EEXIST;
9056 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009057
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009058 /* put effective new program into new_prog */
9059 if (link)
9060 new_prog = link->link.prog;
9061
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009062 if (new_prog) {
9063 bool offload = mode == XDP_MODE_HW;
9064 enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
9065 ? XDP_MODE_DRV : XDP_MODE_SKB;
9066
Andrii Nakryiko068d9d12020-08-11 19:29:23 -07009067 if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
9068 NL_SET_ERR_MSG(extack, "XDP program already attached");
9069 return -EBUSY;
9070 }
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009071 if (!offload && dev_xdp_prog(dev, other_mode)) {
9072 NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
9073 return -EEXIST;
9074 }
9075 if (!offload && bpf_prog_is_dev_bound(new_prog->aux)) {
9076 NL_SET_ERR_MSG(extack, "Using device-bound program without HW_MODE flag is not supported");
9077 return -EINVAL;
9078 }
9079 if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
9080 NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
9081 return -EINVAL;
9082 }
9083 if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
9084 NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
9085 return -EINVAL;
9086 }
9087 }
9088
9089 /* don't call drivers if the effective program didn't change */
9090 if (new_prog != cur_prog) {
9091 bpf_op = dev_xdp_bpf_op(dev, mode);
9092 if (!bpf_op) {
9093 NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
9094 return -EOPNOTSUPP;
9095 }
9096
9097 err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
9098 if (err)
9099 return err;
9100 }
9101
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009102 if (link)
9103 dev_xdp_set_link(dev, mode, link);
9104 else
9105 dev_xdp_set_prog(dev, mode, new_prog);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009106 if (cur_prog)
9107 bpf_prog_put(cur_prog);
9108
9109 return 0;
9110}
9111
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009112static int dev_xdp_attach_link(struct net_device *dev,
9113 struct netlink_ext_ack *extack,
9114 struct bpf_xdp_link *link)
9115{
9116 return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
9117}
9118
9119static int dev_xdp_detach_link(struct net_device *dev,
9120 struct netlink_ext_ack *extack,
9121 struct bpf_xdp_link *link)
9122{
9123 enum bpf_xdp_mode mode;
9124 bpf_op_t bpf_op;
9125
9126 ASSERT_RTNL();
9127
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009128 mode = dev_xdp_mode(dev, link->flags);
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009129 if (dev_xdp_link(dev, mode) != link)
9130 return -EINVAL;
9131
9132 bpf_op = dev_xdp_bpf_op(dev, mode);
9133 WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
9134 dev_xdp_set_link(dev, mode, NULL);
9135 return 0;
9136}
9137
9138static void bpf_xdp_link_release(struct bpf_link *link)
9139{
9140 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9141
9142 rtnl_lock();
9143
9144 /* if racing with net_device's tear down, xdp_link->dev might be
9145 * already NULL, in which case link was already auto-detached
9146 */
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009147 if (xdp_link->dev) {
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009148 WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009149 xdp_link->dev = NULL;
9150 }
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009151
9152 rtnl_unlock();
9153}
9154
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009155static int bpf_xdp_link_detach(struct bpf_link *link)
9156{
9157 bpf_xdp_link_release(link);
9158 return 0;
9159}
9160
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009161static void bpf_xdp_link_dealloc(struct bpf_link *link)
9162{
9163 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9164
9165 kfree(xdp_link);
9166}
9167
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009168static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
9169 struct seq_file *seq)
9170{
9171 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9172 u32 ifindex = 0;
9173
9174 rtnl_lock();
9175 if (xdp_link->dev)
9176 ifindex = xdp_link->dev->ifindex;
9177 rtnl_unlock();
9178
9179 seq_printf(seq, "ifindex:\t%u\n", ifindex);
9180}
9181
9182static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
9183 struct bpf_link_info *info)
9184{
9185 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9186 u32 ifindex = 0;
9187
9188 rtnl_lock();
9189 if (xdp_link->dev)
9190 ifindex = xdp_link->dev->ifindex;
9191 rtnl_unlock();
9192
9193 info->xdp.ifindex = ifindex;
9194 return 0;
9195}
9196
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009197static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
9198 struct bpf_prog *old_prog)
9199{
9200 struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
9201 enum bpf_xdp_mode mode;
9202 bpf_op_t bpf_op;
9203 int err = 0;
9204
9205 rtnl_lock();
9206
9207 /* link might have been auto-released already, so fail */
9208 if (!xdp_link->dev) {
9209 err = -ENOLINK;
9210 goto out_unlock;
9211 }
9212
9213 if (old_prog && link->prog != old_prog) {
9214 err = -EPERM;
9215 goto out_unlock;
9216 }
9217 old_prog = link->prog;
9218 if (old_prog == new_prog) {
9219 /* no-op, don't disturb drivers */
9220 bpf_prog_put(new_prog);
9221 goto out_unlock;
9222 }
9223
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009224 mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009225 bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
9226 err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
9227 xdp_link->flags, new_prog);
9228 if (err)
9229 goto out_unlock;
9230
9231 old_prog = xchg(&link->prog, new_prog);
9232 bpf_prog_put(old_prog);
9233
9234out_unlock:
9235 rtnl_unlock();
9236 return err;
9237}
9238
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009239static const struct bpf_link_ops bpf_xdp_link_lops = {
9240 .release = bpf_xdp_link_release,
9241 .dealloc = bpf_xdp_link_dealloc,
Andrii Nakryiko73b11c2a2020-07-31 11:28:26 -07009242 .detach = bpf_xdp_link_detach,
Andrii Nakryikoc1931c92020-07-21 23:45:59 -07009243 .show_fdinfo = bpf_xdp_link_show_fdinfo,
9244 .fill_link_info = bpf_xdp_link_fill_link_info,
Andrii Nakryiko026a4c22020-07-21 23:45:58 -07009245 .update_prog = bpf_xdp_link_update,
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009246};
9247
9248int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
9249{
9250 struct net *net = current->nsproxy->net_ns;
9251 struct bpf_link_primer link_primer;
9252 struct bpf_xdp_link *link;
9253 struct net_device *dev;
9254 int err, fd;
9255
9256 dev = dev_get_by_index(net, attr->link_create.target_ifindex);
9257 if (!dev)
9258 return -EINVAL;
9259
9260 link = kzalloc(sizeof(*link), GFP_USER);
9261 if (!link) {
9262 err = -ENOMEM;
9263 goto out_put_dev;
9264 }
9265
9266 bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog);
9267 link->dev = dev;
9268 link->flags = attr->link_create.flags;
9269
9270 err = bpf_link_prime(&link->link, &link_primer);
9271 if (err) {
9272 kfree(link);
9273 goto out_put_dev;
9274 }
9275
9276 rtnl_lock();
9277 err = dev_xdp_attach_link(dev, NULL, link);
9278 rtnl_unlock();
9279
9280 if (err) {
9281 bpf_link_cleanup(&link_primer);
9282 goto out_put_dev;
9283 }
9284
9285 fd = bpf_link_settle(&link_primer);
9286 /* link itself doesn't hold dev's refcnt to not complicate shutdown */
9287 dev_put(dev);
9288 return fd;
9289
9290out_put_dev:
9291 dev_put(dev);
9292 return err;
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07009293}
9294
9295/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07009296 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
9297 * @dev: device
Jakub Kicinskib5d60982017-05-01 15:53:43 -07009298 * @extack: netlink extended ack
Brenden Blancoa7862b42016-07-19 12:16:48 -07009299 * @fd: new program fd or negative value to clear
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009300 * @expected_fd: old program fd that userspace expects to replace or clear
Daniel Borkmann85de8572016-11-28 23:16:54 +01009301 * @flags: xdp-related flags
Brenden Blancoa7862b42016-07-19 12:16:48 -07009302 *
9303 * Set or clear a bpf program for a device
9304 */
Jakub Kicinskiddf9f972017-04-30 21:46:46 -07009305int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009306 int fd, int expected_fd, u32 flags)
Brenden Blancoa7862b42016-07-19 12:16:48 -07009307{
Andrii Nakryikoc8a36f12020-08-19 22:28:41 -07009308 enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009309 struct bpf_prog *new_prog = NULL, *old_prog = NULL;
Brenden Blancoa7862b42016-07-19 12:16:48 -07009310 int err;
9311
Daniel Borkmann85de8572016-11-28 23:16:54 +01009312 ASSERT_RTNL();
9313
Toke Høiland-Jørgensen92234c82020-03-25 18:23:26 +01009314 if (fd >= 0) {
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009315 new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
9316 mode != XDP_MODE_SKB);
9317 if (IS_ERR(new_prog))
9318 return PTR_ERR(new_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009319 }
9320
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009321 if (expected_fd >= 0) {
9322 old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
9323 mode != XDP_MODE_SKB);
9324 if (IS_ERR(old_prog)) {
9325 err = PTR_ERR(old_prog);
9326 old_prog = NULL;
9327 goto err_out;
9328 }
Andrii Nakryiko7f0a8382020-07-21 23:45:55 -07009329 }
Brenden Blancoa7862b42016-07-19 12:16:48 -07009330
Andrii Nakryikoaa8d3a72020-07-21 23:45:57 -07009331 err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
Andrii Nakryikod4baa932020-07-21 23:45:56 -07009332
9333err_out:
9334 if (err && new_prog)
9335 bpf_prog_put(new_prog);
9336 if (old_prog)
9337 bpf_prog_put(old_prog);
Brenden Blancoa7862b42016-07-19 12:16:48 -07009338 return err;
9339}
Brenden Blancoa7862b42016-07-19 12:16:48 -07009340
9341/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009342 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07009343 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07009344 *
9345 * Returns a suitable unique value for a new device interface
9346 * number. The caller must hold the rtnl semaphore or the
9347 * dev_base_lock to be sure it remains unique.
9348 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07009349static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009350{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009351 int ifindex = net->ifindex;
tchardingf4563a72017-02-09 17:56:07 +11009352
Linus Torvalds1da177e2005-04-16 15:20:36 -07009353 for (;;) {
9354 if (++ifindex <= 0)
9355 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07009356 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00009357 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009358 }
9359}
9360
Linus Torvalds1da177e2005-04-16 15:20:36 -07009361/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08009362static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07009363DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009364
Stephen Hemminger6f05f622007-03-08 20:46:03 -08009365static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009366{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009367 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07009368 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009369}
9370
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009371static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009372{
Krishna Kumare93737b2009-12-08 22:26:02 +00009373 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009374 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009375
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009376 BUG_ON(dev_boot_phase);
9377 ASSERT_RTNL();
9378
Krishna Kumare93737b2009-12-08 22:26:02 +00009379 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009380 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00009381 * for initialization unwind. Remove those
9382 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009383 */
9384 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00009385 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
9386 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009387
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009388 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00009389 list_del(&dev->unreg_list);
9390 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009391 }
Eric Dumazet449f4542011-05-19 12:24:16 +00009392 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009393 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00009394 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009395
Octavian Purdila44345722010-12-13 12:44:07 +00009396 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07009397 list_for_each_entry(dev, head, unreg_list)
9398 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04009399 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009400
Octavian Purdila44345722010-12-13 12:44:07 +00009401 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009402 /* And unlink it from device chain. */
9403 unlist_netdevice(dev);
9404
9405 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009406 }
Eric Dumazet41852492016-08-26 12:50:39 -07009407 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009408
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009409 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009410
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009411 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009412 struct sk_buff *skb = NULL;
9413
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009414 /* Shutdown queueing discipline. */
9415 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009416
Jakub Kicinskibd0b2e72017-12-01 15:08:57 -08009417 dev_xdp_uninstall(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009418
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009419 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +11009420 * this device. They should clean all the things.
9421 */
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009422 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
9423
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009424 if (!dev->rtnl_link_ops ||
9425 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Vlad Yasevich3d3ea5a2017-05-27 10:14:34 -04009426 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
Nicolas Dichtel38e01b32018-01-25 15:01:39 +01009427 GFP_KERNEL, NULL, 0);
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009428
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009429 /*
9430 * Flush the unicast and multicast chains
9431 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00009432 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00009433 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009434
Jiri Pirko36fbf1e2019-09-30 11:48:16 +02009435 netdev_name_node_alt_flush(dev);
Jiri Pirkoff927412019-09-30 11:48:15 +02009436 netdev_name_node_free(dev->name_node);
9437
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009438 if (dev->netdev_ops->ndo_uninit)
9439 dev->netdev_ops->ndo_uninit(dev);
9440
Mahesh Bandewar395eea62014-12-03 13:46:24 -08009441 if (skb)
9442 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07009443
Jiri Pirko9ff162a2013-01-03 22:48:49 +00009444 /* Notifier chain MUST detach us all upper devices. */
9445 WARN_ON(netdev_has_any_upper_dev(dev));
David Ahern0f524a82016-10-17 19:15:52 -07009446 WARN_ON(netdev_has_any_lower_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009447
9448 /* Remove entries from kobject tree */
9449 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00009450#ifdef CONFIG_XPS
9451 /* Remove XPS queueing entries */
9452 netif_reset_xps_queues_gt(dev, 0);
9453#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009454 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009455
Eric W. Biederman850a5452011-10-13 22:25:23 +00009456 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009457
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00009458 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009459 dev_put(dev);
9460}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009461
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009462static void rollback_registered(struct net_device *dev)
9463{
9464 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009465
Eric Dumazet9b5e3832009-10-27 07:04:19 +00009466 list_add(&dev->unreg_list, &single);
9467 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00009468 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07009469}
9470
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009471static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
9472 struct net_device *upper, netdev_features_t features)
9473{
9474 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9475 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009476 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009477
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009478 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009479 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009480 if (!(upper->wanted_features & feature)
9481 && (features & feature)) {
9482 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
9483 &feature, upper->name);
9484 features &= ~feature;
9485 }
9486 }
9487
9488 return features;
9489}
9490
9491static void netdev_sync_lower_features(struct net_device *upper,
9492 struct net_device *lower, netdev_features_t features)
9493{
9494 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
9495 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009496 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009497
Hauke Mehrtens3b89ea92019-02-15 17:58:54 +01009498 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05009499 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009500 if (!(features & feature) && (lower->features & feature)) {
9501 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
9502 &feature, lower->name);
9503 lower->wanted_features &= ~feature;
Cong Wangdd912302020-05-07 12:19:03 -07009504 __netdev_update_features(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009505
9506 if (unlikely(lower->features & feature))
9507 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
9508 &feature, lower->name);
Cong Wangdd912302020-05-07 12:19:03 -07009509 else
9510 netdev_features_change(lower);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009511 }
9512 }
9513}
9514
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009515static netdev_features_t netdev_fix_features(struct net_device *dev,
9516 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07009517{
Michał Mirosław57422dc2011-01-22 12:14:12 +00009518 /* Fix illegal checksum combinations */
9519 if ((features & NETIF_F_HW_CSUM) &&
9520 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009521 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00009522 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
9523 }
9524
Herbert Xub63365a2008-10-23 01:11:29 -07009525 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009526 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009527 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00009528 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07009529 }
9530
Pravin B Shelarec5f0612013-03-07 09:28:01 +00009531 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
9532 !(features & NETIF_F_IP_CSUM)) {
9533 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
9534 features &= ~NETIF_F_TSO;
9535 features &= ~NETIF_F_TSO_ECN;
9536 }
9537
9538 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
9539 !(features & NETIF_F_IPV6_CSUM)) {
9540 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
9541 features &= ~NETIF_F_TSO6;
9542 }
9543
Alexander Duyckb1dc4972016-05-02 09:38:24 -07009544 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
9545 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
9546 features &= ~NETIF_F_TSO_MANGLEID;
9547
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00009548 /* TSO ECN requires that TSO is present as well. */
9549 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
9550 features &= ~NETIF_F_TSO_ECN;
9551
Michał Mirosław212b5732011-02-15 16:59:16 +00009552 /* Software GSO depends on SG. */
9553 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04009554 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00009555 features &= ~NETIF_F_GSO;
9556 }
9557
Alexander Duyck802ab552016-04-10 21:45:03 -04009558 /* GSO partial features require GSO partial be set */
9559 if ((features & dev->gso_partial_features) &&
9560 !(features & NETIF_F_GSO_PARTIAL)) {
9561 netdev_dbg(dev,
9562 "Dropping partially supported GSO features since no GSO partial.\n");
9563 features &= ~dev->gso_partial_features;
9564 }
9565
Michael Chanfb1f5f72017-12-16 03:09:40 -05009566 if (!(features & NETIF_F_RXCSUM)) {
9567 /* NETIF_F_GRO_HW implies doing RXCSUM since every packet
9568 * successfully merged by hardware must also have the
9569 * checksum verified by hardware. If the user does not
9570 * want to enable RXCSUM, logically, we should disable GRO_HW.
9571 */
9572 if (features & NETIF_F_GRO_HW) {
9573 netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
9574 features &= ~NETIF_F_GRO_HW;
9575 }
9576 }
9577
Gal Pressmande8d5ab2018-03-12 11:48:49 +02009578 /* LRO/HW-GRO features cannot be combined with RX-FCS */
9579 if (features & NETIF_F_RXFCS) {
9580 if (features & NETIF_F_LRO) {
9581 netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
9582 features &= ~NETIF_F_LRO;
9583 }
9584
9585 if (features & NETIF_F_GRO_HW) {
9586 netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
9587 features &= ~NETIF_F_GRO_HW;
9588 }
Gal Pressmane6c6a922018-03-04 14:12:04 +02009589 }
9590
Herbert Xub63365a2008-10-23 01:11:29 -07009591 return features;
9592}
Herbert Xub63365a2008-10-23 01:11:29 -07009593
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009594int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00009595{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009596 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009597 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009598 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05009599 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00009600
Michał Mirosław87267482011-04-12 09:56:38 +00009601 ASSERT_RTNL();
9602
Michał Mirosław5455c692011-02-15 16:59:17 +00009603 features = netdev_get_wanted_features(dev);
9604
9605 if (dev->netdev_ops->ndo_fix_features)
9606 features = dev->netdev_ops->ndo_fix_features(dev, features);
9607
9608 /* driver might be less strict about feature dependencies */
9609 features = netdev_fix_features(dev, features);
9610
Randy Dunlap4250b752020-09-17 21:35:15 -07009611 /* some features can't be enabled if they're off on an upper device */
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009612 netdev_for_each_upper_dev_rcu(dev, upper, iter)
9613 features = netdev_sync_upper_features(dev, upper, features);
9614
Michał Mirosław5455c692011-02-15 16:59:17 +00009615 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05009616 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00009617
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009618 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
9619 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00009620
9621 if (dev->netdev_ops->ndo_set_features)
9622 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01009623 else
9624 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00009625
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009626 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00009627 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00009628 "set_features() failed (%d); wanted %pNF, left %pNF\n",
9629 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01009630 /* return non-0 since some features might have changed and
9631 * it's better to fire a spurious notification than miss it
9632 */
9633 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009634 }
9635
Jarod Wilsone7868a82015-11-03 23:09:32 -05009636sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05009637 /* some features must be disabled on lower devices when disabled
9638 * on an upper device (think: bonding master or bridge)
9639 */
9640 netdev_for_each_lower_dev(dev, lower, iter)
9641 netdev_sync_lower_features(dev, lower, features);
9642
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009643 if (!err) {
9644 netdev_features_t diff = features ^ dev->features;
9645
9646 if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
9647 /* udp_tunnel_{get,drop}_rx_info both need
9648 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
9649 * device, or they won't do anything.
9650 * Thus we need to update dev->features
9651 * *before* calling udp_tunnel_get_rx_info,
9652 * but *after* calling udp_tunnel_drop_rx_info.
9653 */
9654 if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
9655 dev->features = features;
9656 udp_tunnel_get_rx_info(dev);
9657 } else {
9658 udp_tunnel_drop_rx_info(dev);
9659 }
9660 }
9661
Gal Pressman9daae9b2018-03-28 17:46:54 +03009662 if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
9663 if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
9664 dev->features = features;
9665 err |= vlan_get_rx_ctag_filter_info(dev);
9666 } else {
9667 vlan_drop_rx_ctag_filter_info(dev);
9668 }
9669 }
9670
9671 if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
9672 if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
9673 dev->features = features;
9674 err |= vlan_get_rx_stag_filter_info(dev);
9675 } else {
9676 vlan_drop_rx_stag_filter_info(dev);
9677 }
9678 }
9679
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009680 dev->features = features;
Sabrina Dubrocaae847f42017-07-21 12:49:31 +02009681 }
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009682
Jarod Wilsone7868a82015-11-03 23:09:32 -05009683 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009684}
9685
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009686/**
9687 * netdev_update_features - recalculate device features
9688 * @dev: the device to check
9689 *
9690 * Recalculate dev->features set and send notifications if it
9691 * has changed. Should be called after driver or hardware dependent
9692 * conditions might have changed that influence the features.
9693 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009694void netdev_update_features(struct net_device *dev)
9695{
9696 if (__netdev_update_features(dev))
9697 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00009698}
9699EXPORT_SYMBOL(netdev_update_features);
9700
Linus Torvalds1da177e2005-04-16 15:20:36 -07009701/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00009702 * netdev_change_features - recalculate device features
9703 * @dev: the device to check
9704 *
9705 * Recalculate dev->features set and send notifications even
9706 * if they have not changed. Should be called instead of
9707 * netdev_update_features() if also dev->vlan_features might
9708 * have changed to allow the changes to be propagated to stacked
9709 * VLAN devices.
9710 */
9711void netdev_change_features(struct net_device *dev)
9712{
9713 __netdev_update_features(dev);
9714 netdev_features_change(dev);
9715}
9716EXPORT_SYMBOL(netdev_change_features);
9717
9718/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009719 * netif_stacked_transfer_operstate - transfer operstate
9720 * @rootdev: the root or lower level device to transfer state from
9721 * @dev: the device to transfer operstate to
9722 *
9723 * Transfer operational state from root to device. This is normally
9724 * called when a stacking relationship exists between the root
9725 * device and the device(a leaf device).
9726 */
9727void netif_stacked_transfer_operstate(const struct net_device *rootdev,
9728 struct net_device *dev)
9729{
9730 if (rootdev->operstate == IF_OPER_DORMANT)
9731 netif_dormant_on(dev);
9732 else
9733 netif_dormant_off(dev);
9734
Andrew Lunneec517cd2020-04-20 00:11:50 +02009735 if (rootdev->operstate == IF_OPER_TESTING)
9736 netif_testing_on(dev);
9737 else
9738 netif_testing_off(dev);
9739
Zhang Shengju0575c862017-04-26 17:49:38 +08009740 if (netif_carrier_ok(rootdev))
9741 netif_carrier_on(dev);
9742 else
9743 netif_carrier_off(dev);
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009744}
9745EXPORT_SYMBOL(netif_stacked_transfer_operstate);
9746
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009747static int netif_alloc_rx_queues(struct net_device *dev)
9748{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009749 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00009750 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05309751 size_t sz = count * sizeof(*rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009752 int err = 0;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009753
Tom Herbertbd25fa72010-10-18 18:00:16 +00009754 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009755
Michal Hockodcda9b02017-07-12 14:36:45 -07009756 rx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009757 if (!rx)
9758 return -ENOMEM;
9759
Tom Herbertbd25fa72010-10-18 18:00:16 +00009760 dev->_rx = rx;
9761
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009762 for (i = 0; i < count; i++) {
Tom Herbertfe822242010-11-09 10:47:38 +00009763 rx[i].dev = dev;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009764
9765 /* XDP RX-queue setup */
9766 err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i);
9767 if (err < 0)
9768 goto err_rxq_info;
9769 }
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009770 return 0;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009771
9772err_rxq_info:
9773 /* Rollback successful reg's and free other resources */
9774 while (i--)
9775 xdp_rxq_info_unreg(&rx[i].xdp_rxq);
Jakub Kicinski141b52a2018-01-10 01:20:01 -08009776 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009777 dev->_rx = NULL;
9778 return err;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009779}
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009780
9781static void netif_free_rx_queues(struct net_device *dev)
9782{
9783 unsigned int i, count = dev->num_rx_queues;
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009784
9785 /* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
9786 if (!dev->_rx)
9787 return;
9788
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009789 for (i = 0; i < count; i++)
Jakub Kicinski82aaff22018-01-10 01:20:02 -08009790 xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
9791
9792 kvfree(dev->_rx);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +01009793}
Eric Dumazet1b4bf462010-09-23 17:26:35 +00009794
Changli Gaoaa942102010-12-04 02:31:41 +00009795static void netdev_init_one_queue(struct net_device *dev,
9796 struct netdev_queue *queue, void *_unused)
9797{
9798 /* Initialize queue lock */
9799 spin_lock_init(&queue->_xmit_lock);
Cong Wang1a33e102020-05-02 22:22:19 -07009800 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
Changli Gaoaa942102010-12-04 02:31:41 +00009801 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00009802 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00009803 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00009804#ifdef CONFIG_BQL
9805 dql_init(&queue->dql, HZ);
9806#endif
Changli Gaoaa942102010-12-04 02:31:41 +00009807}
9808
Eric Dumazet60877a32013-06-20 01:15:51 -07009809static void netif_free_tx_queues(struct net_device *dev)
9810{
WANG Cong4cb28972014-06-02 15:55:22 -07009811 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07009812}
9813
Tom Herberte6484932010-10-18 18:04:39 +00009814static int netif_alloc_netdev_queues(struct net_device *dev)
9815{
9816 unsigned int count = dev->num_tx_queues;
9817 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07009818 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00009819
Eric Dumazetd3397272015-07-06 17:13:26 +02009820 if (count < 1 || count > 0xffff)
9821 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00009822
Michal Hockodcda9b02017-07-12 14:36:45 -07009823 tx = kvzalloc(sz, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hockoda6bc572017-05-08 15:57:31 -07009824 if (!tx)
9825 return -ENOMEM;
9826
Tom Herberte6484932010-10-18 18:04:39 +00009827 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00009828
Tom Herberte6484932010-10-18 18:04:39 +00009829 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
9830 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00009831
9832 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00009833}
9834
Denys Vlasenkoa2029242015-05-11 21:17:53 +02009835void netif_tx_stop_all_queues(struct net_device *dev)
9836{
9837 unsigned int i;
9838
9839 for (i = 0; i < dev->num_tx_queues; i++) {
9840 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
tchardingf4563a72017-02-09 17:56:07 +11009841
Denys Vlasenkoa2029242015-05-11 21:17:53 +02009842 netif_tx_stop_queue(txq);
9843 }
9844}
9845EXPORT_SYMBOL(netif_tx_stop_all_queues);
9846
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08009847/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07009848 * register_netdevice - register a network device
9849 * @dev: device to register
9850 *
9851 * Take a completed network device structure and add it to the kernel
9852 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
9853 * chain. 0 is returned on success. A negative errno code is returned
9854 * on a failure to set up the device, or if the name is a duplicate.
9855 *
9856 * Callers must hold the rtnl semaphore. You may want
9857 * register_netdev() instead of this.
9858 *
9859 * BUGS:
9860 * The locking appears insufficient to guarantee two parallel registers
9861 * will not get the same name.
9862 */
9863
9864int register_netdevice(struct net_device *dev)
9865{
Linus Torvalds1da177e2005-04-16 15:20:36 -07009866 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009867 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009868
Florian Fainellie283de32018-04-30 14:20:05 -07009869 BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
9870 NETDEV_FEATURE_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009871 BUG_ON(dev_boot_phase);
9872 ASSERT_RTNL();
9873
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009874 might_sleep();
9875
Linus Torvalds1da177e2005-04-16 15:20:36 -07009876 /* When net_device's are persistent, this will be fatal. */
9877 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009878 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009879
Jakub Kicinski9000edb2020-03-16 13:47:12 -07009880 ret = ethtool_check_ops(dev->ethtool_ops);
9881 if (ret)
9882 return ret;
9883
David S. Millerf1f28aa2008-07-15 00:08:33 -07009884 spin_lock_init(&dev->addr_list_lock);
Cong Wang845e0eb2020-06-08 14:53:01 -07009885 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009886
Gao feng828de4f2012-09-13 20:58:27 +00009887 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00009888 if (ret < 0)
9889 goto out;
9890
Eric Dumazet9077f052019-10-03 08:59:24 -07009891 ret = -ENOMEM;
Jiri Pirkoff927412019-09-30 11:48:15 +02009892 dev->name_node = netdev_name_node_head_alloc(dev);
9893 if (!dev->name_node)
9894 goto out;
9895
Linus Torvalds1da177e2005-04-16 15:20:36 -07009896 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08009897 if (dev->netdev_ops->ndo_init) {
9898 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009899 if (ret) {
9900 if (ret > 0)
9901 ret = -EIO;
Dan Carpenter42c17fa2019-12-03 17:12:39 +03009902 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009903 }
9904 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09009905
Patrick McHardyf6469682013-04-19 02:04:27 +00009906 if (((dev->hw_features | dev->features) &
9907 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00009908 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
9909 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
9910 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
9911 ret = -EINVAL;
9912 goto err_uninit;
9913 }
9914
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00009915 ret = -EBUSY;
9916 if (!dev->ifindex)
9917 dev->ifindex = dev_new_index(net);
9918 else if (__dev_get_by_index(net, dev->ifindex))
9919 goto err_uninit;
9920
Michał Mirosław5455c692011-02-15 16:59:17 +00009921 /* Transfer changeable features to wanted_features and enable
9922 * software offloads (GSO and GRO).
9923 */
Steffen Klassert1a3c9982020-01-25 11:26:43 +01009924 dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
Michał Mirosław14d12322011-02-22 16:52:28 +00009925 dev->features |= NETIF_F_SOFT_FEATURES;
Sabrina Dubrocad764a122017-07-21 12:49:28 +02009926
9927 if (dev->netdev_ops->ndo_udp_tunnel_add) {
9928 dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9929 dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
9930 }
9931
Michał Mirosław14d12322011-02-22 16:52:28 +00009932 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07009933
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009934 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00009935 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009936
Alexander Duyck7f348a62016-04-20 16:51:00 -04009937 /* If IPv4 TCP segmentation offload is supported we should also
9938 * allow the device to enable segmenting the frame with the option
9939 * of ignoring a static IP ID value. This doesn't enable the
9940 * feature itself but allows the user to enable it later.
9941 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04009942 if (dev->hw_features & NETIF_F_TSO)
9943 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04009944 if (dev->vlan_features & NETIF_F_TSO)
9945 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
9946 if (dev->mpls_features & NETIF_F_TSO)
9947 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
9948 if (dev->hw_enc_features & NETIF_F_TSO)
9949 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07009950
Michał Mirosław1180e7d2011-07-14 14:41:11 -07009951 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00009952 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07009953 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00009954
Pravin B Shelaree579672013-03-07 09:28:08 +00009955 /* Make NETIF_F_SG inheritable to tunnel devices.
9956 */
Alexander Duyck802ab552016-04-10 21:45:03 -04009957 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00009958
Simon Horman0d89d202013-05-23 21:02:52 +00009959 /* Make NETIF_F_SG inheritable to MPLS.
9960 */
9961 dev->mpls_features |= NETIF_F_SG;
9962
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00009963 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
9964 ret = notifier_to_errno(ret);
9965 if (ret)
9966 goto err_uninit;
9967
Eric W. Biederman8b41d182007-09-26 22:02:53 -07009968 ret = netdev_register_kobject(dev);
Jouni Hogandercb626bf2020-01-20 09:51:03 +02009969 if (ret) {
9970 dev->reg_state = NETREG_UNREGISTERED;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07009971 goto err_uninit;
Jouni Hogandercb626bf2020-01-20 09:51:03 +02009972 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07009973 dev->reg_state = NETREG_REGISTERED;
9974
Michał Mirosław6cb6a272011-04-02 22:48:47 -07009975 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00009976
Linus Torvalds1da177e2005-04-16 15:20:36 -07009977 /*
9978 * Default initial state at registry is that the
9979 * device is present.
9980 */
9981
9982 set_bit(__LINK_STATE_PRESENT, &dev->state);
9983
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01009984 linkwatch_init_dev(dev);
9985
Linus Torvalds1da177e2005-04-16 15:20:36 -07009986 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009987 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02009988 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04009989 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009990
Jiri Pirko948b3372013-01-08 01:38:25 +00009991 /* If the device has permanent device address, driver should
9992 * set dev_addr and also addr_assign_type should be set to
9993 * NET_ADDR_PERM (default value).
9994 */
9995 if (dev->addr_assign_type == NET_ADDR_PERM)
9996 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
9997
Linus Torvalds1da177e2005-04-16 15:20:36 -07009998 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07009999 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -070010000 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010001 if (ret) {
10002 rollback_registered(dev);
Subash Abhinov Kasiviswanathan10cc5142019-09-10 14:02:57 -060010003 rcu_barrier();
10004
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010005 dev->reg_state = NETREG_UNREGISTERED;
Yang Yingliang814152a2020-06-16 09:39:21 +000010006 /* We should put the kobject that hold in
10007 * netdev_unregister_kobject(), otherwise
10008 * the net device cannot be freed when
10009 * driver calls free_netdev(), because the
10010 * kobject is being hold.
10011 */
10012 kobject_put(&dev->dev.kobj);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -070010013 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010014 /*
10015 * Prevent userspace races by waiting until the network
10016 * device is fully setup before sending notifications.
10017 */
Patrick McHardya2835762010-02-26 06:34:51 +000010018 if (!dev->rtnl_link_ops ||
10019 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010020 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010021
10022out:
10023 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010024
10025err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -080010026 if (dev->netdev_ops->ndo_uninit)
10027 dev->netdev_ops->ndo_uninit(dev);
David S. Millercf124db2017-05-08 12:52:56 -040010028 if (dev->priv_destructor)
10029 dev->priv_destructor(dev);
Dan Carpenter42c17fa2019-12-03 17:12:39 +030010030err_free_name:
10031 netdev_name_node_free(dev->name_node);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -070010032 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010033}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010034EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010035
10036/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010037 * init_dummy_netdev - init a dummy network device for NAPI
10038 * @dev: device to init
10039 *
10040 * This takes a network device structure and initialize the minimum
10041 * amount of fields so it can be used to schedule NAPI polls without
10042 * registering a full blown interface. This is to be used by drivers
10043 * that need to tie several hardware interfaces to a single NAPI
10044 * poll scheduler due to HW limitations.
10045 */
10046int init_dummy_netdev(struct net_device *dev)
10047{
10048 /* Clear everything. Note we don't initialize spinlocks
10049 * are they aren't supposed to be taken by any of the
10050 * NAPI code and this dummy netdev is supposed to be
10051 * only ever used for NAPI polls
10052 */
10053 memset(dev, 0, sizeof(struct net_device));
10054
10055 /* make sure we BUG if trying to hit standard
10056 * register/unregister code path
10057 */
10058 dev->reg_state = NETREG_DUMMY;
10059
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010060 /* NAPI wants this */
10061 INIT_LIST_HEAD(&dev->napi_list);
10062
10063 /* a dummy interface is started by default */
10064 set_bit(__LINK_STATE_PRESENT, &dev->state);
10065 set_bit(__LINK_STATE_START, &dev->state);
10066
Josh Elsasser35edfdc2019-01-26 14:38:33 -080010067 /* napi_busy_loop stats accounting wants this */
10068 dev_net_set(dev, &init_net);
10069
Eric Dumazet29b44332010-10-11 10:22:12 +000010070 /* Note : We dont allocate pcpu_refcnt for dummy devices,
10071 * because users of this 'device' dont need to change
10072 * its refcount.
10073 */
10074
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -080010075 return 0;
10076}
10077EXPORT_SYMBOL_GPL(init_dummy_netdev);
10078
10079
10080/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010081 * register_netdev - register a network device
10082 * @dev: device to register
10083 *
10084 * Take a completed network device structure and add it to the kernel
10085 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
10086 * chain. 0 is returned on success. A negative errno code is returned
10087 * on a failure to set up the device, or if the name is a duplicate.
10088 *
Borislav Petkov38b4da382007-04-20 22:14:10 -070010089 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -070010090 * and expands the device name if you passed a format string to
10091 * alloc_netdev.
10092 */
10093int register_netdev(struct net_device *dev)
10094{
10095 int err;
10096
Kirill Tkhaib0f3deb2018-03-14 22:17:28 +030010097 if (rtnl_lock_killable())
10098 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010099 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010100 rtnl_unlock();
10101 return err;
10102}
10103EXPORT_SYMBOL(register_netdev);
10104
Eric Dumazet29b44332010-10-11 10:22:12 +000010105int netdev_refcnt_read(const struct net_device *dev)
10106{
10107 int i, refcnt = 0;
10108
10109 for_each_possible_cpu(i)
10110 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
10111 return refcnt;
10112}
10113EXPORT_SYMBOL(netdev_refcnt_read);
10114
Mauro Carvalho Chehabde2b5412020-09-22 13:22:52 +020010115#define WAIT_REFS_MIN_MSECS 1
10116#define WAIT_REFS_MAX_MSECS 250
Ben Hutchings2c530402012-07-10 10:55:09 +000010117/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010118 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +000010119 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010120 *
10121 * This is called when unregistering network devices.
10122 *
10123 * Any protocol or device that holds a reference should register
10124 * for netdevice notification, and cleanup and put back the
10125 * reference if they receive an UNREGISTER event.
10126 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010127 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010128 */
10129static void netdev_wait_allrefs(struct net_device *dev)
10130{
10131 unsigned long rebroadcast_time, warning_time;
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010132 int wait = 0, refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010133
Eric Dumazete014deb2009-11-17 05:59:21 +000010134 linkwatch_forget_dev(dev);
10135
Linus Torvalds1da177e2005-04-16 15:20:36 -070010136 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +000010137 refcnt = netdev_refcnt_read(dev);
10138
10139 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070010140 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010141 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010142
10143 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -070010144 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010145
Eric Dumazet748e2d92012-08-22 21:50:59 +000010146 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010147 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +000010148 rtnl_lock();
10149
Linus Torvalds1da177e2005-04-16 15:20:36 -070010150 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
10151 &dev->state)) {
10152 /* We must not have linkwatch events
10153 * pending on unregister. If this
10154 * happens, we simply run the queue
10155 * unscheduled, resulting in a noop
10156 * for this device.
10157 */
10158 linkwatch_run_queue();
10159 }
10160
Stephen Hemminger6756ae42006-03-20 22:23:58 -080010161 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010162
10163 rebroadcast_time = jiffies;
10164 }
10165
Francesco Ruggeri0e4be9e2020-09-18 13:19:01 -070010166 if (!wait) {
10167 rcu_barrier();
10168 wait = WAIT_REFS_MIN_MSECS;
10169 } else {
10170 msleep(wait);
10171 wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
10172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010173
Eric Dumazet29b44332010-10-11 10:22:12 +000010174 refcnt = netdev_refcnt_read(dev);
10175
Eric Dumazetd7c04b02019-05-16 08:09:57 -070010176 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010177 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
10178 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010179 warning_time = jiffies;
10180 }
10181 }
10182}
10183
10184/* The sequence is:
10185 *
10186 * rtnl_lock();
10187 * ...
10188 * register_netdevice(x1);
10189 * register_netdevice(x2);
10190 * ...
10191 * unregister_netdevice(y1);
10192 * unregister_netdevice(y2);
10193 * ...
10194 * rtnl_unlock();
10195 * free_netdev(y1);
10196 * free_netdev(y2);
10197 *
Herbert Xu58ec3b42008-10-07 15:50:03 -070010198 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -070010199 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010200 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -070010201 * without deadlocking with linkwatch via keventd.
10202 * 2) Since we run with the RTNL semaphore not held, we can sleep
10203 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -070010204 *
10205 * We must not return until all unregister events added during
10206 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010208void netdev_run_todo(void)
10209{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010210 struct list_head list;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010211#ifdef CONFIG_LOCKDEP
10212 struct list_head unlink_list;
10213
10214 list_replace_init(&net_unlink_list, &unlink_list);
10215
10216 while (!list_empty(&unlink_list)) {
10217 struct net_device *dev = list_first_entry(&unlink_list,
10218 struct net_device,
10219 unlink_list);
Taehee Yoo0e8b8d62020-10-15 16:26:06 +000010220 list_del_init(&dev->unlink_list);
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010221 dev->nested_level = dev->lower_level - 1;
10222 }
10223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010224
Linus Torvalds1da177e2005-04-16 15:20:36 -070010225 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010226 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -070010227
10228 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -070010229
Eric Dumazet0115e8e2012-08-22 17:19:46 +000010230
10231 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +000010232 if (!list_empty(&list))
10233 rcu_barrier();
10234
Linus Torvalds1da177e2005-04-16 15:20:36 -070010235 while (!list_empty(&list)) {
10236 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +000010237 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010238 list_del(&dev->todo_list);
10239
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010240 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010241 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070010242 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010243 dump_stack();
10244 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010245 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010246
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -070010247 dev->reg_state = NETREG_UNREGISTERED;
10248
10249 netdev_wait_allrefs(dev);
10250
10251 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +000010252 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -080010253 BUG_ON(!list_empty(&dev->ptype_all));
10254 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +000010255 WARN_ON(rcu_access_pointer(dev->ip_ptr));
10256 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
David Ahern330c7272018-02-13 08:52:00 -080010257#if IS_ENABLED(CONFIG_DECNET)
Ilpo Järvinen547b7922008-07-25 21:43:18 -070010258 WARN_ON(dev->dn_ptr);
David Ahern330c7272018-02-13 08:52:00 -080010259#endif
David S. Millercf124db2017-05-08 12:52:56 -040010260 if (dev->priv_destructor)
10261 dev->priv_destructor(dev);
10262 if (dev->needs_free_netdev)
10263 free_netdev(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010264
Eric W. Biederman50624c92013-09-23 21:19:49 -070010265 /* Report a network device has been unregistered */
10266 rtnl_lock();
10267 dev_net(dev)->dev_unreg_count--;
10268 __rtnl_unlock();
10269 wake_up(&netdev_unregistering_wq);
10270
Stephen Hemminger9093bbb2007-05-19 15:39:25 -070010271 /* Free network device */
10272 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010274}
10275
Jarod Wilson92566452016-02-01 18:51:04 -050010276/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
10277 * all the same fields in the same order as net_device_stats, with only
10278 * the type differing, but rtnl_link_stats64 may have additional fields
10279 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +000010280 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010281void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
10282 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +000010283{
10284#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -050010285 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys9af99592017-07-03 03:20:13 +020010286 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -050010287 /* zero out counters that only exist in rtnl_link_stats64 */
10288 memset((char *)stats64 + sizeof(*netdev_stats), 0,
10289 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010290#else
Jarod Wilson92566452016-02-01 18:51:04 -050010291 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010292 const unsigned long *src = (const unsigned long *)netdev_stats;
10293 u64 *dst = (u64 *)stats64;
10294
Jarod Wilson92566452016-02-01 18:51:04 -050010295 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010296 for (i = 0; i < n; i++)
10297 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -050010298 /* zero out counters that only exist in rtnl_link_stats64 */
10299 memset((char *)stats64 + n * sizeof(u64), 0,
10300 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +000010301#endif
10302}
Eric Dumazet77a1abf2012-03-05 04:50:09 +000010303EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +000010304
Eric Dumazetd83345a2009-11-16 03:36:51 +000010305/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010306 * dev_get_stats - get network device statistics
10307 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -070010308 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010309 *
Ben Hutchingsd7753512010-07-09 09:12:41 +000010310 * Get network statistics from device. Return @storage.
10311 * The device driver may provide its own method by setting
10312 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
10313 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010314 */
Ben Hutchingsd7753512010-07-09 09:12:41 +000010315struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
10316 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +000010317{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010318 const struct net_device_ops *ops = dev->netdev_ops;
10319
Eric Dumazet28172732010-07-07 14:58:56 -070010320 if (ops->ndo_get_stats64) {
10321 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010322 ops->ndo_get_stats64(dev, storage);
10323 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +000010324 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +000010325 } else {
10326 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -070010327 }
Eric Dumazet6f64ec72017-06-27 07:02:20 -070010328 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
10329 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
10330 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -070010331 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -070010332}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -080010333EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -070010334
Heiner Kallweit44fa32f2020-10-12 10:01:27 +020010335/**
10336 * dev_fetch_sw_netstats - get per-cpu network device statistics
10337 * @s: place to store stats
10338 * @netstats: per-cpu network stats to read from
10339 *
10340 * Read per-cpu network statistics and populate the related fields in @s.
10341 */
10342void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
10343 const struct pcpu_sw_netstats __percpu *netstats)
10344{
10345 int cpu;
10346
10347 for_each_possible_cpu(cpu) {
10348 const struct pcpu_sw_netstats *stats;
10349 struct pcpu_sw_netstats tmp;
10350 unsigned int start;
10351
10352 stats = per_cpu_ptr(netstats, cpu);
10353 do {
10354 start = u64_stats_fetch_begin_irq(&stats->syncp);
10355 tmp.rx_packets = stats->rx_packets;
10356 tmp.rx_bytes = stats->rx_bytes;
10357 tmp.tx_packets = stats->tx_packets;
10358 tmp.tx_bytes = stats->tx_bytes;
10359 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
10360
10361 s->rx_packets += tmp.rx_packets;
10362 s->rx_bytes += tmp.rx_bytes;
10363 s->tx_packets += tmp.tx_packets;
10364 s->tx_bytes += tmp.tx_bytes;
10365 }
10366}
10367EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
10368
Eric Dumazet24824a02010-10-02 06:11:55 +000010369struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -070010370{
Eric Dumazet24824a02010-10-02 06:11:55 +000010371 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -070010372
Eric Dumazet24824a02010-10-02 06:11:55 +000010373#ifdef CONFIG_NET_CLS_ACT
10374 if (queue)
10375 return queue;
10376 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
10377 if (!queue)
10378 return NULL;
10379 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -080010380 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +000010381 queue->qdisc_sleeping = &noop_qdisc;
10382 rcu_assign_pointer(dev->ingress_queue, queue);
10383#endif
10384 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -070010385}
10386
Eric Dumazet2c60db02012-09-16 09:17:26 +000010387static const struct ethtool_ops default_ethtool_ops;
10388
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +000010389void netdev_set_default_ethtool_ops(struct net_device *dev,
10390 const struct ethtool_ops *ops)
10391{
10392 if (dev->ethtool_ops == &default_ethtool_ops)
10393 dev->ethtool_ops = ops;
10394}
10395EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
10396
Eric Dumazet74d332c2013-10-30 13:10:44 -070010397void netdev_freemem(struct net_device *dev)
10398{
10399 char *addr = (char *)dev - dev->padded;
10400
WANG Cong4cb28972014-06-02 15:55:22 -070010401 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010402}
10403
Linus Torvalds1da177e2005-04-16 15:20:36 -070010404/**
tcharding722c9a02017-02-09 17:56:04 +110010405 * alloc_netdev_mqs - allocate network device
10406 * @sizeof_priv: size of private data to allocate space for
10407 * @name: device name format string
10408 * @name_assign_type: origin of device name
10409 * @setup: callback to initialize device
10410 * @txqs: the number of TX subqueues to allocate
10411 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -070010412 *
tcharding722c9a02017-02-09 17:56:04 +110010413 * Allocates a struct net_device with private data area for driver use
10414 * and performs basic initialization. Also allocates subqueue structs
10415 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010416 */
Tom Herbert36909ea2011-01-09 19:36:31 +000010417struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +020010418 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +000010419 void (*setup)(struct net_device *),
10420 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010421{
Linus Torvalds1da177e2005-04-16 15:20:36 -070010422 struct net_device *dev;
Alexey Dobriyan52a59bd2017-09-21 23:33:29 +030010423 unsigned int alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010424 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010425
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -070010426 BUG_ON(strlen(name) >= sizeof(dev->name));
10427
Tom Herbert36909ea2011-01-09 19:36:31 +000010428 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010429 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +000010430 return NULL;
10431 }
10432
Tom Herbert36909ea2011-01-09 19:36:31 +000010433 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000010434 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +000010435 return NULL;
10436 }
Tom Herbert36909ea2011-01-09 19:36:31 +000010437
David S. Millerfd2ea0a2008-07-17 01:56:23 -070010438 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010439 if (sizeof_priv) {
10440 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010441 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -070010442 alloc_size += sizeof_priv;
10443 }
10444 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010445 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010446
Michal Hockodcda9b02017-07-12 14:36:45 -070010447 p = kvzalloc(alloc_size, GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Joe Perches62b59422013-02-04 16:48:16 +000010448 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010449 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010450
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +000010451 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010452 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010453
Eric Dumazet29b44332010-10-11 10:22:12 +000010454 dev->pcpu_refcnt = alloc_percpu(int);
10455 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -070010456 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010457
Linus Torvalds1da177e2005-04-16 15:20:36 -070010458 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +000010459 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010460
Jiri Pirko22bedad32010-04-01 21:22:57 +000010461 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010462 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +000010463
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010464 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010465
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -070010466 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +000010467 dev->gso_max_segs = GSO_MAX_SEGS;
Taehee Yoo5343da42019-10-21 18:47:50 +000010468 dev->upper_level = 1;
10469 dev->lower_level = 1;
Taehee Yoo1fc70ed2020-09-25 18:13:29 +000010470#ifdef CONFIG_LOCKDEP
10471 dev->nested_level = 0;
10472 INIT_LIST_HEAD(&dev->unlink_list);
10473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070010474
Herbert Xud565b0a2008-12-15 23:38:52 -080010475 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010476 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -070010477 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +000010478 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +020010479 INIT_LIST_HEAD(&dev->adj_list.upper);
10480 INIT_LIST_HEAD(&dev->adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -080010481 INIT_LIST_HEAD(&dev->ptype_all);
10482 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Pirko93642e12020-01-25 12:17:08 +010010483 INIT_LIST_HEAD(&dev->net_notifier_list);
Jiri Kosina59cc1f62016-08-10 11:05:15 +020010484#ifdef CONFIG_NET_SCHED
10485 hash_init(dev->qdisc_hash);
10486#endif
Eric Dumazet02875872014-10-05 18:38:35 -070010487 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010488 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010489
Phil Suttera8131042016-02-17 15:37:43 +010010490 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +020010491 dev->priv_flags |= IFF_NO_QUEUE;
Jesper Dangaard Brouer11597082016-11-03 14:56:06 +010010492 dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
Phil Suttera8131042016-02-17 15:37:43 +010010493 }
Phil Sutter906470c2015-08-18 10:30:48 +020010494
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010495 dev->num_tx_queues = txqs;
10496 dev->real_num_tx_queues = txqs;
10497 if (netif_alloc_netdev_queues(dev))
10498 goto free_all;
10499
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010500 dev->num_rx_queues = rxqs;
10501 dev->real_num_rx_queues = rxqs;
10502 if (netif_alloc_rx_queues(dev))
10503 goto free_all;
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010504
Linus Torvalds1da177e2005-04-16 15:20:36 -070010505 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +020010506 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +000010507 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +000010508 if (!dev->ethtool_ops)
10509 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +020010510
Daniel Borkmann357b6cc2020-03-18 10:33:22 +010010511 nf_hook_ingress_init(dev);
Pablo Neirae687ad62015-05-13 18:19:38 +020010512
Linus Torvalds1da177e2005-04-16 15:20:36 -070010513 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010514
David S. Miller8d3bdbd2011-02-08 15:02:50 -080010515free_all:
10516 free_netdev(dev);
10517 return NULL;
10518
Eric Dumazet29b44332010-10-11 10:22:12 +000010519free_pcpu:
10520 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -070010521free_dev:
10522 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +000010523 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010524}
Tom Herbert36909ea2011-01-09 19:36:31 +000010525EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010526
10527/**
tcharding722c9a02017-02-09 17:56:04 +110010528 * free_netdev - free network device
10529 * @dev: device
Linus Torvalds1da177e2005-04-16 15:20:36 -070010530 *
tcharding722c9a02017-02-09 17:56:04 +110010531 * This function does the last stage of destroying an allocated device
10532 * interface. The reference to the device object is released. If this
10533 * is the last reference then it will be freed.Must be called in process
10534 * context.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010535 */
10536void free_netdev(struct net_device *dev)
10537{
Herbert Xud565b0a2008-12-15 23:38:52 -080010538 struct napi_struct *p, *n;
10539
Eric Dumazet93d05d42015-11-18 06:31:03 -080010540 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -070010541 netif_free_tx_queues(dev);
Jesper Dangaard Brouere817f852018-01-03 11:26:09 +010010542 netif_free_rx_queues(dev);
David S. Millere8a04642008-07-17 00:34:19 -070010543
Eric Dumazet33d480c2011-08-11 19:30:52 +000010544 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +000010545
Jiri Pirkof001fde2009-05-05 02:48:28 +000010546 /* Flush device addresses */
10547 dev_addr_flush(dev);
10548
Herbert Xud565b0a2008-12-15 23:38:52 -080010549 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
10550 netif_napi_del(p);
10551
Eric Dumazet29b44332010-10-11 10:22:12 +000010552 free_percpu(dev->pcpu_refcnt);
10553 dev->pcpu_refcnt = NULL;
Toke Høiland-Jørgensen75ccae62020-01-16 16:14:44 +010010554 free_percpu(dev->xdp_bulkq);
10555 dev->xdp_bulkq = NULL;
Eric Dumazet29b44332010-10-11 10:22:12 +000010556
Stephen Hemminger3041a062006-05-26 13:25:24 -070010557 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010558 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -070010559 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010560 return;
10561 }
10562
10563 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
10564 dev->reg_state = NETREG_RELEASED;
10565
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -070010566 /* will free via device release */
10567 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010568}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010569EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010570
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010571/**
10572 * synchronize_net - Synchronize with packet receive processing
10573 *
10574 * Wait for packets currently being received to be done.
10575 * Does not block later packets from starting.
10576 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +090010577void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010578{
10579 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +000010580 if (rtnl_is_locked())
10581 synchronize_rcu_expedited();
10582 else
10583 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -070010584}
Eric Dumazetd1b19df2009-09-03 01:29:39 -070010585EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010586
10587/**
Eric Dumazet44a08732009-10-27 07:03:04 +000010588 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070010589 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +000010590 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -080010591 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010592 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010593 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +000010594 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010595 *
10596 * Callers must hold the rtnl semaphore. You may want
10597 * unregister_netdev() instead of this.
10598 */
10599
Eric Dumazet44a08732009-10-27 07:03:04 +000010600void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010601{
Herbert Xua6620712007-12-12 19:21:56 -080010602 ASSERT_RTNL();
10603
Eric Dumazet44a08732009-10-27 07:03:04 +000010604 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +000010605 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +000010606 } else {
10607 rollback_registered(dev);
10608 /* Finish processing unregister after unlock */
10609 net_set_todo(dev);
10610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010611}
Eric Dumazet44a08732009-10-27 07:03:04 +000010612EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010613
10614/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010615 * unregister_netdevice_many - unregister many devices
10616 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -070010617 *
10618 * Note: As most callers use a stack allocated list_head,
10619 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010620 */
10621void unregister_netdevice_many(struct list_head *head)
10622{
10623 struct net_device *dev;
10624
10625 if (!list_empty(head)) {
10626 rollback_registered_many(head);
10627 list_for_each_entry(dev, head, unreg_list)
10628 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -070010629 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010630 }
10631}
Eric Dumazet63c80992009-10-27 07:06:49 +000010632EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +000010633
10634/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070010635 * unregister_netdev - remove device from the kernel
10636 * @dev: device
10637 *
10638 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -080010639 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010640 *
10641 * This is just a wrapper for unregister_netdevice that takes
10642 * the rtnl semaphore. In general you want to use this and not
10643 * unregister_netdevice.
10644 */
10645void unregister_netdev(struct net_device *dev)
10646{
10647 rtnl_lock();
10648 unregister_netdevice(dev);
10649 rtnl_unlock();
10650}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010651EXPORT_SYMBOL(unregister_netdev);
10652
Eric W. Biedermance286d32007-09-12 13:53:49 +020010653/**
10654 * dev_change_net_namespace - move device to different nethost namespace
10655 * @dev: device
10656 * @net: network namespace
10657 * @pat: If not NULL name pattern to try if the current device name
10658 * is already taken in the destination network namespace.
10659 *
10660 * This function shuts down a device interface and moves it
10661 * to a new network namespace. On success 0 is returned, on
10662 * a failure a netagive errno code is returned.
10663 *
10664 * Callers must hold the rtnl semaphore.
10665 */
10666
10667int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
10668{
Christian Brauneref6a4c82020-02-27 04:37:19 +010010669 struct net *net_old = dev_net(dev);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010670 int err, new_nsid, new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010671
10672 ASSERT_RTNL();
10673
10674 /* Don't allow namespace local devices to be moved. */
10675 err = -EINVAL;
10676 if (dev->features & NETIF_F_NETNS_LOCAL)
10677 goto out;
10678
10679 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010680 if (dev->reg_state != NETREG_REGISTERED)
10681 goto out;
10682
10683 /* Get out if there is nothing todo */
10684 err = 0;
Christian Brauneref6a4c82020-02-27 04:37:19 +010010685 if (net_eq(net_old, net))
Eric W. Biedermance286d32007-09-12 13:53:49 +020010686 goto out;
10687
10688 /* Pick the destination device name, and ensure
10689 * we can use it in the destination network namespace.
10690 */
10691 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +000010692 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020010693 /* We get here if we can't use the current device name */
10694 if (!pat)
10695 goto out;
Li RongQing7892bd02018-06-19 17:23:17 +080010696 err = dev_get_valid_name(net, dev, pat);
10697 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +020010698 goto out;
10699 }
10700
10701 /*
10702 * And now a mini version of register_netdevice unregister_netdevice.
10703 */
10704
10705 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -070010706 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010707
10708 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010709 unlist_netdevice(dev);
10710
10711 synchronize_net();
10712
10713 /* Shutdown queueing discipline. */
10714 dev_shutdown(dev);
10715
10716 /* Notify protocols, that we are about to destroy
tchardingeb13da12017-02-09 17:56:06 +110010717 * this device. They should clean all the things.
10718 *
10719 * Note that dev->reg_state stays at NETREG_REGISTERED.
10720 * This is wanted because this way 8021q and macvlan know
10721 * the device is just moving and can keep their slaves up.
10722 */
Eric W. Biedermance286d32007-09-12 13:53:49 +020010723 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +000010724 rcu_barrier();
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010725
Guillaume Naultd4e4fdf2019-10-23 18:39:04 +020010726 new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010727 /* If there is an ifindex conflict assign a new one */
10728 if (__dev_get_by_index(net, dev->ifindex))
10729 new_ifindex = dev_new_index(net);
10730 else
10731 new_ifindex = dev->ifindex;
10732
10733 rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
10734 new_ifindex);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010735
10736 /*
10737 * Flush the unicast and multicast chains
10738 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +000010739 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +000010740 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010741
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010742 /* Send a netdev-removed uevent to the old namespace */
10743 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040010744 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010745
Jiri Pirko93642e12020-01-25 12:17:08 +010010746 /* Move per-net netdevice notifiers that are following the netdevice */
10747 move_netdevice_notifiers_dev_net(dev, net);
10748
Eric W. Biedermance286d32007-09-12 13:53:49 +020010749 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +090010750 dev_net_set(dev, net);
Nicolas Dichtel38e01b32018-01-25 15:01:39 +010010751 dev->ifindex = new_ifindex;
Eric W. Biedermance286d32007-09-12 13:53:49 +020010752
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010753 /* Send a netdev-add uevent to the new namespace */
10754 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +040010755 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +000010756
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010757 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -070010758 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -070010759 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010760
Christian Brauneref6a4c82020-02-27 04:37:19 +010010761 /* Adapt owner in case owning user namespace of target network
10762 * namespace is different from the original one.
10763 */
10764 err = netdev_change_owner(dev, net_old, net);
10765 WARN_ON(err);
10766
Eric W. Biedermance286d32007-09-12 13:53:49 +020010767 /* Add the device back in the hashes */
10768 list_netdevice(dev);
10769
10770 /* Notify protocols, that a new device appeared. */
10771 call_netdevice_notifiers(NETDEV_REGISTER, dev);
10772
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010773 /*
10774 * Prevent userspace races by waiting until the network
10775 * device is fully setup before sending notifications.
10776 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -070010777 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +000010778
Eric W. Biedermance286d32007-09-12 13:53:49 +020010779 synchronize_net();
10780 err = 0;
10781out:
10782 return err;
10783}
Johannes Berg463d0182009-07-14 00:33:35 +020010784EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +020010785
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010786static int dev_cpu_dead(unsigned int oldcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010787{
10788 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010789 struct sk_buff *skb;
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010790 unsigned int cpu;
Ashwanth Goli97d8b6e2017-06-13 16:54:55 +053010791 struct softnet_data *sd, *oldsd, *remsd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010792
Linus Torvalds1da177e2005-04-16 15:20:36 -070010793 local_irq_disable();
10794 cpu = smp_processor_id();
10795 sd = &per_cpu(softnet_data, cpu);
10796 oldsd = &per_cpu(softnet_data, oldcpu);
10797
10798 /* Find end of our completion_queue. */
10799 list_skb = &sd->completion_queue;
10800 while (*list_skb)
10801 list_skb = &(*list_skb)->next;
10802 /* Append completion queue from offline CPU. */
10803 *list_skb = oldsd->completion_queue;
10804 oldsd->completion_queue = NULL;
10805
Linus Torvalds1da177e2005-04-16 15:20:36 -070010806 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +000010807 if (oldsd->output_queue) {
10808 *sd->output_queue_tailp = oldsd->output_queue;
10809 sd->output_queue_tailp = oldsd->output_queue_tailp;
10810 oldsd->output_queue = NULL;
10811 oldsd->output_queue_tailp = &oldsd->output_queue;
10812 }
Eric Dumazetac64da02015-01-15 17:04:22 -080010813 /* Append NAPI poll list from offline CPU, with one exception :
10814 * process_backlog() must be called by cpu owning percpu backlog.
10815 * We properly handle process_queue & input_pkt_queue later.
10816 */
10817 while (!list_empty(&oldsd->poll_list)) {
10818 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
10819 struct napi_struct,
10820 poll_list);
10821
10822 list_del_init(&napi->poll_list);
10823 if (napi->poll == process_backlog)
10824 napi->state = 0;
10825 else
10826 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +000010827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010828
10829 raise_softirq_irqoff(NET_TX_SOFTIRQ);
10830 local_irq_enable();
10831
ashwanth@codeaurora.org773fc8f2017-06-09 14:24:58 +053010832#ifdef CONFIG_RPS
10833 remsd = oldsd->rps_ipi_list;
10834 oldsd->rps_ipi_list = NULL;
10835#endif
10836 /* send out pending IPI's on offline CPU */
10837 net_rps_send_ipi(remsd);
10838
Linus Torvalds1da177e2005-04-16 15:20:36 -070010839 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +000010840 while ((skb = __skb_dequeue(&oldsd->process_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);
10843 }
Eric Dumazetac64da02015-01-15 17:04:22 -080010844 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -080010845 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +000010846 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -070010847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070010848
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010010849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010850}
Linus Torvalds1da177e2005-04-16 15:20:36 -070010851
Herbert Xu7f353bf2007-08-10 15:47:58 -070010852/**
Herbert Xub63365a2008-10-23 01:11:29 -070010853 * netdev_increment_features - increment feature set by one
10854 * @all: current feature set
10855 * @one: new feature set
10856 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -070010857 *
10858 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -070010859 * @one to the master device with current feature set @all. Will not
10860 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -070010861 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +000010862netdev_features_t netdev_increment_features(netdev_features_t all,
10863 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -070010864{
Tom Herbertc8cd0982015-12-14 11:19:44 -080010865 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -080010866 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +000010867 mask |= NETIF_F_VLAN_CHALLENGED;
10868
Tom Herberta1882222015-12-14 11:19:43 -080010869 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +000010870 all &= one | ~NETIF_F_ALL_FOR_ALL;
10871
Michał Mirosław1742f182011-04-22 06:31:16 +000010872 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -080010873 if (all & NETIF_F_HW_CSUM)
10874 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -070010875
10876 return all;
10877}
Herbert Xub63365a2008-10-23 01:11:29 -070010878EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -070010879
Baruch Siach430f03c2013-06-02 20:43:55 +000010880static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010881{
10882 int i;
10883 struct hlist_head *hash;
10884
Kees Cook6da2ec52018-06-12 13:55:00 -070010885 hash = kmalloc_array(NETDEV_HASHENTRIES, sizeof(*hash), GFP_KERNEL);
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010886 if (hash != NULL)
10887 for (i = 0; i < NETDEV_HASHENTRIES; i++)
10888 INIT_HLIST_HEAD(&hash[i]);
10889
10890 return hash;
10891}
10892
Eric W. Biederman881d9662007-09-17 11:56:21 -070010893/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -070010894static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070010895{
Li RongQingd9f37d02018-07-13 14:41:36 +080010896 BUILD_BUG_ON(GRO_HASH_BUCKETS >
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080010897 8 * sizeof_field(struct napi_struct, gro_bitmask));
Li RongQingd9f37d02018-07-13 14:41:36 +080010898
Rustad, Mark D734b6542012-07-18 09:06:07 +000010899 if (net != &init_net)
10900 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -070010901
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010902 net->dev_name_head = netdev_create_hash();
10903 if (net->dev_name_head == NULL)
10904 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010905
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010906 net->dev_index_head = netdev_create_hash();
10907 if (net->dev_index_head == NULL)
10908 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010909
Jiri Pirkoa30c7b42019-09-30 10:15:10 +020010910 RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
10911
Eric W. Biederman881d9662007-09-17 11:56:21 -070010912 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -070010913
10914err_idx:
10915 kfree(net->dev_name_head);
10916err_name:
10917 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -070010918}
10919
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010920/**
10921 * netdev_drivername - network driver for the device
10922 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -070010923 *
10924 * Determine network driver for device.
10925 */
David S. Miller3019de12011-06-06 16:41:33 -070010926const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -070010927{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -070010928 const struct device_driver *driver;
10929 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -070010930 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -070010931
10932 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -070010933 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -070010934 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070010935
10936 driver = parent->driver;
10937 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -070010938 return driver->name;
10939 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -070010940}
10941
Joe Perches6ea754e2014-09-22 11:10:50 -070010942static void __netdev_printk(const char *level, const struct net_device *dev,
10943 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +000010944{
Joe Perchesb004ff42012-09-12 20:12:19 -070010945 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -070010946 dev_printk_emit(level[1] - '0',
10947 dev->dev.parent,
10948 "%s %s %s%s: %pV",
10949 dev_driver_string(dev->dev.parent),
10950 dev_name(dev->dev.parent),
10951 netdev_name(dev), netdev_reg_state(dev),
10952 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010953 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -070010954 printk("%s%s%s: %pV",
10955 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010956 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -070010957 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010958 }
Joe Perches256df2f2010-06-27 01:02:35 +000010959}
10960
Joe Perches6ea754e2014-09-22 11:10:50 -070010961void netdev_printk(const char *level, const struct net_device *dev,
10962 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +000010963{
10964 struct va_format vaf;
10965 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +000010966
10967 va_start(args, format);
10968
10969 vaf.fmt = format;
10970 vaf.va = &args;
10971
Joe Perches6ea754e2014-09-22 11:10:50 -070010972 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -070010973
Joe Perches256df2f2010-06-27 01:02:35 +000010974 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +000010975}
10976EXPORT_SYMBOL(netdev_printk);
10977
10978#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -070010979void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +000010980{ \
Joe Perches256df2f2010-06-27 01:02:35 +000010981 struct va_format vaf; \
10982 va_list args; \
10983 \
10984 va_start(args, fmt); \
10985 \
10986 vaf.fmt = fmt; \
10987 vaf.va = &args; \
10988 \
Joe Perches6ea754e2014-09-22 11:10:50 -070010989 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -070010990 \
Joe Perches256df2f2010-06-27 01:02:35 +000010991 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +000010992} \
10993EXPORT_SYMBOL(func);
10994
10995define_netdev_printk_level(netdev_emerg, KERN_EMERG);
10996define_netdev_printk_level(netdev_alert, KERN_ALERT);
10997define_netdev_printk_level(netdev_crit, KERN_CRIT);
10998define_netdev_printk_level(netdev_err, KERN_ERR);
10999define_netdev_printk_level(netdev_warn, KERN_WARNING);
11000define_netdev_printk_level(netdev_notice, KERN_NOTICE);
11001define_netdev_printk_level(netdev_info, KERN_INFO);
11002
Pavel Emelyanov46650792007-10-08 20:38:39 -070011003static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -070011004{
11005 kfree(net->dev_name_head);
11006 kfree(net->dev_index_head);
Vasily Averinee21b18b2017-11-12 22:28:46 +030011007 if (net != &init_net)
11008 WARN_ON_ONCE(!list_empty(&net->dev_base_head));
Eric W. Biederman881d9662007-09-17 11:56:21 -070011009}
11010
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011011static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -070011012 .init = netdev_init,
11013 .exit = netdev_exit,
11014};
11015
Pavel Emelyanov46650792007-10-08 20:38:39 -070011016static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +020011017{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011018 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +020011019 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011020 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +020011021 * initial network namespace
11022 */
11023 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011024 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011025 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011026 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +020011027
11028 /* Ignore unmoveable devices (i.e. loopback) */
11029 if (dev->features & NETIF_F_NETNS_LOCAL)
11030 continue;
11031
Eric W. Biedermane008b5f2009-11-29 22:25:30 +000011032 /* Leave virtual devices for the generic cleanup */
11033 if (dev->rtnl_link_ops)
11034 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -080011035
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011036 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011037 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko55b40db2019-07-28 14:56:36 +020011038 if (__dev_get_by_name(&init_net, fb_name))
11039 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011040 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +020011041 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +000011042 pr_emerg("%s: failed to move %s to init_net: %d\n",
11043 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -070011044 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +020011045 }
11046 }
11047 rtnl_unlock();
11048}
11049
Eric W. Biederman50624c92013-09-23 21:19:49 -070011050static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
11051{
11052 /* Return with the rtnl_lock held when there are no network
11053 * devices unregistering in any network namespace in net_list.
11054 */
11055 struct net *net;
11056 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +010011057 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011058
Peter Zijlstraff960a72014-10-29 17:04:56 +010011059 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011060 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -070011061 unregistering = false;
11062 rtnl_lock();
11063 list_for_each_entry(net, net_list, exit_list) {
11064 if (net->dev_unreg_count > 0) {
11065 unregistering = true;
11066 break;
11067 }
11068 }
11069 if (!unregistering)
11070 break;
11071 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +010011072
11073 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011074 }
Peter Zijlstraff960a72014-10-29 17:04:56 +010011075 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -070011076}
11077
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011078static void __net_exit default_device_exit_batch(struct list_head *net_list)
11079{
11080 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040011081 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011082 * Do this across as many network namespaces as possible to
11083 * improve batching efficiency.
11084 */
11085 struct net_device *dev;
11086 struct net *net;
11087 LIST_HEAD(dev_kill_list);
11088
Eric W. Biederman50624c92013-09-23 21:19:49 -070011089 /* To prevent network device cleanup code from dereferencing
11090 * loopback devices or network devices that have been freed
11091 * wait here for all pending unregistrations to complete,
11092 * before unregistring the loopback device and allowing the
11093 * network namespace be freed.
11094 *
11095 * The netdev todo list containing all network devices
11096 * unregistrations that happen in default_device_exit_batch
11097 * will run in the rtnl_unlock() at the end of
11098 * default_device_exit_batch.
11099 */
11100 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011101 list_for_each_entry(net, net_list, exit_list) {
11102 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +020011103 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011104 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
11105 else
11106 unregister_netdevice_queue(dev, &dev_kill_list);
11107 }
11108 }
11109 unregister_netdevice_many(&dev_kill_list);
11110 rtnl_unlock();
11111}
11112
Denis V. Lunev022cbae2007-11-13 03:23:50 -080011113static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +020011114 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +000011115 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +020011116};
11117
Linus Torvalds1da177e2005-04-16 15:20:36 -070011118/*
11119 * Initialize the DEV module. At boot time this walks the device list and
11120 * unhooks any devices that fail to initialise (normally hardware not
11121 * present) and leaves us with a valid list of present and active devices.
11122 *
11123 */
11124
11125/*
11126 * This is called single threaded during boot, so no need
11127 * to take the rtnl semaphore.
11128 */
11129static int __init net_dev_init(void)
11130{
11131 int i, rc = -ENOMEM;
11132
11133 BUG_ON(!dev_boot_phase);
11134
Linus Torvalds1da177e2005-04-16 15:20:36 -070011135 if (dev_proc_init())
11136 goto out;
11137
Eric W. Biederman8b41d182007-09-26 22:02:53 -070011138 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -070011139 goto out;
11140
11141 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +080011142 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070011143 INIT_LIST_HEAD(&ptype_base[i]);
11144
Vlad Yasevich62532da2012-11-15 08:49:10 +000011145 INIT_LIST_HEAD(&offload_base);
11146
Eric W. Biederman881d9662007-09-17 11:56:21 -070011147 if (register_pernet_subsys(&netdev_net_ops))
11148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011149
11150 /*
11151 * Initialise the packet receive queues.
11152 */
11153
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070011154 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -070011155 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011156 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011157
Eric Dumazet41852492016-08-26 12:50:39 -070011158 INIT_WORK(flush, flush_backlog);
11159
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011160 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -070011161 skb_queue_head_init(&sd->process_queue);
Steffen Klassertf53c7232017-12-20 10:41:36 +010011162#ifdef CONFIG_XFRM_OFFLOAD
11163 skb_queue_head_init(&sd->xfrm_backlog);
11164#endif
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011165 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +000011166 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +000011167#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011168 sd->csd.func = rps_trigger_softirq;
11169 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011170 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -070011171#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +000011172
David S. Miller7c4ec742018-07-20 23:37:55 -070011173 init_gro_hash(&sd->backlog);
Eric Dumazete36fa2f2010-04-19 21:17:14 +000011174 sd->backlog.poll = process_backlog;
11175 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -070011176 }
11177
Linus Torvalds1da177e2005-04-16 15:20:36 -070011178 dev_boot_phase = 0;
11179
Eric W. Biederman505d4f72008-11-07 22:54:20 -080011180 /* The loopback device is special if any other network devices
11181 * is present in a network namespace the loopback device must
11182 * be present. Since we now dynamically allocate and free the
11183 * loopback device ensure this invariant is maintained by
11184 * keeping the loopback device as the first device on the
11185 * list of network devices. Ensuring the loopback devices
11186 * is the first device that appears and the last network device
11187 * that disappears.
11188 */
11189 if (register_pernet_device(&loopback_net_ops))
11190 goto out;
11191
11192 if (register_pernet_device(&default_device_ops))
11193 goto out;
11194
Carlos R. Mafra962cf362008-05-15 11:15:37 -030011195 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
11196 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011197
Sebastian Andrzej Siewiorf0bf90d2016-11-03 15:50:04 +010011198 rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
11199 NULL, dev_cpu_dead);
11200 WARN_ON(rc < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070011201 rc = 0;
11202out:
11203 return rc;
11204}
11205
11206subsys_initcall(net_dev_init);