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