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