xref: /linux/net/core/dev.c (revision 5c458073553f0ef74f5c8db1bd459c87c722a299)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  *      NET3    Protocol independent device support routines.
4  *
5  *	Derived from the non IP parts of dev.c 1.0.19
6  *              Authors:	Ross Biro
7  *				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
20  *                                      to 2 if register_netdev gets called
21  *                                      before net_dev_init & also removed a
22  *                                      few lines of code in the process.
23  *		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.
35  *              Alan Cox        :       Fix ETH_P_ALL echoback lengths.
36  *		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.
45  *              Alan Cox        :       Fixed nasty side effect of device close
46  *					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
66  *                                      indefinitely on dev->refcnt
67  *              J Hadi Salim    :       - Backlog queue sampling
68  *				        - netif_rx() feedback
69  */
70 
71 #include <linux/uaccess.h>
72 #include <linux/bitmap.h>
73 #include <linux/capability.h>
74 #include <linux/cpu.h>
75 #include <linux/types.h>
76 #include <linux/kernel.h>
77 #include <linux/hash.h>
78 #include <linux/slab.h>
79 #include <linux/sched.h>
80 #include <linux/sched/isolation.h>
81 #include <linux/sched/mm.h>
82 #include <linux/smpboot.h>
83 #include <linux/mutex.h>
84 #include <linux/rwsem.h>
85 #include <linux/string.h>
86 #include <linux/mm.h>
87 #include <linux/socket.h>
88 #include <linux/sockios.h>
89 #include <linux/errno.h>
90 #include <linux/interrupt.h>
91 #include <linux/if_ether.h>
92 #include <linux/netdevice.h>
93 #include <linux/etherdevice.h>
94 #include <linux/ethtool.h>
95 #include <linux/ethtool_netlink.h>
96 #include <linux/skbuff.h>
97 #include <linux/kthread.h>
98 #include <linux/bpf.h>
99 #include <linux/bpf_trace.h>
100 #include <net/net_namespace.h>
101 #include <net/sock.h>
102 #include <net/busy_poll.h>
103 #include <linux/rtnetlink.h>
104 #include <linux/stat.h>
105 #include <net/dsa.h>
106 #include <net/dst.h>
107 #include <net/dst_metadata.h>
108 #include <net/gro.h>
109 #include <net/netdev_queues.h>
110 #include <net/pkt_sched.h>
111 #include <net/pkt_cls.h>
112 #include <net/checksum.h>
113 #include <net/xfrm.h>
114 #include <net/tcx.h>
115 #include <linux/highmem.h>
116 #include <linux/init.h>
117 #include <linux/module.h>
118 #include <linux/netpoll.h>
119 #include <linux/rcupdate.h>
120 #include <linux/delay.h>
121 #include <net/iw_handler.h>
122 #include <asm/current.h>
123 #include <linux/audit.h>
124 #include <linux/dmaengine.h>
125 #include <linux/err.h>
126 #include <linux/ctype.h>
127 #include <linux/if_arp.h>
128 #include <linux/if_vlan.h>
129 #include <linux/ip.h>
130 #include <net/ip.h>
131 #include <net/mpls.h>
132 #include <linux/ipv6.h>
133 #include <linux/in.h>
134 #include <linux/jhash.h>
135 #include <linux/random.h>
136 #include <trace/events/napi.h>
137 #include <trace/events/net.h>
138 #include <trace/events/skb.h>
139 #include <trace/events/qdisc.h>
140 #include <trace/events/xdp.h>
141 #include <linux/inetdevice.h>
142 #include <linux/cpu_rmap.h>
143 #include <linux/static_key.h>
144 #include <linux/hashtable.h>
145 #include <linux/vmalloc.h>
146 #include <linux/if_macvlan.h>
147 #include <linux/errqueue.h>
148 #include <linux/hrtimer.h>
149 #include <linux/netfilter_netdev.h>
150 #include <linux/crash_dump.h>
151 #include <linux/sctp.h>
152 #include <net/udp_tunnel.h>
153 #include <linux/net_namespace.h>
154 #include <linux/indirect_call_wrapper.h>
155 #include <net/devlink.h>
156 #include <linux/pm_runtime.h>
157 #include <linux/prandom.h>
158 #include <linux/once_lite.h>
159 #include <net/netdev_lock.h>
160 #include <net/netdev_rx_queue.h>
161 #include <net/page_pool/types.h>
162 #include <net/page_pool/helpers.h>
163 #include <net/page_pool/memory_provider.h>
164 #include <net/rps.h>
165 #include <linux/phy_link_topology.h>
166 
167 #include "dev.h"
168 #include "devmem.h"
169 #include "net-sysfs.h"
170 
171 static DEFINE_SPINLOCK(ptype_lock);
172 struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
173 
174 static int netif_rx_internal(struct sk_buff *skb);
175 static int call_netdevice_notifiers_extack(unsigned long val,
176 					   struct net_device *dev,
177 					   struct netlink_ext_ack *extack);
178 
179 static DEFINE_MUTEX(ifalias_mutex);
180 
181 /* protects napi_hash addition/deletion and napi_gen_id */
182 static DEFINE_SPINLOCK(napi_hash_lock);
183 
184 static unsigned int napi_gen_id = NR_CPUS;
185 static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
186 
187 static inline void dev_base_seq_inc(struct net *net)
188 {
189 	unsigned int val = net->dev_base_seq + 1;
190 
191 	WRITE_ONCE(net->dev_base_seq, val ?: 1);
192 }
193 
194 static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
195 {
196 	unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
197 
198 	return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
199 }
200 
201 static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
202 {
203 	return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
204 }
205 
206 #ifndef CONFIG_PREEMPT_RT
207 
208 static DEFINE_STATIC_KEY_FALSE(use_backlog_threads_key);
209 
210 static int __init setup_backlog_napi_threads(char *arg)
211 {
212 	static_branch_enable(&use_backlog_threads_key);
213 	return 0;
214 }
215 early_param("thread_backlog_napi", setup_backlog_napi_threads);
216 
217 static bool use_backlog_threads(void)
218 {
219 	return static_branch_unlikely(&use_backlog_threads_key);
220 }
221 
222 #else
223 
224 static bool use_backlog_threads(void)
225 {
226 	return true;
227 }
228 
229 #endif
230 
231 static inline void backlog_lock_irq_save(struct softnet_data *sd,
232 					 unsigned long *flags)
233 {
234 	if (IS_ENABLED(CONFIG_PREEMPT_RT)) {
235 		spin_lock_irqsave(&sd->input_pkt_queue.lock, *flags);
236 	} else {
237 		local_irq_save(*flags);
238 		if (IS_ENABLED(CONFIG_RPS) || use_backlog_threads())
239 			spin_lock(&sd->input_pkt_queue.lock);
240 	}
241 }
242 
243 static inline void backlog_lock_irq_disable(struct softnet_data *sd)
244 {
245 	if (IS_ENABLED(CONFIG_RPS) || use_backlog_threads())
246 		spin_lock_irq(&sd->input_pkt_queue.lock);
247 	else
248 		local_irq_disable();
249 }
250 
251 static inline void backlog_unlock_irq_restore(struct softnet_data *sd,
252 					      unsigned long flags)
253 {
254 	if (IS_ENABLED(CONFIG_PREEMPT_RT)) {
255 		spin_unlock_irqrestore(&sd->input_pkt_queue.lock, flags);
256 	} else {
257 		if (IS_ENABLED(CONFIG_RPS) || use_backlog_threads())
258 			spin_unlock(&sd->input_pkt_queue.lock);
259 		local_irq_restore(flags);
260 	}
261 }
262 
263 static inline void backlog_unlock_irq_enable(struct softnet_data *sd)
264 {
265 	if (IS_ENABLED(CONFIG_RPS) || use_backlog_threads())
266 		spin_unlock_irq(&sd->input_pkt_queue.lock);
267 	else
268 		local_irq_enable();
269 }
270 
271 static struct netdev_name_node *netdev_name_node_alloc(struct net_device *dev,
272 						       const char *name)
273 {
274 	struct netdev_name_node *name_node;
275 
276 	name_node = kmalloc_obj(*name_node);
277 	if (!name_node)
278 		return NULL;
279 	INIT_HLIST_NODE(&name_node->hlist);
280 	name_node->dev = dev;
281 	name_node->name = name;
282 	return name_node;
283 }
284 
285 static struct netdev_name_node *
286 netdev_name_node_head_alloc(struct net_device *dev)
287 {
288 	struct netdev_name_node *name_node;
289 
290 	name_node = netdev_name_node_alloc(dev, dev->name);
291 	if (!name_node)
292 		return NULL;
293 	INIT_LIST_HEAD(&name_node->list);
294 	return name_node;
295 }
296 
297 static void netdev_name_node_free(struct netdev_name_node *name_node)
298 {
299 	kfree(name_node);
300 }
301 
302 static void netdev_name_node_add(struct net *net,
303 				 struct netdev_name_node *name_node)
304 {
305 	hlist_add_head_rcu(&name_node->hlist,
306 			   dev_name_hash(net, name_node->name));
307 }
308 
309 static void netdev_name_node_del(struct netdev_name_node *name_node)
310 {
311 	hlist_del_rcu(&name_node->hlist);
312 }
313 
314 static struct netdev_name_node *netdev_name_node_lookup(struct net *net,
315 							const char *name)
316 {
317 	struct hlist_head *head = dev_name_hash(net, name);
318 	struct netdev_name_node *name_node;
319 
320 	hlist_for_each_entry(name_node, head, hlist)
321 		if (!strcmp(name_node->name, name))
322 			return name_node;
323 	return NULL;
324 }
325 
326 static struct netdev_name_node *netdev_name_node_lookup_rcu(struct net *net,
327 							    const char *name)
328 {
329 	struct hlist_head *head = dev_name_hash(net, name);
330 	struct netdev_name_node *name_node;
331 
332 	hlist_for_each_entry_rcu(name_node, head, hlist)
333 		if (!strcmp(name_node->name, name))
334 			return name_node;
335 	return NULL;
336 }
337 
338 bool netdev_name_in_use(struct net *net, const char *name)
339 {
340 	return netdev_name_node_lookup(net, name);
341 }
342 EXPORT_SYMBOL(netdev_name_in_use);
343 
344 int netdev_name_node_alt_create(struct net_device *dev, const char *name)
345 {
346 	struct netdev_name_node *name_node;
347 	struct net *net = dev_net(dev);
348 
349 	name_node = netdev_name_node_lookup(net, name);
350 	if (name_node)
351 		return -EEXIST;
352 	name_node = netdev_name_node_alloc(dev, name);
353 	if (!name_node)
354 		return -ENOMEM;
355 	netdev_name_node_add(net, name_node);
356 	/* The node that holds dev->name acts as a head of per-device list. */
357 	list_add_tail_rcu(&name_node->list, &dev->name_node->list);
358 
359 	return 0;
360 }
361 
362 static void netdev_name_node_alt_free(struct rcu_head *head)
363 {
364 	struct netdev_name_node *name_node =
365 		container_of(head, struct netdev_name_node, rcu);
366 
367 	kfree(name_node->name);
368 	netdev_name_node_free(name_node);
369 }
370 
371 static void __netdev_name_node_alt_destroy(struct netdev_name_node *name_node)
372 {
373 	netdev_name_node_del(name_node);
374 	list_del_rcu(&name_node->list);
375 	call_rcu(&name_node->rcu, netdev_name_node_alt_free);
376 }
377 
378 int netdev_name_node_alt_destroy(struct net_device *dev, const char *name)
379 {
380 	struct netdev_name_node *name_node;
381 	struct net *net = dev_net(dev);
382 
383 	name_node = netdev_name_node_lookup(net, name);
384 	if (!name_node)
385 		return -ENOENT;
386 	/* lookup might have found our primary name or a name belonging
387 	 * to another device.
388 	 */
389 	if (name_node == dev->name_node || name_node->dev != dev)
390 		return -EINVAL;
391 
392 	__netdev_name_node_alt_destroy(name_node);
393 	return 0;
394 }
395 
396 static void netdev_name_node_alt_flush(struct net_device *dev)
397 {
398 	struct netdev_name_node *name_node, *tmp;
399 
400 	list_for_each_entry_safe(name_node, tmp, &dev->name_node->list, list) {
401 		list_del(&name_node->list);
402 		netdev_name_node_alt_free(&name_node->rcu);
403 	}
404 }
405 
406 /* Device list insertion */
407 static void list_netdevice(struct net_device *dev)
408 {
409 	struct netdev_name_node *name_node;
410 	struct net *net = dev_net(dev);
411 
412 	ASSERT_RTNL();
413 
414 	list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
415 	netdev_name_node_add(net, dev->name_node);
416 	hlist_add_head_rcu(&dev->index_hlist,
417 			   dev_index_hash(net, dev->ifindex));
418 
419 	netdev_for_each_altname(dev, name_node)
420 		netdev_name_node_add(net, name_node);
421 
422 	/* We reserved the ifindex, this can't fail */
423 	WARN_ON(xa_store(&net->dev_by_index, dev->ifindex, dev, GFP_KERNEL));
424 
425 	dev_base_seq_inc(net);
426 }
427 
428 /* Device list removal
429  * caller must respect a RCU grace period before freeing/reusing dev
430  */
431 static void unlist_netdevice(struct net_device *dev)
432 {
433 	struct netdev_name_node *name_node;
434 	struct net *net = dev_net(dev);
435 
436 	ASSERT_RTNL();
437 
438 	xa_erase(&net->dev_by_index, dev->ifindex);
439 
440 	netdev_for_each_altname(dev, name_node)
441 		netdev_name_node_del(name_node);
442 
443 	/* Unlink dev from the device chain */
444 	list_del_rcu(&dev->dev_list);
445 	netdev_name_node_del(dev->name_node);
446 	hlist_del_rcu(&dev->index_hlist);
447 
448 	dev_base_seq_inc(dev_net(dev));
449 }
450 
451 /*
452  *	Our notifier list
453  */
454 
455 static RAW_NOTIFIER_HEAD(netdev_chain);
456 
457 /*
458  *	Device drivers call our routines to queue packets here. We empty the
459  *	queue in the local softnet handler.
460  */
461 
462 DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data) = {
463 	.process_queue_bh_lock = INIT_LOCAL_LOCK(process_queue_bh_lock),
464 };
465 EXPORT_PER_CPU_SYMBOL(softnet_data);
466 
467 /* Page_pool has a lockless array/stack to alloc/recycle pages.
468  * PP consumers must pay attention to run APIs in the appropriate context
469  * (e.g. NAPI context).
470  */
471 DEFINE_PER_CPU(struct page_pool_bh, system_page_pool) = {
472 	.bh_lock = INIT_LOCAL_LOCK(bh_lock),
473 };
474 
475 #ifdef CONFIG_LOCKDEP
476 /*
477  * register_netdevice() inits txq->_xmit_lock and sets lockdep class
478  * according to dev->type
479  */
480 static const unsigned short netdev_lock_type[] = {
481 	 ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
482 	 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
483 	 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
484 	 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
485 	 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
486 	 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
487 	 ARPHRD_CAN, ARPHRD_MCTP,
488 	 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
489 	 ARPHRD_RAWHDLC, ARPHRD_RAWIP,
490 	 ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
491 	 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
492 	 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
493 	 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
494 	 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
495 	 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
496 	 ARPHRD_IEEE80211_RADIOTAP,
497 	 ARPHRD_IEEE802154, ARPHRD_IEEE802154_MONITOR,
498 	 ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
499 	 ARPHRD_CAIF, ARPHRD_IP6GRE, ARPHRD_NETLINK, ARPHRD_6LOWPAN,
500 	 ARPHRD_VSOCKMON,
501 	 ARPHRD_VOID, ARPHRD_NONE};
502 
503 static const char *const netdev_lock_name[] = {
504 	"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
505 	"_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
506 	"_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
507 	"_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
508 	"_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
509 	"_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
510 	"_xmit_CAN", "_xmit_MCTP",
511 	"_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
512 	"_xmit_RAWHDLC", "_xmit_RAWIP",
513 	"_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
514 	"_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
515 	"_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
516 	"_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
517 	"_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
518 	"_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
519 	"_xmit_IEEE80211_RADIOTAP",
520 	"_xmit_IEEE802154", "_xmit_IEEE802154_MONITOR",
521 	"_xmit_PHONET", "_xmit_PHONET_PIPE",
522 	"_xmit_CAIF", "_xmit_IP6GRE", "_xmit_NETLINK", "_xmit_6LOWPAN",
523 	"_xmit_VSOCKMON",
524 	"_xmit_VOID", "_xmit_NONE"};
525 
526 static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
527 static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
528 
529 static inline unsigned short netdev_lock_pos(unsigned short dev_type)
530 {
531 	int i;
532 
533 	for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
534 		if (netdev_lock_type[i] == dev_type)
535 			return i;
536 	/* the last key is used by default */
537 	WARN_ONCE(1, "netdev_lock_pos() could not find dev_type=%u\n", dev_type);
538 	return ARRAY_SIZE(netdev_lock_type) - 1;
539 }
540 
541 static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
542 						 unsigned short dev_type)
543 {
544 	int i;
545 
546 	i = netdev_lock_pos(dev_type);
547 	lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
548 				   netdev_lock_name[i]);
549 }
550 
551 static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
552 {
553 	int i;
554 
555 	i = netdev_lock_pos(dev->type);
556 	lockdep_set_class_and_name(&dev->addr_list_lock,
557 				   &netdev_addr_lock_key[i],
558 				   netdev_lock_name[i]);
559 }
560 #else
561 static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
562 						 unsigned short dev_type)
563 {
564 }
565 
566 static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
567 {
568 }
569 #endif
570 
571 /*******************************************************************************
572  *
573  *		Protocol management and registration routines
574  *
575  *******************************************************************************/
576 
577 
578 /*
579  *	Add a protocol ID to the list. Now that the input handler is
580  *	smarter we can dispense with all the messy stuff that used to be
581  *	here.
582  *
583  *	BEWARE!!! Protocol handlers, mangling input packets,
584  *	MUST BE last in hash buckets and checking protocol handlers
585  *	MUST start from promiscuous ptype_all chain in net_bh.
586  *	It is true now, do not change it.
587  *	Explanation follows: if protocol handler, mangling packet, will
588  *	be the first on list, it is not able to sense, that packet
589  *	is cloned and should be copied-on-write, so that it will
590  *	change it and subsequent readers will get broken packet.
591  *							--ANK (980803)
592  */
593 
594 static inline struct list_head *ptype_head(const struct packet_type *pt)
595 {
596 	if (pt->type == htons(ETH_P_ALL)) {
597 		if (!pt->af_packet_net && !pt->dev)
598 			return NULL;
599 
600 		return pt->dev ? &pt->dev->ptype_all :
601 				 &pt->af_packet_net->ptype_all;
602 	}
603 
604 	if (pt->dev)
605 		return &pt->dev->ptype_specific;
606 
607 	return pt->af_packet_net ? &pt->af_packet_net->ptype_specific :
608 				 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
609 }
610 
611 /**
612  *	dev_add_pack - add packet handler
613  *	@pt: packet type declaration
614  *
615  *	Add a protocol handler to the networking stack. The passed &packet_type
616  *	is linked into kernel lists and may not be freed until it has been
617  *	removed from the kernel lists.
618  *
619  *	This call does not sleep therefore it can not
620  *	guarantee all CPU's that are in middle of receiving packets
621  *	will see the new packet type (until the next received packet).
622  */
623 
624 void dev_add_pack(struct packet_type *pt)
625 {
626 	struct list_head *head = ptype_head(pt);
627 
628 	if (WARN_ON_ONCE(!head))
629 		return;
630 
631 	spin_lock(&ptype_lock);
632 	list_add_rcu(&pt->list, head);
633 	spin_unlock(&ptype_lock);
634 }
635 EXPORT_SYMBOL(dev_add_pack);
636 
637 /**
638  *	__dev_remove_pack	 - remove packet handler
639  *	@pt: packet type declaration
640  *
641  *	Remove a protocol handler that was previously added to the kernel
642  *	protocol handlers by dev_add_pack(). The passed &packet_type is removed
643  *	from the kernel lists and can be freed or reused once this function
644  *	returns.
645  *
646  *      The packet type might still be in use by receivers
647  *	and must not be freed until after all the CPU's have gone
648  *	through a quiescent state.
649  */
650 void __dev_remove_pack(struct packet_type *pt)
651 {
652 	struct list_head *head = ptype_head(pt);
653 	struct packet_type *pt1;
654 
655 	if (!head)
656 		return;
657 
658 	spin_lock(&ptype_lock);
659 
660 	list_for_each_entry(pt1, head, list) {
661 		if (pt == pt1) {
662 			list_del_rcu(&pt->list);
663 			goto out;
664 		}
665 	}
666 
667 	pr_warn("dev_remove_pack: %p not found\n", pt);
668 out:
669 	spin_unlock(&ptype_lock);
670 }
671 EXPORT_SYMBOL(__dev_remove_pack);
672 
673 /**
674  *	dev_remove_pack	 - remove packet handler
675  *	@pt: packet type declaration
676  *
677  *	Remove a protocol handler that was previously added to the kernel
678  *	protocol handlers by dev_add_pack(). The passed &packet_type is removed
679  *	from the kernel lists and can be freed or reused once this function
680  *	returns.
681  *
682  *	This call sleeps to guarantee that no CPU is looking at the packet
683  *	type after return.
684  */
685 void dev_remove_pack(struct packet_type *pt)
686 {
687 	__dev_remove_pack(pt);
688 
689 	synchronize_net();
690 }
691 EXPORT_SYMBOL(dev_remove_pack);
692 
693 
694 /*******************************************************************************
695  *
696  *			    Device Interface Subroutines
697  *
698  *******************************************************************************/
699 
700 /**
701  *	dev_get_iflink	- get 'iflink' value of a interface
702  *	@dev: targeted interface
703  *
704  *	Indicates the ifindex the interface is linked to.
705  *	Physical interfaces have the same 'ifindex' and 'iflink' values.
706  */
707 
708 int dev_get_iflink(const struct net_device *dev)
709 {
710 	if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
711 		return dev->netdev_ops->ndo_get_iflink(dev);
712 
713 	return READ_ONCE(dev->ifindex);
714 }
715 EXPORT_SYMBOL(dev_get_iflink);
716 
717 /**
718  *	dev_fill_metadata_dst - Retrieve tunnel egress information.
719  *	@dev: targeted interface
720  *	@skb: The packet.
721  *
722  *	For better visibility of tunnel traffic OVS needs to retrieve
723  *	egress tunnel information for a packet. Following API allows
724  *	user to get this info.
725  */
726 int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
727 {
728 	struct ip_tunnel_info *info;
729 
730 	if (!dev->netdev_ops  || !dev->netdev_ops->ndo_fill_metadata_dst)
731 		return -EINVAL;
732 
733 	info = skb_tunnel_info_unclone(skb);
734 	if (!info)
735 		return -ENOMEM;
736 	if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
737 		return -EINVAL;
738 
739 	return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
740 }
741 EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
742 
743 static struct net_device_path *dev_fwd_path(struct net_device_path_stack *stack)
744 {
745 	int k = stack->num_paths++;
746 
747 	if (k >= NET_DEVICE_PATH_STACK_MAX)
748 		return NULL;
749 
750 	return &stack->path[k];
751 }
752 
753 int dev_fill_forward_path(const struct net_device *dev, const u8 *daddr,
754 			  struct net_device_path_stack *stack)
755 {
756 	const struct net_device *last_dev;
757 	struct net_device_path_ctx ctx = {
758 		.dev	= dev,
759 	};
760 	struct net_device_path *path;
761 	int ret = 0;
762 
763 	memcpy(ctx.daddr, daddr, sizeof(ctx.daddr));
764 	stack->num_paths = 0;
765 	while (ctx.dev && ctx.dev->netdev_ops->ndo_fill_forward_path) {
766 		last_dev = ctx.dev;
767 		path = dev_fwd_path(stack);
768 		if (!path)
769 			return -1;
770 
771 		memset(path, 0, sizeof(struct net_device_path));
772 		ret = ctx.dev->netdev_ops->ndo_fill_forward_path(&ctx, path);
773 		if (ret < 0)
774 			return -1;
775 
776 		if (WARN_ON_ONCE(last_dev == ctx.dev))
777 			return -1;
778 	}
779 
780 	if (!ctx.dev)
781 		return ret;
782 
783 	path = dev_fwd_path(stack);
784 	if (!path)
785 		return -1;
786 	path->type = DEV_PATH_ETHERNET;
787 	path->dev = ctx.dev;
788 
789 	return ret;
790 }
791 EXPORT_SYMBOL_GPL(dev_fill_forward_path);
792 
793 /* must be called under rcu_read_lock(), as we dont take a reference */
794 static struct napi_struct *napi_by_id(unsigned int napi_id)
795 {
796 	unsigned int hash = napi_id % HASH_SIZE(napi_hash);
797 	struct napi_struct *napi;
798 
799 	hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
800 		if (napi->napi_id == napi_id)
801 			return napi;
802 
803 	return NULL;
804 }
805 
806 /* must be called under rcu_read_lock(), as we dont take a reference */
807 static struct napi_struct *
808 netdev_napi_by_id(struct net *net, unsigned int napi_id)
809 {
810 	struct napi_struct *napi;
811 
812 	napi = napi_by_id(napi_id);
813 	if (!napi)
814 		return NULL;
815 
816 	if (WARN_ON_ONCE(!napi->dev))
817 		return NULL;
818 	if (!net_eq(net, dev_net(napi->dev)))
819 		return NULL;
820 
821 	return napi;
822 }
823 
824 /**
825  *	netdev_napi_by_id_lock() - find a device by NAPI ID and lock it
826  *	@net: the applicable net namespace
827  *	@napi_id: ID of a NAPI of a target device
828  *
829  *	Find a NAPI instance with @napi_id. Lock its device.
830  *	The device must be in %NETREG_REGISTERED state for lookup to succeed.
831  *	netdev_unlock() must be called to release it.
832  *
833  *	Return: pointer to NAPI, its device with lock held, NULL if not found.
834  */
835 struct napi_struct *
836 netdev_napi_by_id_lock(struct net *net, unsigned int napi_id)
837 {
838 	struct napi_struct *napi;
839 	struct net_device *dev;
840 
841 	rcu_read_lock();
842 	napi = netdev_napi_by_id(net, napi_id);
843 	if (!napi || READ_ONCE(napi->dev->reg_state) != NETREG_REGISTERED) {
844 		rcu_read_unlock();
845 		return NULL;
846 	}
847 
848 	dev = napi->dev;
849 	dev_hold(dev);
850 	rcu_read_unlock();
851 
852 	dev = __netdev_put_lock(dev, net);
853 	if (!dev)
854 		return NULL;
855 
856 	rcu_read_lock();
857 	napi = netdev_napi_by_id(net, napi_id);
858 	if (napi && napi->dev != dev)
859 		napi = NULL;
860 	rcu_read_unlock();
861 
862 	if (!napi)
863 		netdev_unlock(dev);
864 	return napi;
865 }
866 
867 /**
868  *	__dev_get_by_name	- find a device by its name
869  *	@net: the applicable net namespace
870  *	@name: name to find
871  *
872  *	Find an interface by name. Must be called under RTNL semaphore.
873  *	If the name is found a pointer to the device is returned.
874  *	If the name is not found then %NULL is returned. The
875  *	reference counters are not incremented so the caller must be
876  *	careful with locks.
877  */
878 
879 struct net_device *__dev_get_by_name(struct net *net, const char *name)
880 {
881 	struct netdev_name_node *node_name;
882 
883 	node_name = netdev_name_node_lookup(net, name);
884 	return node_name ? node_name->dev : NULL;
885 }
886 EXPORT_SYMBOL(__dev_get_by_name);
887 
888 /**
889  * dev_get_by_name_rcu	- find a device by its name
890  * @net: the applicable net namespace
891  * @name: name to find
892  *
893  * Find an interface by name.
894  * If the name is found a pointer to the device is returned.
895  * If the name is not found then %NULL is returned.
896  * The reference counters are not incremented so the caller must be
897  * careful with locks. The caller must hold RCU lock.
898  */
899 
900 struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
901 {
902 	struct netdev_name_node *node_name;
903 
904 	node_name = netdev_name_node_lookup_rcu(net, name);
905 	return node_name ? node_name->dev : NULL;
906 }
907 EXPORT_SYMBOL(dev_get_by_name_rcu);
908 
909 /* Deprecated for new users, call netdev_get_by_name() instead */
910 struct net_device *dev_get_by_name(struct net *net, const char *name)
911 {
912 	struct net_device *dev;
913 
914 	rcu_read_lock();
915 	dev = dev_get_by_name_rcu(net, name);
916 	dev_hold(dev);
917 	rcu_read_unlock();
918 	return dev;
919 }
920 EXPORT_SYMBOL(dev_get_by_name);
921 
922 /**
923  *	netdev_get_by_name() - find a device by its name
924  *	@net: the applicable net namespace
925  *	@name: name to find
926  *	@tracker: tracking object for the acquired reference
927  *	@gfp: allocation flags for the tracker
928  *
929  *	Find an interface by name. This can be called from any
930  *	context and does its own locking. The returned handle has
931  *	the usage count incremented and the caller must use netdev_put() to
932  *	release it when it is no longer needed. %NULL is returned if no
933  *	matching device is found.
934  */
935 struct net_device *netdev_get_by_name(struct net *net, const char *name,
936 				      netdevice_tracker *tracker, gfp_t gfp)
937 {
938 	struct net_device *dev;
939 
940 	dev = dev_get_by_name(net, name);
941 	if (dev)
942 		netdev_tracker_alloc(dev, tracker, gfp);
943 	return dev;
944 }
945 EXPORT_SYMBOL(netdev_get_by_name);
946 
947 /**
948  *	__dev_get_by_index - find a device by its ifindex
949  *	@net: the applicable net namespace
950  *	@ifindex: index of device
951  *
952  *	Search for an interface by index. Returns %NULL if the device
953  *	is not found or a pointer to the device. The device has not
954  *	had its reference counter increased so the caller must be careful
955  *	about locking. The caller must hold the RTNL semaphore.
956  */
957 
958 struct net_device *__dev_get_by_index(struct net *net, int ifindex)
959 {
960 	struct net_device *dev;
961 	struct hlist_head *head = dev_index_hash(net, ifindex);
962 
963 	hlist_for_each_entry(dev, head, index_hlist)
964 		if (dev->ifindex == ifindex)
965 			return dev;
966 
967 	return NULL;
968 }
969 EXPORT_SYMBOL(__dev_get_by_index);
970 
971 /**
972  *	dev_get_by_index_rcu - find a device by its ifindex
973  *	@net: the applicable net namespace
974  *	@ifindex: index of device
975  *
976  *	Search for an interface by index. Returns %NULL if the device
977  *	is not found or a pointer to the device. The device has not
978  *	had its reference counter increased so the caller must be careful
979  *	about locking. The caller must hold RCU lock.
980  */
981 
982 struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
983 {
984 	struct net_device *dev;
985 	struct hlist_head *head = dev_index_hash(net, ifindex);
986 
987 	hlist_for_each_entry_rcu(dev, head, index_hlist)
988 		if (dev->ifindex == ifindex)
989 			return dev;
990 
991 	return NULL;
992 }
993 EXPORT_SYMBOL(dev_get_by_index_rcu);
994 
995 /* Deprecated for new users, call netdev_get_by_index() instead */
996 struct net_device *dev_get_by_index(struct net *net, int ifindex)
997 {
998 	struct net_device *dev;
999 
1000 	rcu_read_lock();
1001 	dev = dev_get_by_index_rcu(net, ifindex);
1002 	dev_hold(dev);
1003 	rcu_read_unlock();
1004 	return dev;
1005 }
1006 EXPORT_SYMBOL(dev_get_by_index);
1007 
1008 /**
1009  *	netdev_get_by_index() - find a device by its ifindex
1010  *	@net: the applicable net namespace
1011  *	@ifindex: index of device
1012  *	@tracker: tracking object for the acquired reference
1013  *	@gfp: allocation flags for the tracker
1014  *
1015  *	Search for an interface by index. Returns NULL if the device
1016  *	is not found or a pointer to the device. The device returned has
1017  *	had a reference added and the pointer is safe until the user calls
1018  *	netdev_put() to indicate they have finished with it.
1019  */
1020 struct net_device *netdev_get_by_index(struct net *net, int ifindex,
1021 				       netdevice_tracker *tracker, gfp_t gfp)
1022 {
1023 	struct net_device *dev;
1024 
1025 	dev = dev_get_by_index(net, ifindex);
1026 	if (dev)
1027 		netdev_tracker_alloc(dev, tracker, gfp);
1028 	return dev;
1029 }
1030 EXPORT_SYMBOL(netdev_get_by_index);
1031 
1032 /**
1033  *	dev_get_by_napi_id - find a device by napi_id
1034  *	@napi_id: ID of the NAPI struct
1035  *
1036  *	Search for an interface by NAPI ID. Returns %NULL if the device
1037  *	is not found or a pointer to the device. The device has not had
1038  *	its reference counter increased so the caller must be careful
1039  *	about locking. The caller must hold RCU lock.
1040  */
1041 struct net_device *dev_get_by_napi_id(unsigned int napi_id)
1042 {
1043 	struct napi_struct *napi;
1044 
1045 	WARN_ON_ONCE(!rcu_read_lock_held());
1046 
1047 	if (!napi_id_valid(napi_id))
1048 		return NULL;
1049 
1050 	napi = napi_by_id(napi_id);
1051 
1052 	return napi ? napi->dev : NULL;
1053 }
1054 
1055 /* Release the held reference on the net_device, and if the net_device
1056  * is still registered try to lock the instance lock. If device is being
1057  * unregistered NULL will be returned (but the reference has been released,
1058  * either way!)
1059  *
1060  * This helper is intended for locking net_device after it has been looked up
1061  * using a lockless lookup helper. Lock prevents the instance from going away.
1062  */
1063 struct net_device *
1064 netdev_put_lock(struct net_device *dev, struct net *net,
1065 		netdevice_tracker *tracker)
1066 {
1067 	netdev_lock(dev);
1068 	if (dev->reg_state > NETREG_REGISTERED ||
1069 	    dev->moving_ns || !net_eq(dev_net(dev), net)) {
1070 		netdev_unlock(dev);
1071 		netdev_put(dev, tracker);
1072 		return NULL;
1073 	}
1074 	netdev_put(dev, tracker);
1075 	return dev;
1076 }
1077 
1078 static struct net_device *
1079 __netdev_put_lock_ops_compat(struct net_device *dev, struct net *net)
1080 {
1081 	netdev_lock_ops_compat(dev);
1082 	if (dev->reg_state > NETREG_REGISTERED ||
1083 	    dev->moving_ns || !net_eq(dev_net(dev), net)) {
1084 		netdev_unlock_ops_compat(dev);
1085 		dev_put(dev);
1086 		return NULL;
1087 	}
1088 	dev_put(dev);
1089 	return dev;
1090 }
1091 
1092 /**
1093  *	netdev_get_by_index_lock() - find a device by its ifindex
1094  *	@net: the applicable net namespace
1095  *	@ifindex: index of device
1096  *
1097  *	Search for an interface by index. If a valid device
1098  *	with @ifindex is found it will be returned with netdev->lock held.
1099  *	netdev_unlock() must be called to release it.
1100  *
1101  *	Return: pointer to a device with lock held, NULL if not found.
1102  */
1103 struct net_device *netdev_get_by_index_lock(struct net *net, int ifindex)
1104 {
1105 	struct net_device *dev;
1106 
1107 	dev = dev_get_by_index(net, ifindex);
1108 	if (!dev)
1109 		return NULL;
1110 
1111 	return __netdev_put_lock(dev, net);
1112 }
1113 
1114 struct net_device *
1115 netdev_get_by_index_lock_ops_compat(struct net *net, int ifindex)
1116 {
1117 	struct net_device *dev;
1118 
1119 	dev = dev_get_by_index(net, ifindex);
1120 	if (!dev)
1121 		return NULL;
1122 
1123 	return __netdev_put_lock_ops_compat(dev, net);
1124 }
1125 
1126 struct net_device *
1127 netdev_xa_find_lock(struct net *net, struct net_device *dev,
1128 		    unsigned long *index)
1129 {
1130 	if (dev)
1131 		netdev_unlock(dev);
1132 
1133 	do {
1134 		rcu_read_lock();
1135 		dev = xa_find(&net->dev_by_index, index, ULONG_MAX, XA_PRESENT);
1136 		if (!dev) {
1137 			rcu_read_unlock();
1138 			return NULL;
1139 		}
1140 		dev_hold(dev);
1141 		rcu_read_unlock();
1142 
1143 		dev = __netdev_put_lock(dev, net);
1144 		if (dev)
1145 			return dev;
1146 
1147 		(*index)++;
1148 	} while (true);
1149 }
1150 
1151 struct net_device *
1152 netdev_xa_find_lock_ops_compat(struct net *net, struct net_device *dev,
1153 			       unsigned long *index)
1154 {
1155 	if (dev)
1156 		netdev_unlock_ops_compat(dev);
1157 
1158 	do {
1159 		rcu_read_lock();
1160 		dev = xa_find(&net->dev_by_index, index, ULONG_MAX, XA_PRESENT);
1161 		if (!dev) {
1162 			rcu_read_unlock();
1163 			return NULL;
1164 		}
1165 		dev_hold(dev);
1166 		rcu_read_unlock();
1167 
1168 		dev = __netdev_put_lock_ops_compat(dev, net);
1169 		if (dev)
1170 			return dev;
1171 
1172 		(*index)++;
1173 	} while (true);
1174 }
1175 
1176 static DEFINE_SEQLOCK(netdev_rename_lock);
1177 
1178 void netdev_copy_name(struct net_device *dev, char *name)
1179 {
1180 	unsigned int seq;
1181 
1182 	do {
1183 		seq = read_seqbegin(&netdev_rename_lock);
1184 		strscpy(name, dev->name, IFNAMSIZ);
1185 	} while (read_seqretry(&netdev_rename_lock, seq));
1186 }
1187 
1188 /**
1189  *	netdev_get_name - get a netdevice name, knowing its ifindex.
1190  *	@net: network namespace
1191  *	@name: a pointer to the buffer where the name will be stored.
1192  *	@ifindex: the ifindex of the interface to get the name from.
1193  */
1194 int netdev_get_name(struct net *net, char *name, int ifindex)
1195 {
1196 	struct net_device *dev;
1197 	int ret;
1198 
1199 	rcu_read_lock();
1200 
1201 	dev = dev_get_by_index_rcu(net, ifindex);
1202 	if (!dev) {
1203 		ret = -ENODEV;
1204 		goto out;
1205 	}
1206 
1207 	netdev_copy_name(dev, name);
1208 
1209 	ret = 0;
1210 out:
1211 	rcu_read_unlock();
1212 	return ret;
1213 }
1214 
1215 static bool dev_addr_cmp(struct net_device *dev, unsigned short type,
1216 			 const char *ha)
1217 {
1218 	return dev->type == type && !memcmp(dev->dev_addr, ha, dev->addr_len);
1219 }
1220 
1221 /**
1222  *	dev_getbyhwaddr_rcu - find a device by its hardware address
1223  *	@net: the applicable net namespace
1224  *	@type: media type of device
1225  *	@ha: hardware address
1226  *
1227  *	Search for an interface by MAC address. Returns NULL if the device
1228  *	is not found or a pointer to the device.
1229  *	The caller must hold RCU.
1230  *	The returned device has not had its ref count increased
1231  *	and the caller must therefore be careful about locking
1232  *
1233  */
1234 
1235 struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
1236 				       const char *ha)
1237 {
1238 	struct net_device *dev;
1239 
1240 	for_each_netdev_rcu(net, dev)
1241 		if (dev_addr_cmp(dev, type, ha))
1242 			return dev;
1243 
1244 	return NULL;
1245 }
1246 EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
1247 
1248 /**
1249  * dev_getbyhwaddr() - find a device by its hardware address
1250  * @net: the applicable net namespace
1251  * @type: media type of device
1252  * @ha: hardware address
1253  *
1254  * Similar to dev_getbyhwaddr_rcu(), but the owner needs to hold
1255  * rtnl_lock.
1256  *
1257  * Context: rtnl_lock() must be held.
1258  * Return: pointer to the net_device, or NULL if not found
1259  */
1260 struct net_device *dev_getbyhwaddr(struct net *net, unsigned short type,
1261 				   const char *ha)
1262 {
1263 	struct net_device *dev;
1264 
1265 	ASSERT_RTNL();
1266 	for_each_netdev(net, dev)
1267 		if (dev_addr_cmp(dev, type, ha))
1268 			return dev;
1269 
1270 	return NULL;
1271 }
1272 EXPORT_SYMBOL(dev_getbyhwaddr);
1273 
1274 struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
1275 {
1276 	struct net_device *dev, *ret = NULL;
1277 
1278 	rcu_read_lock();
1279 	for_each_netdev_rcu(net, dev)
1280 		if (dev->type == type) {
1281 			dev_hold(dev);
1282 			ret = dev;
1283 			break;
1284 		}
1285 	rcu_read_unlock();
1286 	return ret;
1287 }
1288 EXPORT_SYMBOL(dev_getfirstbyhwtype);
1289 
1290 /**
1291  * netdev_get_by_flags_rcu - find any device with given flags
1292  * @net: the applicable net namespace
1293  * @tracker: tracking object for the acquired reference
1294  * @if_flags: IFF_* values
1295  * @mask: bitmask of bits in if_flags to check
1296  *
1297  * Search for any interface with the given flags.
1298  *
1299  * Context: rcu_read_lock() must be held.
1300  * Returns: NULL if a device is not found or a pointer to the device.
1301  */
1302 struct net_device *netdev_get_by_flags_rcu(struct net *net, netdevice_tracker *tracker,
1303 					   unsigned short if_flags, unsigned short mask)
1304 {
1305 	struct net_device *dev;
1306 
1307 	for_each_netdev_rcu(net, dev) {
1308 		if (((READ_ONCE(dev->flags) ^ if_flags) & mask) == 0) {
1309 			netdev_hold(dev, tracker, GFP_ATOMIC);
1310 			return dev;
1311 		}
1312 	}
1313 
1314 	return NULL;
1315 }
1316 
1317 /**
1318  *	dev_valid_name - check if name is okay for network device
1319  *	@name: name string
1320  *
1321  *	Network device names need to be valid file names to
1322  *	allow sysfs to work.  We also disallow any kind of
1323  *	whitespace.
1324  */
1325 bool dev_valid_name(const char *name)
1326 {
1327 	if (*name == '\0')
1328 		return false;
1329 	if (strnlen(name, IFNAMSIZ) == IFNAMSIZ)
1330 		return false;
1331 	if (!strcmp(name, ".") || !strcmp(name, ".."))
1332 		return false;
1333 
1334 	while (*name) {
1335 		if (*name == '/' || *name == ':' || isspace(*name))
1336 			return false;
1337 		name++;
1338 	}
1339 	return true;
1340 }
1341 EXPORT_SYMBOL(dev_valid_name);
1342 
1343 /**
1344  *	__dev_alloc_name - allocate a name for a device
1345  *	@net: network namespace to allocate the device name in
1346  *	@name: name format string
1347  *	@res: result name string
1348  *
1349  *	Passed a format string - eg "lt%d" it will try and find a suitable
1350  *	id. It scans list of devices to build up a free map, then chooses
1351  *	the first empty slot. The caller must hold the dev_base or rtnl lock
1352  *	while allocating the name and adding the device in order to avoid
1353  *	duplicates.
1354  *	Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1355  *	Returns the number of the unit assigned or a negative errno code.
1356  */
1357 
1358 static int __dev_alloc_name(struct net *net, const char *name, char *res)
1359 {
1360 	int i = 0;
1361 	const char *p;
1362 	const int max_netdevices = 8*PAGE_SIZE;
1363 	unsigned long *inuse;
1364 	struct net_device *d;
1365 	char buf[IFNAMSIZ];
1366 
1367 	/* Verify the string as this thing may have come from the user.
1368 	 * There must be one "%d" and no other "%" characters.
1369 	 */
1370 	p = strchr(name, '%');
1371 	if (!p || p[1] != 'd' || strchr(p + 2, '%'))
1372 		return -EINVAL;
1373 
1374 	/* Use one page as a bit array of possible slots */
1375 	inuse = bitmap_zalloc(max_netdevices, GFP_ATOMIC);
1376 	if (!inuse)
1377 		return -ENOMEM;
1378 
1379 	for_each_netdev(net, d) {
1380 		struct netdev_name_node *name_node;
1381 
1382 		netdev_for_each_altname(d, name_node) {
1383 			if (!sscanf(name_node->name, name, &i))
1384 				continue;
1385 			if (i < 0 || i >= max_netdevices)
1386 				continue;
1387 
1388 			/* avoid cases where sscanf is not exact inverse of printf */
1389 			snprintf(buf, IFNAMSIZ, name, i);
1390 			if (!strncmp(buf, name_node->name, IFNAMSIZ))
1391 				__set_bit(i, inuse);
1392 		}
1393 		if (!sscanf(d->name, name, &i))
1394 			continue;
1395 		if (i < 0 || i >= max_netdevices)
1396 			continue;
1397 
1398 		/* avoid cases where sscanf is not exact inverse of printf */
1399 		snprintf(buf, IFNAMSIZ, name, i);
1400 		if (!strncmp(buf, d->name, IFNAMSIZ))
1401 			__set_bit(i, inuse);
1402 	}
1403 
1404 	i = find_first_zero_bit(inuse, max_netdevices);
1405 	bitmap_free(inuse);
1406 	if (i == max_netdevices)
1407 		return -ENFILE;
1408 
1409 	/* 'res' and 'name' could overlap, use 'buf' as an intermediate buffer */
1410 	strscpy(buf, name, IFNAMSIZ);
1411 	snprintf(res, IFNAMSIZ, buf, i);
1412 	return i;
1413 }
1414 
1415 /* Returns negative errno or allocated unit id (see __dev_alloc_name()) */
1416 static int dev_prep_valid_name(struct net *net, struct net_device *dev,
1417 			       const char *want_name, char *out_name,
1418 			       int dup_errno)
1419 {
1420 	if (!dev_valid_name(want_name))
1421 		return -EINVAL;
1422 
1423 	if (strchr(want_name, '%'))
1424 		return __dev_alloc_name(net, want_name, out_name);
1425 
1426 	if (netdev_name_in_use(net, want_name))
1427 		return -dup_errno;
1428 	if (out_name != want_name)
1429 		strscpy(out_name, want_name, IFNAMSIZ);
1430 	return 0;
1431 }
1432 
1433 /**
1434  *	dev_alloc_name - allocate a name for a device
1435  *	@dev: device
1436  *	@name: name format string
1437  *
1438  *	Passed a format string - eg "lt%d" it will try and find a suitable
1439  *	id. It scans list of devices to build up a free map, then chooses
1440  *	the first empty slot. The caller must hold the dev_base or rtnl lock
1441  *	while allocating the name and adding the device in order to avoid
1442  *	duplicates.
1443  *	Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1444  *	Returns the number of the unit assigned or a negative errno code.
1445  */
1446 
1447 int dev_alloc_name(struct net_device *dev, const char *name)
1448 {
1449 	return dev_prep_valid_name(dev_net(dev), dev, name, dev->name, ENFILE);
1450 }
1451 EXPORT_SYMBOL(dev_alloc_name);
1452 
1453 static int dev_get_valid_name(struct net *net, struct net_device *dev,
1454 			      const char *name)
1455 {
1456 	int ret;
1457 
1458 	ret = dev_prep_valid_name(net, dev, name, dev->name, EEXIST);
1459 	return ret < 0 ? ret : 0;
1460 }
1461 
1462 int netif_change_name(struct net_device *dev, const char *newname)
1463 {
1464 	struct net *net = dev_net(dev);
1465 	unsigned char old_assign_type;
1466 	char oldname[IFNAMSIZ];
1467 	int err = 0;
1468 	int ret;
1469 
1470 	ASSERT_RTNL_NET(net);
1471 
1472 	if (!strncmp(newname, dev->name, IFNAMSIZ))
1473 		return 0;
1474 
1475 	memcpy(oldname, dev->name, IFNAMSIZ);
1476 
1477 	write_seqlock_bh(&netdev_rename_lock);
1478 	err = dev_get_valid_name(net, dev, newname);
1479 	write_sequnlock_bh(&netdev_rename_lock);
1480 
1481 	if (err < 0)
1482 		return err;
1483 
1484 	if (oldname[0] && !strchr(oldname, '%'))
1485 		netdev_info(dev, "renamed from %s%s\n", oldname,
1486 			    dev->flags & IFF_UP ? " (while UP)" : "");
1487 
1488 	old_assign_type = dev->name_assign_type;
1489 	WRITE_ONCE(dev->name_assign_type, NET_NAME_RENAMED);
1490 
1491 rollback:
1492 	ret = device_rename(&dev->dev, dev->name);
1493 	if (ret) {
1494 		write_seqlock_bh(&netdev_rename_lock);
1495 		memcpy(dev->name, oldname, IFNAMSIZ);
1496 		write_sequnlock_bh(&netdev_rename_lock);
1497 		WRITE_ONCE(dev->name_assign_type, old_assign_type);
1498 		return ret;
1499 	}
1500 
1501 	netdev_adjacent_rename_links(dev, oldname);
1502 
1503 	netdev_name_node_del(dev->name_node);
1504 
1505 	synchronize_net();
1506 
1507 	netdev_name_node_add(net, dev->name_node);
1508 
1509 	ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
1510 	ret = notifier_to_errno(ret);
1511 
1512 	if (ret) {
1513 		/* err >= 0 after dev_alloc_name() or stores the first errno */
1514 		if (err >= 0) {
1515 			err = ret;
1516 			write_seqlock_bh(&netdev_rename_lock);
1517 			memcpy(dev->name, oldname, IFNAMSIZ);
1518 			write_sequnlock_bh(&netdev_rename_lock);
1519 			memcpy(oldname, newname, IFNAMSIZ);
1520 			WRITE_ONCE(dev->name_assign_type, old_assign_type);
1521 			old_assign_type = NET_NAME_RENAMED;
1522 			goto rollback;
1523 		} else {
1524 			netdev_err(dev, "name change rollback failed: %d\n",
1525 				   ret);
1526 		}
1527 	}
1528 
1529 	return err;
1530 }
1531 
1532 int netif_set_alias(struct net_device *dev, const char *alias, size_t len)
1533 {
1534 	struct dev_ifalias *new_alias = NULL;
1535 
1536 	if (len >= IFALIASZ)
1537 		return -EINVAL;
1538 
1539 	if (len) {
1540 		new_alias = kmalloc(sizeof(*new_alias) + len + 1, GFP_KERNEL);
1541 		if (!new_alias)
1542 			return -ENOMEM;
1543 
1544 		memcpy(new_alias->ifalias, alias, len);
1545 		new_alias->ifalias[len] = 0;
1546 	}
1547 
1548 	mutex_lock(&ifalias_mutex);
1549 	new_alias = rcu_replace_pointer(dev->ifalias, new_alias,
1550 					mutex_is_locked(&ifalias_mutex));
1551 	mutex_unlock(&ifalias_mutex);
1552 
1553 	if (new_alias)
1554 		kfree_rcu(new_alias, rcuhead);
1555 
1556 	return len;
1557 }
1558 
1559 /**
1560  *	dev_get_alias - get ifalias of a device
1561  *	@dev: device
1562  *	@name: buffer to store name of ifalias
1563  *	@len: size of buffer
1564  *
1565  *	get ifalias for a device.  Caller must make sure dev cannot go
1566  *	away,  e.g. rcu read lock or own a reference count to device.
1567  */
1568 int dev_get_alias(const struct net_device *dev, char *name, size_t len)
1569 {
1570 	const struct dev_ifalias *alias;
1571 	int ret = 0;
1572 
1573 	rcu_read_lock();
1574 	alias = rcu_dereference(dev->ifalias);
1575 	if (alias)
1576 		ret = snprintf(name, len, "%s", alias->ifalias);
1577 	rcu_read_unlock();
1578 
1579 	return ret;
1580 }
1581 
1582 /**
1583  *	netdev_features_change - device changes features
1584  *	@dev: device to cause notification
1585  *
1586  *	Called to indicate a device has changed features.
1587  */
1588 void netdev_features_change(struct net_device *dev)
1589 {
1590 	call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
1591 }
1592 EXPORT_SYMBOL(netdev_features_change);
1593 
1594 void netif_state_change(struct net_device *dev)
1595 {
1596 	netdev_assert_locked_ops_compat_or_invisible(dev);
1597 
1598 	if (dev->flags & IFF_UP) {
1599 		struct netdev_notifier_change_info change_info = {
1600 			.info.dev = dev,
1601 		};
1602 
1603 		call_netdevice_notifiers_info(NETDEV_CHANGE,
1604 					      &change_info.info);
1605 		rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL, 0, NULL);
1606 	}
1607 }
1608 
1609 /**
1610  * __netdev_notify_peers - notify network peers about existence of @dev,
1611  * to be called when rtnl lock is already held.
1612  * @dev: network device
1613  *
1614  * Generate traffic such that interested network peers are aware of
1615  * @dev, such as by generating a gratuitous ARP. This may be used when
1616  * a device wants to inform the rest of the network about some sort of
1617  * reconfiguration such as a failover event or virtual machine
1618  * migration.
1619  */
1620 void __netdev_notify_peers(struct net_device *dev)
1621 {
1622 	ASSERT_RTNL();
1623 	call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1624 	call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
1625 }
1626 EXPORT_SYMBOL(__netdev_notify_peers);
1627 
1628 /**
1629  * netdev_notify_peers - notify network peers about existence of @dev
1630  * @dev: network device
1631  *
1632  * Generate traffic such that interested network peers are aware of
1633  * @dev, such as by generating a gratuitous ARP. This may be used when
1634  * a device wants to inform the rest of the network about some sort of
1635  * reconfiguration such as a failover event or virtual machine
1636  * migration.
1637  */
1638 void netdev_notify_peers(struct net_device *dev)
1639 {
1640 	rtnl_lock();
1641 	__netdev_notify_peers(dev);
1642 	rtnl_unlock();
1643 }
1644 EXPORT_SYMBOL(netdev_notify_peers);
1645 
1646 static int napi_threaded_poll(void *data);
1647 
1648 static int napi_kthread_create(struct napi_struct *n)
1649 {
1650 	int err = 0;
1651 
1652 	/* Create and wake up the kthread once to put it in
1653 	 * TASK_INTERRUPTIBLE mode to avoid the blocked task
1654 	 * warning and work with loadavg.
1655 	 */
1656 	n->thread = kthread_run(napi_threaded_poll, n, "napi/%s-%d",
1657 				n->dev->name, n->napi_id);
1658 	if (IS_ERR(n->thread)) {
1659 		err = PTR_ERR(n->thread);
1660 		pr_err("kthread_run failed with err %d\n", err);
1661 		n->thread = NULL;
1662 	}
1663 
1664 	return err;
1665 }
1666 
1667 static int __dev_open(struct net_device *dev, struct netlink_ext_ack *extack)
1668 {
1669 	const struct net_device_ops *ops = dev->netdev_ops;
1670 	int ret;
1671 
1672 	ASSERT_RTNL();
1673 	dev_addr_check(dev);
1674 
1675 	if (!netif_device_present(dev)) {
1676 		/* may be detached because parent is runtime-suspended */
1677 		if (dev->dev.parent)
1678 			pm_runtime_resume(dev->dev.parent);
1679 		if (!netif_device_present(dev))
1680 			return -ENODEV;
1681 	}
1682 
1683 	/* Block netpoll from trying to do any rx path servicing.
1684 	 * If we don't do this there is a chance ndo_poll_controller
1685 	 * or ndo_poll may be running while we open the device
1686 	 */
1687 	netpoll_poll_disable(dev);
1688 
1689 	ret = call_netdevice_notifiers_extack(NETDEV_PRE_UP, dev, extack);
1690 	ret = notifier_to_errno(ret);
1691 	if (ret)
1692 		return ret;
1693 
1694 	set_bit(__LINK_STATE_START, &dev->state);
1695 
1696 	netdev_assert_locked_ops_compat(dev);
1697 
1698 	if (ops->ndo_validate_addr)
1699 		ret = ops->ndo_validate_addr(dev);
1700 
1701 	if (!ret && ops->ndo_open)
1702 		ret = ops->ndo_open(dev);
1703 
1704 	netpoll_poll_enable(dev);
1705 
1706 	if (ret)
1707 		clear_bit(__LINK_STATE_START, &dev->state);
1708 	else {
1709 		netif_set_up(dev, true);
1710 		dev_set_rx_mode(dev);
1711 		dev_activate(dev);
1712 		add_device_randomness(dev->dev_addr, dev->addr_len);
1713 	}
1714 
1715 	return ret;
1716 }
1717 
1718 int netif_open(struct net_device *dev, struct netlink_ext_ack *extack)
1719 {
1720 	int ret;
1721 
1722 	if (dev->flags & IFF_UP)
1723 		return 0;
1724 
1725 	ret = __dev_open(dev, extack);
1726 	if (ret < 0)
1727 		return ret;
1728 
1729 	rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP | IFF_RUNNING, GFP_KERNEL, 0, NULL);
1730 	call_netdevice_notifiers(NETDEV_UP, dev);
1731 
1732 	return ret;
1733 }
1734 EXPORT_SYMBOL(netif_open);
1735 
1736 static void __dev_close_many(struct list_head *head)
1737 {
1738 	struct net_device *dev;
1739 
1740 	ASSERT_RTNL();
1741 	might_sleep();
1742 
1743 	list_for_each_entry(dev, head, close_list) {
1744 		/* Temporarily disable netpoll until the interface is down */
1745 		netpoll_poll_disable(dev);
1746 
1747 		call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
1748 
1749 		clear_bit(__LINK_STATE_START, &dev->state);
1750 
1751 		/* Synchronize to scheduled poll. We cannot touch poll list, it
1752 		 * can be even on different cpu. So just clear netif_running().
1753 		 *
1754 		 * dev->stop() will invoke napi_disable() on all of it's
1755 		 * napi_struct instances on this device.
1756 		 */
1757 		smp_mb__after_atomic(); /* Commit netif_running(). */
1758 	}
1759 
1760 	dev_deactivate_many(head, true);
1761 
1762 	list_for_each_entry(dev, head, close_list) {
1763 		const struct net_device_ops *ops = dev->netdev_ops;
1764 
1765 		/*
1766 		 *	Call the device specific close. This cannot fail.
1767 		 *	Only if device is UP
1768 		 *
1769 		 *	We allow it to be called even after a DETACH hot-plug
1770 		 *	event.
1771 		 */
1772 
1773 		netdev_assert_locked_ops_compat(dev);
1774 
1775 		if (ops->ndo_stop)
1776 			ops->ndo_stop(dev);
1777 
1778 		netif_rx_mode_cancel_retry(dev);
1779 		netif_set_up(dev, false);
1780 		netpoll_poll_enable(dev);
1781 	}
1782 }
1783 
1784 static void __dev_close(struct net_device *dev)
1785 {
1786 	LIST_HEAD(single);
1787 
1788 	list_add(&dev->close_list, &single);
1789 	__dev_close_many(&single);
1790 	list_del(&single);
1791 }
1792 
1793 void netif_close_many(struct list_head *head, bool unlink)
1794 {
1795 	struct net_device *dev, *tmp;
1796 
1797 	/* Remove the devices that don't need to be closed */
1798 	list_for_each_entry_safe(dev, tmp, head, close_list)
1799 		if (!(dev->flags & IFF_UP))
1800 			list_del_init(&dev->close_list);
1801 
1802 	__dev_close_many(head);
1803 
1804 	list_for_each_entry_safe(dev, tmp, head, close_list) {
1805 		netdev_assert_locked_ops_compat(dev);
1806 		rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP | IFF_RUNNING, GFP_KERNEL, 0, NULL);
1807 		call_netdevice_notifiers(NETDEV_DOWN, dev);
1808 		if (unlink)
1809 			list_del_init(&dev->close_list);
1810 	}
1811 }
1812 EXPORT_SYMBOL_NS_GPL(netif_close_many, "NETDEV_INTERNAL");
1813 
1814 void netif_close(struct net_device *dev)
1815 {
1816 	if (dev->flags & IFF_UP) {
1817 		LIST_HEAD(single);
1818 
1819 		list_add(&dev->close_list, &single);
1820 		netif_close_many(&single, true);
1821 		list_del(&single);
1822 	}
1823 }
1824 EXPORT_SYMBOL(netif_close);
1825 
1826 void netif_disable_lro(struct net_device *dev)
1827 {
1828 	struct net_device *lower_dev;
1829 	struct list_head *iter;
1830 
1831 	dev->wanted_features &= ~NETIF_F_LRO;
1832 	netdev_update_features(dev);
1833 
1834 	if (unlikely(dev->features & NETIF_F_LRO))
1835 		netdev_WARN(dev, "failed to disable LRO!\n");
1836 
1837 	netdev_for_each_lower_dev(dev, lower_dev, iter) {
1838 		netdev_lock_ops(lower_dev);
1839 		netif_disable_lro(lower_dev);
1840 		netdev_unlock_ops(lower_dev);
1841 	}
1842 }
1843 
1844 /**
1845  *	dev_disable_gro_hw - disable HW Generic Receive Offload on a device
1846  *	@dev: device
1847  *
1848  *	Disable HW Generic Receive Offload (GRO_HW) on a net device.  Must be
1849  *	called under RTNL.  This is needed if Generic XDP is installed on
1850  *	the device.
1851  */
1852 static void dev_disable_gro_hw(struct net_device *dev)
1853 {
1854 	dev->wanted_features &= ~NETIF_F_GRO_HW;
1855 	netdev_update_features(dev);
1856 
1857 	if (unlikely(dev->features & NETIF_F_GRO_HW))
1858 		netdev_WARN(dev, "failed to disable GRO_HW!\n");
1859 }
1860 
1861 const char *netdev_cmd_to_name(enum netdev_cmd cmd)
1862 {
1863 #define N(val) 						\
1864 	case NETDEV_##val:				\
1865 		return "NETDEV_" __stringify(val);
1866 	switch (cmd) {
1867 	N(UP) N(DOWN) N(REBOOT) N(CHANGE) N(REGISTER) N(UNREGISTER)
1868 	N(CHANGEMTU) N(CHANGEADDR) N(GOING_DOWN) N(CHANGENAME) N(FEAT_CHANGE)
1869 	N(BONDING_FAILOVER) N(PRE_UP) N(PRE_TYPE_CHANGE) N(POST_TYPE_CHANGE)
1870 	N(POST_INIT) N(PRE_UNINIT) N(RELEASE) N(NOTIFY_PEERS) N(JOIN)
1871 	N(CHANGEUPPER) N(RESEND_IGMP) N(PRECHANGEMTU) N(CHANGEINFODATA)
1872 	N(BONDING_INFO) N(PRECHANGEUPPER) N(CHANGELOWERSTATE)
1873 	N(UDP_TUNNEL_PUSH_INFO) N(UDP_TUNNEL_DROP_INFO) N(CHANGE_TX_QUEUE_LEN)
1874 	N(CVLAN_FILTER_PUSH_INFO) N(CVLAN_FILTER_DROP_INFO)
1875 	N(SVLAN_FILTER_PUSH_INFO) N(SVLAN_FILTER_DROP_INFO)
1876 	N(PRE_CHANGEADDR) N(OFFLOAD_XSTATS_ENABLE) N(OFFLOAD_XSTATS_DISABLE)
1877 	N(OFFLOAD_XSTATS_REPORT_USED) N(OFFLOAD_XSTATS_REPORT_DELTA)
1878 	N(XDP_FEAT_CHANGE)
1879 	}
1880 #undef N
1881 	return "UNKNOWN_NETDEV_EVENT";
1882 }
1883 EXPORT_SYMBOL_GPL(netdev_cmd_to_name);
1884 
1885 static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1886 				   struct net_device *dev)
1887 {
1888 	struct netdev_notifier_info info = {
1889 		.dev = dev,
1890 	};
1891 
1892 	return nb->notifier_call(nb, val, &info);
1893 }
1894 
1895 static int call_netdevice_register_notifiers(struct notifier_block *nb,
1896 					     struct net_device *dev)
1897 {
1898 	int err;
1899 
1900 	err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
1901 	err = notifier_to_errno(err);
1902 	if (err)
1903 		return err;
1904 
1905 	if (!(dev->flags & IFF_UP))
1906 		return 0;
1907 
1908 	call_netdevice_notifier(nb, NETDEV_UP, dev);
1909 	return 0;
1910 }
1911 
1912 static void call_netdevice_unregister_notifiers(struct notifier_block *nb,
1913 						struct net_device *dev)
1914 {
1915 	if (dev->flags & IFF_UP) {
1916 		netdev_lock_ops(dev);
1917 		call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1918 					dev);
1919 		call_netdevice_notifier(nb, NETDEV_DOWN, dev);
1920 		netdev_unlock_ops(dev);
1921 	}
1922 	call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
1923 }
1924 
1925 static int call_netdevice_register_net_notifiers(struct notifier_block *nb,
1926 						 struct net *net)
1927 {
1928 	struct net_device *dev;
1929 	int err;
1930 
1931 	for_each_netdev(net, dev) {
1932 		netdev_lock_ops(dev);
1933 		err = call_netdevice_register_notifiers(nb, dev);
1934 		netdev_unlock_ops(dev);
1935 		if (err)
1936 			goto rollback;
1937 	}
1938 	return 0;
1939 
1940 rollback:
1941 	for_each_netdev_continue_reverse(net, dev)
1942 		call_netdevice_unregister_notifiers(nb, dev);
1943 	return err;
1944 }
1945 
1946 static void call_netdevice_unregister_net_notifiers(struct notifier_block *nb,
1947 						    struct net *net)
1948 {
1949 	struct net_device *dev;
1950 
1951 	for_each_netdev(net, dev)
1952 		call_netdevice_unregister_notifiers(nb, dev);
1953 }
1954 
1955 static int dev_boot_phase = 1;
1956 
1957 /**
1958  * register_netdevice_notifier - register a network notifier block
1959  * @nb: notifier
1960  *
1961  * Register a notifier to be called when network device events occur.
1962  * The notifier passed is linked into the kernel structures and must
1963  * not be reused until it has been unregistered. A negative errno code
1964  * is returned on a failure.
1965  *
1966  * When registered all registration and up events are replayed
1967  * to the new notifier to allow device to have a race free
1968  * view of the network device list.
1969  */
1970 
1971 int register_netdevice_notifier(struct notifier_block *nb)
1972 {
1973 	struct net *net;
1974 	int err;
1975 
1976 	/* Close race with setup_net() and cleanup_net() */
1977 	down_write(&pernet_ops_rwsem);
1978 
1979 	/* When RTNL is removed, we need protection for netdev_chain. */
1980 	rtnl_lock();
1981 
1982 	err = raw_notifier_chain_register(&netdev_chain, nb);
1983 	if (err)
1984 		goto unlock;
1985 	if (dev_boot_phase)
1986 		goto unlock;
1987 	for_each_net(net) {
1988 		__rtnl_net_lock(net);
1989 		err = call_netdevice_register_net_notifiers(nb, net);
1990 		__rtnl_net_unlock(net);
1991 		if (err)
1992 			goto rollback;
1993 	}
1994 
1995 unlock:
1996 	rtnl_unlock();
1997 	up_write(&pernet_ops_rwsem);
1998 	return err;
1999 
2000 rollback:
2001 	for_each_net_continue_reverse(net) {
2002 		__rtnl_net_lock(net);
2003 		call_netdevice_unregister_net_notifiers(nb, net);
2004 		__rtnl_net_unlock(net);
2005 	}
2006 
2007 	raw_notifier_chain_unregister(&netdev_chain, nb);
2008 	goto unlock;
2009 }
2010 EXPORT_SYMBOL(register_netdevice_notifier);
2011 
2012 /**
2013  * unregister_netdevice_notifier - unregister a network notifier block
2014  * @nb: notifier
2015  *
2016  * Unregister a notifier previously registered by
2017  * register_netdevice_notifier(). The notifier is unlinked into the
2018  * kernel structures and may then be reused. A negative errno code
2019  * is returned on a failure.
2020  *
2021  * After unregistering unregister and down device events are synthesized
2022  * for all devices on the device list to the removed notifier to remove
2023  * the need for special case cleanup code.
2024  */
2025 
2026 int unregister_netdevice_notifier(struct notifier_block *nb)
2027 {
2028 	struct net *net;
2029 	int err;
2030 
2031 	/* Close race with setup_net() and cleanup_net() */
2032 	down_write(&pernet_ops_rwsem);
2033 	rtnl_lock();
2034 	err = raw_notifier_chain_unregister(&netdev_chain, nb);
2035 	if (err)
2036 		goto unlock;
2037 
2038 	for_each_net(net) {
2039 		__rtnl_net_lock(net);
2040 		call_netdevice_unregister_net_notifiers(nb, net);
2041 		__rtnl_net_unlock(net);
2042 	}
2043 
2044 unlock:
2045 	rtnl_unlock();
2046 	up_write(&pernet_ops_rwsem);
2047 	return err;
2048 }
2049 EXPORT_SYMBOL(unregister_netdevice_notifier);
2050 
2051 static int __register_netdevice_notifier_net(struct net *net,
2052 					     struct notifier_block *nb,
2053 					     bool ignore_call_fail)
2054 {
2055 	int err;
2056 
2057 	err = raw_notifier_chain_register(&net->netdev_chain, nb);
2058 	if (err)
2059 		return err;
2060 	if (dev_boot_phase)
2061 		return 0;
2062 
2063 	err = call_netdevice_register_net_notifiers(nb, net);
2064 	if (err && !ignore_call_fail)
2065 		goto chain_unregister;
2066 
2067 	return 0;
2068 
2069 chain_unregister:
2070 	raw_notifier_chain_unregister(&net->netdev_chain, nb);
2071 	return err;
2072 }
2073 
2074 static int __unregister_netdevice_notifier_net(struct net *net,
2075 					       struct notifier_block *nb)
2076 {
2077 	int err;
2078 
2079 	err = raw_notifier_chain_unregister(&net->netdev_chain, nb);
2080 	if (err)
2081 		return err;
2082 
2083 	call_netdevice_unregister_net_notifiers(nb, net);
2084 	return 0;
2085 }
2086 
2087 /**
2088  * register_netdevice_notifier_net - register a per-netns network notifier block
2089  * @net: network namespace
2090  * @nb: notifier
2091  *
2092  * Register a notifier to be called when network device events occur.
2093  * The notifier passed is linked into the kernel structures and must
2094  * not be reused until it has been unregistered. A negative errno code
2095  * is returned on a failure.
2096  *
2097  * When registered all registration and up events are replayed
2098  * to the new notifier to allow device to have a race free
2099  * view of the network device list.
2100  */
2101 
2102 int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb)
2103 {
2104 	int err;
2105 
2106 	rtnl_net_lock(net);
2107 	err = __register_netdevice_notifier_net(net, nb, false);
2108 	rtnl_net_unlock(net);
2109 
2110 	return err;
2111 }
2112 EXPORT_SYMBOL(register_netdevice_notifier_net);
2113 
2114 /**
2115  * unregister_netdevice_notifier_net - unregister a per-netns
2116  *                                     network notifier block
2117  * @net: network namespace
2118  * @nb: notifier
2119  *
2120  * Unregister a notifier previously registered by
2121  * register_netdevice_notifier_net(). The notifier is unlinked from the
2122  * kernel structures and may then be reused. A negative errno code
2123  * is returned on a failure.
2124  *
2125  * After unregistering unregister and down device events are synthesized
2126  * for all devices on the device list to the removed notifier to remove
2127  * the need for special case cleanup code.
2128  */
2129 
2130 int unregister_netdevice_notifier_net(struct net *net,
2131 				      struct notifier_block *nb)
2132 {
2133 	int err;
2134 
2135 	rtnl_net_lock(net);
2136 	err = __unregister_netdevice_notifier_net(net, nb);
2137 	rtnl_net_unlock(net);
2138 
2139 	return err;
2140 }
2141 EXPORT_SYMBOL(unregister_netdevice_notifier_net);
2142 
2143 static void __move_netdevice_notifier_net(struct net *src_net,
2144 					  struct net *dst_net,
2145 					  struct notifier_block *nb)
2146 {
2147 	__unregister_netdevice_notifier_net(src_net, nb);
2148 	__register_netdevice_notifier_net(dst_net, nb, true);
2149 }
2150 
2151 static void rtnl_net_dev_lock(struct net_device *dev)
2152 {
2153 	bool again;
2154 
2155 	do {
2156 		struct net *net;
2157 
2158 		again = false;
2159 
2160 		/* netns might be being dismantled. */
2161 		rcu_read_lock();
2162 		net = dev_net_rcu(dev);
2163 		net_passive_inc(net);
2164 		rcu_read_unlock();
2165 
2166 		rtnl_net_lock(net);
2167 
2168 #ifdef CONFIG_NET_NS
2169 		/* dev might have been moved to another netns. */
2170 		if (!net_eq(net, rcu_access_pointer(dev->nd_net.net))) {
2171 			rtnl_net_unlock(net);
2172 			net_passive_dec(net);
2173 			again = true;
2174 		}
2175 #endif
2176 	} while (again);
2177 }
2178 
2179 static void rtnl_net_dev_unlock(struct net_device *dev)
2180 {
2181 	struct net *net = dev_net(dev);
2182 
2183 	rtnl_net_unlock(net);
2184 	net_passive_dec(net);
2185 }
2186 
2187 int register_netdevice_notifier_dev_net(struct net_device *dev,
2188 					struct notifier_block *nb,
2189 					struct netdev_net_notifier *nn)
2190 {
2191 	int err;
2192 
2193 	rtnl_net_dev_lock(dev);
2194 	err = __register_netdevice_notifier_net(dev_net(dev), nb, false);
2195 	if (!err) {
2196 		nn->nb = nb;
2197 		list_add(&nn->list, &dev->net_notifier_list);
2198 	}
2199 	rtnl_net_dev_unlock(dev);
2200 
2201 	return err;
2202 }
2203 EXPORT_SYMBOL(register_netdevice_notifier_dev_net);
2204 
2205 int unregister_netdevice_notifier_dev_net(struct net_device *dev,
2206 					  struct notifier_block *nb,
2207 					  struct netdev_net_notifier *nn)
2208 {
2209 	int err;
2210 
2211 	rtnl_net_dev_lock(dev);
2212 	list_del(&nn->list);
2213 	err = __unregister_netdevice_notifier_net(dev_net(dev), nb);
2214 	rtnl_net_dev_unlock(dev);
2215 
2216 	return err;
2217 }
2218 EXPORT_SYMBOL(unregister_netdevice_notifier_dev_net);
2219 
2220 static void move_netdevice_notifiers_dev_net(struct net_device *dev,
2221 					     struct net *net)
2222 {
2223 	struct netdev_net_notifier *nn;
2224 
2225 	list_for_each_entry(nn, &dev->net_notifier_list, list)
2226 		__move_netdevice_notifier_net(dev_net(dev), net, nn->nb);
2227 }
2228 
2229 /**
2230  *	call_netdevice_notifiers_info - call all network notifier blocks
2231  *	@val: value passed unmodified to notifier function
2232  *	@info: notifier information data
2233  *
2234  *	Call all network notifier blocks.  Parameters and return value
2235  *	are as for raw_notifier_call_chain().
2236  */
2237 
2238 int call_netdevice_notifiers_info(unsigned long val,
2239 				  struct netdev_notifier_info *info)
2240 {
2241 	struct net *net = dev_net(info->dev);
2242 	int ret;
2243 
2244 	ASSERT_RTNL();
2245 
2246 	/* Run per-netns notifier block chain first, then run the global one.
2247 	 * Hopefully, one day, the global one is going to be removed after
2248 	 * all notifier block registrators get converted to be per-netns.
2249 	 */
2250 	ret = raw_notifier_call_chain(&net->netdev_chain, val, info);
2251 	if (ret & NOTIFY_STOP_MASK)
2252 		return ret;
2253 	return raw_notifier_call_chain(&netdev_chain, val, info);
2254 }
2255 
2256 /**
2257  *	call_netdevice_notifiers_info_robust - call per-netns notifier blocks
2258  *	                                       for and rollback on error
2259  *	@val_up: value passed unmodified to notifier function
2260  *	@val_down: value passed unmodified to the notifier function when
2261  *	           recovering from an error on @val_up
2262  *	@info: notifier information data
2263  *
2264  *	Call all per-netns network notifier blocks, but not notifier blocks on
2265  *	the global notifier chain. Parameters and return value are as for
2266  *	raw_notifier_call_chain_robust().
2267  */
2268 
2269 static int
2270 call_netdevice_notifiers_info_robust(unsigned long val_up,
2271 				     unsigned long val_down,
2272 				     struct netdev_notifier_info *info)
2273 {
2274 	struct net *net = dev_net(info->dev);
2275 
2276 	ASSERT_RTNL();
2277 
2278 	return raw_notifier_call_chain_robust(&net->netdev_chain,
2279 					      val_up, val_down, info);
2280 }
2281 
2282 static int call_netdevice_notifiers_extack(unsigned long val,
2283 					   struct net_device *dev,
2284 					   struct netlink_ext_ack *extack)
2285 {
2286 	struct netdev_notifier_info info = {
2287 		.dev = dev,
2288 		.extack = extack,
2289 	};
2290 
2291 	return call_netdevice_notifiers_info(val, &info);
2292 }
2293 
2294 /**
2295  *	call_netdevice_notifiers - call all network notifier blocks
2296  *      @val: value passed unmodified to notifier function
2297  *      @dev: net_device pointer passed unmodified to notifier function
2298  *
2299  *	Call all network notifier blocks.  Parameters and return value
2300  *	are as for raw_notifier_call_chain().
2301  */
2302 
2303 int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
2304 {
2305 	return call_netdevice_notifiers_extack(val, dev, NULL);
2306 }
2307 EXPORT_SYMBOL(call_netdevice_notifiers);
2308 
2309 /**
2310  *	call_netdevice_notifiers_mtu - call all network notifier blocks
2311  *	@val: value passed unmodified to notifier function
2312  *	@dev: net_device pointer passed unmodified to notifier function
2313  *	@arg: additional u32 argument passed to the notifier function
2314  *
2315  *	Call all network notifier blocks.  Parameters and return value
2316  *	are as for raw_notifier_call_chain().
2317  */
2318 static int call_netdevice_notifiers_mtu(unsigned long val,
2319 					struct net_device *dev, u32 arg)
2320 {
2321 	struct netdev_notifier_info_ext info = {
2322 		.info.dev = dev,
2323 		.ext.mtu = arg,
2324 	};
2325 
2326 	BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
2327 
2328 	return call_netdevice_notifiers_info(val, &info.info);
2329 }
2330 
2331 #ifdef CONFIG_NET_INGRESS
2332 static DEFINE_STATIC_KEY_FALSE(ingress_needed_key);
2333 
2334 void net_inc_ingress_queue(void)
2335 {
2336 	static_branch_inc(&ingress_needed_key);
2337 }
2338 EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
2339 
2340 void net_dec_ingress_queue(void)
2341 {
2342 	static_branch_dec(&ingress_needed_key);
2343 }
2344 EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
2345 #endif
2346 
2347 #ifdef CONFIG_NET_EGRESS
2348 static DEFINE_STATIC_KEY_FALSE(egress_needed_key);
2349 
2350 void net_inc_egress_queue(void)
2351 {
2352 	static_branch_inc(&egress_needed_key);
2353 }
2354 EXPORT_SYMBOL_GPL(net_inc_egress_queue);
2355 
2356 void net_dec_egress_queue(void)
2357 {
2358 	static_branch_dec(&egress_needed_key);
2359 }
2360 EXPORT_SYMBOL_GPL(net_dec_egress_queue);
2361 #endif
2362 
2363 #ifdef CONFIG_NET_CLS_ACT
2364 DEFINE_STATIC_KEY_FALSE(tcf_sw_enabled_key);
2365 EXPORT_SYMBOL(tcf_sw_enabled_key);
2366 #endif
2367 
2368 DEFINE_STATIC_KEY_FALSE(netstamp_needed_key);
2369 EXPORT_SYMBOL(netstamp_needed_key);
2370 #ifdef CONFIG_JUMP_LABEL
2371 static atomic_t netstamp_needed_deferred;
2372 static atomic_t netstamp_wanted;
2373 static void netstamp_clear(struct work_struct *work)
2374 {
2375 	int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
2376 	int wanted;
2377 
2378 	wanted = atomic_add_return(deferred, &netstamp_wanted);
2379 	if (wanted > 0)
2380 		static_branch_enable(&netstamp_needed_key);
2381 	else
2382 		static_branch_disable(&netstamp_needed_key);
2383 }
2384 static DECLARE_WORK(netstamp_work, netstamp_clear);
2385 #endif
2386 
2387 void net_enable_timestamp(void)
2388 {
2389 #ifdef CONFIG_JUMP_LABEL
2390 	int wanted = atomic_read(&netstamp_wanted);
2391 
2392 	while (wanted > 0) {
2393 		if (atomic_try_cmpxchg(&netstamp_wanted, &wanted, wanted + 1))
2394 			return;
2395 	}
2396 	atomic_inc(&netstamp_needed_deferred);
2397 	schedule_work(&netstamp_work);
2398 #else
2399 	static_branch_inc(&netstamp_needed_key);
2400 #endif
2401 }
2402 EXPORT_SYMBOL(net_enable_timestamp);
2403 
2404 void net_disable_timestamp(void)
2405 {
2406 #ifdef CONFIG_JUMP_LABEL
2407 	int wanted = atomic_read(&netstamp_wanted);
2408 
2409 	while (wanted > 1) {
2410 		if (atomic_try_cmpxchg(&netstamp_wanted, &wanted, wanted - 1))
2411 			return;
2412 	}
2413 	atomic_dec(&netstamp_needed_deferred);
2414 	schedule_work(&netstamp_work);
2415 #else
2416 	static_branch_dec(&netstamp_needed_key);
2417 #endif
2418 }
2419 EXPORT_SYMBOL(net_disable_timestamp);
2420 
2421 static inline void net_timestamp_set(struct sk_buff *skb)
2422 {
2423 	skb->tstamp = 0;
2424 	skb->tstamp_type = SKB_CLOCK_REALTIME;
2425 	if (static_branch_unlikely(&netstamp_needed_key))
2426 		skb->tstamp = ktime_get_real();
2427 }
2428 
2429 #define net_timestamp_check(COND, SKB)				\
2430 	if (static_branch_unlikely(&netstamp_needed_key)) {	\
2431 		if ((COND) && !(SKB)->tstamp)			\
2432 			(SKB)->tstamp = ktime_get_real();	\
2433 	}							\
2434 
2435 bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
2436 {
2437 	return __is_skb_forwardable(dev, skb, true);
2438 }
2439 EXPORT_SYMBOL_GPL(is_skb_forwardable);
2440 
2441 static int __dev_forward_skb2(struct net_device *dev, struct sk_buff *skb,
2442 			      bool check_mtu)
2443 {
2444 	int ret = ____dev_forward_skb(dev, skb, check_mtu);
2445 
2446 	if (likely(!ret)) {
2447 		skb->protocol = eth_type_trans(skb, dev);
2448 		skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
2449 	}
2450 
2451 	return ret;
2452 }
2453 
2454 int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2455 {
2456 	return __dev_forward_skb2(dev, skb, true);
2457 }
2458 EXPORT_SYMBOL_GPL(__dev_forward_skb);
2459 
2460 /**
2461  * dev_forward_skb - loopback an skb to another netif
2462  *
2463  * @dev: destination network device
2464  * @skb: buffer to forward
2465  *
2466  * return values:
2467  *	NET_RX_SUCCESS	(no congestion)
2468  *	NET_RX_DROP     (packet was dropped, but freed)
2469  *
2470  * dev_forward_skb can be used for injecting an skb from the
2471  * start_xmit function of one device into the receive queue
2472  * of another device.
2473  *
2474  * The receiving device may be in another namespace, so
2475  * we have to clear all information in the skb that could
2476  * impact namespace isolation.
2477  */
2478 int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
2479 {
2480 	return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
2481 }
2482 EXPORT_SYMBOL_GPL(dev_forward_skb);
2483 
2484 int dev_forward_skb_nomtu(struct net_device *dev, struct sk_buff *skb)
2485 {
2486 	return __dev_forward_skb2(dev, skb, false) ?: netif_rx_internal(skb);
2487 }
2488 
2489 static int deliver_skb(struct sk_buff *skb,
2490 		       struct packet_type *pt_prev,
2491 		       struct net_device *orig_dev)
2492 {
2493 	if (unlikely(skb_orphan_frags_rx(skb, GFP_ATOMIC)))
2494 		return -ENOMEM;
2495 	refcount_inc(&skb->users);
2496 	return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
2497 }
2498 
2499 static inline void deliver_ptype_list_skb(struct sk_buff *skb,
2500 					  struct packet_type **pt,
2501 					  struct net_device *orig_dev,
2502 					  __be16 type,
2503 					  struct list_head *ptype_list)
2504 {
2505 	struct packet_type *ptype, *pt_prev = *pt;
2506 
2507 	list_for_each_entry_rcu(ptype, ptype_list, list) {
2508 		if (ptype->type != type)
2509 			continue;
2510 		if (unlikely(pt_prev))
2511 			deliver_skb(skb, pt_prev, orig_dev);
2512 		pt_prev = ptype;
2513 	}
2514 	*pt = pt_prev;
2515 }
2516 
2517 static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
2518 {
2519 	if (!ptype->af_packet_priv || !skb->sk)
2520 		return false;
2521 
2522 	if (ptype->id_match)
2523 		return ptype->id_match(ptype, skb->sk);
2524 	else if ((struct sock *)ptype->af_packet_priv == skb->sk)
2525 		return true;
2526 
2527 	return false;
2528 }
2529 
2530 /**
2531  * dev_nit_active_rcu - return true if any network interface taps are in use
2532  *
2533  * The caller must hold the RCU lock
2534  *
2535  * @dev: network device to check for the presence of taps
2536  */
2537 bool dev_nit_active_rcu(const struct net_device *dev)
2538 {
2539 	/* Callers may hold either RCU or RCU BH lock */
2540 	WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_bh_held());
2541 
2542 	return !list_empty(&dev_net(dev)->ptype_all) ||
2543 	       !list_empty(&dev->ptype_all);
2544 }
2545 EXPORT_SYMBOL_GPL(dev_nit_active_rcu);
2546 
2547 /*
2548  *	Support routine. Sends outgoing frames to any network
2549  *	taps currently in use.
2550  */
2551 
2552 void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
2553 {
2554 	struct packet_type *ptype, *pt_prev = NULL;
2555 	struct list_head *ptype_list;
2556 	struct sk_buff *skb2 = NULL;
2557 
2558 	rcu_read_lock();
2559 	ptype_list = &dev_net_rcu(dev)->ptype_all;
2560 again:
2561 	list_for_each_entry_rcu(ptype, ptype_list, list) {
2562 		if (READ_ONCE(ptype->ignore_outgoing))
2563 			continue;
2564 
2565 		/* Never send packets back to the socket
2566 		 * they originated from - MvS (miquels@drinkel.ow.org)
2567 		 */
2568 		if (skb_loop_sk(ptype, skb))
2569 			continue;
2570 
2571 		if (unlikely(pt_prev)) {
2572 			deliver_skb(skb2, pt_prev, skb->dev);
2573 			pt_prev = ptype;
2574 			continue;
2575 		}
2576 
2577 		/* need to clone skb, done only once */
2578 		skb2 = skb_clone(skb, GFP_ATOMIC);
2579 		if (!skb2)
2580 			goto out_unlock;
2581 
2582 		net_timestamp_set(skb2);
2583 
2584 		/* skb->nh should be correctly
2585 		 * set by sender, so that the second statement is
2586 		 * just protection against buggy protocols.
2587 		 */
2588 		skb_reset_mac_header(skb2);
2589 
2590 		if (skb_network_header(skb2) < skb2->data ||
2591 		    skb_network_header(skb2) > skb_tail_pointer(skb2)) {
2592 			net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
2593 					     ntohs(skb2->protocol),
2594 					     dev->name);
2595 			skb_reset_network_header(skb2);
2596 		}
2597 
2598 		skb2->transport_header = skb2->network_header;
2599 		skb2->pkt_type = PACKET_OUTGOING;
2600 		pt_prev = ptype;
2601 	}
2602 
2603 	if (ptype_list != &dev->ptype_all) {
2604 		ptype_list = &dev->ptype_all;
2605 		goto again;
2606 	}
2607 out_unlock:
2608 	if (pt_prev) {
2609 		if (!skb_orphan_frags_rx(skb2, GFP_ATOMIC))
2610 			pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
2611 		else
2612 			kfree_skb(skb2);
2613 	}
2614 	rcu_read_unlock();
2615 }
2616 EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
2617 
2618 /**
2619  * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
2620  * @dev: Network device
2621  * @txq: number of queues available
2622  *
2623  * If real_num_tx_queues is changed the tc mappings may no longer be
2624  * valid. To resolve this verify the tc mapping remains valid and if
2625  * not NULL the mapping. With no priorities mapping to this
2626  * offset/count pair it will no longer be used. In the worst case TC0
2627  * is invalid nothing can be done so disable priority mappings. If is
2628  * expected that drivers will fix this mapping if they can before
2629  * calling netif_set_real_num_tx_queues.
2630  */
2631 static void netif_setup_tc(struct net_device *dev, unsigned int txq)
2632 {
2633 	int i;
2634 	struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2635 
2636 	/* If TC0 is invalidated disable TC mapping */
2637 	if (tc->offset + tc->count > txq) {
2638 		netdev_warn(dev, "Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
2639 		dev->num_tc = 0;
2640 		return;
2641 	}
2642 
2643 	/* Invalidated prio to tc mappings set to TC0 */
2644 	for (i = 1; i < TC_BITMASK + 1; i++) {
2645 		int q = netdev_get_prio_tc_map(dev, i);
2646 
2647 		tc = &dev->tc_to_txq[q];
2648 		if (tc->offset + tc->count > txq) {
2649 			netdev_warn(dev, "Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
2650 				    i, q);
2651 			netdev_set_prio_tc_map(dev, i, 0);
2652 		}
2653 	}
2654 }
2655 
2656 int netdev_txq_to_tc(struct net_device *dev, unsigned int txq)
2657 {
2658 	if (dev->num_tc) {
2659 		struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
2660 		int i;
2661 
2662 		/* walk through the TCs and see if it falls into any of them */
2663 		for (i = 0; i < TC_MAX_QUEUE; i++, tc++) {
2664 			if ((txq - tc->offset) < tc->count)
2665 				return i;
2666 		}
2667 
2668 		/* didn't find it, just return -1 to indicate no match */
2669 		return -1;
2670 	}
2671 
2672 	return 0;
2673 }
2674 EXPORT_SYMBOL(netdev_txq_to_tc);
2675 
2676 #ifdef CONFIG_XPS
2677 static struct static_key xps_needed __read_mostly;
2678 static struct static_key xps_rxqs_needed __read_mostly;
2679 static DEFINE_MUTEX(xps_map_mutex);
2680 #define xmap_dereference(P)		\
2681 	rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
2682 
2683 static bool remove_xps_queue(struct xps_dev_maps *dev_maps,
2684 			     struct xps_dev_maps *old_maps, int tci, u16 index)
2685 {
2686 	struct xps_map *map = NULL;
2687 	int pos;
2688 
2689 	map = xmap_dereference(dev_maps->attr_map[tci]);
2690 	if (!map)
2691 		return false;
2692 
2693 	for (pos = map->len; pos--;) {
2694 		if (map->queues[pos] != index)
2695 			continue;
2696 
2697 		if (map->len > 1) {
2698 			map->queues[pos] = map->queues[--map->len];
2699 			break;
2700 		}
2701 
2702 		if (old_maps)
2703 			RCU_INIT_POINTER(old_maps->attr_map[tci], NULL);
2704 		RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
2705 		kfree_rcu(map, rcu);
2706 		return false;
2707 	}
2708 
2709 	return true;
2710 }
2711 
2712 static bool remove_xps_queue_cpu(struct net_device *dev,
2713 				 struct xps_dev_maps *dev_maps,
2714 				 int cpu, u16 offset, u16 count)
2715 {
2716 	int num_tc = dev_maps->num_tc;
2717 	bool active = false;
2718 	int tci;
2719 
2720 	for (tci = cpu * num_tc; num_tc--; tci++) {
2721 		int i, j;
2722 
2723 		for (i = count, j = offset; i--; j++) {
2724 			if (!remove_xps_queue(dev_maps, NULL, tci, j))
2725 				break;
2726 		}
2727 
2728 		active |= i < 0;
2729 	}
2730 
2731 	return active;
2732 }
2733 
2734 static void reset_xps_maps(struct net_device *dev,
2735 			   struct xps_dev_maps *dev_maps,
2736 			   enum xps_map_type type)
2737 {
2738 	static_key_slow_dec_cpuslocked(&xps_needed);
2739 	if (type == XPS_RXQS)
2740 		static_key_slow_dec_cpuslocked(&xps_rxqs_needed);
2741 
2742 	RCU_INIT_POINTER(dev->xps_maps[type], NULL);
2743 
2744 	kfree_rcu(dev_maps, rcu);
2745 }
2746 
2747 static void clean_xps_maps(struct net_device *dev, enum xps_map_type type,
2748 			   u16 offset, u16 count)
2749 {
2750 	struct xps_dev_maps *dev_maps;
2751 	bool active = false;
2752 	int i, j;
2753 
2754 	dev_maps = xmap_dereference(dev->xps_maps[type]);
2755 	if (!dev_maps)
2756 		return;
2757 
2758 	for (j = 0; j < dev_maps->nr_ids; j++)
2759 		active |= remove_xps_queue_cpu(dev, dev_maps, j, offset, count);
2760 	if (!active)
2761 		reset_xps_maps(dev, dev_maps, type);
2762 
2763 	if (type == XPS_CPUS) {
2764 		for (i = offset + (count - 1); count--; i--)
2765 			netdev_queue_numa_node_write(
2766 				netdev_get_tx_queue(dev, i), NUMA_NO_NODE);
2767 	}
2768 }
2769 
2770 static void netif_reset_xps_queues(struct net_device *dev, u16 offset,
2771 				   u16 count)
2772 {
2773 	if (!static_key_false(&xps_needed))
2774 		return;
2775 
2776 	cpus_read_lock();
2777 	mutex_lock(&xps_map_mutex);
2778 
2779 	if (static_key_false(&xps_rxqs_needed))
2780 		clean_xps_maps(dev, XPS_RXQS, offset, count);
2781 
2782 	clean_xps_maps(dev, XPS_CPUS, offset, count);
2783 
2784 	mutex_unlock(&xps_map_mutex);
2785 	cpus_read_unlock();
2786 }
2787 
2788 static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
2789 {
2790 	netif_reset_xps_queues(dev, index, dev->num_tx_queues - index);
2791 }
2792 
2793 static struct xps_map *expand_xps_map(struct xps_map *map, int attr_index,
2794 				      u16 index, bool is_rxqs_map)
2795 {
2796 	struct xps_map *new_map;
2797 	int alloc_len = XPS_MIN_MAP_ALLOC;
2798 	int i, pos;
2799 
2800 	for (pos = 0; map && pos < map->len; pos++) {
2801 		if (map->queues[pos] != index)
2802 			continue;
2803 		return map;
2804 	}
2805 
2806 	/* Need to add tx-queue to this CPU's/rx-queue's existing map */
2807 	if (map) {
2808 		if (pos < map->alloc_len)
2809 			return map;
2810 
2811 		alloc_len = map->alloc_len * 2;
2812 	}
2813 
2814 	/* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2815 	 *  map
2816 	 */
2817 	if (is_rxqs_map)
2818 		new_map = kzalloc(XPS_MAP_SIZE(alloc_len), GFP_KERNEL);
2819 	else
2820 		new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2821 				       cpu_to_node(attr_index));
2822 	if (!new_map)
2823 		return NULL;
2824 
2825 	for (i = 0; i < pos; i++)
2826 		new_map->queues[i] = map->queues[i];
2827 	new_map->alloc_len = alloc_len;
2828 	new_map->len = pos;
2829 
2830 	return new_map;
2831 }
2832 
2833 /* Copy xps maps at a given index */
2834 static void xps_copy_dev_maps(struct xps_dev_maps *dev_maps,
2835 			      struct xps_dev_maps *new_dev_maps, int index,
2836 			      int tc, bool skip_tc)
2837 {
2838 	int i, tci = index * dev_maps->num_tc;
2839 	struct xps_map *map;
2840 
2841 	/* copy maps belonging to foreign traffic classes */
2842 	for (i = 0; i < dev_maps->num_tc; i++, tci++) {
2843 		if (i == tc && skip_tc)
2844 			continue;
2845 
2846 		/* fill in the new device map from the old device map */
2847 		map = xmap_dereference(dev_maps->attr_map[tci]);
2848 		RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
2849 	}
2850 }
2851 
2852 /* Must be called under cpus_read_lock */
2853 int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
2854 			  u16 index, enum xps_map_type type)
2855 {
2856 	struct xps_dev_maps *dev_maps, *new_dev_maps = NULL, *old_dev_maps = NULL;
2857 	const unsigned long *online_mask = NULL;
2858 	bool active = false, copy = false;
2859 	int i, j, tci, numa_node_id = -2;
2860 	int maps_sz, num_tc = 1, tc = 0;
2861 	struct xps_map *map, *new_map;
2862 	unsigned int nr_ids;
2863 
2864 	WARN_ON_ONCE(index >= dev->num_tx_queues);
2865 
2866 	if (dev->num_tc) {
2867 		/* Do not allow XPS on subordinate device directly */
2868 		num_tc = dev->num_tc;
2869 		if (num_tc < 0)
2870 			return -EINVAL;
2871 
2872 		/* If queue belongs to subordinate dev use its map */
2873 		dev = netdev_get_tx_queue(dev, index)->sb_dev ? : dev;
2874 
2875 		tc = netdev_txq_to_tc(dev, index);
2876 		if (tc < 0)
2877 			return -EINVAL;
2878 	}
2879 
2880 	mutex_lock(&xps_map_mutex);
2881 
2882 	dev_maps = xmap_dereference(dev->xps_maps[type]);
2883 	if (type == XPS_RXQS) {
2884 		maps_sz = XPS_RXQ_DEV_MAPS_SIZE(num_tc, dev->num_rx_queues);
2885 		nr_ids = dev->num_rx_queues;
2886 	} else {
2887 		maps_sz = XPS_CPU_DEV_MAPS_SIZE(num_tc);
2888 		if (num_possible_cpus() > 1)
2889 			online_mask = cpumask_bits(cpu_online_mask);
2890 		nr_ids = nr_cpu_ids;
2891 	}
2892 
2893 	if (maps_sz < L1_CACHE_BYTES)
2894 		maps_sz = L1_CACHE_BYTES;
2895 
2896 	/* The old dev_maps could be larger or smaller than the one we're
2897 	 * setting up now, as dev->num_tc or nr_ids could have been updated in
2898 	 * between. We could try to be smart, but let's be safe instead and only
2899 	 * copy foreign traffic classes if the two map sizes match.
2900 	 */
2901 	if (dev_maps &&
2902 	    dev_maps->num_tc == num_tc && dev_maps->nr_ids == nr_ids)
2903 		copy = true;
2904 
2905 	/* allocate memory for queue storage */
2906 	for (j = -1; j = netif_attrmask_next_and(j, online_mask, mask, nr_ids),
2907 	     j < nr_ids;) {
2908 		if (!new_dev_maps) {
2909 			new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
2910 			if (!new_dev_maps) {
2911 				mutex_unlock(&xps_map_mutex);
2912 				return -ENOMEM;
2913 			}
2914 
2915 			new_dev_maps->nr_ids = nr_ids;
2916 			new_dev_maps->num_tc = num_tc;
2917 		}
2918 
2919 		tci = j * num_tc + tc;
2920 		map = copy ? xmap_dereference(dev_maps->attr_map[tci]) : NULL;
2921 
2922 		map = expand_xps_map(map, j, index, type == XPS_RXQS);
2923 		if (!map)
2924 			goto error;
2925 
2926 		RCU_INIT_POINTER(new_dev_maps->attr_map[tci], map);
2927 	}
2928 
2929 	if (!new_dev_maps)
2930 		goto out_no_new_maps;
2931 
2932 	if (!dev_maps) {
2933 		/* Increment static keys at most once per type */
2934 		static_key_slow_inc_cpuslocked(&xps_needed);
2935 		if (type == XPS_RXQS)
2936 			static_key_slow_inc_cpuslocked(&xps_rxqs_needed);
2937 	}
2938 
2939 	for (j = 0; j < nr_ids; j++) {
2940 		bool skip_tc = false;
2941 
2942 		tci = j * num_tc + tc;
2943 		if (netif_attr_test_mask(j, mask, nr_ids) &&
2944 		    netif_attr_test_online(j, online_mask, nr_ids)) {
2945 			/* add tx-queue to CPU/rx-queue maps */
2946 			int pos = 0;
2947 
2948 			skip_tc = true;
2949 
2950 			map = xmap_dereference(new_dev_maps->attr_map[tci]);
2951 			while ((pos < map->len) && (map->queues[pos] != index))
2952 				pos++;
2953 
2954 			if (pos == map->len)
2955 				map->queues[map->len++] = index;
2956 #ifdef CONFIG_NUMA
2957 			if (type == XPS_CPUS) {
2958 				if (numa_node_id == -2)
2959 					numa_node_id = cpu_to_node(j);
2960 				else if (numa_node_id != cpu_to_node(j))
2961 					numa_node_id = -1;
2962 			}
2963 #endif
2964 		}
2965 
2966 		if (copy)
2967 			xps_copy_dev_maps(dev_maps, new_dev_maps, j, tc,
2968 					  skip_tc);
2969 	}
2970 
2971 	rcu_assign_pointer(dev->xps_maps[type], new_dev_maps);
2972 
2973 	/* Cleanup old maps */
2974 	if (!dev_maps)
2975 		goto out_no_old_maps;
2976 
2977 	for (j = 0; j < dev_maps->nr_ids; j++) {
2978 		for (i = num_tc, tci = j * dev_maps->num_tc; i--; tci++) {
2979 			map = xmap_dereference(dev_maps->attr_map[tci]);
2980 			if (!map)
2981 				continue;
2982 
2983 			if (copy) {
2984 				new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
2985 				if (map == new_map)
2986 					continue;
2987 			}
2988 
2989 			RCU_INIT_POINTER(dev_maps->attr_map[tci], NULL);
2990 			kfree_rcu(map, rcu);
2991 		}
2992 	}
2993 
2994 	old_dev_maps = dev_maps;
2995 
2996 out_no_old_maps:
2997 	dev_maps = new_dev_maps;
2998 	active = true;
2999 
3000 out_no_new_maps:
3001 	if (type == XPS_CPUS)
3002 		/* update Tx queue numa node */
3003 		netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
3004 					     (numa_node_id >= 0) ?
3005 					     numa_node_id : NUMA_NO_NODE);
3006 
3007 	if (!dev_maps)
3008 		goto out_no_maps;
3009 
3010 	/* removes tx-queue from unused CPUs/rx-queues */
3011 	for (j = 0; j < dev_maps->nr_ids; j++) {
3012 		tci = j * dev_maps->num_tc;
3013 
3014 		for (i = 0; i < dev_maps->num_tc; i++, tci++) {
3015 			if (i == tc &&
3016 			    netif_attr_test_mask(j, mask, dev_maps->nr_ids) &&
3017 			    netif_attr_test_online(j, online_mask, dev_maps->nr_ids))
3018 				continue;
3019 
3020 			active |= remove_xps_queue(dev_maps,
3021 						   copy ? old_dev_maps : NULL,
3022 						   tci, index);
3023 		}
3024 	}
3025 
3026 	if (old_dev_maps)
3027 		kfree_rcu(old_dev_maps, rcu);
3028 
3029 	/* free map if not active */
3030 	if (!active)
3031 		reset_xps_maps(dev, dev_maps, type);
3032 
3033 out_no_maps:
3034 	mutex_unlock(&xps_map_mutex);
3035 
3036 	return 0;
3037 error:
3038 	/* remove any maps that we added */
3039 	for (j = 0; j < nr_ids; j++) {
3040 		for (i = num_tc, tci = j * num_tc; i--; tci++) {
3041 			new_map = xmap_dereference(new_dev_maps->attr_map[tci]);
3042 			map = copy ?
3043 			      xmap_dereference(dev_maps->attr_map[tci]) :
3044 			      NULL;
3045 			if (new_map && new_map != map)
3046 				kfree(new_map);
3047 		}
3048 	}
3049 
3050 	mutex_unlock(&xps_map_mutex);
3051 
3052 	kfree(new_dev_maps);
3053 	return -ENOMEM;
3054 }
3055 EXPORT_SYMBOL_GPL(__netif_set_xps_queue);
3056 
3057 int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
3058 			u16 index)
3059 {
3060 	int ret;
3061 
3062 	cpus_read_lock();
3063 	ret =  __netif_set_xps_queue(dev, cpumask_bits(mask), index, XPS_CPUS);
3064 	cpus_read_unlock();
3065 
3066 	return ret;
3067 }
3068 EXPORT_SYMBOL(netif_set_xps_queue);
3069 
3070 #endif
3071 static void netdev_unbind_all_sb_channels(struct net_device *dev)
3072 {
3073 	struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
3074 
3075 	/* Unbind any subordinate channels */
3076 	while (txq-- != &dev->_tx[0]) {
3077 		if (txq->sb_dev)
3078 			netdev_unbind_sb_channel(dev, txq->sb_dev);
3079 	}
3080 }
3081 
3082 void netdev_reset_tc(struct net_device *dev)
3083 {
3084 #ifdef CONFIG_XPS
3085 	netif_reset_xps_queues_gt(dev, 0);
3086 #endif
3087 	netdev_unbind_all_sb_channels(dev);
3088 
3089 	/* Reset TC configuration of device */
3090 	dev->num_tc = 0;
3091 	memset(dev->tc_to_txq, 0, sizeof(dev->tc_to_txq));
3092 	memset(dev->prio_tc_map, 0, sizeof(dev->prio_tc_map));
3093 }
3094 EXPORT_SYMBOL(netdev_reset_tc);
3095 
3096 int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset)
3097 {
3098 	if (tc >= dev->num_tc)
3099 		return -EINVAL;
3100 
3101 #ifdef CONFIG_XPS
3102 	netif_reset_xps_queues(dev, offset, count);
3103 #endif
3104 	dev->tc_to_txq[tc].count = count;
3105 	dev->tc_to_txq[tc].offset = offset;
3106 	return 0;
3107 }
3108 EXPORT_SYMBOL(netdev_set_tc_queue);
3109 
3110 int netdev_set_num_tc(struct net_device *dev, u8 num_tc)
3111 {
3112 	if (num_tc > TC_MAX_QUEUE)
3113 		return -EINVAL;
3114 
3115 #ifdef CONFIG_XPS
3116 	netif_reset_xps_queues_gt(dev, 0);
3117 #endif
3118 	netdev_unbind_all_sb_channels(dev);
3119 
3120 	dev->num_tc = num_tc;
3121 	return 0;
3122 }
3123 EXPORT_SYMBOL(netdev_set_num_tc);
3124 
3125 void netdev_unbind_sb_channel(struct net_device *dev,
3126 			      struct net_device *sb_dev)
3127 {
3128 	struct netdev_queue *txq = &dev->_tx[dev->num_tx_queues];
3129 
3130 #ifdef CONFIG_XPS
3131 	netif_reset_xps_queues_gt(sb_dev, 0);
3132 #endif
3133 	memset(sb_dev->tc_to_txq, 0, sizeof(sb_dev->tc_to_txq));
3134 	memset(sb_dev->prio_tc_map, 0, sizeof(sb_dev->prio_tc_map));
3135 
3136 	while (txq-- != &dev->_tx[0]) {
3137 		if (txq->sb_dev == sb_dev)
3138 			txq->sb_dev = NULL;
3139 	}
3140 }
3141 EXPORT_SYMBOL(netdev_unbind_sb_channel);
3142 
3143 int netdev_bind_sb_channel_queue(struct net_device *dev,
3144 				 struct net_device *sb_dev,
3145 				 u8 tc, u16 count, u16 offset)
3146 {
3147 	/* Make certain the sb_dev and dev are already configured */
3148 	if (sb_dev->num_tc >= 0 || tc >= dev->num_tc)
3149 		return -EINVAL;
3150 
3151 	/* We cannot hand out queues we don't have */
3152 	if ((offset + count) > dev->real_num_tx_queues)
3153 		return -EINVAL;
3154 
3155 	/* Record the mapping */
3156 	sb_dev->tc_to_txq[tc].count = count;
3157 	sb_dev->tc_to_txq[tc].offset = offset;
3158 
3159 	/* Provide a way for Tx queue to find the tc_to_txq map or
3160 	 * XPS map for itself.
3161 	 */
3162 	while (count--)
3163 		netdev_get_tx_queue(dev, count + offset)->sb_dev = sb_dev;
3164 
3165 	return 0;
3166 }
3167 EXPORT_SYMBOL(netdev_bind_sb_channel_queue);
3168 
3169 int netdev_set_sb_channel(struct net_device *dev, u16 channel)
3170 {
3171 	/* Do not use a multiqueue device to represent a subordinate channel */
3172 	if (netif_is_multiqueue(dev))
3173 		return -ENODEV;
3174 
3175 	/* We allow channels 1 - 32767 to be used for subordinate channels.
3176 	 * Channel 0 is meant to be "native" mode and used only to represent
3177 	 * the main root device. We allow writing 0 to reset the device back
3178 	 * to normal mode after being used as a subordinate channel.
3179 	 */
3180 	if (channel > S16_MAX)
3181 		return -EINVAL;
3182 
3183 	dev->num_tc = -channel;
3184 
3185 	return 0;
3186 }
3187 EXPORT_SYMBOL(netdev_set_sb_channel);
3188 
3189 /*
3190  * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
3191  * greater than real_num_tx_queues stale skbs on the qdisc must be flushed.
3192  */
3193 int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
3194 {
3195 	bool disabling;
3196 	int rc;
3197 
3198 	disabling = txq < dev->real_num_tx_queues;
3199 
3200 	if (txq < 1 || txq > dev->num_tx_queues)
3201 		return -EINVAL;
3202 
3203 	if (dev->reg_state == NETREG_REGISTERED ||
3204 	    dev->reg_state == NETREG_UNREGISTERING) {
3205 		netdev_assert_locked_ops_compat(dev);
3206 
3207 		rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
3208 						  txq);
3209 		if (rc)
3210 			return rc;
3211 
3212 		if (dev->num_tc)
3213 			netif_setup_tc(dev, txq);
3214 
3215 		net_shaper_set_real_num_tx_queues(dev, txq);
3216 
3217 		dev_qdisc_change_real_num_tx(dev, txq);
3218 
3219 		dev->real_num_tx_queues = txq;
3220 
3221 		if (disabling) {
3222 			synchronize_net();
3223 			qdisc_reset_all_tx_gt(dev, txq);
3224 #ifdef CONFIG_XPS
3225 			netif_reset_xps_queues_gt(dev, txq);
3226 #endif
3227 		}
3228 	} else {
3229 		dev->real_num_tx_queues = txq;
3230 	}
3231 
3232 	return 0;
3233 }
3234 EXPORT_SYMBOL(netif_set_real_num_tx_queues);
3235 
3236 /**
3237  *	netif_set_real_num_rx_queues - set actual number of RX queues used
3238  *	@dev: Network device
3239  *	@rxq: Actual number of RX queues
3240  *
3241  *	This must be called either with the rtnl_lock held or before
3242  *	registration of the net device.  Returns 0 on success, or a
3243  *	negative error code.  If called before registration, it always
3244  *	succeeds.
3245  */
3246 int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
3247 {
3248 	int rc;
3249 
3250 	if (rxq < 1 || rxq > dev->num_rx_queues)
3251 		return -EINVAL;
3252 
3253 	if (dev->reg_state == NETREG_REGISTERED) {
3254 		netdev_assert_locked_ops_compat(dev);
3255 
3256 		rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
3257 						  rxq);
3258 		if (rc)
3259 			return rc;
3260 	}
3261 
3262 	dev->real_num_rx_queues = rxq;
3263 	return 0;
3264 }
3265 EXPORT_SYMBOL(netif_set_real_num_rx_queues);
3266 
3267 /**
3268  *	netif_set_real_num_queues - set actual number of RX and TX queues used
3269  *	@dev: Network device
3270  *	@txq: Actual number of TX queues
3271  *	@rxq: Actual number of RX queues
3272  *
3273  *	Set the real number of both TX and RX queues.
3274  *	Does nothing if the number of queues is already correct.
3275  */
3276 int netif_set_real_num_queues(struct net_device *dev,
3277 			      unsigned int txq, unsigned int rxq)
3278 {
3279 	unsigned int old_rxq = dev->real_num_rx_queues;
3280 	int err;
3281 
3282 	if (txq < 1 || txq > dev->num_tx_queues ||
3283 	    rxq < 1 || rxq > dev->num_rx_queues)
3284 		return -EINVAL;
3285 
3286 	/* Start from increases, so the error path only does decreases -
3287 	 * decreases can't fail.
3288 	 */
3289 	if (rxq > dev->real_num_rx_queues) {
3290 		err = netif_set_real_num_rx_queues(dev, rxq);
3291 		if (err)
3292 			return err;
3293 	}
3294 	if (txq > dev->real_num_tx_queues) {
3295 		err = netif_set_real_num_tx_queues(dev, txq);
3296 		if (err)
3297 			goto undo_rx;
3298 	}
3299 	if (rxq < dev->real_num_rx_queues)
3300 		WARN_ON(netif_set_real_num_rx_queues(dev, rxq));
3301 	if (txq < dev->real_num_tx_queues)
3302 		WARN_ON(netif_set_real_num_tx_queues(dev, txq));
3303 
3304 	return 0;
3305 undo_rx:
3306 	WARN_ON(netif_set_real_num_rx_queues(dev, old_rxq));
3307 	return err;
3308 }
3309 EXPORT_SYMBOL(netif_set_real_num_queues);
3310 
3311 /**
3312  * netif_set_tso_max_size() - set the max size of TSO frames supported
3313  * @dev:	netdev to update
3314  * @size:	max skb->len of a TSO frame
3315  *
3316  * Set the limit on the size of TSO super-frames the device can handle.
3317  * Unless explicitly set the stack will assume the value of
3318  * %GSO_LEGACY_MAX_SIZE.
3319  */
3320 void netif_set_tso_max_size(struct net_device *dev, unsigned int size)
3321 {
3322 	dev->tso_max_size = min(GSO_MAX_SIZE, size);
3323 	if (size < READ_ONCE(dev->gso_max_size))
3324 		netif_set_gso_max_size(dev, size);
3325 	if (size < READ_ONCE(dev->gso_ipv4_max_size))
3326 		netif_set_gso_ipv4_max_size(dev, size);
3327 }
3328 EXPORT_SYMBOL(netif_set_tso_max_size);
3329 
3330 /**
3331  * netif_set_tso_max_segs() - set the max number of segs supported for TSO
3332  * @dev:	netdev to update
3333  * @segs:	max number of TCP segments
3334  *
3335  * Set the limit on the number of TCP segments the device can generate from
3336  * a single TSO super-frame.
3337  * Unless explicitly set the stack will assume the value of %GSO_MAX_SEGS.
3338  */
3339 void netif_set_tso_max_segs(struct net_device *dev, unsigned int segs)
3340 {
3341 	dev->tso_max_segs = segs;
3342 	if (segs < READ_ONCE(dev->gso_max_segs))
3343 		netif_set_gso_max_segs(dev, segs);
3344 }
3345 EXPORT_SYMBOL(netif_set_tso_max_segs);
3346 
3347 /**
3348  * netif_inherit_tso_max() - copy all TSO limits from a lower device to an upper
3349  * @to:		netdev to update
3350  * @from:	netdev from which to copy the limits
3351  */
3352 void netif_inherit_tso_max(struct net_device *to, const struct net_device *from)
3353 {
3354 	netif_set_tso_max_size(to, from->tso_max_size);
3355 	netif_set_tso_max_segs(to, from->tso_max_segs);
3356 }
3357 EXPORT_SYMBOL(netif_inherit_tso_max);
3358 
3359 /**
3360  * netif_get_num_default_rss_queues - default number of RSS queues
3361  *
3362  * Default value is the number of physical cores if there are only 1 or 2, or
3363  * divided by 2 if there are more.
3364  */
3365 int netif_get_num_default_rss_queues(void)
3366 {
3367 	cpumask_var_t cpus;
3368 	int cpu, count = 0;
3369 
3370 	if (unlikely(is_kdump_kernel() || !zalloc_cpumask_var(&cpus, GFP_KERNEL)))
3371 		return 1;
3372 
3373 	cpumask_copy(cpus, cpu_online_mask);
3374 	for_each_cpu(cpu, cpus) {
3375 		++count;
3376 		cpumask_andnot(cpus, cpus, topology_sibling_cpumask(cpu));
3377 	}
3378 	free_cpumask_var(cpus);
3379 
3380 	return count > 2 ? DIV_ROUND_UP(count, 2) : count;
3381 }
3382 EXPORT_SYMBOL(netif_get_num_default_rss_queues);
3383 
3384 static void __netif_reschedule(struct Qdisc *q)
3385 {
3386 	struct softnet_data *sd;
3387 	unsigned long flags;
3388 
3389 	local_irq_save(flags);
3390 	sd = this_cpu_ptr(&softnet_data);
3391 	q->next_sched = NULL;
3392 	*sd->output_queue_tailp = q;
3393 	sd->output_queue_tailp = &q->next_sched;
3394 	raise_softirq_irqoff(NET_TX_SOFTIRQ);
3395 	local_irq_restore(flags);
3396 }
3397 
3398 void __netif_schedule(struct Qdisc *q)
3399 {
3400 	/* If q->defer_list is not empty, at least one thread is
3401 	 * in __dev_xmit_skb() before llist_del_all(&q->defer_list).
3402 	 * This thread will attempt to run the queue.
3403 	 */
3404 	if (!llist_empty(&q->defer_list))
3405 		return;
3406 
3407 	if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
3408 		__netif_reschedule(q);
3409 }
3410 EXPORT_SYMBOL(__netif_schedule);
3411 
3412 struct dev_kfree_skb_cb {
3413 	enum skb_drop_reason reason;
3414 };
3415 
3416 static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
3417 {
3418 	return (struct dev_kfree_skb_cb *)skb->cb;
3419 }
3420 
3421 void netif_schedule_queue(struct netdev_queue *txq)
3422 {
3423 	rcu_read_lock();
3424 	if (!netif_xmit_stopped(txq)) {
3425 		struct Qdisc *q = rcu_dereference(txq->qdisc);
3426 
3427 		__netif_schedule(q);
3428 	}
3429 	rcu_read_unlock();
3430 }
3431 EXPORT_SYMBOL(netif_schedule_queue);
3432 
3433 void netif_tx_wake_queue(struct netdev_queue *dev_queue)
3434 {
3435 	if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
3436 		struct Qdisc *q;
3437 
3438 		rcu_read_lock();
3439 		q = rcu_dereference(dev_queue->qdisc);
3440 		__netif_schedule(q);
3441 		rcu_read_unlock();
3442 	}
3443 }
3444 EXPORT_SYMBOL(netif_tx_wake_queue);
3445 
3446 void dev_kfree_skb_irq_reason(struct sk_buff *skb, enum skb_drop_reason reason)
3447 {
3448 	unsigned long flags;
3449 
3450 	if (unlikely(!skb))
3451 		return;
3452 
3453 	if (likely(refcount_read(&skb->users) == 1)) {
3454 		smp_rmb();
3455 		refcount_set(&skb->users, 0);
3456 	} else if (likely(!refcount_dec_and_test(&skb->users))) {
3457 		return;
3458 	}
3459 	get_kfree_skb_cb(skb)->reason = reason;
3460 	local_irq_save(flags);
3461 	skb->next = __this_cpu_read(softnet_data.completion_queue);
3462 	__this_cpu_write(softnet_data.completion_queue, skb);
3463 	raise_softirq_irqoff(NET_TX_SOFTIRQ);
3464 	local_irq_restore(flags);
3465 }
3466 EXPORT_SYMBOL(dev_kfree_skb_irq_reason);
3467 
3468 void dev_kfree_skb_any_reason(struct sk_buff *skb, enum skb_drop_reason reason)
3469 {
3470 	if (in_hardirq() || irqs_disabled())
3471 		dev_kfree_skb_irq_reason(skb, reason);
3472 	else
3473 		kfree_skb_reason(skb, reason);
3474 }
3475 EXPORT_SYMBOL(dev_kfree_skb_any_reason);
3476 
3477 
3478 /**
3479  * netif_device_detach - mark device as removed
3480  * @dev: network device
3481  *
3482  * Mark device as removed from system and therefore no longer available.
3483  */
3484 void netif_device_detach(struct net_device *dev)
3485 {
3486 	if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
3487 	    netif_running(dev)) {
3488 		netif_tx_stop_all_queues(dev);
3489 	}
3490 }
3491 EXPORT_SYMBOL(netif_device_detach);
3492 
3493 /**
3494  * netif_device_attach - mark device as attached
3495  * @dev: network device
3496  *
3497  * Mark device as attached from system and restart if needed.
3498  */
3499 void netif_device_attach(struct net_device *dev)
3500 {
3501 	if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
3502 	    netif_running(dev)) {
3503 		netif_tx_wake_all_queues(dev);
3504 		netdev_watchdog_up(dev);
3505 	}
3506 }
3507 EXPORT_SYMBOL(netif_device_attach);
3508 
3509 /*
3510  * Returns a Tx hash based on the given packet descriptor a Tx queues' number
3511  * to be used as a distribution range.
3512  */
3513 static u16 skb_tx_hash(const struct net_device *dev,
3514 		       const struct net_device *sb_dev,
3515 		       struct sk_buff *skb)
3516 {
3517 	u32 hash;
3518 	u16 qoffset = 0;
3519 	u16 qcount = dev->real_num_tx_queues;
3520 
3521 	if (dev->num_tc) {
3522 		u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
3523 
3524 		qoffset = sb_dev->tc_to_txq[tc].offset;
3525 		qcount = sb_dev->tc_to_txq[tc].count;
3526 		if (unlikely(!qcount)) {
3527 			net_warn_ratelimited("%s: invalid qcount, qoffset %u for tc %u\n",
3528 					     sb_dev->name, qoffset, tc);
3529 			qoffset = 0;
3530 			qcount = dev->real_num_tx_queues;
3531 		}
3532 	}
3533 
3534 	if (skb_rx_queue_recorded(skb)) {
3535 		DEBUG_NET_WARN_ON_ONCE(qcount == 0);
3536 		hash = skb_get_rx_queue(skb);
3537 		if (hash >= qoffset)
3538 			hash -= qoffset;
3539 		while (unlikely(hash >= qcount))
3540 			hash -= qcount;
3541 		return hash + qoffset;
3542 	}
3543 
3544 	return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
3545 }
3546 
3547 void skb_warn_bad_offload(const struct sk_buff *skb)
3548 {
3549 	static const netdev_features_t null_features;
3550 	struct net_device *dev = skb->dev;
3551 	const char *name = "";
3552 
3553 	if (!net_ratelimit())
3554 		return;
3555 
3556 	if (dev) {
3557 		if (dev->dev.parent)
3558 			name = dev_driver_string(dev->dev.parent);
3559 		else
3560 			name = netdev_name(dev);
3561 	}
3562 	skb_dump(KERN_WARNING, skb, false);
3563 	WARN(1, "%s: caps=(%pNF, %pNF)\n",
3564 	     name, dev ? &dev->features : &null_features,
3565 	     skb->sk ? &skb->sk->sk_route_caps : &null_features);
3566 }
3567 
3568 /*
3569  * Invalidate hardware checksum when packet is to be mangled, and
3570  * complete checksum manually on outgoing path.
3571  */
3572 int skb_checksum_help(struct sk_buff *skb)
3573 {
3574 	__wsum csum;
3575 	int ret = 0, offset;
3576 
3577 	if (skb->ip_summed == CHECKSUM_COMPLETE)
3578 		goto out_set_summed;
3579 
3580 	if (unlikely(skb_is_gso(skb))) {
3581 		skb_warn_bad_offload(skb);
3582 		return -EINVAL;
3583 	}
3584 
3585 	if (!skb_frags_readable(skb)) {
3586 		return -EFAULT;
3587 	}
3588 
3589 	/* Before computing a checksum, we should make sure no frag could
3590 	 * be modified by an external entity : checksum could be wrong.
3591 	 */
3592 	if (skb_has_shared_frag(skb)) {
3593 		ret = __skb_linearize(skb);
3594 		if (ret)
3595 			goto out;
3596 	}
3597 
3598 	offset = skb_checksum_start_offset(skb);
3599 	ret = -EINVAL;
3600 	if (unlikely(offset >= skb_headlen(skb))) {
3601 		DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false);
3602 		WARN_ONCE(true, "offset (%d) >= skb_headlen() (%u)\n",
3603 			  offset, skb_headlen(skb));
3604 		goto out;
3605 	}
3606 	csum = skb_checksum(skb, offset, skb->len - offset, 0);
3607 
3608 	offset += skb->csum_offset;
3609 	if (unlikely(offset + sizeof(__sum16) > skb_headlen(skb))) {
3610 		DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false);
3611 		WARN_ONCE(true, "offset+2 (%zu) > skb_headlen() (%u)\n",
3612 			  offset + sizeof(__sum16), skb_headlen(skb));
3613 		goto out;
3614 	}
3615 	ret = skb_ensure_writable(skb, offset + sizeof(__sum16));
3616 	if (ret)
3617 		goto out;
3618 
3619 	*(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
3620 out_set_summed:
3621 	skb->ip_summed = CHECKSUM_NONE;
3622 out:
3623 	return ret;
3624 }
3625 EXPORT_SYMBOL(skb_checksum_help);
3626 
3627 #ifdef CONFIG_NET_CRC32C
3628 int skb_crc32c_csum_help(struct sk_buff *skb)
3629 {
3630 	u32 crc;
3631 	int ret = 0, offset, start;
3632 
3633 	if (skb->ip_summed != CHECKSUM_PARTIAL)
3634 		goto out;
3635 
3636 	if (unlikely(skb_is_gso(skb)))
3637 		goto out;
3638 
3639 	/* Before computing a checksum, we should make sure no frag could
3640 	 * be modified by an external entity : checksum could be wrong.
3641 	 */
3642 	if (unlikely(skb_has_shared_frag(skb))) {
3643 		ret = __skb_linearize(skb);
3644 		if (ret)
3645 			goto out;
3646 	}
3647 	start = skb_checksum_start_offset(skb);
3648 	offset = start + offsetof(struct sctphdr, checksum);
3649 	if (WARN_ON_ONCE(offset >= skb_headlen(skb))) {
3650 		ret = -EINVAL;
3651 		goto out;
3652 	}
3653 
3654 	ret = skb_ensure_writable(skb, offset + sizeof(__le32));
3655 	if (ret)
3656 		goto out;
3657 
3658 	crc = ~skb_crc32c(skb, start, skb->len - start, ~0);
3659 	*(__le32 *)(skb->data + offset) = cpu_to_le32(crc);
3660 	skb_reset_csum_not_inet(skb);
3661 out:
3662 	return ret;
3663 }
3664 EXPORT_SYMBOL(skb_crc32c_csum_help);
3665 #endif /* CONFIG_NET_CRC32C */
3666 
3667 __be16 skb_network_protocol(struct sk_buff *skb, int *depth)
3668 {
3669 	__be16 type = skb->protocol;
3670 
3671 	/* Tunnel gso handlers can set protocol to ethernet. */
3672 	if (type == htons(ETH_P_TEB)) {
3673 		struct ethhdr *eth;
3674 
3675 		if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
3676 			return 0;
3677 
3678 		eth = (struct ethhdr *)skb->data;
3679 		type = eth->h_proto;
3680 	}
3681 
3682 	return vlan_get_protocol_and_depth(skb, type, depth);
3683 }
3684 
3685 
3686 /* Take action when hardware reception checksum errors are detected. */
3687 #ifdef CONFIG_BUG
3688 static void do_netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
3689 {
3690 	netdev_err(dev, "hw csum failure\n");
3691 	skb_dump(KERN_ERR, skb, true);
3692 	dump_stack();
3693 }
3694 
3695 void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb)
3696 {
3697 	DO_ONCE_LITE(do_netdev_rx_csum_fault, dev, skb);
3698 }
3699 EXPORT_SYMBOL(netdev_rx_csum_fault);
3700 #endif
3701 
3702 /* XXX: check that highmem exists at all on the given machine. */
3703 static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
3704 {
3705 #ifdef CONFIG_HIGHMEM
3706 	int i;
3707 
3708 	if (!(dev->features & NETIF_F_HIGHDMA)) {
3709 		for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
3710 			skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
3711 			struct page *page = skb_frag_page(frag);
3712 
3713 			if (page && PageHighMem(page))
3714 				return 1;
3715 		}
3716 	}
3717 #endif
3718 	return 0;
3719 }
3720 
3721 /* If MPLS offload request, verify we are testing hardware MPLS features
3722  * instead of standard features for the netdev.
3723  */
3724 #if IS_ENABLED(CONFIG_NET_MPLS_GSO)
3725 static netdev_features_t net_mpls_features(struct sk_buff *skb,
3726 					   netdev_features_t features,
3727 					   __be16 type)
3728 {
3729 	if (eth_p_mpls(type))
3730 		features &= skb->dev->mpls_features;
3731 
3732 	return features;
3733 }
3734 #else
3735 static netdev_features_t net_mpls_features(struct sk_buff *skb,
3736 					   netdev_features_t features,
3737 					   __be16 type)
3738 {
3739 	return features;
3740 }
3741 #endif
3742 
3743 static netdev_features_t harmonize_features(struct sk_buff *skb,
3744 	netdev_features_t features)
3745 {
3746 	__be16 type;
3747 
3748 	type = skb_network_protocol(skb, NULL);
3749 	features = net_mpls_features(skb, features, type);
3750 
3751 	if (skb->ip_summed != CHECKSUM_NONE &&
3752 	    !can_checksum_protocol(features, type)) {
3753 		features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
3754 	}
3755 	if (illegal_highdma(skb->dev, skb))
3756 		features &= ~NETIF_F_SG;
3757 
3758 	return features;
3759 }
3760 
3761 netdev_features_t passthru_features_check(struct sk_buff *skb,
3762 					  struct net_device *dev,
3763 					  netdev_features_t features)
3764 {
3765 	return features;
3766 }
3767 EXPORT_SYMBOL(passthru_features_check);
3768 
3769 static netdev_features_t dflt_features_check(struct sk_buff *skb,
3770 					     struct net_device *dev,
3771 					     netdev_features_t features)
3772 {
3773 	return vlan_features_check(skb, features);
3774 }
3775 
3776 static bool skb_gso_has_extension_hdr(const struct sk_buff *skb)
3777 {
3778 	if (!skb->encapsulation)
3779 		return ((skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6 ||
3780 			 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4 &&
3781 			  vlan_get_protocol(skb) == htons(ETH_P_IPV6))) &&
3782 			skb_transport_header_was_set(skb) &&
3783 			skb_network_header_len(skb) != sizeof(struct ipv6hdr));
3784 	else
3785 		return (!skb_inner_network_header_was_set(skb) ||
3786 			((skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6 ||
3787 			  (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4 &&
3788 			   inner_ip_hdr(skb)->version == 6)) &&
3789 			 skb_inner_network_header_len(skb) != sizeof(struct ipv6hdr)));
3790 }
3791 
3792 static netdev_features_t gso_features_check(const struct sk_buff *skb,
3793 					    struct net_device *dev,
3794 					    netdev_features_t features)
3795 {
3796 	u16 gso_segs = skb_shinfo(skb)->gso_segs;
3797 
3798 	if (gso_segs > READ_ONCE(dev->gso_max_segs))
3799 		return features & ~NETIF_F_GSO_MASK;
3800 
3801 	if (unlikely(skb->len >= netif_get_gso_max_size(dev, skb)))
3802 		return features & ~NETIF_F_GSO_MASK;
3803 
3804 	if (!skb_shinfo(skb)->gso_type) {
3805 		skb_warn_bad_offload(skb);
3806 		return features & ~NETIF_F_GSO_MASK;
3807 	}
3808 
3809 	/* Support for GSO partial features requires software
3810 	 * intervention before we can actually process the packets
3811 	 * so we need to strip support for any partial features now
3812 	 * and we can pull them back in after we have partially
3813 	 * segmented the frame.
3814 	 */
3815 	if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
3816 		features &= ~dev->gso_partial_features;
3817 
3818 	/* Make sure to clear the IPv4 ID mangling feature if the IPv4 header
3819 	 * has the potential to be fragmented so that TSO does not generate
3820 	 * segments with the same ID. For encapsulated packets, the ID mangling
3821 	 * feature is guaranteed not to use the same ID for the outer IPv4
3822 	 * headers of the generated segments if the headers have the potential
3823 	 * to be fragmented, so there is no need to clear the IPv4 ID mangling
3824 	 * feature (see the section about NETIF_F_TSO_MANGLEID in
3825 	 * segmentation-offloads.rst).
3826 	 */
3827 	if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
3828 		const struct iphdr *iph;
3829 		struct iphdr _iph;
3830 		int nhoff = skb->encapsulation ?
3831 			    skb_inner_network_offset(skb) :
3832 			    skb_network_offset(skb);
3833 
3834 		iph = skb_header_pointer(skb, nhoff, sizeof(_iph), &_iph);
3835 
3836 		if (!iph || !(iph->frag_off & htons(IP_DF)))
3837 			features &= ~dev->mangleid_features;
3838 	}
3839 
3840 	/* NETIF_F_IPV6_CSUM does not support IPv6 extension headers,
3841 	 * so neither does TSO that depends on it.
3842 	 */
3843 	if (features & NETIF_F_IPV6_CSUM &&
3844 	    skb_gso_has_extension_hdr(skb))
3845 		features &= ~(NETIF_F_IPV6_CSUM | NETIF_F_TSO6 | NETIF_F_GSO_UDP_L4);
3846 
3847 	return features;
3848 }
3849 
3850 netdev_features_t netif_skb_features(struct sk_buff *skb)
3851 {
3852 	struct net_device *dev = skb->dev;
3853 	netdev_features_t features = dev->features;
3854 
3855 	if (skb_is_gso(skb))
3856 		features = gso_features_check(skb, dev, features);
3857 
3858 	/* If encapsulation offload request, verify we are testing
3859 	 * hardware encapsulation features instead of standard
3860 	 * features for the netdev
3861 	 */
3862 	if (skb->encapsulation)
3863 		features &= dev->hw_enc_features;
3864 
3865 	if (skb_vlan_tagged(skb))
3866 		features = netdev_intersect_features(features,
3867 						     dev->vlan_features |
3868 						     NETIF_F_HW_VLAN_CTAG_TX |
3869 						     NETIF_F_HW_VLAN_STAG_TX);
3870 
3871 	if (dev->netdev_ops->ndo_features_check)
3872 		features &= dev->netdev_ops->ndo_features_check(skb, dev,
3873 								features);
3874 	else
3875 		features &= dflt_features_check(skb, dev, features);
3876 
3877 	return harmonize_features(skb, features);
3878 }
3879 EXPORT_SYMBOL(netif_skb_features);
3880 
3881 static int xmit_one(struct sk_buff *skb, struct net_device *dev,
3882 		    struct netdev_queue *txq, bool more)
3883 {
3884 	unsigned int len;
3885 	int rc;
3886 
3887 	if (dev_nit_active_rcu(dev))
3888 		dev_queue_xmit_nit(skb, dev);
3889 
3890 	len = skb->len;
3891 	trace_net_dev_start_xmit(skb, dev);
3892 	rc = netdev_start_xmit(skb, dev, txq, more);
3893 	trace_net_dev_xmit(skb, rc, dev, len);
3894 
3895 	return rc;
3896 }
3897 
3898 struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3899 				    struct netdev_queue *txq, int *ret)
3900 {
3901 	struct sk_buff *skb = first;
3902 	int rc = NETDEV_TX_OK;
3903 
3904 	while (skb) {
3905 		struct sk_buff *next = skb->next;
3906 
3907 		skb_mark_not_on_list(skb);
3908 		rc = xmit_one(skb, dev, txq, next != NULL);
3909 		if (unlikely(!dev_xmit_complete(rc))) {
3910 			skb->next = next;
3911 			goto out;
3912 		}
3913 
3914 		skb = next;
3915 		if (netif_tx_queue_stopped(txq) && skb) {
3916 			rc = NETDEV_TX_BUSY;
3917 			break;
3918 		}
3919 	}
3920 
3921 out:
3922 	*ret = rc;
3923 	return skb;
3924 }
3925 
3926 static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3927 					  netdev_features_t features)
3928 {
3929 	if (skb_vlan_tag_present(skb) &&
3930 	    !vlan_hw_offload_capable(features, skb->vlan_proto))
3931 		skb = __vlan_hwaccel_push_inside(skb);
3932 	return skb;
3933 }
3934 
3935 int skb_csum_hwoffload_help(struct sk_buff *skb,
3936 			    const netdev_features_t features)
3937 {
3938 	if (unlikely(skb_csum_is_sctp(skb)))
3939 		return !!(features & NETIF_F_SCTP_CRC) ? 0 :
3940 			skb_crc32c_csum_help(skb);
3941 
3942 	if (features & NETIF_F_HW_CSUM)
3943 		return 0;
3944 
3945 	if (features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) {
3946 		if (vlan_get_protocol(skb) == htons(ETH_P_IPV6) &&
3947 		    skb_network_header_len(skb) != sizeof(struct ipv6hdr))
3948 			goto sw_checksum;
3949 
3950 		switch (skb->csum_offset) {
3951 		case offsetof(struct tcphdr, check):
3952 		case offsetof(struct udphdr, check):
3953 			return 0;
3954 		}
3955 	}
3956 
3957 sw_checksum:
3958 	return skb_checksum_help(skb);
3959 }
3960 EXPORT_SYMBOL(skb_csum_hwoffload_help);
3961 
3962 /* Checks if this SKB belongs to an HW offloaded socket
3963  * and whether any SW fallbacks are required based on dev.
3964  * Check decrypted mark in case skb_orphan() cleared socket.
3965  */
3966 static struct sk_buff *sk_validate_xmit_skb(struct sk_buff *skb,
3967 					    struct net_device *dev)
3968 {
3969 #ifdef CONFIG_SOCK_VALIDATE_XMIT
3970 	struct sk_buff *(*sk_validate)(struct sock *sk, struct net_device *dev,
3971 				       struct sk_buff *skb);
3972 	struct sock *sk = skb->sk;
3973 
3974 	sk_validate = NULL;
3975 	if (sk) {
3976 		if (sk_fullsock(sk))
3977 			sk_validate = sk->sk_validate_xmit_skb;
3978 		else if (sk_is_inet(sk) && sk->sk_state == TCP_TIME_WAIT)
3979 			sk_validate = inet_twsk(sk)->tw_validate_xmit_skb;
3980 	}
3981 
3982 	if (sk_validate) {
3983 		skb = sk_validate(sk, dev, skb);
3984 	} else if (unlikely(skb_is_decrypted(skb))) {
3985 		pr_warn_ratelimited("unencrypted skb with no associated socket - dropping\n");
3986 		kfree_skb(skb);
3987 		skb = NULL;
3988 	}
3989 #endif
3990 
3991 	return skb;
3992 }
3993 
3994 static struct sk_buff *validate_xmit_unreadable_skb(struct sk_buff *skb,
3995 						    struct net_device *dev)
3996 {
3997 	struct skb_shared_info *shinfo;
3998 	struct net_iov *niov;
3999 
4000 	if (likely(skb_frags_readable(skb) ||
4001 		   dev->netmem_tx == NETMEM_TX_NO_DMA))
4002 		goto out;
4003 
4004 	if (dev->netmem_tx == NETMEM_TX_NONE)
4005 		goto out_free;
4006 
4007 	shinfo = skb_shinfo(skb);
4008 
4009 	if (shinfo->nr_frags > 0) {
4010 		niov = netmem_to_net_iov(skb_frag_netmem(&shinfo->frags[0]));
4011 		if (net_is_devmem_iov(niov) &&
4012 		    READ_ONCE(net_devmem_iov_binding(niov)->dev) != dev)
4013 			goto out_free;
4014 	}
4015 
4016 out:
4017 	return skb;
4018 
4019 out_free:
4020 	kfree_skb(skb);
4021 	return NULL;
4022 }
4023 
4024 /* Returns the skb on success, NULL if dropped, or ERR_PTR(-EINPROGRESS)
4025  * if stolen by async xfrm crypto (delivered via xfrm_dev_resume()).
4026  */
4027 static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev, bool *again)
4028 {
4029 	netdev_features_t features;
4030 
4031 	skb = validate_xmit_unreadable_skb(skb, dev);
4032 	if (unlikely(!skb))
4033 		goto out_null;
4034 
4035 	features = netif_skb_features(skb);
4036 	skb = validate_xmit_vlan(skb, features);
4037 	if (unlikely(!skb))
4038 		goto out_null;
4039 
4040 	skb = sk_validate_xmit_skb(skb, dev);
4041 	if (unlikely(!skb))
4042 		goto out_null;
4043 
4044 	if (netif_needs_gso(skb, features)) {
4045 		struct sk_buff *segs;
4046 
4047 		segs = skb_gso_segment(skb, features);
4048 		if (IS_ERR(segs)) {
4049 			goto out_kfree_skb;
4050 		} else if (segs) {
4051 			consume_skb(skb);
4052 			skb = segs;
4053 		}
4054 	} else {
4055 		if (skb_needs_linearize(skb, features) &&
4056 		    __skb_linearize(skb))
4057 			goto out_kfree_skb;
4058 
4059 		/* If packet is not checksummed and device does not
4060 		 * support checksumming for this protocol, complete
4061 		 * checksumming here.
4062 		 */
4063 		if (skb->ip_summed == CHECKSUM_PARTIAL) {
4064 			if (skb->encapsulation)
4065 				skb_set_inner_transport_header(skb,
4066 							       skb_checksum_start_offset(skb));
4067 			else
4068 				skb_set_transport_header(skb,
4069 							 skb_checksum_start_offset(skb));
4070 			if (skb_csum_hwoffload_help(skb, features))
4071 				goto out_kfree_skb;
4072 		}
4073 	}
4074 
4075 	skb = validate_xmit_xfrm(skb, features, again);
4076 
4077 	return skb;
4078 
4079 out_kfree_skb:
4080 	kfree_skb(skb);
4081 out_null:
4082 	dev_core_stats_tx_dropped_inc(dev);
4083 	return NULL;
4084 }
4085 
4086 struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again)
4087 {
4088 	struct sk_buff *next, *head = NULL, *tail;
4089 
4090 	for (; skb != NULL; skb = next) {
4091 		next = skb->next;
4092 		skb_mark_not_on_list(skb);
4093 
4094 		/* in case skb won't be segmented, point to itself */
4095 		skb->prev = skb;
4096 
4097 		skb = validate_xmit_skb(skb, dev, again);
4098 		if (IS_ERR_OR_NULL(skb))
4099 			continue;
4100 
4101 		if (!head)
4102 			head = skb;
4103 		else
4104 			tail->next = skb;
4105 		/* If skb was segmented, skb->prev points to
4106 		 * the last segment. If not, it still contains skb.
4107 		 */
4108 		tail = skb->prev;
4109 	}
4110 	return head;
4111 }
4112 EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
4113 
4114 static enum skb_drop_reason qdisc_pkt_len_segs_init(struct sk_buff *skb)
4115 {
4116 	struct skb_shared_info *shinfo = skb_shinfo(skb);
4117 	unsigned int hdr_len, tlen;
4118 	u16 gso_segs;
4119 
4120 	qdisc_skb_cb(skb)->pkt_len = skb->len;
4121 	if (!shinfo->gso_size) {
4122 		qdisc_skb_cb(skb)->pkt_segs = 1;
4123 		return SKB_NOT_DROPPED_YET;
4124 	}
4125 
4126 	qdisc_skb_cb(skb)->pkt_segs = gso_segs = shinfo->gso_segs;
4127 
4128 	/* To get more precise estimation of bytes sent on wire,
4129 	 * we add to pkt_len the headers size of all segments
4130 	 */
4131 
4132 	/* mac layer + network layer */
4133 	if (!skb->encapsulation) {
4134 		if (unlikely(!skb_transport_header_was_set(skb)))
4135 			return SKB_NOT_DROPPED_YET;
4136 		hdr_len = skb_transport_offset(skb);
4137 	} else {
4138 		hdr_len = skb_inner_transport_offset(skb);
4139 	}
4140 	/* + transport layer */
4141 	if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
4142 		const struct tcphdr *th;
4143 
4144 		if (!pskb_may_pull(skb, hdr_len + sizeof(struct tcphdr)))
4145 			return SKB_DROP_REASON_SKB_BAD_GSO;
4146 
4147 		th = (const struct tcphdr *)(skb->data + hdr_len);
4148 		tlen = __tcp_hdrlen(th);
4149 		if (tlen < sizeof(*th))
4150 			return SKB_DROP_REASON_SKB_BAD_GSO;
4151 		hdr_len += tlen;
4152 		if (!pskb_may_pull(skb, hdr_len))
4153 			return SKB_DROP_REASON_SKB_BAD_GSO;
4154 	} else if (shinfo->gso_type & SKB_GSO_UDP_L4) {
4155 		if (!pskb_may_pull(skb, hdr_len + sizeof(struct udphdr)))
4156 			return SKB_DROP_REASON_SKB_BAD_GSO;
4157 		hdr_len += sizeof(struct udphdr);
4158 	}
4159 
4160 	/* prior pskb_may_pull() might have changed skb->head. */
4161 	shinfo = skb_shinfo(skb);
4162 	if (unlikely(shinfo->gso_type & SKB_GSO_DODGY)) {
4163 		int payload = skb->len - hdr_len;
4164 
4165 		/* Malicious packet. */
4166 		if (payload <= 0)
4167 			return SKB_DROP_REASON_SKB_BAD_GSO;
4168 		gso_segs = DIV_ROUND_UP(payload, shinfo->gso_size);
4169 		shinfo->gso_segs = gso_segs;
4170 		qdisc_skb_cb(skb)->pkt_segs = gso_segs;
4171 	}
4172 	qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
4173 	return SKB_NOT_DROPPED_YET;
4174 }
4175 
4176 static int dev_qdisc_enqueue(struct sk_buff *skb, struct Qdisc *q,
4177 			     struct sk_buff **to_free,
4178 			     struct netdev_queue *txq)
4179 {
4180 	int rc;
4181 
4182 	rc = q->enqueue(skb, q, to_free) & NET_XMIT_MASK;
4183 	if (rc == NET_XMIT_SUCCESS)
4184 		trace_qdisc_enqueue(q, txq, skb);
4185 	return rc;
4186 }
4187 
4188 static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
4189 				 struct net_device *dev,
4190 				 struct netdev_queue *txq)
4191 {
4192 	struct sk_buff *next, *to_free = NULL, *to_free2 = NULL;
4193 	spinlock_t *root_lock = qdisc_lock(q);
4194 	struct llist_node *ll_list, *first_n;
4195 	unsigned long defer_count = 0;
4196 	int rc;
4197 
4198 	qdisc_calculate_pkt_len(skb, q);
4199 
4200 	tcf_set_qdisc_drop_reason(skb, QDISC_DROP_GENERIC);
4201 
4202 	if (q->flags & TCQ_F_NOLOCK) {
4203 		if (q->flags & TCQ_F_CAN_BYPASS && nolock_qdisc_is_empty(q) &&
4204 		    qdisc_run_begin(q)) {
4205 			/* Retest nolock_qdisc_is_empty() within the protection
4206 			 * of q->seqlock to protect from racing with requeuing.
4207 			 */
4208 			if (unlikely(!nolock_qdisc_is_empty(q))) {
4209 				rc = dev_qdisc_enqueue(skb, q, &to_free, txq);
4210 				__qdisc_run(q);
4211 				to_free2 = qdisc_run_end(q);
4212 
4213 				goto free_skbs;
4214 			}
4215 
4216 			qdisc_bstats_cpu_update(q, skb);
4217 			if (sch_direct_xmit(skb, q, dev, txq, NULL, true) &&
4218 			    !nolock_qdisc_is_empty(q))
4219 				__qdisc_run(q);
4220 
4221 			to_free2 = qdisc_run_end(q);
4222 			rc = NET_XMIT_SUCCESS;
4223 			goto free_skbs;
4224 		}
4225 
4226 		rc = dev_qdisc_enqueue(skb, q, &to_free, txq);
4227 		to_free2 = qdisc_run(q);
4228 		goto free_skbs;
4229 	}
4230 
4231 	/* Open code llist_add(&skb->ll_node, &q->defer_list) + queue limit.
4232 	 * In the try_cmpxchg() loop, we want to increment q->defer_count
4233 	 * at most once to limit the number of skbs in defer_list.
4234 	 * We perform the defer_count increment only if the list is not empty,
4235 	 * because some arches have slow atomic_long_inc_return().
4236 	 */
4237 	first_n = READ_ONCE(q->defer_list.first);
4238 	do {
4239 		if (first_n && !defer_count) {
4240 			defer_count = atomic_long_inc_return(&q->defer_count);
4241 			if (unlikely(defer_count > READ_ONCE(net_hotdata.qdisc_max_burst))) {
4242 				kfree_skb_reason(skb, SKB_DROP_REASON_QDISC_BURST_DROP);
4243 				return NET_XMIT_DROP;
4244 			}
4245 		}
4246 		skb->ll_node.next = first_n;
4247 	} while (!try_cmpxchg(&q->defer_list.first, &first_n, &skb->ll_node));
4248 
4249 	/* If defer_list was not empty, we know the cpu which queued
4250 	 * the first skb will process the whole list for us.
4251 	 */
4252 	if (first_n)
4253 		return NET_XMIT_SUCCESS;
4254 
4255 	spin_lock(root_lock);
4256 
4257 	ll_list = llist_del_all(&q->defer_list);
4258 	/* There is a small race because we clear defer_count not atomically
4259 	 * with the prior llist_del_all(). This means defer_list could grow
4260 	 * over qdisc_max_burst.
4261 	 */
4262 	atomic_long_set(&q->defer_count, 0);
4263 
4264 	ll_list = llist_reverse_order(ll_list);
4265 
4266 	if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
4267 		llist_for_each_entry_safe(skb, next, ll_list, ll_node)
4268 			__qdisc_drop(skb, &to_free);
4269 		rc = NET_XMIT_DROP;
4270 		goto unlock;
4271 	}
4272 	if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
4273 	    !llist_next(ll_list) && qdisc_run_begin(q)) {
4274 		/*
4275 		 * This is a work-conserving queue; there are no old skbs
4276 		 * waiting to be sent out; and the qdisc is not running -
4277 		 * xmit the skb directly.
4278 		 */
4279 
4280 		DEBUG_NET_WARN_ON_ONCE(skb != llist_entry(ll_list,
4281 							  struct sk_buff,
4282 							  ll_node));
4283 		qdisc_bstats_update(q, skb);
4284 		if (sch_direct_xmit(skb, q, dev, txq, root_lock, true))
4285 			__qdisc_run(q);
4286 		to_free2 = qdisc_run_end(q);
4287 		rc = NET_XMIT_SUCCESS;
4288 	} else {
4289 		int count = 0;
4290 
4291 		llist_for_each_entry_safe(skb, next, ll_list, ll_node) {
4292 			if (next) {
4293 				prefetch(next);
4294 				prefetch(&next->priority);
4295 				skb_mark_not_on_list(skb);
4296 			}
4297 			rc = dev_qdisc_enqueue(skb, q, &to_free, txq);
4298 			count++;
4299 		}
4300 		to_free2 = qdisc_run(q);
4301 		if (count != 1)
4302 			rc = NET_XMIT_SUCCESS;
4303 	}
4304 unlock:
4305 	spin_unlock(root_lock);
4306 
4307 free_skbs:
4308 	tcf_kfree_skb_list(to_free, q, txq, dev);
4309 	tcf_kfree_skb_list(to_free2, q, txq, dev);
4310 	return rc;
4311 }
4312 
4313 #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
4314 static void skb_update_prio(struct sk_buff *skb)
4315 {
4316 	const struct netprio_map *map;
4317 	const struct sock *sk;
4318 	unsigned int prioidx;
4319 
4320 	if (skb->priority)
4321 		return;
4322 	map = rcu_dereference_bh(skb->dev->priomap);
4323 	if (!map)
4324 		return;
4325 	sk = skb_to_full_sk(skb);
4326 	if (!sk)
4327 		return;
4328 
4329 	prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
4330 
4331 	if (prioidx < map->priomap_len)
4332 		skb->priority = map->priomap[prioidx];
4333 }
4334 #else
4335 #define skb_update_prio(skb)
4336 #endif
4337 
4338 /**
4339  *	dev_loopback_xmit - loop back @skb
4340  *	@net: network namespace this loopback is happening in
4341  *	@sk:  sk needed to be a netfilter okfn
4342  *	@skb: buffer to transmit
4343  */
4344 int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
4345 {
4346 	skb_reset_mac_header(skb);
4347 	__skb_pull(skb, skb_network_offset(skb));
4348 	skb->pkt_type = PACKET_LOOPBACK;
4349 	if (skb->ip_summed == CHECKSUM_NONE)
4350 		skb->ip_summed = CHECKSUM_UNNECESSARY;
4351 	DEBUG_NET_WARN_ON_ONCE(!skb_dst(skb));
4352 	skb_dst_force(skb);
4353 	netif_rx(skb);
4354 	return 0;
4355 }
4356 EXPORT_SYMBOL(dev_loopback_xmit);
4357 
4358 #ifdef CONFIG_NET_EGRESS
4359 static struct netdev_queue *
4360 netdev_tx_queue_mapping(struct net_device *dev, struct sk_buff *skb)
4361 {
4362 	int qm = skb_get_queue_mapping(skb);
4363 
4364 	return netdev_get_tx_queue(dev, netdev_cap_txqueue(dev, qm));
4365 }
4366 
4367 #ifndef CONFIG_PREEMPT_RT
4368 static bool netdev_xmit_txqueue_skipped(void)
4369 {
4370 	return __this_cpu_read(softnet_data.xmit.skip_txqueue);
4371 }
4372 
4373 void netdev_xmit_skip_txqueue(bool skip)
4374 {
4375 	__this_cpu_write(softnet_data.xmit.skip_txqueue, skip);
4376 }
4377 EXPORT_SYMBOL_GPL(netdev_xmit_skip_txqueue);
4378 
4379 #else
4380 static bool netdev_xmit_txqueue_skipped(void)
4381 {
4382 	return current->net_xmit.skip_txqueue;
4383 }
4384 
4385 void netdev_xmit_skip_txqueue(bool skip)
4386 {
4387 	current->net_xmit.skip_txqueue = skip;
4388 }
4389 EXPORT_SYMBOL_GPL(netdev_xmit_skip_txqueue);
4390 #endif
4391 #endif /* CONFIG_NET_EGRESS */
4392 
4393 #ifdef CONFIG_NET_XGRESS
4394 static int tc_run(struct tcx_entry *entry, struct sk_buff *skb,
4395 		  enum skb_drop_reason *drop_reason)
4396 {
4397 	int ret = TC_ACT_UNSPEC;
4398 #ifdef CONFIG_NET_CLS_ACT
4399 	struct mini_Qdisc *miniq = rcu_dereference_bh(entry->miniq);
4400 	struct tcf_result res;
4401 
4402 	if (!miniq)
4403 		return ret;
4404 
4405 	/* Global bypass */
4406 	if (!static_branch_likely(&tcf_sw_enabled_key))
4407 		return ret;
4408 
4409 	/* Block-wise bypass */
4410 	if (tcf_block_bypass_sw(miniq->block))
4411 		return ret;
4412 
4413 	tc_skb_cb(skb)->mru = 0;
4414 	qdisc_skb_cb(skb)->post_ct = false;
4415 	tcf_set_drop_reason(skb, *drop_reason);
4416 
4417 	mini_qdisc_bstats_cpu_update(miniq, skb);
4418 	ret = tcf_classify(skb, miniq->block, miniq->filter_list, &res, false);
4419 	/* Only tcf related quirks below. */
4420 	switch (ret) {
4421 	case TC_ACT_SHOT:
4422 		*drop_reason = tcf_get_drop_reason(skb);
4423 		mini_qdisc_qstats_cpu_drop(miniq);
4424 		break;
4425 	case TC_ACT_OK:
4426 	case TC_ACT_RECLASSIFY:
4427 		skb->tc_index = TC_H_MIN(res.classid);
4428 		break;
4429 	}
4430 #endif /* CONFIG_NET_CLS_ACT */
4431 	return ret;
4432 }
4433 
4434 static DEFINE_STATIC_KEY_FALSE(tcx_needed_key);
4435 
4436 void tcx_inc(void)
4437 {
4438 	static_branch_inc(&tcx_needed_key);
4439 }
4440 
4441 void tcx_dec(void)
4442 {
4443 	static_branch_dec(&tcx_needed_key);
4444 }
4445 
4446 static __always_inline enum tcx_action_base
4447 tcx_run(const struct bpf_mprog_entry *entry, struct sk_buff *skb,
4448 	const bool needs_mac)
4449 {
4450 	const struct bpf_mprog_fp *fp;
4451 	const struct bpf_prog *prog;
4452 	int ret = TCX_NEXT;
4453 
4454 	if (needs_mac)
4455 		__skb_push(skb, skb->mac_len);
4456 	bpf_mprog_foreach_prog(entry, fp, prog) {
4457 		bpf_compute_data_pointers(skb);
4458 		ret = bpf_prog_run(prog, skb);
4459 		if (ret != TCX_NEXT)
4460 			break;
4461 	}
4462 	if (needs_mac)
4463 		__skb_pull(skb, skb->mac_len);
4464 	return tcx_action_code(skb, ret);
4465 }
4466 
4467 static __always_inline struct sk_buff *
4468 sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4469 		   struct net_device *orig_dev, bool *another)
4470 {
4471 	struct bpf_mprog_entry *entry = rcu_dereference_bh(skb->dev->tcx_ingress);
4472 	enum skb_drop_reason drop_reason = SKB_DROP_REASON_TC_INGRESS;
4473 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
4474 	int sch_ret;
4475 
4476 	if (!entry)
4477 		return skb;
4478 
4479 	bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
4480 	if (unlikely(*pt_prev)) {
4481 		*ret = deliver_skb(skb, *pt_prev, orig_dev);
4482 		*pt_prev = NULL;
4483 	}
4484 
4485 	qdisc_pkt_len_segs_init(skb);
4486 	tcx_set_ingress(skb, true);
4487 
4488 	if (static_branch_unlikely(&tcx_needed_key)) {
4489 		sch_ret = tcx_run(entry, skb, true);
4490 		if (sch_ret != TC_ACT_UNSPEC)
4491 			goto ingress_verdict;
4492 	}
4493 	sch_ret = tc_run(tcx_entry(entry), skb, &drop_reason);
4494 ingress_verdict:
4495 	switch (sch_ret) {
4496 	case TC_ACT_REDIRECT:
4497 		/* skb_mac_header check was done by BPF, so we can safely
4498 		 * push the L2 header back before redirecting to another
4499 		 * netdev.
4500 		 */
4501 		__skb_push(skb, skb->mac_len);
4502 		if (skb_do_redirect(skb) == -EAGAIN) {
4503 			__skb_pull(skb, skb->mac_len);
4504 			*another = true;
4505 			break;
4506 		}
4507 		*ret = NET_RX_SUCCESS;
4508 		bpf_net_ctx_clear(bpf_net_ctx);
4509 		return NULL;
4510 	case TC_ACT_SHOT:
4511 		kfree_skb_reason(skb, drop_reason);
4512 		*ret = NET_RX_DROP;
4513 		bpf_net_ctx_clear(bpf_net_ctx);
4514 		return NULL;
4515 	/* used by tc_run */
4516 	case TC_ACT_STOLEN:
4517 	case TC_ACT_QUEUED:
4518 	case TC_ACT_TRAP:
4519 		consume_skb(skb);
4520 		fallthrough;
4521 	case TC_ACT_CONSUMED:
4522 		*ret = NET_RX_SUCCESS;
4523 		bpf_net_ctx_clear(bpf_net_ctx);
4524 		return NULL;
4525 	}
4526 	bpf_net_ctx_clear(bpf_net_ctx);
4527 
4528 	return skb;
4529 }
4530 
4531 static __always_inline struct sk_buff *
4532 sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
4533 {
4534 	struct bpf_mprog_entry *entry = rcu_dereference_bh(dev->tcx_egress);
4535 	enum skb_drop_reason drop_reason = SKB_DROP_REASON_TC_EGRESS;
4536 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
4537 	int sch_ret;
4538 
4539 	if (!entry)
4540 		return skb;
4541 
4542 	bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
4543 
4544 	/* qdisc_skb_cb(skb)->pkt_len & tcx_set_ingress() was
4545 	 * already set by the caller.
4546 	 */
4547 	if (static_branch_unlikely(&tcx_needed_key)) {
4548 		sch_ret = tcx_run(entry, skb, false);
4549 		if (sch_ret != TC_ACT_UNSPEC)
4550 			goto egress_verdict;
4551 	}
4552 	sch_ret = tc_run(tcx_entry(entry), skb, &drop_reason);
4553 egress_verdict:
4554 	switch (sch_ret) {
4555 	case TC_ACT_REDIRECT:
4556 		/* No need to push/pop skb's mac_header here on egress! */
4557 		skb_do_redirect(skb);
4558 		*ret = NET_XMIT_SUCCESS;
4559 		bpf_net_ctx_clear(bpf_net_ctx);
4560 		return NULL;
4561 	case TC_ACT_SHOT:
4562 		kfree_skb_reason(skb, drop_reason);
4563 		*ret = NET_XMIT_DROP;
4564 		bpf_net_ctx_clear(bpf_net_ctx);
4565 		return NULL;
4566 	/* used by tc_run */
4567 	case TC_ACT_STOLEN:
4568 	case TC_ACT_QUEUED:
4569 	case TC_ACT_TRAP:
4570 		consume_skb(skb);
4571 		fallthrough;
4572 	case TC_ACT_CONSUMED:
4573 		*ret = NET_XMIT_SUCCESS;
4574 		bpf_net_ctx_clear(bpf_net_ctx);
4575 		return NULL;
4576 	}
4577 	bpf_net_ctx_clear(bpf_net_ctx);
4578 
4579 	return skb;
4580 }
4581 #else
4582 static __always_inline struct sk_buff *
4583 sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4584 		   struct net_device *orig_dev, bool *another)
4585 {
4586 	return skb;
4587 }
4588 
4589 static __always_inline struct sk_buff *
4590 sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
4591 {
4592 	return skb;
4593 }
4594 #endif /* CONFIG_NET_XGRESS */
4595 
4596 #ifdef CONFIG_XPS
4597 static int __get_xps_queue_idx(struct net_device *dev, struct sk_buff *skb,
4598 			       struct xps_dev_maps *dev_maps, unsigned int tci)
4599 {
4600 	int tc = netdev_get_prio_tc_map(dev, skb->priority);
4601 	struct xps_map *map;
4602 	int queue_index = -1;
4603 
4604 	if (tc >= dev_maps->num_tc || tci >= dev_maps->nr_ids)
4605 		return queue_index;
4606 
4607 	tci *= dev_maps->num_tc;
4608 	tci += tc;
4609 
4610 	map = rcu_dereference(dev_maps->attr_map[tci]);
4611 	if (map) {
4612 		if (map->len == 1)
4613 			queue_index = map->queues[0];
4614 		else
4615 			queue_index = map->queues[reciprocal_scale(
4616 						skb_get_hash(skb), map->len)];
4617 		if (unlikely(queue_index >= dev->real_num_tx_queues))
4618 			queue_index = -1;
4619 	}
4620 	return queue_index;
4621 }
4622 #endif
4623 
4624 static int get_xps_queue(struct net_device *dev, struct net_device *sb_dev,
4625 			 struct sk_buff *skb)
4626 {
4627 #ifdef CONFIG_XPS
4628 	struct xps_dev_maps *dev_maps;
4629 	struct sock *sk = skb->sk;
4630 	int queue_index = -1;
4631 
4632 	if (!static_key_false(&xps_needed))
4633 		return -1;
4634 
4635 	rcu_read_lock();
4636 	if (!static_key_false(&xps_rxqs_needed))
4637 		goto get_cpus_map;
4638 
4639 	dev_maps = rcu_dereference(sb_dev->xps_maps[XPS_RXQS]);
4640 	if (dev_maps) {
4641 		int tci = sk_rx_queue_get(sk);
4642 
4643 		if (tci >= 0)
4644 			queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4645 							  tci);
4646 	}
4647 
4648 get_cpus_map:
4649 	if (queue_index < 0) {
4650 		dev_maps = rcu_dereference(sb_dev->xps_maps[XPS_CPUS]);
4651 		if (dev_maps) {
4652 			unsigned int tci = skb->sender_cpu - 1;
4653 
4654 			queue_index = __get_xps_queue_idx(dev, skb, dev_maps,
4655 							  tci);
4656 		}
4657 	}
4658 	rcu_read_unlock();
4659 
4660 	return queue_index;
4661 #else
4662 	return -1;
4663 #endif
4664 }
4665 
4666 u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
4667 		     struct net_device *sb_dev)
4668 {
4669 	return 0;
4670 }
4671 EXPORT_SYMBOL(dev_pick_tx_zero);
4672 
4673 int sk_tx_queue_get(const struct sock *sk)
4674 {
4675 	int resel, val;
4676 
4677 	if (!sk)
4678 		return -1;
4679 	/* Paired with WRITE_ONCE() in sk_tx_queue_clear()
4680 	 * and sk_tx_queue_set().
4681 	 */
4682 	val = READ_ONCE(sk->sk_tx_queue_mapping);
4683 
4684 	if (val == NO_QUEUE_MAPPING)
4685 		return -1;
4686 
4687 	if (!sk_fullsock(sk))
4688 		return val;
4689 
4690 	resel = READ_ONCE(sock_net(sk)->core.sysctl_txq_reselection);
4691 	if (resel && time_is_before_jiffies(
4692 			READ_ONCE(sk->sk_tx_queue_mapping_jiffies) + resel))
4693 		return -1;
4694 
4695 	return val;
4696 }
4697 EXPORT_SYMBOL(sk_tx_queue_get);
4698 
4699 u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
4700 		     struct net_device *sb_dev)
4701 {
4702 	struct sock *sk = skb->sk;
4703 	int queue_index = sk_tx_queue_get(sk);
4704 
4705 	sb_dev = sb_dev ? : dev;
4706 
4707 	if (queue_index < 0 || skb->ooo_okay ||
4708 	    queue_index >= dev->real_num_tx_queues) {
4709 		int new_index = get_xps_queue(dev, sb_dev, skb);
4710 
4711 		if (new_index < 0)
4712 			new_index = skb_tx_hash(dev, sb_dev, skb);
4713 
4714 		if (sk && sk_fullsock(sk) &&
4715 		    rcu_access_pointer(sk->sk_dst_cache))
4716 			sk_tx_queue_set(sk, new_index);
4717 
4718 		queue_index = new_index;
4719 	}
4720 
4721 	return queue_index;
4722 }
4723 EXPORT_SYMBOL(netdev_pick_tx);
4724 
4725 struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
4726 					 struct sk_buff *skb,
4727 					 struct net_device *sb_dev)
4728 {
4729 	int queue_index = 0;
4730 
4731 #ifdef CONFIG_XPS
4732 	u32 sender_cpu = skb->sender_cpu - 1;
4733 
4734 	if (sender_cpu >= (u32)NR_CPUS)
4735 		skb->sender_cpu = raw_smp_processor_id() + 1;
4736 #endif
4737 
4738 	if (dev->real_num_tx_queues != 1) {
4739 		const struct net_device_ops *ops = dev->netdev_ops;
4740 
4741 		if (ops->ndo_select_queue)
4742 			queue_index = ops->ndo_select_queue(dev, skb, sb_dev);
4743 		else
4744 			queue_index = netdev_pick_tx(dev, skb, sb_dev);
4745 
4746 		queue_index = netdev_cap_txqueue(dev, queue_index);
4747 	}
4748 
4749 	skb_set_queue_mapping(skb, queue_index);
4750 	return netdev_get_tx_queue(dev, queue_index);
4751 }
4752 
4753 /**
4754  * __dev_queue_xmit() - transmit a buffer
4755  * @skb:	buffer to transmit
4756  * @sb_dev:	suboordinate device used for L2 forwarding offload
4757  *
4758  * Queue a buffer for transmission to a network device. The caller must
4759  * have set the device and priority and built the buffer before calling
4760  * this function. The function can be called from an interrupt.
4761  *
4762  * When calling this method, interrupts MUST be enabled. This is because
4763  * the BH enable code must have IRQs enabled so that it will not deadlock.
4764  *
4765  * Regardless of the return value, the skb is consumed, so it is currently
4766  * difficult to retry a send to this method. (You can bump the ref count
4767  * before sending to hold a reference for retry if you are careful.)
4768  *
4769  * Return:
4770  * * 0				- buffer successfully transmitted
4771  * * positive qdisc return code	- NET_XMIT_DROP etc.
4772  * * negative errno		- other errors
4773  */
4774 int __dev_queue_xmit(struct sk_buff *skb, struct net_device *sb_dev)
4775 {
4776 	struct net_device *dev = skb->dev;
4777 	struct netdev_queue *txq = NULL;
4778 	enum skb_drop_reason reason;
4779 	int cpu, rc = -ENOMEM;
4780 	bool again = false;
4781 	struct Qdisc *q;
4782 
4783 	skb_reset_mac_header(skb);
4784 	skb_assert_len(skb);
4785 
4786 	if (unlikely(skb_shinfo(skb)->tx_flags &
4787 		     (SKBTX_SCHED_TSTAMP | SKBTX_BPF)))
4788 		__skb_tstamp_tx(skb, NULL, NULL, skb->sk, SCM_TSTAMP_SCHED);
4789 
4790 	reason = qdisc_pkt_len_segs_init(skb);
4791 	if (unlikely(reason)) {
4792 		dev_core_stats_tx_dropped_inc(dev);
4793 		kfree_skb_reason(skb, reason);
4794 		return -EINVAL;
4795 	}
4796 	/* Disable soft irqs for various locks below. Also
4797 	 * stops preemption for RCU.
4798 	 */
4799 	rcu_read_lock_bh();
4800 
4801 	skb_update_prio(skb);
4802 
4803 	tcx_set_ingress(skb, false);
4804 #ifdef CONFIG_NET_EGRESS
4805 	if (static_branch_unlikely(&egress_needed_key)) {
4806 		if (nf_hook_egress_active()) {
4807 			skb = nf_hook_egress(skb, &rc, dev);
4808 			if (!skb)
4809 				goto out;
4810 		}
4811 
4812 		netdev_xmit_skip_txqueue(false);
4813 
4814 		nf_skip_egress(skb, true);
4815 		skb = sch_handle_egress(skb, &rc, dev);
4816 		if (!skb)
4817 			goto out;
4818 		nf_skip_egress(skb, false);
4819 
4820 		if (netdev_xmit_txqueue_skipped())
4821 			txq = netdev_tx_queue_mapping(dev, skb);
4822 	}
4823 #endif
4824 	/* If device/qdisc don't need skb->dst, release it right now while
4825 	 * its hot in this cpu cache.
4826 	 */
4827 	if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
4828 		skb_dst_drop(skb);
4829 	else
4830 		skb_dst_force(skb);
4831 
4832 	if (!txq)
4833 		txq = netdev_core_pick_tx(dev, skb, sb_dev);
4834 
4835 	q = rcu_dereference_bh(txq->qdisc);
4836 
4837 	trace_net_dev_queue(skb);
4838 	if (q->enqueue) {
4839 		rc = __dev_xmit_skb(skb, q, dev, txq);
4840 		goto out;
4841 	}
4842 
4843 	/* The device has no queue. Common case for software devices:
4844 	 * loopback, all the sorts of tunnels...
4845 
4846 	 * Really, it is unlikely that netif_tx_lock protection is necessary
4847 	 * here.  (f.e. loopback and IP tunnels are clean ignoring statistics
4848 	 * counters.)
4849 	 * However, it is possible, that they rely on protection
4850 	 * made by us here.
4851 
4852 	 * Check this and shot the lock. It is not prone from deadlocks.
4853 	 *Either shot noqueue qdisc, it is even simpler 8)
4854 	 */
4855 	if (unlikely(!(dev->flags & IFF_UP))) {
4856 		reason = SKB_DROP_REASON_DEV_READY;
4857 		goto drop;
4858 	}
4859 
4860 	cpu = smp_processor_id(); /* ok because BHs are off */
4861 
4862 	if (likely(!netif_tx_owned(txq, cpu))) {
4863 		bool is_list = false;
4864 
4865 		if (dev_xmit_recursion())
4866 			goto recursion_alert;
4867 
4868 		skb = validate_xmit_skb(skb, dev, &again);
4869 		if (IS_ERR_OR_NULL(skb)) {
4870 			if (PTR_ERR(skb) == -EINPROGRESS)
4871 				rc = NET_XMIT_SUCCESS;
4872 			goto out;
4873 		}
4874 
4875 		HARD_TX_LOCK(dev, txq, cpu);
4876 
4877 		if (!netif_xmit_stopped(txq)) {
4878 			is_list = !!skb->next;
4879 
4880 			dev_xmit_recursion_inc();
4881 			skb = dev_hard_start_xmit(skb, dev, txq, &rc);
4882 			dev_xmit_recursion_dec();
4883 
4884 			/* GSO segments a single SKB into a list of frames.
4885 			 * TCP expects error to mean none of the data was sent.
4886 			 */
4887 			if (is_list)
4888 				rc = NETDEV_TX_OK;
4889 		}
4890 		HARD_TX_UNLOCK(dev, txq);
4891 		if (!skb) /* xmit completed */
4892 			goto out;
4893 
4894 		net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
4895 				     dev->name);
4896 		/* NETDEV_TX_BUSY or queue was stopped */
4897 		if (!is_list)
4898 			rc = -ENETDOWN;
4899 	} else {
4900 		/* Recursion is detected! It is possible unfortunately. */
4901 recursion_alert:
4902 		net_crit_ratelimited("Dead loop on virtual device %s (net %llu), fix it urgently!\n",
4903 				     dev->name, dev_net(dev)->net_cookie);
4904 
4905 		rc = -ENETDOWN;
4906 	}
4907 
4908 	reason = SKB_DROP_REASON_RECURSION_LIMIT;
4909 drop:
4910 	rcu_read_unlock_bh();
4911 
4912 	dev_core_stats_tx_dropped_inc(dev);
4913 	kfree_skb_list_reason(skb, reason);
4914 	return rc;
4915 out:
4916 	rcu_read_unlock_bh();
4917 	return rc;
4918 }
4919 EXPORT_SYMBOL(__dev_queue_xmit);
4920 
4921 int __dev_direct_xmit(struct sk_buff *skb, u16 queue_id)
4922 {
4923 	struct net_device *dev = skb->dev;
4924 	struct sk_buff *orig_skb = skb;
4925 	struct netdev_queue *txq;
4926 	int ret = NETDEV_TX_BUSY;
4927 	bool again = false;
4928 
4929 	if (unlikely(!netif_running(dev) ||
4930 		     !netif_carrier_ok(dev)))
4931 		goto drop;
4932 
4933 	skb = validate_xmit_skb_list(skb, dev, &again);
4934 	if (skb != orig_skb)
4935 		goto drop;
4936 
4937 	skb_set_queue_mapping(skb, queue_id);
4938 	txq = skb_get_tx_queue(dev, skb);
4939 
4940 	local_bh_disable();
4941 
4942 	dev_xmit_recursion_inc();
4943 	HARD_TX_LOCK(dev, txq, smp_processor_id());
4944 	if (!netif_xmit_frozen_or_drv_stopped(txq))
4945 		ret = netdev_start_xmit(skb, dev, txq, false);
4946 	HARD_TX_UNLOCK(dev, txq);
4947 	dev_xmit_recursion_dec();
4948 
4949 	local_bh_enable();
4950 	return ret;
4951 drop:
4952 	dev_core_stats_tx_dropped_inc(dev);
4953 	kfree_skb_list(skb);
4954 	return NET_XMIT_DROP;
4955 }
4956 EXPORT_SYMBOL(__dev_direct_xmit);
4957 
4958 /*************************************************************************
4959  *			Receiver routines
4960  *************************************************************************/
4961 static DEFINE_PER_CPU(struct task_struct *, backlog_napi);
4962 
4963 int weight_p __read_mostly = 64;           /* old backlog weight */
4964 int dev_weight_rx_bias __read_mostly = 1;  /* bias for backlog weight */
4965 int dev_weight_tx_bias __read_mostly = 1;  /* bias for output_queue quota */
4966 
4967 /* Called with irq disabled */
4968 static inline void ____napi_schedule(struct softnet_data *sd,
4969 				     struct napi_struct *napi)
4970 {
4971 	struct task_struct *thread;
4972 
4973 	lockdep_assert_irqs_disabled();
4974 
4975 	if (test_bit(NAPI_STATE_THREADED, &napi->state)) {
4976 		/* Paired with smp_mb__before_atomic() in
4977 		 * napi_enable()/netif_set_threaded().
4978 		 * Use READ_ONCE() to guarantee a complete
4979 		 * read on napi->thread. Only call
4980 		 * wake_up_process() when it's not NULL.
4981 		 */
4982 		thread = READ_ONCE(napi->thread);
4983 		if (thread) {
4984 			if (use_backlog_threads() && thread == raw_cpu_read(backlog_napi))
4985 				goto use_local_napi;
4986 
4987 			set_bit(NAPI_STATE_SCHED_THREADED, &napi->state);
4988 			wake_up_process(thread);
4989 			return;
4990 		}
4991 	}
4992 
4993 use_local_napi:
4994 	DEBUG_NET_WARN_ON_ONCE(!list_empty(&napi->poll_list));
4995 	list_add_tail(&napi->poll_list, &sd->poll_list);
4996 	WRITE_ONCE(napi->list_owner, smp_processor_id());
4997 	/* If not called from net_rx_action()
4998 	 * we have to raise NET_RX_SOFTIRQ.
4999 	 */
5000 	if (!sd->in_net_rx_action)
5001 		raise_softirq_irqoff(NET_RX_SOFTIRQ);
5002 }
5003 
5004 #ifdef CONFIG_RPS
5005 
5006 struct static_key_false rps_needed __read_mostly;
5007 EXPORT_SYMBOL(rps_needed);
5008 struct static_key_false rfs_needed __read_mostly;
5009 EXPORT_SYMBOL(rfs_needed);
5010 
5011 static u32 rfs_slot(u32 hash, rps_tag_ptr tag_ptr)
5012 {
5013 	return hash_32(hash, rps_tag_to_log(tag_ptr));
5014 }
5015 
5016 #ifdef CONFIG_RFS_ACCEL
5017 /**
5018  * rps_flow_is_active - check whether the flow is recently active.
5019  * @rflow: Specific flow to check activity.
5020  * @log: ilog2(hashsize).
5021  * @cpu: CPU saved in @rflow.
5022  *
5023  * If the CPU has processed many packets since the flow's last activity
5024  * (beyond 10 times the table size), the flow is considered stale.
5025  *
5026  * Return: true if flow was recently active.
5027  */
5028 static bool rps_flow_is_active(struct rps_dev_flow *rflow,
5029 			       u8 log,
5030 			       unsigned int cpu)
5031 {
5032 	unsigned int flow_last_active;
5033 	unsigned int sd_input_head;
5034 
5035 	if (cpu >= nr_cpu_ids)
5036 		return false;
5037 
5038 	sd_input_head = READ_ONCE(per_cpu(softnet_data, cpu).input_queue_head);
5039 	flow_last_active = READ_ONCE(rflow->last_qtail);
5040 
5041 	return (int)(sd_input_head - flow_last_active) <
5042 		(int)(10 << log);
5043 }
5044 #endif
5045 
5046 static struct rps_dev_flow *
5047 set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
5048 	    struct rps_dev_flow *rflow, u16 next_cpu, u32 hash)
5049 {
5050 	if (next_cpu < nr_cpu_ids) {
5051 		u32 head;
5052 #ifdef CONFIG_RFS_ACCEL
5053 		struct netdev_rx_queue *rxqueue;
5054 		struct rps_dev_flow *flow_table;
5055 		struct rps_dev_flow *old_rflow;
5056 		struct rps_dev_flow *tmp_rflow;
5057 		rps_tag_ptr q_tag_ptr;
5058 		unsigned int tmp_cpu;
5059 		u16 rxq_index;
5060 		u32 flow_id;
5061 		int rc;
5062 
5063 		/* Should we steer this flow to a different hardware queue? */
5064 		if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
5065 		    !(dev->features & NETIF_F_NTUPLE))
5066 			goto out;
5067 		rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
5068 		if (rxq_index == skb_get_rx_queue(skb))
5069 			goto out;
5070 
5071 		rxqueue = dev->_rx + rxq_index;
5072 		q_tag_ptr = READ_ONCE(rxqueue->rps_flow_table);
5073 		if (!q_tag_ptr)
5074 			goto out;
5075 
5076 		flow_id = rfs_slot(hash, q_tag_ptr);
5077 		flow_table = rps_tag_to_table(q_tag_ptr);
5078 		tmp_rflow = flow_table + flow_id;
5079 		tmp_cpu = READ_ONCE(tmp_rflow->cpu);
5080 
5081 		if (READ_ONCE(tmp_rflow->filter) != RPS_NO_FILTER) {
5082 			if (rps_flow_is_active(tmp_rflow,
5083 					       rps_tag_to_log(q_tag_ptr),
5084 					       tmp_cpu)) {
5085 				if (hash != READ_ONCE(tmp_rflow->hash) ||
5086 				    next_cpu == tmp_cpu)
5087 					goto out;
5088 			}
5089 		}
5090 
5091 		rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
5092 							rxq_index, flow_id);
5093 		if (rc < 0)
5094 			goto out;
5095 
5096 		old_rflow = rflow;
5097 		rflow = tmp_rflow;
5098 		WRITE_ONCE(rflow->filter, rc);
5099 		WRITE_ONCE(rflow->hash, hash);
5100 
5101 		if (old_rflow->filter == rc)
5102 			WRITE_ONCE(old_rflow->filter, RPS_NO_FILTER);
5103 	out:
5104 #endif
5105 		head = READ_ONCE(per_cpu(softnet_data, next_cpu).input_queue_head);
5106 		rps_input_queue_tail_save(&rflow->last_qtail, head);
5107 	}
5108 
5109 	WRITE_ONCE(rflow->cpu, next_cpu);
5110 	return rflow;
5111 }
5112 
5113 /*
5114  * get_rps_cpu is called from netif_receive_skb and returns the target
5115  * CPU from the RPS map of the receiving queue for a given skb.
5116  * rcu_read_lock must be held on entry.
5117  */
5118 static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
5119 		       struct rps_dev_flow **rflowp)
5120 {
5121 	struct netdev_rx_queue *rxqueue = dev->_rx;
5122 	rps_tag_ptr global_tag_ptr, q_tag_ptr;
5123 	struct rps_map *map;
5124 	int cpu = -1;
5125 	u32 tcpu;
5126 	u32 hash;
5127 
5128 	if (skb_rx_queue_recorded(skb)) {
5129 		u16 index = skb_get_rx_queue(skb);
5130 
5131 		if (unlikely(index >= dev->real_num_rx_queues)) {
5132 			WARN_ONCE(dev->real_num_rx_queues > 1,
5133 				  "%s received packet on queue %u, but number "
5134 				  "of RX queues is %u\n",
5135 				  dev->name, index, dev->real_num_rx_queues);
5136 			goto done;
5137 		}
5138 		rxqueue += index;
5139 	}
5140 
5141 	/* Avoid computing hash if RFS/RPS is not active for this rxqueue */
5142 
5143 	q_tag_ptr = READ_ONCE(rxqueue->rps_flow_table);
5144 	map = rcu_dereference(rxqueue->rps_map);
5145 	if (!q_tag_ptr && !map)
5146 		goto done;
5147 
5148 	skb_reset_network_header(skb);
5149 	hash = skb_get_hash(skb);
5150 	if (!hash)
5151 		goto done;
5152 
5153 	global_tag_ptr = READ_ONCE(net_hotdata.rps_sock_flow_table);
5154 	if (q_tag_ptr && global_tag_ptr) {
5155 		struct rps_sock_flow_table *sock_flow_table;
5156 		struct rps_dev_flow *flow_table;
5157 		struct rps_dev_flow *rflow;
5158 		u32 next_cpu;
5159 		u32 flow_id;
5160 		u32 ident;
5161 
5162 		/* First check into global flow table if there is a match.
5163 		 * This READ_ONCE() pairs with WRITE_ONCE() from rps_record_sock_flow().
5164 		 */
5165 		flow_id = hash & rps_tag_to_mask(global_tag_ptr);
5166 		sock_flow_table = rps_tag_to_table(global_tag_ptr);
5167 		ident = READ_ONCE(sock_flow_table[flow_id].ent);
5168 		if ((ident ^ hash) & ~net_hotdata.rps_cpu_mask)
5169 			goto try_rps;
5170 
5171 		next_cpu = ident & net_hotdata.rps_cpu_mask;
5172 
5173 		/* OK, now we know there is a match,
5174 		 * we can look at the local (per receive queue) flow table
5175 		 */
5176 		flow_id = rfs_slot(hash, q_tag_ptr);
5177 		flow_table = rps_tag_to_table(q_tag_ptr);
5178 		rflow = flow_table + flow_id;
5179 		tcpu = rflow->cpu;
5180 
5181 		/*
5182 		 * If the desired CPU (where last recvmsg was done) is
5183 		 * different from current CPU (one in the rx-queue flow
5184 		 * table entry), switch if one of the following holds:
5185 		 *   - Current CPU is unset (>= nr_cpu_ids).
5186 		 *   - Current CPU is offline.
5187 		 *   - The current CPU's queue tail has advanced beyond the
5188 		 *     last packet that was enqueued using this table entry.
5189 		 *     This guarantees that all previous packets for the flow
5190 		 *     have been dequeued, thus preserving in order delivery.
5191 		 */
5192 		if (unlikely(tcpu != next_cpu) &&
5193 		    (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
5194 		     ((int)(READ_ONCE(per_cpu(softnet_data, tcpu).input_queue_head) -
5195 		      rflow->last_qtail)) >= 0)) {
5196 			tcpu = next_cpu;
5197 			rflow = set_rps_cpu(dev, skb, rflow, next_cpu, hash);
5198 		}
5199 
5200 		if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
5201 			*rflowp = rflow;
5202 			cpu = tcpu;
5203 			goto done;
5204 		}
5205 	}
5206 
5207 try_rps:
5208 
5209 	if (map) {
5210 		tcpu = map->cpus[reciprocal_scale(hash, map->len)];
5211 		if (cpu_online(tcpu)) {
5212 			cpu = tcpu;
5213 			goto done;
5214 		}
5215 	}
5216 
5217 done:
5218 	return cpu;
5219 }
5220 
5221 #ifdef CONFIG_RFS_ACCEL
5222 
5223 /**
5224  * rps_may_expire_flow - check whether an RFS hardware filter may be removed
5225  * @dev: Device on which the filter was set
5226  * @rxq_index: RX queue index
5227  * @flow_id: Flow ID passed to ndo_rx_flow_steer()
5228  * @filter_id: Filter ID returned by ndo_rx_flow_steer()
5229  *
5230  * Drivers that implement ndo_rx_flow_steer() should periodically call
5231  * this function for each installed filter and remove the filters for
5232  * which it returns %true.
5233  */
5234 bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
5235 			 u32 flow_id, u16 filter_id)
5236 {
5237 	struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
5238 	struct rps_dev_flow *flow_table;
5239 	struct rps_dev_flow *rflow;
5240 	rps_tag_ptr q_tag_ptr;
5241 	bool expire = true;
5242 	u8 log;
5243 
5244 	rcu_read_lock();
5245 	q_tag_ptr = READ_ONCE(rxqueue->rps_flow_table);
5246 	log = rps_tag_to_log(q_tag_ptr);
5247 	if (q_tag_ptr && flow_id < (1UL << log)) {
5248 		unsigned int cpu;
5249 
5250 		flow_table = rps_tag_to_table(q_tag_ptr);
5251 		rflow = flow_table + flow_id;
5252 		cpu = READ_ONCE(rflow->cpu);
5253 		if (READ_ONCE(rflow->filter) == filter_id &&
5254 		    rps_flow_is_active(rflow, log, cpu))
5255 			expire = false;
5256 	}
5257 	rcu_read_unlock();
5258 	return expire;
5259 }
5260 EXPORT_SYMBOL(rps_may_expire_flow);
5261 
5262 #endif /* CONFIG_RFS_ACCEL */
5263 
5264 /* Called from hardirq (IPI) context */
5265 static void rps_trigger_softirq(void *data)
5266 {
5267 	struct softnet_data *sd = data;
5268 
5269 	____napi_schedule(sd, &sd->backlog);
5270 	/* Pairs with READ_ONCE() in softnet_seq_show() */
5271 	WRITE_ONCE(sd->received_rps, sd->received_rps + 1);
5272 }
5273 
5274 #endif /* CONFIG_RPS */
5275 
5276 /* Called from hardirq (IPI) context */
5277 static void trigger_rx_softirq(void *data)
5278 {
5279 	struct softnet_data *sd = data;
5280 
5281 	__raise_softirq_irqoff(NET_RX_SOFTIRQ);
5282 	smp_store_release(&sd->defer_ipi_scheduled, 0);
5283 }
5284 
5285 /*
5286  * After we queued a packet into sd->input_pkt_queue,
5287  * we need to make sure this queue is serviced soon.
5288  *
5289  * - If this is another cpu queue, link it to our rps_ipi_list,
5290  *   and make sure we will process rps_ipi_list from net_rx_action().
5291  *
5292  * - If this is our own queue, NAPI schedule our backlog.
5293  *   Note that this also raises NET_RX_SOFTIRQ.
5294  */
5295 static void napi_schedule_rps(struct softnet_data *sd)
5296 {
5297 	struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
5298 
5299 #ifdef CONFIG_RPS
5300 	if (sd != mysd) {
5301 		if (use_backlog_threads()) {
5302 			__napi_schedule_irqoff(&sd->backlog);
5303 			return;
5304 		}
5305 
5306 		sd->rps_ipi_next = mysd->rps_ipi_list;
5307 		mysd->rps_ipi_list = sd;
5308 
5309 		/* If not called from net_rx_action() or napi_threaded_poll()
5310 		 * we have to raise NET_RX_SOFTIRQ.
5311 		 */
5312 		if (!mysd->in_net_rx_action && !mysd->in_napi_threaded_poll)
5313 			__raise_softirq_irqoff(NET_RX_SOFTIRQ);
5314 		return;
5315 	}
5316 #endif /* CONFIG_RPS */
5317 	__napi_schedule_irqoff(&mysd->backlog);
5318 }
5319 
5320 void kick_defer_list_purge(unsigned int cpu)
5321 {
5322 	struct softnet_data *sd = &per_cpu(softnet_data, cpu);
5323 	unsigned long flags;
5324 
5325 	if (use_backlog_threads()) {
5326 		backlog_lock_irq_save(sd, &flags);
5327 
5328 		if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state))
5329 			__napi_schedule_irqoff(&sd->backlog);
5330 
5331 		backlog_unlock_irq_restore(sd, flags);
5332 
5333 	} else if (!cmpxchg(&sd->defer_ipi_scheduled, 0, 1)) {
5334 		smp_call_function_single_async(cpu, &sd->defer_csd);
5335 	}
5336 }
5337 
5338 #ifdef CONFIG_NET_FLOW_LIMIT
5339 int netdev_flow_limit_table_len __read_mostly = (1 << 12);
5340 #endif
5341 
5342 static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen,
5343 			   int max_backlog)
5344 {
5345 #ifdef CONFIG_NET_FLOW_LIMIT
5346 	unsigned int old_flow, new_flow;
5347 	const struct softnet_data *sd;
5348 	struct sd_flow_limit *fl;
5349 
5350 	if (likely(qlen < (max_backlog >> 1)))
5351 		return false;
5352 
5353 	sd = this_cpu_ptr(&softnet_data);
5354 
5355 	rcu_read_lock();
5356 	fl = rcu_dereference(sd->flow_limit);
5357 	if (fl) {
5358 		new_flow = hash_32(skb_get_hash(skb), fl->log_buckets);
5359 		old_flow = fl->history[fl->history_head];
5360 		fl->history[fl->history_head] = new_flow;
5361 
5362 		fl->history_head++;
5363 		fl->history_head &= FLOW_LIMIT_HISTORY - 1;
5364 
5365 		if (likely(fl->buckets[old_flow]))
5366 			fl->buckets[old_flow]--;
5367 
5368 		if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
5369 			/* Pairs with READ_ONCE() in softnet_seq_show() */
5370 			WRITE_ONCE(fl->count, fl->count + 1);
5371 			rcu_read_unlock();
5372 			return true;
5373 		}
5374 	}
5375 	rcu_read_unlock();
5376 #endif
5377 	return false;
5378 }
5379 
5380 /*
5381  * enqueue_to_backlog is called to queue an skb to a per CPU backlog
5382  * queue (may be a remote CPU queue).
5383  */
5384 static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
5385 			      unsigned int *qtail)
5386 {
5387 	enum skb_drop_reason reason;
5388 	struct softnet_data *sd;
5389 	unsigned long flags;
5390 	unsigned int qlen;
5391 	int max_backlog;
5392 	u32 tail;
5393 
5394 	reason = SKB_DROP_REASON_DEV_READY;
5395 
5396 	sd = &per_cpu(softnet_data, cpu);
5397 
5398 	qlen = skb_queue_len_lockless(&sd->input_pkt_queue);
5399 	max_backlog = READ_ONCE(net_hotdata.max_backlog);
5400 	if (unlikely(qlen > max_backlog) ||
5401 	    skb_flow_limit(skb, qlen, max_backlog))
5402 		goto cpu_backlog_drop;
5403 	backlog_lock_irq_save(sd, &flags);
5404 	qlen = skb_queue_len(&sd->input_pkt_queue);
5405 	if (likely(qlen <= max_backlog)) {
5406 		if (unlikely(!netif_running(skb->dev))) {
5407 			backlog_unlock_irq_restore(sd, flags);
5408 			goto bad_dev;
5409 		}
5410 		if (!qlen) {
5411 			/* Schedule NAPI for backlog device. We can use
5412 			 * non atomic operation as we own the queue lock.
5413 			 */
5414 			if (!__test_and_set_bit(NAPI_STATE_SCHED,
5415 						&sd->backlog.state))
5416 				napi_schedule_rps(sd);
5417 		}
5418 		__skb_queue_tail(&sd->input_pkt_queue, skb);
5419 		tail = rps_input_queue_tail_incr(sd);
5420 		backlog_unlock_irq_restore(sd, flags);
5421 
5422 		/* save the tail outside of the critical section */
5423 		rps_input_queue_tail_save(qtail, tail);
5424 		return NET_RX_SUCCESS;
5425 	}
5426 
5427 	backlog_unlock_irq_restore(sd, flags);
5428 
5429 cpu_backlog_drop:
5430 	reason = SKB_DROP_REASON_CPU_BACKLOG;
5431 	numa_drop_add(&sd->drop_counters, 1);
5432 bad_dev:
5433 	dev_core_stats_rx_dropped_inc(skb->dev);
5434 	kfree_skb_reason(skb, reason);
5435 	return NET_RX_DROP;
5436 }
5437 
5438 static struct netdev_rx_queue *netif_get_rxqueue(struct sk_buff *skb)
5439 {
5440 	struct net_device *dev = skb->dev;
5441 	struct netdev_rx_queue *rxqueue;
5442 
5443 	rxqueue = dev->_rx;
5444 
5445 	if (skb_rx_queue_recorded(skb)) {
5446 		u16 index = skb_get_rx_queue(skb);
5447 
5448 		if (unlikely(index >= dev->real_num_rx_queues)) {
5449 			WARN_ONCE(dev->real_num_rx_queues > 1,
5450 				  "%s received packet on queue %u, but number "
5451 				  "of RX queues is %u\n",
5452 				  dev->name, index, dev->real_num_rx_queues);
5453 
5454 			return rxqueue; /* Return first rxqueue */
5455 		}
5456 		rxqueue += index;
5457 	}
5458 	return rxqueue;
5459 }
5460 
5461 u32 bpf_prog_run_generic_xdp(struct sk_buff *skb, struct xdp_buff *xdp,
5462 			     const struct bpf_prog *xdp_prog)
5463 {
5464 	void *orig_data, *orig_data_end, *hard_start;
5465 	struct netdev_rx_queue *rxqueue;
5466 	bool orig_bcast, orig_host;
5467 	u32 mac_len, frame_sz;
5468 	__be16 orig_eth_type;
5469 	struct ethhdr *eth;
5470 	u32 metalen, act;
5471 	int off;
5472 
5473 	/* The XDP program wants to see the packet starting at the MAC
5474 	 * header.
5475 	 */
5476 	mac_len = skb->data - skb_mac_header(skb);
5477 	hard_start = skb->data - skb_headroom(skb);
5478 
5479 	/* SKB "head" area always have tailroom for skb_shared_info */
5480 	frame_sz = (void *)skb_end_pointer(skb) - hard_start;
5481 	frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
5482 
5483 	rxqueue = netif_get_rxqueue(skb);
5484 	xdp_init_buff(xdp, frame_sz, &rxqueue->xdp_rxq);
5485 	xdp_prepare_buff(xdp, hard_start, skb_headroom(skb) - mac_len,
5486 			 skb_headlen(skb) + mac_len, true);
5487 	if (skb_is_nonlinear(skb)) {
5488 		skb_shinfo(skb)->xdp_frags_size = skb->data_len;
5489 		xdp_buff_set_frags_flag(xdp);
5490 	} else {
5491 		xdp_buff_clear_frags_flag(xdp);
5492 	}
5493 
5494 	orig_data_end = xdp->data_end;
5495 	orig_data = xdp->data;
5496 	eth = (struct ethhdr *)xdp->data;
5497 	orig_host = ether_addr_equal_64bits(eth->h_dest, skb->dev->dev_addr);
5498 	orig_bcast = is_multicast_ether_addr_64bits(eth->h_dest);
5499 	orig_eth_type = eth->h_proto;
5500 
5501 	act = bpf_prog_run_xdp(xdp_prog, xdp);
5502 
5503 	/* check if bpf_xdp_adjust_head was used */
5504 	off = xdp->data - orig_data;
5505 	if (off) {
5506 		if (off > 0)
5507 			__skb_pull(skb, off);
5508 		else if (off < 0)
5509 			__skb_push(skb, -off);
5510 
5511 		skb->mac_header += off;
5512 		skb_reset_network_header(skb);
5513 	}
5514 
5515 	/* check if bpf_xdp_adjust_tail was used */
5516 	off = xdp->data_end - orig_data_end;
5517 	if (off != 0) {
5518 		skb_set_tail_pointer(skb, xdp->data_end - xdp->data);
5519 		skb->len += off; /* positive on grow, negative on shrink */
5520 	}
5521 
5522 	/* XDP frag metadata (e.g. nr_frags) are updated in eBPF helpers
5523 	 * (e.g. bpf_xdp_adjust_tail), we need to update data_len here.
5524 	 */
5525 	if (xdp_buff_has_frags(xdp))
5526 		skb->data_len = skb_shinfo(skb)->xdp_frags_size;
5527 	else
5528 		skb->data_len = 0;
5529 
5530 	/* check if XDP changed eth hdr such SKB needs update */
5531 	eth = (struct ethhdr *)xdp->data;
5532 	if ((orig_eth_type != eth->h_proto) ||
5533 	    (orig_host != ether_addr_equal_64bits(eth->h_dest,
5534 						  skb->dev->dev_addr)) ||
5535 	    (orig_bcast != is_multicast_ether_addr_64bits(eth->h_dest))) {
5536 		__skb_push(skb, ETH_HLEN);
5537 		skb->pkt_type = PACKET_HOST;
5538 		skb->protocol = eth_type_trans(skb, skb->dev);
5539 	}
5540 
5541 	/* Redirect/Tx gives L2 packet, code that will reuse skb must __skb_pull
5542 	 * before calling us again on redirect path. We do not call do_redirect
5543 	 * as we leave that up to the caller.
5544 	 *
5545 	 * Caller is responsible for managing lifetime of skb (i.e. calling
5546 	 * kfree_skb in response to actions it cannot handle/XDP_DROP).
5547 	 */
5548 	switch (act) {
5549 	case XDP_REDIRECT:
5550 	case XDP_TX:
5551 		__skb_push(skb, mac_len);
5552 		break;
5553 	case XDP_PASS:
5554 		metalen = xdp->data - xdp->data_meta;
5555 		if (metalen)
5556 			skb_metadata_set(skb, metalen);
5557 		break;
5558 	}
5559 
5560 	return act;
5561 }
5562 
5563 static int
5564 netif_skb_check_for_xdp(struct sk_buff **pskb, const struct bpf_prog *prog)
5565 {
5566 	struct sk_buff *skb = *pskb;
5567 	int err, hroom, troom;
5568 
5569 	local_lock_nested_bh(&system_page_pool.bh_lock);
5570 	err = skb_cow_data_for_xdp(this_cpu_read(system_page_pool.pool), pskb, prog);
5571 	local_unlock_nested_bh(&system_page_pool.bh_lock);
5572 	if (!err)
5573 		return 0;
5574 
5575 	/* In case we have to go down the path and also linearize,
5576 	 * then lets do the pskb_expand_head() work just once here.
5577 	 */
5578 	hroom = XDP_PACKET_HEADROOM - skb_headroom(skb);
5579 	troom = skb->tail + skb->data_len - skb->end;
5580 	err = pskb_expand_head(skb,
5581 			       hroom > 0 ? ALIGN(hroom, NET_SKB_PAD) : 0,
5582 			       troom > 0 ? troom + 128 : 0, GFP_ATOMIC);
5583 	if (err)
5584 		return err;
5585 
5586 	return skb_linearize(skb);
5587 }
5588 
5589 static u32 netif_receive_generic_xdp(struct sk_buff **pskb,
5590 				     struct xdp_buff *xdp,
5591 				     const struct bpf_prog *xdp_prog)
5592 {
5593 	struct sk_buff *skb = *pskb;
5594 	u32 mac_len, act = XDP_DROP;
5595 
5596 	/* Reinjected packets coming from act_mirred or similar should
5597 	 * not get XDP generic processing.
5598 	 */
5599 	if (skb_is_redirected(skb))
5600 		return XDP_PASS;
5601 
5602 	/* XDP packets must have sufficient headroom of XDP_PACKET_HEADROOM
5603 	 * bytes. This is the guarantee that also native XDP provides,
5604 	 * thus we need to do it here as well.
5605 	 */
5606 	mac_len = skb->data - skb_mac_header(skb);
5607 	__skb_push(skb, mac_len);
5608 
5609 	if (skb_cloned(skb) || skb_is_nonlinear(skb) ||
5610 	    skb_headroom(skb) < XDP_PACKET_HEADROOM) {
5611 		if (netif_skb_check_for_xdp(pskb, xdp_prog))
5612 			goto do_drop;
5613 	}
5614 
5615 	__skb_pull(*pskb, mac_len);
5616 
5617 	act = bpf_prog_run_generic_xdp(*pskb, xdp, xdp_prog);
5618 	switch (act) {
5619 	case XDP_REDIRECT:
5620 	case XDP_TX:
5621 	case XDP_PASS:
5622 		break;
5623 	default:
5624 		bpf_warn_invalid_xdp_action((*pskb)->dev, xdp_prog, act);
5625 		fallthrough;
5626 	case XDP_ABORTED:
5627 		trace_xdp_exception((*pskb)->dev, xdp_prog, act);
5628 		fallthrough;
5629 	case XDP_DROP:
5630 	do_drop:
5631 		kfree_skb(*pskb);
5632 		break;
5633 	}
5634 
5635 	return act;
5636 }
5637 
5638 /* When doing generic XDP we have to bypass the qdisc layer and the
5639  * network taps in order to match in-driver-XDP behavior. This also means
5640  * that XDP packets are able to starve other packets going through a qdisc,
5641  * and DDOS attacks will be more effective. In-driver-XDP use dedicated TX
5642  * queues, so they do not have this starvation issue.
5643  */
5644 void generic_xdp_tx(struct sk_buff *skb, const struct bpf_prog *xdp_prog)
5645 {
5646 	struct net_device *dev = skb->dev;
5647 	struct netdev_queue *txq;
5648 	bool free_skb = true;
5649 	int cpu, rc;
5650 
5651 	txq = netdev_core_pick_tx(dev, skb, NULL);
5652 	cpu = smp_processor_id();
5653 	HARD_TX_LOCK(dev, txq, cpu);
5654 	if (!netif_xmit_frozen_or_drv_stopped(txq)) {
5655 		rc = netdev_start_xmit(skb, dev, txq, 0);
5656 		if (dev_xmit_complete(rc))
5657 			free_skb = false;
5658 	}
5659 	HARD_TX_UNLOCK(dev, txq);
5660 	if (free_skb) {
5661 		trace_xdp_exception(dev, xdp_prog, XDP_TX);
5662 		dev_core_stats_tx_dropped_inc(dev);
5663 		kfree_skb(skb);
5664 	}
5665 }
5666 
5667 static DEFINE_STATIC_KEY_FALSE(generic_xdp_needed_key);
5668 
5669 int do_xdp_generic(const struct bpf_prog *xdp_prog, struct sk_buff **pskb)
5670 {
5671 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
5672 
5673 	if (xdp_prog) {
5674 		struct xdp_buff xdp;
5675 		u32 act;
5676 		int err;
5677 
5678 		bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
5679 		act = netif_receive_generic_xdp(pskb, &xdp, xdp_prog);
5680 		if (act != XDP_PASS) {
5681 			switch (act) {
5682 			case XDP_REDIRECT:
5683 				err = xdp_do_generic_redirect((*pskb)->dev, *pskb,
5684 							      &xdp, xdp_prog);
5685 				if (err)
5686 					goto out_redir;
5687 				break;
5688 			case XDP_TX:
5689 				generic_xdp_tx(*pskb, xdp_prog);
5690 				break;
5691 			}
5692 			bpf_net_ctx_clear(bpf_net_ctx);
5693 			return XDP_DROP;
5694 		}
5695 		bpf_net_ctx_clear(bpf_net_ctx);
5696 	}
5697 	return XDP_PASS;
5698 out_redir:
5699 	bpf_net_ctx_clear(bpf_net_ctx);
5700 	kfree_skb_reason(*pskb, SKB_DROP_REASON_XDP);
5701 	return XDP_DROP;
5702 }
5703 EXPORT_SYMBOL_GPL(do_xdp_generic);
5704 
5705 static int netif_rx_internal(struct sk_buff *skb)
5706 {
5707 	int ret;
5708 
5709 	net_timestamp_check(READ_ONCE(net_hotdata.tstamp_prequeue), skb);
5710 
5711 	trace_netif_rx(skb);
5712 
5713 #ifdef CONFIG_RPS
5714 	if (static_branch_unlikely(&rps_needed)) {
5715 		struct rps_dev_flow voidflow, *rflow = &voidflow;
5716 		int cpu;
5717 
5718 		rcu_read_lock();
5719 
5720 		cpu = get_rps_cpu(skb->dev, skb, &rflow);
5721 		if (cpu < 0)
5722 			cpu = smp_processor_id();
5723 
5724 		ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
5725 
5726 		rcu_read_unlock();
5727 	} else
5728 #endif
5729 	{
5730 		unsigned int qtail;
5731 
5732 		ret = enqueue_to_backlog(skb, smp_processor_id(), &qtail);
5733 	}
5734 	return ret;
5735 }
5736 
5737 /**
5738  *	__netif_rx	-	Slightly optimized version of netif_rx
5739  *	@skb: buffer to post
5740  *
5741  *	This behaves as netif_rx except that it does not disable bottom halves.
5742  *	As a result this function may only be invoked from the interrupt context
5743  *	(either hard or soft interrupt).
5744  */
5745 int __netif_rx(struct sk_buff *skb)
5746 {
5747 	int ret;
5748 
5749 	lockdep_assert_once(hardirq_count() | softirq_count());
5750 
5751 	trace_netif_rx_entry(skb);
5752 	ret = netif_rx_internal(skb);
5753 	trace_netif_rx_exit(ret);
5754 	return ret;
5755 }
5756 EXPORT_SYMBOL(__netif_rx);
5757 
5758 /**
5759  *	netif_rx	-	post buffer to the network code
5760  *	@skb: buffer to post
5761  *
5762  *	This function receives a packet from a device driver and queues it for
5763  *	the upper (protocol) levels to process via the backlog NAPI device. It
5764  *	always succeeds. The buffer may be dropped during processing for
5765  *	congestion control or by the protocol layers.
5766  *	The network buffer is passed via the backlog NAPI device. Modern NIC
5767  *	driver should use NAPI and GRO.
5768  *	This function can used from interrupt and from process context. The
5769  *	caller from process context must not disable interrupts before invoking
5770  *	this function.
5771  *
5772  *	return values:
5773  *	NET_RX_SUCCESS	(no congestion)
5774  *	NET_RX_DROP     (packet was dropped)
5775  *
5776  */
5777 int netif_rx(struct sk_buff *skb)
5778 {
5779 	bool need_bh_off = !(hardirq_count() | softirq_count());
5780 	int ret;
5781 
5782 	if (need_bh_off)
5783 		local_bh_disable();
5784 	trace_netif_rx_entry(skb);
5785 	ret = netif_rx_internal(skb);
5786 	trace_netif_rx_exit(ret);
5787 	if (need_bh_off)
5788 		local_bh_enable();
5789 	return ret;
5790 }
5791 EXPORT_SYMBOL(netif_rx);
5792 
5793 static __latent_entropy void net_tx_action(void)
5794 {
5795 	struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5796 
5797 	if (sd->completion_queue) {
5798 		struct sk_buff *clist;
5799 
5800 		local_irq_disable();
5801 		clist = sd->completion_queue;
5802 		sd->completion_queue = NULL;
5803 		local_irq_enable();
5804 
5805 		while (clist) {
5806 			struct sk_buff *skb = clist;
5807 
5808 			clist = clist->next;
5809 
5810 			WARN_ON(refcount_read(&skb->users));
5811 			if (likely(get_kfree_skb_cb(skb)->reason == SKB_CONSUMED))
5812 				trace_consume_skb(skb, net_tx_action);
5813 			else
5814 				trace_kfree_skb(skb, net_tx_action,
5815 						get_kfree_skb_cb(skb)->reason, NULL);
5816 
5817 			if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
5818 				__kfree_skb(skb);
5819 			else
5820 				__napi_kfree_skb(skb,
5821 						 get_kfree_skb_cb(skb)->reason);
5822 		}
5823 	}
5824 
5825 	if (sd->output_queue) {
5826 		struct Qdisc *head;
5827 
5828 		local_irq_disable();
5829 		head = sd->output_queue;
5830 		sd->output_queue = NULL;
5831 		sd->output_queue_tailp = &sd->output_queue;
5832 		local_irq_enable();
5833 
5834 		rcu_read_lock();
5835 
5836 		while (head) {
5837 			spinlock_t *root_lock = NULL;
5838 			struct sk_buff *to_free;
5839 			struct Qdisc *q = head;
5840 
5841 			head = head->next_sched;
5842 
5843 			/* We need to make sure head->next_sched is read
5844 			 * before clearing __QDISC_STATE_SCHED
5845 			 */
5846 			smp_mb__before_atomic();
5847 
5848 			if (!(q->flags & TCQ_F_NOLOCK)) {
5849 				root_lock = qdisc_lock(q);
5850 				spin_lock(root_lock);
5851 			} else if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED,
5852 						     &q->state))) {
5853 				/* There is a synchronize_net() between
5854 				 * STATE_DEACTIVATED flag being set and
5855 				 * qdisc_reset()/some_qdisc_is_busy() in
5856 				 * dev_deactivate(), so we can safely bail out
5857 				 * early here to avoid data race between
5858 				 * qdisc_deactivate() and some_qdisc_is_busy()
5859 				 * for lockless qdisc.
5860 				 */
5861 				clear_bit(__QDISC_STATE_SCHED, &q->state);
5862 				continue;
5863 			}
5864 
5865 			clear_bit(__QDISC_STATE_SCHED, &q->state);
5866 			to_free = qdisc_run(q);
5867 			if (root_lock)
5868 				spin_unlock(root_lock);
5869 			tcf_kfree_skb_list(to_free, q, NULL, qdisc_dev(q));
5870 		}
5871 
5872 		rcu_read_unlock();
5873 	}
5874 
5875 	xfrm_dev_backlog(sd);
5876 }
5877 
5878 /**
5879  *	netdev_is_rx_handler_busy - check if receive handler is registered
5880  *	@dev: device to check
5881  *
5882  *	Check if a receive handler is already registered for a given device.
5883  *	Return true if there one.
5884  *
5885  *	The caller must hold the rtnl_mutex.
5886  */
5887 bool netdev_is_rx_handler_busy(struct net_device *dev)
5888 {
5889 	ASSERT_RTNL();
5890 	return dev && rtnl_dereference(dev->rx_handler);
5891 }
5892 EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
5893 
5894 /**
5895  *	netdev_rx_handler_register - register receive handler
5896  *	@dev: device to register a handler for
5897  *	@rx_handler: receive handler to register
5898  *	@rx_handler_data: data pointer that is used by rx handler
5899  *
5900  *	Register a receive handler for a device. This handler will then be
5901  *	called from __netif_receive_skb. A negative errno code is returned
5902  *	on a failure.
5903  *
5904  *	The caller must hold the rtnl_mutex.
5905  *
5906  *	For a general description of rx_handler, see enum rx_handler_result.
5907  */
5908 int netdev_rx_handler_register(struct net_device *dev,
5909 			       rx_handler_func_t *rx_handler,
5910 			       void *rx_handler_data)
5911 {
5912 	if (netdev_is_rx_handler_busy(dev))
5913 		return -EBUSY;
5914 
5915 	if (dev->priv_flags & IFF_NO_RX_HANDLER)
5916 		return -EINVAL;
5917 
5918 	/* Note: rx_handler_data must be set before rx_handler */
5919 	rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
5920 	rcu_assign_pointer(dev->rx_handler, rx_handler);
5921 
5922 	return 0;
5923 }
5924 EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
5925 
5926 /**
5927  *	netdev_rx_handler_unregister - unregister receive handler
5928  *	@dev: device to unregister a handler from
5929  *
5930  *	Unregister a receive handler from a device.
5931  *
5932  *	The caller must hold the rtnl_mutex.
5933  */
5934 void netdev_rx_handler_unregister(struct net_device *dev)
5935 {
5936 
5937 	ASSERT_RTNL();
5938 	RCU_INIT_POINTER(dev->rx_handler, NULL);
5939 	/* a reader seeing a non NULL rx_handler in a rcu_read_lock()
5940 	 * section has a guarantee to see a non NULL rx_handler_data
5941 	 * as well.
5942 	 */
5943 	synchronize_net();
5944 	RCU_INIT_POINTER(dev->rx_handler_data, NULL);
5945 }
5946 EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
5947 
5948 /*
5949  * Limit the use of PFMEMALLOC reserves to those protocols that implement
5950  * the special handling of PFMEMALLOC skbs.
5951  */
5952 static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
5953 {
5954 	switch (skb->protocol) {
5955 	case htons(ETH_P_ARP):
5956 	case htons(ETH_P_IP):
5957 	case htons(ETH_P_IPV6):
5958 	case htons(ETH_P_8021Q):
5959 	case htons(ETH_P_8021AD):
5960 		return true;
5961 	default:
5962 		return false;
5963 	}
5964 }
5965 
5966 static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
5967 			     int *ret, struct net_device *orig_dev)
5968 {
5969 	if (nf_hook_ingress_active(skb)) {
5970 		int ingress_retval;
5971 
5972 		if (unlikely(*pt_prev)) {
5973 			*ret = deliver_skb(skb, *pt_prev, orig_dev);
5974 			*pt_prev = NULL;
5975 		}
5976 
5977 		rcu_read_lock();
5978 		ingress_retval = nf_hook_ingress(skb);
5979 		rcu_read_unlock();
5980 		return ingress_retval;
5981 	}
5982 	return 0;
5983 }
5984 
5985 static int __netif_receive_skb_core(struct sk_buff **pskb, bool pfmemalloc,
5986 				    struct packet_type **ppt_prev)
5987 {
5988 	enum skb_drop_reason drop_reason = SKB_DROP_REASON_UNHANDLED_PROTO;
5989 	struct packet_type *ptype, *pt_prev;
5990 	rx_handler_func_t *rx_handler;
5991 	struct sk_buff *skb = *pskb;
5992 	struct net_device *orig_dev;
5993 	bool deliver_exact = false;
5994 	int ret = NET_RX_DROP;
5995 	__be16 type;
5996 
5997 	net_timestamp_check(!READ_ONCE(net_hotdata.tstamp_prequeue), skb);
5998 
5999 	trace_netif_receive_skb(skb);
6000 
6001 	orig_dev = skb->dev;
6002 
6003 	skb_reset_network_header(skb);
6004 #if !defined(CONFIG_DEBUG_NET)
6005 	/* We plan to no longer reset the transport header here.
6006 	 * Give some time to fuzzers and dev build to catch bugs
6007 	 * in network stacks.
6008 	 */
6009 	if (!skb_transport_header_was_set(skb))
6010 		skb_reset_transport_header(skb);
6011 #endif
6012 	skb_reset_mac_len(skb);
6013 
6014 	pt_prev = NULL;
6015 
6016 another_round:
6017 	skb->skb_iif = skb->dev->ifindex;
6018 
6019 	__this_cpu_inc(softnet_data.processed);
6020 
6021 	if (static_branch_unlikely(&generic_xdp_needed_key)) {
6022 		int ret2;
6023 
6024 		migrate_disable();
6025 		ret2 = do_xdp_generic(rcu_dereference(skb->dev->xdp_prog),
6026 				      &skb);
6027 		migrate_enable();
6028 
6029 		if (ret2 != XDP_PASS) {
6030 			ret = NET_RX_DROP;
6031 			goto out;
6032 		}
6033 	}
6034 
6035 	if (eth_type_vlan(skb->protocol)) {
6036 		skb = skb_vlan_untag(skb);
6037 		if (unlikely(!skb))
6038 			goto out;
6039 	}
6040 
6041 	if (skb_skip_tc_classify(skb))
6042 		goto skip_classify;
6043 
6044 	if (pfmemalloc)
6045 		goto skip_taps;
6046 
6047 	list_for_each_entry_rcu(ptype, &dev_net_rcu(skb->dev)->ptype_all,
6048 				list) {
6049 		if (unlikely(pt_prev))
6050 			ret = deliver_skb(skb, pt_prev, orig_dev);
6051 		pt_prev = ptype;
6052 	}
6053 
6054 	list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
6055 		if (unlikely(pt_prev))
6056 			ret = deliver_skb(skb, pt_prev, orig_dev);
6057 		pt_prev = ptype;
6058 	}
6059 
6060 skip_taps:
6061 #ifdef CONFIG_NET_INGRESS
6062 	if (static_branch_unlikely(&ingress_needed_key)) {
6063 		bool another = false;
6064 
6065 		nf_skip_egress(skb, true);
6066 		skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev,
6067 					 &another);
6068 		if (another)
6069 			goto another_round;
6070 		if (!skb)
6071 			goto out;
6072 
6073 		nf_skip_egress(skb, false);
6074 		if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
6075 			goto out;
6076 	}
6077 #endif
6078 	skb_reset_redirect(skb);
6079 skip_classify:
6080 	if (pfmemalloc && !skb_pfmemalloc_protocol(skb)) {
6081 		drop_reason = SKB_DROP_REASON_PFMEMALLOC;
6082 		goto drop;
6083 	}
6084 
6085 	if (skb_vlan_tag_present(skb)) {
6086 		if (unlikely(pt_prev)) {
6087 			ret = deliver_skb(skb, pt_prev, orig_dev);
6088 			pt_prev = NULL;
6089 		}
6090 		if (vlan_do_receive(&skb))
6091 			goto another_round;
6092 		else if (unlikely(!skb))
6093 			goto out;
6094 	}
6095 
6096 	rx_handler = rcu_dereference(skb->dev->rx_handler);
6097 	if (rx_handler) {
6098 		if (unlikely(pt_prev)) {
6099 			ret = deliver_skb(skb, pt_prev, orig_dev);
6100 			pt_prev = NULL;
6101 		}
6102 		switch (rx_handler(&skb)) {
6103 		case RX_HANDLER_CONSUMED:
6104 			ret = NET_RX_SUCCESS;
6105 			goto out;
6106 		case RX_HANDLER_ANOTHER:
6107 			goto another_round;
6108 		case RX_HANDLER_EXACT:
6109 			deliver_exact = true;
6110 			break;
6111 		case RX_HANDLER_PASS:
6112 			break;
6113 		default:
6114 			BUG();
6115 		}
6116 	}
6117 
6118 	if (unlikely(skb_vlan_tag_present(skb)) && !netdev_uses_dsa(skb->dev)) {
6119 check_vlan_id:
6120 		if (skb_vlan_tag_get_id(skb)) {
6121 			/* Vlan id is non 0 and vlan_do_receive() above couldn't
6122 			 * find vlan device.
6123 			 */
6124 			skb->pkt_type = PACKET_OTHERHOST;
6125 		} else if (eth_type_vlan(skb->protocol)) {
6126 			/* Outer header is 802.1P with vlan 0, inner header is
6127 			 * 802.1Q or 802.1AD and vlan_do_receive() above could
6128 			 * not find vlan dev for vlan id 0.
6129 			 */
6130 			__vlan_hwaccel_clear_tag(skb);
6131 			skb = skb_vlan_untag(skb);
6132 			if (unlikely(!skb))
6133 				goto out;
6134 			if (vlan_do_receive(&skb))
6135 				/* After stripping off 802.1P header with vlan 0
6136 				 * vlan dev is found for inner header.
6137 				 */
6138 				goto another_round;
6139 			else if (unlikely(!skb))
6140 				goto out;
6141 			else
6142 				/* We have stripped outer 802.1P vlan 0 header.
6143 				 * But could not find vlan dev.
6144 				 * check again for vlan id to set OTHERHOST.
6145 				 */
6146 				goto check_vlan_id;
6147 		}
6148 		/* Note: we might in the future use prio bits
6149 		 * and set skb->priority like in vlan_do_receive()
6150 		 * For the time being, just ignore Priority Code Point
6151 		 */
6152 		__vlan_hwaccel_clear_tag(skb);
6153 	}
6154 
6155 	type = skb->protocol;
6156 
6157 	/* deliver only exact match when indicated */
6158 	if (likely(!deliver_exact)) {
6159 		deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
6160 				       &ptype_base[ntohs(type) &
6161 						   PTYPE_HASH_MASK]);
6162 
6163 		/* orig_dev and skb->dev could belong to different netns;
6164 		 * Even in such case we need to traverse only the list
6165 		 * coming from skb->dev, as the ptype owner (packet socket)
6166 		 * will use dev_net(skb->dev) to do namespace filtering.
6167 		 */
6168 		deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
6169 				       &dev_net_rcu(skb->dev)->ptype_specific);
6170 	}
6171 
6172 	deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
6173 			       &orig_dev->ptype_specific);
6174 
6175 	if (unlikely(skb->dev != orig_dev)) {
6176 		deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
6177 				       &skb->dev->ptype_specific);
6178 	}
6179 
6180 	if (pt_prev) {
6181 		*ppt_prev = pt_prev;
6182 	} else {
6183 drop:
6184 		if (!deliver_exact)
6185 			dev_core_stats_rx_dropped_inc(skb->dev);
6186 		else
6187 			dev_core_stats_rx_nohandler_inc(skb->dev);
6188 
6189 		kfree_skb_reason(skb, drop_reason);
6190 		/* Jamal, now you will not able to escape explaining
6191 		 * me how you were going to use this. :-)
6192 		 */
6193 		ret = NET_RX_DROP;
6194 	}
6195 
6196 out:
6197 	/* The invariant here is that if *ppt_prev is not NULL
6198 	 * then skb should also be non-NULL.
6199 	 *
6200 	 * Apparently *ppt_prev assignment above holds this invariant due to
6201 	 * skb dereferencing near it.
6202 	 */
6203 	*pskb = skb;
6204 	return ret;
6205 }
6206 
6207 static int __netif_receive_skb_one_core(struct sk_buff *skb, bool pfmemalloc)
6208 {
6209 	struct net_device *orig_dev = skb->dev;
6210 	struct packet_type *pt_prev = NULL;
6211 	int ret;
6212 
6213 	ret = __netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
6214 	if (pt_prev)
6215 		ret = INDIRECT_CALL_INET(pt_prev->func, ipv6_rcv, ip_rcv, skb,
6216 					 skb->dev, pt_prev, orig_dev);
6217 	return ret;
6218 }
6219 
6220 /**
6221  *	netif_receive_skb_core - special purpose version of netif_receive_skb
6222  *	@skb: buffer to process
6223  *
6224  *	More direct receive version of netif_receive_skb().  It should
6225  *	only be used by callers that have a need to skip RPS and Generic XDP.
6226  *	Caller must also take care of handling if ``(page_is_)pfmemalloc``.
6227  *
6228  *	This function may only be called from softirq context and interrupts
6229  *	should be enabled.
6230  *
6231  *	Return values (usually ignored):
6232  *	NET_RX_SUCCESS: no congestion
6233  *	NET_RX_DROP: packet was dropped
6234  */
6235 int netif_receive_skb_core(struct sk_buff *skb)
6236 {
6237 	int ret;
6238 
6239 	rcu_read_lock();
6240 	ret = __netif_receive_skb_one_core(skb, false);
6241 	rcu_read_unlock();
6242 
6243 	return ret;
6244 }
6245 EXPORT_SYMBOL(netif_receive_skb_core);
6246 
6247 static inline void __netif_receive_skb_list_ptype(struct list_head *head,
6248 						  struct packet_type *pt_prev,
6249 						  struct net_device *orig_dev)
6250 {
6251 	struct sk_buff *skb, *next;
6252 
6253 	if (!pt_prev)
6254 		return;
6255 	if (list_empty(head))
6256 		return;
6257 	if (pt_prev->list_func != NULL)
6258 		INDIRECT_CALL_INET(pt_prev->list_func, ipv6_list_rcv,
6259 				   ip_list_rcv, head, pt_prev, orig_dev);
6260 	else
6261 		list_for_each_entry_safe(skb, next, head, list) {
6262 			skb_list_del_init(skb);
6263 			pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
6264 		}
6265 }
6266 
6267 static void __netif_receive_skb_list_core(struct list_head *head, bool pfmemalloc)
6268 {
6269 	/* Fast-path assumptions:
6270 	 * - There is no RX handler.
6271 	 * - Only one packet_type matches.
6272 	 * If either of these fails, we will end up doing some per-packet
6273 	 * processing in-line, then handling the 'last ptype' for the whole
6274 	 * sublist.  This can't cause out-of-order delivery to any single ptype,
6275 	 * because the 'last ptype' must be constant across the sublist, and all
6276 	 * other ptypes are handled per-packet.
6277 	 */
6278 	/* Current (common) ptype of sublist */
6279 	struct packet_type *pt_curr = NULL;
6280 	/* Current (common) orig_dev of sublist */
6281 	struct net_device *od_curr = NULL;
6282 	struct sk_buff *skb, *next;
6283 	LIST_HEAD(sublist);
6284 
6285 	list_for_each_entry_safe(skb, next, head, list) {
6286 		struct net_device *orig_dev = skb->dev;
6287 		struct packet_type *pt_prev = NULL;
6288 
6289 		skb_list_del_init(skb);
6290 		__netif_receive_skb_core(&skb, pfmemalloc, &pt_prev);
6291 		if (!pt_prev)
6292 			continue;
6293 		if (pt_curr != pt_prev || od_curr != orig_dev) {
6294 			/* dispatch old sublist */
6295 			__netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
6296 			/* start new sublist */
6297 			INIT_LIST_HEAD(&sublist);
6298 			pt_curr = pt_prev;
6299 			od_curr = orig_dev;
6300 		}
6301 		list_add_tail(&skb->list, &sublist);
6302 	}
6303 
6304 	/* dispatch final sublist */
6305 	__netif_receive_skb_list_ptype(&sublist, pt_curr, od_curr);
6306 }
6307 
6308 static int __netif_receive_skb(struct sk_buff *skb)
6309 {
6310 	int ret;
6311 
6312 	if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
6313 		unsigned int noreclaim_flag;
6314 
6315 		/*
6316 		 * PFMEMALLOC skbs are special, they should
6317 		 * - be delivered to SOCK_MEMALLOC sockets only
6318 		 * - stay away from userspace
6319 		 * - have bounded memory usage
6320 		 *
6321 		 * Use PF_MEMALLOC as this saves us from propagating the allocation
6322 		 * context down to all allocation sites.
6323 		 */
6324 		noreclaim_flag = memalloc_noreclaim_save();
6325 		ret = __netif_receive_skb_one_core(skb, true);
6326 		memalloc_noreclaim_restore(noreclaim_flag);
6327 	} else
6328 		ret = __netif_receive_skb_one_core(skb, false);
6329 
6330 	return ret;
6331 }
6332 
6333 static void __netif_receive_skb_list(struct list_head *head)
6334 {
6335 	unsigned long noreclaim_flag = 0;
6336 	struct sk_buff *skb, *next;
6337 	bool pfmemalloc = false; /* Is current sublist PF_MEMALLOC? */
6338 
6339 	list_for_each_entry_safe(skb, next, head, list) {
6340 		if ((sk_memalloc_socks() && skb_pfmemalloc(skb)) != pfmemalloc) {
6341 			struct list_head sublist;
6342 
6343 			/* Handle the previous sublist */
6344 			list_cut_before(&sublist, head, &skb->list);
6345 			if (!list_empty(&sublist))
6346 				__netif_receive_skb_list_core(&sublist, pfmemalloc);
6347 			pfmemalloc = !pfmemalloc;
6348 			/* See comments in __netif_receive_skb */
6349 			if (pfmemalloc)
6350 				noreclaim_flag = memalloc_noreclaim_save();
6351 			else
6352 				memalloc_noreclaim_restore(noreclaim_flag);
6353 		}
6354 	}
6355 	/* Handle the remaining sublist */
6356 	if (!list_empty(head))
6357 		__netif_receive_skb_list_core(head, pfmemalloc);
6358 	/* Restore pflags */
6359 	if (pfmemalloc)
6360 		memalloc_noreclaim_restore(noreclaim_flag);
6361 }
6362 
6363 static int generic_xdp_install(struct net_device *dev, struct netdev_bpf *xdp)
6364 {
6365 	struct bpf_prog *old = rtnl_dereference(dev->xdp_prog);
6366 	struct bpf_prog *new = xdp->prog;
6367 	int ret = 0;
6368 
6369 	switch (xdp->command) {
6370 	case XDP_SETUP_PROG:
6371 		rcu_assign_pointer(dev->xdp_prog, new);
6372 		if (old)
6373 			bpf_prog_put(old);
6374 
6375 		if (old && !new) {
6376 			static_branch_dec(&generic_xdp_needed_key);
6377 		} else if (new && !old) {
6378 			static_branch_inc(&generic_xdp_needed_key);
6379 			netif_disable_lro(dev);
6380 			dev_disable_gro_hw(dev);
6381 		}
6382 		break;
6383 
6384 	default:
6385 		ret = -EINVAL;
6386 		break;
6387 	}
6388 
6389 	return ret;
6390 }
6391 
6392 static int netif_receive_skb_internal(struct sk_buff *skb)
6393 {
6394 	int ret;
6395 
6396 	net_timestamp_check(READ_ONCE(net_hotdata.tstamp_prequeue), skb);
6397 
6398 	if (skb_defer_rx_timestamp(skb))
6399 		return NET_RX_SUCCESS;
6400 
6401 	rcu_read_lock();
6402 #ifdef CONFIG_RPS
6403 	if (static_branch_unlikely(&rps_needed)) {
6404 		struct rps_dev_flow voidflow, *rflow = &voidflow;
6405 		int cpu = get_rps_cpu(skb->dev, skb, &rflow);
6406 
6407 		if (cpu >= 0) {
6408 			ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
6409 			rcu_read_unlock();
6410 			return ret;
6411 		}
6412 	}
6413 #endif
6414 	ret = __netif_receive_skb(skb);
6415 	rcu_read_unlock();
6416 	return ret;
6417 }
6418 
6419 void netif_receive_skb_list_internal(struct list_head *head)
6420 {
6421 	struct sk_buff *skb, *next;
6422 	LIST_HEAD(sublist);
6423 
6424 	list_for_each_entry_safe(skb, next, head, list) {
6425 		net_timestamp_check(READ_ONCE(net_hotdata.tstamp_prequeue),
6426 				    skb);
6427 		skb_list_del_init(skb);
6428 		if (!skb_defer_rx_timestamp(skb))
6429 			list_add_tail(&skb->list, &sublist);
6430 	}
6431 	list_splice_init(&sublist, head);
6432 
6433 	rcu_read_lock();
6434 #ifdef CONFIG_RPS
6435 	if (static_branch_unlikely(&rps_needed)) {
6436 		list_for_each_entry_safe(skb, next, head, list) {
6437 			struct rps_dev_flow voidflow, *rflow = &voidflow;
6438 			int cpu = get_rps_cpu(skb->dev, skb, &rflow);
6439 
6440 			if (cpu >= 0) {
6441 				/* Will be handled, remove from list */
6442 				skb_list_del_init(skb);
6443 				enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
6444 			}
6445 		}
6446 	}
6447 #endif
6448 	__netif_receive_skb_list(head);
6449 	rcu_read_unlock();
6450 }
6451 
6452 /**
6453  *	netif_receive_skb - process receive buffer from network
6454  *	@skb: buffer to process
6455  *
6456  *	netif_receive_skb() is the main receive data processing function.
6457  *	It always succeeds. The buffer may be dropped during processing
6458  *	for congestion control or by the protocol layers.
6459  *
6460  *	This function may only be called from softirq context and interrupts
6461  *	should be enabled.
6462  *
6463  *	Return values (usually ignored):
6464  *	NET_RX_SUCCESS: no congestion
6465  *	NET_RX_DROP: packet was dropped
6466  */
6467 int netif_receive_skb(struct sk_buff *skb)
6468 {
6469 	int ret;
6470 
6471 	trace_netif_receive_skb_entry(skb);
6472 
6473 	ret = netif_receive_skb_internal(skb);
6474 	trace_netif_receive_skb_exit(ret);
6475 
6476 	return ret;
6477 }
6478 EXPORT_SYMBOL(netif_receive_skb);
6479 
6480 /**
6481  *	netif_receive_skb_list - process many receive buffers from network
6482  *	@head: list of skbs to process.
6483  *
6484  *	Since return value of netif_receive_skb() is normally ignored, and
6485  *	wouldn't be meaningful for a list, this function returns void.
6486  *
6487  *	This function may only be called from softirq context and interrupts
6488  *	should be enabled.
6489  */
6490 void netif_receive_skb_list(struct list_head *head)
6491 {
6492 	struct sk_buff *skb;
6493 
6494 	if (list_empty(head))
6495 		return;
6496 	if (trace_netif_receive_skb_list_entry_enabled()) {
6497 		list_for_each_entry(skb, head, list)
6498 			trace_netif_receive_skb_list_entry(skb);
6499 	}
6500 	netif_receive_skb_list_internal(head);
6501 	trace_netif_receive_skb_list_exit(0);
6502 }
6503 EXPORT_SYMBOL(netif_receive_skb_list);
6504 
6505 /* Network device is going away, flush any packets still pending */
6506 static void flush_backlog(struct work_struct *work)
6507 {
6508 	struct sk_buff *skb, *tmp;
6509 	struct sk_buff_head list;
6510 	struct softnet_data *sd;
6511 
6512 	__skb_queue_head_init(&list);
6513 	local_bh_disable();
6514 	sd = this_cpu_ptr(&softnet_data);
6515 
6516 	backlog_lock_irq_disable(sd);
6517 	skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
6518 		if (READ_ONCE(skb->dev->reg_state) == NETREG_UNREGISTERING) {
6519 			__skb_unlink(skb, &sd->input_pkt_queue);
6520 			__skb_queue_tail(&list, skb);
6521 			rps_input_queue_head_incr(sd);
6522 		}
6523 	}
6524 	backlog_unlock_irq_enable(sd);
6525 
6526 	local_lock_nested_bh(&softnet_data.process_queue_bh_lock);
6527 	skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
6528 		if (READ_ONCE(skb->dev->reg_state) == NETREG_UNREGISTERING) {
6529 			__skb_unlink(skb, &sd->process_queue);
6530 			__skb_queue_tail(&list, skb);
6531 			rps_input_queue_head_incr(sd);
6532 		}
6533 	}
6534 	local_unlock_nested_bh(&softnet_data.process_queue_bh_lock);
6535 	local_bh_enable();
6536 
6537 	__skb_queue_purge_reason(&list, SKB_DROP_REASON_DEV_READY);
6538 }
6539 
6540 static bool flush_required(int cpu)
6541 {
6542 #if IS_ENABLED(CONFIG_RPS)
6543 	struct softnet_data *sd = &per_cpu(softnet_data, cpu);
6544 	bool do_flush;
6545 
6546 	backlog_lock_irq_disable(sd);
6547 
6548 	/* as insertion into process_queue happens with the rps lock held,
6549 	 * process_queue access may race only with dequeue
6550 	 */
6551 	do_flush = !skb_queue_empty(&sd->input_pkt_queue) ||
6552 		   !skb_queue_empty_lockless(&sd->process_queue);
6553 	backlog_unlock_irq_enable(sd);
6554 
6555 	return do_flush;
6556 #endif
6557 	/* without RPS we can't safely check input_pkt_queue: during a
6558 	 * concurrent remote skb_queue_splice() we can detect as empty both
6559 	 * input_pkt_queue and process_queue even if the latter could end-up
6560 	 * containing a lot of packets.
6561 	 */
6562 	return true;
6563 }
6564 
6565 struct flush_backlogs {
6566 	cpumask_t		flush_cpus;
6567 	struct work_struct	w[];
6568 };
6569 
6570 static struct flush_backlogs *flush_backlogs_alloc(void)
6571 {
6572 	return kmalloc_flex(struct flush_backlogs, w, nr_cpu_ids);
6573 }
6574 
6575 static struct flush_backlogs *flush_backlogs_fallback;
6576 static DEFINE_MUTEX(flush_backlogs_mutex);
6577 
6578 static void flush_all_backlogs(void)
6579 {
6580 	struct flush_backlogs *ptr = flush_backlogs_alloc();
6581 	unsigned int cpu;
6582 
6583 	if (!ptr) {
6584 		mutex_lock(&flush_backlogs_mutex);
6585 		ptr = flush_backlogs_fallback;
6586 	}
6587 	cpumask_clear(&ptr->flush_cpus);
6588 
6589 	cpus_read_lock();
6590 
6591 	for_each_online_cpu(cpu) {
6592 		if (flush_required(cpu)) {
6593 			INIT_WORK(&ptr->w[cpu], flush_backlog);
6594 			queue_work_on(cpu, system_highpri_wq, &ptr->w[cpu]);
6595 			__cpumask_set_cpu(cpu, &ptr->flush_cpus);
6596 		}
6597 	}
6598 
6599 	/* we can have in flight packet[s] on the cpus we are not flushing,
6600 	 * synchronize_net() in unregister_netdevice_many() will take care of
6601 	 * them.
6602 	 */
6603 	for_each_cpu(cpu, &ptr->flush_cpus)
6604 		flush_work(&ptr->w[cpu]);
6605 
6606 	cpus_read_unlock();
6607 
6608 	if (ptr != flush_backlogs_fallback)
6609 		kfree(ptr);
6610 	else
6611 		mutex_unlock(&flush_backlogs_mutex);
6612 }
6613 
6614 static void net_rps_send_ipi(struct softnet_data *remsd)
6615 {
6616 #ifdef CONFIG_RPS
6617 	while (remsd) {
6618 		struct softnet_data *next = remsd->rps_ipi_next;
6619 
6620 		if (cpu_online(remsd->cpu))
6621 			smp_call_function_single_async(remsd->cpu, &remsd->csd);
6622 		remsd = next;
6623 	}
6624 #endif
6625 }
6626 
6627 /*
6628  * net_rps_action_and_irq_enable sends any pending IPI's for rps.
6629  * Note: called with local irq disabled, but exits with local irq enabled.
6630  */
6631 static void net_rps_action_and_irq_enable(struct softnet_data *sd)
6632 {
6633 #ifdef CONFIG_RPS
6634 	struct softnet_data *remsd = sd->rps_ipi_list;
6635 
6636 	if (!use_backlog_threads() && remsd) {
6637 		sd->rps_ipi_list = NULL;
6638 
6639 		local_irq_enable();
6640 
6641 		/* Send pending IPI's to kick RPS processing on remote cpus. */
6642 		net_rps_send_ipi(remsd);
6643 	} else
6644 #endif
6645 		local_irq_enable();
6646 }
6647 
6648 static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
6649 {
6650 #ifdef CONFIG_RPS
6651 	return !use_backlog_threads() && sd->rps_ipi_list;
6652 #else
6653 	return false;
6654 #endif
6655 }
6656 
6657 static int process_backlog(struct napi_struct *napi, int quota)
6658 {
6659 	struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
6660 	bool again = true;
6661 	int work = 0;
6662 
6663 	/* Check if we have pending ipi, its better to send them now,
6664 	 * not waiting net_rx_action() end.
6665 	 */
6666 	if (sd_has_rps_ipi_waiting(sd)) {
6667 		local_irq_disable();
6668 		net_rps_action_and_irq_enable(sd);
6669 	}
6670 
6671 	napi->weight = READ_ONCE(net_hotdata.dev_rx_weight);
6672 	while (again) {
6673 		struct sk_buff *skb;
6674 
6675 		local_lock_nested_bh(&softnet_data.process_queue_bh_lock);
6676 		while ((skb = __skb_dequeue(&sd->process_queue))) {
6677 			local_unlock_nested_bh(&softnet_data.process_queue_bh_lock);
6678 			rcu_read_lock();
6679 			__netif_receive_skb(skb);
6680 			rcu_read_unlock();
6681 			if (++work >= quota) {
6682 				rps_input_queue_head_add(sd, work);
6683 				return work;
6684 			}
6685 
6686 			local_lock_nested_bh(&softnet_data.process_queue_bh_lock);
6687 		}
6688 		local_unlock_nested_bh(&softnet_data.process_queue_bh_lock);
6689 
6690 		backlog_lock_irq_disable(sd);
6691 		if (skb_queue_empty(&sd->input_pkt_queue)) {
6692 			/*
6693 			 * Inline a custom version of __napi_complete().
6694 			 * only current cpu owns and manipulates this napi,
6695 			 * and NAPI_STATE_SCHED is the only possible flag set
6696 			 * on backlog.
6697 			 * We can use a plain write instead of clear_bit(),
6698 			 * and we dont need an smp_mb() memory barrier.
6699 			 */
6700 			napi->state &= NAPIF_STATE_THREADED;
6701 			again = false;
6702 		} else {
6703 			local_lock_nested_bh(&softnet_data.process_queue_bh_lock);
6704 			skb_queue_splice_tail_init(&sd->input_pkt_queue,
6705 						   &sd->process_queue);
6706 			local_unlock_nested_bh(&softnet_data.process_queue_bh_lock);
6707 		}
6708 		backlog_unlock_irq_enable(sd);
6709 	}
6710 
6711 	if (work)
6712 		rps_input_queue_head_add(sd, work);
6713 	return work;
6714 }
6715 
6716 /**
6717  * __napi_schedule - schedule for receive
6718  * @n: entry to schedule
6719  *
6720  * The entry's receive function will be scheduled to run.
6721  * Consider using __napi_schedule_irqoff() if hard irqs are masked.
6722  */
6723 void __napi_schedule(struct napi_struct *n)
6724 {
6725 	unsigned long flags;
6726 
6727 	local_irq_save(flags);
6728 	____napi_schedule(this_cpu_ptr(&softnet_data), n);
6729 	local_irq_restore(flags);
6730 }
6731 EXPORT_SYMBOL(__napi_schedule);
6732 
6733 /**
6734  *	napi_schedule_prep - check if napi can be scheduled
6735  *	@n: napi context
6736  *
6737  * Test if NAPI routine is already running, and if not mark
6738  * it as running.  This is used as a condition variable to
6739  * insure only one NAPI poll instance runs.  We also make
6740  * sure there is no pending NAPI disable.
6741  */
6742 bool napi_schedule_prep(struct napi_struct *n)
6743 {
6744 	unsigned long new, val = READ_ONCE(n->state);
6745 
6746 	do {
6747 		if (unlikely(val & NAPIF_STATE_DISABLE))
6748 			return false;
6749 		new = val | NAPIF_STATE_SCHED;
6750 
6751 		/* Sets STATE_MISSED bit if STATE_SCHED was already set
6752 		 * This was suggested by Alexander Duyck, as compiler
6753 		 * emits better code than :
6754 		 * if (val & NAPIF_STATE_SCHED)
6755 		 *     new |= NAPIF_STATE_MISSED;
6756 		 */
6757 		new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6758 						   NAPIF_STATE_MISSED;
6759 	} while (!try_cmpxchg(&n->state, &val, new));
6760 
6761 	return !(val & NAPIF_STATE_SCHED);
6762 }
6763 EXPORT_SYMBOL(napi_schedule_prep);
6764 
6765 /**
6766  * __napi_schedule_irqoff - schedule for receive
6767  * @n: entry to schedule
6768  *
6769  * Variant of __napi_schedule() assuming hard irqs are masked.
6770  *
6771  * On PREEMPT_RT enabled kernels this maps to __napi_schedule()
6772  * because the interrupt disabled assumption might not be true
6773  * due to force-threaded interrupts and spinlock substitution.
6774  */
6775 void __napi_schedule_irqoff(struct napi_struct *n)
6776 {
6777 	if (!IS_ENABLED(CONFIG_PREEMPT_RT))
6778 		____napi_schedule(this_cpu_ptr(&softnet_data), n);
6779 	else
6780 		__napi_schedule(n);
6781 }
6782 EXPORT_SYMBOL(__napi_schedule_irqoff);
6783 
6784 bool napi_complete_done(struct napi_struct *n, int work_done)
6785 {
6786 	unsigned long flags, val, new, timeout = 0;
6787 	bool ret = true;
6788 
6789 	/*
6790 	 * 1) Don't let napi dequeue from the cpu poll list
6791 	 *    just in case its running on a different cpu.
6792 	 * 2) If we are busy polling, do nothing here, we have
6793 	 *    the guarantee we will be called later.
6794 	 */
6795 	if (unlikely(n->state & (NAPIF_STATE_NPSVC |
6796 				 NAPIF_STATE_IN_BUSY_POLL)))
6797 		return false;
6798 
6799 	if (work_done) {
6800 		if (n->gro.bitmask)
6801 			timeout = napi_get_gro_flush_timeout(n);
6802 		n->defer_hard_irqs_count = napi_get_defer_hard_irqs(n);
6803 	}
6804 	if (n->defer_hard_irqs_count > 0) {
6805 		n->defer_hard_irqs_count--;
6806 		timeout = napi_get_gro_flush_timeout(n);
6807 		if (timeout)
6808 			ret = false;
6809 	}
6810 
6811 	/*
6812 	 * When the NAPI instance uses a timeout and keeps postponing
6813 	 * it, we need to bound somehow the time packets are kept in
6814 	 * the GRO layer.
6815 	 */
6816 	gro_flush_normal(&n->gro, !!timeout);
6817 
6818 	if (unlikely(!list_empty(&n->poll_list))) {
6819 		/* If n->poll_list is not empty, we need to mask irqs */
6820 		local_irq_save(flags);
6821 		list_del_init(&n->poll_list);
6822 		local_irq_restore(flags);
6823 	}
6824 	WRITE_ONCE(n->list_owner, -1);
6825 
6826 	val = READ_ONCE(n->state);
6827 	do {
6828 		WARN_ON_ONCE(!(val & NAPIF_STATE_SCHED));
6829 
6830 		new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED |
6831 			      NAPIF_STATE_SCHED_THREADED |
6832 			      NAPIF_STATE_PREFER_BUSY_POLL);
6833 
6834 		/* If STATE_MISSED was set, leave STATE_SCHED set,
6835 		 * because we will call napi->poll() one more time.
6836 		 * This C code was suggested by Alexander Duyck to help gcc.
6837 		 */
6838 		new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6839 						    NAPIF_STATE_SCHED;
6840 	} while (!try_cmpxchg(&n->state, &val, new));
6841 
6842 	if (unlikely(val & NAPIF_STATE_MISSED)) {
6843 		__napi_schedule(n);
6844 		return false;
6845 	}
6846 
6847 	if (timeout)
6848 		hrtimer_start(&n->timer, ns_to_ktime(timeout),
6849 			      HRTIMER_MODE_REL_PINNED);
6850 	return ret;
6851 }
6852 EXPORT_SYMBOL(napi_complete_done);
6853 
6854 static void skb_defer_free_flush(void)
6855 {
6856 	struct llist_node *free_list;
6857 	struct sk_buff *skb, *next;
6858 	struct skb_defer_node *sdn;
6859 	int node;
6860 
6861 	for_each_node(node) {
6862 		sdn = this_cpu_ptr(net_hotdata.skb_defer_nodes) + node;
6863 
6864 		if (llist_empty(&sdn->defer_list))
6865 			continue;
6866 		atomic_long_set(&sdn->defer_count, 0);
6867 		free_list = llist_del_all(&sdn->defer_list);
6868 
6869 		llist_for_each_entry_safe(skb, next, free_list, ll_node) {
6870 			prefetch(next);
6871 			napi_consume_skb(skb, 1);
6872 		}
6873 	}
6874 }
6875 
6876 #if defined(CONFIG_NET_RX_BUSY_POLL)
6877 
6878 enum {
6879 	NAPI_F_PREFER_BUSY_POLL	= 1,
6880 	NAPI_F_END_ON_RESCHED	= 2,
6881 };
6882 
6883 static void busy_poll_stop(struct napi_struct *napi, void *have_poll_lock,
6884 			   unsigned flags, u16 budget)
6885 {
6886 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
6887 	unsigned long timeout = 0;
6888 	int rc;
6889 
6890 	/* Busy polling means there is a high chance device driver hard irq
6891 	 * could not grab NAPI_STATE_SCHED, and that NAPI_STATE_MISSED was
6892 	 * set in napi_schedule_prep().
6893 	 * Since we either call napi->poll() once more or start the timer,
6894 	 * we can safely clear NAPI_STATE_MISSED.
6895 	 *
6896 	 * Note: x86 could use a single "lock and ..." instruction
6897 	 * to perform these two clear_bit()
6898 	 */
6899 	clear_bit(NAPI_STATE_MISSED, &napi->state);
6900 	clear_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state);
6901 
6902 	local_bh_disable();
6903 	bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
6904 
6905 	if (flags & NAPI_F_PREFER_BUSY_POLL) {
6906 		napi->defer_hard_irqs_count = napi_get_defer_hard_irqs(napi);
6907 		if (napi->defer_hard_irqs_count)
6908 			timeout = napi_get_gro_flush_timeout(napi);
6909 	}
6910 	if (timeout) {
6911 		netpoll_poll_unlock(have_poll_lock);
6912 
6913 		/* Drain aged GRO packets before clearing SCHED since the NAPI
6914 		 * won't run again until after the timer fires. When HZ < 1000,
6915 		 * GRO age comparison is too coarse, so flush everything.
6916 		 */
6917 		gro_flush_normal(&napi->gro, HZ >= 1000);
6918 
6919 		clear_bit(NAPI_STATE_SCHED, &napi->state);
6920 		hrtimer_start(&napi->timer, ns_to_ktime(timeout),
6921 			      HRTIMER_MODE_REL_PINNED);
6922 	} else {
6923 		/* Use driver poll to re-enable device interrupts. */
6924 		rc = napi->poll(napi, budget);
6925 		/* Unless rc == budget we no longer own the NAPI instance,
6926 		 * IRQ may fire on another CPU, poll this NAPI, and enter GRO.
6927 		 */
6928 		trace_napi_poll(napi, rc, budget);
6929 		netpoll_poll_unlock(have_poll_lock);
6930 		if (rc == budget) {
6931 			gro_normal_list(&napi->gro);
6932 			__napi_schedule(napi);
6933 		}
6934 	}
6935 
6936 	bpf_net_ctx_clear(bpf_net_ctx);
6937 	local_bh_enable();
6938 }
6939 
6940 static void __napi_busy_loop(unsigned int napi_id,
6941 		      bool (*loop_end)(void *, unsigned long),
6942 		      void *loop_end_arg, unsigned flags, u16 budget)
6943 {
6944 	unsigned long start_time = loop_end ? busy_loop_current_time() : 0;
6945 	int (*napi_poll)(struct napi_struct *napi, int budget);
6946 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
6947 	void *have_poll_lock = NULL;
6948 	struct napi_struct *napi;
6949 
6950 	WARN_ON_ONCE(!rcu_read_lock_held());
6951 
6952 restart:
6953 	napi_poll = NULL;
6954 
6955 	napi = napi_by_id(napi_id);
6956 	if (!napi)
6957 		return;
6958 
6959 	if (!IS_ENABLED(CONFIG_PREEMPT_RT))
6960 		preempt_disable();
6961 	for (;;) {
6962 		int work = 0;
6963 
6964 		local_bh_disable();
6965 		bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
6966 		if (!napi_poll) {
6967 			unsigned long val = READ_ONCE(napi->state);
6968 
6969 			/* If multiple threads are competing for this napi,
6970 			 * we avoid dirtying napi->state as much as we can.
6971 			 */
6972 			if (val & (NAPIF_STATE_DISABLE | NAPIF_STATE_SCHED |
6973 				   NAPIF_STATE_IN_BUSY_POLL)) {
6974 				if (flags & NAPI_F_PREFER_BUSY_POLL)
6975 					set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
6976 				goto count;
6977 			}
6978 			if (cmpxchg(&napi->state, val,
6979 				    val | NAPIF_STATE_IN_BUSY_POLL |
6980 					  NAPIF_STATE_SCHED) != val) {
6981 				if (flags & NAPI_F_PREFER_BUSY_POLL)
6982 					set_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
6983 				goto count;
6984 			}
6985 			have_poll_lock = netpoll_poll_lock(napi);
6986 			napi_poll = napi->poll;
6987 		}
6988 		work = napi_poll(napi, budget);
6989 		trace_napi_poll(napi, work, budget);
6990 		gro_normal_list(&napi->gro);
6991 count:
6992 		if (work > 0)
6993 			__NET_ADD_STATS(dev_net(napi->dev),
6994 					LINUX_MIB_BUSYPOLLRXPACKETS, work);
6995 		skb_defer_free_flush();
6996 		bpf_net_ctx_clear(bpf_net_ctx);
6997 		local_bh_enable();
6998 
6999 		if (!loop_end || loop_end(loop_end_arg, start_time))
7000 			break;
7001 
7002 		if (unlikely(need_resched())) {
7003 			if (flags & NAPI_F_END_ON_RESCHED)
7004 				break;
7005 			if (napi_poll)
7006 				busy_poll_stop(napi, have_poll_lock, flags, budget);
7007 			if (!IS_ENABLED(CONFIG_PREEMPT_RT))
7008 				preempt_enable();
7009 			rcu_read_unlock();
7010 			cond_resched();
7011 			rcu_read_lock();
7012 			if (loop_end(loop_end_arg, start_time))
7013 				return;
7014 			goto restart;
7015 		}
7016 		cpu_relax();
7017 	}
7018 	if (napi_poll)
7019 		busy_poll_stop(napi, have_poll_lock, flags, budget);
7020 	if (!IS_ENABLED(CONFIG_PREEMPT_RT))
7021 		preempt_enable();
7022 }
7023 
7024 void napi_busy_loop_rcu(unsigned int napi_id,
7025 			bool (*loop_end)(void *, unsigned long),
7026 			void *loop_end_arg, bool prefer_busy_poll, u16 budget)
7027 {
7028 	unsigned flags = NAPI_F_END_ON_RESCHED;
7029 
7030 	if (prefer_busy_poll)
7031 		flags |= NAPI_F_PREFER_BUSY_POLL;
7032 
7033 	__napi_busy_loop(napi_id, loop_end, loop_end_arg, flags, budget);
7034 }
7035 
7036 void napi_busy_loop(unsigned int napi_id,
7037 		    bool (*loop_end)(void *, unsigned long),
7038 		    void *loop_end_arg, bool prefer_busy_poll, u16 budget)
7039 {
7040 	unsigned flags = prefer_busy_poll ? NAPI_F_PREFER_BUSY_POLL : 0;
7041 
7042 	rcu_read_lock();
7043 	__napi_busy_loop(napi_id, loop_end, loop_end_arg, flags, budget);
7044 	rcu_read_unlock();
7045 }
7046 EXPORT_SYMBOL(napi_busy_loop);
7047 
7048 void napi_suspend_irqs(unsigned int napi_id)
7049 {
7050 	struct napi_struct *napi;
7051 
7052 	rcu_read_lock();
7053 	napi = napi_by_id(napi_id);
7054 	if (napi) {
7055 		unsigned long timeout = napi_get_irq_suspend_timeout(napi);
7056 
7057 		if (timeout)
7058 			hrtimer_start(&napi->timer, ns_to_ktime(timeout),
7059 				      HRTIMER_MODE_REL_PINNED);
7060 	}
7061 	rcu_read_unlock();
7062 }
7063 
7064 void napi_resume_irqs(unsigned int napi_id)
7065 {
7066 	struct napi_struct *napi;
7067 
7068 	rcu_read_lock();
7069 	napi = napi_by_id(napi_id);
7070 	if (napi) {
7071 		/* If irq_suspend_timeout is set to 0 between the call to
7072 		 * napi_suspend_irqs and now, the original value still
7073 		 * determines the safety timeout as intended and napi_watchdog
7074 		 * will resume irq processing.
7075 		 */
7076 		if (napi_get_irq_suspend_timeout(napi)) {
7077 			local_bh_disable();
7078 			napi_schedule(napi);
7079 			local_bh_enable();
7080 		}
7081 	}
7082 	rcu_read_unlock();
7083 }
7084 
7085 #endif /* CONFIG_NET_RX_BUSY_POLL */
7086 
7087 static void __napi_hash_add_with_id(struct napi_struct *napi,
7088 				    unsigned int napi_id)
7089 {
7090 	napi->gro.cached_napi_id = napi_id;
7091 
7092 	WRITE_ONCE(napi->napi_id, napi_id);
7093 	hlist_add_head_rcu(&napi->napi_hash_node,
7094 			   &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
7095 }
7096 
7097 static void napi_hash_add_with_id(struct napi_struct *napi,
7098 				  unsigned int napi_id)
7099 {
7100 	unsigned long flags;
7101 
7102 	spin_lock_irqsave(&napi_hash_lock, flags);
7103 	WARN_ON_ONCE(napi_by_id(napi_id));
7104 	__napi_hash_add_with_id(napi, napi_id);
7105 	spin_unlock_irqrestore(&napi_hash_lock, flags);
7106 }
7107 
7108 static void napi_hash_add(struct napi_struct *napi)
7109 {
7110 	unsigned long flags;
7111 
7112 	if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state))
7113 		return;
7114 
7115 	spin_lock_irqsave(&napi_hash_lock, flags);
7116 
7117 	/* 0..NR_CPUS range is reserved for sender_cpu use */
7118 	do {
7119 		if (unlikely(!napi_id_valid(++napi_gen_id)))
7120 			napi_gen_id = MIN_NAPI_ID;
7121 	} while (napi_by_id(napi_gen_id));
7122 
7123 	__napi_hash_add_with_id(napi, napi_gen_id);
7124 
7125 	spin_unlock_irqrestore(&napi_hash_lock, flags);
7126 }
7127 
7128 /* Warning : caller is responsible to make sure rcu grace period
7129  * is respected before freeing memory containing @napi
7130  */
7131 static void napi_hash_del(struct napi_struct *napi)
7132 {
7133 	unsigned long flags;
7134 
7135 	spin_lock_irqsave(&napi_hash_lock, flags);
7136 
7137 	hlist_del_init_rcu(&napi->napi_hash_node);
7138 
7139 	spin_unlock_irqrestore(&napi_hash_lock, flags);
7140 }
7141 
7142 static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
7143 {
7144 	struct napi_struct *napi;
7145 
7146 	napi = container_of(timer, struct napi_struct, timer);
7147 
7148 	/* Note : we use a relaxed variant of napi_schedule_prep() not setting
7149 	 * NAPI_STATE_MISSED, since we do not react to a device IRQ.
7150 	 */
7151 	if (!napi_disable_pending(napi) &&
7152 	    !test_and_set_bit(NAPI_STATE_SCHED, &napi->state)) {
7153 		clear_bit(NAPI_STATE_PREFER_BUSY_POLL, &napi->state);
7154 		__napi_schedule_irqoff(napi);
7155 	}
7156 
7157 	return HRTIMER_NORESTART;
7158 }
7159 
7160 static void napi_stop_kthread(struct napi_struct *napi)
7161 {
7162 	unsigned long val, new;
7163 
7164 	/* Wait until the napi STATE_THREADED is unset. */
7165 	while (true) {
7166 		val = READ_ONCE(napi->state);
7167 
7168 		/* If napi kthread own this napi or the napi is idle,
7169 		 * STATE_THREADED can be unset here.
7170 		 */
7171 		if ((val & NAPIF_STATE_SCHED_THREADED) ||
7172 		    !(val & NAPIF_STATE_SCHED)) {
7173 			new = val & (~(NAPIF_STATE_THREADED |
7174 				       NAPIF_STATE_THREADED_BUSY_POLL));
7175 		} else {
7176 			msleep(20);
7177 			continue;
7178 		}
7179 
7180 		if (try_cmpxchg(&napi->state, &val, new))
7181 			break;
7182 	}
7183 
7184 	/* Once STATE_THREADED is unset, wait for SCHED_THREADED to be unset by
7185 	 * the kthread.
7186 	 */
7187 	while (true) {
7188 		if (!test_bit(NAPI_STATE_SCHED_THREADED, &napi->state))
7189 			break;
7190 
7191 		msleep(20);
7192 	}
7193 
7194 	kthread_stop(napi->thread);
7195 	napi->thread = NULL;
7196 }
7197 
7198 static void napi_set_threaded_state(struct napi_struct *napi,
7199 				    enum netdev_napi_threaded threaded_mode)
7200 {
7201 	bool threaded = threaded_mode != NETDEV_NAPI_THREADED_DISABLED;
7202 	bool busy_poll = threaded_mode == NETDEV_NAPI_THREADED_BUSY_POLL;
7203 
7204 	assign_bit(NAPI_STATE_THREADED, &napi->state, threaded);
7205 	assign_bit(NAPI_STATE_THREADED_BUSY_POLL, &napi->state, busy_poll);
7206 }
7207 
7208 int napi_set_threaded(struct napi_struct *napi,
7209 		      enum netdev_napi_threaded threaded)
7210 {
7211 	if (threaded) {
7212 		if (!napi->thread) {
7213 			int err = napi_kthread_create(napi);
7214 
7215 			if (err)
7216 				return err;
7217 		}
7218 	}
7219 
7220 	if (napi->config)
7221 		napi->config->threaded = threaded;
7222 
7223 	/* Setting/unsetting threaded mode on a napi might not immediately
7224 	 * take effect, if the current napi instance is actively being
7225 	 * polled. In this case, the switch between threaded mode and
7226 	 * softirq mode will happen in the next round of napi_schedule().
7227 	 * This should not cause hiccups/stalls to the live traffic.
7228 	 */
7229 	if (!threaded && napi->thread) {
7230 		napi_stop_kthread(napi);
7231 	} else {
7232 		/* Make sure kthread is created before THREADED bit is set. */
7233 		smp_mb__before_atomic();
7234 		napi_set_threaded_state(napi, threaded);
7235 	}
7236 
7237 	return 0;
7238 }
7239 
7240 int netif_set_threaded(struct net_device *dev,
7241 		       enum netdev_napi_threaded threaded)
7242 {
7243 	struct napi_struct *napi;
7244 	int i, err = 0;
7245 
7246 	netdev_assert_locked_or_invisible(dev);
7247 
7248 	if (threaded) {
7249 		list_for_each_entry(napi, &dev->napi_list, dev_list) {
7250 			if (!napi->thread) {
7251 				err = napi_kthread_create(napi);
7252 				if (err) {
7253 					threaded = NETDEV_NAPI_THREADED_DISABLED;
7254 					break;
7255 				}
7256 			}
7257 		}
7258 	}
7259 
7260 	WRITE_ONCE(dev->threaded, threaded);
7261 
7262 	/* The error should not occur as the kthreads are already created. */
7263 	list_for_each_entry(napi, &dev->napi_list, dev_list)
7264 		WARN_ON_ONCE(napi_set_threaded(napi, threaded));
7265 
7266 	/* Override the config for all NAPIs even if currently not listed */
7267 	for (i = 0; i < dev->num_napi_configs; i++)
7268 		dev->napi_config[i].threaded = threaded;
7269 
7270 	return err;
7271 }
7272 
7273 /**
7274  * netif_threaded_enable() - enable threaded NAPIs
7275  * @dev: net_device instance
7276  *
7277  * Enable threaded mode for the NAPI instances of the device. This may be useful
7278  * for devices where multiple NAPI instances get scheduled by a single
7279  * interrupt. Threaded NAPI allows moving the NAPI processing to cores other
7280  * than the core where IRQ is mapped.
7281  *
7282  * This function should be called before @dev is registered.
7283  */
7284 void netif_threaded_enable(struct net_device *dev)
7285 {
7286 	WARN_ON_ONCE(netif_set_threaded(dev, NETDEV_NAPI_THREADED_ENABLED));
7287 }
7288 EXPORT_SYMBOL(netif_threaded_enable);
7289 
7290 /**
7291  * netif_queue_set_napi - Associate queue with the napi
7292  * @dev: device to which NAPI and queue belong
7293  * @queue_index: Index of queue
7294  * @type: queue type as RX or TX
7295  * @napi: NAPI context, pass NULL to clear previously set NAPI
7296  *
7297  * Set queue with its corresponding napi context. This should be done after
7298  * registering the NAPI handler for the queue-vector and the queues have been
7299  * mapped to the corresponding interrupt vector.
7300  */
7301 void netif_queue_set_napi(struct net_device *dev, unsigned int queue_index,
7302 			  enum netdev_queue_type type, struct napi_struct *napi)
7303 {
7304 	struct netdev_rx_queue *rxq;
7305 	struct netdev_queue *txq;
7306 
7307 	if (WARN_ON_ONCE(napi && !napi->dev))
7308 		return;
7309 	netdev_assert_locked_ops_compat_or_invisible(dev);
7310 
7311 	switch (type) {
7312 	case NETDEV_QUEUE_TYPE_RX:
7313 		rxq = __netif_get_rx_queue(dev, queue_index);
7314 		rxq->napi = napi;
7315 		return;
7316 	case NETDEV_QUEUE_TYPE_TX:
7317 		txq = netdev_get_tx_queue(dev, queue_index);
7318 		txq->napi = napi;
7319 		return;
7320 	default:
7321 		return;
7322 	}
7323 }
7324 EXPORT_SYMBOL(netif_queue_set_napi);
7325 
7326 static void
7327 netif_napi_irq_notify(struct irq_affinity_notify *notify,
7328 		      const cpumask_t *mask)
7329 {
7330 	struct napi_struct *napi =
7331 		container_of(notify, struct napi_struct, notify);
7332 #ifdef CONFIG_RFS_ACCEL
7333 	struct cpu_rmap *rmap = napi->dev->rx_cpu_rmap;
7334 	int err;
7335 #endif
7336 
7337 	if (napi->config && napi->dev->irq_affinity_auto)
7338 		cpumask_copy(&napi->config->affinity_mask, mask);
7339 
7340 #ifdef CONFIG_RFS_ACCEL
7341 	if (napi->dev->rx_cpu_rmap_auto) {
7342 		err = cpu_rmap_update(rmap, napi->napi_rmap_idx, mask);
7343 		if (err)
7344 			netdev_warn(napi->dev, "RMAP update failed (%d)\n",
7345 				    err);
7346 	}
7347 #endif
7348 }
7349 
7350 #ifdef CONFIG_RFS_ACCEL
7351 static void netif_napi_affinity_release(struct kref *ref)
7352 {
7353 	struct napi_struct *napi =
7354 		container_of(ref, struct napi_struct, notify.kref);
7355 	struct cpu_rmap *rmap = napi->dev->rx_cpu_rmap;
7356 
7357 	netdev_assert_locked(napi->dev);
7358 	WARN_ON(test_and_clear_bit(NAPI_STATE_HAS_NOTIFIER,
7359 				   &napi->state));
7360 
7361 	if (!napi->dev->rx_cpu_rmap_auto)
7362 		return;
7363 	rmap->obj[napi->napi_rmap_idx] = NULL;
7364 	napi->napi_rmap_idx = -1;
7365 	cpu_rmap_put(rmap);
7366 }
7367 
7368 int netif_enable_cpu_rmap(struct net_device *dev, unsigned int num_irqs)
7369 {
7370 	if (dev->rx_cpu_rmap_auto)
7371 		return 0;
7372 
7373 	dev->rx_cpu_rmap = alloc_irq_cpu_rmap(num_irqs);
7374 	if (!dev->rx_cpu_rmap)
7375 		return -ENOMEM;
7376 
7377 	dev->rx_cpu_rmap_auto = true;
7378 	return 0;
7379 }
7380 EXPORT_SYMBOL(netif_enable_cpu_rmap);
7381 
7382 static void netif_del_cpu_rmap(struct net_device *dev)
7383 {
7384 	struct cpu_rmap *rmap = dev->rx_cpu_rmap;
7385 
7386 	if (!dev->rx_cpu_rmap_auto)
7387 		return;
7388 
7389 	/* Free the rmap */
7390 	cpu_rmap_put(rmap);
7391 	dev->rx_cpu_rmap = NULL;
7392 	dev->rx_cpu_rmap_auto = false;
7393 }
7394 
7395 #else
7396 static void netif_napi_affinity_release(struct kref *ref)
7397 {
7398 }
7399 
7400 int netif_enable_cpu_rmap(struct net_device *dev, unsigned int num_irqs)
7401 {
7402 	return 0;
7403 }
7404 EXPORT_SYMBOL(netif_enable_cpu_rmap);
7405 
7406 static void netif_del_cpu_rmap(struct net_device *dev)
7407 {
7408 }
7409 #endif
7410 
7411 void netif_set_affinity_auto(struct net_device *dev)
7412 {
7413 	unsigned int i, maxqs, numa;
7414 
7415 	maxqs = max(dev->num_tx_queues, dev->num_rx_queues);
7416 	numa = dev_to_node(&dev->dev);
7417 
7418 	for (i = 0; i < maxqs; i++)
7419 		cpumask_set_cpu(cpumask_local_spread(i, numa),
7420 				&dev->napi_config[i].affinity_mask);
7421 
7422 	dev->irq_affinity_auto = true;
7423 }
7424 EXPORT_SYMBOL(netif_set_affinity_auto);
7425 
7426 void netif_napi_set_irq_locked(struct napi_struct *napi, int irq)
7427 {
7428 	int rc;
7429 
7430 	netdev_assert_locked_or_invisible(napi->dev);
7431 
7432 	if (napi->irq == irq)
7433 		return;
7434 
7435 	/* Remove existing resources */
7436 	if (test_and_clear_bit(NAPI_STATE_HAS_NOTIFIER, &napi->state))
7437 		irq_set_affinity_notifier(napi->irq, NULL);
7438 
7439 	napi->irq = irq;
7440 	if (irq < 0 ||
7441 	    (!napi->dev->rx_cpu_rmap_auto && !napi->dev->irq_affinity_auto))
7442 		return;
7443 
7444 	/* Abort for buggy drivers */
7445 	if (napi->dev->irq_affinity_auto && WARN_ON_ONCE(!napi->config))
7446 		return;
7447 
7448 #ifdef CONFIG_RFS_ACCEL
7449 	if (napi->dev->rx_cpu_rmap_auto) {
7450 		rc = cpu_rmap_add(napi->dev->rx_cpu_rmap, napi);
7451 		if (rc < 0)
7452 			return;
7453 
7454 		cpu_rmap_get(napi->dev->rx_cpu_rmap);
7455 		napi->napi_rmap_idx = rc;
7456 	}
7457 #endif
7458 
7459 	/* Use core IRQ notifier */
7460 	napi->notify.notify = netif_napi_irq_notify;
7461 	napi->notify.release = netif_napi_affinity_release;
7462 	rc = irq_set_affinity_notifier(irq, &napi->notify);
7463 	if (rc) {
7464 		netdev_warn(napi->dev, "Unable to set IRQ notifier (%d)\n",
7465 			    rc);
7466 		goto put_rmap;
7467 	}
7468 
7469 	set_bit(NAPI_STATE_HAS_NOTIFIER, &napi->state);
7470 	return;
7471 
7472 put_rmap:
7473 #ifdef CONFIG_RFS_ACCEL
7474 	if (napi->dev->rx_cpu_rmap_auto) {
7475 		napi->dev->rx_cpu_rmap->obj[napi->napi_rmap_idx] = NULL;
7476 		cpu_rmap_put(napi->dev->rx_cpu_rmap);
7477 		napi->napi_rmap_idx = -1;
7478 	}
7479 #endif
7480 	napi->notify.notify = NULL;
7481 	napi->notify.release = NULL;
7482 }
7483 EXPORT_SYMBOL(netif_napi_set_irq_locked);
7484 
7485 static void napi_restore_config(struct napi_struct *n)
7486 {
7487 	n->defer_hard_irqs = n->config->defer_hard_irqs;
7488 	n->gro_flush_timeout = n->config->gro_flush_timeout;
7489 	n->irq_suspend_timeout = n->config->irq_suspend_timeout;
7490 
7491 	if (n->dev->irq_affinity_auto &&
7492 	    test_bit(NAPI_STATE_HAS_NOTIFIER, &n->state))
7493 		irq_set_affinity(n->irq, &n->config->affinity_mask);
7494 
7495 	/* a NAPI ID might be stored in the config, if so use it. if not, use
7496 	 * napi_hash_add to generate one for us.
7497 	 */
7498 	if (n->config->napi_id) {
7499 		napi_hash_add_with_id(n, n->config->napi_id);
7500 	} else {
7501 		napi_hash_add(n);
7502 		n->config->napi_id = n->napi_id;
7503 	}
7504 
7505 	WARN_ON_ONCE(napi_set_threaded(n, n->config->threaded));
7506 }
7507 
7508 static void napi_save_config(struct napi_struct *n)
7509 {
7510 	n->config->defer_hard_irqs = n->defer_hard_irqs;
7511 	n->config->gro_flush_timeout = n->gro_flush_timeout;
7512 	n->config->irq_suspend_timeout = n->irq_suspend_timeout;
7513 	napi_hash_del(n);
7514 }
7515 
7516 /* Netlink wants the NAPI list to be sorted by ID, if adding a NAPI which will
7517  * inherit an existing ID try to insert it at the right position.
7518  */
7519 static void
7520 netif_napi_dev_list_add(struct net_device *dev, struct napi_struct *napi)
7521 {
7522 	unsigned int new_id, pos_id;
7523 	struct list_head *higher;
7524 	struct napi_struct *pos;
7525 
7526 	new_id = UINT_MAX;
7527 	if (napi->config && napi->config->napi_id)
7528 		new_id = napi->config->napi_id;
7529 
7530 	higher = &dev->napi_list;
7531 	list_for_each_entry(pos, &dev->napi_list, dev_list) {
7532 		if (napi_id_valid(pos->napi_id))
7533 			pos_id = pos->napi_id;
7534 		else if (pos->config)
7535 			pos_id = pos->config->napi_id;
7536 		else
7537 			pos_id = UINT_MAX;
7538 
7539 		if (pos_id <= new_id)
7540 			break;
7541 		higher = &pos->dev_list;
7542 	}
7543 	list_add_rcu(&napi->dev_list, higher); /* adds after higher */
7544 }
7545 
7546 /* Double check that napi_get_frags() allocates skbs with
7547  * skb->head being backed by slab, not a page fragment.
7548  * This is to make sure bug fixed in 3226b158e67c
7549  * ("net: avoid 32 x truesize under-estimation for tiny skbs")
7550  * does not accidentally come back.
7551  */
7552 static void napi_get_frags_check(struct napi_struct *napi)
7553 {
7554 	struct sk_buff *skb;
7555 
7556 	local_bh_disable();
7557 	skb = napi_get_frags(napi);
7558 	WARN_ON_ONCE(skb && skb->head_frag);
7559 	napi_free_frags(napi);
7560 	local_bh_enable();
7561 }
7562 
7563 void netif_napi_add_weight_locked(struct net_device *dev,
7564 				  struct napi_struct *napi,
7565 				  int (*poll)(struct napi_struct *, int),
7566 				  int weight)
7567 {
7568 	netdev_assert_locked(dev);
7569 	if (WARN_ON(test_and_set_bit(NAPI_STATE_LISTED, &napi->state)))
7570 		return;
7571 
7572 	INIT_LIST_HEAD(&napi->poll_list);
7573 	INIT_HLIST_NODE(&napi->napi_hash_node);
7574 	hrtimer_setup(&napi->timer, napi_watchdog, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
7575 	gro_init(&napi->gro);
7576 	napi->skb = NULL;
7577 	napi->poll = poll;
7578 	if (weight > NAPI_POLL_WEIGHT)
7579 		netdev_err_once(dev, "%s() called with weight %d\n", __func__,
7580 				weight);
7581 	napi->weight = weight;
7582 	napi->dev = dev;
7583 #ifdef CONFIG_NETPOLL
7584 	napi->poll_owner = -1;
7585 #endif
7586 	napi->list_owner = -1;
7587 	set_bit(NAPI_STATE_SCHED, &napi->state);
7588 	set_bit(NAPI_STATE_NPSVC, &napi->state);
7589 	netif_napi_dev_list_add(dev, napi);
7590 
7591 	/* default settings from sysfs are applied to all NAPIs. any per-NAPI
7592 	 * configuration will be loaded in napi_enable
7593 	 */
7594 	napi_set_defer_hard_irqs(napi, READ_ONCE(dev->napi_defer_hard_irqs));
7595 	napi_set_gro_flush_timeout(napi, READ_ONCE(dev->gro_flush_timeout));
7596 
7597 	napi_get_frags_check(napi);
7598 	/* Create kthread for this napi if dev->threaded is set.
7599 	 * Clear dev->threaded if kthread creation failed so that
7600 	 * threaded mode will not be enabled in napi_enable().
7601 	 */
7602 	if (napi_get_threaded_config(dev, napi))
7603 		if (napi_kthread_create(napi))
7604 			dev->threaded = NETDEV_NAPI_THREADED_DISABLED;
7605 	netif_napi_set_irq_locked(napi, -1);
7606 }
7607 EXPORT_SYMBOL(netif_napi_add_weight_locked);
7608 
7609 void napi_disable_locked(struct napi_struct *n)
7610 {
7611 	unsigned long val, new;
7612 
7613 	might_sleep();
7614 	netdev_assert_locked(n->dev);
7615 
7616 	set_bit(NAPI_STATE_DISABLE, &n->state);
7617 
7618 	val = READ_ONCE(n->state);
7619 	do {
7620 		while (val & (NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC)) {
7621 			usleep_range(20, 200);
7622 			val = READ_ONCE(n->state);
7623 		}
7624 
7625 		new = val | NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC;
7626 		new &= ~(NAPIF_STATE_THREADED |
7627 			 NAPIF_STATE_THREADED_BUSY_POLL |
7628 			 NAPIF_STATE_PREFER_BUSY_POLL);
7629 	} while (!try_cmpxchg(&n->state, &val, new));
7630 
7631 	hrtimer_cancel(&n->timer);
7632 
7633 	if (n->config)
7634 		napi_save_config(n);
7635 	else
7636 		napi_hash_del(n);
7637 
7638 	clear_bit(NAPI_STATE_DISABLE, &n->state);
7639 }
7640 EXPORT_SYMBOL(napi_disable_locked);
7641 
7642 /**
7643  * napi_disable() - prevent NAPI from scheduling
7644  * @n: NAPI context
7645  *
7646  * Stop NAPI from being scheduled on this context.
7647  * Waits till any outstanding processing completes.
7648  * Takes netdev_lock() for associated net_device.
7649  */
7650 void napi_disable(struct napi_struct *n)
7651 {
7652 	netdev_lock(n->dev);
7653 	napi_disable_locked(n);
7654 	netdev_unlock(n->dev);
7655 }
7656 EXPORT_SYMBOL(napi_disable);
7657 
7658 void napi_enable_locked(struct napi_struct *n)
7659 {
7660 	unsigned long new, val = READ_ONCE(n->state);
7661 
7662 	if (n->config)
7663 		napi_restore_config(n);
7664 	else
7665 		napi_hash_add(n);
7666 
7667 	do {
7668 		BUG_ON(!test_bit(NAPI_STATE_SCHED, &val));
7669 
7670 		new = val & ~(NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC);
7671 		if (n->dev->threaded && n->thread)
7672 			new |= NAPIF_STATE_THREADED;
7673 	} while (!try_cmpxchg(&n->state, &val, new));
7674 }
7675 EXPORT_SYMBOL(napi_enable_locked);
7676 
7677 /**
7678  * napi_enable() - enable NAPI scheduling
7679  * @n: NAPI context
7680  *
7681  * Enable scheduling of a NAPI instance.
7682  * Must be paired with napi_disable().
7683  * Takes netdev_lock() for associated net_device.
7684  */
7685 void napi_enable(struct napi_struct *n)
7686 {
7687 	netdev_lock(n->dev);
7688 	napi_enable_locked(n);
7689 	netdev_unlock(n->dev);
7690 }
7691 EXPORT_SYMBOL(napi_enable);
7692 
7693 /* Must be called in process context */
7694 void __netif_napi_del_locked(struct napi_struct *napi)
7695 {
7696 	netdev_assert_locked(napi->dev);
7697 
7698 	if (!test_and_clear_bit(NAPI_STATE_LISTED, &napi->state))
7699 		return;
7700 
7701 	/* Make sure NAPI is disabled (or was never enabled). */
7702 	WARN_ON(!test_bit(NAPI_STATE_SCHED, &napi->state));
7703 
7704 	if (test_and_clear_bit(NAPI_STATE_HAS_NOTIFIER, &napi->state))
7705 		irq_set_affinity_notifier(napi->irq, NULL);
7706 
7707 	if (napi->config) {
7708 		napi->index = -1;
7709 		napi->config = NULL;
7710 	}
7711 
7712 	list_del_rcu(&napi->dev_list);
7713 	napi_free_frags(napi);
7714 
7715 	gro_cleanup(&napi->gro);
7716 
7717 	if (napi->thread) {
7718 		kthread_stop(napi->thread);
7719 		napi->thread = NULL;
7720 	}
7721 }
7722 EXPORT_SYMBOL(__netif_napi_del_locked);
7723 
7724 static int __napi_poll(struct napi_struct *n, bool *repoll)
7725 {
7726 	int work, weight;
7727 
7728 	weight = n->weight;
7729 
7730 	/* This NAPI_STATE_SCHED test is for avoiding a race
7731 	 * with netpoll's poll_napi().  Only the entity which
7732 	 * obtains the lock and sees NAPI_STATE_SCHED set will
7733 	 * actually make the ->poll() call.  Therefore we avoid
7734 	 * accidentally calling ->poll() when NAPI is not scheduled.
7735 	 */
7736 	work = 0;
7737 	if (napi_is_scheduled(n)) {
7738 		work = n->poll(n, weight);
7739 		trace_napi_poll(n, work, weight);
7740 
7741 		xdp_do_check_flushed(n);
7742 	}
7743 
7744 	if (unlikely(work > weight))
7745 		netdev_err_once(n->dev, "NAPI poll function %pS returned %d, exceeding its budget of %d.\n",
7746 				n->poll, work, weight);
7747 
7748 	if (likely(work < weight))
7749 		return work;
7750 
7751 	/* Drivers must not modify the NAPI state if they
7752 	 * consume the entire weight.  In such cases this code
7753 	 * still "owns" the NAPI instance and therefore can
7754 	 * move the instance around on the list at-will.
7755 	 */
7756 	if (unlikely(napi_disable_pending(n))) {
7757 		napi_complete(n);
7758 		return work;
7759 	}
7760 
7761 	/* The NAPI context has more processing work, but busy-polling
7762 	 * is preferred. Exit early.
7763 	 */
7764 	if (napi_prefer_busy_poll(n)) {
7765 		if (napi_complete_done(n, work)) {
7766 			/* If timeout is not set, we need to make sure
7767 			 * that the NAPI is re-scheduled.
7768 			 */
7769 			napi_schedule(n);
7770 		}
7771 		return work;
7772 	}
7773 
7774 	/* Flush too old packets. If HZ < 1000, flush all packets */
7775 	gro_flush_normal(&n->gro, HZ >= 1000);
7776 
7777 	/* Some drivers may have called napi_schedule
7778 	 * prior to exhausting their budget.
7779 	 */
7780 	if (unlikely(!list_empty(&n->poll_list))) {
7781 		pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
7782 			     n->dev ? n->dev->name : "backlog");
7783 		return work;
7784 	}
7785 
7786 	*repoll = true;
7787 
7788 	return work;
7789 }
7790 
7791 static int napi_poll(struct napi_struct *n, struct list_head *repoll)
7792 {
7793 	bool do_repoll = false;
7794 	void *have;
7795 	int work;
7796 
7797 	list_del_init(&n->poll_list);
7798 
7799 	have = netpoll_poll_lock(n);
7800 
7801 	work = __napi_poll(n, &do_repoll);
7802 
7803 	if (do_repoll) {
7804 #if defined(CONFIG_DEBUG_NET)
7805 		if (unlikely(!napi_is_scheduled(n)))
7806 			pr_crit("repoll requested for device %s %ps but napi is not scheduled.\n",
7807 				n->dev->name, n->poll);
7808 #endif
7809 		list_add_tail(&n->poll_list, repoll);
7810 	}
7811 	netpoll_poll_unlock(have);
7812 
7813 	return work;
7814 }
7815 
7816 static int napi_thread_wait(struct napi_struct *napi)
7817 {
7818 	set_current_state(TASK_INTERRUPTIBLE);
7819 
7820 	while (!kthread_should_stop()) {
7821 		/* Testing SCHED_THREADED bit here to make sure the current
7822 		 * kthread owns this napi and could poll on this napi.
7823 		 * Testing SCHED bit is not enough because SCHED bit might be
7824 		 * set by some other busy poll thread or by napi_disable().
7825 		 */
7826 		if (test_bit(NAPI_STATE_SCHED_THREADED, &napi->state)) {
7827 			WARN_ON(!list_empty(&napi->poll_list));
7828 			__set_current_state(TASK_RUNNING);
7829 			return 0;
7830 		}
7831 
7832 		schedule();
7833 		set_current_state(TASK_INTERRUPTIBLE);
7834 	}
7835 	__set_current_state(TASK_RUNNING);
7836 
7837 	return -1;
7838 }
7839 
7840 static void napi_threaded_poll_loop(struct napi_struct *napi,
7841 				    unsigned long *busy_poll_last_qs)
7842 {
7843 	unsigned long last_qs = busy_poll_last_qs ? *busy_poll_last_qs : jiffies;
7844 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
7845 	struct softnet_data *sd;
7846 
7847 	for (;;) {
7848 		bool repoll = false;
7849 		void *have;
7850 
7851 		local_bh_disable();
7852 		bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
7853 
7854 		sd = this_cpu_ptr(&softnet_data);
7855 		sd->in_napi_threaded_poll = true;
7856 
7857 		have = netpoll_poll_lock(napi);
7858 		__napi_poll(napi, &repoll);
7859 		netpoll_poll_unlock(have);
7860 
7861 		sd->in_napi_threaded_poll = false;
7862 		barrier();
7863 
7864 		if (sd_has_rps_ipi_waiting(sd)) {
7865 			local_irq_disable();
7866 			net_rps_action_and_irq_enable(sd);
7867 		}
7868 		skb_defer_free_flush();
7869 		bpf_net_ctx_clear(bpf_net_ctx);
7870 
7871 		/* When busy poll is enabled, the old packets are not flushed in
7872 		 * napi_complete_done. So flush them here.
7873 		 */
7874 		if (busy_poll_last_qs)
7875 			gro_flush_normal(&napi->gro, HZ >= 1000);
7876 		local_bh_enable();
7877 
7878 		/* Call cond_resched here to avoid watchdog warnings. */
7879 		if (repoll || busy_poll_last_qs) {
7880 			rcu_softirq_qs_periodic(last_qs);
7881 			cond_resched();
7882 		}
7883 
7884 		if (!repoll)
7885 			break;
7886 	}
7887 
7888 	if (busy_poll_last_qs)
7889 		*busy_poll_last_qs = last_qs;
7890 }
7891 
7892 static int napi_threaded_poll(void *data)
7893 {
7894 	struct napi_struct *napi = data;
7895 	unsigned long last_qs = jiffies;
7896 	bool want_busy_poll;
7897 	bool in_busy_poll;
7898 	unsigned long val;
7899 
7900 	while (!napi_thread_wait(napi)) {
7901 		val = READ_ONCE(napi->state);
7902 
7903 		want_busy_poll = val & NAPIF_STATE_THREADED_BUSY_POLL;
7904 		in_busy_poll = val & NAPIF_STATE_IN_BUSY_POLL;
7905 
7906 		if (unlikely(val & NAPIF_STATE_DISABLE))
7907 			want_busy_poll = false;
7908 
7909 		if (want_busy_poll != in_busy_poll)
7910 			assign_bit(NAPI_STATE_IN_BUSY_POLL, &napi->state,
7911 				   want_busy_poll);
7912 
7913 		napi_threaded_poll_loop(napi, want_busy_poll ? &last_qs : NULL);
7914 	}
7915 
7916 	return 0;
7917 }
7918 
7919 static __latent_entropy void net_rx_action(void)
7920 {
7921 	struct softnet_data *sd = this_cpu_ptr(&softnet_data);
7922 	unsigned long time_limit = jiffies +
7923 		usecs_to_jiffies(READ_ONCE(net_hotdata.netdev_budget_usecs));
7924 	struct bpf_net_context __bpf_net_ctx, *bpf_net_ctx;
7925 	int budget = READ_ONCE(net_hotdata.netdev_budget);
7926 	LIST_HEAD(list);
7927 	LIST_HEAD(repoll);
7928 
7929 	bpf_net_ctx = bpf_net_ctx_set(&__bpf_net_ctx);
7930 start:
7931 	sd->in_net_rx_action = true;
7932 	local_irq_disable();
7933 	list_splice_init(&sd->poll_list, &list);
7934 	local_irq_enable();
7935 
7936 	for (;;) {
7937 		struct napi_struct *n;
7938 
7939 		skb_defer_free_flush();
7940 
7941 		if (list_empty(&list)) {
7942 			if (list_empty(&repoll)) {
7943 				sd->in_net_rx_action = false;
7944 				barrier();
7945 				/* We need to check if ____napi_schedule()
7946 				 * had refilled poll_list while
7947 				 * sd->in_net_rx_action was true.
7948 				 */
7949 				if (!list_empty(&sd->poll_list))
7950 					goto start;
7951 				if (!sd_has_rps_ipi_waiting(sd))
7952 					goto end;
7953 			}
7954 			break;
7955 		}
7956 
7957 		n = list_first_entry(&list, struct napi_struct, poll_list);
7958 		budget -= napi_poll(n, &repoll);
7959 
7960 		/* If softirq window is exhausted then punt.
7961 		 * Allow this to run for 2 jiffies since which will allow
7962 		 * an average latency of 1.5/HZ.
7963 		 */
7964 		if (unlikely(budget <= 0 ||
7965 			     time_after_eq(jiffies, time_limit))) {
7966 			/* Pairs with READ_ONCE() in softnet_seq_show() */
7967 			WRITE_ONCE(sd->time_squeeze, sd->time_squeeze + 1);
7968 			break;
7969 		}
7970 	}
7971 
7972 	local_irq_disable();
7973 
7974 	list_splice_tail_init(&sd->poll_list, &list);
7975 	list_splice_tail(&repoll, &list);
7976 	list_splice(&list, &sd->poll_list);
7977 	if (!list_empty(&sd->poll_list))
7978 		__raise_softirq_irqoff(NET_RX_SOFTIRQ);
7979 	else
7980 		sd->in_net_rx_action = false;
7981 
7982 	net_rps_action_and_irq_enable(sd);
7983 end:
7984 	bpf_net_ctx_clear(bpf_net_ctx);
7985 }
7986 
7987 struct netdev_adjacent {
7988 	struct net_device *dev;
7989 	netdevice_tracker dev_tracker;
7990 
7991 	/* upper master flag, there can only be one master device per list */
7992 	bool master;
7993 
7994 	/* lookup ignore flag */
7995 	bool ignore;
7996 
7997 	/* counter for the number of times this device was added to us */
7998 	u16 ref_nr;
7999 
8000 	/* private field for the users */
8001 	void *private;
8002 
8003 	struct list_head list;
8004 	struct rcu_head rcu;
8005 };
8006 
8007 static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
8008 						 struct list_head *adj_list)
8009 {
8010 	struct netdev_adjacent *adj;
8011 
8012 	list_for_each_entry(adj, adj_list, list) {
8013 		if (adj->dev == adj_dev)
8014 			return adj;
8015 	}
8016 	return NULL;
8017 }
8018 
8019 static int ____netdev_has_upper_dev(struct net_device *upper_dev,
8020 				    struct netdev_nested_priv *priv)
8021 {
8022 	struct net_device *dev = (struct net_device *)priv->data;
8023 
8024 	return upper_dev == dev;
8025 }
8026 
8027 /**
8028  * netdev_has_upper_dev - Check if device is linked to an upper device
8029  * @dev: device
8030  * @upper_dev: upper device to check
8031  *
8032  * Find out if a device is linked to specified upper device and return true
8033  * in case it is. Note that this checks only immediate upper device,
8034  * not through a complete stack of devices. The caller must hold the RTNL lock.
8035  */
8036 bool netdev_has_upper_dev(struct net_device *dev,
8037 			  struct net_device *upper_dev)
8038 {
8039 	struct netdev_nested_priv priv = {
8040 		.data = (void *)upper_dev,
8041 	};
8042 
8043 	ASSERT_RTNL();
8044 
8045 	return netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
8046 					     &priv);
8047 }
8048 EXPORT_SYMBOL(netdev_has_upper_dev);
8049 
8050 /**
8051  * netdev_has_upper_dev_all_rcu - Check if device is linked to an upper device
8052  * @dev: device
8053  * @upper_dev: upper device to check
8054  *
8055  * Find out if a device is linked to specified upper device and return true
8056  * in case it is. Note that this checks the entire upper device chain.
8057  * The caller must hold rcu lock.
8058  */
8059 
8060 bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
8061 				  struct net_device *upper_dev)
8062 {
8063 	struct netdev_nested_priv priv = {
8064 		.data = (void *)upper_dev,
8065 	};
8066 
8067 	return !!netdev_walk_all_upper_dev_rcu(dev, ____netdev_has_upper_dev,
8068 					       &priv);
8069 }
8070 EXPORT_SYMBOL(netdev_has_upper_dev_all_rcu);
8071 
8072 /**
8073  * netdev_has_any_upper_dev - Check if device is linked to some device
8074  * @dev: device
8075  *
8076  * Find out if a device is linked to an upper device and return true in case
8077  * it is. The caller must hold the RTNL lock.
8078  */
8079 bool netdev_has_any_upper_dev(struct net_device *dev)
8080 {
8081 	ASSERT_RTNL();
8082 
8083 	return !list_empty(&dev->adj_list.upper);
8084 }
8085 EXPORT_SYMBOL(netdev_has_any_upper_dev);
8086 
8087 /**
8088  * netdev_master_upper_dev_get - Get master upper device
8089  * @dev: device
8090  *
8091  * Find a master upper device and return pointer to it or NULL in case
8092  * it's not there. The caller must hold the RTNL lock.
8093  */
8094 struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
8095 {
8096 	struct netdev_adjacent *upper;
8097 
8098 	ASSERT_RTNL();
8099 
8100 	if (list_empty(&dev->adj_list.upper))
8101 		return NULL;
8102 
8103 	upper = list_first_entry(&dev->adj_list.upper,
8104 				 struct netdev_adjacent, list);
8105 	if (likely(upper->master))
8106 		return upper->dev;
8107 	return NULL;
8108 }
8109 EXPORT_SYMBOL(netdev_master_upper_dev_get);
8110 
8111 static struct net_device *__netdev_master_upper_dev_get(struct net_device *dev)
8112 {
8113 	struct netdev_adjacent *upper;
8114 
8115 	ASSERT_RTNL();
8116 
8117 	if (list_empty(&dev->adj_list.upper))
8118 		return NULL;
8119 
8120 	upper = list_first_entry(&dev->adj_list.upper,
8121 				 struct netdev_adjacent, list);
8122 	if (likely(upper->master) && !upper->ignore)
8123 		return upper->dev;
8124 	return NULL;
8125 }
8126 
8127 /**
8128  * netdev_has_any_lower_dev - Check if device is linked to some device
8129  * @dev: device
8130  *
8131  * Find out if a device is linked to a lower device and return true in case
8132  * it is. The caller must hold the RTNL lock.
8133  */
8134 static bool netdev_has_any_lower_dev(struct net_device *dev)
8135 {
8136 	ASSERT_RTNL();
8137 
8138 	return !list_empty(&dev->adj_list.lower);
8139 }
8140 
8141 void *netdev_adjacent_get_private(struct list_head *adj_list)
8142 {
8143 	struct netdev_adjacent *adj;
8144 
8145 	adj = list_entry(adj_list, struct netdev_adjacent, list);
8146 
8147 	return adj->private;
8148 }
8149 EXPORT_SYMBOL(netdev_adjacent_get_private);
8150 
8151 /**
8152  * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
8153  * @dev: device
8154  * @iter: list_head ** of the current position
8155  *
8156  * Gets the next device from the dev's upper list, starting from iter
8157  * position. The caller must hold RCU read lock.
8158  */
8159 struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
8160 						 struct list_head **iter)
8161 {
8162 	struct netdev_adjacent *upper;
8163 
8164 	WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_bh_held() &&
8165 		     !lockdep_rtnl_is_held());
8166 
8167 	upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
8168 
8169 	if (&upper->list == &dev->adj_list.upper)
8170 		return NULL;
8171 
8172 	*iter = &upper->list;
8173 
8174 	return upper->dev;
8175 }
8176 EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
8177 
8178 static struct net_device *__netdev_next_upper_dev(struct net_device *dev,
8179 						  struct list_head **iter,
8180 						  bool *ignore)
8181 {
8182 	struct netdev_adjacent *upper;
8183 
8184 	upper = list_entry((*iter)->next, struct netdev_adjacent, list);
8185 
8186 	if (&upper->list == &dev->adj_list.upper)
8187 		return NULL;
8188 
8189 	*iter = &upper->list;
8190 	*ignore = upper->ignore;
8191 
8192 	return upper->dev;
8193 }
8194 
8195 static struct net_device *netdev_next_upper_dev_rcu(struct net_device *dev,
8196 						    struct list_head **iter)
8197 {
8198 	struct netdev_adjacent *upper;
8199 
8200 	WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
8201 
8202 	upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
8203 
8204 	if (&upper->list == &dev->adj_list.upper)
8205 		return NULL;
8206 
8207 	*iter = &upper->list;
8208 
8209 	return upper->dev;
8210 }
8211 
8212 static int __netdev_walk_all_upper_dev(struct net_device *dev,
8213 				       int (*fn)(struct net_device *dev,
8214 					 struct netdev_nested_priv *priv),
8215 				       struct netdev_nested_priv *priv)
8216 {
8217 	struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
8218 	struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
8219 	int ret, cur = 0;
8220 	bool ignore;
8221 
8222 	now = dev;
8223 	iter = &dev->adj_list.upper;
8224 
8225 	while (1) {
8226 		if (now != dev) {
8227 			ret = fn(now, priv);
8228 			if (ret)
8229 				return ret;
8230 		}
8231 
8232 		next = NULL;
8233 		while (1) {
8234 			udev = __netdev_next_upper_dev(now, &iter, &ignore);
8235 			if (!udev)
8236 				break;
8237 			if (ignore)
8238 				continue;
8239 
8240 			next = udev;
8241 			niter = &udev->adj_list.upper;
8242 			dev_stack[cur] = now;
8243 			iter_stack[cur++] = iter;
8244 			break;
8245 		}
8246 
8247 		if (!next) {
8248 			if (!cur)
8249 				return 0;
8250 			next = dev_stack[--cur];
8251 			niter = iter_stack[cur];
8252 		}
8253 
8254 		now = next;
8255 		iter = niter;
8256 	}
8257 
8258 	return 0;
8259 }
8260 
8261 int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
8262 				  int (*fn)(struct net_device *dev,
8263 					    struct netdev_nested_priv *priv),
8264 				  struct netdev_nested_priv *priv)
8265 {
8266 	struct net_device *udev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
8267 	struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
8268 	int ret, cur = 0;
8269 
8270 	now = dev;
8271 	iter = &dev->adj_list.upper;
8272 
8273 	while (1) {
8274 		if (now != dev) {
8275 			ret = fn(now, priv);
8276 			if (ret)
8277 				return ret;
8278 		}
8279 
8280 		next = NULL;
8281 		while (1) {
8282 			udev = netdev_next_upper_dev_rcu(now, &iter);
8283 			if (!udev)
8284 				break;
8285 
8286 			next = udev;
8287 			niter = &udev->adj_list.upper;
8288 			dev_stack[cur] = now;
8289 			iter_stack[cur++] = iter;
8290 			break;
8291 		}
8292 
8293 		if (!next) {
8294 			if (!cur)
8295 				return 0;
8296 			next = dev_stack[--cur];
8297 			niter = iter_stack[cur];
8298 		}
8299 
8300 		now = next;
8301 		iter = niter;
8302 	}
8303 
8304 	return 0;
8305 }
8306 EXPORT_SYMBOL_GPL(netdev_walk_all_upper_dev_rcu);
8307 
8308 static bool __netdev_has_upper_dev(struct net_device *dev,
8309 				   struct net_device *upper_dev)
8310 {
8311 	struct netdev_nested_priv priv = {
8312 		.flags = 0,
8313 		.data = (void *)upper_dev,
8314 	};
8315 
8316 	ASSERT_RTNL();
8317 
8318 	return __netdev_walk_all_upper_dev(dev, ____netdev_has_upper_dev,
8319 					   &priv);
8320 }
8321 
8322 /**
8323  * netdev_lower_get_next_private - Get the next ->private from the
8324  *				   lower neighbour list
8325  * @dev: device
8326  * @iter: list_head ** of the current position
8327  *
8328  * Gets the next netdev_adjacent->private from the dev's lower neighbour
8329  * list, starting from iter position. The caller must hold either hold the
8330  * RTNL lock or its own locking that guarantees that the neighbour lower
8331  * list will remain unchanged.
8332  */
8333 void *netdev_lower_get_next_private(struct net_device *dev,
8334 				    struct list_head **iter)
8335 {
8336 	struct netdev_adjacent *lower;
8337 
8338 	lower = list_entry(*iter, struct netdev_adjacent, list);
8339 
8340 	if (&lower->list == &dev->adj_list.lower)
8341 		return NULL;
8342 
8343 	*iter = lower->list.next;
8344 
8345 	return lower->private;
8346 }
8347 EXPORT_SYMBOL(netdev_lower_get_next_private);
8348 
8349 /**
8350  * netdev_lower_get_next_private_rcu - Get the next ->private from the
8351  *				       lower neighbour list, RCU
8352  *				       variant
8353  * @dev: device
8354  * @iter: list_head ** of the current position
8355  *
8356  * Gets the next netdev_adjacent->private from the dev's lower neighbour
8357  * list, starting from iter position. The caller must hold RCU read lock.
8358  */
8359 void *netdev_lower_get_next_private_rcu(struct net_device *dev,
8360 					struct list_head **iter)
8361 {
8362 	struct netdev_adjacent *lower;
8363 
8364 	WARN_ON_ONCE(!rcu_read_lock_held() && !rcu_read_lock_bh_held());
8365 
8366 	lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
8367 
8368 	if (&lower->list == &dev->adj_list.lower)
8369 		return NULL;
8370 
8371 	*iter = &lower->list;
8372 
8373 	return lower->private;
8374 }
8375 EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
8376 
8377 /**
8378  * netdev_lower_get_next - Get the next device from the lower neighbour
8379  *                         list
8380  * @dev: device
8381  * @iter: list_head ** of the current position
8382  *
8383  * Gets the next netdev_adjacent from the dev's lower neighbour
8384  * list, starting from iter position. The caller must hold RTNL lock or
8385  * its own locking that guarantees that the neighbour lower
8386  * list will remain unchanged.
8387  */
8388 void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
8389 {
8390 	struct netdev_adjacent *lower;
8391 
8392 	lower = list_entry(*iter, struct netdev_adjacent, list);
8393 
8394 	if (&lower->list == &dev->adj_list.lower)
8395 		return NULL;
8396 
8397 	*iter = lower->list.next;
8398 
8399 	return lower->dev;
8400 }
8401 EXPORT_SYMBOL(netdev_lower_get_next);
8402 
8403 static struct net_device *netdev_next_lower_dev(struct net_device *dev,
8404 						struct list_head **iter)
8405 {
8406 	struct netdev_adjacent *lower;
8407 
8408 	lower = list_entry((*iter)->next, struct netdev_adjacent, list);
8409 
8410 	if (&lower->list == &dev->adj_list.lower)
8411 		return NULL;
8412 
8413 	*iter = &lower->list;
8414 
8415 	return lower->dev;
8416 }
8417 
8418 static struct net_device *__netdev_next_lower_dev(struct net_device *dev,
8419 						  struct list_head **iter,
8420 						  bool *ignore)
8421 {
8422 	struct netdev_adjacent *lower;
8423 
8424 	lower = list_entry((*iter)->next, struct netdev_adjacent, list);
8425 
8426 	if (&lower->list == &dev->adj_list.lower)
8427 		return NULL;
8428 
8429 	*iter = &lower->list;
8430 	*ignore = lower->ignore;
8431 
8432 	return lower->dev;
8433 }
8434 
8435 int netdev_walk_all_lower_dev(struct net_device *dev,
8436 			      int (*fn)(struct net_device *dev,
8437 					struct netdev_nested_priv *priv),
8438 			      struct netdev_nested_priv *priv)
8439 {
8440 	struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
8441 	struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
8442 	int ret, cur = 0;
8443 
8444 	now = dev;
8445 	iter = &dev->adj_list.lower;
8446 
8447 	while (1) {
8448 		if (now != dev) {
8449 			ret = fn(now, priv);
8450 			if (ret)
8451 				return ret;
8452 		}
8453 
8454 		next = NULL;
8455 		while (1) {
8456 			ldev = netdev_next_lower_dev(now, &iter);
8457 			if (!ldev)
8458 				break;
8459 
8460 			next = ldev;
8461 			niter = &ldev->adj_list.lower;
8462 			dev_stack[cur] = now;
8463 			iter_stack[cur++] = iter;
8464 			break;
8465 		}
8466 
8467 		if (!next) {
8468 			if (!cur)
8469 				return 0;
8470 			next = dev_stack[--cur];
8471 			niter = iter_stack[cur];
8472 		}
8473 
8474 		now = next;
8475 		iter = niter;
8476 	}
8477 
8478 	return 0;
8479 }
8480 EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev);
8481 
8482 static int __netdev_walk_all_lower_dev(struct net_device *dev,
8483 				       int (*fn)(struct net_device *dev,
8484 					 struct netdev_nested_priv *priv),
8485 				       struct netdev_nested_priv *priv)
8486 {
8487 	struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
8488 	struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
8489 	int ret, cur = 0;
8490 	bool ignore;
8491 
8492 	now = dev;
8493 	iter = &dev->adj_list.lower;
8494 
8495 	while (1) {
8496 		if (now != dev) {
8497 			ret = fn(now, priv);
8498 			if (ret)
8499 				return ret;
8500 		}
8501 
8502 		next = NULL;
8503 		while (1) {
8504 			ldev = __netdev_next_lower_dev(now, &iter, &ignore);
8505 			if (!ldev)
8506 				break;
8507 			if (ignore)
8508 				continue;
8509 
8510 			next = ldev;
8511 			niter = &ldev->adj_list.lower;
8512 			dev_stack[cur] = now;
8513 			iter_stack[cur++] = iter;
8514 			break;
8515 		}
8516 
8517 		if (!next) {
8518 			if (!cur)
8519 				return 0;
8520 			next = dev_stack[--cur];
8521 			niter = iter_stack[cur];
8522 		}
8523 
8524 		now = next;
8525 		iter = niter;
8526 	}
8527 
8528 	return 0;
8529 }
8530 
8531 struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
8532 					     struct list_head **iter)
8533 {
8534 	struct netdev_adjacent *lower;
8535 
8536 	lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
8537 	if (&lower->list == &dev->adj_list.lower)
8538 		return NULL;
8539 
8540 	*iter = &lower->list;
8541 
8542 	return lower->dev;
8543 }
8544 EXPORT_SYMBOL(netdev_next_lower_dev_rcu);
8545 
8546 static u8 __netdev_upper_depth(struct net_device *dev)
8547 {
8548 	struct net_device *udev;
8549 	struct list_head *iter;
8550 	u8 max_depth = 0;
8551 	bool ignore;
8552 
8553 	for (iter = &dev->adj_list.upper,
8554 	     udev = __netdev_next_upper_dev(dev, &iter, &ignore);
8555 	     udev;
8556 	     udev = __netdev_next_upper_dev(dev, &iter, &ignore)) {
8557 		if (ignore)
8558 			continue;
8559 		if (max_depth < udev->upper_level)
8560 			max_depth = udev->upper_level;
8561 	}
8562 
8563 	return max_depth;
8564 }
8565 
8566 static u8 __netdev_lower_depth(struct net_device *dev)
8567 {
8568 	struct net_device *ldev;
8569 	struct list_head *iter;
8570 	u8 max_depth = 0;
8571 	bool ignore;
8572 
8573 	for (iter = &dev->adj_list.lower,
8574 	     ldev = __netdev_next_lower_dev(dev, &iter, &ignore);
8575 	     ldev;
8576 	     ldev = __netdev_next_lower_dev(dev, &iter, &ignore)) {
8577 		if (ignore)
8578 			continue;
8579 		if (max_depth < ldev->lower_level)
8580 			max_depth = ldev->lower_level;
8581 	}
8582 
8583 	return max_depth;
8584 }
8585 
8586 static int __netdev_update_upper_level(struct net_device *dev,
8587 				       struct netdev_nested_priv *__unused)
8588 {
8589 	dev->upper_level = __netdev_upper_depth(dev) + 1;
8590 	return 0;
8591 }
8592 
8593 #ifdef CONFIG_LOCKDEP
8594 static LIST_HEAD(net_unlink_list);
8595 
8596 static void net_unlink_todo(struct net_device *dev)
8597 {
8598 	if (list_empty(&dev->unlink_list))
8599 		list_add_tail(&dev->unlink_list, &net_unlink_list);
8600 }
8601 #endif
8602 
8603 static int __netdev_update_lower_level(struct net_device *dev,
8604 				       struct netdev_nested_priv *priv)
8605 {
8606 	dev->lower_level = __netdev_lower_depth(dev) + 1;
8607 
8608 #ifdef CONFIG_LOCKDEP
8609 	if (!priv)
8610 		return 0;
8611 
8612 	if (priv->flags & NESTED_SYNC_IMM)
8613 		dev->nested_level = dev->lower_level - 1;
8614 	if (priv->flags & NESTED_SYNC_TODO)
8615 		net_unlink_todo(dev);
8616 #endif
8617 	return 0;
8618 }
8619 
8620 int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
8621 				  int (*fn)(struct net_device *dev,
8622 					    struct netdev_nested_priv *priv),
8623 				  struct netdev_nested_priv *priv)
8624 {
8625 	struct net_device *ldev, *next, *now, *dev_stack[MAX_NEST_DEV + 1];
8626 	struct list_head *niter, *iter, *iter_stack[MAX_NEST_DEV + 1];
8627 	int ret, cur = 0;
8628 
8629 	now = dev;
8630 	iter = &dev->adj_list.lower;
8631 
8632 	while (1) {
8633 		if (now != dev) {
8634 			ret = fn(now, priv);
8635 			if (ret)
8636 				return ret;
8637 		}
8638 
8639 		next = NULL;
8640 		while (1) {
8641 			ldev = netdev_next_lower_dev_rcu(now, &iter);
8642 			if (!ldev)
8643 				break;
8644 
8645 			next = ldev;
8646 			niter = &ldev->adj_list.lower;
8647 			dev_stack[cur] = now;
8648 			iter_stack[cur++] = iter;
8649 			break;
8650 		}
8651 
8652 		if (!next) {
8653 			if (!cur)
8654 				return 0;
8655 			next = dev_stack[--cur];
8656 			niter = iter_stack[cur];
8657 		}
8658 
8659 		now = next;
8660 		iter = niter;
8661 	}
8662 
8663 	return 0;
8664 }
8665 EXPORT_SYMBOL_GPL(netdev_walk_all_lower_dev_rcu);
8666 
8667 /**
8668  * netdev_lower_get_first_private_rcu - Get the first ->private from the
8669  *				       lower neighbour list, RCU
8670  *				       variant
8671  * @dev: device
8672  *
8673  * Gets the first netdev_adjacent->private from the dev's lower neighbour
8674  * list. The caller must hold RCU read lock.
8675  */
8676 void *netdev_lower_get_first_private_rcu(struct net_device *dev)
8677 {
8678 	struct netdev_adjacent *lower;
8679 
8680 	lower = list_first_or_null_rcu(&dev->adj_list.lower,
8681 			struct netdev_adjacent, list);
8682 	if (lower)
8683 		return lower->private;
8684 	return NULL;
8685 }
8686 EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
8687 
8688 /**
8689  * netdev_master_upper_dev_get_rcu - Get master upper device
8690  * @dev: device
8691  *
8692  * Find a master upper device and return pointer to it or NULL in case
8693  * it's not there. The caller must hold the RCU read lock.
8694  */
8695 struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
8696 {
8697 	struct netdev_adjacent *upper;
8698 
8699 	upper = list_first_or_null_rcu(&dev->adj_list.upper,
8700 				       struct netdev_adjacent, list);
8701 	if (upper && likely(upper->master))
8702 		return upper->dev;
8703 	return NULL;
8704 }
8705 EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
8706 
8707 static int netdev_adjacent_sysfs_add(struct net_device *dev,
8708 			      struct net_device *adj_dev,
8709 			      struct list_head *dev_list)
8710 {
8711 	char linkname[IFNAMSIZ+7];
8712 
8713 	sprintf(linkname, dev_list == &dev->adj_list.upper ?
8714 		"upper_%s" : "lower_%s", adj_dev->name);
8715 	return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
8716 				 linkname);
8717 }
8718 static void netdev_adjacent_sysfs_del(struct net_device *dev,
8719 			       char *name,
8720 			       struct list_head *dev_list)
8721 {
8722 	char linkname[IFNAMSIZ+7];
8723 
8724 	sprintf(linkname, dev_list == &dev->adj_list.upper ?
8725 		"upper_%s" : "lower_%s", name);
8726 	sysfs_remove_link(&(dev->dev.kobj), linkname);
8727 }
8728 
8729 static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
8730 						 struct net_device *adj_dev,
8731 						 struct list_head *dev_list)
8732 {
8733 	return (dev_list == &dev->adj_list.upper ||
8734 		dev_list == &dev->adj_list.lower) &&
8735 		net_eq(dev_net(dev), dev_net(adj_dev));
8736 }
8737 
8738 static int __netdev_adjacent_dev_insert(struct net_device *dev,
8739 					struct net_device *adj_dev,
8740 					struct list_head *dev_list,
8741 					void *private, bool master)
8742 {
8743 	struct netdev_adjacent *adj;
8744 	int ret;
8745 
8746 	adj = __netdev_find_adj(adj_dev, dev_list);
8747 
8748 	if (adj) {
8749 		adj->ref_nr += 1;
8750 		pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d\n",
8751 			 dev->name, adj_dev->name, adj->ref_nr);
8752 
8753 		return 0;
8754 	}
8755 
8756 	adj = kmalloc_obj(*adj);
8757 	if (!adj)
8758 		return -ENOMEM;
8759 
8760 	adj->dev = adj_dev;
8761 	adj->master = master;
8762 	adj->ref_nr = 1;
8763 	adj->private = private;
8764 	adj->ignore = false;
8765 	netdev_hold(adj_dev, &adj->dev_tracker, GFP_KERNEL);
8766 
8767 	pr_debug("Insert adjacency: dev %s adj_dev %s adj->ref_nr %d; dev_hold on %s\n",
8768 		 dev->name, adj_dev->name, adj->ref_nr, adj_dev->name);
8769 
8770 	if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
8771 		ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
8772 		if (ret)
8773 			goto free_adj;
8774 	}
8775 
8776 	/* Ensure that master link is always the first item in list. */
8777 	if (master) {
8778 		ret = sysfs_create_link(&(dev->dev.kobj),
8779 					&(adj_dev->dev.kobj), "master");
8780 		if (ret)
8781 			goto remove_symlinks;
8782 
8783 		list_add_rcu(&adj->list, dev_list);
8784 	} else {
8785 		list_add_tail_rcu(&adj->list, dev_list);
8786 	}
8787 
8788 	return 0;
8789 
8790 remove_symlinks:
8791 	if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
8792 		netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
8793 free_adj:
8794 	netdev_put(adj_dev, &adj->dev_tracker);
8795 	kfree(adj);
8796 
8797 	return ret;
8798 }
8799 
8800 static void __netdev_adjacent_dev_remove(struct net_device *dev,
8801 					 struct net_device *adj_dev,
8802 					 u16 ref_nr,
8803 					 struct list_head *dev_list)
8804 {
8805 	struct netdev_adjacent *adj;
8806 
8807 	pr_debug("Remove adjacency: dev %s adj_dev %s ref_nr %d\n",
8808 		 dev->name, adj_dev->name, ref_nr);
8809 
8810 	adj = __netdev_find_adj(adj_dev, dev_list);
8811 
8812 	if (!adj) {
8813 		pr_err("Adjacency does not exist for device %s from %s\n",
8814 		       dev->name, adj_dev->name);
8815 		WARN_ON(1);
8816 		return;
8817 	}
8818 
8819 	if (adj->ref_nr > ref_nr) {
8820 		pr_debug("adjacency: %s to %s ref_nr - %d = %d\n",
8821 			 dev->name, adj_dev->name, ref_nr,
8822 			 adj->ref_nr - ref_nr);
8823 		adj->ref_nr -= ref_nr;
8824 		return;
8825 	}
8826 
8827 	if (adj->master)
8828 		sysfs_remove_link(&(dev->dev.kobj), "master");
8829 
8830 	if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
8831 		netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
8832 
8833 	list_del_rcu(&adj->list);
8834 	pr_debug("adjacency: dev_put for %s, because link removed from %s to %s\n",
8835 		 adj_dev->name, dev->name, adj_dev->name);
8836 	netdev_put(adj_dev, &adj->dev_tracker);
8837 	kfree_rcu(adj, rcu);
8838 }
8839 
8840 static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
8841 					    struct net_device *upper_dev,
8842 					    struct list_head *up_list,
8843 					    struct list_head *down_list,
8844 					    void *private, bool master)
8845 {
8846 	int ret;
8847 
8848 	ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list,
8849 					   private, master);
8850 	if (ret)
8851 		return ret;
8852 
8853 	ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list,
8854 					   private, false);
8855 	if (ret) {
8856 		__netdev_adjacent_dev_remove(dev, upper_dev, 1, up_list);
8857 		return ret;
8858 	}
8859 
8860 	return 0;
8861 }
8862 
8863 static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
8864 					       struct net_device *upper_dev,
8865 					       u16 ref_nr,
8866 					       struct list_head *up_list,
8867 					       struct list_head *down_list)
8868 {
8869 	__netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
8870 	__netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
8871 }
8872 
8873 static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
8874 						struct net_device *upper_dev,
8875 						void *private, bool master)
8876 {
8877 	return __netdev_adjacent_dev_link_lists(dev, upper_dev,
8878 						&dev->adj_list.upper,
8879 						&upper_dev->adj_list.lower,
8880 						private, master);
8881 }
8882 
8883 static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
8884 						   struct net_device *upper_dev)
8885 {
8886 	__netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
8887 					   &dev->adj_list.upper,
8888 					   &upper_dev->adj_list.lower);
8889 }
8890 
8891 static int __netdev_upper_dev_link(struct net_device *dev,
8892 				   struct net_device *upper_dev, bool master,
8893 				   void *upper_priv, void *upper_info,
8894 				   struct netdev_nested_priv *priv,
8895 				   struct netlink_ext_ack *extack)
8896 {
8897 	struct netdev_notifier_changeupper_info changeupper_info = {
8898 		.info = {
8899 			.dev = dev,
8900 			.extack = extack,
8901 		},
8902 		.upper_dev = upper_dev,
8903 		.master = master,
8904 		.linking = true,
8905 		.upper_info = upper_info,
8906 	};
8907 	struct net_device *master_dev;
8908 	int ret = 0;
8909 
8910 	ASSERT_RTNL();
8911 
8912 	if (dev == upper_dev)
8913 		return -EBUSY;
8914 
8915 	/* To prevent loops, check if dev is not upper device to upper_dev. */
8916 	if (__netdev_has_upper_dev(upper_dev, dev))
8917 		return -EBUSY;
8918 
8919 	if ((dev->lower_level + upper_dev->upper_level) > MAX_NEST_DEV)
8920 		return -EMLINK;
8921 
8922 	if (!master) {
8923 		if (__netdev_has_upper_dev(dev, upper_dev))
8924 			return -EEXIST;
8925 	} else {
8926 		master_dev = __netdev_master_upper_dev_get(dev);
8927 		if (master_dev)
8928 			return master_dev == upper_dev ? -EEXIST : -EBUSY;
8929 	}
8930 
8931 	ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
8932 					    &changeupper_info.info);
8933 	ret = notifier_to_errno(ret);
8934 	if (ret)
8935 		return ret;
8936 
8937 	ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
8938 						   master);
8939 	if (ret)
8940 		return ret;
8941 
8942 	ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
8943 					    &changeupper_info.info);
8944 	ret = notifier_to_errno(ret);
8945 	if (ret)
8946 		goto rollback;
8947 
8948 	__netdev_update_upper_level(dev, NULL);
8949 	__netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
8950 
8951 	__netdev_update_lower_level(upper_dev, priv);
8952 	__netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
8953 				    priv);
8954 
8955 	return 0;
8956 
8957 rollback:
8958 	__netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
8959 
8960 	return ret;
8961 }
8962 
8963 /**
8964  * netdev_upper_dev_link - Add a link to the upper device
8965  * @dev: device
8966  * @upper_dev: new upper device
8967  * @extack: netlink extended ack
8968  *
8969  * Adds a link to device which is upper to this one. The caller must hold
8970  * the RTNL lock. On a failure a negative errno code is returned.
8971  * On success the reference counts are adjusted and the function
8972  * returns zero.
8973  */
8974 int netdev_upper_dev_link(struct net_device *dev,
8975 			  struct net_device *upper_dev,
8976 			  struct netlink_ext_ack *extack)
8977 {
8978 	struct netdev_nested_priv priv = {
8979 		.flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
8980 		.data = NULL,
8981 	};
8982 
8983 	return __netdev_upper_dev_link(dev, upper_dev, false,
8984 				       NULL, NULL, &priv, extack);
8985 }
8986 EXPORT_SYMBOL(netdev_upper_dev_link);
8987 
8988 /**
8989  * netdev_master_upper_dev_link - Add a master link to the upper device
8990  * @dev: device
8991  * @upper_dev: new upper device
8992  * @upper_priv: upper device private
8993  * @upper_info: upper info to be passed down via notifier
8994  * @extack: netlink extended ack
8995  *
8996  * Adds a link to device which is upper to this one. In this case, only
8997  * one master upper device can be linked, although other non-master devices
8998  * might be linked as well. The caller must hold the RTNL lock.
8999  * On a failure a negative errno code is returned. On success the reference
9000  * counts are adjusted and the function returns zero.
9001  */
9002 int netdev_master_upper_dev_link(struct net_device *dev,
9003 				 struct net_device *upper_dev,
9004 				 void *upper_priv, void *upper_info,
9005 				 struct netlink_ext_ack *extack)
9006 {
9007 	struct netdev_nested_priv priv = {
9008 		.flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
9009 		.data = NULL,
9010 	};
9011 
9012 	return __netdev_upper_dev_link(dev, upper_dev, true,
9013 				       upper_priv, upper_info, &priv, extack);
9014 }
9015 EXPORT_SYMBOL(netdev_master_upper_dev_link);
9016 
9017 static void __netdev_upper_dev_unlink(struct net_device *dev,
9018 				      struct net_device *upper_dev,
9019 				      struct netdev_nested_priv *priv)
9020 {
9021 	struct netdev_notifier_changeupper_info changeupper_info = {
9022 		.info = {
9023 			.dev = dev,
9024 		},
9025 		.upper_dev = upper_dev,
9026 		.linking = false,
9027 	};
9028 
9029 	ASSERT_RTNL();
9030 
9031 	changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
9032 
9033 	call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER,
9034 				      &changeupper_info.info);
9035 
9036 	__netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
9037 
9038 	call_netdevice_notifiers_info(NETDEV_CHANGEUPPER,
9039 				      &changeupper_info.info);
9040 
9041 	__netdev_update_upper_level(dev, NULL);
9042 	__netdev_walk_all_lower_dev(dev, __netdev_update_upper_level, NULL);
9043 
9044 	__netdev_update_lower_level(upper_dev, priv);
9045 	__netdev_walk_all_upper_dev(upper_dev, __netdev_update_lower_level,
9046 				    priv);
9047 }
9048 
9049 /**
9050  * netdev_upper_dev_unlink - Removes a link to upper device
9051  * @dev: device
9052  * @upper_dev: new upper device
9053  *
9054  * Removes a link to device which is upper to this one. The caller must hold
9055  * the RTNL lock.
9056  */
9057 void netdev_upper_dev_unlink(struct net_device *dev,
9058 			     struct net_device *upper_dev)
9059 {
9060 	struct netdev_nested_priv priv = {
9061 		.flags = NESTED_SYNC_TODO,
9062 		.data = NULL,
9063 	};
9064 
9065 	__netdev_upper_dev_unlink(dev, upper_dev, &priv);
9066 }
9067 EXPORT_SYMBOL(netdev_upper_dev_unlink);
9068 
9069 static void __netdev_adjacent_dev_set(struct net_device *upper_dev,
9070 				      struct net_device *lower_dev,
9071 				      bool val)
9072 {
9073 	struct netdev_adjacent *adj;
9074 
9075 	adj = __netdev_find_adj(lower_dev, &upper_dev->adj_list.lower);
9076 	if (adj)
9077 		adj->ignore = val;
9078 
9079 	adj = __netdev_find_adj(upper_dev, &lower_dev->adj_list.upper);
9080 	if (adj)
9081 		adj->ignore = val;
9082 }
9083 
9084 static void netdev_adjacent_dev_disable(struct net_device *upper_dev,
9085 					struct net_device *lower_dev)
9086 {
9087 	__netdev_adjacent_dev_set(upper_dev, lower_dev, true);
9088 }
9089 
9090 static void netdev_adjacent_dev_enable(struct net_device *upper_dev,
9091 				       struct net_device *lower_dev)
9092 {
9093 	__netdev_adjacent_dev_set(upper_dev, lower_dev, false);
9094 }
9095 
9096 int netdev_adjacent_change_prepare(struct net_device *old_dev,
9097 				   struct net_device *new_dev,
9098 				   struct net_device *dev,
9099 				   struct netlink_ext_ack *extack)
9100 {
9101 	struct netdev_nested_priv priv = {
9102 		.flags = 0,
9103 		.data = NULL,
9104 	};
9105 	int err;
9106 
9107 	if (!new_dev)
9108 		return 0;
9109 
9110 	if (old_dev && new_dev != old_dev)
9111 		netdev_adjacent_dev_disable(dev, old_dev);
9112 	err = __netdev_upper_dev_link(new_dev, dev, false, NULL, NULL, &priv,
9113 				      extack);
9114 	if (err) {
9115 		if (old_dev && new_dev != old_dev)
9116 			netdev_adjacent_dev_enable(dev, old_dev);
9117 		return err;
9118 	}
9119 
9120 	return 0;
9121 }
9122 EXPORT_SYMBOL(netdev_adjacent_change_prepare);
9123 
9124 void netdev_adjacent_change_commit(struct net_device *old_dev,
9125 				   struct net_device *new_dev,
9126 				   struct net_device *dev)
9127 {
9128 	struct netdev_nested_priv priv = {
9129 		.flags = NESTED_SYNC_IMM | NESTED_SYNC_TODO,
9130 		.data = NULL,
9131 	};
9132 
9133 	if (!new_dev || !old_dev)
9134 		return;
9135 
9136 	if (new_dev == old_dev)
9137 		return;
9138 
9139 	netdev_adjacent_dev_enable(dev, old_dev);
9140 	__netdev_upper_dev_unlink(old_dev, dev, &priv);
9141 }
9142 EXPORT_SYMBOL(netdev_adjacent_change_commit);
9143 
9144 void netdev_adjacent_change_abort(struct net_device *old_dev,
9145 				  struct net_device *new_dev,
9146 				  struct net_device *dev)
9147 {
9148 	struct netdev_nested_priv priv = {
9149 		.flags = 0,
9150 		.data = NULL,
9151 	};
9152 
9153 	if (!new_dev)
9154 		return;
9155 
9156 	if (old_dev && new_dev != old_dev)
9157 		netdev_adjacent_dev_enable(dev, old_dev);
9158 
9159 	__netdev_upper_dev_unlink(new_dev, dev, &priv);
9160 }
9161 EXPORT_SYMBOL(netdev_adjacent_change_abort);
9162 
9163 /**
9164  * netdev_bonding_info_change - Dispatch event about slave change
9165  * @dev: device
9166  * @bonding_info: info to dispatch
9167  *
9168  * Send NETDEV_BONDING_INFO to netdev notifiers with info.
9169  * The caller must hold the RTNL lock.
9170  */
9171 void netdev_bonding_info_change(struct net_device *dev,
9172 				struct netdev_bonding_info *bonding_info)
9173 {
9174 	struct netdev_notifier_bonding_info info = {
9175 		.info.dev = dev,
9176 	};
9177 
9178 	memcpy(&info.bonding_info, bonding_info,
9179 	       sizeof(struct netdev_bonding_info));
9180 	call_netdevice_notifiers_info(NETDEV_BONDING_INFO,
9181 				      &info.info);
9182 }
9183 EXPORT_SYMBOL(netdev_bonding_info_change);
9184 
9185 static int netdev_offload_xstats_enable_l3(struct net_device *dev,
9186 					   struct netlink_ext_ack *extack)
9187 {
9188 	struct netdev_notifier_offload_xstats_info info = {
9189 		.info.dev = dev,
9190 		.info.extack = extack,
9191 		.type = NETDEV_OFFLOAD_XSTATS_TYPE_L3,
9192 	};
9193 	int err;
9194 	int rc;
9195 
9196 	dev->offload_xstats_l3 = kzalloc_obj(*dev->offload_xstats_l3);
9197 	if (!dev->offload_xstats_l3)
9198 		return -ENOMEM;
9199 
9200 	rc = call_netdevice_notifiers_info_robust(NETDEV_OFFLOAD_XSTATS_ENABLE,
9201 						  NETDEV_OFFLOAD_XSTATS_DISABLE,
9202 						  &info.info);
9203 	err = notifier_to_errno(rc);
9204 	if (err)
9205 		goto free_stats;
9206 
9207 	return 0;
9208 
9209 free_stats:
9210 	kfree(dev->offload_xstats_l3);
9211 	dev->offload_xstats_l3 = NULL;
9212 	return err;
9213 }
9214 
9215 int netdev_offload_xstats_enable(struct net_device *dev,
9216 				 enum netdev_offload_xstats_type type,
9217 				 struct netlink_ext_ack *extack)
9218 {
9219 	ASSERT_RTNL();
9220 
9221 	if (netdev_offload_xstats_enabled(dev, type))
9222 		return -EALREADY;
9223 
9224 	switch (type) {
9225 	case NETDEV_OFFLOAD_XSTATS_TYPE_L3:
9226 		return netdev_offload_xstats_enable_l3(dev, extack);
9227 	}
9228 
9229 	WARN_ON(1);
9230 	return -EINVAL;
9231 }
9232 EXPORT_SYMBOL(netdev_offload_xstats_enable);
9233 
9234 static void netdev_offload_xstats_disable_l3(struct net_device *dev)
9235 {
9236 	struct netdev_notifier_offload_xstats_info info = {
9237 		.info.dev = dev,
9238 		.type = NETDEV_OFFLOAD_XSTATS_TYPE_L3,
9239 	};
9240 
9241 	call_netdevice_notifiers_info(NETDEV_OFFLOAD_XSTATS_DISABLE,
9242 				      &info.info);
9243 	kfree(dev->offload_xstats_l3);
9244 	dev->offload_xstats_l3 = NULL;
9245 }
9246 
9247 int netdev_offload_xstats_disable(struct net_device *dev,
9248 				  enum netdev_offload_xstats_type type)
9249 {
9250 	ASSERT_RTNL();
9251 
9252 	if (!netdev_offload_xstats_enabled(dev, type))
9253 		return -EALREADY;
9254 
9255 	switch (type) {
9256 	case NETDEV_OFFLOAD_XSTATS_TYPE_L3:
9257 		netdev_offload_xstats_disable_l3(dev);
9258 		return 0;
9259 	}
9260 
9261 	WARN_ON(1);
9262 	return -EINVAL;
9263 }
9264 EXPORT_SYMBOL(netdev_offload_xstats_disable);
9265 
9266 static void netdev_offload_xstats_disable_all(struct net_device *dev)
9267 {
9268 	netdev_offload_xstats_disable(dev, NETDEV_OFFLOAD_XSTATS_TYPE_L3);
9269 }
9270 
9271 static struct rtnl_hw_stats64 *
9272 netdev_offload_xstats_get_ptr(const struct net_device *dev,
9273 			      enum netdev_offload_xstats_type type)
9274 {
9275 	switch (type) {
9276 	case NETDEV_OFFLOAD_XSTATS_TYPE_L3:
9277 		return dev->offload_xstats_l3;
9278 	}
9279 
9280 	WARN_ON(1);
9281 	return NULL;
9282 }
9283 
9284 bool netdev_offload_xstats_enabled(const struct net_device *dev,
9285 				   enum netdev_offload_xstats_type type)
9286 {
9287 	ASSERT_RTNL();
9288 
9289 	return netdev_offload_xstats_get_ptr(dev, type);
9290 }
9291 EXPORT_SYMBOL(netdev_offload_xstats_enabled);
9292 
9293 struct netdev_notifier_offload_xstats_ru {
9294 	bool used;
9295 };
9296 
9297 struct netdev_notifier_offload_xstats_rd {
9298 	struct rtnl_hw_stats64 stats;
9299 	bool used;
9300 };
9301 
9302 static void netdev_hw_stats64_add(struct rtnl_hw_stats64 *dest,
9303 				  const struct rtnl_hw_stats64 *src)
9304 {
9305 	dest->rx_packets	  += src->rx_packets;
9306 	dest->tx_packets	  += src->tx_packets;
9307 	dest->rx_bytes		  += src->rx_bytes;
9308 	dest->tx_bytes		  += src->tx_bytes;
9309 	dest->rx_errors		  += src->rx_errors;
9310 	dest->tx_errors		  += src->tx_errors;
9311 	dest->rx_dropped	  += src->rx_dropped;
9312 	dest->tx_dropped	  += src->tx_dropped;
9313 	dest->multicast		  += src->multicast;
9314 }
9315 
9316 static int netdev_offload_xstats_get_used(struct net_device *dev,
9317 					  enum netdev_offload_xstats_type type,
9318 					  bool *p_used,
9319 					  struct netlink_ext_ack *extack)
9320 {
9321 	struct netdev_notifier_offload_xstats_ru report_used = {};
9322 	struct netdev_notifier_offload_xstats_info info = {
9323 		.info.dev = dev,
9324 		.info.extack = extack,
9325 		.type = type,
9326 		.report_used = &report_used,
9327 	};
9328 	int rc;
9329 
9330 	WARN_ON(!netdev_offload_xstats_enabled(dev, type));
9331 	rc = call_netdevice_notifiers_info(NETDEV_OFFLOAD_XSTATS_REPORT_USED,
9332 					   &info.info);
9333 	*p_used = report_used.used;
9334 	return notifier_to_errno(rc);
9335 }
9336 
9337 static int netdev_offload_xstats_get_stats(struct net_device *dev,
9338 					   enum netdev_offload_xstats_type type,
9339 					   struct rtnl_hw_stats64 *p_stats,
9340 					   bool *p_used,
9341 					   struct netlink_ext_ack *extack)
9342 {
9343 	struct netdev_notifier_offload_xstats_rd report_delta = {};
9344 	struct netdev_notifier_offload_xstats_info info = {
9345 		.info.dev = dev,
9346 		.info.extack = extack,
9347 		.type = type,
9348 		.report_delta = &report_delta,
9349 	};
9350 	struct rtnl_hw_stats64 *stats;
9351 	int rc;
9352 
9353 	stats = netdev_offload_xstats_get_ptr(dev, type);
9354 	if (WARN_ON(!stats))
9355 		return -EINVAL;
9356 
9357 	rc = call_netdevice_notifiers_info(NETDEV_OFFLOAD_XSTATS_REPORT_DELTA,
9358 					   &info.info);
9359 
9360 	/* Cache whatever we got, even if there was an error, otherwise the
9361 	 * successful stats retrievals would get lost.
9362 	 */
9363 	netdev_hw_stats64_add(stats, &report_delta.stats);
9364 
9365 	if (p_stats)
9366 		*p_stats = *stats;
9367 	*p_used = report_delta.used;
9368 
9369 	return notifier_to_errno(rc);
9370 }
9371 
9372 int netdev_offload_xstats_get(struct net_device *dev,
9373 			      enum netdev_offload_xstats_type type,
9374 			      struct rtnl_hw_stats64 *p_stats, bool *p_used,
9375 			      struct netlink_ext_ack *extack)
9376 {
9377 	ASSERT_RTNL();
9378 
9379 	if (p_stats)
9380 		return netdev_offload_xstats_get_stats(dev, type, p_stats,
9381 						       p_used, extack);
9382 	else
9383 		return netdev_offload_xstats_get_used(dev, type, p_used,
9384 						      extack);
9385 }
9386 EXPORT_SYMBOL(netdev_offload_xstats_get);
9387 
9388 void
9389 netdev_offload_xstats_report_delta(struct netdev_notifier_offload_xstats_rd *report_delta,
9390 				   const struct rtnl_hw_stats64 *stats)
9391 {
9392 	report_delta->used = true;
9393 	netdev_hw_stats64_add(&report_delta->stats, stats);
9394 }
9395 EXPORT_SYMBOL(netdev_offload_xstats_report_delta);
9396 
9397 void
9398 netdev_offload_xstats_report_used(struct netdev_notifier_offload_xstats_ru *report_used)
9399 {
9400 	report_used->used = true;
9401 }
9402 EXPORT_SYMBOL(netdev_offload_xstats_report_used);
9403 
9404 void netdev_offload_xstats_push_delta(struct net_device *dev,
9405 				      enum netdev_offload_xstats_type type,
9406 				      const struct rtnl_hw_stats64 *p_stats)
9407 {
9408 	struct rtnl_hw_stats64 *stats;
9409 
9410 	ASSERT_RTNL();
9411 
9412 	stats = netdev_offload_xstats_get_ptr(dev, type);
9413 	if (WARN_ON(!stats))
9414 		return;
9415 
9416 	netdev_hw_stats64_add(stats, p_stats);
9417 }
9418 EXPORT_SYMBOL(netdev_offload_xstats_push_delta);
9419 
9420 /**
9421  * netdev_get_xmit_slave - Get the xmit slave of master device
9422  * @dev: device
9423  * @skb: The packet
9424  * @all_slaves: assume all the slaves are active
9425  *
9426  * The reference counters are not incremented so the caller must be
9427  * careful with locks. The caller must hold RCU lock.
9428  * %NULL is returned if no slave is found.
9429  */
9430 
9431 struct net_device *netdev_get_xmit_slave(struct net_device *dev,
9432 					 struct sk_buff *skb,
9433 					 bool all_slaves)
9434 {
9435 	const struct net_device_ops *ops = dev->netdev_ops;
9436 
9437 	if (!ops->ndo_get_xmit_slave)
9438 		return NULL;
9439 	return ops->ndo_get_xmit_slave(dev, skb, all_slaves);
9440 }
9441 EXPORT_SYMBOL(netdev_get_xmit_slave);
9442 
9443 static struct net_device *netdev_sk_get_lower_dev(struct net_device *dev,
9444 						  struct sock *sk)
9445 {
9446 	const struct net_device_ops *ops = dev->netdev_ops;
9447 
9448 	if (!ops->ndo_sk_get_lower_dev)
9449 		return NULL;
9450 	return ops->ndo_sk_get_lower_dev(dev, sk);
9451 }
9452 
9453 /**
9454  * netdev_sk_get_lowest_dev - Get the lowest device in chain given device and socket
9455  * @dev: device
9456  * @sk: the socket
9457  *
9458  * %NULL is returned if no lower device is found.
9459  */
9460 
9461 struct net_device *netdev_sk_get_lowest_dev(struct net_device *dev,
9462 					    struct sock *sk)
9463 {
9464 	struct net_device *lower;
9465 
9466 	lower = netdev_sk_get_lower_dev(dev, sk);
9467 	while (lower) {
9468 		dev = lower;
9469 		lower = netdev_sk_get_lower_dev(dev, sk);
9470 	}
9471 
9472 	return dev;
9473 }
9474 EXPORT_SYMBOL(netdev_sk_get_lowest_dev);
9475 
9476 static void netdev_adjacent_add_links(struct net_device *dev)
9477 {
9478 	struct netdev_adjacent *iter;
9479 
9480 	struct net *net = dev_net(dev);
9481 
9482 	list_for_each_entry(iter, &dev->adj_list.upper, list) {
9483 		if (!net_eq(net, dev_net(iter->dev)))
9484 			continue;
9485 		netdev_adjacent_sysfs_add(iter->dev, dev,
9486 					  &iter->dev->adj_list.lower);
9487 		netdev_adjacent_sysfs_add(dev, iter->dev,
9488 					  &dev->adj_list.upper);
9489 	}
9490 
9491 	list_for_each_entry(iter, &dev->adj_list.lower, list) {
9492 		if (!net_eq(net, dev_net(iter->dev)))
9493 			continue;
9494 		netdev_adjacent_sysfs_add(iter->dev, dev,
9495 					  &iter->dev->adj_list.upper);
9496 		netdev_adjacent_sysfs_add(dev, iter->dev,
9497 					  &dev->adj_list.lower);
9498 	}
9499 }
9500 
9501 static void netdev_adjacent_del_links(struct net_device *dev)
9502 {
9503 	struct netdev_adjacent *iter;
9504 
9505 	struct net *net = dev_net(dev);
9506 
9507 	list_for_each_entry(iter, &dev->adj_list.upper, list) {
9508 		if (!net_eq(net, dev_net(iter->dev)))
9509 			continue;
9510 		netdev_adjacent_sysfs_del(iter->dev, dev->name,
9511 					  &iter->dev->adj_list.lower);
9512 		netdev_adjacent_sysfs_del(dev, iter->dev->name,
9513 					  &dev->adj_list.upper);
9514 	}
9515 
9516 	list_for_each_entry(iter, &dev->adj_list.lower, list) {
9517 		if (!net_eq(net, dev_net(iter->dev)))
9518 			continue;
9519 		netdev_adjacent_sysfs_del(iter->dev, dev->name,
9520 					  &iter->dev->adj_list.upper);
9521 		netdev_adjacent_sysfs_del(dev, iter->dev->name,
9522 					  &dev->adj_list.lower);
9523 	}
9524 }
9525 
9526 void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
9527 {
9528 	struct netdev_adjacent *iter;
9529 
9530 	struct net *net = dev_net(dev);
9531 
9532 	list_for_each_entry(iter, &dev->adj_list.upper, list) {
9533 		if (!net_eq(net, dev_net(iter->dev)))
9534 			continue;
9535 		netdev_adjacent_sysfs_del(iter->dev, oldname,
9536 					  &iter->dev->adj_list.lower);
9537 		netdev_adjacent_sysfs_add(iter->dev, dev,
9538 					  &iter->dev->adj_list.lower);
9539 	}
9540 
9541 	list_for_each_entry(iter, &dev->adj_list.lower, list) {
9542 		if (!net_eq(net, dev_net(iter->dev)))
9543 			continue;
9544 		netdev_adjacent_sysfs_del(iter->dev, oldname,
9545 					  &iter->dev->adj_list.upper);
9546 		netdev_adjacent_sysfs_add(iter->dev, dev,
9547 					  &iter->dev->adj_list.upper);
9548 	}
9549 }
9550 
9551 void *netdev_lower_dev_get_private(struct net_device *dev,
9552 				   struct net_device *lower_dev)
9553 {
9554 	struct netdev_adjacent *lower;
9555 
9556 	if (!lower_dev)
9557 		return NULL;
9558 	lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
9559 	if (!lower)
9560 		return NULL;
9561 
9562 	return lower->private;
9563 }
9564 EXPORT_SYMBOL(netdev_lower_dev_get_private);
9565 
9566 
9567 /**
9568  * netdev_lower_state_changed - Dispatch event about lower device state change
9569  * @lower_dev: device
9570  * @lower_state_info: state to dispatch
9571  *
9572  * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
9573  * The caller must hold the RTNL lock.
9574  */
9575 void netdev_lower_state_changed(struct net_device *lower_dev,
9576 				void *lower_state_info)
9577 {
9578 	struct netdev_notifier_changelowerstate_info changelowerstate_info = {
9579 		.info.dev = lower_dev,
9580 	};
9581 
9582 	ASSERT_RTNL();
9583 	changelowerstate_info.lower_state_info = lower_state_info;
9584 	call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE,
9585 				      &changelowerstate_info.info);
9586 }
9587 EXPORT_SYMBOL(netdev_lower_state_changed);
9588 
9589 static void dev_change_rx_flags(struct net_device *dev, int flags)
9590 {
9591 	const struct net_device_ops *ops = dev->netdev_ops;
9592 
9593 	if (ops->ndo_change_rx_flags)
9594 		ops->ndo_change_rx_flags(dev, flags);
9595 }
9596 
9597 int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
9598 {
9599 	unsigned int old_flags = dev->flags;
9600 	unsigned int promiscuity, flags;
9601 	kuid_t uid;
9602 	kgid_t gid;
9603 
9604 	netdev_assert_locked_ops_compat(dev);
9605 
9606 	promiscuity = dev->promiscuity + inc;
9607 	if (promiscuity == 0) {
9608 		/*
9609 		 * Avoid overflow.
9610 		 * If inc causes overflow, untouch promisc and return error.
9611 		 */
9612 		if (unlikely(inc > 0)) {
9613 			netdev_warn(dev, "promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n");
9614 			return -EOVERFLOW;
9615 		}
9616 		flags = old_flags & ~IFF_PROMISC;
9617 	} else {
9618 		flags = old_flags | IFF_PROMISC;
9619 	}
9620 	WRITE_ONCE(dev->promiscuity, promiscuity);
9621 	if (flags != old_flags) {
9622 		WRITE_ONCE(dev->flags, flags);
9623 		netdev_info(dev, "%s promiscuous mode\n",
9624 			    dev->flags & IFF_PROMISC ? "entered" : "left");
9625 		if (audit_enabled) {
9626 			current_uid_gid(&uid, &gid);
9627 			audit_log(audit_context(), GFP_ATOMIC,
9628 				  AUDIT_ANOM_PROMISCUOUS,
9629 				  "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
9630 				  dev->name, (dev->flags & IFF_PROMISC),
9631 				  (old_flags & IFF_PROMISC),
9632 				  from_kuid(&init_user_ns, audit_get_loginuid(current)),
9633 				  from_kuid(&init_user_ns, uid),
9634 				  from_kgid(&init_user_ns, gid),
9635 				  audit_get_sessionid(current));
9636 		}
9637 
9638 		dev_change_rx_flags(dev, IFF_PROMISC);
9639 	}
9640 	if (notify)
9641 		__dev_notify_flags(dev, old_flags, IFF_PROMISC, 0, NULL);
9642 	return 0;
9643 }
9644 
9645 int netif_set_promiscuity(struct net_device *dev, int inc)
9646 {
9647 	unsigned int old_flags = dev->flags;
9648 	int err;
9649 
9650 	err = __dev_set_promiscuity(dev, inc, true);
9651 	if (err < 0)
9652 		return err;
9653 	if (dev->flags != old_flags)
9654 		dev_set_rx_mode(dev);
9655 	return err;
9656 }
9657 
9658 int netif_set_allmulti(struct net_device *dev, int inc, bool notify)
9659 {
9660 	unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
9661 	unsigned int allmulti, flags;
9662 
9663 	netdev_assert_locked_ops_compat(dev);
9664 
9665 	allmulti = dev->allmulti + inc;
9666 	if (allmulti == 0) {
9667 		/*
9668 		 * Avoid overflow.
9669 		 * If inc causes overflow, untouch allmulti and return error.
9670 		 */
9671 		if (unlikely(inc > 0)) {
9672 			netdev_warn(dev, "allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n");
9673 			return -EOVERFLOW;
9674 		}
9675 		flags = old_flags & ~IFF_ALLMULTI;
9676 	} else {
9677 		flags = old_flags | IFF_ALLMULTI;
9678 	}
9679 	WRITE_ONCE(dev->allmulti, allmulti);
9680 	if (flags != old_flags) {
9681 		WRITE_ONCE(dev->flags, flags);
9682 		netdev_info(dev, "%s allmulticast mode\n",
9683 			    dev->flags & IFF_ALLMULTI ? "entered" : "left");
9684 		dev_change_rx_flags(dev, IFF_ALLMULTI);
9685 		dev_set_rx_mode(dev);
9686 		if (notify)
9687 			__dev_notify_flags(dev, old_flags,
9688 					   dev->gflags ^ old_gflags, 0, NULL);
9689 	}
9690 	return 0;
9691 }
9692 
9693 
9694 /**
9695  * netif_get_flags() - get flags reported to userspace
9696  * @dev: device
9697  *
9698  * Get the combination of flag bits exported through APIs to userspace.
9699  */
9700 unsigned int netif_get_flags(const struct net_device *dev)
9701 {
9702 	unsigned int flags;
9703 
9704 	flags = (READ_ONCE(dev->flags) & ~(IFF_PROMISC |
9705 				IFF_ALLMULTI |
9706 				IFF_RUNNING |
9707 				IFF_LOWER_UP |
9708 				IFF_DORMANT)) |
9709 		(READ_ONCE(dev->gflags) & (IFF_PROMISC |
9710 				IFF_ALLMULTI));
9711 
9712 	if (netif_running(dev)) {
9713 		if (netif_oper_up(dev))
9714 			flags |= IFF_RUNNING;
9715 		if (netif_carrier_ok(dev))
9716 			flags |= IFF_LOWER_UP;
9717 		if (netif_dormant(dev))
9718 			flags |= IFF_DORMANT;
9719 	}
9720 
9721 	return flags;
9722 }
9723 EXPORT_SYMBOL(netif_get_flags);
9724 
9725 int __dev_change_flags(struct net_device *dev, unsigned int flags,
9726 		       struct netlink_ext_ack *extack)
9727 {
9728 	unsigned int old_flags = dev->flags;
9729 	int ret;
9730 
9731 	netdev_assert_locked_ops_compat(dev);
9732 
9733 	/*
9734 	 *	Set the flags on our device.
9735 	 */
9736 
9737 	dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
9738 			       IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
9739 			       IFF_AUTOMEDIA)) |
9740 		     (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
9741 				    IFF_ALLMULTI));
9742 
9743 	/*
9744 	 *	Load in the correct multicast list now the flags have changed.
9745 	 */
9746 
9747 	if ((old_flags ^ flags) & IFF_MULTICAST)
9748 		dev_change_rx_flags(dev, IFF_MULTICAST);
9749 
9750 	dev_set_rx_mode(dev);
9751 
9752 	/*
9753 	 *	Have we downed the interface. We handle IFF_UP ourselves
9754 	 *	according to user attempts to set it, rather than blindly
9755 	 *	setting it.
9756 	 */
9757 
9758 	ret = 0;
9759 	if ((old_flags ^ flags) & IFF_UP) {
9760 		if (old_flags & IFF_UP)
9761 			__dev_close(dev);
9762 		else
9763 			ret = __dev_open(dev, extack);
9764 	}
9765 
9766 	if ((flags ^ dev->gflags) & IFF_PROMISC) {
9767 		int inc = (flags & IFF_PROMISC) ? 1 : -1;
9768 		old_flags = dev->flags;
9769 
9770 		dev->gflags ^= IFF_PROMISC;
9771 
9772 		if (__dev_set_promiscuity(dev, inc, false) >= 0)
9773 			if (dev->flags != old_flags)
9774 				dev_set_rx_mode(dev);
9775 	}
9776 
9777 	/* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
9778 	 * is important. Some (broken) drivers set IFF_PROMISC, when
9779 	 * IFF_ALLMULTI is requested not asking us and not reporting.
9780 	 */
9781 	if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
9782 		int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
9783 
9784 		dev->gflags ^= IFF_ALLMULTI;
9785 		netif_set_allmulti(dev, inc, false);
9786 	}
9787 
9788 	return ret;
9789 }
9790 
9791 void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
9792 			unsigned int gchanges, u32 portid,
9793 			const struct nlmsghdr *nlh)
9794 {
9795 	unsigned int changes = dev->flags ^ old_flags;
9796 
9797 	netdev_assert_locked_ops_compat(dev);
9798 
9799 	if (gchanges)
9800 		rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC, portid, nlh);
9801 
9802 	if (changes & IFF_UP) {
9803 		if (dev->flags & IFF_UP)
9804 			call_netdevice_notifiers(NETDEV_UP, dev);
9805 		else
9806 			call_netdevice_notifiers(NETDEV_DOWN, dev);
9807 	}
9808 
9809 	if (dev->flags & IFF_UP &&
9810 	    (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
9811 		struct netdev_notifier_change_info change_info = {
9812 			.info = {
9813 				.dev = dev,
9814 			},
9815 			.flags_changed = changes,
9816 		};
9817 
9818 		call_netdevice_notifiers_info(NETDEV_CHANGE, &change_info.info);
9819 	}
9820 }
9821 
9822 int netif_change_flags(struct net_device *dev, unsigned int flags,
9823 		       struct netlink_ext_ack *extack)
9824 {
9825 	int ret;
9826 	unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
9827 
9828 	ret = __dev_change_flags(dev, flags, extack);
9829 	if (ret < 0)
9830 		return ret;
9831 
9832 	changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
9833 	__dev_notify_flags(dev, old_flags, changes, 0, NULL);
9834 	return ret;
9835 }
9836 EXPORT_SYMBOL(netif_change_flags);
9837 
9838 int __netif_set_mtu(struct net_device *dev, int new_mtu)
9839 {
9840 	const struct net_device_ops *ops = dev->netdev_ops;
9841 
9842 	if (ops->ndo_change_mtu)
9843 		return ops->ndo_change_mtu(dev, new_mtu);
9844 
9845 	/* Pairs with all the lockless reads of dev->mtu in the stack */
9846 	WRITE_ONCE(dev->mtu, new_mtu);
9847 	return 0;
9848 }
9849 EXPORT_SYMBOL_NS_GPL(__netif_set_mtu, "NETDEV_INTERNAL");
9850 
9851 int dev_validate_mtu(struct net_device *dev, int new_mtu,
9852 		     struct netlink_ext_ack *extack)
9853 {
9854 	/* MTU must be positive, and in range */
9855 	if (new_mtu < 0 || new_mtu < dev->min_mtu) {
9856 		NL_SET_ERR_MSG(extack, "mtu less than device minimum");
9857 		return -EINVAL;
9858 	}
9859 
9860 	if (dev->max_mtu > 0 && new_mtu > dev->max_mtu) {
9861 		NL_SET_ERR_MSG(extack, "mtu greater than device maximum");
9862 		return -EINVAL;
9863 	}
9864 	return 0;
9865 }
9866 
9867 /**
9868  * netif_set_mtu_ext() - Change maximum transfer unit
9869  * @dev: device
9870  * @new_mtu: new transfer unit
9871  * @extack: netlink extended ack
9872  *
9873  * Change the maximum transfer size of the network device.
9874  *
9875  * Return: 0 on success, -errno on failure.
9876  */
9877 int netif_set_mtu_ext(struct net_device *dev, int new_mtu,
9878 		      struct netlink_ext_ack *extack)
9879 {
9880 	int err, orig_mtu;
9881 
9882 	netdev_assert_locked_ops_compat(dev);
9883 
9884 	if (new_mtu == dev->mtu)
9885 		return 0;
9886 
9887 	err = dev_validate_mtu(dev, new_mtu, extack);
9888 	if (err)
9889 		return err;
9890 
9891 	if (!netif_device_present(dev))
9892 		return -ENODEV;
9893 
9894 	err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
9895 	err = notifier_to_errno(err);
9896 	if (err)
9897 		return err;
9898 
9899 	orig_mtu = dev->mtu;
9900 	err = __netif_set_mtu(dev, new_mtu);
9901 
9902 	if (!err) {
9903 		err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
9904 						   orig_mtu);
9905 		err = notifier_to_errno(err);
9906 		if (err) {
9907 			/* setting mtu back and notifying everyone again,
9908 			 * so that they have a chance to revert changes.
9909 			 */
9910 			__netif_set_mtu(dev, orig_mtu);
9911 			call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
9912 						     new_mtu);
9913 		}
9914 	}
9915 	return err;
9916 }
9917 
9918 int netif_set_mtu(struct net_device *dev, int new_mtu)
9919 {
9920 	struct netlink_ext_ack extack;
9921 	int err;
9922 
9923 	memset(&extack, 0, sizeof(extack));
9924 	err = netif_set_mtu_ext(dev, new_mtu, &extack);
9925 	if (err && extack._msg)
9926 		net_err_ratelimited("%s: %s\n", dev->name, extack._msg);
9927 	return err;
9928 }
9929 EXPORT_SYMBOL(netif_set_mtu);
9930 
9931 int netif_change_tx_queue_len(struct net_device *dev, unsigned long new_len)
9932 {
9933 	unsigned int orig_len = dev->tx_queue_len;
9934 	int res;
9935 
9936 	if (new_len != (unsigned int)new_len)
9937 		return -ERANGE;
9938 
9939 	if (new_len != orig_len) {
9940 		WRITE_ONCE(dev->tx_queue_len, new_len);
9941 		res = call_netdevice_notifiers(NETDEV_CHANGE_TX_QUEUE_LEN, dev);
9942 		res = notifier_to_errno(res);
9943 		if (res)
9944 			goto err_rollback;
9945 		res = dev_qdisc_change_tx_queue_len(dev);
9946 		if (res)
9947 			goto err_rollback;
9948 	}
9949 
9950 	return 0;
9951 
9952 err_rollback:
9953 	netdev_err(dev, "refused to change device tx_queue_len\n");
9954 	WRITE_ONCE(dev->tx_queue_len, orig_len);
9955 	return res;
9956 }
9957 
9958 void netif_set_group(struct net_device *dev, int new_group)
9959 {
9960 	dev->group = new_group;
9961 }
9962 
9963 /**
9964  * netif_pre_changeaddr_notify() - Call NETDEV_PRE_CHANGEADDR.
9965  * @dev: device
9966  * @addr: new address
9967  * @extack: netlink extended ack
9968  *
9969  * Return: 0 on success, -errno on failure.
9970  */
9971 int netif_pre_changeaddr_notify(struct net_device *dev, const char *addr,
9972 				struct netlink_ext_ack *extack)
9973 {
9974 	struct netdev_notifier_pre_changeaddr_info info = {
9975 		.info.dev = dev,
9976 		.info.extack = extack,
9977 		.dev_addr = addr,
9978 	};
9979 	int rc;
9980 
9981 	rc = call_netdevice_notifiers_info(NETDEV_PRE_CHANGEADDR, &info.info);
9982 	return notifier_to_errno(rc);
9983 }
9984 EXPORT_SYMBOL_NS_GPL(netif_pre_changeaddr_notify, "NETDEV_INTERNAL");
9985 
9986 int netif_set_mac_address(struct net_device *dev, struct sockaddr_storage *ss,
9987 			  struct netlink_ext_ack *extack)
9988 {
9989 	const struct net_device_ops *ops = dev->netdev_ops;
9990 	int err;
9991 
9992 	if (!ops->ndo_set_mac_address)
9993 		return -EOPNOTSUPP;
9994 	if (ss->ss_family != dev->type)
9995 		return -EINVAL;
9996 	if (!netif_device_present(dev))
9997 		return -ENODEV;
9998 	err = netif_pre_changeaddr_notify(dev, ss->__data, extack);
9999 	if (err)
10000 		return err;
10001 	if (memcmp(dev->dev_addr, ss->__data, dev->addr_len)) {
10002 		err = ops->ndo_set_mac_address(dev, ss);
10003 		if (err)
10004 			return err;
10005 	}
10006 	dev->addr_assign_type = NET_ADDR_SET;
10007 	call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
10008 	add_device_randomness(dev->dev_addr, dev->addr_len);
10009 	return 0;
10010 }
10011 
10012 DECLARE_RWSEM(dev_addr_sem);
10013 
10014 /* "sa" is a true struct sockaddr with limited "sa_data" member. */
10015 int netif_get_mac_address(struct sockaddr *sa, struct net *net, char *dev_name)
10016 {
10017 	size_t size = sizeof(sa->sa_data);
10018 	struct net_device *dev;
10019 	int ret = 0;
10020 
10021 	down_read(&dev_addr_sem);
10022 	rcu_read_lock();
10023 
10024 	dev = dev_get_by_name_rcu(net, dev_name);
10025 	if (!dev) {
10026 		ret = -ENODEV;
10027 		goto unlock;
10028 	}
10029 	if (!dev->addr_len)
10030 		memset(sa->sa_data, 0, size);
10031 	else
10032 		memcpy(sa->sa_data, dev->dev_addr,
10033 		       min_t(size_t, size, dev->addr_len));
10034 	sa->sa_family = dev->type;
10035 
10036 unlock:
10037 	rcu_read_unlock();
10038 	up_read(&dev_addr_sem);
10039 	return ret;
10040 }
10041 EXPORT_SYMBOL_NS_GPL(netif_get_mac_address, "NETDEV_INTERNAL");
10042 
10043 int netif_change_carrier(struct net_device *dev, bool new_carrier)
10044 {
10045 	const struct net_device_ops *ops = dev->netdev_ops;
10046 
10047 	if (!ops->ndo_change_carrier)
10048 		return -EOPNOTSUPP;
10049 	if (!netif_device_present(dev))
10050 		return -ENODEV;
10051 	return ops->ndo_change_carrier(dev, new_carrier);
10052 }
10053 
10054 /**
10055  *	dev_get_phys_port_id - Get device physical port ID
10056  *	@dev: device
10057  *	@ppid: port ID
10058  *
10059  *	Get device physical port ID
10060  */
10061 int dev_get_phys_port_id(struct net_device *dev,
10062 			 struct netdev_phys_item_id *ppid)
10063 {
10064 	const struct net_device_ops *ops = dev->netdev_ops;
10065 
10066 	if (!ops->ndo_get_phys_port_id)
10067 		return -EOPNOTSUPP;
10068 	return ops->ndo_get_phys_port_id(dev, ppid);
10069 }
10070 
10071 /**
10072  *	dev_get_phys_port_name - Get device physical port name
10073  *	@dev: device
10074  *	@name: port name
10075  *	@len: limit of bytes to copy to name
10076  *
10077  *	Get device physical port name
10078  */
10079 int dev_get_phys_port_name(struct net_device *dev,
10080 			   char *name, size_t len)
10081 {
10082 	const struct net_device_ops *ops = dev->netdev_ops;
10083 	int err;
10084 
10085 	if (ops->ndo_get_phys_port_name) {
10086 		err = ops->ndo_get_phys_port_name(dev, name, len);
10087 		if (err != -EOPNOTSUPP)
10088 			return err;
10089 	}
10090 	return devlink_compat_phys_port_name_get(dev, name, len);
10091 }
10092 
10093 /**
10094  * netif_get_port_parent_id() - Get the device's port parent identifier
10095  * @dev: network device
10096  * @ppid: pointer to a storage for the port's parent identifier
10097  * @recurse: allow/disallow recursion to lower devices
10098  *
10099  * Get the devices's port parent identifier.
10100  *
10101  * Return: 0 on success, -errno on failure.
10102  */
10103 int netif_get_port_parent_id(struct net_device *dev,
10104 			     struct netdev_phys_item_id *ppid, bool recurse)
10105 {
10106 	const struct net_device_ops *ops = dev->netdev_ops;
10107 	struct netdev_phys_item_id first = { };
10108 	struct net_device *lower_dev;
10109 	struct list_head *iter;
10110 	int err;
10111 
10112 	if (ops->ndo_get_port_parent_id) {
10113 		err = ops->ndo_get_port_parent_id(dev, ppid);
10114 		if (err != -EOPNOTSUPP)
10115 			return err;
10116 	}
10117 
10118 	err = devlink_compat_switch_id_get(dev, ppid);
10119 	if (!recurse || err != -EOPNOTSUPP)
10120 		return err;
10121 
10122 	netdev_for_each_lower_dev(dev, lower_dev, iter) {
10123 		err = netif_get_port_parent_id(lower_dev, ppid, true);
10124 		if (err)
10125 			break;
10126 		if (!first.id_len)
10127 			first = *ppid;
10128 		else if (memcmp(&first, ppid, sizeof(*ppid)))
10129 			return -EOPNOTSUPP;
10130 	}
10131 
10132 	return err;
10133 }
10134 EXPORT_SYMBOL(netif_get_port_parent_id);
10135 
10136 /**
10137  *	netdev_port_same_parent_id - Indicate if two network devices have
10138  *	the same port parent identifier
10139  *	@a: first network device
10140  *	@b: second network device
10141  */
10142 bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b)
10143 {
10144 	struct netdev_phys_item_id a_id = { };
10145 	struct netdev_phys_item_id b_id = { };
10146 
10147 	if (netif_get_port_parent_id(a, &a_id, true) ||
10148 	    netif_get_port_parent_id(b, &b_id, true))
10149 		return false;
10150 
10151 	return netdev_phys_item_id_same(&a_id, &b_id);
10152 }
10153 EXPORT_SYMBOL(netdev_port_same_parent_id);
10154 
10155 static struct net_device *dev_get_iflink_dev(struct net_device *dev)
10156 {
10157 	struct net *net;
10158 
10159 	ASSERT_RTNL();
10160 
10161 	if (!dev->netdev_ops->ndo_get_iflink || !dev->rtnl_link_ops ||
10162 	    !dev->rtnl_link_ops->get_link_net)
10163 		return dev;
10164 
10165 	net = dev->rtnl_link_ops->get_link_net(dev);
10166 	return __dev_get_by_index(net, dev_get_iflink(dev));
10167 }
10168 
10169 int netif_change_proto_down(struct net_device *dev, bool proto_down)
10170 {
10171 	struct net_device *iflink_dev;
10172 
10173 	if (!dev->change_proto_down)
10174 		return -EOPNOTSUPP;
10175 	if (!netif_device_present(dev))
10176 		return -ENODEV;
10177 	iflink_dev = dev_get_iflink_dev(dev);
10178 	if (!iflink_dev)
10179 		return -ENODEV;
10180 	WRITE_ONCE(dev->proto_down, proto_down);
10181 	if (proto_down)
10182 		netif_carrier_off(dev);
10183 	else if (dev == iflink_dev || netif_carrier_ok(iflink_dev))
10184 		netif_carrier_on(dev);
10185 	return 0;
10186 }
10187 
10188 /**
10189  *	netdev_change_proto_down_reason_locked - proto down reason
10190  *
10191  *	@dev: device
10192  *	@mask: proto down mask
10193  *	@value: proto down value
10194  */
10195 void netdev_change_proto_down_reason_locked(struct net_device *dev,
10196 					    unsigned long mask, u32 value)
10197 {
10198 	u32 proto_down_reason;
10199 	int b;
10200 
10201 	if (!mask) {
10202 		proto_down_reason = value;
10203 	} else {
10204 		proto_down_reason = dev->proto_down_reason;
10205 		for_each_set_bit(b, &mask, 32) {
10206 			if (value & (1 << b))
10207 				proto_down_reason |= BIT(b);
10208 			else
10209 				proto_down_reason &= ~BIT(b);
10210 		}
10211 	}
10212 	WRITE_ONCE(dev->proto_down_reason, proto_down_reason);
10213 }
10214 
10215 struct bpf_xdp_link {
10216 	struct bpf_link link;
10217 	struct net_device *dev; /* protected by rtnl_lock, no refcnt held */
10218 	int flags;
10219 };
10220 
10221 static enum bpf_xdp_mode dev_xdp_mode(struct net_device *dev, u32 flags)
10222 {
10223 	if (flags & XDP_FLAGS_HW_MODE)
10224 		return XDP_MODE_HW;
10225 	if (flags & XDP_FLAGS_DRV_MODE)
10226 		return XDP_MODE_DRV;
10227 	if (flags & XDP_FLAGS_SKB_MODE)
10228 		return XDP_MODE_SKB;
10229 	return dev->netdev_ops->ndo_bpf ? XDP_MODE_DRV : XDP_MODE_SKB;
10230 }
10231 
10232 static bpf_op_t dev_xdp_bpf_op(struct net_device *dev, enum bpf_xdp_mode mode)
10233 {
10234 	switch (mode) {
10235 	case XDP_MODE_SKB:
10236 		return generic_xdp_install;
10237 	case XDP_MODE_DRV:
10238 	case XDP_MODE_HW:
10239 		return dev->netdev_ops->ndo_bpf;
10240 	default:
10241 		return NULL;
10242 	}
10243 }
10244 
10245 static struct bpf_xdp_link *dev_xdp_link(struct net_device *dev,
10246 					 enum bpf_xdp_mode mode)
10247 {
10248 	return dev->xdp_state[mode].link;
10249 }
10250 
10251 static struct bpf_prog *dev_xdp_prog(struct net_device *dev,
10252 				     enum bpf_xdp_mode mode)
10253 {
10254 	struct bpf_xdp_link *link = dev_xdp_link(dev, mode);
10255 
10256 	if (link)
10257 		return link->link.prog;
10258 	return dev->xdp_state[mode].prog;
10259 }
10260 
10261 u8 dev_xdp_prog_count(struct net_device *dev)
10262 {
10263 	u8 count = 0;
10264 	int i;
10265 
10266 	for (i = 0; i < __MAX_XDP_MODE; i++)
10267 		if (dev->xdp_state[i].prog || dev->xdp_state[i].link)
10268 			count++;
10269 	return count;
10270 }
10271 EXPORT_SYMBOL_GPL(dev_xdp_prog_count);
10272 
10273 u8 dev_xdp_sb_prog_count(struct net_device *dev)
10274 {
10275 	u8 count = 0;
10276 	int i;
10277 
10278 	for (i = 0; i < __MAX_XDP_MODE; i++)
10279 		if (dev->xdp_state[i].prog &&
10280 		    !dev->xdp_state[i].prog->aux->xdp_has_frags)
10281 			count++;
10282 	return count;
10283 }
10284 
10285 int netif_xdp_propagate(struct net_device *dev, struct netdev_bpf *bpf)
10286 {
10287 	if (!dev->netdev_ops->ndo_bpf)
10288 		return -EOPNOTSUPP;
10289 
10290 	if (dev->cfg->hds_config == ETHTOOL_TCP_DATA_SPLIT_ENABLED &&
10291 	    bpf->command == XDP_SETUP_PROG &&
10292 	    bpf->prog && !bpf->prog->aux->xdp_has_frags) {
10293 		NL_SET_ERR_MSG(bpf->extack,
10294 			       "unable to propagate XDP to device using tcp-data-split");
10295 		return -EBUSY;
10296 	}
10297 
10298 	if (dev_get_min_mp_channel_count(dev)) {
10299 		NL_SET_ERR_MSG(bpf->extack, "unable to propagate XDP to device using memory provider");
10300 		return -EBUSY;
10301 	}
10302 
10303 	return dev->netdev_ops->ndo_bpf(dev, bpf);
10304 }
10305 EXPORT_SYMBOL_GPL(netif_xdp_propagate);
10306 
10307 u32 dev_xdp_prog_id(struct net_device *dev, enum bpf_xdp_mode mode)
10308 {
10309 	struct bpf_prog *prog = dev_xdp_prog(dev, mode);
10310 
10311 	return prog ? prog->aux->id : 0;
10312 }
10313 
10314 static void dev_xdp_set_link(struct net_device *dev, enum bpf_xdp_mode mode,
10315 			     struct bpf_xdp_link *link)
10316 {
10317 	dev->xdp_state[mode].link = link;
10318 	dev->xdp_state[mode].prog = NULL;
10319 }
10320 
10321 static void dev_xdp_set_prog(struct net_device *dev, enum bpf_xdp_mode mode,
10322 			     struct bpf_prog *prog)
10323 {
10324 	dev->xdp_state[mode].link = NULL;
10325 	dev->xdp_state[mode].prog = prog;
10326 }
10327 
10328 static int dev_xdp_install(struct net_device *dev, enum bpf_xdp_mode mode,
10329 			   bpf_op_t bpf_op, struct netlink_ext_ack *extack,
10330 			   u32 flags, struct bpf_prog *prog)
10331 {
10332 	struct netdev_bpf xdp;
10333 	int err;
10334 
10335 	netdev_assert_locked_ops_compat(dev);
10336 
10337 	if (dev->cfg->hds_config == ETHTOOL_TCP_DATA_SPLIT_ENABLED &&
10338 	    prog && !prog->aux->xdp_has_frags) {
10339 		NL_SET_ERR_MSG(extack, "unable to install XDP to device using tcp-data-split");
10340 		return -EBUSY;
10341 	}
10342 
10343 	if (dev_get_min_mp_channel_count(dev)) {
10344 		NL_SET_ERR_MSG(extack, "unable to install XDP to device using memory provider");
10345 		return -EBUSY;
10346 	}
10347 
10348 	memset(&xdp, 0, sizeof(xdp));
10349 	xdp.command = mode == XDP_MODE_HW ? XDP_SETUP_PROG_HW : XDP_SETUP_PROG;
10350 	xdp.extack = extack;
10351 	xdp.flags = flags;
10352 	xdp.prog = prog;
10353 
10354 	/* Drivers assume refcnt is already incremented (i.e, prog pointer is
10355 	 * "moved" into driver), so they don't increment it on their own, but
10356 	 * they do decrement refcnt when program is detached or replaced.
10357 	 * Given net_device also owns link/prog, we need to bump refcnt here
10358 	 * to prevent drivers from underflowing it.
10359 	 */
10360 	if (prog)
10361 		bpf_prog_inc(prog);
10362 	err = bpf_op(dev, &xdp);
10363 	if (err) {
10364 		if (prog)
10365 			bpf_prog_put(prog);
10366 		return err;
10367 	}
10368 
10369 	if (mode != XDP_MODE_HW)
10370 		bpf_prog_change_xdp(dev_xdp_prog(dev, mode), prog);
10371 
10372 	return 0;
10373 }
10374 
10375 static void dev_xdp_uninstall(struct net_device *dev)
10376 {
10377 	struct bpf_xdp_link *link;
10378 	struct bpf_prog *prog;
10379 	enum bpf_xdp_mode mode;
10380 	bpf_op_t bpf_op;
10381 
10382 	ASSERT_RTNL();
10383 
10384 	for (mode = XDP_MODE_SKB; mode < __MAX_XDP_MODE; mode++) {
10385 		prog = dev_xdp_prog(dev, mode);
10386 		if (!prog)
10387 			continue;
10388 
10389 		bpf_op = dev_xdp_bpf_op(dev, mode);
10390 		if (!bpf_op)
10391 			continue;
10392 
10393 		WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
10394 
10395 		/* auto-detach link from net device */
10396 		link = dev_xdp_link(dev, mode);
10397 		if (link)
10398 			link->dev = NULL;
10399 		else
10400 			bpf_prog_put(prog);
10401 
10402 		dev_xdp_set_link(dev, mode, NULL);
10403 	}
10404 }
10405 
10406 static int dev_xdp_attach(struct net_device *dev, struct netlink_ext_ack *extack,
10407 			  struct bpf_xdp_link *link, struct bpf_prog *new_prog,
10408 			  struct bpf_prog *old_prog, u32 flags)
10409 {
10410 	unsigned int num_modes = hweight32(flags & XDP_FLAGS_MODES);
10411 	struct bpf_prog *cur_prog;
10412 	struct net_device *upper;
10413 	struct list_head *iter;
10414 	enum bpf_xdp_mode mode;
10415 	bpf_op_t bpf_op;
10416 	int err;
10417 
10418 	ASSERT_RTNL();
10419 
10420 	/* either link or prog attachment, never both */
10421 	if (link && (new_prog || old_prog))
10422 		return -EINVAL;
10423 	/* link supports only XDP mode flags */
10424 	if (link && (flags & ~XDP_FLAGS_MODES)) {
10425 		NL_SET_ERR_MSG(extack, "Invalid XDP flags for BPF link attachment");
10426 		return -EINVAL;
10427 	}
10428 	/* just one XDP mode bit should be set, zero defaults to drv/skb mode */
10429 	if (num_modes > 1) {
10430 		NL_SET_ERR_MSG(extack, "Only one XDP mode flag can be set");
10431 		return -EINVAL;
10432 	}
10433 	/* avoid ambiguity if offload + drv/skb mode progs are both loaded */
10434 	if (!num_modes && dev_xdp_prog_count(dev) > 1) {
10435 		NL_SET_ERR_MSG(extack,
10436 			       "More than one program loaded, unset mode is ambiguous");
10437 		return -EINVAL;
10438 	}
10439 	/* old_prog != NULL implies XDP_FLAGS_REPLACE is set */
10440 	if (old_prog && !(flags & XDP_FLAGS_REPLACE)) {
10441 		NL_SET_ERR_MSG(extack, "XDP_FLAGS_REPLACE is not specified");
10442 		return -EINVAL;
10443 	}
10444 
10445 	mode = dev_xdp_mode(dev, flags);
10446 	/* can't replace attached link */
10447 	if (dev_xdp_link(dev, mode)) {
10448 		NL_SET_ERR_MSG(extack, "Can't replace active BPF XDP link");
10449 		return -EBUSY;
10450 	}
10451 
10452 	/* don't allow if an upper device already has a program */
10453 	netdev_for_each_upper_dev_rcu(dev, upper, iter) {
10454 		if (dev_xdp_prog_count(upper) > 0) {
10455 			NL_SET_ERR_MSG(extack, "Cannot attach when an upper device already has a program");
10456 			return -EEXIST;
10457 		}
10458 	}
10459 
10460 	cur_prog = dev_xdp_prog(dev, mode);
10461 	/* can't replace attached prog with link */
10462 	if (link && cur_prog) {
10463 		NL_SET_ERR_MSG(extack, "Can't replace active XDP program with BPF link");
10464 		return -EBUSY;
10465 	}
10466 	if ((flags & XDP_FLAGS_REPLACE) && cur_prog != old_prog) {
10467 		NL_SET_ERR_MSG(extack, "Active program does not match expected");
10468 		return -EEXIST;
10469 	}
10470 
10471 	/* put effective new program into new_prog */
10472 	if (link)
10473 		new_prog = link->link.prog;
10474 
10475 	if (new_prog) {
10476 		bool offload = mode == XDP_MODE_HW;
10477 		enum bpf_xdp_mode other_mode = mode == XDP_MODE_SKB
10478 					       ? XDP_MODE_DRV : XDP_MODE_SKB;
10479 
10480 		if ((flags & XDP_FLAGS_UPDATE_IF_NOEXIST) && cur_prog) {
10481 			NL_SET_ERR_MSG(extack, "XDP program already attached");
10482 			return -EBUSY;
10483 		}
10484 		if (!offload && dev_xdp_prog(dev, other_mode)) {
10485 			NL_SET_ERR_MSG(extack, "Native and generic XDP can't be active at the same time");
10486 			return -EEXIST;
10487 		}
10488 		if (!offload && bpf_prog_is_offloaded(new_prog->aux)) {
10489 			NL_SET_ERR_MSG(extack, "Using offloaded program without HW_MODE flag is not supported");
10490 			return -EINVAL;
10491 		}
10492 		if (bpf_prog_is_dev_bound(new_prog->aux) && !bpf_offload_dev_match(new_prog, dev)) {
10493 			NL_SET_ERR_MSG(extack, "Program bound to different device");
10494 			return -EINVAL;
10495 		}
10496 		if (bpf_prog_is_dev_bound(new_prog->aux) && mode == XDP_MODE_SKB) {
10497 			NL_SET_ERR_MSG(extack, "Can't attach device-bound programs in generic mode");
10498 			return -EINVAL;
10499 		}
10500 		if (new_prog->expected_attach_type == BPF_XDP_DEVMAP) {
10501 			NL_SET_ERR_MSG(extack, "BPF_XDP_DEVMAP programs can not be attached to a device");
10502 			return -EINVAL;
10503 		}
10504 		if (new_prog->expected_attach_type == BPF_XDP_CPUMAP) {
10505 			NL_SET_ERR_MSG(extack, "BPF_XDP_CPUMAP programs can not be attached to a device");
10506 			return -EINVAL;
10507 		}
10508 	}
10509 
10510 	/* don't call drivers if the effective program didn't change */
10511 	if (new_prog != cur_prog) {
10512 		bpf_op = dev_xdp_bpf_op(dev, mode);
10513 		if (!bpf_op) {
10514 			NL_SET_ERR_MSG(extack, "Underlying driver does not support XDP in native mode");
10515 			return -EOPNOTSUPP;
10516 		}
10517 
10518 		err = dev_xdp_install(dev, mode, bpf_op, extack, flags, new_prog);
10519 		if (err)
10520 			return err;
10521 	}
10522 
10523 	if (link)
10524 		dev_xdp_set_link(dev, mode, link);
10525 	else
10526 		dev_xdp_set_prog(dev, mode, new_prog);
10527 	if (cur_prog)
10528 		bpf_prog_put(cur_prog);
10529 
10530 	return 0;
10531 }
10532 
10533 static int dev_xdp_attach_link(struct net_device *dev,
10534 			       struct netlink_ext_ack *extack,
10535 			       struct bpf_xdp_link *link)
10536 {
10537 	return dev_xdp_attach(dev, extack, link, NULL, NULL, link->flags);
10538 }
10539 
10540 static int dev_xdp_detach_link(struct net_device *dev,
10541 			       struct netlink_ext_ack *extack,
10542 			       struct bpf_xdp_link *link)
10543 {
10544 	enum bpf_xdp_mode mode;
10545 	bpf_op_t bpf_op;
10546 
10547 	ASSERT_RTNL();
10548 
10549 	mode = dev_xdp_mode(dev, link->flags);
10550 	if (dev_xdp_link(dev, mode) != link)
10551 		return -EINVAL;
10552 
10553 	bpf_op = dev_xdp_bpf_op(dev, mode);
10554 	WARN_ON(dev_xdp_install(dev, mode, bpf_op, NULL, 0, NULL));
10555 	dev_xdp_set_link(dev, mode, NULL);
10556 	return 0;
10557 }
10558 
10559 static void bpf_xdp_link_release(struct bpf_link *link)
10560 {
10561 	struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
10562 
10563 	rtnl_lock();
10564 
10565 	/* if racing with net_device's tear down, xdp_link->dev might be
10566 	 * already NULL, in which case link was already auto-detached
10567 	 */
10568 	if (xdp_link->dev) {
10569 		netdev_lock_ops(xdp_link->dev);
10570 		WARN_ON(dev_xdp_detach_link(xdp_link->dev, NULL, xdp_link));
10571 		netdev_unlock_ops(xdp_link->dev);
10572 		xdp_link->dev = NULL;
10573 	}
10574 
10575 	rtnl_unlock();
10576 }
10577 
10578 static int bpf_xdp_link_detach(struct bpf_link *link)
10579 {
10580 	bpf_xdp_link_release(link);
10581 	return 0;
10582 }
10583 
10584 static void bpf_xdp_link_dealloc(struct bpf_link *link)
10585 {
10586 	struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
10587 
10588 	kfree(xdp_link);
10589 }
10590 
10591 static void bpf_xdp_link_show_fdinfo(const struct bpf_link *link,
10592 				     struct seq_file *seq)
10593 {
10594 	struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
10595 	u32 ifindex = 0;
10596 
10597 	rtnl_lock();
10598 	if (xdp_link->dev)
10599 		ifindex = xdp_link->dev->ifindex;
10600 	rtnl_unlock();
10601 
10602 	seq_printf(seq, "ifindex:\t%u\n", ifindex);
10603 }
10604 
10605 static int bpf_xdp_link_fill_link_info(const struct bpf_link *link,
10606 				       struct bpf_link_info *info)
10607 {
10608 	struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
10609 	u32 ifindex = 0;
10610 
10611 	rtnl_lock();
10612 	if (xdp_link->dev)
10613 		ifindex = xdp_link->dev->ifindex;
10614 	rtnl_unlock();
10615 
10616 	info->xdp.ifindex = ifindex;
10617 	return 0;
10618 }
10619 
10620 static int bpf_xdp_link_update(struct bpf_link *link, struct bpf_prog *new_prog,
10621 			       struct bpf_prog *old_prog)
10622 {
10623 	struct bpf_xdp_link *xdp_link = container_of(link, struct bpf_xdp_link, link);
10624 	enum bpf_xdp_mode mode;
10625 	bpf_op_t bpf_op;
10626 	int err = 0;
10627 
10628 	rtnl_lock();
10629 
10630 	/* link might have been auto-released already, so fail */
10631 	if (!xdp_link->dev) {
10632 		err = -ENOLINK;
10633 		goto out_unlock;
10634 	}
10635 
10636 	if (old_prog && link->prog != old_prog) {
10637 		err = -EPERM;
10638 		goto out_unlock;
10639 	}
10640 	old_prog = link->prog;
10641 	if (old_prog->type != new_prog->type ||
10642 	    old_prog->expected_attach_type != new_prog->expected_attach_type) {
10643 		err = -EINVAL;
10644 		goto out_unlock;
10645 	}
10646 
10647 	if (old_prog == new_prog) {
10648 		/* no-op, don't disturb drivers */
10649 		bpf_prog_put(new_prog);
10650 		goto out_unlock;
10651 	}
10652 
10653 	netdev_lock_ops(xdp_link->dev);
10654 	mode = dev_xdp_mode(xdp_link->dev, xdp_link->flags);
10655 	bpf_op = dev_xdp_bpf_op(xdp_link->dev, mode);
10656 	err = dev_xdp_install(xdp_link->dev, mode, bpf_op, NULL,
10657 			      xdp_link->flags, new_prog);
10658 	netdev_unlock_ops(xdp_link->dev);
10659 	if (err)
10660 		goto out_unlock;
10661 
10662 	old_prog = xchg(&link->prog, new_prog);
10663 	bpf_prog_put(old_prog);
10664 
10665 out_unlock:
10666 	rtnl_unlock();
10667 	return err;
10668 }
10669 
10670 static const struct bpf_link_ops bpf_xdp_link_lops = {
10671 	.release = bpf_xdp_link_release,
10672 	.dealloc = bpf_xdp_link_dealloc,
10673 	.detach = bpf_xdp_link_detach,
10674 	.show_fdinfo = bpf_xdp_link_show_fdinfo,
10675 	.fill_link_info = bpf_xdp_link_fill_link_info,
10676 	.update_prog = bpf_xdp_link_update,
10677 };
10678 
10679 int bpf_xdp_link_attach(const union bpf_attr *attr, struct bpf_prog *prog)
10680 {
10681 	struct net *net = current->nsproxy->net_ns;
10682 	struct bpf_link_primer link_primer;
10683 	struct netlink_ext_ack extack = {};
10684 	struct bpf_xdp_link *link;
10685 	struct net_device *dev;
10686 	int err, fd;
10687 
10688 	rtnl_lock();
10689 	dev = dev_get_by_index(net, attr->link_create.target_ifindex);
10690 	if (!dev) {
10691 		rtnl_unlock();
10692 		return -EINVAL;
10693 	}
10694 
10695 	link = kzalloc_obj(*link, GFP_USER);
10696 	if (!link) {
10697 		err = -ENOMEM;
10698 		goto unlock;
10699 	}
10700 
10701 	bpf_link_init(&link->link, BPF_LINK_TYPE_XDP, &bpf_xdp_link_lops, prog,
10702 		      attr->link_create.attach_type);
10703 	link->dev = dev;
10704 	link->flags = attr->link_create.flags;
10705 
10706 	err = bpf_link_prime(&link->link, &link_primer);
10707 	if (err) {
10708 		kfree(link);
10709 		goto unlock;
10710 	}
10711 
10712 	netdev_lock_ops(dev);
10713 	err = dev_xdp_attach_link(dev, &extack, link);
10714 	netdev_unlock_ops(dev);
10715 	rtnl_unlock();
10716 
10717 	if (err) {
10718 		link->dev = NULL;
10719 		bpf_link_cleanup(&link_primer);
10720 		trace_bpf_xdp_link_attach_failed(extack._msg);
10721 		goto out_put_dev;
10722 	}
10723 
10724 	fd = bpf_link_settle(&link_primer);
10725 	/* link itself doesn't hold dev's refcnt to not complicate shutdown */
10726 	dev_put(dev);
10727 	return fd;
10728 
10729 unlock:
10730 	rtnl_unlock();
10731 
10732 out_put_dev:
10733 	dev_put(dev);
10734 	return err;
10735 }
10736 
10737 /**
10738  *	dev_change_xdp_fd - set or clear a bpf program for a device rx path
10739  *	@dev: device
10740  *	@extack: netlink extended ack
10741  *	@fd: new program fd or negative value to clear
10742  *	@expected_fd: old program fd that userspace expects to replace or clear
10743  *	@flags: xdp-related flags
10744  *
10745  *	Set or clear a bpf program for a device
10746  */
10747 int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
10748 		      int fd, int expected_fd, u32 flags)
10749 {
10750 	enum bpf_xdp_mode mode = dev_xdp_mode(dev, flags);
10751 	struct bpf_prog *new_prog = NULL, *old_prog = NULL;
10752 	int err;
10753 
10754 	ASSERT_RTNL();
10755 
10756 	if (fd >= 0) {
10757 		new_prog = bpf_prog_get_type_dev(fd, BPF_PROG_TYPE_XDP,
10758 						 mode != XDP_MODE_SKB);
10759 		if (IS_ERR(new_prog))
10760 			return PTR_ERR(new_prog);
10761 	}
10762 
10763 	if (expected_fd >= 0) {
10764 		old_prog = bpf_prog_get_type_dev(expected_fd, BPF_PROG_TYPE_XDP,
10765 						 mode != XDP_MODE_SKB);
10766 		if (IS_ERR(old_prog)) {
10767 			err = PTR_ERR(old_prog);
10768 			old_prog = NULL;
10769 			goto err_out;
10770 		}
10771 	}
10772 
10773 	err = dev_xdp_attach(dev, extack, NULL, new_prog, old_prog, flags);
10774 
10775 err_out:
10776 	if (err && new_prog)
10777 		bpf_prog_put(new_prog);
10778 	if (old_prog)
10779 		bpf_prog_put(old_prog);
10780 	return err;
10781 }
10782 
10783 u32 dev_get_min_mp_channel_count(const struct net_device *dev)
10784 {
10785 	int i;
10786 
10787 	netdev_assert_locked_ops_compat(dev);
10788 
10789 	for (i = dev->real_num_rx_queues - 1; i >= 0; i--)
10790 		if (dev->_rx[i].mp_params.mp_priv)
10791 			/* The channel count is the idx plus 1. */
10792 			return i + 1;
10793 
10794 	return 0;
10795 }
10796 
10797 /**
10798  * dev_index_reserve() - allocate an ifindex in a namespace
10799  * @net: the applicable net namespace
10800  * @ifindex: requested ifindex, pass %0 to get one allocated
10801  *
10802  * Allocate a ifindex for a new device. Caller must either use the ifindex
10803  * to store the device (via list_netdevice()) or call dev_index_release()
10804  * to give the index up.
10805  *
10806  * Return: a suitable unique value for a new device interface number or -errno.
10807  */
10808 static int dev_index_reserve(struct net *net, u32 ifindex)
10809 {
10810 	int err;
10811 
10812 	if (ifindex > INT_MAX) {
10813 		DEBUG_NET_WARN_ON_ONCE(1);
10814 		return -EINVAL;
10815 	}
10816 
10817 	if (!ifindex)
10818 		err = xa_alloc_cyclic(&net->dev_by_index, &ifindex, NULL,
10819 				      xa_limit_31b, &net->ifindex, GFP_KERNEL);
10820 	else
10821 		err = xa_insert(&net->dev_by_index, ifindex, NULL, GFP_KERNEL);
10822 	if (err < 0)
10823 		return err;
10824 
10825 	return ifindex;
10826 }
10827 
10828 static void dev_index_release(struct net *net, int ifindex)
10829 {
10830 	/* Expect only unused indexes, unlist_netdevice() removes the used */
10831 	WARN_ON(xa_erase(&net->dev_by_index, ifindex));
10832 }
10833 
10834 static bool from_cleanup_net(void)
10835 {
10836 #ifdef CONFIG_NET_NS
10837 	return current == READ_ONCE(cleanup_net_task);
10838 #else
10839 	return false;
10840 #endif
10841 }
10842 
10843 /* Delayed registration/unregisteration */
10844 LIST_HEAD(net_todo_list);
10845 DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
10846 atomic_t dev_unreg_count = ATOMIC_INIT(0);
10847 
10848 static void net_set_todo(struct net_device *dev)
10849 {
10850 	list_add_tail(&dev->todo_list, &net_todo_list);
10851 }
10852 
10853 static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
10854 	struct net_device *upper, netdev_features_t features)
10855 {
10856 	netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
10857 	netdev_features_t feature;
10858 	int feature_bit;
10859 
10860 	for_each_netdev_feature(upper_disables, feature_bit) {
10861 		feature = __NETIF_F_BIT(feature_bit);
10862 		if (!(upper->wanted_features & feature)
10863 		    && (features & feature)) {
10864 			netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
10865 				   &feature, upper->name);
10866 			features &= ~feature;
10867 		}
10868 	}
10869 
10870 	return features;
10871 }
10872 
10873 static void netdev_sync_lower_features(struct net_device *upper,
10874 	struct net_device *lower, netdev_features_t features)
10875 {
10876 	netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
10877 	netdev_features_t feature;
10878 	int feature_bit;
10879 
10880 	for_each_netdev_feature(upper_disables, feature_bit) {
10881 		feature = __NETIF_F_BIT(feature_bit);
10882 		if (!(features & feature) && (lower->features & feature)) {
10883 			netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
10884 				   &feature, lower->name);
10885 			netdev_lock_ops(lower);
10886 			lower->wanted_features &= ~feature;
10887 			__netdev_update_features(lower);
10888 
10889 			if (unlikely(lower->features & feature))
10890 				netdev_WARN(upper, "failed to disable %pNF on %s!\n",
10891 					    &feature, lower->name);
10892 			else
10893 				netdev_features_change(lower);
10894 			netdev_unlock_ops(lower);
10895 		}
10896 	}
10897 }
10898 
10899 static bool netdev_has_ip_or_hw_csum(netdev_features_t features)
10900 {
10901 	netdev_features_t ip_csum_mask = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM;
10902 	bool ip_csum = (features & ip_csum_mask) == ip_csum_mask;
10903 	bool hw_csum = features & NETIF_F_HW_CSUM;
10904 
10905 	return ip_csum || hw_csum;
10906 }
10907 
10908 static netdev_features_t netdev_fix_features(struct net_device *dev,
10909 	netdev_features_t features)
10910 {
10911 	/* Fix illegal checksum combinations */
10912 	if ((features & NETIF_F_HW_CSUM) &&
10913 	    (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
10914 		netdev_warn(dev, "mixed HW and IP checksum settings.\n");
10915 		features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
10916 	}
10917 
10918 	/* TSO requires that SG is present as well. */
10919 	if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
10920 		netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
10921 		features &= ~NETIF_F_ALL_TSO;
10922 	}
10923 
10924 	if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
10925 					!(features & NETIF_F_IP_CSUM)) {
10926 		netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
10927 		features &= ~NETIF_F_TSO;
10928 		features &= ~NETIF_F_TSO_ECN;
10929 	}
10930 
10931 	if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
10932 					 !(features & NETIF_F_IPV6_CSUM)) {
10933 		netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
10934 		features &= ~NETIF_F_TSO6;
10935 	}
10936 
10937 	/* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
10938 	if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
10939 		features &= ~NETIF_F_TSO_MANGLEID;
10940 
10941 	/* TSO ECN requires that TSO is present as well. */
10942 	if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
10943 		features &= ~NETIF_F_TSO_ECN;
10944 
10945 	/* Software GSO depends on SG. */
10946 	if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
10947 		netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
10948 		features &= ~NETIF_F_GSO;
10949 	}
10950 
10951 	/* GSO partial features require GSO partial be set */
10952 	if ((features & dev->gso_partial_features) &&
10953 	    !(features & NETIF_F_GSO_PARTIAL)) {
10954 		netdev_dbg(dev,
10955 			   "Dropping partially supported GSO features since no GSO partial.\n");
10956 		features &= ~dev->gso_partial_features;
10957 	}
10958 
10959 	if (!(features & NETIF_F_RXCSUM)) {
10960 		/* NETIF_F_GRO_HW implies doing RXCSUM since every packet
10961 		 * successfully merged by hardware must also have the
10962 		 * checksum verified by hardware.  If the user does not
10963 		 * want to enable RXCSUM, logically, we should disable GRO_HW.
10964 		 */
10965 		if (features & NETIF_F_GRO_HW) {
10966 			netdev_dbg(dev, "Dropping NETIF_F_GRO_HW since no RXCSUM feature.\n");
10967 			features &= ~NETIF_F_GRO_HW;
10968 		}
10969 	}
10970 
10971 	/* LRO/HW-GRO features cannot be combined with RX-FCS */
10972 	if (features & NETIF_F_RXFCS) {
10973 		if (features & NETIF_F_LRO) {
10974 			netdev_dbg(dev, "Dropping LRO feature since RX-FCS is requested.\n");
10975 			features &= ~NETIF_F_LRO;
10976 		}
10977 
10978 		if (features & NETIF_F_GRO_HW) {
10979 			netdev_dbg(dev, "Dropping HW-GRO feature since RX-FCS is requested.\n");
10980 			features &= ~NETIF_F_GRO_HW;
10981 		}
10982 	}
10983 
10984 	if ((features & NETIF_F_GRO_HW) && (features & NETIF_F_LRO)) {
10985 		netdev_dbg(dev, "Dropping LRO feature since HW-GRO is requested.\n");
10986 		features &= ~NETIF_F_LRO;
10987 	}
10988 
10989 	if ((features & NETIF_F_HW_TLS_TX) && !netdev_has_ip_or_hw_csum(features)) {
10990 		netdev_dbg(dev, "Dropping TLS TX HW offload feature since no CSUM feature.\n");
10991 		features &= ~NETIF_F_HW_TLS_TX;
10992 	}
10993 
10994 	if ((features & NETIF_F_HW_TLS_RX) && !(features & NETIF_F_RXCSUM)) {
10995 		netdev_dbg(dev, "Dropping TLS RX HW offload feature since no RXCSUM feature.\n");
10996 		features &= ~NETIF_F_HW_TLS_RX;
10997 	}
10998 
10999 	if ((features & NETIF_F_GSO_UDP_L4) && !netdev_has_ip_or_hw_csum(features)) {
11000 		netdev_dbg(dev, "Dropping USO feature since no CSUM feature.\n");
11001 		features &= ~NETIF_F_GSO_UDP_L4;
11002 	}
11003 
11004 	return features;
11005 }
11006 
11007 int __netdev_update_features(struct net_device *dev)
11008 {
11009 	struct net_device *upper, *lower;
11010 	netdev_features_t features;
11011 	struct list_head *iter;
11012 	int err = -1;
11013 
11014 	ASSERT_RTNL();
11015 	netdev_assert_locked_ops_compat(dev);
11016 
11017 	features = netdev_get_wanted_features(dev);
11018 
11019 	if (dev->netdev_ops->ndo_fix_features)
11020 		features = dev->netdev_ops->ndo_fix_features(dev, features);
11021 
11022 	/* driver might be less strict about feature dependencies */
11023 	features = netdev_fix_features(dev, features);
11024 
11025 	/* some features can't be enabled if they're off on an upper device */
11026 	netdev_for_each_upper_dev_rcu(dev, upper, iter)
11027 		features = netdev_sync_upper_features(dev, upper, features);
11028 
11029 	if (dev->features == features)
11030 		goto sync_lower;
11031 
11032 	netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
11033 		&dev->features, &features);
11034 
11035 	if (dev->netdev_ops->ndo_set_features)
11036 		err = dev->netdev_ops->ndo_set_features(dev, features);
11037 	else
11038 		err = 0;
11039 
11040 	if (unlikely(err < 0)) {
11041 		netdev_err(dev,
11042 			"set_features() failed (%d); wanted %pNF, left %pNF\n",
11043 			err, &features, &dev->features);
11044 		/* return non-0 since some features might have changed and
11045 		 * it's better to fire a spurious notification than miss it
11046 		 */
11047 		return -1;
11048 	}
11049 
11050 sync_lower:
11051 	/* some features must be disabled on lower devices when disabled
11052 	 * on an upper device (think: bonding master or bridge)
11053 	 */
11054 	netdev_for_each_lower_dev(dev, lower, iter)
11055 		netdev_sync_lower_features(dev, lower, features);
11056 
11057 	if (!err) {
11058 		netdev_features_t diff = features ^ dev->features;
11059 
11060 		if (diff & NETIF_F_RX_UDP_TUNNEL_PORT) {
11061 			/* udp_tunnel_{get,drop}_rx_info both need
11062 			 * NETIF_F_RX_UDP_TUNNEL_PORT enabled on the
11063 			 * device, or they won't do anything.
11064 			 * Thus we need to update dev->features
11065 			 * *before* calling udp_tunnel_get_rx_info,
11066 			 * but *after* calling udp_tunnel_drop_rx_info.
11067 			 */
11068 			udp_tunnel_nic_lock(dev);
11069 			if (features & NETIF_F_RX_UDP_TUNNEL_PORT) {
11070 				dev->features = features;
11071 				udp_tunnel_get_rx_info(dev);
11072 			} else {
11073 				udp_tunnel_drop_rx_info(dev);
11074 			}
11075 			udp_tunnel_nic_unlock(dev);
11076 		}
11077 
11078 		if (diff & NETIF_F_HW_VLAN_CTAG_FILTER) {
11079 			if (features & NETIF_F_HW_VLAN_CTAG_FILTER) {
11080 				dev->features = features;
11081 				err |= vlan_get_rx_ctag_filter_info(dev);
11082 			} else {
11083 				vlan_drop_rx_ctag_filter_info(dev);
11084 			}
11085 		}
11086 
11087 		if (diff & NETIF_F_HW_VLAN_STAG_FILTER) {
11088 			if (features & NETIF_F_HW_VLAN_STAG_FILTER) {
11089 				dev->features = features;
11090 				err |= vlan_get_rx_stag_filter_info(dev);
11091 			} else {
11092 				vlan_drop_rx_stag_filter_info(dev);
11093 			}
11094 		}
11095 
11096 		dev->features = features;
11097 	}
11098 
11099 	return err < 0 ? 0 : 1;
11100 }
11101 
11102 /**
11103  *	netdev_update_features - recalculate device features
11104  *	@dev: the device to check
11105  *
11106  *	Recalculate dev->features set and send notifications if it
11107  *	has changed. Should be called after driver or hardware dependent
11108  *	conditions might have changed that influence the features.
11109  */
11110 void netdev_update_features(struct net_device *dev)
11111 {
11112 	if (__netdev_update_features(dev))
11113 		netdev_features_change(dev);
11114 }
11115 EXPORT_SYMBOL(netdev_update_features);
11116 
11117 /**
11118  *	netdev_change_features - recalculate device features
11119  *	@dev: the device to check
11120  *
11121  *	Recalculate dev->features set and send notifications even
11122  *	if they have not changed. Should be called instead of
11123  *	netdev_update_features() if also dev->vlan_features might
11124  *	have changed to allow the changes to be propagated to stacked
11125  *	VLAN devices.
11126  */
11127 void netdev_change_features(struct net_device *dev)
11128 {
11129 	__netdev_update_features(dev);
11130 	netdev_features_change(dev);
11131 }
11132 EXPORT_SYMBOL(netdev_change_features);
11133 
11134 /**
11135  *	netif_stacked_transfer_operstate -	transfer operstate
11136  *	@rootdev: the root or lower level device to transfer state from
11137  *	@dev: the device to transfer operstate to
11138  *
11139  *	Transfer operational state from root to device. This is normally
11140  *	called when a stacking relationship exists between the root
11141  *	device and the device(a leaf device).
11142  */
11143 void netif_stacked_transfer_operstate(const struct net_device *rootdev,
11144 					struct net_device *dev)
11145 {
11146 	if (rootdev->operstate == IF_OPER_DORMANT)
11147 		netif_dormant_on(dev);
11148 	else
11149 		netif_dormant_off(dev);
11150 
11151 	if (rootdev->operstate == IF_OPER_TESTING)
11152 		netif_testing_on(dev);
11153 	else
11154 		netif_testing_off(dev);
11155 
11156 	if (netif_carrier_ok(rootdev))
11157 		netif_carrier_on(dev);
11158 	else
11159 		netif_carrier_off(dev);
11160 }
11161 EXPORT_SYMBOL(netif_stacked_transfer_operstate);
11162 
11163 static int netif_alloc_rx_queues(struct net_device *dev)
11164 {
11165 	unsigned int i, count = dev->num_rx_queues;
11166 	struct netdev_rx_queue *rx;
11167 	size_t sz = count * sizeof(*rx);
11168 	int err = 0;
11169 
11170 	BUG_ON(count < 1);
11171 
11172 	rx = kvzalloc(sz, GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
11173 	if (!rx)
11174 		return -ENOMEM;
11175 
11176 	dev->_rx = rx;
11177 
11178 	for (i = 0; i < count; i++) {
11179 		rx[i].dev = dev;
11180 
11181 		/* XDP RX-queue setup */
11182 		err = xdp_rxq_info_reg(&rx[i].xdp_rxq, dev, i, 0);
11183 		if (err < 0)
11184 			goto err_rxq_info;
11185 	}
11186 	return 0;
11187 
11188 err_rxq_info:
11189 	/* Rollback successful reg's and free other resources */
11190 	while (i--)
11191 		xdp_rxq_info_unreg(&rx[i].xdp_rxq);
11192 	kvfree(dev->_rx);
11193 	dev->_rx = NULL;
11194 	return err;
11195 }
11196 
11197 static void netif_free_rx_queues(struct net_device *dev)
11198 {
11199 	unsigned int i, count = dev->num_rx_queues;
11200 
11201 	/* netif_alloc_rx_queues alloc failed, resources have been unreg'ed */
11202 	if (!dev->_rx)
11203 		return;
11204 
11205 	for (i = 0; i < count; i++)
11206 		xdp_rxq_info_unreg(&dev->_rx[i].xdp_rxq);
11207 
11208 	kvfree(dev->_rx);
11209 }
11210 
11211 static void netdev_init_one_queue(struct net_device *dev,
11212 				  struct netdev_queue *queue, void *_unused)
11213 {
11214 	/* Initialize queue lock */
11215 	spin_lock_init(&queue->_xmit_lock);
11216 	netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
11217 	queue->xmit_lock_owner = -1;
11218 	netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
11219 	queue->dev = dev;
11220 #ifdef CONFIG_BQL
11221 	dql_init(&queue->dql, HZ);
11222 #endif
11223 }
11224 
11225 static void netif_free_tx_queues(struct net_device *dev)
11226 {
11227 	kvfree(dev->_tx);
11228 }
11229 
11230 static int netif_alloc_netdev_queues(struct net_device *dev)
11231 {
11232 	unsigned int count = dev->num_tx_queues;
11233 	struct netdev_queue *tx;
11234 	size_t sz = count * sizeof(*tx);
11235 
11236 	if (count < 1 || count > 0xffff)
11237 		return -EINVAL;
11238 
11239 	tx = kvzalloc(sz, GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
11240 	if (!tx)
11241 		return -ENOMEM;
11242 
11243 	dev->_tx = tx;
11244 
11245 	netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
11246 	spin_lock_init(&dev->tx_global_lock);
11247 	spin_lock_init(&dev->watchdog_lock);
11248 	dev->watchdog_ref_held = false;
11249 	return 0;
11250 }
11251 
11252 void netif_tx_stop_all_queues(struct net_device *dev)
11253 {
11254 	unsigned int i;
11255 
11256 	for (i = 0; i < dev->num_tx_queues; i++) {
11257 		struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
11258 
11259 		netif_tx_stop_queue(txq);
11260 	}
11261 }
11262 EXPORT_SYMBOL(netif_tx_stop_all_queues);
11263 
11264 static int netdev_do_alloc_pcpu_stats(struct net_device *dev)
11265 {
11266 	void __percpu *v;
11267 
11268 	/* Drivers implementing ndo_get_peer_dev must support tstat
11269 	 * accounting, so that skb_do_redirect() can bump the dev's
11270 	 * RX stats upon network namespace switch.
11271 	 */
11272 	if (dev->netdev_ops->ndo_get_peer_dev &&
11273 	    dev->pcpu_stat_type != NETDEV_PCPU_STAT_TSTATS)
11274 		return -EOPNOTSUPP;
11275 
11276 	switch (dev->pcpu_stat_type) {
11277 	case NETDEV_PCPU_STAT_NONE:
11278 		return 0;
11279 	case NETDEV_PCPU_STAT_LSTATS:
11280 		v = dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
11281 		break;
11282 	case NETDEV_PCPU_STAT_TSTATS:
11283 		v = dev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
11284 		break;
11285 	case NETDEV_PCPU_STAT_DSTATS:
11286 		v = dev->dstats = netdev_alloc_pcpu_stats(struct pcpu_dstats);
11287 		break;
11288 	default:
11289 		return -EINVAL;
11290 	}
11291 
11292 	return v ? 0 : -ENOMEM;
11293 }
11294 
11295 static void netdev_do_free_pcpu_stats(struct net_device *dev)
11296 {
11297 	switch (dev->pcpu_stat_type) {
11298 	case NETDEV_PCPU_STAT_NONE:
11299 		return;
11300 	case NETDEV_PCPU_STAT_LSTATS:
11301 		free_percpu(dev->lstats);
11302 		break;
11303 	case NETDEV_PCPU_STAT_TSTATS:
11304 		free_percpu(dev->tstats);
11305 		break;
11306 	case NETDEV_PCPU_STAT_DSTATS:
11307 		free_percpu(dev->dstats);
11308 		break;
11309 	}
11310 }
11311 
11312 static void netdev_free_phy_link_topology(struct net_device *dev)
11313 {
11314 	struct phy_link_topology *topo = dev->link_topo;
11315 
11316 	if (IS_ENABLED(CONFIG_PHYLIB) && topo) {
11317 		xa_destroy(&topo->phys);
11318 		kfree(topo);
11319 		dev->link_topo = NULL;
11320 	}
11321 }
11322 
11323 /**
11324  * register_netdevice() - register a network device
11325  * @dev: device to register
11326  *
11327  * Take a prepared network device structure and make it externally accessible.
11328  * A %NETDEV_REGISTER message is sent to the netdev notifier chain.
11329  * Callers must hold the rtnl lock - you may want register_netdev()
11330  * instead of this.
11331  */
11332 int register_netdevice(struct net_device *dev)
11333 {
11334 	int ret;
11335 	struct net *net = dev_net(dev);
11336 
11337 	BUILD_BUG_ON(sizeof(netdev_features_t) * BITS_PER_BYTE <
11338 		     NETDEV_FEATURE_COUNT);
11339 	BUG_ON(dev_boot_phase);
11340 	ASSERT_RTNL();
11341 
11342 	might_sleep();
11343 
11344 	/* When net_device's are persistent, this will be fatal. */
11345 	BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
11346 	BUG_ON(!net);
11347 
11348 	ret = ethtool_check_ops(dev->ethtool_ops);
11349 	if (ret)
11350 		return ret;
11351 
11352 	/* rss ctx ID 0 is reserved for the default context, start from 1 */
11353 	xa_init_flags(&dev->ethtool->rss_ctx, XA_FLAGS_ALLOC1);
11354 	mutex_init(&dev->ethtool->rss_lock);
11355 
11356 	spin_lock_init(&dev->addr_list_lock);
11357 	netdev_set_addr_lockdep_class(dev);
11358 
11359 	ret = dev_get_valid_name(net, dev, dev->name);
11360 	if (ret < 0)
11361 		goto out;
11362 
11363 	ret = -ENOMEM;
11364 	dev->name_node = netdev_name_node_head_alloc(dev);
11365 	if (!dev->name_node)
11366 		goto out;
11367 
11368 	/* Init, if this function is available */
11369 	if (dev->netdev_ops->ndo_init) {
11370 		ret = dev->netdev_ops->ndo_init(dev);
11371 		if (ret) {
11372 			if (ret > 0)
11373 				ret = -EIO;
11374 			goto err_free_name;
11375 		}
11376 	}
11377 
11378 	if (((dev->hw_features | dev->features) &
11379 	     NETIF_F_HW_VLAN_CTAG_FILTER) &&
11380 	    (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
11381 	     !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
11382 		netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
11383 		ret = -EINVAL;
11384 		goto err_uninit;
11385 	}
11386 
11387 	if (netdev_need_ops_lock(dev) &&
11388 	    dev->netdev_ops->ndo_set_rx_mode &&
11389 	    !dev->netdev_ops->ndo_set_rx_mode_async)
11390 		netdev_WARN(dev, "ops-locked drivers should use ndo_set_rx_mode_async\n");
11391 
11392 	ret = netdev_do_alloc_pcpu_stats(dev);
11393 	if (ret)
11394 		goto err_uninit;
11395 
11396 	ret = dev_index_reserve(net, dev->ifindex);
11397 	if (ret < 0)
11398 		goto err_free_pcpu;
11399 	dev->ifindex = ret;
11400 
11401 	/* Transfer changeable features to wanted_features and enable
11402 	 * software offloads (GSO and GRO).
11403 	 */
11404 	dev->hw_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_SOFT_FEATURES_OFF);
11405 	dev->features |= NETIF_F_SOFT_FEATURES;
11406 
11407 	if (dev->udp_tunnel_nic_info) {
11408 		dev->features |= NETIF_F_RX_UDP_TUNNEL_PORT;
11409 		dev->hw_features |= NETIF_F_RX_UDP_TUNNEL_PORT;
11410 	}
11411 
11412 	dev->wanted_features = dev->features & dev->hw_features;
11413 
11414 	if (!(dev->flags & IFF_LOOPBACK))
11415 		dev->hw_features |= NETIF_F_NOCACHE_COPY;
11416 
11417 	/* If IPv4 TCP segmentation offload is supported we should also
11418 	 * allow the device to enable segmenting the frame with the option
11419 	 * of ignoring a static IP ID value.  This doesn't enable the
11420 	 * feature itself but allows the user to enable it later.
11421 	 */
11422 	if (dev->hw_features & NETIF_F_TSO)
11423 		dev->hw_features |= NETIF_F_TSO_MANGLEID;
11424 	if (dev->vlan_features & NETIF_F_TSO)
11425 		dev->vlan_features |= NETIF_F_TSO_MANGLEID;
11426 	if (dev->mpls_features & NETIF_F_TSO)
11427 		dev->mpls_features |= NETIF_F_TSO_MANGLEID;
11428 	if (dev->hw_enc_features & NETIF_F_TSO)
11429 		dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
11430 
11431 	/* TSO_MANGLEID belongs in mangleid_features by definition */
11432 	dev->mangleid_features |= NETIF_F_TSO_MANGLEID;
11433 
11434 	/* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
11435 	 */
11436 	dev->vlan_features |= NETIF_F_HIGHDMA;
11437 
11438 	/* Make NETIF_F_SG inheritable to tunnel devices.
11439 	 */
11440 	dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
11441 
11442 	/* Make NETIF_F_SG inheritable to MPLS.
11443 	 */
11444 	dev->mpls_features |= NETIF_F_SG;
11445 
11446 	ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
11447 	ret = notifier_to_errno(ret);
11448 	if (ret)
11449 		goto err_ifindex_release;
11450 
11451 	ret = netdev_register_kobject(dev);
11452 
11453 	netdev_lock(dev);
11454 	WRITE_ONCE(dev->reg_state, ret ? NETREG_UNREGISTERED : NETREG_REGISTERED);
11455 	netdev_unlock(dev);
11456 
11457 	if (ret)
11458 		goto err_uninit_notify;
11459 
11460 	netdev_lock_ops(dev);
11461 	__netdev_update_features(dev);
11462 	netdev_unlock_ops(dev);
11463 
11464 	/*
11465 	 *	Default initial state at registry is that the
11466 	 *	device is present.
11467 	 */
11468 
11469 	set_bit(__LINK_STATE_PRESENT, &dev->state);
11470 
11471 	linkwatch_init_dev(dev);
11472 
11473 	dev_init_scheduler(dev);
11474 
11475 	netdev_hold(dev, &dev->dev_registered_tracker, GFP_KERNEL);
11476 	list_netdevice(dev);
11477 
11478 	add_device_randomness(dev->dev_addr, dev->addr_len);
11479 
11480 	/* If the device has permanent device address, driver should
11481 	 * set dev_addr and also addr_assign_type should be set to
11482 	 * NET_ADDR_PERM (default value).
11483 	 */
11484 	if (dev->addr_assign_type == NET_ADDR_PERM)
11485 		memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
11486 
11487 	/* Notify protocols, that a new device appeared. */
11488 	netdev_lock_ops(dev);
11489 	ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
11490 	netdev_unlock_ops(dev);
11491 	ret = notifier_to_errno(ret);
11492 	if (ret) {
11493 		/* Expect explicit free_netdev() on failure */
11494 		dev->needs_free_netdev = false;
11495 		unregister_netdevice_queue(dev, NULL);
11496 		goto out;
11497 	}
11498 	/*
11499 	 *	Prevent userspace races by waiting until the network
11500 	 *	device is fully setup before sending notifications.
11501 	 */
11502 	if (!(dev->rtnl_link_ops && dev->rtnl_link_initializing))
11503 		rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL, 0, NULL);
11504 
11505 out:
11506 	return ret;
11507 
11508 err_uninit_notify:
11509 	call_netdevice_notifiers(NETDEV_PRE_UNINIT, dev);
11510 err_ifindex_release:
11511 	dev_index_release(net, dev->ifindex);
11512 err_free_pcpu:
11513 	netdev_do_free_pcpu_stats(dev);
11514 err_uninit:
11515 	if (dev->netdev_ops->ndo_uninit)
11516 		dev->netdev_ops->ndo_uninit(dev);
11517 	if (dev->priv_destructor)
11518 		dev->priv_destructor(dev);
11519 err_free_name:
11520 	netdev_name_node_free(dev->name_node);
11521 	goto out;
11522 }
11523 EXPORT_SYMBOL(register_netdevice);
11524 
11525 /* Initialize the core of a dummy net device.
11526  * The setup steps dummy netdevs need which normal netdevs get by going
11527  * through register_netdevice().
11528  */
11529 static void init_dummy_netdev(struct net_device *dev)
11530 {
11531 	/* make sure we BUG if trying to hit standard
11532 	 * register/unregister code path
11533 	 */
11534 	dev->reg_state = NETREG_DUMMY;
11535 
11536 	/* a dummy interface is started by default */
11537 	set_bit(__LINK_STATE_PRESENT, &dev->state);
11538 	set_bit(__LINK_STATE_START, &dev->state);
11539 
11540 	/* Note : We dont allocate pcpu_refcnt for dummy devices,
11541 	 * because users of this 'device' dont need to change
11542 	 * its refcount.
11543 	 */
11544 }
11545 
11546 /**
11547  *	register_netdev	- register a network device
11548  *	@dev: device to register
11549  *
11550  *	Take a completed network device structure and add it to the kernel
11551  *	interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
11552  *	chain. 0 is returned on success. A negative errno code is returned
11553  *	on a failure to set up the device, or if the name is a duplicate.
11554  *
11555  *	This is a wrapper around register_netdevice that takes the rtnl semaphore
11556  *	and expands the device name if you passed a format string to
11557  *	alloc_netdev.
11558  */
11559 int register_netdev(struct net_device *dev)
11560 {
11561 	struct net *net = dev_net(dev);
11562 	int err;
11563 
11564 	if (rtnl_net_lock_killable(net))
11565 		return -EINTR;
11566 
11567 	err = register_netdevice(dev);
11568 
11569 	rtnl_net_unlock(net);
11570 
11571 	return err;
11572 }
11573 EXPORT_SYMBOL(register_netdev);
11574 
11575 int netdev_refcnt_read(const struct net_device *dev)
11576 {
11577 #ifdef CONFIG_PCPU_DEV_REFCNT
11578 	int i, refcnt = 0;
11579 
11580 	for_each_possible_cpu(i)
11581 		refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
11582 	return refcnt;
11583 #else
11584 	return refcount_read(&dev->dev_refcnt);
11585 #endif
11586 }
11587 EXPORT_SYMBOL(netdev_refcnt_read);
11588 
11589 int netdev_unregister_timeout_secs __read_mostly = 10;
11590 
11591 #define WAIT_REFS_MIN_MSECS 1
11592 #define WAIT_REFS_MAX_MSECS 250
11593 /**
11594  * netdev_wait_allrefs_any - wait until all references are gone.
11595  * @list: list of net_devices to wait on
11596  *
11597  * This is called when unregistering network devices.
11598  *
11599  * Any protocol or device that holds a reference should register
11600  * for netdevice notification, and cleanup and put back the
11601  * reference if they receive an UNREGISTER event.
11602  * We can get stuck here if buggy protocols don't correctly
11603  * call dev_put.
11604  */
11605 static struct net_device *netdev_wait_allrefs_any(struct list_head *list)
11606 {
11607 	unsigned long rebroadcast_time, warning_time;
11608 	struct net_device *dev;
11609 	int wait = 0;
11610 
11611 	rebroadcast_time = warning_time = jiffies;
11612 
11613 	list_for_each_entry(dev, list, todo_list)
11614 		if (netdev_refcnt_read(dev) == 1)
11615 			return dev;
11616 
11617 	while (true) {
11618 		if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
11619 			rtnl_lock();
11620 
11621 			/* Rebroadcast unregister notification */
11622 			list_for_each_entry(dev, list, todo_list) {
11623 				struct net *net = dev_net(dev);
11624 
11625 				__rtnl_net_lock(net);
11626 				call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
11627 				__rtnl_net_unlock(net);
11628 			}
11629 
11630 			__rtnl_unlock();
11631 			rcu_barrier();
11632 			rtnl_lock();
11633 
11634 			list_for_each_entry(dev, list, todo_list)
11635 				if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
11636 					     &dev->state)) {
11637 					/* We must not have linkwatch events
11638 					 * pending on unregister. If this
11639 					 * happens, we simply run the queue
11640 					 * unscheduled, resulting in a noop
11641 					 * for this device.
11642 					 */
11643 					linkwatch_run_queue();
11644 					break;
11645 				}
11646 
11647 			__rtnl_unlock();
11648 
11649 			rebroadcast_time = jiffies;
11650 		}
11651 
11652 		rcu_barrier();
11653 
11654 		if (!wait) {
11655 			wait = WAIT_REFS_MIN_MSECS;
11656 		} else {
11657 			msleep(wait);
11658 			wait = min(wait << 1, WAIT_REFS_MAX_MSECS);
11659 		}
11660 
11661 		list_for_each_entry(dev, list, todo_list)
11662 			if (netdev_refcnt_read(dev) == 1)
11663 				return dev;
11664 
11665 		if (time_after(jiffies, warning_time +
11666 			       READ_ONCE(netdev_unregister_timeout_secs) * HZ)) {
11667 			list_for_each_entry(dev, list, todo_list) {
11668 				pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
11669 					 dev->name, netdev_refcnt_read(dev));
11670 				ref_tracker_dir_print(&dev->refcnt_tracker, 10);
11671 			}
11672 
11673 			warning_time = jiffies;
11674 		}
11675 	}
11676 }
11677 
11678 /* The sequence is:
11679  *
11680  *	rtnl_lock();
11681  *	...
11682  *	register_netdevice(x1);
11683  *	register_netdevice(x2);
11684  *	...
11685  *	unregister_netdevice(y1);
11686  *	unregister_netdevice(y2);
11687  *      ...
11688  *	rtnl_unlock();
11689  *	free_netdev(y1);
11690  *	free_netdev(y2);
11691  *
11692  * We are invoked by rtnl_unlock().
11693  * This allows us to deal with problems:
11694  * 1) We can delete sysfs objects which invoke hotplug
11695  *    without deadlocking with linkwatch via keventd.
11696  * 2) Since we run with the RTNL semaphore not held, we can sleep
11697  *    safely in order to wait for the netdev refcnt to drop to zero.
11698  *
11699  * We must not return until all unregister events added during
11700  * the interval the lock was held have been completed.
11701  */
11702 void netdev_run_todo(void)
11703 {
11704 	struct net_device *dev, *tmp;
11705 	struct list_head list;
11706 	int cnt;
11707 #ifdef CONFIG_LOCKDEP
11708 	struct list_head unlink_list;
11709 
11710 	list_replace_init(&net_unlink_list, &unlink_list);
11711 
11712 	while (!list_empty(&unlink_list)) {
11713 		dev = list_first_entry(&unlink_list, struct net_device,
11714 				       unlink_list);
11715 		list_del_init(&dev->unlink_list);
11716 		dev->nested_level = dev->lower_level - 1;
11717 	}
11718 #endif
11719 
11720 	/* Snapshot list, allow later requests */
11721 	list_replace_init(&net_todo_list, &list);
11722 
11723 	__rtnl_unlock();
11724 
11725 	/* Wait for rcu callbacks to finish before next phase */
11726 	if (!list_empty(&list))
11727 		rcu_barrier();
11728 
11729 	list_for_each_entry_safe(dev, tmp, &list, todo_list) {
11730 		if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
11731 			netdev_WARN(dev, "run_todo but not unregistering\n");
11732 			list_del(&dev->todo_list);
11733 			continue;
11734 		}
11735 
11736 		netdev_lock(dev);
11737 		WRITE_ONCE(dev->reg_state, NETREG_UNREGISTERED);
11738 		netdev_unlock(dev);
11739 		linkwatch_sync_dev(dev);
11740 	}
11741 
11742 	cnt = 0;
11743 	while (!list_empty(&list)) {
11744 		dev = netdev_wait_allrefs_any(&list);
11745 		list_del(&dev->todo_list);
11746 
11747 		/* paranoia */
11748 		BUG_ON(netdev_refcnt_read(dev) != 1);
11749 		BUG_ON(!list_empty(&dev->ptype_all));
11750 		BUG_ON(!list_empty(&dev->ptype_specific));
11751 		WARN_ON(rcu_access_pointer(dev->ip_ptr));
11752 		WARN_ON(rcu_access_pointer(dev->ip6_ptr));
11753 
11754 		netdev_name_node_alt_flush(dev);
11755 		netdev_name_node_free(dev->name_node);
11756 		netdev_do_free_pcpu_stats(dev);
11757 		if (dev->priv_destructor)
11758 			dev->priv_destructor(dev);
11759 		if (dev->needs_free_netdev)
11760 			free_netdev(dev);
11761 
11762 		cnt++;
11763 
11764 		/* Free network device */
11765 		kobject_put(&dev->dev.kobj);
11766 	}
11767 	if (cnt && atomic_sub_and_test(cnt, &dev_unreg_count))
11768 		wake_up(&netdev_unregistering_wq);
11769 }
11770 
11771 /* Collate per-cpu network dstats statistics
11772  *
11773  * Read per-cpu network statistics from dev->dstats and populate the related
11774  * fields in @s.
11775  */
11776 static void dev_fetch_dstats(struct rtnl_link_stats64 *s,
11777 			     const struct pcpu_dstats __percpu *dstats)
11778 {
11779 	int cpu;
11780 
11781 	for_each_possible_cpu(cpu) {
11782 		u64 rx_packets, rx_bytes, rx_drops;
11783 		u64 tx_packets, tx_bytes, tx_drops;
11784 		const struct pcpu_dstats *stats;
11785 		unsigned int start;
11786 
11787 		stats = per_cpu_ptr(dstats, cpu);
11788 		do {
11789 			start = u64_stats_fetch_begin(&stats->syncp);
11790 			rx_packets = u64_stats_read(&stats->rx_packets);
11791 			rx_bytes   = u64_stats_read(&stats->rx_bytes);
11792 			rx_drops   = u64_stats_read(&stats->rx_drops);
11793 			tx_packets = u64_stats_read(&stats->tx_packets);
11794 			tx_bytes   = u64_stats_read(&stats->tx_bytes);
11795 			tx_drops   = u64_stats_read(&stats->tx_drops);
11796 		} while (u64_stats_fetch_retry(&stats->syncp, start));
11797 
11798 		s->rx_packets += rx_packets;
11799 		s->rx_bytes   += rx_bytes;
11800 		s->rx_dropped += rx_drops;
11801 		s->tx_packets += tx_packets;
11802 		s->tx_bytes   += tx_bytes;
11803 		s->tx_dropped += tx_drops;
11804 	}
11805 }
11806 
11807 /* ndo_get_stats64 implementation for dtstats-based accounting.
11808  *
11809  * Populate @s from dev->stats and dev->dstats. This is used internally by the
11810  * core for NETDEV_PCPU_STAT_DSTAT-type stats collection.
11811  */
11812 static void dev_get_dstats64(const struct net_device *dev,
11813 			     struct rtnl_link_stats64 *s)
11814 {
11815 	netdev_stats_to_stats64(s, &dev->stats);
11816 	dev_fetch_dstats(s, dev->dstats);
11817 }
11818 
11819 /* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
11820  * all the same fields in the same order as net_device_stats, with only
11821  * the type differing, but rtnl_link_stats64 may have additional fields
11822  * at the end for newer counters.
11823  */
11824 void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
11825 			     const struct net_device_stats *netdev_stats)
11826 {
11827 	size_t i, n = sizeof(*netdev_stats) / sizeof(atomic_long_t);
11828 	const atomic_long_t *src = (atomic_long_t *)netdev_stats;
11829 	u64 *dst = (u64 *)stats64;
11830 
11831 	BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
11832 	for (i = 0; i < n; i++)
11833 		dst[i] = (unsigned long)atomic_long_read(&src[i]);
11834 	/* zero out counters that only exist in rtnl_link_stats64 */
11835 	memset((char *)stats64 + n * sizeof(u64), 0,
11836 	       sizeof(*stats64) - n * sizeof(u64));
11837 }
11838 EXPORT_SYMBOL(netdev_stats_to_stats64);
11839 
11840 static __cold struct net_device_core_stats __percpu *netdev_core_stats_alloc(
11841 		struct net_device *dev)
11842 {
11843 	struct net_device_core_stats __percpu *p;
11844 
11845 	p = alloc_percpu_gfp(struct net_device_core_stats,
11846 			     GFP_ATOMIC | __GFP_NOWARN);
11847 
11848 	if (p && cmpxchg(&dev->core_stats, NULL, p))
11849 		free_percpu(p);
11850 
11851 	/* This READ_ONCE() pairs with the cmpxchg() above */
11852 	return READ_ONCE(dev->core_stats);
11853 }
11854 
11855 noinline void netdev_core_stats_inc(struct net_device *dev, u32 offset)
11856 {
11857 	/* This READ_ONCE() pairs with the write in netdev_core_stats_alloc() */
11858 	struct net_device_core_stats __percpu *p = READ_ONCE(dev->core_stats);
11859 	unsigned long __percpu *field;
11860 
11861 	if (unlikely(!p)) {
11862 		p = netdev_core_stats_alloc(dev);
11863 		if (!p)
11864 			return;
11865 	}
11866 
11867 	field = (unsigned long __percpu *)((void __percpu *)p + offset);
11868 	this_cpu_inc(*field);
11869 }
11870 EXPORT_SYMBOL_GPL(netdev_core_stats_inc);
11871 
11872 /**
11873  *	dev_get_stats	- get network device statistics
11874  *	@dev: device to get statistics from
11875  *	@storage: place to store stats
11876  *
11877  *	Get network statistics from device. Return @storage.
11878  *	The device driver may provide its own method by setting
11879  *	dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
11880  *	otherwise the internal statistics structure is used.
11881  */
11882 struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
11883 					struct rtnl_link_stats64 *storage)
11884 {
11885 	const struct net_device_ops *ops = dev->netdev_ops;
11886 	const struct net_device_core_stats __percpu *p;
11887 
11888 	/*
11889 	 * IPv{4,6} and udp tunnels share common stat helpers and use
11890 	 * different stat type (NETDEV_PCPU_STAT_TSTATS vs
11891 	 * NETDEV_PCPU_STAT_DSTATS). Ensure the accounting is consistent.
11892 	 */
11893 	BUILD_BUG_ON(offsetof(struct pcpu_sw_netstats, rx_bytes) !=
11894 		     offsetof(struct pcpu_dstats, rx_bytes));
11895 	BUILD_BUG_ON(offsetof(struct pcpu_sw_netstats, rx_packets) !=
11896 		     offsetof(struct pcpu_dstats, rx_packets));
11897 	BUILD_BUG_ON(offsetof(struct pcpu_sw_netstats, tx_bytes) !=
11898 		     offsetof(struct pcpu_dstats, tx_bytes));
11899 	BUILD_BUG_ON(offsetof(struct pcpu_sw_netstats, tx_packets) !=
11900 		     offsetof(struct pcpu_dstats, tx_packets));
11901 
11902 	if (ops->ndo_get_stats64) {
11903 		memset(storage, 0, sizeof(*storage));
11904 		ops->ndo_get_stats64(dev, storage);
11905 	} else if (ops->ndo_get_stats) {
11906 		netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
11907 	} else if (dev->pcpu_stat_type == NETDEV_PCPU_STAT_TSTATS) {
11908 		dev_get_tstats64(dev, storage);
11909 	} else if (dev->pcpu_stat_type == NETDEV_PCPU_STAT_DSTATS) {
11910 		dev_get_dstats64(dev, storage);
11911 	} else {
11912 		netdev_stats_to_stats64(storage, &dev->stats);
11913 	}
11914 
11915 	/* This READ_ONCE() pairs with the write in netdev_core_stats_alloc() */
11916 	p = READ_ONCE(dev->core_stats);
11917 	if (p) {
11918 		const struct net_device_core_stats *core_stats;
11919 		int i;
11920 
11921 		for_each_possible_cpu(i) {
11922 			core_stats = per_cpu_ptr(p, i);
11923 			storage->rx_dropped += READ_ONCE(core_stats->rx_dropped);
11924 			storage->tx_dropped += READ_ONCE(core_stats->tx_dropped);
11925 			storage->rx_nohandler += READ_ONCE(core_stats->rx_nohandler);
11926 			storage->rx_otherhost_dropped += READ_ONCE(core_stats->rx_otherhost_dropped);
11927 		}
11928 	}
11929 	return storage;
11930 }
11931 EXPORT_SYMBOL(dev_get_stats);
11932 
11933 /**
11934  *	dev_fetch_sw_netstats - get per-cpu network device statistics
11935  *	@s: place to store stats
11936  *	@netstats: per-cpu network stats to read from
11937  *
11938  *	Read per-cpu network statistics and populate the related fields in @s.
11939  */
11940 void dev_fetch_sw_netstats(struct rtnl_link_stats64 *s,
11941 			   const struct pcpu_sw_netstats __percpu *netstats)
11942 {
11943 	int cpu;
11944 
11945 	for_each_possible_cpu(cpu) {
11946 		u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
11947 		const struct pcpu_sw_netstats *stats;
11948 		unsigned int start;
11949 
11950 		stats = per_cpu_ptr(netstats, cpu);
11951 		do {
11952 			start = u64_stats_fetch_begin(&stats->syncp);
11953 			rx_packets = u64_stats_read(&stats->rx_packets);
11954 			rx_bytes   = u64_stats_read(&stats->rx_bytes);
11955 			tx_packets = u64_stats_read(&stats->tx_packets);
11956 			tx_bytes   = u64_stats_read(&stats->tx_bytes);
11957 		} while (u64_stats_fetch_retry(&stats->syncp, start));
11958 
11959 		s->rx_packets += rx_packets;
11960 		s->rx_bytes   += rx_bytes;
11961 		s->tx_packets += tx_packets;
11962 		s->tx_bytes   += tx_bytes;
11963 	}
11964 }
11965 EXPORT_SYMBOL_GPL(dev_fetch_sw_netstats);
11966 
11967 /**
11968  *	dev_get_tstats64 - ndo_get_stats64 implementation
11969  *	@dev: device to get statistics from
11970  *	@s: place to store stats
11971  *
11972  *	Populate @s from dev->stats and dev->tstats. Can be used as
11973  *	ndo_get_stats64() callback.
11974  */
11975 void dev_get_tstats64(struct net_device *dev, struct rtnl_link_stats64 *s)
11976 {
11977 	netdev_stats_to_stats64(s, &dev->stats);
11978 	dev_fetch_sw_netstats(s, dev->tstats);
11979 }
11980 EXPORT_SYMBOL_GPL(dev_get_tstats64);
11981 
11982 struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
11983 {
11984 	struct netdev_queue *queue = dev_ingress_queue(dev);
11985 
11986 #ifdef CONFIG_NET_CLS_ACT
11987 	if (queue)
11988 		return queue;
11989 	queue = kzalloc_obj(*queue);
11990 	if (!queue)
11991 		return NULL;
11992 	netdev_init_one_queue(dev, queue, NULL);
11993 	RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
11994 	RCU_INIT_POINTER(queue->qdisc_sleeping, &noop_qdisc);
11995 	rcu_assign_pointer(dev->ingress_queue, queue);
11996 #endif
11997 	return queue;
11998 }
11999 
12000 static const struct ethtool_ops default_ethtool_ops;
12001 
12002 void netdev_set_default_ethtool_ops(struct net_device *dev,
12003 				    const struct ethtool_ops *ops)
12004 {
12005 	if (dev->ethtool_ops == &default_ethtool_ops)
12006 		dev->ethtool_ops = ops;
12007 }
12008 EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
12009 
12010 /**
12011  * netdev_sw_irq_coalesce_default_on() - enable SW IRQ coalescing by default
12012  * @dev: netdev to enable the IRQ coalescing on
12013  *
12014  * Sets a conservative default for SW IRQ coalescing. Users can use
12015  * sysfs attributes to override the default values.
12016  */
12017 void netdev_sw_irq_coalesce_default_on(struct net_device *dev)
12018 {
12019 	WARN_ON(dev->reg_state == NETREG_REGISTERED);
12020 
12021 	if (!IS_ENABLED(CONFIG_PREEMPT_RT)) {
12022 		netdev_set_gro_flush_timeout(dev, 20000);
12023 		netdev_set_defer_hard_irqs(dev, 1);
12024 	}
12025 }
12026 EXPORT_SYMBOL_GPL(netdev_sw_irq_coalesce_default_on);
12027 
12028 /**
12029  * alloc_netdev_mqs - allocate network device
12030  * @sizeof_priv: size of private data to allocate space for
12031  * @name: device name format string
12032  * @name_assign_type: origin of device name
12033  * @setup: callback to initialize device
12034  * @txqs: the number of TX subqueues to allocate
12035  * @rxqs: the number of RX subqueues to allocate
12036  *
12037  * Allocates a struct net_device with private data area for driver use
12038  * and performs basic initialization.  Also allocates subqueue structs
12039  * for each queue on the device.
12040  */
12041 struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
12042 		unsigned char name_assign_type,
12043 		void (*setup)(struct net_device *),
12044 		unsigned int txqs, unsigned int rxqs)
12045 {
12046 	struct net_device *dev;
12047 	size_t napi_config_sz;
12048 	unsigned int maxqs;
12049 
12050 	BUG_ON(strlen(name) >= sizeof(dev->name));
12051 
12052 	if (txqs < 1) {
12053 		pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
12054 		return NULL;
12055 	}
12056 
12057 	if (rxqs < 1) {
12058 		pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
12059 		return NULL;
12060 	}
12061 
12062 	maxqs = max(txqs, rxqs);
12063 
12064 	dev = kvzalloc_flex(*dev, priv, sizeof_priv,
12065 			    GFP_KERNEL_ACCOUNT | __GFP_RETRY_MAYFAIL);
12066 	if (!dev)
12067 		return NULL;
12068 
12069 	dev->priv_len = sizeof_priv;
12070 
12071 	ref_tracker_dir_init(&dev->refcnt_tracker, 128, "netdev");
12072 #ifdef CONFIG_PCPU_DEV_REFCNT
12073 	dev->pcpu_refcnt = alloc_percpu(int);
12074 	if (!dev->pcpu_refcnt)
12075 		goto free_dev;
12076 	__dev_hold(dev);
12077 #else
12078 	refcount_set(&dev->dev_refcnt, 1);
12079 #endif
12080 
12081 	if (dev_addr_init(dev))
12082 		goto free_pcpu;
12083 
12084 	dev_mc_init(dev);
12085 	dev_uc_init(dev);
12086 
12087 	dev_net_set(dev, &init_net);
12088 
12089 	dev->gso_max_size = GSO_LEGACY_MAX_SIZE;
12090 	dev->xdp_zc_max_segs = 1;
12091 	dev->gso_max_segs = GSO_MAX_SEGS;
12092 	dev->gro_max_size = GRO_LEGACY_MAX_SIZE;
12093 	dev->gso_ipv4_max_size = GSO_LEGACY_MAX_SIZE;
12094 	dev->gro_ipv4_max_size = GRO_LEGACY_MAX_SIZE;
12095 	dev->tso_max_size = TSO_LEGACY_MAX_SIZE;
12096 	dev->tso_max_segs = TSO_MAX_SEGS;
12097 	dev->upper_level = 1;
12098 	dev->lower_level = 1;
12099 #ifdef CONFIG_LOCKDEP
12100 	dev->nested_level = 0;
12101 	INIT_LIST_HEAD(&dev->unlink_list);
12102 #endif
12103 
12104 	INIT_LIST_HEAD(&dev->napi_list);
12105 	INIT_LIST_HEAD(&dev->unreg_list);
12106 #ifdef CONFIG_DEBUG_NET_SMALL_RTNL
12107 	INIT_LIST_HEAD(&dev->unreg_list_net);
12108 #endif
12109 	INIT_LIST_HEAD(&dev->close_list);
12110 	INIT_LIST_HEAD(&dev->link_watch_list);
12111 	INIT_LIST_HEAD(&dev->adj_list.upper);
12112 	INIT_LIST_HEAD(&dev->adj_list.lower);
12113 	INIT_LIST_HEAD(&dev->ptype_all);
12114 	INIT_LIST_HEAD(&dev->ptype_specific);
12115 	INIT_LIST_HEAD(&dev->net_notifier_list);
12116 	INIT_LIST_HEAD(&dev->work_node);
12117 #ifdef CONFIG_NET_SCHED
12118 	hash_init(dev->qdisc_hash);
12119 #endif
12120 
12121 	mutex_init(&dev->lock);
12122 	netif_rx_mode_init(dev);
12123 
12124 	dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
12125 	setup(dev);
12126 
12127 	if (!dev->tx_queue_len) {
12128 		dev->priv_flags |= IFF_NO_QUEUE;
12129 		dev->tx_queue_len = DEFAULT_TX_QUEUE_LEN;
12130 	}
12131 
12132 	dev->num_tx_queues = txqs;
12133 	dev->real_num_tx_queues = txqs;
12134 	if (netif_alloc_netdev_queues(dev))
12135 		goto free_all;
12136 
12137 	dev->num_rx_queues = rxqs;
12138 	dev->real_num_rx_queues = rxqs;
12139 	if (netif_alloc_rx_queues(dev))
12140 		goto free_all;
12141 	dev->ethtool = kzalloc_obj(*dev->ethtool, GFP_KERNEL_ACCOUNT);
12142 	if (!dev->ethtool)
12143 		goto free_all;
12144 
12145 	dev->cfg = kzalloc_obj(*dev->cfg, GFP_KERNEL_ACCOUNT);
12146 	if (!dev->cfg)
12147 		goto free_all;
12148 	dev->cfg_pending = dev->cfg;
12149 
12150 	dev->num_napi_configs = maxqs;
12151 	napi_config_sz = array_size(maxqs, sizeof(*dev->napi_config));
12152 	dev->napi_config = kvzalloc(napi_config_sz, GFP_KERNEL_ACCOUNT);
12153 	if (!dev->napi_config)
12154 		goto free_all;
12155 
12156 	strscpy(dev->name, name);
12157 	dev->name_assign_type = name_assign_type;
12158 	dev->group = INIT_NETDEV_GROUP;
12159 	if (!dev->ethtool_ops)
12160 		dev->ethtool_ops = &default_ethtool_ops;
12161 
12162 	nf_hook_netdev_init(dev);
12163 
12164 	return dev;
12165 
12166 free_all:
12167 	free_netdev(dev);
12168 	return NULL;
12169 
12170 free_pcpu:
12171 #ifdef CONFIG_PCPU_DEV_REFCNT
12172 	free_percpu(dev->pcpu_refcnt);
12173 free_dev:
12174 #endif
12175 	kvfree(dev);
12176 	return NULL;
12177 }
12178 EXPORT_SYMBOL(alloc_netdev_mqs);
12179 
12180 static void netdev_napi_exit(struct net_device *dev)
12181 {
12182 	if (!list_empty(&dev->napi_list)) {
12183 		struct napi_struct *p, *n;
12184 
12185 		netdev_lock(dev);
12186 		list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
12187 			__netif_napi_del_locked(p);
12188 		netdev_unlock(dev);
12189 
12190 		synchronize_net();
12191 	}
12192 
12193 	kvfree(dev->napi_config);
12194 }
12195 
12196 /**
12197  * free_netdev - free network device
12198  * @dev: device
12199  *
12200  * This function does the last stage of destroying an allocated device
12201  * interface. The reference to the device object is released. If this
12202  * is the last reference then it will be freed.Must be called in process
12203  * context.
12204  */
12205 void free_netdev(struct net_device *dev)
12206 {
12207 	might_sleep();
12208 
12209 	/* When called immediately after register_netdevice() failed the unwind
12210 	 * handling may still be dismantling the device. Handle that case by
12211 	 * deferring the free.
12212 	 */
12213 	if (dev->reg_state == NETREG_UNREGISTERING) {
12214 		ASSERT_RTNL();
12215 		dev->needs_free_netdev = true;
12216 		return;
12217 	}
12218 
12219 	WARN_ON(dev->cfg != dev->cfg_pending);
12220 	kfree(dev->cfg);
12221 	kfree(dev->ethtool);
12222 	netif_free_tx_queues(dev);
12223 	netif_free_rx_queues(dev);
12224 
12225 	kfree(rcu_dereference_protected(dev->ingress_queue, 1));
12226 
12227 	__hw_addr_flush(&dev->rx_mode_addr_cache);
12228 
12229 	/* Flush device addresses */
12230 	dev_addr_flush(dev);
12231 
12232 	netdev_napi_exit(dev);
12233 
12234 	netif_del_cpu_rmap(dev);
12235 
12236 	ref_tracker_dir_exit(&dev->refcnt_tracker);
12237 #ifdef CONFIG_PCPU_DEV_REFCNT
12238 	free_percpu(dev->pcpu_refcnt);
12239 	dev->pcpu_refcnt = NULL;
12240 #endif
12241 	free_percpu(dev->core_stats);
12242 	dev->core_stats = NULL;
12243 	free_percpu(dev->xdp_bulkq);
12244 	dev->xdp_bulkq = NULL;
12245 
12246 	netdev_free_phy_link_topology(dev);
12247 
12248 	mutex_destroy(&dev->lock);
12249 
12250 	/*  Compatibility with error handling in drivers */
12251 	if (dev->reg_state == NETREG_UNINITIALIZED ||
12252 	    dev->reg_state == NETREG_DUMMY) {
12253 		kvfree(dev);
12254 		return;
12255 	}
12256 
12257 	BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
12258 	WRITE_ONCE(dev->reg_state, NETREG_RELEASED);
12259 
12260 	/* will free via device release */
12261 	put_device(&dev->dev);
12262 }
12263 EXPORT_SYMBOL(free_netdev);
12264 
12265 /**
12266  * alloc_netdev_dummy - Allocate and initialize a dummy net device.
12267  * @sizeof_priv: size of private data to allocate space for
12268  *
12269  * Return: the allocated net_device on success, NULL otherwise
12270  */
12271 struct net_device *alloc_netdev_dummy(int sizeof_priv)
12272 {
12273 	return alloc_netdev(sizeof_priv, "dummy#", NET_NAME_UNKNOWN,
12274 			    init_dummy_netdev);
12275 }
12276 EXPORT_SYMBOL_GPL(alloc_netdev_dummy);
12277 
12278 /**
12279  *	synchronize_net -  Synchronize with packet receive processing
12280  *
12281  *	Wait for packets currently being received to be done.
12282  *	Does not block later packets from starting.
12283  */
12284 void synchronize_net(void)
12285 {
12286 	might_sleep();
12287 	if (from_cleanup_net() || rtnl_is_locked())
12288 		synchronize_rcu_expedited();
12289 	else
12290 		synchronize_rcu();
12291 }
12292 EXPORT_SYMBOL(synchronize_net);
12293 
12294 static void netdev_rss_contexts_free(struct net_device *dev)
12295 {
12296 	struct ethtool_rxfh_context *ctx;
12297 	unsigned long context;
12298 
12299 	mutex_lock(&dev->ethtool->rss_lock);
12300 	xa_for_each(&dev->ethtool->rss_ctx, context, ctx) {
12301 		xa_erase(&dev->ethtool->rss_ctx, context);
12302 		dev->ethtool_ops->remove_rxfh_context(dev, ctx, context, NULL);
12303 		kfree(ctx);
12304 	}
12305 	xa_destroy(&dev->ethtool->rss_ctx);
12306 	mutex_unlock(&dev->ethtool->rss_lock);
12307 }
12308 
12309 /**
12310  *	unregister_netdevice_queue - remove device from the kernel
12311  *	@dev: device
12312  *	@head: list
12313  *
12314  *	This function shuts down a device interface and removes it
12315  *	from the kernel tables.
12316  *	If head not NULL, device is queued to be unregistered later.
12317  *
12318  *	Callers must hold the rtnl semaphore.  You may want
12319  *	unregister_netdev() instead of this.
12320  */
12321 
12322 void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
12323 {
12324 	ASSERT_RTNL();
12325 
12326 #ifdef CONFIG_DEBUG_NET_SMALL_RTNL
12327 	DEBUG_NET_WARN_ON_ONCE(!list_empty(&dev->unreg_list_net));
12328 #endif
12329 
12330 	if (head) {
12331 		list_move_tail(&dev->unreg_list, head);
12332 	} else {
12333 		LIST_HEAD(single);
12334 
12335 		list_add(&dev->unreg_list, &single);
12336 		unregister_netdevice_many(&single);
12337 	}
12338 }
12339 EXPORT_SYMBOL(unregister_netdevice_queue);
12340 
12341 static void dev_memory_provider_uninstall(struct net_device *dev)
12342 {
12343 	unsigned int i;
12344 
12345 	for (i = 0; i < dev->real_num_rx_queues; i++) {
12346 		struct netdev_rx_queue *rxq = &dev->_rx[i];
12347 
12348 		__netif_mp_uninstall_rxq(rxq, &rxq->mp_params);
12349 	}
12350 }
12351 
12352 /* devices must be UP and netdev_lock()'d */
12353 static void netif_close_many_and_unlock(struct list_head *close_head)
12354 {
12355 	struct net_device *dev, *tmp;
12356 
12357 	netif_close_many(close_head, false);
12358 
12359 	/* ... now unlock them */
12360 	list_for_each_entry_safe(dev, tmp, close_head, close_list) {
12361 		netdev_unlock(dev);
12362 		list_del_init(&dev->close_list);
12363 	}
12364 }
12365 
12366 static void netif_close_many_and_unlock_cond(struct list_head *close_head)
12367 {
12368 #ifdef CONFIG_LOCKDEP
12369 	/* We can only track up to MAX_LOCK_DEPTH locks per task.
12370 	 *
12371 	 * Reserve half the available slots for additional locks possibly
12372 	 * taken by notifiers and (soft)irqs.
12373 	 */
12374 	unsigned int limit = MAX_LOCK_DEPTH / 2;
12375 
12376 	if (lockdep_depth(current) > limit)
12377 		netif_close_many_and_unlock(close_head);
12378 #endif
12379 }
12380 
12381 bool unregister_netdevice_queued(const struct net_device *dev)
12382 {
12383 	ASSERT_RTNL();
12384 	return !list_empty(&dev->unreg_list);
12385 }
12386 
12387 void unregister_netdevice_many_notify(struct list_head *head,
12388 				      u32 portid, const struct nlmsghdr *nlh)
12389 {
12390 	struct net_device *dev, *tmp;
12391 	LIST_HEAD(close_head);
12392 	int cnt = 0;
12393 
12394 	BUG_ON(dev_boot_phase);
12395 	ASSERT_RTNL();
12396 
12397 	if (list_empty(head))
12398 		return;
12399 
12400 	list_for_each_entry_safe(dev, tmp, head, unreg_list) {
12401 		/* Some devices call without registering
12402 		 * for initialization unwind. Remove those
12403 		 * devices and proceed with the remaining.
12404 		 */
12405 		if (dev->reg_state == NETREG_UNINITIALIZED) {
12406 			pr_debug("unregister_netdevice: device %s/%p never was registered\n",
12407 				 dev->name, dev);
12408 
12409 			WARN_ON(1);
12410 			list_del(&dev->unreg_list);
12411 			continue;
12412 		}
12413 		dev->dismantle = true;
12414 		BUG_ON(dev->reg_state != NETREG_REGISTERED);
12415 	}
12416 
12417 	/* If device is running, close it first. Start with ops locked... */
12418 	list_for_each_entry(dev, head, unreg_list) {
12419 		if (!(dev->flags & IFF_UP))
12420 			continue;
12421 		if (netdev_need_ops_lock(dev)) {
12422 			list_add_tail(&dev->close_list, &close_head);
12423 			netdev_lock(dev);
12424 		}
12425 		netif_close_many_and_unlock_cond(&close_head);
12426 	}
12427 	netif_close_many_and_unlock(&close_head);
12428 	/* ... now go over the rest. */
12429 	list_for_each_entry(dev, head, unreg_list) {
12430 		if (!netdev_need_ops_lock(dev))
12431 			list_add_tail(&dev->close_list, &close_head);
12432 	}
12433 	netif_close_many(&close_head, true);
12434 
12435 	list_for_each_entry(dev, head, unreg_list) {
12436 		/* And unlink it from device chain. */
12437 		unlist_netdevice(dev);
12438 		netdev_lock(dev);
12439 		WRITE_ONCE(dev->reg_state, NETREG_UNREGISTERING);
12440 		netdev_unlock(dev);
12441 	}
12442 	flush_all_backlogs();
12443 
12444 	synchronize_net();
12445 
12446 	list_for_each_entry(dev, head, unreg_list) {
12447 		struct sk_buff *skb = NULL;
12448 
12449 		/* Shutdown queueing discipline. */
12450 		netdev_lock_ops(dev);
12451 		dev_shutdown(dev);
12452 		dev_tcx_uninstall(dev);
12453 		dev_xdp_uninstall(dev);
12454 		dev_memory_provider_uninstall(dev);
12455 		netdev_unlock_ops(dev);
12456 		bpf_dev_bound_netdev_unregister(dev);
12457 
12458 		netdev_offload_xstats_disable_all(dev);
12459 
12460 		/* Notify protocols, that we are about to destroy
12461 		 * this device. They should clean all the things.
12462 		 */
12463 		call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
12464 
12465 		if (!(dev->rtnl_link_ops && dev->rtnl_link_initializing))
12466 			skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U, 0,
12467 						     GFP_KERNEL, NULL, 0,
12468 						     portid, nlh);
12469 
12470 		/*
12471 		 *	Flush the unicast and multicast chains
12472 		 */
12473 		dev_uc_flush(dev);
12474 		dev_mc_flush(dev);
12475 
12476 
12477 		netdev_rss_contexts_free(dev);
12478 
12479 		call_netdevice_notifiers(NETDEV_PRE_UNINIT, dev);
12480 
12481 		if (dev->netdev_ops->ndo_uninit)
12482 			dev->netdev_ops->ndo_uninit(dev);
12483 
12484 		mutex_destroy(&dev->ethtool->rss_lock);
12485 
12486 		net_shaper_flush_netdev(dev);
12487 
12488 		if (skb)
12489 			rtmsg_ifinfo_send(skb, dev, GFP_KERNEL, portid, nlh);
12490 
12491 		/* Notifier chain MUST detach us all upper devices. */
12492 		WARN_ON(netdev_has_any_upper_dev(dev));
12493 		WARN_ON(netdev_has_any_lower_dev(dev));
12494 
12495 		/* Remove entries from kobject tree */
12496 		netdev_unregister_kobject(dev);
12497 #ifdef CONFIG_XPS
12498 		/* Remove XPS queueing entries */
12499 		netif_reset_xps_queues_gt(dev, 0);
12500 #endif
12501 	}
12502 
12503 	synchronize_net();
12504 
12505 	list_for_each_entry(dev, head, unreg_list) {
12506 #ifdef CONFIG_DEBUG_NET_SMALL_RTNL
12507 		struct net *net = dev_net(dev);
12508 
12509 		/* spin_lock() can be moved outside of the loop
12510 		 * once the per-netns RTNL conversion completes.
12511 		 */
12512 		spin_lock(&net->dev_unreg_lock);
12513 		list_del(&dev->unreg_list_net);
12514 		spin_unlock(&net->dev_unreg_lock);
12515 #endif
12516 		netdev_put(dev, &dev->dev_registered_tracker);
12517 		net_set_todo(dev);
12518 		cnt++;
12519 	}
12520 	atomic_add(cnt, &dev_unreg_count);
12521 
12522 	list_del(head);
12523 }
12524 
12525 /**
12526  *	unregister_netdevice_many - unregister many devices
12527  *	@head: list of devices
12528  *
12529  *  Note: As most callers use a stack allocated list_head,
12530  *  we force a list_del() to make sure stack won't be corrupted later.
12531  */
12532 void unregister_netdevice_many(struct list_head *head)
12533 {
12534 	unregister_netdevice_many_notify(head, 0, NULL);
12535 }
12536 EXPORT_SYMBOL(unregister_netdevice_many);
12537 
12538 #ifdef CONFIG_DEBUG_NET_SMALL_RTNL
12539 void unregister_netdevice_queue_net(struct net *net, struct net_device *dev,
12540 				    struct list_head *head)
12541 {
12542 	netdev_lock(dev);
12543 
12544 	if (net_eq(dev_net(dev), net)) {
12545 		netdev_unlock(dev);
12546 		unregister_netdevice_queue(dev, head);
12547 		return;
12548 	}
12549 
12550 	net = dev_net(dev);
12551 
12552 	spin_lock(&net->dev_unreg_lock);
12553 
12554 	DEBUG_NET_WARN_ON_ONCE(!list_empty(&dev->unreg_list));
12555 	DEBUG_NET_WARN_ON_ONCE(!list_empty(&dev->unreg_list_net));
12556 
12557 	list_add_tail(&dev->unreg_list_net, &net->dev_unreg_head);
12558 	rtnl_net_queue_work(net);
12559 
12560 	spin_unlock(&net->dev_unreg_lock);
12561 
12562 	netdev_unlock(dev);
12563 }
12564 EXPORT_SYMBOL(unregister_netdevice_queue_net);
12565 
12566 void unregister_netdevice_queue_many_net(struct net *net, struct list_head *head)
12567 {
12568 	struct net_device *dev, *tmp;
12569 
12570 	spin_lock(&net->dev_unreg_lock);
12571 	list_for_each_entry_safe(dev, tmp, head, unreg_list) {
12572 		/* Once all cross-netns unregister_netdevice_queue() is
12573 		 * converted to _net() (or for debugging), remove this check.
12574 		 */
12575 		if (!net_eq(dev_net(dev), net))
12576 			continue;
12577 
12578 		DEBUG_NET_WARN_ONCE(!net_eq(dev_net(dev), net),
12579 				    "%s was unregistered from a different netns.\n",
12580 				    dev->name);
12581 
12582 		list_del_init(&dev->unreg_list);
12583 		list_move_tail(&dev->unreg_list_net, &net->dev_unreg_head);
12584 	}
12585 	spin_unlock(&net->dev_unreg_lock);
12586 }
12587 
12588 static void unregister_netdevice_move_net(struct net *net_old,
12589 					  struct net *net,
12590 					  struct net_device *dev)
12591 {
12592 	if (net_old > net) {
12593 		spin_lock(&net->dev_unreg_lock);
12594 		spin_lock_nested(&net_old->dev_unreg_lock, SINGLE_DEPTH_NESTING);
12595 	} else {
12596 		spin_lock(&net_old->dev_unreg_lock);
12597 		spin_lock_nested(&net->dev_unreg_lock, SINGLE_DEPTH_NESTING);
12598 	}
12599 
12600 	if (!list_empty(&dev->unreg_list_net)) {
12601 		list_del(&dev->unreg_list_net);
12602 		list_add_tail(&dev->unreg_list_net, &net->dev_unreg_head);
12603 	}
12604 
12605 	spin_unlock(&net_old->dev_unreg_lock);
12606 	spin_unlock(&net->dev_unreg_lock);
12607 }
12608 
12609 void unregister_netdevice_many_net(struct net *net)
12610 {
12611 	struct net_device *dev, *tmp;
12612 	LIST_HEAD(unreg_head_net);
12613 	LIST_HEAD(unreg_head);
12614 
12615 	spin_lock(&net->dev_unreg_lock);
12616 	list_splice_init(&net->dev_unreg_head, &unreg_head_net);
12617 	spin_unlock(&net->dev_unreg_lock);
12618 
12619 	list_for_each_entry_safe(dev, tmp, &unreg_head_net, unreg_list_net) {
12620 		list_del_init(&dev->unreg_list_net);
12621 		list_add_tail(&dev->unreg_list, &unreg_head);
12622 	}
12623 
12624 	unregister_netdevice_many(&unreg_head);
12625 }
12626 #endif
12627 
12628 /**
12629  *	unregister_netdev - remove device from the kernel
12630  *	@dev: device
12631  *
12632  *	This function shuts down a device interface and removes it
12633  *	from the kernel tables.
12634  *
12635  *	This is just a wrapper for unregister_netdevice that takes
12636  *	the rtnl semaphore.  In general you want to use this and not
12637  *	unregister_netdevice.
12638  */
12639 void unregister_netdev(struct net_device *dev)
12640 {
12641 	rtnl_net_dev_lock(dev);
12642 	unregister_netdevice(dev);
12643 	rtnl_net_dev_unlock(dev);
12644 }
12645 EXPORT_SYMBOL(unregister_netdev);
12646 
12647 int __dev_change_net_namespace(struct net_device *dev, struct net *net,
12648 			       const char *pat, int new_ifindex,
12649 			       struct netlink_ext_ack *extack)
12650 {
12651 	struct netdev_name_node *name_node;
12652 	struct net *net_old = dev_net(dev);
12653 	char new_name[IFNAMSIZ] = {};
12654 	int err, new_nsid;
12655 
12656 	ASSERT_RTNL();
12657 
12658 	/* Don't allow namespace local devices to be moved. */
12659 	err = -EINVAL;
12660 	if (dev->netns_immutable) {
12661 		NL_SET_ERR_MSG(extack, "The interface netns is immutable");
12662 		goto out;
12663 	}
12664 
12665 	/* Ensure the device has been registered */
12666 	if (dev->reg_state != NETREG_REGISTERED) {
12667 		NL_SET_ERR_MSG(extack, "The interface isn't registered");
12668 		goto out;
12669 	}
12670 
12671 	/* Get out if there is nothing todo */
12672 	err = 0;
12673 	if (net_eq(net_old, net))
12674 		goto out;
12675 
12676 	/* Pick the destination device name, and ensure
12677 	 * we can use it in the destination network namespace.
12678 	 */
12679 	err = -EEXIST;
12680 	if (netdev_name_in_use(net, dev->name)) {
12681 		/* We get here if we can't use the current device name */
12682 		if (!pat) {
12683 			NL_SET_ERR_MSG(extack,
12684 				       "An interface with the same name exists in the target netns");
12685 			goto out;
12686 		}
12687 		err = dev_prep_valid_name(net, dev, pat, new_name, EEXIST);
12688 		if (err < 0) {
12689 			NL_SET_ERR_MSG_FMT(extack,
12690 					   "Unable to use '%s' for the new interface name in the target netns",
12691 					   pat);
12692 			goto out;
12693 		}
12694 	}
12695 	/* Check that none of the altnames conflicts. */
12696 	err = -EEXIST;
12697 	netdev_for_each_altname(dev, name_node) {
12698 		if (netdev_name_in_use(net, name_node->name)) {
12699 			NL_SET_ERR_MSG_FMT(extack,
12700 					   "An interface with the altname %s exists in the target netns",
12701 					   name_node->name);
12702 			goto out;
12703 		}
12704 	}
12705 
12706 	/* Check that new_ifindex isn't used yet. */
12707 	if (new_ifindex) {
12708 		err = dev_index_reserve(net, new_ifindex);
12709 		if (err < 0) {
12710 			NL_SET_ERR_MSG_FMT(extack,
12711 					   "The ifindex %d is not available in the target netns",
12712 					   new_ifindex);
12713 			goto out;
12714 		}
12715 	} else {
12716 		/* If there is an ifindex conflict assign a new one */
12717 		err = dev_index_reserve(net, dev->ifindex);
12718 		if (err == -EBUSY)
12719 			err = dev_index_reserve(net, 0);
12720 		if (err < 0) {
12721 			NL_SET_ERR_MSG(extack,
12722 				       "Unable to allocate a new ifindex in the target netns");
12723 			goto out;
12724 		}
12725 		new_ifindex = err;
12726 	}
12727 
12728 	/*
12729 	 * And now a mini version of register_netdevice unregister_netdevice.
12730 	 */
12731 
12732 	netdev_lock_ops(dev);
12733 	/* If device is running close it first. */
12734 	netif_close(dev);
12735 	/* And unlink it from device chain */
12736 	unlist_netdevice(dev);
12737 
12738 	if (!netdev_need_ops_lock(dev))
12739 		netdev_lock(dev);
12740 	dev->moving_ns = true;
12741 	netdev_unlock(dev);
12742 
12743 	synchronize_net();
12744 
12745 	/* Shutdown queueing discipline. */
12746 	netdev_lock_ops(dev);
12747 	dev_shutdown(dev);
12748 	netdev_unlock_ops(dev);
12749 
12750 	/* Notify protocols, that we are about to destroy
12751 	 * this device. They should clean all the things.
12752 	 *
12753 	 * Note that dev->reg_state stays at NETREG_REGISTERED.
12754 	 * This is wanted because this way 8021q and macvlan know
12755 	 * the device is just moving and can keep their slaves up.
12756 	 */
12757 	call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
12758 	rcu_barrier();
12759 
12760 	new_nsid = peernet2id_alloc(dev_net(dev), net, GFP_KERNEL);
12761 
12762 	rtmsg_ifinfo_newnet(RTM_DELLINK, dev, ~0U, GFP_KERNEL, &new_nsid,
12763 			    new_ifindex);
12764 
12765 	/*
12766 	 *	Flush the unicast and multicast chains
12767 	 */
12768 	dev_uc_flush(dev);
12769 	dev_mc_flush(dev);
12770 
12771 	/* Send a netdev-removed uevent to the old namespace */
12772 	kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
12773 	netdev_adjacent_del_links(dev);
12774 
12775 	/* Move per-net netdevice notifiers that are following the netdevice */
12776 	move_netdevice_notifiers_dev_net(dev, net);
12777 
12778 	/* Actually switch the network namespace */
12779 	netdev_lock(dev);
12780 	dev_net_set(dev, net);
12781 	netdev_unlock(dev);
12782 	dev->ifindex = new_ifindex;
12783 
12784 #ifdef CONFIG_DEBUG_NET_SMALL_RTNL
12785 	unregister_netdevice_move_net(net_old, net, dev);
12786 #endif
12787 
12788 	if (new_name[0]) {
12789 		/* Rename the netdev to prepared name */
12790 		write_seqlock_bh(&netdev_rename_lock);
12791 		strscpy(dev->name, new_name, IFNAMSIZ);
12792 		write_sequnlock_bh(&netdev_rename_lock);
12793 	}
12794 
12795 	/* Fixup kobjects */
12796 	dev_set_uevent_suppress(&dev->dev, 1);
12797 	err = device_rename(&dev->dev, dev->name);
12798 	dev_set_uevent_suppress(&dev->dev, 0);
12799 	WARN_ON(err);
12800 
12801 	/* Send a netdev-add uevent to the new namespace */
12802 	kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
12803 	netdev_adjacent_add_links(dev);
12804 
12805 	/* Adapt owner in case owning user namespace of target network
12806 	 * namespace is different from the original one.
12807 	 */
12808 	err = netdev_change_owner(dev, net_old, net);
12809 	WARN_ON(err);
12810 
12811 	netdev_lock(dev);
12812 	dev->moving_ns = false;
12813 	if (!netdev_need_ops_lock(dev))
12814 		netdev_unlock(dev);
12815 
12816 	/* Add the device back in the hashes */
12817 	list_netdevice(dev);
12818 	/* Notify protocols, that a new device appeared. */
12819 	call_netdevice_notifiers(NETDEV_REGISTER, dev);
12820 	netdev_unlock_ops(dev);
12821 
12822 	/*
12823 	 *	Prevent userspace races by waiting until the network
12824 	 *	device is fully setup before sending notifications.
12825 	 */
12826 	rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL, 0, NULL);
12827 
12828 	synchronize_net();
12829 	err = 0;
12830 out:
12831 	return err;
12832 }
12833 
12834 static int dev_cpu_dead(unsigned int oldcpu)
12835 {
12836 	struct sk_buff **list_skb;
12837 	struct sk_buff *skb;
12838 	unsigned int cpu;
12839 	struct softnet_data *sd, *oldsd, *remsd = NULL;
12840 
12841 	local_irq_disable();
12842 	cpu = smp_processor_id();
12843 	sd = &per_cpu(softnet_data, cpu);
12844 	oldsd = &per_cpu(softnet_data, oldcpu);
12845 
12846 	/* Find end of our completion_queue. */
12847 	list_skb = &sd->completion_queue;
12848 	while (*list_skb)
12849 		list_skb = &(*list_skb)->next;
12850 	/* Append completion queue from offline CPU. */
12851 	*list_skb = oldsd->completion_queue;
12852 	oldsd->completion_queue = NULL;
12853 
12854 	/* Append output queue from offline CPU. */
12855 	if (oldsd->output_queue) {
12856 		*sd->output_queue_tailp = oldsd->output_queue;
12857 		sd->output_queue_tailp = oldsd->output_queue_tailp;
12858 		oldsd->output_queue = NULL;
12859 		oldsd->output_queue_tailp = &oldsd->output_queue;
12860 	}
12861 	/* Append NAPI poll list from offline CPU, with one exception :
12862 	 * process_backlog() must be called by cpu owning percpu backlog.
12863 	 * We properly handle process_queue & input_pkt_queue later.
12864 	 */
12865 	while (!list_empty(&oldsd->poll_list)) {
12866 		struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
12867 							    struct napi_struct,
12868 							    poll_list);
12869 
12870 		list_del_init(&napi->poll_list);
12871 		if (napi->poll == process_backlog)
12872 			napi->state &= NAPIF_STATE_THREADED;
12873 		else
12874 			____napi_schedule(sd, napi);
12875 	}
12876 
12877 	raise_softirq_irqoff(NET_TX_SOFTIRQ);
12878 	local_irq_enable();
12879 
12880 	if (!use_backlog_threads()) {
12881 #ifdef CONFIG_RPS
12882 		remsd = oldsd->rps_ipi_list;
12883 		oldsd->rps_ipi_list = NULL;
12884 #endif
12885 		/* send out pending IPI's on offline CPU */
12886 		net_rps_send_ipi(remsd);
12887 	}
12888 
12889 	/* Process offline CPU's input_pkt_queue */
12890 	while ((skb = __skb_dequeue(&oldsd->process_queue))) {
12891 		netif_rx(skb);
12892 		rps_input_queue_head_incr(oldsd);
12893 	}
12894 	while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
12895 		netif_rx(skb);
12896 		rps_input_queue_head_incr(oldsd);
12897 	}
12898 
12899 	return 0;
12900 }
12901 
12902 /**
12903  *	netdev_increment_features - increment feature set by one
12904  *	@all: current feature set
12905  *	@one: new feature set
12906  *	@mask: mask feature set
12907  *
12908  *	Computes a new feature set after adding a device with feature set
12909  *	@one to the master device with current feature set @all.  Will not
12910  *	enable anything that is off in @mask. Returns the new feature set.
12911  */
12912 netdev_features_t netdev_increment_features(netdev_features_t all,
12913 	netdev_features_t one, netdev_features_t mask)
12914 {
12915 	if (mask & NETIF_F_HW_CSUM)
12916 		mask |= NETIF_F_CSUM_MASK;
12917 	mask |= NETIF_F_VLAN_CHALLENGED;
12918 
12919 	all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
12920 	all &= one | ~NETIF_F_ALL_FOR_ALL;
12921 
12922 	/* If one device supports hw checksumming, set for all. */
12923 	if (all & NETIF_F_HW_CSUM)
12924 		all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
12925 
12926 	return all;
12927 }
12928 EXPORT_SYMBOL(netdev_increment_features);
12929 
12930 /**
12931  *	netdev_compute_master_upper_features - compute feature from lowers
12932  *	@dev: the upper device
12933  *	@update_header: whether to update upper device's header_len/headroom/tailroom
12934  *
12935  *	Recompute the upper device's feature based on all lower devices.
12936  */
12937 void netdev_compute_master_upper_features(struct net_device *dev, bool update_header)
12938 {
12939 	unsigned int dst_release_flag = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
12940 	netdev_features_t gso_partial_features = MASTER_UPPER_DEV_GSO_PARTIAL_FEATURES;
12941 	netdev_features_t xfrm_features = MASTER_UPPER_DEV_XFRM_FEATURES;
12942 	netdev_features_t mpls_features = MASTER_UPPER_DEV_MPLS_FEATURES;
12943 	netdev_features_t vlan_features = MASTER_UPPER_DEV_VLAN_FEATURES;
12944 	netdev_features_t enc_features = MASTER_UPPER_DEV_ENC_FEATURES;
12945 	unsigned short max_header_len = ETH_HLEN;
12946 	unsigned int tso_max_size = TSO_MAX_SIZE;
12947 	unsigned short max_headroom = 0;
12948 	unsigned short max_tailroom = 0;
12949 	u16 tso_max_segs = TSO_MAX_SEGS;
12950 	struct net_device *lower_dev;
12951 	struct list_head *iter;
12952 
12953 	mpls_features = netdev_base_features(mpls_features);
12954 	vlan_features = netdev_base_features(vlan_features);
12955 	enc_features = netdev_base_features(enc_features);
12956 
12957 	netdev_for_each_lower_dev(dev, lower_dev, iter) {
12958 		gso_partial_features = netdev_increment_features(gso_partial_features,
12959 								 lower_dev->gso_partial_features,
12960 								 MASTER_UPPER_DEV_GSO_PARTIAL_FEATURES);
12961 
12962 		vlan_features = netdev_increment_features(vlan_features,
12963 							  lower_dev->vlan_features,
12964 							  MASTER_UPPER_DEV_VLAN_FEATURES);
12965 
12966 		enc_features = netdev_increment_features(enc_features,
12967 							 lower_dev->hw_enc_features,
12968 							 MASTER_UPPER_DEV_ENC_FEATURES);
12969 
12970 		if (IS_ENABLED(CONFIG_XFRM_OFFLOAD))
12971 			xfrm_features = netdev_increment_features(xfrm_features,
12972 								  lower_dev->hw_enc_features,
12973 								  MASTER_UPPER_DEV_XFRM_FEATURES);
12974 
12975 		mpls_features = netdev_increment_features(mpls_features,
12976 							  lower_dev->mpls_features,
12977 							  MASTER_UPPER_DEV_MPLS_FEATURES);
12978 
12979 		dst_release_flag &= lower_dev->priv_flags;
12980 
12981 		if (update_header) {
12982 			max_header_len = max(max_header_len, lower_dev->hard_header_len);
12983 			max_headroom = max(max_headroom, lower_dev->needed_headroom);
12984 			max_tailroom = max(max_tailroom, lower_dev->needed_tailroom);
12985 		}
12986 
12987 		tso_max_size = min(tso_max_size, lower_dev->tso_max_size);
12988 		tso_max_segs = min(tso_max_segs, lower_dev->tso_max_segs);
12989 	}
12990 
12991 	dev->gso_partial_features = gso_partial_features;
12992 	dev->vlan_features = vlan_features;
12993 	dev->hw_enc_features = enc_features | NETIF_F_GSO_ENCAP_ALL |
12994 			       NETIF_F_HW_VLAN_CTAG_TX |
12995 			       NETIF_F_HW_VLAN_STAG_TX;
12996 	if (IS_ENABLED(CONFIG_XFRM_OFFLOAD))
12997 		dev->hw_enc_features |= xfrm_features;
12998 	dev->mpls_features = mpls_features;
12999 
13000 	dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
13001 	if ((dev->priv_flags & IFF_XMIT_DST_RELEASE_PERM) &&
13002 	    dst_release_flag == (IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM))
13003 		dev->priv_flags |= IFF_XMIT_DST_RELEASE;
13004 
13005 	if (update_header) {
13006 		dev->hard_header_len = max_header_len;
13007 		dev->needed_headroom = max_headroom;
13008 		dev->needed_tailroom = max_tailroom;
13009 	}
13010 
13011 	netif_set_tso_max_segs(dev, tso_max_segs);
13012 	netif_set_tso_max_size(dev, tso_max_size);
13013 
13014 	netdev_change_features(dev);
13015 }
13016 EXPORT_SYMBOL(netdev_compute_master_upper_features);
13017 
13018 static struct hlist_head * __net_init netdev_create_hash(void)
13019 {
13020 	int i;
13021 	struct hlist_head *hash;
13022 
13023 	hash = kmalloc_objs(*hash, NETDEV_HASHENTRIES);
13024 	if (hash != NULL)
13025 		for (i = 0; i < NETDEV_HASHENTRIES; i++)
13026 			INIT_HLIST_HEAD(&hash[i]);
13027 
13028 	return hash;
13029 }
13030 
13031 /* Initialize per network namespace state */
13032 static int __net_init netdev_init(struct net *net)
13033 {
13034 	BUILD_BUG_ON(GRO_HASH_BUCKETS >
13035 		     BITS_PER_BYTE * sizeof_field(struct gro_node, bitmask));
13036 
13037 	INIT_LIST_HEAD(&net->dev_base_head);
13038 
13039 	net->dev_name_head = netdev_create_hash();
13040 	if (net->dev_name_head == NULL)
13041 		goto err_name;
13042 
13043 	net->dev_index_head = netdev_create_hash();
13044 	if (net->dev_index_head == NULL)
13045 		goto err_idx;
13046 
13047 	xa_init_flags(&net->dev_by_index, XA_FLAGS_ALLOC1);
13048 
13049 	RAW_INIT_NOTIFIER_HEAD(&net->netdev_chain);
13050 
13051 	return 0;
13052 
13053 err_idx:
13054 	kfree(net->dev_name_head);
13055 err_name:
13056 	return -ENOMEM;
13057 }
13058 
13059 /**
13060  *	netdev_drivername - network driver for the device
13061  *	@dev: network device
13062  *
13063  *	Determine network driver for device.
13064  */
13065 const char *netdev_drivername(const struct net_device *dev)
13066 {
13067 	const struct device_driver *driver;
13068 	const struct device *parent;
13069 	const char *empty = "";
13070 
13071 	parent = dev->dev.parent;
13072 	if (!parent)
13073 		return empty;
13074 
13075 	driver = parent->driver;
13076 	if (driver && driver->name)
13077 		return driver->name;
13078 	return empty;
13079 }
13080 
13081 static void __netdev_printk(const char *level, const struct net_device *dev,
13082 			    struct va_format *vaf)
13083 {
13084 	if (dev && dev->dev.parent) {
13085 		dev_printk_emit(level[1] - '0',
13086 				dev->dev.parent,
13087 				"%s %s %s%s: %pV",
13088 				dev_driver_string(dev->dev.parent),
13089 				dev_name(dev->dev.parent),
13090 				netdev_name(dev), netdev_reg_state(dev),
13091 				vaf);
13092 	} else if (dev) {
13093 		printk("%s%s%s: %pV",
13094 		       level, netdev_name(dev), netdev_reg_state(dev), vaf);
13095 	} else {
13096 		printk("%s(NULL net_device): %pV", level, vaf);
13097 	}
13098 }
13099 
13100 void netdev_printk(const char *level, const struct net_device *dev,
13101 		   const char *format, ...)
13102 {
13103 	struct va_format vaf;
13104 	va_list args;
13105 
13106 	va_start(args, format);
13107 
13108 	vaf.fmt = format;
13109 	vaf.va = &args;
13110 
13111 	__netdev_printk(level, dev, &vaf);
13112 
13113 	va_end(args);
13114 }
13115 EXPORT_SYMBOL(netdev_printk);
13116 
13117 #define define_netdev_printk_level(func, level)			\
13118 void func(const struct net_device *dev, const char *fmt, ...)	\
13119 {								\
13120 	struct va_format vaf;					\
13121 	va_list args;						\
13122 								\
13123 	va_start(args, fmt);					\
13124 								\
13125 	vaf.fmt = fmt;						\
13126 	vaf.va = &args;						\
13127 								\
13128 	__netdev_printk(level, dev, &vaf);			\
13129 								\
13130 	va_end(args);						\
13131 }								\
13132 EXPORT_SYMBOL(func);
13133 
13134 define_netdev_printk_level(netdev_emerg, KERN_EMERG);
13135 define_netdev_printk_level(netdev_alert, KERN_ALERT);
13136 define_netdev_printk_level(netdev_crit, KERN_CRIT);
13137 define_netdev_printk_level(netdev_err, KERN_ERR);
13138 define_netdev_printk_level(netdev_warn, KERN_WARNING);
13139 define_netdev_printk_level(netdev_notice, KERN_NOTICE);
13140 define_netdev_printk_level(netdev_info, KERN_INFO);
13141 
13142 static void __net_exit netdev_exit(struct net *net)
13143 {
13144 	kfree(net->dev_name_head);
13145 	kfree(net->dev_index_head);
13146 	xa_destroy(&net->dev_by_index);
13147 	if (net != &init_net)
13148 		WARN_ON_ONCE(!list_empty(&net->dev_base_head));
13149 }
13150 
13151 static struct pernet_operations __net_initdata netdev_net_ops = {
13152 	.init = netdev_init,
13153 	.exit = netdev_exit,
13154 };
13155 
13156 static void __net_exit default_device_exit_net(struct net *net)
13157 {
13158 	struct netdev_name_node *name_node, *tmp;
13159 	struct net_device *dev, *aux;
13160 	/*
13161 	 * Push all migratable network devices back to the
13162 	 * initial network namespace
13163 	 */
13164 
13165 	for_each_netdev_safe(net, dev, aux) {
13166 		int err;
13167 		char fb_name[IFNAMSIZ];
13168 
13169 		/* Ignore unmoveable devices (i.e. loopback) */
13170 		if (dev->netns_immutable)
13171 			continue;
13172 
13173 		/* Leave virtual devices for the generic cleanup */
13174 		if (dev->rtnl_link_ops && !dev->rtnl_link_ops->netns_refund)
13175 			continue;
13176 
13177 		/* Push remaining network devices to init_net */
13178 		snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
13179 		if (netdev_name_in_use(&init_net, fb_name))
13180 			snprintf(fb_name, IFNAMSIZ, "dev%%d");
13181 
13182 		netdev_for_each_altname_safe(dev, name_node, tmp)
13183 			if (netdev_name_in_use(&init_net, name_node->name))
13184 				__netdev_name_node_alt_destroy(name_node);
13185 
13186 		err = dev_change_net_namespace(dev, &init_net, fb_name);
13187 		if (err) {
13188 			pr_emerg("%s: failed to move %s to init_net: %d\n",
13189 				 __func__, dev->name, err);
13190 			BUG();
13191 		}
13192 	}
13193 }
13194 
13195 static void __net_exit default_device_exit_batch(struct list_head *net_list)
13196 {
13197 	/* At exit all network devices most be removed from a network
13198 	 * namespace.  Do this in the reverse order of registration.
13199 	 * Do this across as many network namespaces as possible to
13200 	 * improve batching efficiency.
13201 	 */
13202 	struct net_device *dev;
13203 	struct net *net;
13204 	LIST_HEAD(dev_kill_list);
13205 
13206 	rtnl_lock();
13207 
13208 	__rtnl_net_lock(&init_net);
13209 
13210 	list_for_each_entry(net, net_list, exit_list) {
13211 		__rtnl_net_lock(net);
13212 		default_device_exit_net(net);
13213 		__rtnl_net_unlock(net);
13214 
13215 		cond_resched();
13216 	}
13217 
13218 	__rtnl_net_unlock(&init_net);
13219 
13220 	list_for_each_entry(net, net_list, exit_list) {
13221 		__rtnl_net_lock(net);
13222 
13223 		for_each_netdev_reverse(net, dev) {
13224 			if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
13225 				dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
13226 			else
13227 				unregister_netdevice_queue(dev, &dev_kill_list);
13228 		}
13229 
13230 		unregister_netdevice_queue_many_net(net, &dev_kill_list);
13231 		__rtnl_net_unlock(net);
13232 	}
13233 	unregister_netdevice_many(&dev_kill_list);
13234 	rtnl_unlock();
13235 
13236 	rtnl_net_flush_workqueue();
13237 }
13238 
13239 static struct pernet_operations __net_initdata default_device_ops = {
13240 	.exit_batch = default_device_exit_batch,
13241 };
13242 
13243 static void __init net_dev_struct_check(void)
13244 {
13245 	/* TX read-mostly hotpath */
13246 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, priv_flags_fast);
13247 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, netdev_ops);
13248 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, header_ops);
13249 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, _tx);
13250 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, real_num_tx_queues);
13251 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, gso_max_size);
13252 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, gso_ipv4_max_size);
13253 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, gso_max_segs);
13254 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, gso_partial_features);
13255 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, num_tc);
13256 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, mtu);
13257 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, needed_headroom);
13258 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, tc_to_txq);
13259 #ifdef CONFIG_XPS
13260 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, xps_maps);
13261 #endif
13262 #ifdef CONFIG_NETFILTER_EGRESS
13263 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, nf_hooks_egress);
13264 #endif
13265 #ifdef CONFIG_NET_XGRESS
13266 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_tx, tcx_egress);
13267 #endif
13268 	CACHELINE_ASSERT_GROUP_SIZE(struct net_device, net_device_read_tx, 160);
13269 
13270 	/* TXRX read-mostly hotpath */
13271 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_txrx, lstats);
13272 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_txrx, state);
13273 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_txrx, flags);
13274 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_txrx, hard_header_len);
13275 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_txrx, features);
13276 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_txrx, ip6_ptr);
13277 	CACHELINE_ASSERT_GROUP_SIZE(struct net_device, net_device_read_txrx, 46);
13278 
13279 	/* RX read-mostly hotpath */
13280 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, ptype_specific);
13281 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, ifindex);
13282 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, real_num_rx_queues);
13283 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, _rx);
13284 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, gro_max_size);
13285 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, gro_ipv4_max_size);
13286 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, rx_handler);
13287 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, rx_handler_data);
13288 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, nd_net);
13289 #ifdef CONFIG_NETPOLL
13290 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, npinfo);
13291 #endif
13292 #ifdef CONFIG_NET_XGRESS
13293 	CACHELINE_ASSERT_GROUP_MEMBER(struct net_device, net_device_read_rx, tcx_ingress);
13294 #endif
13295 	CACHELINE_ASSERT_GROUP_SIZE(struct net_device, net_device_read_rx, 92);
13296 }
13297 
13298 /*
13299  *	Initialize the DEV module. At boot time this walks the device list and
13300  *	unhooks any devices that fail to initialise (normally hardware not
13301  *	present) and leaves us with a valid list of present and active devices.
13302  *
13303  */
13304 
13305 /* We allocate 256 pages for each CPU if PAGE_SHIFT is 12 */
13306 #define SYSTEM_PERCPU_PAGE_POOL_SIZE	((1 << 20) / PAGE_SIZE)
13307 
13308 static int net_page_pool_create(int cpuid)
13309 {
13310 #if IS_ENABLED(CONFIG_PAGE_POOL)
13311 	struct page_pool_params page_pool_params = {
13312 		.pool_size = SYSTEM_PERCPU_PAGE_POOL_SIZE,
13313 		.flags = PP_FLAG_SYSTEM_POOL,
13314 		.nid = cpu_to_mem(cpuid),
13315 	};
13316 	struct page_pool *pp_ptr;
13317 	int err;
13318 
13319 	pp_ptr = page_pool_create_percpu(&page_pool_params, cpuid);
13320 	if (IS_ERR(pp_ptr))
13321 		return -ENOMEM;
13322 
13323 	err = xdp_reg_page_pool(pp_ptr);
13324 	if (err) {
13325 		page_pool_destroy(pp_ptr);
13326 		return err;
13327 	}
13328 
13329 	per_cpu(system_page_pool.pool, cpuid) = pp_ptr;
13330 #endif
13331 	return 0;
13332 }
13333 
13334 static int backlog_napi_should_run(unsigned int cpu)
13335 {
13336 	struct softnet_data *sd = per_cpu_ptr(&softnet_data, cpu);
13337 	struct napi_struct *napi = &sd->backlog;
13338 
13339 	return test_bit(NAPI_STATE_SCHED_THREADED, &napi->state);
13340 }
13341 
13342 static void run_backlog_napi(unsigned int cpu)
13343 {
13344 	struct softnet_data *sd = per_cpu_ptr(&softnet_data, cpu);
13345 
13346 	napi_threaded_poll_loop(&sd->backlog, NULL);
13347 }
13348 
13349 static void backlog_napi_setup(unsigned int cpu)
13350 {
13351 	struct softnet_data *sd = per_cpu_ptr(&softnet_data, cpu);
13352 	struct napi_struct *napi = &sd->backlog;
13353 
13354 	napi->thread = this_cpu_read(backlog_napi);
13355 	set_bit(NAPI_STATE_THREADED, &napi->state);
13356 }
13357 
13358 static struct smp_hotplug_thread backlog_threads = {
13359 	.store			= &backlog_napi,
13360 	.thread_should_run	= backlog_napi_should_run,
13361 	.thread_fn		= run_backlog_napi,
13362 	.thread_comm		= "backlog_napi/%u",
13363 	.setup			= backlog_napi_setup,
13364 };
13365 
13366 /*
13367  *       This is called single threaded during boot, so no need
13368  *       to take the rtnl semaphore.
13369  */
13370 static int __init net_dev_init(void)
13371 {
13372 	int i, rc = -ENOMEM;
13373 
13374 	BUG_ON(!dev_boot_phase);
13375 
13376 	net_dev_struct_check();
13377 
13378 	if (dev_proc_init())
13379 		goto out;
13380 
13381 	if (netdev_kobject_init())
13382 		goto out;
13383 
13384 	for (i = 0; i < PTYPE_HASH_SIZE; i++)
13385 		INIT_LIST_HEAD(&ptype_base[i]);
13386 
13387 	if (register_pernet_subsys(&netdev_net_ops))
13388 		goto out;
13389 
13390 	/*
13391 	 *	Initialise the packet receive queues.
13392 	 */
13393 
13394 	flush_backlogs_fallback = flush_backlogs_alloc();
13395 	if (!flush_backlogs_fallback)
13396 		goto out;
13397 
13398 	for_each_possible_cpu(i) {
13399 		struct softnet_data *sd = &per_cpu(softnet_data, i);
13400 
13401 		skb_queue_head_init(&sd->input_pkt_queue);
13402 		skb_queue_head_init(&sd->process_queue);
13403 #ifdef CONFIG_XFRM_OFFLOAD
13404 		skb_queue_head_init(&sd->xfrm_backlog);
13405 #endif
13406 		INIT_LIST_HEAD(&sd->poll_list);
13407 		sd->output_queue_tailp = &sd->output_queue;
13408 #ifdef CONFIG_RPS
13409 		INIT_CSD(&sd->csd, rps_trigger_softirq, sd);
13410 		sd->cpu = i;
13411 #endif
13412 		INIT_CSD(&sd->defer_csd, trigger_rx_softirq, sd);
13413 
13414 		gro_init(&sd->backlog.gro);
13415 		sd->backlog.poll = process_backlog;
13416 		sd->backlog.weight = weight_p;
13417 		INIT_LIST_HEAD(&sd->backlog.poll_list);
13418 
13419 		if (net_page_pool_create(i))
13420 			goto out;
13421 	}
13422 	net_hotdata.skb_defer_nodes =
13423 		 __alloc_percpu(sizeof(struct skb_defer_node) * nr_node_ids,
13424 				__alignof__(struct skb_defer_node));
13425 	if (!net_hotdata.skb_defer_nodes)
13426 		goto out;
13427 	if (use_backlog_threads())
13428 		smpboot_register_percpu_thread(&backlog_threads);
13429 
13430 	dev_boot_phase = 0;
13431 
13432 	/* The loopback device is special if any other network devices
13433 	 * is present in a network namespace the loopback device must
13434 	 * be present. Since we now dynamically allocate and free the
13435 	 * loopback device ensure this invariant is maintained by
13436 	 * keeping the loopback device as the first device on the
13437 	 * list of network devices.  Ensuring the loopback devices
13438 	 * is the first device that appears and the last network device
13439 	 * that disappears.
13440 	 */
13441 	if (register_pernet_device(&loopback_net_ops))
13442 		goto out;
13443 
13444 	if (register_pernet_device(&default_device_ops))
13445 		goto out;
13446 
13447 	open_softirq(NET_TX_SOFTIRQ, net_tx_action);
13448 	open_softirq(NET_RX_SOFTIRQ, net_rx_action);
13449 
13450 	rc = cpuhp_setup_state_nocalls(CPUHP_NET_DEV_DEAD, "net/dev:dead",
13451 				       NULL, dev_cpu_dead);
13452 	WARN_ON(rc < 0);
13453 	rc = 0;
13454 
13455 	/* avoid static key IPIs to isolated CPUs */
13456 	if (housekeeping_enabled(HK_TYPE_MISC))
13457 		net_enable_timestamp();
13458 out:
13459 	if (rc < 0) {
13460 		for_each_possible_cpu(i) {
13461 			struct page_pool *pp_ptr;
13462 
13463 			pp_ptr = per_cpu(system_page_pool.pool, i);
13464 			if (!pp_ptr)
13465 				continue;
13466 
13467 			xdp_unreg_page_pool(pp_ptr);
13468 			page_pool_destroy(pp_ptr);
13469 			per_cpu(system_page_pool.pool, i) = NULL;
13470 		}
13471 	}
13472 
13473 	return rc;
13474 }
13475 
13476 subsys_initcall(net_dev_init);
13477