net: Add IF_OPER_TESTING
[platform/kernel/linux-rpi.git] / include / linux / netdevice.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * INET         An implementation of the TCP/IP protocol suite for the LINUX
4  *              operating system.  INET is implemented using the  BSD Socket
5  *              interface as the means of communication with the user level.
6  *
7  *              Definitions for the Interfaces handler.
8  *
9  * Version:     @(#)dev.h       1.0.10  08/12/93
10  *
11  * Authors:     Ross Biro
12  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
13  *              Corey Minyard <wf-rch!minyard@relay.EU.net>
14  *              Donald J. Becker, <becker@cesdis.gsfc.nasa.gov>
15  *              Alan Cox, <alan@lxorguk.ukuu.org.uk>
16  *              Bjorn Ekwall. <bj0rn@blox.se>
17  *              Pekka Riikonen <priikone@poseidon.pspt.fi>
18  *
19  *              Moved to /usr/include/linux for NET3
20  */
21 #ifndef _LINUX_NETDEVICE_H
22 #define _LINUX_NETDEVICE_H
23
24 #include <linux/timer.h>
25 #include <linux/bug.h>
26 #include <linux/delay.h>
27 #include <linux/atomic.h>
28 #include <linux/prefetch.h>
29 #include <asm/cache.h>
30 #include <asm/byteorder.h>
31
32 #include <linux/percpu.h>
33 #include <linux/rculist.h>
34 #include <linux/workqueue.h>
35 #include <linux/dynamic_queue_limits.h>
36
37 #include <linux/ethtool.h>
38 #include <net/net_namespace.h>
39 #ifdef CONFIG_DCB
40 #include <net/dcbnl.h>
41 #endif
42 #include <net/netprio_cgroup.h>
43 #include <net/xdp.h>
44
45 #include <linux/netdev_features.h>
46 #include <linux/neighbour.h>
47 #include <uapi/linux/netdevice.h>
48 #include <uapi/linux/if_bonding.h>
49 #include <uapi/linux/pkt_cls.h>
50 #include <linux/hashtable.h>
51
52 struct netpoll_info;
53 struct device;
54 struct phy_device;
55 struct dsa_port;
56 struct macsec_context;
57 struct macsec_ops;
58
59 struct sfp_bus;
60 /* 802.11 specific */
61 struct wireless_dev;
62 /* 802.15.4 specific */
63 struct wpan_dev;
64 struct mpls_dev;
65 /* UDP Tunnel offloads */
66 struct udp_tunnel_info;
67 struct bpf_prog;
68 struct xdp_buff;
69
70 void netdev_set_default_ethtool_ops(struct net_device *dev,
71                                     const struct ethtool_ops *ops);
72
73 /* Backlog congestion levels */
74 #define NET_RX_SUCCESS          0       /* keep 'em coming, baby */
75 #define NET_RX_DROP             1       /* packet dropped */
76
77 #define MAX_NEST_DEV 8
78
79 /*
80  * Transmit return codes: transmit return codes originate from three different
81  * namespaces:
82  *
83  * - qdisc return codes
84  * - driver transmit return codes
85  * - errno values
86  *
87  * Drivers are allowed to return any one of those in their hard_start_xmit()
88  * function. Real network devices commonly used with qdiscs should only return
89  * the driver transmit return codes though - when qdiscs are used, the actual
90  * transmission happens asynchronously, so the value is not propagated to
91  * higher layers. Virtual network devices transmit synchronously; in this case
92  * the driver transmit return codes are consumed by dev_queue_xmit(), and all
93  * others are propagated to higher layers.
94  */
95
96 /* qdisc ->enqueue() return codes. */
97 #define NET_XMIT_SUCCESS        0x00
98 #define NET_XMIT_DROP           0x01    /* skb dropped                  */
99 #define NET_XMIT_CN             0x02    /* congestion notification      */
100 #define NET_XMIT_MASK           0x0f    /* qdisc flags in net/sch_generic.h */
101
102 /* NET_XMIT_CN is special. It does not guarantee that this packet is lost. It
103  * indicates that the device will soon be dropping packets, or already drops
104  * some packets of the same priority; prompting us to send less aggressively. */
105 #define net_xmit_eval(e)        ((e) == NET_XMIT_CN ? 0 : (e))
106 #define net_xmit_errno(e)       ((e) != NET_XMIT_CN ? -ENOBUFS : 0)
107
108 /* Driver transmit return codes */
109 #define NETDEV_TX_MASK          0xf0
110
111 enum netdev_tx {
112         __NETDEV_TX_MIN  = INT_MIN,     /* make sure enum is signed */
113         NETDEV_TX_OK     = 0x00,        /* driver took care of packet */
114         NETDEV_TX_BUSY   = 0x10,        /* driver tx path was busy*/
115 };
116 typedef enum netdev_tx netdev_tx_t;
117
118 /*
119  * Current order: NETDEV_TX_MASK > NET_XMIT_MASK >= 0 is significant;
120  * hard_start_xmit() return < NET_XMIT_MASK means skb was consumed.
121  */
122 static inline bool dev_xmit_complete(int rc)
123 {
124         /*
125          * Positive cases with an skb consumed by a driver:
126          * - successful transmission (rc == NETDEV_TX_OK)
127          * - error while transmitting (rc < 0)
128          * - error while queueing to a different device (rc & NET_XMIT_MASK)
129          */
130         if (likely(rc < NET_XMIT_MASK))
131                 return true;
132
133         return false;
134 }
135
136 /*
137  *      Compute the worst-case header length according to the protocols
138  *      used.
139  */
140
141 #if defined(CONFIG_HYPERV_NET)
142 # define LL_MAX_HEADER 128
143 #elif defined(CONFIG_WLAN) || IS_ENABLED(CONFIG_AX25)
144 # if defined(CONFIG_MAC80211_MESH)
145 #  define LL_MAX_HEADER 128
146 # else
147 #  define LL_MAX_HEADER 96
148 # endif
149 #else
150 # define LL_MAX_HEADER 32
151 #endif
152
153 #if !IS_ENABLED(CONFIG_NET_IPIP) && !IS_ENABLED(CONFIG_NET_IPGRE) && \
154     !IS_ENABLED(CONFIG_IPV6_SIT) && !IS_ENABLED(CONFIG_IPV6_TUNNEL)
155 #define MAX_HEADER LL_MAX_HEADER
156 #else
157 #define MAX_HEADER (LL_MAX_HEADER + 48)
158 #endif
159
160 /*
161  *      Old network device statistics. Fields are native words
162  *      (unsigned long) so they can be read and written atomically.
163  */
164
165 struct net_device_stats {
166         unsigned long   rx_packets;
167         unsigned long   tx_packets;
168         unsigned long   rx_bytes;
169         unsigned long   tx_bytes;
170         unsigned long   rx_errors;
171         unsigned long   tx_errors;
172         unsigned long   rx_dropped;
173         unsigned long   tx_dropped;
174         unsigned long   multicast;
175         unsigned long   collisions;
176         unsigned long   rx_length_errors;
177         unsigned long   rx_over_errors;
178         unsigned long   rx_crc_errors;
179         unsigned long   rx_frame_errors;
180         unsigned long   rx_fifo_errors;
181         unsigned long   rx_missed_errors;
182         unsigned long   tx_aborted_errors;
183         unsigned long   tx_carrier_errors;
184         unsigned long   tx_fifo_errors;
185         unsigned long   tx_heartbeat_errors;
186         unsigned long   tx_window_errors;
187         unsigned long   rx_compressed;
188         unsigned long   tx_compressed;
189 };
190
191
192 #include <linux/cache.h>
193 #include <linux/skbuff.h>
194
195 #ifdef CONFIG_RPS
196 #include <linux/static_key.h>
197 extern struct static_key_false rps_needed;
198 extern struct static_key_false rfs_needed;
199 #endif
200
201 struct neighbour;
202 struct neigh_parms;
203 struct sk_buff;
204
205 struct netdev_hw_addr {
206         struct list_head        list;
207         unsigned char           addr[MAX_ADDR_LEN];
208         unsigned char           type;
209 #define NETDEV_HW_ADDR_T_LAN            1
210 #define NETDEV_HW_ADDR_T_SAN            2
211 #define NETDEV_HW_ADDR_T_SLAVE          3
212 #define NETDEV_HW_ADDR_T_UNICAST        4
213 #define NETDEV_HW_ADDR_T_MULTICAST      5
214         bool                    global_use;
215         int                     sync_cnt;
216         int                     refcount;
217         int                     synced;
218         struct rcu_head         rcu_head;
219 };
220
221 struct netdev_hw_addr_list {
222         struct list_head        list;
223         int                     count;
224 };
225
226 #define netdev_hw_addr_list_count(l) ((l)->count)
227 #define netdev_hw_addr_list_empty(l) (netdev_hw_addr_list_count(l) == 0)
228 #define netdev_hw_addr_list_for_each(ha, l) \
229         list_for_each_entry(ha, &(l)->list, list)
230
231 #define netdev_uc_count(dev) netdev_hw_addr_list_count(&(dev)->uc)
232 #define netdev_uc_empty(dev) netdev_hw_addr_list_empty(&(dev)->uc)
233 #define netdev_for_each_uc_addr(ha, dev) \
234         netdev_hw_addr_list_for_each(ha, &(dev)->uc)
235
236 #define netdev_mc_count(dev) netdev_hw_addr_list_count(&(dev)->mc)
237 #define netdev_mc_empty(dev) netdev_hw_addr_list_empty(&(dev)->mc)
238 #define netdev_for_each_mc_addr(ha, dev) \
239         netdev_hw_addr_list_for_each(ha, &(dev)->mc)
240
241 struct hh_cache {
242         unsigned int    hh_len;
243         seqlock_t       hh_lock;
244
245         /* cached hardware header; allow for machine alignment needs.        */
246 #define HH_DATA_MOD     16
247 #define HH_DATA_OFF(__len) \
248         (HH_DATA_MOD - (((__len - 1) & (HH_DATA_MOD - 1)) + 1))
249 #define HH_DATA_ALIGN(__len) \
250         (((__len)+(HH_DATA_MOD-1))&~(HH_DATA_MOD - 1))
251         unsigned long   hh_data[HH_DATA_ALIGN(LL_MAX_HEADER) / sizeof(long)];
252 };
253
254 /* Reserve HH_DATA_MOD byte-aligned hard_header_len, but at least that much.
255  * Alternative is:
256  *   dev->hard_header_len ? (dev->hard_header_len +
257  *                           (HH_DATA_MOD - 1)) & ~(HH_DATA_MOD - 1) : 0
258  *
259  * We could use other alignment values, but we must maintain the
260  * relationship HH alignment <= LL alignment.
261  */
262 #define LL_RESERVED_SPACE(dev) \
263         ((((dev)->hard_header_len+(dev)->needed_headroom)&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
264 #define LL_RESERVED_SPACE_EXTRA(dev,extra) \
265         ((((dev)->hard_header_len+(dev)->needed_headroom+(extra))&~(HH_DATA_MOD - 1)) + HH_DATA_MOD)
266
267 struct header_ops {
268         int     (*create) (struct sk_buff *skb, struct net_device *dev,
269                            unsigned short type, const void *daddr,
270                            const void *saddr, unsigned int len);
271         int     (*parse)(const struct sk_buff *skb, unsigned char *haddr);
272         int     (*cache)(const struct neighbour *neigh, struct hh_cache *hh, __be16 type);
273         void    (*cache_update)(struct hh_cache *hh,
274                                 const struct net_device *dev,
275                                 const unsigned char *haddr);
276         bool    (*validate)(const char *ll_header, unsigned int len);
277         __be16  (*parse_protocol)(const struct sk_buff *skb);
278 };
279
280 /* These flag bits are private to the generic network queueing
281  * layer; they may not be explicitly referenced by any other
282  * code.
283  */
284
285 enum netdev_state_t {
286         __LINK_STATE_START,
287         __LINK_STATE_PRESENT,
288         __LINK_STATE_NOCARRIER,
289         __LINK_STATE_LINKWATCH_PENDING,
290         __LINK_STATE_DORMANT,
291         __LINK_STATE_TESTING,
292 };
293
294
295 /*
296  * This structure holds boot-time configured netdevice settings. They
297  * are then used in the device probing.
298  */
299 struct netdev_boot_setup {
300         char name[IFNAMSIZ];
301         struct ifmap map;
302 };
303 #define NETDEV_BOOT_SETUP_MAX 8
304
305 int __init netdev_boot_setup(char *str);
306
307 struct gro_list {
308         struct list_head        list;
309         int                     count;
310 };
311
312 /*
313  * size of gro hash buckets, must less than bit number of
314  * napi_struct::gro_bitmask
315  */
316 #define GRO_HASH_BUCKETS        8
317
318 /*
319  * Structure for NAPI scheduling similar to tasklet but with weighting
320  */
321 struct napi_struct {
322         /* The poll_list must only be managed by the entity which
323          * changes the state of the NAPI_STATE_SCHED bit.  This means
324          * whoever atomically sets that bit can add this napi_struct
325          * to the per-CPU poll_list, and whoever clears that bit
326          * can remove from the list right before clearing the bit.
327          */
328         struct list_head        poll_list;
329
330         unsigned long           state;
331         int                     weight;
332         unsigned long           gro_bitmask;
333         int                     (*poll)(struct napi_struct *, int);
334 #ifdef CONFIG_NETPOLL
335         int                     poll_owner;
336 #endif
337         struct net_device       *dev;
338         struct gro_list         gro_hash[GRO_HASH_BUCKETS];
339         struct sk_buff          *skb;
340         struct list_head        rx_list; /* Pending GRO_NORMAL skbs */
341         int                     rx_count; /* length of rx_list */
342         struct hrtimer          timer;
343         struct list_head        dev_list;
344         struct hlist_node       napi_hash_node;
345         unsigned int            napi_id;
346 };
347
348 enum {
349         NAPI_STATE_SCHED,       /* Poll is scheduled */
350         NAPI_STATE_MISSED,      /* reschedule a napi */
351         NAPI_STATE_DISABLE,     /* Disable pending */
352         NAPI_STATE_NPSVC,       /* Netpoll - don't dequeue from poll_list */
353         NAPI_STATE_HASHED,      /* In NAPI hash (busy polling possible) */
354         NAPI_STATE_NO_BUSY_POLL,/* Do not add in napi_hash, no busy polling */
355         NAPI_STATE_IN_BUSY_POLL,/* sk_busy_loop() owns this NAPI */
356 };
357
358 enum {
359         NAPIF_STATE_SCHED        = BIT(NAPI_STATE_SCHED),
360         NAPIF_STATE_MISSED       = BIT(NAPI_STATE_MISSED),
361         NAPIF_STATE_DISABLE      = BIT(NAPI_STATE_DISABLE),
362         NAPIF_STATE_NPSVC        = BIT(NAPI_STATE_NPSVC),
363         NAPIF_STATE_HASHED       = BIT(NAPI_STATE_HASHED),
364         NAPIF_STATE_NO_BUSY_POLL = BIT(NAPI_STATE_NO_BUSY_POLL),
365         NAPIF_STATE_IN_BUSY_POLL = BIT(NAPI_STATE_IN_BUSY_POLL),
366 };
367
368 enum gro_result {
369         GRO_MERGED,
370         GRO_MERGED_FREE,
371         GRO_HELD,
372         GRO_NORMAL,
373         GRO_DROP,
374         GRO_CONSUMED,
375 };
376 typedef enum gro_result gro_result_t;
377
378 /*
379  * enum rx_handler_result - Possible return values for rx_handlers.
380  * @RX_HANDLER_CONSUMED: skb was consumed by rx_handler, do not process it
381  * further.
382  * @RX_HANDLER_ANOTHER: Do another round in receive path. This is indicated in
383  * case skb->dev was changed by rx_handler.
384  * @RX_HANDLER_EXACT: Force exact delivery, no wildcard.
385  * @RX_HANDLER_PASS: Do nothing, pass the skb as if no rx_handler was called.
386  *
387  * rx_handlers are functions called from inside __netif_receive_skb(), to do
388  * special processing of the skb, prior to delivery to protocol handlers.
389  *
390  * Currently, a net_device can only have a single rx_handler registered. Trying
391  * to register a second rx_handler will return -EBUSY.
392  *
393  * To register a rx_handler on a net_device, use netdev_rx_handler_register().
394  * To unregister a rx_handler on a net_device, use
395  * netdev_rx_handler_unregister().
396  *
397  * Upon return, rx_handler is expected to tell __netif_receive_skb() what to
398  * do with the skb.
399  *
400  * If the rx_handler consumed the skb in some way, it should return
401  * RX_HANDLER_CONSUMED. This is appropriate when the rx_handler arranged for
402  * the skb to be delivered in some other way.
403  *
404  * If the rx_handler changed skb->dev, to divert the skb to another
405  * net_device, it should return RX_HANDLER_ANOTHER. The rx_handler for the
406  * new device will be called if it exists.
407  *
408  * If the rx_handler decides the skb should be ignored, it should return
409  * RX_HANDLER_EXACT. The skb will only be delivered to protocol handlers that
410  * are registered on exact device (ptype->dev == skb->dev).
411  *
412  * If the rx_handler didn't change skb->dev, but wants the skb to be normally
413  * delivered, it should return RX_HANDLER_PASS.
414  *
415  * A device without a registered rx_handler will behave as if rx_handler
416  * returned RX_HANDLER_PASS.
417  */
418
419 enum rx_handler_result {
420         RX_HANDLER_CONSUMED,
421         RX_HANDLER_ANOTHER,
422         RX_HANDLER_EXACT,
423         RX_HANDLER_PASS,
424 };
425 typedef enum rx_handler_result rx_handler_result_t;
426 typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **pskb);
427
428 void __napi_schedule(struct napi_struct *n);
429 void __napi_schedule_irqoff(struct napi_struct *n);
430
431 static inline bool napi_disable_pending(struct napi_struct *n)
432 {
433         return test_bit(NAPI_STATE_DISABLE, &n->state);
434 }
435
436 bool napi_schedule_prep(struct napi_struct *n);
437
438 /**
439  *      napi_schedule - schedule NAPI poll
440  *      @n: NAPI context
441  *
442  * Schedule NAPI poll routine to be called if it is not already
443  * running.
444  */
445 static inline void napi_schedule(struct napi_struct *n)
446 {
447         if (napi_schedule_prep(n))
448                 __napi_schedule(n);
449 }
450
451 /**
452  *      napi_schedule_irqoff - schedule NAPI poll
453  *      @n: NAPI context
454  *
455  * Variant of napi_schedule(), assuming hard irqs are masked.
456  */
457 static inline void napi_schedule_irqoff(struct napi_struct *n)
458 {
459         if (napi_schedule_prep(n))
460                 __napi_schedule_irqoff(n);
461 }
462
463 /* Try to reschedule poll. Called by dev->poll() after napi_complete().  */
464 static inline bool napi_reschedule(struct napi_struct *napi)
465 {
466         if (napi_schedule_prep(napi)) {
467                 __napi_schedule(napi);
468                 return true;
469         }
470         return false;
471 }
472
473 bool napi_complete_done(struct napi_struct *n, int work_done);
474 /**
475  *      napi_complete - NAPI processing complete
476  *      @n: NAPI context
477  *
478  * Mark NAPI processing as complete.
479  * Consider using napi_complete_done() instead.
480  * Return false if device should avoid rearming interrupts.
481  */
482 static inline bool napi_complete(struct napi_struct *n)
483 {
484         return napi_complete_done(n, 0);
485 }
486
487 /**
488  *      napi_hash_del - remove a NAPI from global table
489  *      @napi: NAPI context
490  *
491  * Warning: caller must observe RCU grace period
492  * before freeing memory containing @napi, if
493  * this function returns true.
494  * Note: core networking stack automatically calls it
495  * from netif_napi_del().
496  * Drivers might want to call this helper to combine all
497  * the needed RCU grace periods into a single one.
498  */
499 bool napi_hash_del(struct napi_struct *napi);
500
501 /**
502  *      napi_disable - prevent NAPI from scheduling
503  *      @n: NAPI context
504  *
505  * Stop NAPI from being scheduled on this context.
506  * Waits till any outstanding processing completes.
507  */
508 void napi_disable(struct napi_struct *n);
509
510 /**
511  *      napi_enable - enable NAPI scheduling
512  *      @n: NAPI context
513  *
514  * Resume NAPI from being scheduled on this context.
515  * Must be paired with napi_disable.
516  */
517 static inline void napi_enable(struct napi_struct *n)
518 {
519         BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
520         smp_mb__before_atomic();
521         clear_bit(NAPI_STATE_SCHED, &n->state);
522         clear_bit(NAPI_STATE_NPSVC, &n->state);
523 }
524
525 /**
526  *      napi_synchronize - wait until NAPI is not running
527  *      @n: NAPI context
528  *
529  * Wait until NAPI is done being scheduled on this context.
530  * Waits till any outstanding processing completes but
531  * does not disable future activations.
532  */
533 static inline void napi_synchronize(const struct napi_struct *n)
534 {
535         if (IS_ENABLED(CONFIG_SMP))
536                 while (test_bit(NAPI_STATE_SCHED, &n->state))
537                         msleep(1);
538         else
539                 barrier();
540 }
541
542 /**
543  *      napi_if_scheduled_mark_missed - if napi is running, set the
544  *      NAPIF_STATE_MISSED
545  *      @n: NAPI context
546  *
547  * If napi is running, set the NAPIF_STATE_MISSED, and return true if
548  * NAPI is scheduled.
549  **/
550 static inline bool napi_if_scheduled_mark_missed(struct napi_struct *n)
551 {
552         unsigned long val, new;
553
554         do {
555                 val = READ_ONCE(n->state);
556                 if (val & NAPIF_STATE_DISABLE)
557                         return true;
558
559                 if (!(val & NAPIF_STATE_SCHED))
560                         return false;
561
562                 new = val | NAPIF_STATE_MISSED;
563         } while (cmpxchg(&n->state, val, new) != val);
564
565         return true;
566 }
567
568 enum netdev_queue_state_t {
569         __QUEUE_STATE_DRV_XOFF,
570         __QUEUE_STATE_STACK_XOFF,
571         __QUEUE_STATE_FROZEN,
572 };
573
574 #define QUEUE_STATE_DRV_XOFF    (1 << __QUEUE_STATE_DRV_XOFF)
575 #define QUEUE_STATE_STACK_XOFF  (1 << __QUEUE_STATE_STACK_XOFF)
576 #define QUEUE_STATE_FROZEN      (1 << __QUEUE_STATE_FROZEN)
577
578 #define QUEUE_STATE_ANY_XOFF    (QUEUE_STATE_DRV_XOFF | QUEUE_STATE_STACK_XOFF)
579 #define QUEUE_STATE_ANY_XOFF_OR_FROZEN (QUEUE_STATE_ANY_XOFF | \
580                                         QUEUE_STATE_FROZEN)
581 #define QUEUE_STATE_DRV_XOFF_OR_FROZEN (QUEUE_STATE_DRV_XOFF | \
582                                         QUEUE_STATE_FROZEN)
583
584 /*
585  * __QUEUE_STATE_DRV_XOFF is used by drivers to stop the transmit queue.  The
586  * netif_tx_* functions below are used to manipulate this flag.  The
587  * __QUEUE_STATE_STACK_XOFF flag is used by the stack to stop the transmit
588  * queue independently.  The netif_xmit_*stopped functions below are called
589  * to check if the queue has been stopped by the driver or stack (either
590  * of the XOFF bits are set in the state).  Drivers should not need to call
591  * netif_xmit*stopped functions, they should only be using netif_tx_*.
592  */
593
594 struct netdev_queue {
595 /*
596  * read-mostly part
597  */
598         struct net_device       *dev;
599         struct Qdisc __rcu      *qdisc;
600         struct Qdisc            *qdisc_sleeping;
601 #ifdef CONFIG_SYSFS
602         struct kobject          kobj;
603 #endif
604 #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
605         int                     numa_node;
606 #endif
607         unsigned long           tx_maxrate;
608         /*
609          * Number of TX timeouts for this queue
610          * (/sys/class/net/DEV/Q/trans_timeout)
611          */
612         unsigned long           trans_timeout;
613
614         /* Subordinate device that the queue has been assigned to */
615         struct net_device       *sb_dev;
616 #ifdef CONFIG_XDP_SOCKETS
617         struct xdp_umem         *umem;
618 #endif
619 /*
620  * write-mostly part
621  */
622         spinlock_t              _xmit_lock ____cacheline_aligned_in_smp;
623         int                     xmit_lock_owner;
624         /*
625          * Time (in jiffies) of last Tx
626          */
627         unsigned long           trans_start;
628
629         unsigned long           state;
630
631 #ifdef CONFIG_BQL
632         struct dql              dql;
633 #endif
634 } ____cacheline_aligned_in_smp;
635
636 extern int sysctl_fb_tunnels_only_for_init_net;
637 extern int sysctl_devconf_inherit_init_net;
638
639 static inline bool net_has_fallback_tunnels(const struct net *net)
640 {
641         return net == &init_net ||
642                !IS_ENABLED(CONFIG_SYSCTL) ||
643                !sysctl_fb_tunnels_only_for_init_net;
644 }
645
646 static inline int netdev_queue_numa_node_read(const struct netdev_queue *q)
647 {
648 #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
649         return q->numa_node;
650 #else
651         return NUMA_NO_NODE;
652 #endif
653 }
654
655 static inline void netdev_queue_numa_node_write(struct netdev_queue *q, int node)
656 {
657 #if defined(CONFIG_XPS) && defined(CONFIG_NUMA)
658         q->numa_node = node;
659 #endif
660 }
661
662 #ifdef CONFIG_RPS
663 /*
664  * This structure holds an RPS map which can be of variable length.  The
665  * map is an array of CPUs.
666  */
667 struct rps_map {
668         unsigned int len;
669         struct rcu_head rcu;
670         u16 cpus[];
671 };
672 #define RPS_MAP_SIZE(_num) (sizeof(struct rps_map) + ((_num) * sizeof(u16)))
673
674 /*
675  * The rps_dev_flow structure contains the mapping of a flow to a CPU, the
676  * tail pointer for that CPU's input queue at the time of last enqueue, and
677  * a hardware filter index.
678  */
679 struct rps_dev_flow {
680         u16 cpu;
681         u16 filter;
682         unsigned int last_qtail;
683 };
684 #define RPS_NO_FILTER 0xffff
685
686 /*
687  * The rps_dev_flow_table structure contains a table of flow mappings.
688  */
689 struct rps_dev_flow_table {
690         unsigned int mask;
691         struct rcu_head rcu;
692         struct rps_dev_flow flows[];
693 };
694 #define RPS_DEV_FLOW_TABLE_SIZE(_num) (sizeof(struct rps_dev_flow_table) + \
695     ((_num) * sizeof(struct rps_dev_flow)))
696
697 /*
698  * The rps_sock_flow_table contains mappings of flows to the last CPU
699  * on which they were processed by the application (set in recvmsg).
700  * Each entry is a 32bit value. Upper part is the high-order bits
701  * of flow hash, lower part is CPU number.
702  * rps_cpu_mask is used to partition the space, depending on number of
703  * possible CPUs : rps_cpu_mask = roundup_pow_of_two(nr_cpu_ids) - 1
704  * For example, if 64 CPUs are possible, rps_cpu_mask = 0x3f,
705  * meaning we use 32-6=26 bits for the hash.
706  */
707 struct rps_sock_flow_table {
708         u32     mask;
709
710         u32     ents[] ____cacheline_aligned_in_smp;
711 };
712 #define RPS_SOCK_FLOW_TABLE_SIZE(_num) (offsetof(struct rps_sock_flow_table, ents[_num]))
713
714 #define RPS_NO_CPU 0xffff
715
716 extern u32 rps_cpu_mask;
717 extern struct rps_sock_flow_table __rcu *rps_sock_flow_table;
718
719 static inline void rps_record_sock_flow(struct rps_sock_flow_table *table,
720                                         u32 hash)
721 {
722         if (table && hash) {
723                 unsigned int index = hash & table->mask;
724                 u32 val = hash & ~rps_cpu_mask;
725
726                 /* We only give a hint, preemption can change CPU under us */
727                 val |= raw_smp_processor_id();
728
729                 if (table->ents[index] != val)
730                         table->ents[index] = val;
731         }
732 }
733
734 #ifdef CONFIG_RFS_ACCEL
735 bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index, u32 flow_id,
736                          u16 filter_id);
737 #endif
738 #endif /* CONFIG_RPS */
739
740 /* This structure contains an instance of an RX queue. */
741 struct netdev_rx_queue {
742 #ifdef CONFIG_RPS
743         struct rps_map __rcu            *rps_map;
744         struct rps_dev_flow_table __rcu *rps_flow_table;
745 #endif
746         struct kobject                  kobj;
747         struct net_device               *dev;
748         struct xdp_rxq_info             xdp_rxq;
749 #ifdef CONFIG_XDP_SOCKETS
750         struct xdp_umem                 *umem;
751 #endif
752 } ____cacheline_aligned_in_smp;
753
754 /*
755  * RX queue sysfs structures and functions.
756  */
757 struct rx_queue_attribute {
758         struct attribute attr;
759         ssize_t (*show)(struct netdev_rx_queue *queue, char *buf);
760         ssize_t (*store)(struct netdev_rx_queue *queue,
761                          const char *buf, size_t len);
762 };
763
764 #ifdef CONFIG_XPS
765 /*
766  * This structure holds an XPS map which can be of variable length.  The
767  * map is an array of queues.
768  */
769 struct xps_map {
770         unsigned int len;
771         unsigned int alloc_len;
772         struct rcu_head rcu;
773         u16 queues[];
774 };
775 #define XPS_MAP_SIZE(_num) (sizeof(struct xps_map) + ((_num) * sizeof(u16)))
776 #define XPS_MIN_MAP_ALLOC ((L1_CACHE_ALIGN(offsetof(struct xps_map, queues[1])) \
777        - sizeof(struct xps_map)) / sizeof(u16))
778
779 /*
780  * This structure holds all XPS maps for device.  Maps are indexed by CPU.
781  */
782 struct xps_dev_maps {
783         struct rcu_head rcu;
784         struct xps_map __rcu *attr_map[]; /* Either CPUs map or RXQs map */
785 };
786
787 #define XPS_CPU_DEV_MAPS_SIZE(_tcs) (sizeof(struct xps_dev_maps) +      \
788         (nr_cpu_ids * (_tcs) * sizeof(struct xps_map *)))
789
790 #define XPS_RXQ_DEV_MAPS_SIZE(_tcs, _rxqs) (sizeof(struct xps_dev_maps) +\
791         (_rxqs * (_tcs) * sizeof(struct xps_map *)))
792
793 #endif /* CONFIG_XPS */
794
795 #define TC_MAX_QUEUE    16
796 #define TC_BITMASK      15
797 /* HW offloaded queuing disciplines txq count and offset maps */
798 struct netdev_tc_txq {
799         u16 count;
800         u16 offset;
801 };
802
803 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
804 /*
805  * This structure is to hold information about the device
806  * configured to run FCoE protocol stack.
807  */
808 struct netdev_fcoe_hbainfo {
809         char    manufacturer[64];
810         char    serial_number[64];
811         char    hardware_version[64];
812         char    driver_version[64];
813         char    optionrom_version[64];
814         char    firmware_version[64];
815         char    model[256];
816         char    model_description[256];
817 };
818 #endif
819
820 #define MAX_PHYS_ITEM_ID_LEN 32
821
822 /* This structure holds a unique identifier to identify some
823  * physical item (port for example) used by a netdevice.
824  */
825 struct netdev_phys_item_id {
826         unsigned char id[MAX_PHYS_ITEM_ID_LEN];
827         unsigned char id_len;
828 };
829
830 static inline bool netdev_phys_item_id_same(struct netdev_phys_item_id *a,
831                                             struct netdev_phys_item_id *b)
832 {
833         return a->id_len == b->id_len &&
834                memcmp(a->id, b->id, a->id_len) == 0;
835 }
836
837 typedef u16 (*select_queue_fallback_t)(struct net_device *dev,
838                                        struct sk_buff *skb,
839                                        struct net_device *sb_dev);
840
841 enum tc_setup_type {
842         TC_SETUP_QDISC_MQPRIO,
843         TC_SETUP_CLSU32,
844         TC_SETUP_CLSFLOWER,
845         TC_SETUP_CLSMATCHALL,
846         TC_SETUP_CLSBPF,
847         TC_SETUP_BLOCK,
848         TC_SETUP_QDISC_CBS,
849         TC_SETUP_QDISC_RED,
850         TC_SETUP_QDISC_PRIO,
851         TC_SETUP_QDISC_MQ,
852         TC_SETUP_QDISC_ETF,
853         TC_SETUP_ROOT_QDISC,
854         TC_SETUP_QDISC_GRED,
855         TC_SETUP_QDISC_TAPRIO,
856         TC_SETUP_FT,
857         TC_SETUP_QDISC_ETS,
858         TC_SETUP_QDISC_TBF,
859         TC_SETUP_QDISC_FIFO,
860 };
861
862 /* These structures hold the attributes of bpf state that are being passed
863  * to the netdevice through the bpf op.
864  */
865 enum bpf_netdev_command {
866         /* Set or clear a bpf program used in the earliest stages of packet
867          * rx. The prog will have been loaded as BPF_PROG_TYPE_XDP. The callee
868          * is responsible for calling bpf_prog_put on any old progs that are
869          * stored. In case of error, the callee need not release the new prog
870          * reference, but on success it takes ownership and must bpf_prog_put
871          * when it is no longer used.
872          */
873         XDP_SETUP_PROG,
874         XDP_SETUP_PROG_HW,
875         XDP_QUERY_PROG,
876         XDP_QUERY_PROG_HW,
877         /* BPF program for offload callbacks, invoked at program load time. */
878         BPF_OFFLOAD_MAP_ALLOC,
879         BPF_OFFLOAD_MAP_FREE,
880         XDP_SETUP_XSK_UMEM,
881 };
882
883 struct bpf_prog_offload_ops;
884 struct netlink_ext_ack;
885 struct xdp_umem;
886 struct xdp_dev_bulk_queue;
887
888 struct netdev_bpf {
889         enum bpf_netdev_command command;
890         union {
891                 /* XDP_SETUP_PROG */
892                 struct {
893                         u32 flags;
894                         struct bpf_prog *prog;
895                         struct netlink_ext_ack *extack;
896                 };
897                 /* XDP_QUERY_PROG, XDP_QUERY_PROG_HW */
898                 struct {
899                         u32 prog_id;
900                         /* flags with which program was installed */
901                         u32 prog_flags;
902                 };
903                 /* BPF_OFFLOAD_MAP_ALLOC, BPF_OFFLOAD_MAP_FREE */
904                 struct {
905                         struct bpf_offloaded_map *offmap;
906                 };
907                 /* XDP_SETUP_XSK_UMEM */
908                 struct {
909                         struct xdp_umem *umem;
910                         u16 queue_id;
911                 } xsk;
912         };
913 };
914
915 /* Flags for ndo_xsk_wakeup. */
916 #define XDP_WAKEUP_RX (1 << 0)
917 #define XDP_WAKEUP_TX (1 << 1)
918
919 #ifdef CONFIG_XFRM_OFFLOAD
920 struct xfrmdev_ops {
921         int     (*xdo_dev_state_add) (struct xfrm_state *x);
922         void    (*xdo_dev_state_delete) (struct xfrm_state *x);
923         void    (*xdo_dev_state_free) (struct xfrm_state *x);
924         bool    (*xdo_dev_offload_ok) (struct sk_buff *skb,
925                                        struct xfrm_state *x);
926         void    (*xdo_dev_state_advance_esn) (struct xfrm_state *x);
927 };
928 #endif
929
930 struct dev_ifalias {
931         struct rcu_head rcuhead;
932         char ifalias[];
933 };
934
935 struct devlink;
936 struct tlsdev_ops;
937
938 struct netdev_name_node {
939         struct hlist_node hlist;
940         struct list_head list;
941         struct net_device *dev;
942         const char *name;
943 };
944
945 int netdev_name_node_alt_create(struct net_device *dev, const char *name);
946 int netdev_name_node_alt_destroy(struct net_device *dev, const char *name);
947
948 struct netdev_net_notifier {
949         struct list_head list;
950         struct notifier_block *nb;
951 };
952
953 /*
954  * This structure defines the management hooks for network devices.
955  * The following hooks can be defined; unless noted otherwise, they are
956  * optional and can be filled with a null pointer.
957  *
958  * int (*ndo_init)(struct net_device *dev);
959  *     This function is called once when a network device is registered.
960  *     The network device can use this for any late stage initialization
961  *     or semantic validation. It can fail with an error code which will
962  *     be propagated back to register_netdev.
963  *
964  * void (*ndo_uninit)(struct net_device *dev);
965  *     This function is called when device is unregistered or when registration
966  *     fails. It is not called if init fails.
967  *
968  * int (*ndo_open)(struct net_device *dev);
969  *     This function is called when a network device transitions to the up
970  *     state.
971  *
972  * int (*ndo_stop)(struct net_device *dev);
973  *     This function is called when a network device transitions to the down
974  *     state.
975  *
976  * netdev_tx_t (*ndo_start_xmit)(struct sk_buff *skb,
977  *                               struct net_device *dev);
978  *      Called when a packet needs to be transmitted.
979  *      Returns NETDEV_TX_OK.  Can return NETDEV_TX_BUSY, but you should stop
980  *      the queue before that can happen; it's for obsolete devices and weird
981  *      corner cases, but the stack really does a non-trivial amount
982  *      of useless work if you return NETDEV_TX_BUSY.
983  *      Required; cannot be NULL.
984  *
985  * netdev_features_t (*ndo_features_check)(struct sk_buff *skb,
986  *                                         struct net_device *dev
987  *                                         netdev_features_t features);
988  *      Called by core transmit path to determine if device is capable of
989  *      performing offload operations on a given packet. This is to give
990  *      the device an opportunity to implement any restrictions that cannot
991  *      be otherwise expressed by feature flags. The check is called with
992  *      the set of features that the stack has calculated and it returns
993  *      those the driver believes to be appropriate.
994  *
995  * u16 (*ndo_select_queue)(struct net_device *dev, struct sk_buff *skb,
996  *                         struct net_device *sb_dev);
997  *      Called to decide which queue to use when device supports multiple
998  *      transmit queues.
999  *
1000  * void (*ndo_change_rx_flags)(struct net_device *dev, int flags);
1001  *      This function is called to allow device receiver to make
1002  *      changes to configuration when multicast or promiscuous is enabled.
1003  *
1004  * void (*ndo_set_rx_mode)(struct net_device *dev);
1005  *      This function is called device changes address list filtering.
1006  *      If driver handles unicast address filtering, it should set
1007  *      IFF_UNICAST_FLT in its priv_flags.
1008  *
1009  * int (*ndo_set_mac_address)(struct net_device *dev, void *addr);
1010  *      This function  is called when the Media Access Control address
1011  *      needs to be changed. If this interface is not defined, the
1012  *      MAC address can not be changed.
1013  *
1014  * int (*ndo_validate_addr)(struct net_device *dev);
1015  *      Test if Media Access Control address is valid for the device.
1016  *
1017  * int (*ndo_do_ioctl)(struct net_device *dev, struct ifreq *ifr, int cmd);
1018  *      Called when a user requests an ioctl which can't be handled by
1019  *      the generic interface code. If not defined ioctls return
1020  *      not supported error code.
1021  *
1022  * int (*ndo_set_config)(struct net_device *dev, struct ifmap *map);
1023  *      Used to set network devices bus interface parameters. This interface
1024  *      is retained for legacy reasons; new devices should use the bus
1025  *      interface (PCI) for low level management.
1026  *
1027  * int (*ndo_change_mtu)(struct net_device *dev, int new_mtu);
1028  *      Called when a user wants to change the Maximum Transfer Unit
1029  *      of a device.
1030  *
1031  * void (*ndo_tx_timeout)(struct net_device *dev, unsigned int txqueue);
1032  *      Callback used when the transmitter has not made any progress
1033  *      for dev->watchdog ticks.
1034  *
1035  * void (*ndo_get_stats64)(struct net_device *dev,
1036  *                         struct rtnl_link_stats64 *storage);
1037  * struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
1038  *      Called when a user wants to get the network device usage
1039  *      statistics. Drivers must do one of the following:
1040  *      1. Define @ndo_get_stats64 to fill in a zero-initialised
1041  *         rtnl_link_stats64 structure passed by the caller.
1042  *      2. Define @ndo_get_stats to update a net_device_stats structure
1043  *         (which should normally be dev->stats) and return a pointer to
1044  *         it. The structure may be changed asynchronously only if each
1045  *         field is written atomically.
1046  *      3. Update dev->stats asynchronously and atomically, and define
1047  *         neither operation.
1048  *
1049  * bool (*ndo_has_offload_stats)(const struct net_device *dev, int attr_id)
1050  *      Return true if this device supports offload stats of this attr_id.
1051  *
1052  * int (*ndo_get_offload_stats)(int attr_id, const struct net_device *dev,
1053  *      void *attr_data)
1054  *      Get statistics for offload operations by attr_id. Write it into the
1055  *      attr_data pointer.
1056  *
1057  * int (*ndo_vlan_rx_add_vid)(struct net_device *dev, __be16 proto, u16 vid);
1058  *      If device supports VLAN filtering this function is called when a
1059  *      VLAN id is registered.
1060  *
1061  * int (*ndo_vlan_rx_kill_vid)(struct net_device *dev, __be16 proto, u16 vid);
1062  *      If device supports VLAN filtering this function is called when a
1063  *      VLAN id is unregistered.
1064  *
1065  * void (*ndo_poll_controller)(struct net_device *dev);
1066  *
1067  *      SR-IOV management functions.
1068  * int (*ndo_set_vf_mac)(struct net_device *dev, int vf, u8* mac);
1069  * int (*ndo_set_vf_vlan)(struct net_device *dev, int vf, u16 vlan,
1070  *                        u8 qos, __be16 proto);
1071  * int (*ndo_set_vf_rate)(struct net_device *dev, int vf, int min_tx_rate,
1072  *                        int max_tx_rate);
1073  * int (*ndo_set_vf_spoofchk)(struct net_device *dev, int vf, bool setting);
1074  * int (*ndo_set_vf_trust)(struct net_device *dev, int vf, bool setting);
1075  * int (*ndo_get_vf_config)(struct net_device *dev,
1076  *                          int vf, struct ifla_vf_info *ivf);
1077  * int (*ndo_set_vf_link_state)(struct net_device *dev, int vf, int link_state);
1078  * int (*ndo_set_vf_port)(struct net_device *dev, int vf,
1079  *                        struct nlattr *port[]);
1080  *
1081  *      Enable or disable the VF ability to query its RSS Redirection Table and
1082  *      Hash Key. This is needed since on some devices VF share this information
1083  *      with PF and querying it may introduce a theoretical security risk.
1084  * int (*ndo_set_vf_rss_query_en)(struct net_device *dev, int vf, bool setting);
1085  * int (*ndo_get_vf_port)(struct net_device *dev, int vf, struct sk_buff *skb);
1086  * int (*ndo_setup_tc)(struct net_device *dev, enum tc_setup_type type,
1087  *                     void *type_data);
1088  *      Called to setup any 'tc' scheduler, classifier or action on @dev.
1089  *      This is always called from the stack with the rtnl lock held and netif
1090  *      tx queues stopped. This allows the netdevice to perform queue
1091  *      management safely.
1092  *
1093  *      Fiber Channel over Ethernet (FCoE) offload functions.
1094  * int (*ndo_fcoe_enable)(struct net_device *dev);
1095  *      Called when the FCoE protocol stack wants to start using LLD for FCoE
1096  *      so the underlying device can perform whatever needed configuration or
1097  *      initialization to support acceleration of FCoE traffic.
1098  *
1099  * int (*ndo_fcoe_disable)(struct net_device *dev);
1100  *      Called when the FCoE protocol stack wants to stop using LLD for FCoE
1101  *      so the underlying device can perform whatever needed clean-ups to
1102  *      stop supporting acceleration of FCoE traffic.
1103  *
1104  * int (*ndo_fcoe_ddp_setup)(struct net_device *dev, u16 xid,
1105  *                           struct scatterlist *sgl, unsigned int sgc);
1106  *      Called when the FCoE Initiator wants to initialize an I/O that
1107  *      is a possible candidate for Direct Data Placement (DDP). The LLD can
1108  *      perform necessary setup and returns 1 to indicate the device is set up
1109  *      successfully to perform DDP on this I/O, otherwise this returns 0.
1110  *
1111  * int (*ndo_fcoe_ddp_done)(struct net_device *dev,  u16 xid);
1112  *      Called when the FCoE Initiator/Target is done with the DDPed I/O as
1113  *      indicated by the FC exchange id 'xid', so the underlying device can
1114  *      clean up and reuse resources for later DDP requests.
1115  *
1116  * int (*ndo_fcoe_ddp_target)(struct net_device *dev, u16 xid,
1117  *                            struct scatterlist *sgl, unsigned int sgc);
1118  *      Called when the FCoE Target wants to initialize an I/O that
1119  *      is a possible candidate for Direct Data Placement (DDP). The LLD can
1120  *      perform necessary setup and returns 1 to indicate the device is set up
1121  *      successfully to perform DDP on this I/O, otherwise this returns 0.
1122  *
1123  * int (*ndo_fcoe_get_hbainfo)(struct net_device *dev,
1124  *                             struct netdev_fcoe_hbainfo *hbainfo);
1125  *      Called when the FCoE Protocol stack wants information on the underlying
1126  *      device. This information is utilized by the FCoE protocol stack to
1127  *      register attributes with Fiber Channel management service as per the
1128  *      FC-GS Fabric Device Management Information(FDMI) specification.
1129  *
1130  * int (*ndo_fcoe_get_wwn)(struct net_device *dev, u64 *wwn, int type);
1131  *      Called when the underlying device wants to override default World Wide
1132  *      Name (WWN) generation mechanism in FCoE protocol stack to pass its own
1133  *      World Wide Port Name (WWPN) or World Wide Node Name (WWNN) to the FCoE
1134  *      protocol stack to use.
1135  *
1136  *      RFS acceleration.
1137  * int (*ndo_rx_flow_steer)(struct net_device *dev, const struct sk_buff *skb,
1138  *                          u16 rxq_index, u32 flow_id);
1139  *      Set hardware filter for RFS.  rxq_index is the target queue index;
1140  *      flow_id is a flow ID to be passed to rps_may_expire_flow() later.
1141  *      Return the filter ID on success, or a negative error code.
1142  *
1143  *      Slave management functions (for bridge, bonding, etc).
1144  * int (*ndo_add_slave)(struct net_device *dev, struct net_device *slave_dev);
1145  *      Called to make another netdev an underling.
1146  *
1147  * int (*ndo_del_slave)(struct net_device *dev, struct net_device *slave_dev);
1148  *      Called to release previously enslaved netdev.
1149  *
1150  *      Feature/offload setting functions.
1151  * netdev_features_t (*ndo_fix_features)(struct net_device *dev,
1152  *              netdev_features_t features);
1153  *      Adjusts the requested feature flags according to device-specific
1154  *      constraints, and returns the resulting flags. Must not modify
1155  *      the device state.
1156  *
1157  * int (*ndo_set_features)(struct net_device *dev, netdev_features_t features);
1158  *      Called to update device configuration to new features. Passed
1159  *      feature set might be less than what was returned by ndo_fix_features()).
1160  *      Must return >0 or -errno if it changed dev->features itself.
1161  *
1162  * int (*ndo_fdb_add)(struct ndmsg *ndm, struct nlattr *tb[],
1163  *                    struct net_device *dev,
1164  *                    const unsigned char *addr, u16 vid, u16 flags,
1165  *                    struct netlink_ext_ack *extack);
1166  *      Adds an FDB entry to dev for addr.
1167  * int (*ndo_fdb_del)(struct ndmsg *ndm, struct nlattr *tb[],
1168  *                    struct net_device *dev,
1169  *                    const unsigned char *addr, u16 vid)
1170  *      Deletes the FDB entry from dev coresponding to addr.
1171  * int (*ndo_fdb_dump)(struct sk_buff *skb, struct netlink_callback *cb,
1172  *                     struct net_device *dev, struct net_device *filter_dev,
1173  *                     int *idx)
1174  *      Used to add FDB entries to dump requests. Implementers should add
1175  *      entries to skb and update idx with the number of entries.
1176  *
1177  * int (*ndo_bridge_setlink)(struct net_device *dev, struct nlmsghdr *nlh,
1178  *                           u16 flags, struct netlink_ext_ack *extack)
1179  * int (*ndo_bridge_getlink)(struct sk_buff *skb, u32 pid, u32 seq,
1180  *                           struct net_device *dev, u32 filter_mask,
1181  *                           int nlflags)
1182  * int (*ndo_bridge_dellink)(struct net_device *dev, struct nlmsghdr *nlh,
1183  *                           u16 flags);
1184  *
1185  * int (*ndo_change_carrier)(struct net_device *dev, bool new_carrier);
1186  *      Called to change device carrier. Soft-devices (like dummy, team, etc)
1187  *      which do not represent real hardware may define this to allow their
1188  *      userspace components to manage their virtual carrier state. Devices
1189  *      that determine carrier state from physical hardware properties (eg
1190  *      network cables) or protocol-dependent mechanisms (eg
1191  *      USB_CDC_NOTIFY_NETWORK_CONNECTION) should NOT implement this function.
1192  *
1193  * int (*ndo_get_phys_port_id)(struct net_device *dev,
1194  *                             struct netdev_phys_item_id *ppid);
1195  *      Called to get ID of physical port of this device. If driver does
1196  *      not implement this, it is assumed that the hw is not able to have
1197  *      multiple net devices on single physical port.
1198  *
1199  * int (*ndo_get_port_parent_id)(struct net_device *dev,
1200  *                               struct netdev_phys_item_id *ppid)
1201  *      Called to get the parent ID of the physical port of this device.
1202  *
1203  * void (*ndo_udp_tunnel_add)(struct net_device *dev,
1204  *                            struct udp_tunnel_info *ti);
1205  *      Called by UDP tunnel to notify a driver about the UDP port and socket
1206  *      address family that a UDP tunnel is listnening to. It is called only
1207  *      when a new port starts listening. The operation is protected by the
1208  *      RTNL.
1209  *
1210  * void (*ndo_udp_tunnel_del)(struct net_device *dev,
1211  *                            struct udp_tunnel_info *ti);
1212  *      Called by UDP tunnel to notify the driver about a UDP port and socket
1213  *      address family that the UDP tunnel is not listening to anymore. The
1214  *      operation is protected by the RTNL.
1215  *
1216  * void* (*ndo_dfwd_add_station)(struct net_device *pdev,
1217  *                               struct net_device *dev)
1218  *      Called by upper layer devices to accelerate switching or other
1219  *      station functionality into hardware. 'pdev is the lowerdev
1220  *      to use for the offload and 'dev' is the net device that will
1221  *      back the offload. Returns a pointer to the private structure
1222  *      the upper layer will maintain.
1223  * void (*ndo_dfwd_del_station)(struct net_device *pdev, void *priv)
1224  *      Called by upper layer device to delete the station created
1225  *      by 'ndo_dfwd_add_station'. 'pdev' is the net device backing
1226  *      the station and priv is the structure returned by the add
1227  *      operation.
1228  * int (*ndo_set_tx_maxrate)(struct net_device *dev,
1229  *                           int queue_index, u32 maxrate);
1230  *      Called when a user wants to set a max-rate limitation of specific
1231  *      TX queue.
1232  * int (*ndo_get_iflink)(const struct net_device *dev);
1233  *      Called to get the iflink value of this device.
1234  * void (*ndo_change_proto_down)(struct net_device *dev,
1235  *                               bool proto_down);
1236  *      This function is used to pass protocol port error state information
1237  *      to the switch driver. The switch driver can react to the proto_down
1238  *      by doing a phys down on the associated switch port.
1239  * int (*ndo_fill_metadata_dst)(struct net_device *dev, struct sk_buff *skb);
1240  *      This function is used to get egress tunnel information for given skb.
1241  *      This is useful for retrieving outer tunnel header parameters while
1242  *      sampling packet.
1243  * void (*ndo_set_rx_headroom)(struct net_device *dev, int needed_headroom);
1244  *      This function is used to specify the headroom that the skb must
1245  *      consider when allocation skb during packet reception. Setting
1246  *      appropriate rx headroom value allows avoiding skb head copy on
1247  *      forward. Setting a negative value resets the rx headroom to the
1248  *      default value.
1249  * int (*ndo_bpf)(struct net_device *dev, struct netdev_bpf *bpf);
1250  *      This function is used to set or query state related to XDP on the
1251  *      netdevice and manage BPF offload. See definition of
1252  *      enum bpf_netdev_command for details.
1253  * int (*ndo_xdp_xmit)(struct net_device *dev, int n, struct xdp_frame **xdp,
1254  *                      u32 flags);
1255  *      This function is used to submit @n XDP packets for transmit on a
1256  *      netdevice. Returns number of frames successfully transmitted, frames
1257  *      that got dropped are freed/returned via xdp_return_frame().
1258  *      Returns negative number, means general error invoking ndo, meaning
1259  *      no frames were xmit'ed and core-caller will free all frames.
1260  * int (*ndo_xsk_wakeup)(struct net_device *dev, u32 queue_id, u32 flags);
1261  *      This function is used to wake up the softirq, ksoftirqd or kthread
1262  *      responsible for sending and/or receiving packets on a specific
1263  *      queue id bound to an AF_XDP socket. The flags field specifies if
1264  *      only RX, only Tx, or both should be woken up using the flags
1265  *      XDP_WAKEUP_RX and XDP_WAKEUP_TX.
1266  * struct devlink_port *(*ndo_get_devlink_port)(struct net_device *dev);
1267  *      Get devlink port instance associated with a given netdev.
1268  *      Called with a reference on the netdevice and devlink locks only,
1269  *      rtnl_lock is not held.
1270  */
1271 struct net_device_ops {
1272         int                     (*ndo_init)(struct net_device *dev);
1273         void                    (*ndo_uninit)(struct net_device *dev);
1274         int                     (*ndo_open)(struct net_device *dev);
1275         int                     (*ndo_stop)(struct net_device *dev);
1276         netdev_tx_t             (*ndo_start_xmit)(struct sk_buff *skb,
1277                                                   struct net_device *dev);
1278         netdev_features_t       (*ndo_features_check)(struct sk_buff *skb,
1279                                                       struct net_device *dev,
1280                                                       netdev_features_t features);
1281         u16                     (*ndo_select_queue)(struct net_device *dev,
1282                                                     struct sk_buff *skb,
1283                                                     struct net_device *sb_dev);
1284         void                    (*ndo_change_rx_flags)(struct net_device *dev,
1285                                                        int flags);
1286         void                    (*ndo_set_rx_mode)(struct net_device *dev);
1287         int                     (*ndo_set_mac_address)(struct net_device *dev,
1288                                                        void *addr);
1289         int                     (*ndo_validate_addr)(struct net_device *dev);
1290         int                     (*ndo_do_ioctl)(struct net_device *dev,
1291                                                 struct ifreq *ifr, int cmd);
1292         int                     (*ndo_set_config)(struct net_device *dev,
1293                                                   struct ifmap *map);
1294         int                     (*ndo_change_mtu)(struct net_device *dev,
1295                                                   int new_mtu);
1296         int                     (*ndo_neigh_setup)(struct net_device *dev,
1297                                                    struct neigh_parms *);
1298         void                    (*ndo_tx_timeout) (struct net_device *dev,
1299                                                    unsigned int txqueue);
1300
1301         void                    (*ndo_get_stats64)(struct net_device *dev,
1302                                                    struct rtnl_link_stats64 *storage);
1303         bool                    (*ndo_has_offload_stats)(const struct net_device *dev, int attr_id);
1304         int                     (*ndo_get_offload_stats)(int attr_id,
1305                                                          const struct net_device *dev,
1306                                                          void *attr_data);
1307         struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
1308
1309         int                     (*ndo_vlan_rx_add_vid)(struct net_device *dev,
1310                                                        __be16 proto, u16 vid);
1311         int                     (*ndo_vlan_rx_kill_vid)(struct net_device *dev,
1312                                                         __be16 proto, u16 vid);
1313 #ifdef CONFIG_NET_POLL_CONTROLLER
1314         void                    (*ndo_poll_controller)(struct net_device *dev);
1315         int                     (*ndo_netpoll_setup)(struct net_device *dev,
1316                                                      struct netpoll_info *info);
1317         void                    (*ndo_netpoll_cleanup)(struct net_device *dev);
1318 #endif
1319         int                     (*ndo_set_vf_mac)(struct net_device *dev,
1320                                                   int queue, u8 *mac);
1321         int                     (*ndo_set_vf_vlan)(struct net_device *dev,
1322                                                    int queue, u16 vlan,
1323                                                    u8 qos, __be16 proto);
1324         int                     (*ndo_set_vf_rate)(struct net_device *dev,
1325                                                    int vf, int min_tx_rate,
1326                                                    int max_tx_rate);
1327         int                     (*ndo_set_vf_spoofchk)(struct net_device *dev,
1328                                                        int vf, bool setting);
1329         int                     (*ndo_set_vf_trust)(struct net_device *dev,
1330                                                     int vf, bool setting);
1331         int                     (*ndo_get_vf_config)(struct net_device *dev,
1332                                                      int vf,
1333                                                      struct ifla_vf_info *ivf);
1334         int                     (*ndo_set_vf_link_state)(struct net_device *dev,
1335                                                          int vf, int link_state);
1336         int                     (*ndo_get_vf_stats)(struct net_device *dev,
1337                                                     int vf,
1338                                                     struct ifla_vf_stats
1339                                                     *vf_stats);
1340         int                     (*ndo_set_vf_port)(struct net_device *dev,
1341                                                    int vf,
1342                                                    struct nlattr *port[]);
1343         int                     (*ndo_get_vf_port)(struct net_device *dev,
1344                                                    int vf, struct sk_buff *skb);
1345         int                     (*ndo_get_vf_guid)(struct net_device *dev,
1346                                                    int vf,
1347                                                    struct ifla_vf_guid *node_guid,
1348                                                    struct ifla_vf_guid *port_guid);
1349         int                     (*ndo_set_vf_guid)(struct net_device *dev,
1350                                                    int vf, u64 guid,
1351                                                    int guid_type);
1352         int                     (*ndo_set_vf_rss_query_en)(
1353                                                    struct net_device *dev,
1354                                                    int vf, bool setting);
1355         int                     (*ndo_setup_tc)(struct net_device *dev,
1356                                                 enum tc_setup_type type,
1357                                                 void *type_data);
1358 #if IS_ENABLED(CONFIG_FCOE)
1359         int                     (*ndo_fcoe_enable)(struct net_device *dev);
1360         int                     (*ndo_fcoe_disable)(struct net_device *dev);
1361         int                     (*ndo_fcoe_ddp_setup)(struct net_device *dev,
1362                                                       u16 xid,
1363                                                       struct scatterlist *sgl,
1364                                                       unsigned int sgc);
1365         int                     (*ndo_fcoe_ddp_done)(struct net_device *dev,
1366                                                      u16 xid);
1367         int                     (*ndo_fcoe_ddp_target)(struct net_device *dev,
1368                                                        u16 xid,
1369                                                        struct scatterlist *sgl,
1370                                                        unsigned int sgc);
1371         int                     (*ndo_fcoe_get_hbainfo)(struct net_device *dev,
1372                                                         struct netdev_fcoe_hbainfo *hbainfo);
1373 #endif
1374
1375 #if IS_ENABLED(CONFIG_LIBFCOE)
1376 #define NETDEV_FCOE_WWNN 0
1377 #define NETDEV_FCOE_WWPN 1
1378         int                     (*ndo_fcoe_get_wwn)(struct net_device *dev,
1379                                                     u64 *wwn, int type);
1380 #endif
1381
1382 #ifdef CONFIG_RFS_ACCEL
1383         int                     (*ndo_rx_flow_steer)(struct net_device *dev,
1384                                                      const struct sk_buff *skb,
1385                                                      u16 rxq_index,
1386                                                      u32 flow_id);
1387 #endif
1388         int                     (*ndo_add_slave)(struct net_device *dev,
1389                                                  struct net_device *slave_dev,
1390                                                  struct netlink_ext_ack *extack);
1391         int                     (*ndo_del_slave)(struct net_device *dev,
1392                                                  struct net_device *slave_dev);
1393         netdev_features_t       (*ndo_fix_features)(struct net_device *dev,
1394                                                     netdev_features_t features);
1395         int                     (*ndo_set_features)(struct net_device *dev,
1396                                                     netdev_features_t features);
1397         int                     (*ndo_neigh_construct)(struct net_device *dev,
1398                                                        struct neighbour *n);
1399         void                    (*ndo_neigh_destroy)(struct net_device *dev,
1400                                                      struct neighbour *n);
1401
1402         int                     (*ndo_fdb_add)(struct ndmsg *ndm,
1403                                                struct nlattr *tb[],
1404                                                struct net_device *dev,
1405                                                const unsigned char *addr,
1406                                                u16 vid,
1407                                                u16 flags,
1408                                                struct netlink_ext_ack *extack);
1409         int                     (*ndo_fdb_del)(struct ndmsg *ndm,
1410                                                struct nlattr *tb[],
1411                                                struct net_device *dev,
1412                                                const unsigned char *addr,
1413                                                u16 vid);
1414         int                     (*ndo_fdb_dump)(struct sk_buff *skb,
1415                                                 struct netlink_callback *cb,
1416                                                 struct net_device *dev,
1417                                                 struct net_device *filter_dev,
1418                                                 int *idx);
1419         int                     (*ndo_fdb_get)(struct sk_buff *skb,
1420                                                struct nlattr *tb[],
1421                                                struct net_device *dev,
1422                                                const unsigned char *addr,
1423                                                u16 vid, u32 portid, u32 seq,
1424                                                struct netlink_ext_ack *extack);
1425         int                     (*ndo_bridge_setlink)(struct net_device *dev,
1426                                                       struct nlmsghdr *nlh,
1427                                                       u16 flags,
1428                                                       struct netlink_ext_ack *extack);
1429         int                     (*ndo_bridge_getlink)(struct sk_buff *skb,
1430                                                       u32 pid, u32 seq,
1431                                                       struct net_device *dev,
1432                                                       u32 filter_mask,
1433                                                       int nlflags);
1434         int                     (*ndo_bridge_dellink)(struct net_device *dev,
1435                                                       struct nlmsghdr *nlh,
1436                                                       u16 flags);
1437         int                     (*ndo_change_carrier)(struct net_device *dev,
1438                                                       bool new_carrier);
1439         int                     (*ndo_get_phys_port_id)(struct net_device *dev,
1440                                                         struct netdev_phys_item_id *ppid);
1441         int                     (*ndo_get_port_parent_id)(struct net_device *dev,
1442                                                           struct netdev_phys_item_id *ppid);
1443         int                     (*ndo_get_phys_port_name)(struct net_device *dev,
1444                                                           char *name, size_t len);
1445         void                    (*ndo_udp_tunnel_add)(struct net_device *dev,
1446                                                       struct udp_tunnel_info *ti);
1447         void                    (*ndo_udp_tunnel_del)(struct net_device *dev,
1448                                                       struct udp_tunnel_info *ti);
1449         void*                   (*ndo_dfwd_add_station)(struct net_device *pdev,
1450                                                         struct net_device *dev);
1451         void                    (*ndo_dfwd_del_station)(struct net_device *pdev,
1452                                                         void *priv);
1453
1454         int                     (*ndo_set_tx_maxrate)(struct net_device *dev,
1455                                                       int queue_index,
1456                                                       u32 maxrate);
1457         int                     (*ndo_get_iflink)(const struct net_device *dev);
1458         int                     (*ndo_change_proto_down)(struct net_device *dev,
1459                                                          bool proto_down);
1460         int                     (*ndo_fill_metadata_dst)(struct net_device *dev,
1461                                                        struct sk_buff *skb);
1462         void                    (*ndo_set_rx_headroom)(struct net_device *dev,
1463                                                        int needed_headroom);
1464         int                     (*ndo_bpf)(struct net_device *dev,
1465                                            struct netdev_bpf *bpf);
1466         int                     (*ndo_xdp_xmit)(struct net_device *dev, int n,
1467                                                 struct xdp_frame **xdp,
1468                                                 u32 flags);
1469         int                     (*ndo_xsk_wakeup)(struct net_device *dev,
1470                                                   u32 queue_id, u32 flags);
1471         struct devlink_port *   (*ndo_get_devlink_port)(struct net_device *dev);
1472 };
1473
1474 /**
1475  * enum net_device_priv_flags - &struct net_device priv_flags
1476  *
1477  * These are the &struct net_device, they are only set internally
1478  * by drivers and used in the kernel. These flags are invisible to
1479  * userspace; this means that the order of these flags can change
1480  * during any kernel release.
1481  *
1482  * You should have a pretty good reason to be extending these flags.
1483  *
1484  * @IFF_802_1Q_VLAN: 802.1Q VLAN device
1485  * @IFF_EBRIDGE: Ethernet bridging device
1486  * @IFF_BONDING: bonding master or slave
1487  * @IFF_ISATAP: ISATAP interface (RFC4214)
1488  * @IFF_WAN_HDLC: WAN HDLC device
1489  * @IFF_XMIT_DST_RELEASE: dev_hard_start_xmit() is allowed to
1490  *      release skb->dst
1491  * @IFF_DONT_BRIDGE: disallow bridging this ether dev
1492  * @IFF_DISABLE_NETPOLL: disable netpoll at run-time
1493  * @IFF_MACVLAN_PORT: device used as macvlan port
1494  * @IFF_BRIDGE_PORT: device used as bridge port
1495  * @IFF_OVS_DATAPATH: device used as Open vSwitch datapath port
1496  * @IFF_TX_SKB_SHARING: The interface supports sharing skbs on transmit
1497  * @IFF_UNICAST_FLT: Supports unicast filtering
1498  * @IFF_TEAM_PORT: device used as team port
1499  * @IFF_SUPP_NOFCS: device supports sending custom FCS
1500  * @IFF_LIVE_ADDR_CHANGE: device supports hardware address
1501  *      change when it's running
1502  * @IFF_MACVLAN: Macvlan device
1503  * @IFF_XMIT_DST_RELEASE_PERM: IFF_XMIT_DST_RELEASE not taking into account
1504  *      underlying stacked devices
1505  * @IFF_L3MDEV_MASTER: device is an L3 master device
1506  * @IFF_NO_QUEUE: device can run without qdisc attached
1507  * @IFF_OPENVSWITCH: device is a Open vSwitch master
1508  * @IFF_L3MDEV_SLAVE: device is enslaved to an L3 master device
1509  * @IFF_TEAM: device is a team device
1510  * @IFF_RXFH_CONFIGURED: device has had Rx Flow indirection table configured
1511  * @IFF_PHONY_HEADROOM: the headroom value is controlled by an external
1512  *      entity (i.e. the master device for bridged veth)
1513  * @IFF_MACSEC: device is a MACsec device
1514  * @IFF_NO_RX_HANDLER: device doesn't support the rx_handler hook
1515  * @IFF_FAILOVER: device is a failover master device
1516  * @IFF_FAILOVER_SLAVE: device is lower dev of a failover master device
1517  * @IFF_L3MDEV_RX_HANDLER: only invoke the rx handler of L3 master device
1518  * @IFF_LIVE_RENAME_OK: rename is allowed while device is up and running
1519  */
1520 enum netdev_priv_flags {
1521         IFF_802_1Q_VLAN                 = 1<<0,
1522         IFF_EBRIDGE                     = 1<<1,
1523         IFF_BONDING                     = 1<<2,
1524         IFF_ISATAP                      = 1<<3,
1525         IFF_WAN_HDLC                    = 1<<4,
1526         IFF_XMIT_DST_RELEASE            = 1<<5,
1527         IFF_DONT_BRIDGE                 = 1<<6,
1528         IFF_DISABLE_NETPOLL             = 1<<7,
1529         IFF_MACVLAN_PORT                = 1<<8,
1530         IFF_BRIDGE_PORT                 = 1<<9,
1531         IFF_OVS_DATAPATH                = 1<<10,
1532         IFF_TX_SKB_SHARING              = 1<<11,
1533         IFF_UNICAST_FLT                 = 1<<12,
1534         IFF_TEAM_PORT                   = 1<<13,
1535         IFF_SUPP_NOFCS                  = 1<<14,
1536         IFF_LIVE_ADDR_CHANGE            = 1<<15,
1537         IFF_MACVLAN                     = 1<<16,
1538         IFF_XMIT_DST_RELEASE_PERM       = 1<<17,
1539         IFF_L3MDEV_MASTER               = 1<<18,
1540         IFF_NO_QUEUE                    = 1<<19,
1541         IFF_OPENVSWITCH                 = 1<<20,
1542         IFF_L3MDEV_SLAVE                = 1<<21,
1543         IFF_TEAM                        = 1<<22,
1544         IFF_RXFH_CONFIGURED             = 1<<23,
1545         IFF_PHONY_HEADROOM              = 1<<24,
1546         IFF_MACSEC                      = 1<<25,
1547         IFF_NO_RX_HANDLER               = 1<<26,
1548         IFF_FAILOVER                    = 1<<27,
1549         IFF_FAILOVER_SLAVE              = 1<<28,
1550         IFF_L3MDEV_RX_HANDLER           = 1<<29,
1551         IFF_LIVE_RENAME_OK              = 1<<30,
1552 };
1553
1554 #define IFF_802_1Q_VLAN                 IFF_802_1Q_VLAN
1555 #define IFF_EBRIDGE                     IFF_EBRIDGE
1556 #define IFF_BONDING                     IFF_BONDING
1557 #define IFF_ISATAP                      IFF_ISATAP
1558 #define IFF_WAN_HDLC                    IFF_WAN_HDLC
1559 #define IFF_XMIT_DST_RELEASE            IFF_XMIT_DST_RELEASE
1560 #define IFF_DONT_BRIDGE                 IFF_DONT_BRIDGE
1561 #define IFF_DISABLE_NETPOLL             IFF_DISABLE_NETPOLL
1562 #define IFF_MACVLAN_PORT                IFF_MACVLAN_PORT
1563 #define IFF_BRIDGE_PORT                 IFF_BRIDGE_PORT
1564 #define IFF_OVS_DATAPATH                IFF_OVS_DATAPATH
1565 #define IFF_TX_SKB_SHARING              IFF_TX_SKB_SHARING
1566 #define IFF_UNICAST_FLT                 IFF_UNICAST_FLT
1567 #define IFF_TEAM_PORT                   IFF_TEAM_PORT
1568 #define IFF_SUPP_NOFCS                  IFF_SUPP_NOFCS
1569 #define IFF_LIVE_ADDR_CHANGE            IFF_LIVE_ADDR_CHANGE
1570 #define IFF_MACVLAN                     IFF_MACVLAN
1571 #define IFF_XMIT_DST_RELEASE_PERM       IFF_XMIT_DST_RELEASE_PERM
1572 #define IFF_L3MDEV_MASTER               IFF_L3MDEV_MASTER
1573 #define IFF_NO_QUEUE                    IFF_NO_QUEUE
1574 #define IFF_OPENVSWITCH                 IFF_OPENVSWITCH
1575 #define IFF_L3MDEV_SLAVE                IFF_L3MDEV_SLAVE
1576 #define IFF_TEAM                        IFF_TEAM
1577 #define IFF_RXFH_CONFIGURED             IFF_RXFH_CONFIGURED
1578 #define IFF_MACSEC                      IFF_MACSEC
1579 #define IFF_NO_RX_HANDLER               IFF_NO_RX_HANDLER
1580 #define IFF_FAILOVER                    IFF_FAILOVER
1581 #define IFF_FAILOVER_SLAVE              IFF_FAILOVER_SLAVE
1582 #define IFF_L3MDEV_RX_HANDLER           IFF_L3MDEV_RX_HANDLER
1583 #define IFF_LIVE_RENAME_OK              IFF_LIVE_RENAME_OK
1584
1585 /**
1586  *      struct net_device - The DEVICE structure.
1587  *
1588  *      Actually, this whole structure is a big mistake.  It mixes I/O
1589  *      data with strictly "high-level" data, and it has to know about
1590  *      almost every data structure used in the INET module.
1591  *
1592  *      @name:  This is the first field of the "visible" part of this structure
1593  *              (i.e. as seen by users in the "Space.c" file).  It is the name
1594  *              of the interface.
1595  *
1596  *      @name_node:     Name hashlist node
1597  *      @ifalias:       SNMP alias
1598  *      @mem_end:       Shared memory end
1599  *      @mem_start:     Shared memory start
1600  *      @base_addr:     Device I/O address
1601  *      @irq:           Device IRQ number
1602  *
1603  *      @state:         Generic network queuing layer state, see netdev_state_t
1604  *      @dev_list:      The global list of network devices
1605  *      @napi_list:     List entry used for polling NAPI devices
1606  *      @unreg_list:    List entry  when we are unregistering the
1607  *                      device; see the function unregister_netdev
1608  *      @close_list:    List entry used when we are closing the device
1609  *      @ptype_all:     Device-specific packet handlers for all protocols
1610  *      @ptype_specific: Device-specific, protocol-specific packet handlers
1611  *
1612  *      @adj_list:      Directly linked devices, like slaves for bonding
1613  *      @features:      Currently active device features
1614  *      @hw_features:   User-changeable features
1615  *
1616  *      @wanted_features:       User-requested features
1617  *      @vlan_features:         Mask of features inheritable by VLAN devices
1618  *
1619  *      @hw_enc_features:       Mask of features inherited by encapsulating devices
1620  *                              This field indicates what encapsulation
1621  *                              offloads the hardware is capable of doing,
1622  *                              and drivers will need to set them appropriately.
1623  *
1624  *      @mpls_features: Mask of features inheritable by MPLS
1625  *      @gso_partial_features: value(s) from NETIF_F_GSO\*
1626  *
1627  *      @ifindex:       interface index
1628  *      @group:         The group the device belongs to
1629  *
1630  *      @stats:         Statistics struct, which was left as a legacy, use
1631  *                      rtnl_link_stats64 instead
1632  *
1633  *      @rx_dropped:    Dropped packets by core network,
1634  *                      do not use this in drivers
1635  *      @tx_dropped:    Dropped packets by core network,
1636  *                      do not use this in drivers
1637  *      @rx_nohandler:  nohandler dropped packets by core network on
1638  *                      inactive devices, do not use this in drivers
1639  *      @carrier_up_count:      Number of times the carrier has been up
1640  *      @carrier_down_count:    Number of times the carrier has been down
1641  *
1642  *      @wireless_handlers:     List of functions to handle Wireless Extensions,
1643  *                              instead of ioctl,
1644  *                              see <net/iw_handler.h> for details.
1645  *      @wireless_data: Instance data managed by the core of wireless extensions
1646  *
1647  *      @netdev_ops:    Includes several pointers to callbacks,
1648  *                      if one wants to override the ndo_*() functions
1649  *      @ethtool_ops:   Management operations
1650  *      @l3mdev_ops:    Layer 3 master device operations
1651  *      @ndisc_ops:     Includes callbacks for different IPv6 neighbour
1652  *                      discovery handling. Necessary for e.g. 6LoWPAN.
1653  *      @xfrmdev_ops:   Transformation offload operations
1654  *      @tlsdev_ops:    Transport Layer Security offload operations
1655  *      @header_ops:    Includes callbacks for creating,parsing,caching,etc
1656  *                      of Layer 2 headers.
1657  *
1658  *      @flags:         Interface flags (a la BSD)
1659  *      @priv_flags:    Like 'flags' but invisible to userspace,
1660  *                      see if.h for the definitions
1661  *      @gflags:        Global flags ( kept as legacy )
1662  *      @padded:        How much padding added by alloc_netdev()
1663  *      @operstate:     RFC2863 operstate
1664  *      @link_mode:     Mapping policy to operstate
1665  *      @if_port:       Selectable AUI, TP, ...
1666  *      @dma:           DMA channel
1667  *      @mtu:           Interface MTU value
1668  *      @min_mtu:       Interface Minimum MTU value
1669  *      @max_mtu:       Interface Maximum MTU value
1670  *      @type:          Interface hardware type
1671  *      @hard_header_len: Maximum hardware header length.
1672  *      @min_header_len:  Minimum hardware header length
1673  *
1674  *      @needed_headroom: Extra headroom the hardware may need, but not in all
1675  *                        cases can this be guaranteed
1676  *      @needed_tailroom: Extra tailroom the hardware may need, but not in all
1677  *                        cases can this be guaranteed. Some cases also use
1678  *                        LL_MAX_HEADER instead to allocate the skb
1679  *
1680  *      interface address info:
1681  *
1682  *      @perm_addr:             Permanent hw address
1683  *      @addr_assign_type:      Hw address assignment type
1684  *      @addr_len:              Hardware address length
1685  *      @upper_level:           Maximum depth level of upper devices.
1686  *      @lower_level:           Maximum depth level of lower devices.
1687  *      @neigh_priv_len:        Used in neigh_alloc()
1688  *      @dev_id:                Used to differentiate devices that share
1689  *                              the same link layer address
1690  *      @dev_port:              Used to differentiate devices that share
1691  *                              the same function
1692  *      @addr_list_lock:        XXX: need comments on this one
1693  *      @name_assign_type:      network interface name assignment type
1694  *      @uc_promisc:            Counter that indicates promiscuous mode
1695  *                              has been enabled due to the need to listen to
1696  *                              additional unicast addresses in a device that
1697  *                              does not implement ndo_set_rx_mode()
1698  *      @uc:                    unicast mac addresses
1699  *      @mc:                    multicast mac addresses
1700  *      @dev_addrs:             list of device hw addresses
1701  *      @queues_kset:           Group of all Kobjects in the Tx and RX queues
1702  *      @promiscuity:           Number of times the NIC is told to work in
1703  *                              promiscuous mode; if it becomes 0 the NIC will
1704  *                              exit promiscuous mode
1705  *      @allmulti:              Counter, enables or disables allmulticast mode
1706  *
1707  *      @vlan_info:     VLAN info
1708  *      @dsa_ptr:       dsa specific data
1709  *      @tipc_ptr:      TIPC specific data
1710  *      @atalk_ptr:     AppleTalk link
1711  *      @ip_ptr:        IPv4 specific data
1712  *      @dn_ptr:        DECnet specific data
1713  *      @ip6_ptr:       IPv6 specific data
1714  *      @ax25_ptr:      AX.25 specific data
1715  *      @ieee80211_ptr: IEEE 802.11 specific data, assign before registering
1716  *      @ieee802154_ptr: IEEE 802.15.4 low-rate Wireless Personal Area Network
1717  *                       device struct
1718  *      @mpls_ptr:      mpls_dev struct pointer
1719  *
1720  *      @dev_addr:      Hw address (before bcast,
1721  *                      because most packets are unicast)
1722  *
1723  *      @_rx:                   Array of RX queues
1724  *      @num_rx_queues:         Number of RX queues
1725  *                              allocated at register_netdev() time
1726  *      @real_num_rx_queues:    Number of RX queues currently active in device
1727  *      @xdp_prog:              XDP sockets filter program pointer
1728  *      @gro_flush_timeout:     timeout for GRO layer in NAPI
1729  *
1730  *      @rx_handler:            handler for received packets
1731  *      @rx_handler_data:       XXX: need comments on this one
1732  *      @miniq_ingress:         ingress/clsact qdisc specific data for
1733  *                              ingress processing
1734  *      @ingress_queue:         XXX: need comments on this one
1735  *      @nf_hooks_ingress:      netfilter hooks executed for ingress packets
1736  *      @broadcast:             hw bcast address
1737  *
1738  *      @rx_cpu_rmap:   CPU reverse-mapping for RX completion interrupts,
1739  *                      indexed by RX queue number. Assigned by driver.
1740  *                      This must only be set if the ndo_rx_flow_steer
1741  *                      operation is defined
1742  *      @index_hlist:           Device index hash chain
1743  *
1744  *      @_tx:                   Array of TX queues
1745  *      @num_tx_queues:         Number of TX queues allocated at alloc_netdev_mq() time
1746  *      @real_num_tx_queues:    Number of TX queues currently active in device
1747  *      @qdisc:                 Root qdisc from userspace point of view
1748  *      @tx_queue_len:          Max frames per queue allowed
1749  *      @tx_global_lock:        XXX: need comments on this one
1750  *      @xdp_bulkq:             XDP device bulk queue
1751  *      @xps_cpus_map:          all CPUs map for XPS device
1752  *      @xps_rxqs_map:          all RXQs map for XPS device
1753  *
1754  *      @xps_maps:      XXX: need comments on this one
1755  *      @miniq_egress:          clsact qdisc specific data for
1756  *                              egress processing
1757  *      @qdisc_hash:            qdisc hash table
1758  *      @watchdog_timeo:        Represents the timeout that is used by
1759  *                              the watchdog (see dev_watchdog())
1760  *      @watchdog_timer:        List of timers
1761  *
1762  *      @pcpu_refcnt:           Number of references to this device
1763  *      @todo_list:             Delayed register/unregister
1764  *      @link_watch_list:       XXX: need comments on this one
1765  *
1766  *      @reg_state:             Register/unregister state machine
1767  *      @dismantle:             Device is going to be freed
1768  *      @rtnl_link_state:       This enum represents the phases of creating
1769  *                              a new link
1770  *
1771  *      @needs_free_netdev:     Should unregister perform free_netdev?
1772  *      @priv_destructor:       Called from unregister
1773  *      @npinfo:                XXX: need comments on this one
1774  *      @nd_net:                Network namespace this network device is inside
1775  *
1776  *      @ml_priv:       Mid-layer private
1777  *      @lstats:        Loopback statistics
1778  *      @tstats:        Tunnel statistics
1779  *      @dstats:        Dummy statistics
1780  *      @vstats:        Virtual ethernet statistics
1781  *
1782  *      @garp_port:     GARP
1783  *      @mrp_port:      MRP
1784  *
1785  *      @dev:           Class/net/name entry
1786  *      @sysfs_groups:  Space for optional device, statistics and wireless
1787  *                      sysfs groups
1788  *
1789  *      @sysfs_rx_queue_group:  Space for optional per-rx queue attributes
1790  *      @rtnl_link_ops: Rtnl_link_ops
1791  *
1792  *      @gso_max_size:  Maximum size of generic segmentation offload
1793  *      @gso_max_segs:  Maximum number of segments that can be passed to the
1794  *                      NIC for GSO
1795  *
1796  *      @dcbnl_ops:     Data Center Bridging netlink ops
1797  *      @num_tc:        Number of traffic classes in the net device
1798  *      @tc_to_txq:     XXX: need comments on this one
1799  *      @prio_tc_map:   XXX: need comments on this one
1800  *
1801  *      @fcoe_ddp_xid:  Max exchange id for FCoE LRO by ddp
1802  *
1803  *      @priomap:       XXX: need comments on this one
1804  *      @phydev:        Physical device may attach itself
1805  *                      for hardware timestamping
1806  *      @sfp_bus:       attached &struct sfp_bus structure.
1807  *      @qdisc_tx_busylock_key: lockdep class annotating Qdisc->busylock
1808  *                              spinlock
1809  *      @qdisc_running_key:     lockdep class annotating Qdisc->running seqcount
1810  *      @qdisc_xmit_lock_key:   lockdep class annotating
1811  *                              netdev_queue->_xmit_lock spinlock
1812  *      @addr_list_lock_key:    lockdep class annotating
1813  *                              net_device->addr_list_lock spinlock
1814  *
1815  *      @proto_down:    protocol port state information can be sent to the
1816  *                      switch driver and used to set the phys state of the
1817  *                      switch port.
1818  *
1819  *      @wol_enabled:   Wake-on-LAN is enabled
1820  *
1821  *      @net_notifier_list:     List of per-net netdev notifier block
1822  *                              that follow this device when it is moved
1823  *                              to another network namespace.
1824  *
1825  *      @macsec_ops:    MACsec offloading ops
1826  *
1827  *      FIXME: cleanup struct net_device such that network protocol info
1828  *      moves out.
1829  */
1830
1831 struct net_device {
1832         char                    name[IFNAMSIZ];
1833         struct netdev_name_node *name_node;
1834         struct dev_ifalias      __rcu *ifalias;
1835         /*
1836          *      I/O specific fields
1837          *      FIXME: Merge these and struct ifmap into one
1838          */
1839         unsigned long           mem_end;
1840         unsigned long           mem_start;
1841         unsigned long           base_addr;
1842         int                     irq;
1843
1844         /*
1845          *      Some hardware also needs these fields (state,dev_list,
1846          *      napi_list,unreg_list,close_list) but they are not
1847          *      part of the usual set specified in Space.c.
1848          */
1849
1850         unsigned long           state;
1851
1852         struct list_head        dev_list;
1853         struct list_head        napi_list;
1854         struct list_head        unreg_list;
1855         struct list_head        close_list;
1856         struct list_head        ptype_all;
1857         struct list_head        ptype_specific;
1858
1859         struct {
1860                 struct list_head upper;
1861                 struct list_head lower;
1862         } adj_list;
1863
1864         netdev_features_t       features;
1865         netdev_features_t       hw_features;
1866         netdev_features_t       wanted_features;
1867         netdev_features_t       vlan_features;
1868         netdev_features_t       hw_enc_features;
1869         netdev_features_t       mpls_features;
1870         netdev_features_t       gso_partial_features;
1871
1872         int                     ifindex;
1873         int                     group;
1874
1875         struct net_device_stats stats;
1876
1877         atomic_long_t           rx_dropped;
1878         atomic_long_t           tx_dropped;
1879         atomic_long_t           rx_nohandler;
1880
1881         /* Stats to monitor link on/off, flapping */
1882         atomic_t                carrier_up_count;
1883         atomic_t                carrier_down_count;
1884
1885 #ifdef CONFIG_WIRELESS_EXT
1886         const struct iw_handler_def *wireless_handlers;
1887         struct iw_public_data   *wireless_data;
1888 #endif
1889         const struct net_device_ops *netdev_ops;
1890         const struct ethtool_ops *ethtool_ops;
1891 #ifdef CONFIG_NET_L3_MASTER_DEV
1892         const struct l3mdev_ops *l3mdev_ops;
1893 #endif
1894 #if IS_ENABLED(CONFIG_IPV6)
1895         const struct ndisc_ops *ndisc_ops;
1896 #endif
1897
1898 #ifdef CONFIG_XFRM_OFFLOAD
1899         const struct xfrmdev_ops *xfrmdev_ops;
1900 #endif
1901
1902 #if IS_ENABLED(CONFIG_TLS_DEVICE)
1903         const struct tlsdev_ops *tlsdev_ops;
1904 #endif
1905
1906         const struct header_ops *header_ops;
1907
1908         unsigned int            flags;
1909         unsigned int            priv_flags;
1910
1911         unsigned short          gflags;
1912         unsigned short          padded;
1913
1914         unsigned char           operstate;
1915         unsigned char           link_mode;
1916
1917         unsigned char           if_port;
1918         unsigned char           dma;
1919
1920         /* Note : dev->mtu is often read without holding a lock.
1921          * Writers usually hold RTNL.
1922          * It is recommended to use READ_ONCE() to annotate the reads,
1923          * and to use WRITE_ONCE() to annotate the writes.
1924          */
1925         unsigned int            mtu;
1926         unsigned int            min_mtu;
1927         unsigned int            max_mtu;
1928         unsigned short          type;
1929         unsigned short          hard_header_len;
1930         unsigned char           min_header_len;
1931
1932         unsigned short          needed_headroom;
1933         unsigned short          needed_tailroom;
1934
1935         /* Interface address info. */
1936         unsigned char           perm_addr[MAX_ADDR_LEN];
1937         unsigned char           addr_assign_type;
1938         unsigned char           addr_len;
1939         unsigned char           upper_level;
1940         unsigned char           lower_level;
1941         unsigned short          neigh_priv_len;
1942         unsigned short          dev_id;
1943         unsigned short          dev_port;
1944         spinlock_t              addr_list_lock;
1945         unsigned char           name_assign_type;
1946         bool                    uc_promisc;
1947         struct netdev_hw_addr_list      uc;
1948         struct netdev_hw_addr_list      mc;
1949         struct netdev_hw_addr_list      dev_addrs;
1950
1951 #ifdef CONFIG_SYSFS
1952         struct kset             *queues_kset;
1953 #endif
1954         unsigned int            promiscuity;
1955         unsigned int            allmulti;
1956
1957
1958         /* Protocol-specific pointers */
1959
1960 #if IS_ENABLED(CONFIG_VLAN_8021Q)
1961         struct vlan_info __rcu  *vlan_info;
1962 #endif
1963 #if IS_ENABLED(CONFIG_NET_DSA)
1964         struct dsa_port         *dsa_ptr;
1965 #endif
1966 #if IS_ENABLED(CONFIG_TIPC)
1967         struct tipc_bearer __rcu *tipc_ptr;
1968 #endif
1969 #if IS_ENABLED(CONFIG_IRDA) || IS_ENABLED(CONFIG_ATALK)
1970         void                    *atalk_ptr;
1971 #endif
1972         struct in_device __rcu  *ip_ptr;
1973 #if IS_ENABLED(CONFIG_DECNET)
1974         struct dn_dev __rcu     *dn_ptr;
1975 #endif
1976         struct inet6_dev __rcu  *ip6_ptr;
1977 #if IS_ENABLED(CONFIG_AX25)
1978         void                    *ax25_ptr;
1979 #endif
1980         struct wireless_dev     *ieee80211_ptr;
1981         struct wpan_dev         *ieee802154_ptr;
1982 #if IS_ENABLED(CONFIG_MPLS_ROUTING)
1983         struct mpls_dev __rcu   *mpls_ptr;
1984 #endif
1985
1986 /*
1987  * Cache lines mostly used on receive path (including eth_type_trans())
1988  */
1989         /* Interface address info used in eth_type_trans() */
1990         unsigned char           *dev_addr;
1991
1992         struct netdev_rx_queue  *_rx;
1993         unsigned int            num_rx_queues;
1994         unsigned int            real_num_rx_queues;
1995
1996         struct bpf_prog __rcu   *xdp_prog;
1997         unsigned long           gro_flush_timeout;
1998         rx_handler_func_t __rcu *rx_handler;
1999         void __rcu              *rx_handler_data;
2000
2001 #ifdef CONFIG_NET_CLS_ACT
2002         struct mini_Qdisc __rcu *miniq_ingress;
2003 #endif
2004         struct netdev_queue __rcu *ingress_queue;
2005 #ifdef CONFIG_NETFILTER_INGRESS
2006         struct nf_hook_entries __rcu *nf_hooks_ingress;
2007 #endif
2008
2009         unsigned char           broadcast[MAX_ADDR_LEN];
2010 #ifdef CONFIG_RFS_ACCEL
2011         struct cpu_rmap         *rx_cpu_rmap;
2012 #endif
2013         struct hlist_node       index_hlist;
2014
2015 /*
2016  * Cache lines mostly used on transmit path
2017  */
2018         struct netdev_queue     *_tx ____cacheline_aligned_in_smp;
2019         unsigned int            num_tx_queues;
2020         unsigned int            real_num_tx_queues;
2021         struct Qdisc            *qdisc;
2022         unsigned int            tx_queue_len;
2023         spinlock_t              tx_global_lock;
2024
2025         struct xdp_dev_bulk_queue __percpu *xdp_bulkq;
2026
2027 #ifdef CONFIG_XPS
2028         struct xps_dev_maps __rcu *xps_cpus_map;
2029         struct xps_dev_maps __rcu *xps_rxqs_map;
2030 #endif
2031 #ifdef CONFIG_NET_CLS_ACT
2032         struct mini_Qdisc __rcu *miniq_egress;
2033 #endif
2034
2035 #ifdef CONFIG_NET_SCHED
2036         DECLARE_HASHTABLE       (qdisc_hash, 4);
2037 #endif
2038         /* These may be needed for future network-power-down code. */
2039         struct timer_list       watchdog_timer;
2040         int                     watchdog_timeo;
2041
2042         struct list_head        todo_list;
2043         int __percpu            *pcpu_refcnt;
2044
2045         struct list_head        link_watch_list;
2046
2047         enum { NETREG_UNINITIALIZED=0,
2048                NETREG_REGISTERED,       /* completed register_netdevice */
2049                NETREG_UNREGISTERING,    /* called unregister_netdevice */
2050                NETREG_UNREGISTERED,     /* completed unregister todo */
2051                NETREG_RELEASED,         /* called free_netdev */
2052                NETREG_DUMMY,            /* dummy device for NAPI poll */
2053         } reg_state:8;
2054
2055         bool dismantle;
2056
2057         enum {
2058                 RTNL_LINK_INITIALIZED,
2059                 RTNL_LINK_INITIALIZING,
2060         } rtnl_link_state:16;
2061
2062         bool needs_free_netdev;
2063         void (*priv_destructor)(struct net_device *dev);
2064
2065 #ifdef CONFIG_NETPOLL
2066         struct netpoll_info __rcu       *npinfo;
2067 #endif
2068
2069         possible_net_t                  nd_net;
2070
2071         /* mid-layer private */
2072         union {
2073                 void                                    *ml_priv;
2074                 struct pcpu_lstats __percpu             *lstats;
2075                 struct pcpu_sw_netstats __percpu        *tstats;
2076                 struct pcpu_dstats __percpu             *dstats;
2077         };
2078
2079 #if IS_ENABLED(CONFIG_GARP)
2080         struct garp_port __rcu  *garp_port;
2081 #endif
2082 #if IS_ENABLED(CONFIG_MRP)
2083         struct mrp_port __rcu   *mrp_port;
2084 #endif
2085
2086         struct device           dev;
2087         const struct attribute_group *sysfs_groups[4];
2088         const struct attribute_group *sysfs_rx_queue_group;
2089
2090         const struct rtnl_link_ops *rtnl_link_ops;
2091
2092         /* for setting kernel sock attribute on TCP connection setup */
2093 #define GSO_MAX_SIZE            65536
2094         unsigned int            gso_max_size;
2095 #define GSO_MAX_SEGS            65535
2096         u16                     gso_max_segs;
2097
2098 #ifdef CONFIG_DCB
2099         const struct dcbnl_rtnl_ops *dcbnl_ops;
2100 #endif
2101         s16                     num_tc;
2102         struct netdev_tc_txq    tc_to_txq[TC_MAX_QUEUE];
2103         u8                      prio_tc_map[TC_BITMASK + 1];
2104
2105 #if IS_ENABLED(CONFIG_FCOE)
2106         unsigned int            fcoe_ddp_xid;
2107 #endif
2108 #if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
2109         struct netprio_map __rcu *priomap;
2110 #endif
2111         struct phy_device       *phydev;
2112         struct sfp_bus          *sfp_bus;
2113         struct lock_class_key   qdisc_tx_busylock_key;
2114         struct lock_class_key   qdisc_running_key;
2115         struct lock_class_key   qdisc_xmit_lock_key;
2116         struct lock_class_key   addr_list_lock_key;
2117         bool                    proto_down;
2118         unsigned                wol_enabled:1;
2119
2120         struct list_head        net_notifier_list;
2121
2122 #if IS_ENABLED(CONFIG_MACSEC)
2123         /* MACsec management functions */
2124         const struct macsec_ops *macsec_ops;
2125 #endif
2126 };
2127 #define to_net_dev(d) container_of(d, struct net_device, dev)
2128
2129 static inline bool netif_elide_gro(const struct net_device *dev)
2130 {
2131         if (!(dev->features & NETIF_F_GRO) || dev->xdp_prog)
2132                 return true;
2133         return false;
2134 }
2135
2136 #define NETDEV_ALIGN            32
2137
2138 static inline
2139 int netdev_get_prio_tc_map(const struct net_device *dev, u32 prio)
2140 {
2141         return dev->prio_tc_map[prio & TC_BITMASK];
2142 }
2143
2144 static inline
2145 int netdev_set_prio_tc_map(struct net_device *dev, u8 prio, u8 tc)
2146 {
2147         if (tc >= dev->num_tc)
2148                 return -EINVAL;
2149
2150         dev->prio_tc_map[prio & TC_BITMASK] = tc & TC_BITMASK;
2151         return 0;
2152 }
2153
2154 int netdev_txq_to_tc(struct net_device *dev, unsigned int txq);
2155 void netdev_reset_tc(struct net_device *dev);
2156 int netdev_set_tc_queue(struct net_device *dev, u8 tc, u16 count, u16 offset);
2157 int netdev_set_num_tc(struct net_device *dev, u8 num_tc);
2158
2159 static inline
2160 int netdev_get_num_tc(struct net_device *dev)
2161 {
2162         return dev->num_tc;
2163 }
2164
2165 void netdev_unbind_sb_channel(struct net_device *dev,
2166                               struct net_device *sb_dev);
2167 int netdev_bind_sb_channel_queue(struct net_device *dev,
2168                                  struct net_device *sb_dev,
2169                                  u8 tc, u16 count, u16 offset);
2170 int netdev_set_sb_channel(struct net_device *dev, u16 channel);
2171 static inline int netdev_get_sb_channel(struct net_device *dev)
2172 {
2173         return max_t(int, -dev->num_tc, 0);
2174 }
2175
2176 static inline
2177 struct netdev_queue *netdev_get_tx_queue(const struct net_device *dev,
2178                                          unsigned int index)
2179 {
2180         return &dev->_tx[index];
2181 }
2182
2183 static inline struct netdev_queue *skb_get_tx_queue(const struct net_device *dev,
2184                                                     const struct sk_buff *skb)
2185 {
2186         return netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
2187 }
2188
2189 static inline void netdev_for_each_tx_queue(struct net_device *dev,
2190                                             void (*f)(struct net_device *,
2191                                                       struct netdev_queue *,
2192                                                       void *),
2193                                             void *arg)
2194 {
2195         unsigned int i;
2196
2197         for (i = 0; i < dev->num_tx_queues; i++)
2198                 f(dev, &dev->_tx[i], arg);
2199 }
2200
2201 u16 netdev_pick_tx(struct net_device *dev, struct sk_buff *skb,
2202                      struct net_device *sb_dev);
2203 struct netdev_queue *netdev_core_pick_tx(struct net_device *dev,
2204                                          struct sk_buff *skb,
2205                                          struct net_device *sb_dev);
2206
2207 /* returns the headroom that the master device needs to take in account
2208  * when forwarding to this dev
2209  */
2210 static inline unsigned netdev_get_fwd_headroom(struct net_device *dev)
2211 {
2212         return dev->priv_flags & IFF_PHONY_HEADROOM ? 0 : dev->needed_headroom;
2213 }
2214
2215 static inline void netdev_set_rx_headroom(struct net_device *dev, int new_hr)
2216 {
2217         if (dev->netdev_ops->ndo_set_rx_headroom)
2218                 dev->netdev_ops->ndo_set_rx_headroom(dev, new_hr);
2219 }
2220
2221 /* set the device rx headroom to the dev's default */
2222 static inline void netdev_reset_rx_headroom(struct net_device *dev)
2223 {
2224         netdev_set_rx_headroom(dev, -1);
2225 }
2226
2227 /*
2228  * Net namespace inlines
2229  */
2230 static inline
2231 struct net *dev_net(const struct net_device *dev)
2232 {
2233         return read_pnet(&dev->nd_net);
2234 }
2235
2236 static inline
2237 void dev_net_set(struct net_device *dev, struct net *net)
2238 {
2239         write_pnet(&dev->nd_net, net);
2240 }
2241
2242 /**
2243  *      netdev_priv - access network device private data
2244  *      @dev: network device
2245  *
2246  * Get network device private data
2247  */
2248 static inline void *netdev_priv(const struct net_device *dev)
2249 {
2250         return (char *)dev + ALIGN(sizeof(struct net_device), NETDEV_ALIGN);
2251 }
2252
2253 /* Set the sysfs physical device reference for the network logical device
2254  * if set prior to registration will cause a symlink during initialization.
2255  */
2256 #define SET_NETDEV_DEV(net, pdev)       ((net)->dev.parent = (pdev))
2257
2258 /* Set the sysfs device type for the network logical device to allow
2259  * fine-grained identification of different network device types. For
2260  * example Ethernet, Wireless LAN, Bluetooth, WiMAX etc.
2261  */
2262 #define SET_NETDEV_DEVTYPE(net, devtype)        ((net)->dev.type = (devtype))
2263
2264 /* Default NAPI poll() weight
2265  * Device drivers are strongly advised to not use bigger value
2266  */
2267 #define NAPI_POLL_WEIGHT 64
2268
2269 /**
2270  *      netif_napi_add - initialize a NAPI context
2271  *      @dev:  network device
2272  *      @napi: NAPI context
2273  *      @poll: polling function
2274  *      @weight: default weight
2275  *
2276  * netif_napi_add() must be used to initialize a NAPI context prior to calling
2277  * *any* of the other NAPI-related functions.
2278  */
2279 void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
2280                     int (*poll)(struct napi_struct *, int), int weight);
2281
2282 /**
2283  *      netif_tx_napi_add - initialize a NAPI context
2284  *      @dev:  network device
2285  *      @napi: NAPI context
2286  *      @poll: polling function
2287  *      @weight: default weight
2288  *
2289  * This variant of netif_napi_add() should be used from drivers using NAPI
2290  * to exclusively poll a TX queue.
2291  * This will avoid we add it into napi_hash[], thus polluting this hash table.
2292  */
2293 static inline void netif_tx_napi_add(struct net_device *dev,
2294                                      struct napi_struct *napi,
2295                                      int (*poll)(struct napi_struct *, int),
2296                                      int weight)
2297 {
2298         set_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state);
2299         netif_napi_add(dev, napi, poll, weight);
2300 }
2301
2302 /**
2303  *  netif_napi_del - remove a NAPI context
2304  *  @napi: NAPI context
2305  *
2306  *  netif_napi_del() removes a NAPI context from the network device NAPI list
2307  */
2308 void netif_napi_del(struct napi_struct *napi);
2309
2310 struct napi_gro_cb {
2311         /* Virtual address of skb_shinfo(skb)->frags[0].page + offset. */
2312         void    *frag0;
2313
2314         /* Length of frag0. */
2315         unsigned int frag0_len;
2316
2317         /* This indicates where we are processing relative to skb->data. */
2318         int     data_offset;
2319
2320         /* This is non-zero if the packet cannot be merged with the new skb. */
2321         u16     flush;
2322
2323         /* Save the IP ID here and check when we get to the transport layer */
2324         u16     flush_id;
2325
2326         /* Number of segments aggregated. */
2327         u16     count;
2328
2329         /* Start offset for remote checksum offload */
2330         u16     gro_remcsum_start;
2331
2332         /* jiffies when first packet was created/queued */
2333         unsigned long age;
2334
2335         /* Used in ipv6_gro_receive() and foo-over-udp */
2336         u16     proto;
2337
2338         /* This is non-zero if the packet may be of the same flow. */
2339         u8      same_flow:1;
2340
2341         /* Used in tunnel GRO receive */
2342         u8      encap_mark:1;
2343
2344         /* GRO checksum is valid */
2345         u8      csum_valid:1;
2346
2347         /* Number of checksums via CHECKSUM_UNNECESSARY */
2348         u8      csum_cnt:3;
2349
2350         /* Free the skb? */
2351         u8      free:2;
2352 #define NAPI_GRO_FREE             1
2353 #define NAPI_GRO_FREE_STOLEN_HEAD 2
2354
2355         /* Used in foo-over-udp, set in udp[46]_gro_receive */
2356         u8      is_ipv6:1;
2357
2358         /* Used in GRE, set in fou/gue_gro_receive */
2359         u8      is_fou:1;
2360
2361         /* Used to determine if flush_id can be ignored */
2362         u8      is_atomic:1;
2363
2364         /* Number of gro_receive callbacks this packet already went through */
2365         u8 recursion_counter:4;
2366
2367         /* GRO is done by frag_list pointer chaining. */
2368         u8      is_flist:1;
2369
2370         /* used to support CHECKSUM_COMPLETE for tunneling protocols */
2371         __wsum  csum;
2372
2373         /* used in skb_gro_receive() slow path */
2374         struct sk_buff *last;
2375 };
2376
2377 #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb)
2378
2379 #define GRO_RECURSION_LIMIT 15
2380 static inline int gro_recursion_inc_test(struct sk_buff *skb)
2381 {
2382         return ++NAPI_GRO_CB(skb)->recursion_counter == GRO_RECURSION_LIMIT;
2383 }
2384
2385 typedef struct sk_buff *(*gro_receive_t)(struct list_head *, struct sk_buff *);
2386 static inline struct sk_buff *call_gro_receive(gro_receive_t cb,
2387                                                struct list_head *head,
2388                                                struct sk_buff *skb)
2389 {
2390         if (unlikely(gro_recursion_inc_test(skb))) {
2391                 NAPI_GRO_CB(skb)->flush |= 1;
2392                 return NULL;
2393         }
2394
2395         return cb(head, skb);
2396 }
2397
2398 typedef struct sk_buff *(*gro_receive_sk_t)(struct sock *, struct list_head *,
2399                                             struct sk_buff *);
2400 static inline struct sk_buff *call_gro_receive_sk(gro_receive_sk_t cb,
2401                                                   struct sock *sk,
2402                                                   struct list_head *head,
2403                                                   struct sk_buff *skb)
2404 {
2405         if (unlikely(gro_recursion_inc_test(skb))) {
2406                 NAPI_GRO_CB(skb)->flush |= 1;
2407                 return NULL;
2408         }
2409
2410         return cb(sk, head, skb);
2411 }
2412
2413 struct packet_type {
2414         __be16                  type;   /* This is really htons(ether_type). */
2415         bool                    ignore_outgoing;
2416         struct net_device       *dev;   /* NULL is wildcarded here           */
2417         int                     (*func) (struct sk_buff *,
2418                                          struct net_device *,
2419                                          struct packet_type *,
2420                                          struct net_device *);
2421         void                    (*list_func) (struct list_head *,
2422                                               struct packet_type *,
2423                                               struct net_device *);
2424         bool                    (*id_match)(struct packet_type *ptype,
2425                                             struct sock *sk);
2426         void                    *af_packet_priv;
2427         struct list_head        list;
2428 };
2429
2430 struct offload_callbacks {
2431         struct sk_buff          *(*gso_segment)(struct sk_buff *skb,
2432                                                 netdev_features_t features);
2433         struct sk_buff          *(*gro_receive)(struct list_head *head,
2434                                                 struct sk_buff *skb);
2435         int                     (*gro_complete)(struct sk_buff *skb, int nhoff);
2436 };
2437
2438 struct packet_offload {
2439         __be16                   type;  /* This is really htons(ether_type). */
2440         u16                      priority;
2441         struct offload_callbacks callbacks;
2442         struct list_head         list;
2443 };
2444
2445 /* often modified stats are per-CPU, other are shared (netdev->stats) */
2446 struct pcpu_sw_netstats {
2447         u64     rx_packets;
2448         u64     rx_bytes;
2449         u64     tx_packets;
2450         u64     tx_bytes;
2451         struct u64_stats_sync   syncp;
2452 } __aligned(4 * sizeof(u64));
2453
2454 struct pcpu_lstats {
2455         u64_stats_t packets;
2456         u64_stats_t bytes;
2457         struct u64_stats_sync syncp;
2458 } __aligned(2 * sizeof(u64));
2459
2460 void dev_lstats_read(struct net_device *dev, u64 *packets, u64 *bytes);
2461
2462 static inline void dev_lstats_add(struct net_device *dev, unsigned int len)
2463 {
2464         struct pcpu_lstats *lstats = this_cpu_ptr(dev->lstats);
2465
2466         u64_stats_update_begin(&lstats->syncp);
2467         u64_stats_add(&lstats->bytes, len);
2468         u64_stats_inc(&lstats->packets);
2469         u64_stats_update_end(&lstats->syncp);
2470 }
2471
2472 #define __netdev_alloc_pcpu_stats(type, gfp)                            \
2473 ({                                                                      \
2474         typeof(type) __percpu *pcpu_stats = alloc_percpu_gfp(type, gfp);\
2475         if (pcpu_stats) {                                               \
2476                 int __cpu;                                              \
2477                 for_each_possible_cpu(__cpu) {                          \
2478                         typeof(type) *stat;                             \
2479                         stat = per_cpu_ptr(pcpu_stats, __cpu);          \
2480                         u64_stats_init(&stat->syncp);                   \
2481                 }                                                       \
2482         }                                                               \
2483         pcpu_stats;                                                     \
2484 })
2485
2486 #define netdev_alloc_pcpu_stats(type)                                   \
2487         __netdev_alloc_pcpu_stats(type, GFP_KERNEL)
2488
2489 enum netdev_lag_tx_type {
2490         NETDEV_LAG_TX_TYPE_UNKNOWN,
2491         NETDEV_LAG_TX_TYPE_RANDOM,
2492         NETDEV_LAG_TX_TYPE_BROADCAST,
2493         NETDEV_LAG_TX_TYPE_ROUNDROBIN,
2494         NETDEV_LAG_TX_TYPE_ACTIVEBACKUP,
2495         NETDEV_LAG_TX_TYPE_HASH,
2496 };
2497
2498 enum netdev_lag_hash {
2499         NETDEV_LAG_HASH_NONE,
2500         NETDEV_LAG_HASH_L2,
2501         NETDEV_LAG_HASH_L34,
2502         NETDEV_LAG_HASH_L23,
2503         NETDEV_LAG_HASH_E23,
2504         NETDEV_LAG_HASH_E34,
2505         NETDEV_LAG_HASH_UNKNOWN,
2506 };
2507
2508 struct netdev_lag_upper_info {
2509         enum netdev_lag_tx_type tx_type;
2510         enum netdev_lag_hash hash_type;
2511 };
2512
2513 struct netdev_lag_lower_state_info {
2514         u8 link_up : 1,
2515            tx_enabled : 1;
2516 };
2517
2518 #include <linux/notifier.h>
2519
2520 /* netdevice notifier chain. Please remember to update netdev_cmd_to_name()
2521  * and the rtnetlink notification exclusion list in rtnetlink_event() when
2522  * adding new types.
2523  */
2524 enum netdev_cmd {
2525         NETDEV_UP       = 1,    /* For now you can't veto a device up/down */
2526         NETDEV_DOWN,
2527         NETDEV_REBOOT,          /* Tell a protocol stack a network interface
2528                                    detected a hardware crash and restarted
2529                                    - we can use this eg to kick tcp sessions
2530                                    once done */
2531         NETDEV_CHANGE,          /* Notify device state change */
2532         NETDEV_REGISTER,
2533         NETDEV_UNREGISTER,
2534         NETDEV_CHANGEMTU,       /* notify after mtu change happened */
2535         NETDEV_CHANGEADDR,      /* notify after the address change */
2536         NETDEV_PRE_CHANGEADDR,  /* notify before the address change */
2537         NETDEV_GOING_DOWN,
2538         NETDEV_CHANGENAME,
2539         NETDEV_FEAT_CHANGE,
2540         NETDEV_BONDING_FAILOVER,
2541         NETDEV_PRE_UP,
2542         NETDEV_PRE_TYPE_CHANGE,
2543         NETDEV_POST_TYPE_CHANGE,
2544         NETDEV_POST_INIT,
2545         NETDEV_RELEASE,
2546         NETDEV_NOTIFY_PEERS,
2547         NETDEV_JOIN,
2548         NETDEV_CHANGEUPPER,
2549         NETDEV_RESEND_IGMP,
2550         NETDEV_PRECHANGEMTU,    /* notify before mtu change happened */
2551         NETDEV_CHANGEINFODATA,
2552         NETDEV_BONDING_INFO,
2553         NETDEV_PRECHANGEUPPER,
2554         NETDEV_CHANGELOWERSTATE,
2555         NETDEV_UDP_TUNNEL_PUSH_INFO,
2556         NETDEV_UDP_TUNNEL_DROP_INFO,
2557         NETDEV_CHANGE_TX_QUEUE_LEN,
2558         NETDEV_CVLAN_FILTER_PUSH_INFO,
2559         NETDEV_CVLAN_FILTER_DROP_INFO,
2560         NETDEV_SVLAN_FILTER_PUSH_INFO,
2561         NETDEV_SVLAN_FILTER_DROP_INFO,
2562 };
2563 const char *netdev_cmd_to_name(enum netdev_cmd cmd);
2564
2565 int register_netdevice_notifier(struct notifier_block *nb);
2566 int unregister_netdevice_notifier(struct notifier_block *nb);
2567 int register_netdevice_notifier_net(struct net *net, struct notifier_block *nb);
2568 int unregister_netdevice_notifier_net(struct net *net,
2569                                       struct notifier_block *nb);
2570 int register_netdevice_notifier_dev_net(struct net_device *dev,
2571                                         struct notifier_block *nb,
2572                                         struct netdev_net_notifier *nn);
2573 int unregister_netdevice_notifier_dev_net(struct net_device *dev,
2574                                           struct notifier_block *nb,
2575                                           struct netdev_net_notifier *nn);
2576
2577 struct netdev_notifier_info {
2578         struct net_device       *dev;
2579         struct netlink_ext_ack  *extack;
2580 };
2581
2582 struct netdev_notifier_info_ext {
2583         struct netdev_notifier_info info; /* must be first */
2584         union {
2585                 u32 mtu;
2586         } ext;
2587 };
2588
2589 struct netdev_notifier_change_info {
2590         struct netdev_notifier_info info; /* must be first */
2591         unsigned int flags_changed;
2592 };
2593
2594 struct netdev_notifier_changeupper_info {
2595         struct netdev_notifier_info info; /* must be first */
2596         struct net_device *upper_dev; /* new upper dev */
2597         bool master; /* is upper dev master */
2598         bool linking; /* is the notification for link or unlink */
2599         void *upper_info; /* upper dev info */
2600 };
2601
2602 struct netdev_notifier_changelowerstate_info {
2603         struct netdev_notifier_info info; /* must be first */
2604         void *lower_state_info; /* is lower dev state */
2605 };
2606
2607 struct netdev_notifier_pre_changeaddr_info {
2608         struct netdev_notifier_info info; /* must be first */
2609         const unsigned char *dev_addr;
2610 };
2611
2612 static inline void netdev_notifier_info_init(struct netdev_notifier_info *info,
2613                                              struct net_device *dev)
2614 {
2615         info->dev = dev;
2616         info->extack = NULL;
2617 }
2618
2619 static inline struct net_device *
2620 netdev_notifier_info_to_dev(const struct netdev_notifier_info *info)
2621 {
2622         return info->dev;
2623 }
2624
2625 static inline struct netlink_ext_ack *
2626 netdev_notifier_info_to_extack(const struct netdev_notifier_info *info)
2627 {
2628         return info->extack;
2629 }
2630
2631 int call_netdevice_notifiers(unsigned long val, struct net_device *dev);
2632
2633
2634 extern rwlock_t                         dev_base_lock;          /* Device list lock */
2635
2636 #define for_each_netdev(net, d)         \
2637                 list_for_each_entry(d, &(net)->dev_base_head, dev_list)
2638 #define for_each_netdev_reverse(net, d) \
2639                 list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list)
2640 #define for_each_netdev_rcu(net, d)             \
2641                 list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list)
2642 #define for_each_netdev_safe(net, d, n) \
2643                 list_for_each_entry_safe(d, n, &(net)->dev_base_head, dev_list)
2644 #define for_each_netdev_continue(net, d)                \
2645                 list_for_each_entry_continue(d, &(net)->dev_base_head, dev_list)
2646 #define for_each_netdev_continue_reverse(net, d)                \
2647                 list_for_each_entry_continue_reverse(d, &(net)->dev_base_head, \
2648                                                      dev_list)
2649 #define for_each_netdev_continue_rcu(net, d)            \
2650         list_for_each_entry_continue_rcu(d, &(net)->dev_base_head, dev_list)
2651 #define for_each_netdev_in_bond_rcu(bond, slave)        \
2652                 for_each_netdev_rcu(&init_net, slave)   \
2653                         if (netdev_master_upper_dev_get_rcu(slave) == (bond))
2654 #define net_device_entry(lh)    list_entry(lh, struct net_device, dev_list)
2655
2656 static inline struct net_device *next_net_device(struct net_device *dev)
2657 {
2658         struct list_head *lh;
2659         struct net *net;
2660
2661         net = dev_net(dev);
2662         lh = dev->dev_list.next;
2663         return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
2664 }
2665
2666 static inline struct net_device *next_net_device_rcu(struct net_device *dev)
2667 {
2668         struct list_head *lh;
2669         struct net *net;
2670
2671         net = dev_net(dev);
2672         lh = rcu_dereference(list_next_rcu(&dev->dev_list));
2673         return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
2674 }
2675
2676 static inline struct net_device *first_net_device(struct net *net)
2677 {
2678         return list_empty(&net->dev_base_head) ? NULL :
2679                 net_device_entry(net->dev_base_head.next);
2680 }
2681
2682 static inline struct net_device *first_net_device_rcu(struct net *net)
2683 {
2684         struct list_head *lh = rcu_dereference(list_next_rcu(&net->dev_base_head));
2685
2686         return lh == &net->dev_base_head ? NULL : net_device_entry(lh);
2687 }
2688
2689 int netdev_boot_setup_check(struct net_device *dev);
2690 unsigned long netdev_boot_base(const char *prefix, int unit);
2691 struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
2692                                        const char *hwaddr);
2693 struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type);
2694 struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type);
2695 void dev_add_pack(struct packet_type *pt);
2696 void dev_remove_pack(struct packet_type *pt);
2697 void __dev_remove_pack(struct packet_type *pt);
2698 void dev_add_offload(struct packet_offload *po);
2699 void dev_remove_offload(struct packet_offload *po);
2700
2701 int dev_get_iflink(const struct net_device *dev);
2702 int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb);
2703 struct net_device *__dev_get_by_flags(struct net *net, unsigned short flags,
2704                                       unsigned short mask);
2705 struct net_device *dev_get_by_name(struct net *net, const char *name);
2706 struct net_device *dev_get_by_name_rcu(struct net *net, const char *name);
2707 struct net_device *__dev_get_by_name(struct net *net, const char *name);
2708 int dev_alloc_name(struct net_device *dev, const char *name);
2709 int dev_open(struct net_device *dev, struct netlink_ext_ack *extack);
2710 void dev_close(struct net_device *dev);
2711 void dev_close_many(struct list_head *head, bool unlink);
2712 void dev_disable_lro(struct net_device *dev);
2713 int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *newskb);
2714 u16 dev_pick_tx_zero(struct net_device *dev, struct sk_buff *skb,
2715                      struct net_device *sb_dev);
2716 u16 dev_pick_tx_cpu_id(struct net_device *dev, struct sk_buff *skb,
2717                        struct net_device *sb_dev);
2718 int dev_queue_xmit(struct sk_buff *skb);
2719 int dev_queue_xmit_accel(struct sk_buff *skb, struct net_device *sb_dev);
2720 int dev_direct_xmit(struct sk_buff *skb, u16 queue_id);
2721 int register_netdevice(struct net_device *dev);
2722 void unregister_netdevice_queue(struct net_device *dev, struct list_head *head);
2723 void unregister_netdevice_many(struct list_head *head);
2724 static inline void unregister_netdevice(struct net_device *dev)
2725 {
2726         unregister_netdevice_queue(dev, NULL);
2727 }
2728
2729 int netdev_refcnt_read(const struct net_device *dev);
2730 void free_netdev(struct net_device *dev);
2731 void netdev_freemem(struct net_device *dev);
2732 void synchronize_net(void);
2733 int init_dummy_netdev(struct net_device *dev);
2734
2735 struct net_device *dev_get_by_index(struct net *net, int ifindex);
2736 struct net_device *__dev_get_by_index(struct net *net, int ifindex);
2737 struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex);
2738 struct net_device *dev_get_by_napi_id(unsigned int napi_id);
2739 int netdev_get_name(struct net *net, char *name, int ifindex);
2740 int dev_restart(struct net_device *dev);
2741 int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb);
2742 int skb_gro_receive_list(struct sk_buff *p, struct sk_buff *skb);
2743
2744 static inline unsigned int skb_gro_offset(const struct sk_buff *skb)
2745 {
2746         return NAPI_GRO_CB(skb)->data_offset;
2747 }
2748
2749 static inline unsigned int skb_gro_len(const struct sk_buff *skb)
2750 {
2751         return skb->len - NAPI_GRO_CB(skb)->data_offset;
2752 }
2753
2754 static inline void skb_gro_pull(struct sk_buff *skb, unsigned int len)
2755 {
2756         NAPI_GRO_CB(skb)->data_offset += len;
2757 }
2758
2759 static inline void *skb_gro_header_fast(struct sk_buff *skb,
2760                                         unsigned int offset)
2761 {
2762         return NAPI_GRO_CB(skb)->frag0 + offset;
2763 }
2764
2765 static inline int skb_gro_header_hard(struct sk_buff *skb, unsigned int hlen)
2766 {
2767         return NAPI_GRO_CB(skb)->frag0_len < hlen;
2768 }
2769
2770 static inline void skb_gro_frag0_invalidate(struct sk_buff *skb)
2771 {
2772         NAPI_GRO_CB(skb)->frag0 = NULL;
2773         NAPI_GRO_CB(skb)->frag0_len = 0;
2774 }
2775
2776 static inline void *skb_gro_header_slow(struct sk_buff *skb, unsigned int hlen,
2777                                         unsigned int offset)
2778 {
2779         if (!pskb_may_pull(skb, hlen))
2780                 return NULL;
2781
2782         skb_gro_frag0_invalidate(skb);
2783         return skb->data + offset;
2784 }
2785
2786 static inline void *skb_gro_network_header(struct sk_buff *skb)
2787 {
2788         return (NAPI_GRO_CB(skb)->frag0 ?: skb->data) +
2789                skb_network_offset(skb);
2790 }
2791
2792 static inline void skb_gro_postpull_rcsum(struct sk_buff *skb,
2793                                         const void *start, unsigned int len)
2794 {
2795         if (NAPI_GRO_CB(skb)->csum_valid)
2796                 NAPI_GRO_CB(skb)->csum = csum_sub(NAPI_GRO_CB(skb)->csum,
2797                                                   csum_partial(start, len, 0));
2798 }
2799
2800 /* GRO checksum functions. These are logical equivalents of the normal
2801  * checksum functions (in skbuff.h) except that they operate on the GRO
2802  * offsets and fields in sk_buff.
2803  */
2804
2805 __sum16 __skb_gro_checksum_complete(struct sk_buff *skb);
2806
2807 static inline bool skb_at_gro_remcsum_start(struct sk_buff *skb)
2808 {
2809         return (NAPI_GRO_CB(skb)->gro_remcsum_start == skb_gro_offset(skb));
2810 }
2811
2812 static inline bool __skb_gro_checksum_validate_needed(struct sk_buff *skb,
2813                                                       bool zero_okay,
2814                                                       __sum16 check)
2815 {
2816         return ((skb->ip_summed != CHECKSUM_PARTIAL ||
2817                 skb_checksum_start_offset(skb) <
2818                  skb_gro_offset(skb)) &&
2819                 !skb_at_gro_remcsum_start(skb) &&
2820                 NAPI_GRO_CB(skb)->csum_cnt == 0 &&
2821                 (!zero_okay || check));
2822 }
2823
2824 static inline __sum16 __skb_gro_checksum_validate_complete(struct sk_buff *skb,
2825                                                            __wsum psum)
2826 {
2827         if (NAPI_GRO_CB(skb)->csum_valid &&
2828             !csum_fold(csum_add(psum, NAPI_GRO_CB(skb)->csum)))
2829                 return 0;
2830
2831         NAPI_GRO_CB(skb)->csum = psum;
2832
2833         return __skb_gro_checksum_complete(skb);
2834 }
2835
2836 static inline void skb_gro_incr_csum_unnecessary(struct sk_buff *skb)
2837 {
2838         if (NAPI_GRO_CB(skb)->csum_cnt > 0) {
2839                 /* Consume a checksum from CHECKSUM_UNNECESSARY */
2840                 NAPI_GRO_CB(skb)->csum_cnt--;
2841         } else {
2842                 /* Update skb for CHECKSUM_UNNECESSARY and csum_level when we
2843                  * verified a new top level checksum or an encapsulated one
2844                  * during GRO. This saves work if we fallback to normal path.
2845                  */
2846                 __skb_incr_checksum_unnecessary(skb);
2847         }
2848 }
2849
2850 #define __skb_gro_checksum_validate(skb, proto, zero_okay, check,       \
2851                                     compute_pseudo)                     \
2852 ({                                                                      \
2853         __sum16 __ret = 0;                                              \
2854         if (__skb_gro_checksum_validate_needed(skb, zero_okay, check))  \
2855                 __ret = __skb_gro_checksum_validate_complete(skb,       \
2856                                 compute_pseudo(skb, proto));            \
2857         if (!__ret)                                                     \
2858                 skb_gro_incr_csum_unnecessary(skb);                     \
2859         __ret;                                                          \
2860 })
2861
2862 #define skb_gro_checksum_validate(skb, proto, compute_pseudo)           \
2863         __skb_gro_checksum_validate(skb, proto, false, 0, compute_pseudo)
2864
2865 #define skb_gro_checksum_validate_zero_check(skb, proto, check,         \
2866                                              compute_pseudo)            \
2867         __skb_gro_checksum_validate(skb, proto, true, check, compute_pseudo)
2868
2869 #define skb_gro_checksum_simple_validate(skb)                           \
2870         __skb_gro_checksum_validate(skb, 0, false, 0, null_compute_pseudo)
2871
2872 static inline bool __skb_gro_checksum_convert_check(struct sk_buff *skb)
2873 {
2874         return (NAPI_GRO_CB(skb)->csum_cnt == 0 &&
2875                 !NAPI_GRO_CB(skb)->csum_valid);
2876 }
2877
2878 static inline void __skb_gro_checksum_convert(struct sk_buff *skb,
2879                                               __wsum pseudo)
2880 {
2881         NAPI_GRO_CB(skb)->csum = ~pseudo;
2882         NAPI_GRO_CB(skb)->csum_valid = 1;
2883 }
2884
2885 #define skb_gro_checksum_try_convert(skb, proto, compute_pseudo)        \
2886 do {                                                                    \
2887         if (__skb_gro_checksum_convert_check(skb))                      \
2888                 __skb_gro_checksum_convert(skb,                         \
2889                                            compute_pseudo(skb, proto)); \
2890 } while (0)
2891
2892 struct gro_remcsum {
2893         int offset;
2894         __wsum delta;
2895 };
2896
2897 static inline void skb_gro_remcsum_init(struct gro_remcsum *grc)
2898 {
2899         grc->offset = 0;
2900         grc->delta = 0;
2901 }
2902
2903 static inline void *skb_gro_remcsum_process(struct sk_buff *skb, void *ptr,
2904                                             unsigned int off, size_t hdrlen,
2905                                             int start, int offset,
2906                                             struct gro_remcsum *grc,
2907                                             bool nopartial)
2908 {
2909         __wsum delta;
2910         size_t plen = hdrlen + max_t(size_t, offset + sizeof(u16), start);
2911
2912         BUG_ON(!NAPI_GRO_CB(skb)->csum_valid);
2913
2914         if (!nopartial) {
2915                 NAPI_GRO_CB(skb)->gro_remcsum_start = off + hdrlen + start;
2916                 return ptr;
2917         }
2918
2919         ptr = skb_gro_header_fast(skb, off);
2920         if (skb_gro_header_hard(skb, off + plen)) {
2921                 ptr = skb_gro_header_slow(skb, off + plen, off);
2922                 if (!ptr)
2923                         return NULL;
2924         }
2925
2926         delta = remcsum_adjust(ptr + hdrlen, NAPI_GRO_CB(skb)->csum,
2927                                start, offset);
2928
2929         /* Adjust skb->csum since we changed the packet */
2930         NAPI_GRO_CB(skb)->csum = csum_add(NAPI_GRO_CB(skb)->csum, delta);
2931
2932         grc->offset = off + hdrlen + offset;
2933         grc->delta = delta;
2934
2935         return ptr;
2936 }
2937
2938 static inline void skb_gro_remcsum_cleanup(struct sk_buff *skb,
2939                                            struct gro_remcsum *grc)
2940 {
2941         void *ptr;
2942         size_t plen = grc->offset + sizeof(u16);
2943
2944         if (!grc->delta)
2945                 return;
2946
2947         ptr = skb_gro_header_fast(skb, grc->offset);
2948         if (skb_gro_header_hard(skb, grc->offset + sizeof(u16))) {
2949                 ptr = skb_gro_header_slow(skb, plen, grc->offset);
2950                 if (!ptr)
2951                         return;
2952         }
2953
2954         remcsum_unadjust((__sum16 *)ptr, grc->delta);
2955 }
2956
2957 #ifdef CONFIG_XFRM_OFFLOAD
2958 static inline void skb_gro_flush_final(struct sk_buff *skb, struct sk_buff *pp, int flush)
2959 {
2960         if (PTR_ERR(pp) != -EINPROGRESS)
2961                 NAPI_GRO_CB(skb)->flush |= flush;
2962 }
2963 static inline void skb_gro_flush_final_remcsum(struct sk_buff *skb,
2964                                                struct sk_buff *pp,
2965                                                int flush,
2966                                                struct gro_remcsum *grc)
2967 {
2968         if (PTR_ERR(pp) != -EINPROGRESS) {
2969                 NAPI_GRO_CB(skb)->flush |= flush;
2970                 skb_gro_remcsum_cleanup(skb, grc);
2971                 skb->remcsum_offload = 0;
2972         }
2973 }
2974 #else
2975 static inline void skb_gro_flush_final(struct sk_buff *skb, struct sk_buff *pp, int flush)
2976 {
2977         NAPI_GRO_CB(skb)->flush |= flush;
2978 }
2979 static inline void skb_gro_flush_final_remcsum(struct sk_buff *skb,
2980                                                struct sk_buff *pp,
2981                                                int flush,
2982                                                struct gro_remcsum *grc)
2983 {
2984         NAPI_GRO_CB(skb)->flush |= flush;
2985         skb_gro_remcsum_cleanup(skb, grc);
2986         skb->remcsum_offload = 0;
2987 }
2988 #endif
2989
2990 static inline int dev_hard_header(struct sk_buff *skb, struct net_device *dev,
2991                                   unsigned short type,
2992                                   const void *daddr, const void *saddr,
2993                                   unsigned int len)
2994 {
2995         if (!dev->header_ops || !dev->header_ops->create)
2996                 return 0;
2997
2998         return dev->header_ops->create(skb, dev, type, daddr, saddr, len);
2999 }
3000
3001 static inline int dev_parse_header(const struct sk_buff *skb,
3002                                    unsigned char *haddr)
3003 {
3004         const struct net_device *dev = skb->dev;
3005
3006         if (!dev->header_ops || !dev->header_ops->parse)
3007                 return 0;
3008         return dev->header_ops->parse(skb, haddr);
3009 }
3010
3011 static inline __be16 dev_parse_header_protocol(const struct sk_buff *skb)
3012 {
3013         const struct net_device *dev = skb->dev;
3014
3015         if (!dev->header_ops || !dev->header_ops->parse_protocol)
3016                 return 0;
3017         return dev->header_ops->parse_protocol(skb);
3018 }
3019
3020 /* ll_header must have at least hard_header_len allocated */
3021 static inline bool dev_validate_header(const struct net_device *dev,
3022                                        char *ll_header, int len)
3023 {
3024         if (likely(len >= dev->hard_header_len))
3025                 return true;
3026         if (len < dev->min_header_len)
3027                 return false;
3028
3029         if (capable(CAP_SYS_RAWIO)) {
3030                 memset(ll_header + len, 0, dev->hard_header_len - len);
3031                 return true;
3032         }
3033
3034         if (dev->header_ops && dev->header_ops->validate)
3035                 return dev->header_ops->validate(ll_header, len);
3036
3037         return false;
3038 }
3039
3040 typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr,
3041                            int len, int size);
3042 int register_gifconf(unsigned int family, gifconf_func_t *gifconf);
3043 static inline int unregister_gifconf(unsigned int family)
3044 {
3045         return register_gifconf(family, NULL);
3046 }
3047
3048 #ifdef CONFIG_NET_FLOW_LIMIT
3049 #define FLOW_LIMIT_HISTORY      (1 << 7)  /* must be ^2 and !overflow buckets */
3050 struct sd_flow_limit {
3051         u64                     count;
3052         unsigned int            num_buckets;
3053         unsigned int            history_head;
3054         u16                     history[FLOW_LIMIT_HISTORY];
3055         u8                      buckets[];
3056 };
3057
3058 extern int netdev_flow_limit_table_len;
3059 #endif /* CONFIG_NET_FLOW_LIMIT */
3060
3061 /*
3062  * Incoming packets are placed on per-CPU queues
3063  */
3064 struct softnet_data {
3065         struct list_head        poll_list;
3066         struct sk_buff_head     process_queue;
3067
3068         /* stats */
3069         unsigned int            processed;
3070         unsigned int            time_squeeze;
3071         unsigned int            received_rps;
3072 #ifdef CONFIG_RPS
3073         struct softnet_data     *rps_ipi_list;
3074 #endif
3075 #ifdef CONFIG_NET_FLOW_LIMIT
3076         struct sd_flow_limit __rcu *flow_limit;
3077 #endif
3078         struct Qdisc            *output_queue;
3079         struct Qdisc            **output_queue_tailp;
3080         struct sk_buff          *completion_queue;
3081 #ifdef CONFIG_XFRM_OFFLOAD
3082         struct sk_buff_head     xfrm_backlog;
3083 #endif
3084         /* written and read only by owning cpu: */
3085         struct {
3086                 u16 recursion;
3087                 u8  more;
3088         } xmit;
3089 #ifdef CONFIG_RPS
3090         /* input_queue_head should be written by cpu owning this struct,
3091          * and only read by other cpus. Worth using a cache line.
3092          */
3093         unsigned int            input_queue_head ____cacheline_aligned_in_smp;
3094
3095         /* Elements below can be accessed between CPUs for RPS/RFS */
3096         call_single_data_t      csd ____cacheline_aligned_in_smp;
3097         struct softnet_data     *rps_ipi_next;
3098         unsigned int            cpu;
3099         unsigned int            input_queue_tail;
3100 #endif
3101         unsigned int            dropped;
3102         struct sk_buff_head     input_pkt_queue;
3103         struct napi_struct      backlog;
3104
3105 };
3106
3107 static inline void input_queue_head_incr(struct softnet_data *sd)
3108 {
3109 #ifdef CONFIG_RPS
3110         sd->input_queue_head++;
3111 #endif
3112 }
3113
3114 static inline void input_queue_tail_incr_save(struct softnet_data *sd,
3115                                               unsigned int *qtail)
3116 {
3117 #ifdef CONFIG_RPS
3118         *qtail = ++sd->input_queue_tail;
3119 #endif
3120 }
3121
3122 DECLARE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
3123
3124 static inline int dev_recursion_level(void)
3125 {
3126         return this_cpu_read(softnet_data.xmit.recursion);
3127 }
3128
3129 #define XMIT_RECURSION_LIMIT    10
3130 static inline bool dev_xmit_recursion(void)
3131 {
3132         return unlikely(__this_cpu_read(softnet_data.xmit.recursion) >
3133                         XMIT_RECURSION_LIMIT);
3134 }
3135
3136 static inline void dev_xmit_recursion_inc(void)
3137 {
3138         __this_cpu_inc(softnet_data.xmit.recursion);
3139 }
3140
3141 static inline void dev_xmit_recursion_dec(void)
3142 {
3143         __this_cpu_dec(softnet_data.xmit.recursion);
3144 }
3145
3146 void __netif_schedule(struct Qdisc *q);
3147 void netif_schedule_queue(struct netdev_queue *txq);
3148
3149 static inline void netif_tx_schedule_all(struct net_device *dev)
3150 {
3151         unsigned int i;
3152
3153         for (i = 0; i < dev->num_tx_queues; i++)
3154                 netif_schedule_queue(netdev_get_tx_queue(dev, i));
3155 }
3156
3157 static __always_inline void netif_tx_start_queue(struct netdev_queue *dev_queue)
3158 {
3159         clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
3160 }
3161
3162 /**
3163  *      netif_start_queue - allow transmit
3164  *      @dev: network device
3165  *
3166  *      Allow upper layers to call the device hard_start_xmit routine.
3167  */
3168 static inline void netif_start_queue(struct net_device *dev)
3169 {
3170         netif_tx_start_queue(netdev_get_tx_queue(dev, 0));
3171 }
3172
3173 static inline void netif_tx_start_all_queues(struct net_device *dev)
3174 {
3175         unsigned int i;
3176
3177         for (i = 0; i < dev->num_tx_queues; i++) {
3178                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
3179                 netif_tx_start_queue(txq);
3180         }
3181 }
3182
3183 void netif_tx_wake_queue(struct netdev_queue *dev_queue);
3184
3185 /**
3186  *      netif_wake_queue - restart transmit
3187  *      @dev: network device
3188  *
3189  *      Allow upper layers to call the device hard_start_xmit routine.
3190  *      Used for flow control when transmit resources are available.
3191  */
3192 static inline void netif_wake_queue(struct net_device *dev)
3193 {
3194         netif_tx_wake_queue(netdev_get_tx_queue(dev, 0));
3195 }
3196
3197 static inline void netif_tx_wake_all_queues(struct net_device *dev)
3198 {
3199         unsigned int i;
3200
3201         for (i = 0; i < dev->num_tx_queues; i++) {
3202                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
3203                 netif_tx_wake_queue(txq);
3204         }
3205 }
3206
3207 static __always_inline void netif_tx_stop_queue(struct netdev_queue *dev_queue)
3208 {
3209         set_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
3210 }
3211
3212 /**
3213  *      netif_stop_queue - stop transmitted packets
3214  *      @dev: network device
3215  *
3216  *      Stop upper layers calling the device hard_start_xmit routine.
3217  *      Used for flow control when transmit resources are unavailable.
3218  */
3219 static inline void netif_stop_queue(struct net_device *dev)
3220 {
3221         netif_tx_stop_queue(netdev_get_tx_queue(dev, 0));
3222 }
3223
3224 void netif_tx_stop_all_queues(struct net_device *dev);
3225 void netdev_update_lockdep_key(struct net_device *dev);
3226
3227 static inline bool netif_tx_queue_stopped(const struct netdev_queue *dev_queue)
3228 {
3229         return test_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state);
3230 }
3231
3232 /**
3233  *      netif_queue_stopped - test if transmit queue is flowblocked
3234  *      @dev: network device
3235  *
3236  *      Test if transmit queue on device is currently unable to send.
3237  */
3238 static inline bool netif_queue_stopped(const struct net_device *dev)
3239 {
3240         return netif_tx_queue_stopped(netdev_get_tx_queue(dev, 0));
3241 }
3242
3243 static inline bool netif_xmit_stopped(const struct netdev_queue *dev_queue)
3244 {
3245         return dev_queue->state & QUEUE_STATE_ANY_XOFF;
3246 }
3247
3248 static inline bool
3249 netif_xmit_frozen_or_stopped(const struct netdev_queue *dev_queue)
3250 {
3251         return dev_queue->state & QUEUE_STATE_ANY_XOFF_OR_FROZEN;
3252 }
3253
3254 static inline bool
3255 netif_xmit_frozen_or_drv_stopped(const struct netdev_queue *dev_queue)
3256 {
3257         return dev_queue->state & QUEUE_STATE_DRV_XOFF_OR_FROZEN;
3258 }
3259
3260 /**
3261  *      netdev_txq_bql_enqueue_prefetchw - prefetch bql data for write
3262  *      @dev_queue: pointer to transmit queue
3263  *
3264  * BQL enabled drivers might use this helper in their ndo_start_xmit(),
3265  * to give appropriate hint to the CPU.
3266  */
3267 static inline void netdev_txq_bql_enqueue_prefetchw(struct netdev_queue *dev_queue)
3268 {
3269 #ifdef CONFIG_BQL
3270         prefetchw(&dev_queue->dql.num_queued);
3271 #endif
3272 }
3273
3274 /**
3275  *      netdev_txq_bql_complete_prefetchw - prefetch bql data for write
3276  *      @dev_queue: pointer to transmit queue
3277  *
3278  * BQL enabled drivers might use this helper in their TX completion path,
3279  * to give appropriate hint to the CPU.
3280  */
3281 static inline void netdev_txq_bql_complete_prefetchw(struct netdev_queue *dev_queue)
3282 {
3283 #ifdef CONFIG_BQL
3284         prefetchw(&dev_queue->dql.limit);
3285 #endif
3286 }
3287
3288 static inline void netdev_tx_sent_queue(struct netdev_queue *dev_queue,
3289                                         unsigned int bytes)
3290 {
3291 #ifdef CONFIG_BQL
3292         dql_queued(&dev_queue->dql, bytes);
3293
3294         if (likely(dql_avail(&dev_queue->dql) >= 0))
3295                 return;
3296
3297         set_bit(__QUEUE_STATE_STACK_XOFF, &dev_queue->state);
3298
3299         /*
3300          * The XOFF flag must be set before checking the dql_avail below,
3301          * because in netdev_tx_completed_queue we update the dql_completed
3302          * before checking the XOFF flag.
3303          */
3304         smp_mb();
3305
3306         /* check again in case another CPU has just made room avail */
3307         if (unlikely(dql_avail(&dev_queue->dql) >= 0))
3308                 clear_bit(__QUEUE_STATE_STACK_XOFF, &dev_queue->state);
3309 #endif
3310 }
3311
3312 /* Variant of netdev_tx_sent_queue() for drivers that are aware
3313  * that they should not test BQL status themselves.
3314  * We do want to change __QUEUE_STATE_STACK_XOFF only for the last
3315  * skb of a batch.
3316  * Returns true if the doorbell must be used to kick the NIC.
3317  */
3318 static inline bool __netdev_tx_sent_queue(struct netdev_queue *dev_queue,
3319                                           unsigned int bytes,
3320                                           bool xmit_more)
3321 {
3322         if (xmit_more) {
3323 #ifdef CONFIG_BQL
3324                 dql_queued(&dev_queue->dql, bytes);
3325 #endif
3326                 return netif_tx_queue_stopped(dev_queue);
3327         }
3328         netdev_tx_sent_queue(dev_queue, bytes);
3329         return true;
3330 }
3331
3332 /**
3333  *      netdev_sent_queue - report the number of bytes queued to hardware
3334  *      @dev: network device
3335  *      @bytes: number of bytes queued to the hardware device queue
3336  *
3337  *      Report the number of bytes queued for sending/completion to the network
3338  *      device hardware queue. @bytes should be a good approximation and should
3339  *      exactly match netdev_completed_queue() @bytes
3340  */
3341 static inline void netdev_sent_queue(struct net_device *dev, unsigned int bytes)
3342 {
3343         netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes);
3344 }
3345
3346 static inline bool __netdev_sent_queue(struct net_device *dev,
3347                                        unsigned int bytes,
3348                                        bool xmit_more)
3349 {
3350         return __netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes,
3351                                       xmit_more);
3352 }
3353
3354 static inline void netdev_tx_completed_queue(struct netdev_queue *dev_queue,
3355                                              unsigned int pkts, unsigned int bytes)
3356 {
3357 #ifdef CONFIG_BQL
3358         if (unlikely(!bytes))
3359                 return;
3360
3361         dql_completed(&dev_queue->dql, bytes);
3362
3363         /*
3364          * Without the memory barrier there is a small possiblity that
3365          * netdev_tx_sent_queue will miss the update and cause the queue to
3366          * be stopped forever
3367          */
3368         smp_mb();
3369
3370         if (unlikely(dql_avail(&dev_queue->dql) < 0))
3371                 return;
3372
3373         if (test_and_clear_bit(__QUEUE_STATE_STACK_XOFF, &dev_queue->state))
3374                 netif_schedule_queue(dev_queue);
3375 #endif
3376 }
3377
3378 /**
3379  *      netdev_completed_queue - report bytes and packets completed by device
3380  *      @dev: network device
3381  *      @pkts: actual number of packets sent over the medium
3382  *      @bytes: actual number of bytes sent over the medium
3383  *
3384  *      Report the number of bytes and packets transmitted by the network device
3385  *      hardware queue over the physical medium, @bytes must exactly match the
3386  *      @bytes amount passed to netdev_sent_queue()
3387  */
3388 static inline void netdev_completed_queue(struct net_device *dev,
3389                                           unsigned int pkts, unsigned int bytes)
3390 {
3391         netdev_tx_completed_queue(netdev_get_tx_queue(dev, 0), pkts, bytes);
3392 }
3393
3394 static inline void netdev_tx_reset_queue(struct netdev_queue *q)
3395 {
3396 #ifdef CONFIG_BQL
3397         clear_bit(__QUEUE_STATE_STACK_XOFF, &q->state);
3398         dql_reset(&q->dql);
3399 #endif
3400 }
3401
3402 /**
3403  *      netdev_reset_queue - reset the packets and bytes count of a network device
3404  *      @dev_queue: network device
3405  *
3406  *      Reset the bytes and packet count of a network device and clear the
3407  *      software flow control OFF bit for this network device
3408  */
3409 static inline void netdev_reset_queue(struct net_device *dev_queue)
3410 {
3411         netdev_tx_reset_queue(netdev_get_tx_queue(dev_queue, 0));
3412 }
3413
3414 /**
3415  *      netdev_cap_txqueue - check if selected tx queue exceeds device queues
3416  *      @dev: network device
3417  *      @queue_index: given tx queue index
3418  *
3419  *      Returns 0 if given tx queue index >= number of device tx queues,
3420  *      otherwise returns the originally passed tx queue index.
3421  */
3422 static inline u16 netdev_cap_txqueue(struct net_device *dev, u16 queue_index)
3423 {
3424         if (unlikely(queue_index >= dev->real_num_tx_queues)) {
3425                 net_warn_ratelimited("%s selects TX queue %d, but real number of TX queues is %d\n",
3426                                      dev->name, queue_index,
3427                                      dev->real_num_tx_queues);
3428                 return 0;
3429         }
3430
3431         return queue_index;
3432 }
3433
3434 /**
3435  *      netif_running - test if up
3436  *      @dev: network device
3437  *
3438  *      Test if the device has been brought up.
3439  */
3440 static inline bool netif_running(const struct net_device *dev)
3441 {
3442         return test_bit(__LINK_STATE_START, &dev->state);
3443 }
3444
3445 /*
3446  * Routines to manage the subqueues on a device.  We only need start,
3447  * stop, and a check if it's stopped.  All other device management is
3448  * done at the overall netdevice level.
3449  * Also test the device if we're multiqueue.
3450  */
3451
3452 /**
3453  *      netif_start_subqueue - allow sending packets on subqueue
3454  *      @dev: network device
3455  *      @queue_index: sub queue index
3456  *
3457  * Start individual transmit queue of a device with multiple transmit queues.
3458  */
3459 static inline void netif_start_subqueue(struct net_device *dev, u16 queue_index)
3460 {
3461         struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3462
3463         netif_tx_start_queue(txq);
3464 }
3465
3466 /**
3467  *      netif_stop_subqueue - stop sending packets on subqueue
3468  *      @dev: network device
3469  *      @queue_index: sub queue index
3470  *
3471  * Stop individual transmit queue of a device with multiple transmit queues.
3472  */
3473 static inline void netif_stop_subqueue(struct net_device *dev, u16 queue_index)
3474 {
3475         struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3476         netif_tx_stop_queue(txq);
3477 }
3478
3479 /**
3480  *      netif_subqueue_stopped - test status of subqueue
3481  *      @dev: network device
3482  *      @queue_index: sub queue index
3483  *
3484  * Check individual transmit queue of a device with multiple transmit queues.
3485  */
3486 static inline bool __netif_subqueue_stopped(const struct net_device *dev,
3487                                             u16 queue_index)
3488 {
3489         struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3490
3491         return netif_tx_queue_stopped(txq);
3492 }
3493
3494 static inline bool netif_subqueue_stopped(const struct net_device *dev,
3495                                           struct sk_buff *skb)
3496 {
3497         return __netif_subqueue_stopped(dev, skb_get_queue_mapping(skb));
3498 }
3499
3500 /**
3501  *      netif_wake_subqueue - allow sending packets on subqueue
3502  *      @dev: network device
3503  *      @queue_index: sub queue index
3504  *
3505  * Resume individual transmit queue of a device with multiple transmit queues.
3506  */
3507 static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
3508 {
3509         struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
3510
3511         netif_tx_wake_queue(txq);
3512 }
3513
3514 #ifdef CONFIG_XPS
3515 int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
3516                         u16 index);
3517 int __netif_set_xps_queue(struct net_device *dev, const unsigned long *mask,
3518                           u16 index, bool is_rxqs_map);
3519
3520 /**
3521  *      netif_attr_test_mask - Test a CPU or Rx queue set in a mask
3522  *      @j: CPU/Rx queue index
3523  *      @mask: bitmask of all cpus/rx queues
3524  *      @nr_bits: number of bits in the bitmask
3525  *
3526  * Test if a CPU or Rx queue index is set in a mask of all CPU/Rx queues.
3527  */
3528 static inline bool netif_attr_test_mask(unsigned long j,
3529                                         const unsigned long *mask,
3530                                         unsigned int nr_bits)
3531 {
3532         cpu_max_bits_warn(j, nr_bits);
3533         return test_bit(j, mask);
3534 }
3535
3536 /**
3537  *      netif_attr_test_online - Test for online CPU/Rx queue
3538  *      @j: CPU/Rx queue index
3539  *      @online_mask: bitmask for CPUs/Rx queues that are online
3540  *      @nr_bits: number of bits in the bitmask
3541  *
3542  * Returns true if a CPU/Rx queue is online.
3543  */
3544 static inline bool netif_attr_test_online(unsigned long j,
3545                                           const unsigned long *online_mask,
3546                                           unsigned int nr_bits)
3547 {
3548         cpu_max_bits_warn(j, nr_bits);
3549
3550         if (online_mask)
3551                 return test_bit(j, online_mask);
3552
3553         return (j < nr_bits);
3554 }
3555
3556 /**
3557  *      netif_attrmask_next - get the next CPU/Rx queue in a cpu/Rx queues mask
3558  *      @n: CPU/Rx queue index
3559  *      @srcp: the cpumask/Rx queue mask pointer
3560  *      @nr_bits: number of bits in the bitmask
3561  *
3562  * Returns >= nr_bits if no further CPUs/Rx queues set.
3563  */
3564 static inline unsigned int netif_attrmask_next(int n, const unsigned long *srcp,
3565                                                unsigned int nr_bits)
3566 {
3567         /* -1 is a legal arg here. */
3568         if (n != -1)
3569                 cpu_max_bits_warn(n, nr_bits);
3570
3571         if (srcp)
3572                 return find_next_bit(srcp, nr_bits, n + 1);
3573
3574         return n + 1;
3575 }
3576
3577 /**
3578  *      netif_attrmask_next_and - get the next CPU/Rx queue in \*src1p & \*src2p
3579  *      @n: CPU/Rx queue index
3580  *      @src1p: the first CPUs/Rx queues mask pointer
3581  *      @src2p: the second CPUs/Rx queues mask pointer
3582  *      @nr_bits: number of bits in the bitmask
3583  *
3584  * Returns >= nr_bits if no further CPUs/Rx queues set in both.
3585  */
3586 static inline int netif_attrmask_next_and(int n, const unsigned long *src1p,
3587                                           const unsigned long *src2p,
3588                                           unsigned int nr_bits)
3589 {
3590         /* -1 is a legal arg here. */
3591         if (n != -1)
3592                 cpu_max_bits_warn(n, nr_bits);
3593
3594         if (src1p && src2p)
3595                 return find_next_and_bit(src1p, src2p, nr_bits, n + 1);
3596         else if (src1p)
3597                 return find_next_bit(src1p, nr_bits, n + 1);
3598         else if (src2p)
3599                 return find_next_bit(src2p, nr_bits, n + 1);
3600
3601         return n + 1;
3602 }
3603 #else
3604 static inline int netif_set_xps_queue(struct net_device *dev,
3605                                       const struct cpumask *mask,
3606                                       u16 index)
3607 {
3608         return 0;
3609 }
3610
3611 static inline int __netif_set_xps_queue(struct net_device *dev,
3612                                         const unsigned long *mask,
3613                                         u16 index, bool is_rxqs_map)
3614 {
3615         return 0;
3616 }
3617 #endif
3618
3619 /**
3620  *      netif_is_multiqueue - test if device has multiple transmit queues
3621  *      @dev: network device
3622  *
3623  * Check if device has multiple transmit queues
3624  */
3625 static inline bool netif_is_multiqueue(const struct net_device *dev)
3626 {
3627         return dev->num_tx_queues > 1;
3628 }
3629
3630 int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq);
3631
3632 #ifdef CONFIG_SYSFS
3633 int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq);
3634 #else
3635 static inline int netif_set_real_num_rx_queues(struct net_device *dev,
3636                                                 unsigned int rxqs)
3637 {
3638         dev->real_num_rx_queues = rxqs;
3639         return 0;
3640 }
3641 #endif
3642
3643 static inline struct netdev_rx_queue *
3644 __netif_get_rx_queue(struct net_device *dev, unsigned int rxq)
3645 {
3646         return dev->_rx + rxq;
3647 }
3648
3649 #ifdef CONFIG_SYSFS
3650 static inline unsigned int get_netdev_rx_queue_index(
3651                 struct netdev_rx_queue *queue)
3652 {
3653         struct net_device *dev = queue->dev;
3654         int index = queue - dev->_rx;
3655
3656         BUG_ON(index >= dev->num_rx_queues);
3657         return index;
3658 }
3659 #endif
3660
3661 #define DEFAULT_MAX_NUM_RSS_QUEUES      (8)
3662 int netif_get_num_default_rss_queues(void);
3663
3664 enum skb_free_reason {
3665         SKB_REASON_CONSUMED,
3666         SKB_REASON_DROPPED,
3667 };
3668
3669 void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason);
3670 void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason);
3671
3672 /*
3673  * It is not allowed to call kfree_skb() or consume_skb() from hardware
3674  * interrupt context or with hardware interrupts being disabled.
3675  * (in_irq() || irqs_disabled())
3676  *
3677  * We provide four helpers that can be used in following contexts :
3678  *
3679  * dev_kfree_skb_irq(skb) when caller drops a packet from irq context,
3680  *  replacing kfree_skb(skb)
3681  *
3682  * dev_consume_skb_irq(skb) when caller consumes a packet from irq context.
3683  *  Typically used in place of consume_skb(skb) in TX completion path
3684  *
3685  * dev_kfree_skb_any(skb) when caller doesn't know its current irq context,
3686  *  replacing kfree_skb(skb)
3687  *
3688  * dev_consume_skb_any(skb) when caller doesn't know its current irq context,
3689  *  and consumed a packet. Used in place of consume_skb(skb)
3690  */
3691 static inline void dev_kfree_skb_irq(struct sk_buff *skb)
3692 {
3693         __dev_kfree_skb_irq(skb, SKB_REASON_DROPPED);
3694 }
3695
3696 static inline void dev_consume_skb_irq(struct sk_buff *skb)
3697 {
3698         __dev_kfree_skb_irq(skb, SKB_REASON_CONSUMED);
3699 }
3700
3701 static inline void dev_kfree_skb_any(struct sk_buff *skb)
3702 {
3703         __dev_kfree_skb_any(skb, SKB_REASON_DROPPED);
3704 }
3705
3706 static inline void dev_consume_skb_any(struct sk_buff *skb)
3707 {
3708         __dev_kfree_skb_any(skb, SKB_REASON_CONSUMED);
3709 }
3710
3711 void generic_xdp_tx(struct sk_buff *skb, struct bpf_prog *xdp_prog);
3712 int do_xdp_generic(struct bpf_prog *xdp_prog, struct sk_buff *skb);
3713 int netif_rx(struct sk_buff *skb);
3714 int netif_rx_ni(struct sk_buff *skb);
3715 int netif_receive_skb(struct sk_buff *skb);
3716 int netif_receive_skb_core(struct sk_buff *skb);
3717 void netif_receive_skb_list(struct list_head *head);
3718 gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb);
3719 void napi_gro_flush(struct napi_struct *napi, bool flush_old);
3720 struct sk_buff *napi_get_frags(struct napi_struct *napi);
3721 gro_result_t napi_gro_frags(struct napi_struct *napi);
3722 struct packet_offload *gro_find_receive_by_type(__be16 type);
3723 struct packet_offload *gro_find_complete_by_type(__be16 type);
3724
3725 static inline void napi_free_frags(struct napi_struct *napi)
3726 {
3727         kfree_skb(napi->skb);
3728         napi->skb = NULL;
3729 }
3730
3731 bool netdev_is_rx_handler_busy(struct net_device *dev);
3732 int netdev_rx_handler_register(struct net_device *dev,
3733                                rx_handler_func_t *rx_handler,
3734                                void *rx_handler_data);
3735 void netdev_rx_handler_unregister(struct net_device *dev);
3736
3737 bool dev_valid_name(const char *name);
3738 int dev_ioctl(struct net *net, unsigned int cmd, struct ifreq *ifr,
3739                 bool *need_copyout);
3740 int dev_ifconf(struct net *net, struct ifconf *, int);
3741 int dev_ethtool(struct net *net, struct ifreq *);
3742 unsigned int dev_get_flags(const struct net_device *);
3743 int __dev_change_flags(struct net_device *dev, unsigned int flags,
3744                        struct netlink_ext_ack *extack);
3745 int dev_change_flags(struct net_device *dev, unsigned int flags,
3746                      struct netlink_ext_ack *extack);
3747 void __dev_notify_flags(struct net_device *, unsigned int old_flags,
3748                         unsigned int gchanges);
3749 int dev_change_name(struct net_device *, const char *);
3750 int dev_set_alias(struct net_device *, const char *, size_t);
3751 int dev_get_alias(const struct net_device *, char *, size_t);
3752 int dev_change_net_namespace(struct net_device *, struct net *, const char *);
3753 int __dev_set_mtu(struct net_device *, int);
3754 int dev_validate_mtu(struct net_device *dev, int mtu,
3755                      struct netlink_ext_ack *extack);
3756 int dev_set_mtu_ext(struct net_device *dev, int mtu,
3757                     struct netlink_ext_ack *extack);
3758 int dev_set_mtu(struct net_device *, int);
3759 int dev_change_tx_queue_len(struct net_device *, unsigned long);
3760 void dev_set_group(struct net_device *, int);
3761 int dev_pre_changeaddr_notify(struct net_device *dev, const char *addr,
3762                               struct netlink_ext_ack *extack);
3763 int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa,
3764                         struct netlink_ext_ack *extack);
3765 int dev_change_carrier(struct net_device *, bool new_carrier);
3766 int dev_get_phys_port_id(struct net_device *dev,
3767                          struct netdev_phys_item_id *ppid);
3768 int dev_get_phys_port_name(struct net_device *dev,
3769                            char *name, size_t len);
3770 int dev_get_port_parent_id(struct net_device *dev,
3771                            struct netdev_phys_item_id *ppid, bool recurse);
3772 bool netdev_port_same_parent_id(struct net_device *a, struct net_device *b);
3773 int dev_change_proto_down(struct net_device *dev, bool proto_down);
3774 int dev_change_proto_down_generic(struct net_device *dev, bool proto_down);
3775 struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev, bool *again);
3776 struct sk_buff *dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
3777                                     struct netdev_queue *txq, int *ret);
3778
3779 typedef int (*bpf_op_t)(struct net_device *dev, struct netdev_bpf *bpf);
3780 int dev_change_xdp_fd(struct net_device *dev, struct netlink_ext_ack *extack,
3781                       int fd, int expected_fd, u32 flags);
3782 u32 __dev_xdp_query(struct net_device *dev, bpf_op_t xdp_op,
3783                     enum bpf_netdev_command cmd);
3784 int xdp_umem_query(struct net_device *dev, u16 queue_id);
3785
3786 int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb);
3787 int dev_forward_skb(struct net_device *dev, struct sk_buff *skb);
3788 bool is_skb_forwardable(const struct net_device *dev,
3789                         const struct sk_buff *skb);
3790
3791 static __always_inline int ____dev_forward_skb(struct net_device *dev,
3792                                                struct sk_buff *skb)
3793 {
3794         if (skb_orphan_frags(skb, GFP_ATOMIC) ||
3795             unlikely(!is_skb_forwardable(dev, skb))) {
3796                 atomic_long_inc(&dev->rx_dropped);
3797                 kfree_skb(skb);
3798                 return NET_RX_DROP;
3799         }
3800
3801         skb_scrub_packet(skb, true);
3802         skb->priority = 0;
3803         return 0;
3804 }
3805
3806 bool dev_nit_active(struct net_device *dev);
3807 void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev);
3808
3809 extern int              netdev_budget;
3810 extern unsigned int     netdev_budget_usecs;
3811
3812 /* Called by rtnetlink.c:rtnl_unlock() */
3813 void netdev_run_todo(void);
3814
3815 /**
3816  *      dev_put - release reference to device
3817  *      @dev: network device
3818  *
3819  * Release reference to device to allow it to be freed.
3820  */
3821 static inline void dev_put(struct net_device *dev)
3822 {
3823         this_cpu_dec(*dev->pcpu_refcnt);
3824 }
3825
3826 /**
3827  *      dev_hold - get reference to device
3828  *      @dev: network device
3829  *
3830  * Hold reference to device to keep it from being freed.
3831  */
3832 static inline void dev_hold(struct net_device *dev)
3833 {
3834         this_cpu_inc(*dev->pcpu_refcnt);
3835 }
3836
3837 /* Carrier loss detection, dial on demand. The functions netif_carrier_on
3838  * and _off may be called from IRQ context, but it is caller
3839  * who is responsible for serialization of these calls.
3840  *
3841  * The name carrier is inappropriate, these functions should really be
3842  * called netif_lowerlayer_*() because they represent the state of any
3843  * kind of lower layer not just hardware media.
3844  */
3845
3846 void linkwatch_init_dev(struct net_device *dev);
3847 void linkwatch_fire_event(struct net_device *dev);
3848 void linkwatch_forget_dev(struct net_device *dev);
3849
3850 /**
3851  *      netif_carrier_ok - test if carrier present
3852  *      @dev: network device
3853  *
3854  * Check if carrier is present on device
3855  */
3856 static inline bool netif_carrier_ok(const struct net_device *dev)
3857 {
3858         return !test_bit(__LINK_STATE_NOCARRIER, &dev->state);
3859 }
3860
3861 unsigned long dev_trans_start(struct net_device *dev);
3862
3863 void __netdev_watchdog_up(struct net_device *dev);
3864
3865 void netif_carrier_on(struct net_device *dev);
3866
3867 void netif_carrier_off(struct net_device *dev);
3868
3869 /**
3870  *      netif_dormant_on - mark device as dormant.
3871  *      @dev: network device
3872  *
3873  * Mark device as dormant (as per RFC2863).
3874  *
3875  * The dormant state indicates that the relevant interface is not
3876  * actually in a condition to pass packets (i.e., it is not 'up') but is
3877  * in a "pending" state, waiting for some external event.  For "on-
3878  * demand" interfaces, this new state identifies the situation where the
3879  * interface is waiting for events to place it in the up state.
3880  */
3881 static inline void netif_dormant_on(struct net_device *dev)
3882 {
3883         if (!test_and_set_bit(__LINK_STATE_DORMANT, &dev->state))
3884                 linkwatch_fire_event(dev);
3885 }
3886
3887 /**
3888  *      netif_dormant_off - set device as not dormant.
3889  *      @dev: network device
3890  *
3891  * Device is not in dormant state.
3892  */
3893 static inline void netif_dormant_off(struct net_device *dev)
3894 {
3895         if (test_and_clear_bit(__LINK_STATE_DORMANT, &dev->state))
3896                 linkwatch_fire_event(dev);
3897 }
3898
3899 /**
3900  *      netif_dormant - test if device is dormant
3901  *      @dev: network device
3902  *
3903  * Check if device is dormant.
3904  */
3905 static inline bool netif_dormant(const struct net_device *dev)
3906 {
3907         return test_bit(__LINK_STATE_DORMANT, &dev->state);
3908 }
3909
3910
3911 /**
3912  *      netif_testing_on - mark device as under test.
3913  *      @dev: network device
3914  *
3915  * Mark device as under test (as per RFC2863).
3916  *
3917  * The testing state indicates that some test(s) must be performed on
3918  * the interface. After completion, of the test, the interface state
3919  * will change to up, dormant, or down, as appropriate.
3920  */
3921 static inline void netif_testing_on(struct net_device *dev)
3922 {
3923         if (!test_and_set_bit(__LINK_STATE_TESTING, &dev->state))
3924                 linkwatch_fire_event(dev);
3925 }
3926
3927 /**
3928  *      netif_testing_off - set device as not under test.
3929  *      @dev: network device
3930  *
3931  * Device is not in testing state.
3932  */
3933 static inline void netif_testing_off(struct net_device *dev)
3934 {
3935         if (test_and_clear_bit(__LINK_STATE_TESTING, &dev->state))
3936                 linkwatch_fire_event(dev);
3937 }
3938
3939 /**
3940  *      netif_testing - test if device is under test
3941  *      @dev: network device
3942  *
3943  * Check if device is under test
3944  */
3945 static inline bool netif_testing(const struct net_device *dev)
3946 {
3947         return test_bit(__LINK_STATE_TESTING, &dev->state);
3948 }
3949
3950
3951 /**
3952  *      netif_oper_up - test if device is operational
3953  *      @dev: network device
3954  *
3955  * Check if carrier is operational
3956  */
3957 static inline bool netif_oper_up(const struct net_device *dev)
3958 {
3959         return (dev->operstate == IF_OPER_UP ||
3960                 dev->operstate == IF_OPER_UNKNOWN /* backward compat */);
3961 }
3962
3963 /**
3964  *      netif_device_present - is device available or removed
3965  *      @dev: network device
3966  *
3967  * Check if device has not been removed from system.
3968  */
3969 static inline bool netif_device_present(struct net_device *dev)
3970 {
3971         return test_bit(__LINK_STATE_PRESENT, &dev->state);
3972 }
3973
3974 void netif_device_detach(struct net_device *dev);
3975
3976 void netif_device_attach(struct net_device *dev);
3977
3978 /*
3979  * Network interface message level settings
3980  */
3981
3982 enum {
3983         NETIF_MSG_DRV_BIT,
3984         NETIF_MSG_PROBE_BIT,
3985         NETIF_MSG_LINK_BIT,
3986         NETIF_MSG_TIMER_BIT,
3987         NETIF_MSG_IFDOWN_BIT,
3988         NETIF_MSG_IFUP_BIT,
3989         NETIF_MSG_RX_ERR_BIT,
3990         NETIF_MSG_TX_ERR_BIT,
3991         NETIF_MSG_TX_QUEUED_BIT,
3992         NETIF_MSG_INTR_BIT,
3993         NETIF_MSG_TX_DONE_BIT,
3994         NETIF_MSG_RX_STATUS_BIT,
3995         NETIF_MSG_PKTDATA_BIT,
3996         NETIF_MSG_HW_BIT,
3997         NETIF_MSG_WOL_BIT,
3998
3999         /* When you add a new bit above, update netif_msg_class_names array
4000          * in net/ethtool/common.c
4001          */
4002         NETIF_MSG_CLASS_COUNT,
4003 };
4004 /* Both ethtool_ops interface and internal driver implementation use u32 */
4005 static_assert(NETIF_MSG_CLASS_COUNT <= 32);
4006
4007 #define __NETIF_MSG_BIT(bit)    ((u32)1 << (bit))
4008 #define __NETIF_MSG(name)       __NETIF_MSG_BIT(NETIF_MSG_ ## name ## _BIT)
4009
4010 #define NETIF_MSG_DRV           __NETIF_MSG(DRV)
4011 #define NETIF_MSG_PROBE         __NETIF_MSG(PROBE)
4012 #define NETIF_MSG_LINK          __NETIF_MSG(LINK)
4013 #define NETIF_MSG_TIMER         __NETIF_MSG(TIMER)
4014 #define NETIF_MSG_IFDOWN        __NETIF_MSG(IFDOWN)
4015 #define NETIF_MSG_IFUP          __NETIF_MSG(IFUP)
4016 #define NETIF_MSG_RX_ERR        __NETIF_MSG(RX_ERR)
4017 #define NETIF_MSG_TX_ERR        __NETIF_MSG(TX_ERR)
4018 #define NETIF_MSG_TX_QUEUED     __NETIF_MSG(TX_QUEUED)
4019 #define NETIF_MSG_INTR          __NETIF_MSG(INTR)
4020 #define NETIF_MSG_TX_DONE       __NETIF_MSG(TX_DONE)
4021 #define NETIF_MSG_RX_STATUS     __NETIF_MSG(RX_STATUS)
4022 #define NETIF_MSG_PKTDATA       __NETIF_MSG(PKTDATA)
4023 #define NETIF_MSG_HW            __NETIF_MSG(HW)
4024 #define NETIF_MSG_WOL           __NETIF_MSG(WOL)
4025
4026 #define netif_msg_drv(p)        ((p)->msg_enable & NETIF_MSG_DRV)
4027 #define netif_msg_probe(p)      ((p)->msg_enable & NETIF_MSG_PROBE)
4028 #define netif_msg_link(p)       ((p)->msg_enable & NETIF_MSG_LINK)
4029 #define netif_msg_timer(p)      ((p)->msg_enable & NETIF_MSG_TIMER)
4030 #define netif_msg_ifdown(p)     ((p)->msg_enable & NETIF_MSG_IFDOWN)
4031 #define netif_msg_ifup(p)       ((p)->msg_enable & NETIF_MSG_IFUP)
4032 #define netif_msg_rx_err(p)     ((p)->msg_enable & NETIF_MSG_RX_ERR)
4033 #define netif_msg_tx_err(p)     ((p)->msg_enable & NETIF_MSG_TX_ERR)
4034 #define netif_msg_tx_queued(p)  ((p)->msg_enable & NETIF_MSG_TX_QUEUED)
4035 #define netif_msg_intr(p)       ((p)->msg_enable & NETIF_MSG_INTR)
4036 #define netif_msg_tx_done(p)    ((p)->msg_enable & NETIF_MSG_TX_DONE)
4037 #define netif_msg_rx_status(p)  ((p)->msg_enable & NETIF_MSG_RX_STATUS)
4038 #define netif_msg_pktdata(p)    ((p)->msg_enable & NETIF_MSG_PKTDATA)
4039 #define netif_msg_hw(p)         ((p)->msg_enable & NETIF_MSG_HW)
4040 #define netif_msg_wol(p)        ((p)->msg_enable & NETIF_MSG_WOL)
4041
4042 static inline u32 netif_msg_init(int debug_value, int default_msg_enable_bits)
4043 {
4044         /* use default */
4045         if (debug_value < 0 || debug_value >= (sizeof(u32) * 8))
4046                 return default_msg_enable_bits;
4047         if (debug_value == 0)   /* no output */
4048                 return 0;
4049         /* set low N bits */
4050         return (1U << debug_value) - 1;
4051 }
4052
4053 static inline void __netif_tx_lock(struct netdev_queue *txq, int cpu)
4054 {
4055         spin_lock(&txq->_xmit_lock);
4056         txq->xmit_lock_owner = cpu;
4057 }
4058
4059 static inline bool __netif_tx_acquire(struct netdev_queue *txq)
4060 {
4061         __acquire(&txq->_xmit_lock);
4062         return true;
4063 }
4064
4065 static inline void __netif_tx_release(struct netdev_queue *txq)
4066 {
4067         __release(&txq->_xmit_lock);
4068 }
4069
4070 static inline void __netif_tx_lock_bh(struct netdev_queue *txq)
4071 {
4072         spin_lock_bh(&txq->_xmit_lock);
4073         txq->xmit_lock_owner = smp_processor_id();
4074 }
4075
4076 static inline bool __netif_tx_trylock(struct netdev_queue *txq)
4077 {
4078         bool ok = spin_trylock(&txq->_xmit_lock);
4079         if (likely(ok))
4080                 txq->xmit_lock_owner = smp_processor_id();
4081         return ok;
4082 }
4083
4084 static inline void __netif_tx_unlock(struct netdev_queue *txq)
4085 {
4086         txq->xmit_lock_owner = -1;
4087         spin_unlock(&txq->_xmit_lock);
4088 }
4089
4090 static inline void __netif_tx_unlock_bh(struct netdev_queue *txq)
4091 {
4092         txq->xmit_lock_owner = -1;
4093         spin_unlock_bh(&txq->_xmit_lock);
4094 }
4095
4096 static inline void txq_trans_update(struct netdev_queue *txq)
4097 {
4098         if (txq->xmit_lock_owner != -1)
4099                 txq->trans_start = jiffies;
4100 }
4101
4102 /* legacy drivers only, netdev_start_xmit() sets txq->trans_start */
4103 static inline void netif_trans_update(struct net_device *dev)
4104 {
4105         struct netdev_queue *txq = netdev_get_tx_queue(dev, 0);
4106
4107         if (txq->trans_start != jiffies)
4108                 txq->trans_start = jiffies;
4109 }
4110
4111 /**
4112  *      netif_tx_lock - grab network device transmit lock
4113  *      @dev: network device
4114  *
4115  * Get network device transmit lock
4116  */
4117 static inline void netif_tx_lock(struct net_device *dev)
4118 {
4119         unsigned int i;
4120         int cpu;
4121
4122         spin_lock(&dev->tx_global_lock);
4123         cpu = smp_processor_id();
4124         for (i = 0; i < dev->num_tx_queues; i++) {
4125                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
4126
4127                 /* We are the only thread of execution doing a
4128                  * freeze, but we have to grab the _xmit_lock in
4129                  * order to synchronize with threads which are in
4130                  * the ->hard_start_xmit() handler and already
4131                  * checked the frozen bit.
4132                  */
4133                 __netif_tx_lock(txq, cpu);
4134                 set_bit(__QUEUE_STATE_FROZEN, &txq->state);
4135                 __netif_tx_unlock(txq);
4136         }
4137 }
4138
4139 static inline void netif_tx_lock_bh(struct net_device *dev)
4140 {
4141         local_bh_disable();
4142         netif_tx_lock(dev);
4143 }
4144
4145 static inline void netif_tx_unlock(struct net_device *dev)
4146 {
4147         unsigned int i;
4148
4149         for (i = 0; i < dev->num_tx_queues; i++) {
4150                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
4151
4152                 /* No need to grab the _xmit_lock here.  If the
4153                  * queue is not stopped for another reason, we
4154                  * force a schedule.
4155                  */
4156                 clear_bit(__QUEUE_STATE_FROZEN, &txq->state);
4157                 netif_schedule_queue(txq);
4158         }
4159         spin_unlock(&dev->tx_global_lock);
4160 }
4161
4162 static inline void netif_tx_unlock_bh(struct net_device *dev)
4163 {
4164         netif_tx_unlock(dev);
4165         local_bh_enable();
4166 }
4167
4168 #define HARD_TX_LOCK(dev, txq, cpu) {                   \
4169         if ((dev->features & NETIF_F_LLTX) == 0) {      \
4170                 __netif_tx_lock(txq, cpu);              \
4171         } else {                                        \
4172                 __netif_tx_acquire(txq);                \
4173         }                                               \
4174 }
4175
4176 #define HARD_TX_TRYLOCK(dev, txq)                       \
4177         (((dev->features & NETIF_F_LLTX) == 0) ?        \
4178                 __netif_tx_trylock(txq) :               \
4179                 __netif_tx_acquire(txq))
4180
4181 #define HARD_TX_UNLOCK(dev, txq) {                      \
4182         if ((dev->features & NETIF_F_LLTX) == 0) {      \
4183                 __netif_tx_unlock(txq);                 \
4184         } else {                                        \
4185                 __netif_tx_release(txq);                \
4186         }                                               \
4187 }
4188
4189 static inline void netif_tx_disable(struct net_device *dev)
4190 {
4191         unsigned int i;
4192         int cpu;
4193
4194         local_bh_disable();
4195         cpu = smp_processor_id();
4196         for (i = 0; i < dev->num_tx_queues; i++) {
4197                 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
4198
4199                 __netif_tx_lock(txq, cpu);
4200                 netif_tx_stop_queue(txq);
4201                 __netif_tx_unlock(txq);
4202         }
4203         local_bh_enable();
4204 }
4205
4206 static inline void netif_addr_lock(struct net_device *dev)
4207 {
4208         spin_lock(&dev->addr_list_lock);
4209 }
4210
4211 static inline void netif_addr_lock_bh(struct net_device *dev)
4212 {
4213         spin_lock_bh(&dev->addr_list_lock);
4214 }
4215
4216 static inline void netif_addr_unlock(struct net_device *dev)
4217 {
4218         spin_unlock(&dev->addr_list_lock);
4219 }
4220
4221 static inline void netif_addr_unlock_bh(struct net_device *dev)
4222 {
4223         spin_unlock_bh(&dev->addr_list_lock);
4224 }
4225
4226 /*
4227  * dev_addrs walker. Should be used only for read access. Call with
4228  * rcu_read_lock held.
4229  */
4230 #define for_each_dev_addr(dev, ha) \
4231                 list_for_each_entry_rcu(ha, &dev->dev_addrs.list, list)
4232
4233 /* These functions live elsewhere (drivers/net/net_init.c, but related) */
4234
4235 void ether_setup(struct net_device *dev);
4236
4237 /* Support for loadable net-drivers */
4238 struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
4239                                     unsigned char name_assign_type,
4240                                     void (*setup)(struct net_device *),
4241                                     unsigned int txqs, unsigned int rxqs);
4242 #define alloc_netdev(sizeof_priv, name, name_assign_type, setup) \
4243         alloc_netdev_mqs(sizeof_priv, name, name_assign_type, setup, 1, 1)
4244
4245 #define alloc_netdev_mq(sizeof_priv, name, name_assign_type, setup, count) \
4246         alloc_netdev_mqs(sizeof_priv, name, name_assign_type, setup, count, \
4247                          count)
4248
4249 int register_netdev(struct net_device *dev);
4250 void unregister_netdev(struct net_device *dev);
4251
4252 /* General hardware address lists handling functions */
4253 int __hw_addr_sync(struct netdev_hw_addr_list *to_list,
4254                    struct netdev_hw_addr_list *from_list, int addr_len);
4255 void __hw_addr_unsync(struct netdev_hw_addr_list *to_list,
4256                       struct netdev_hw_addr_list *from_list, int addr_len);
4257 int __hw_addr_sync_dev(struct netdev_hw_addr_list *list,
4258                        struct net_device *dev,
4259                        int (*sync)(struct net_device *, const unsigned char *),
4260                        int (*unsync)(struct net_device *,
4261                                      const unsigned char *));
4262 int __hw_addr_ref_sync_dev(struct netdev_hw_addr_list *list,
4263                            struct net_device *dev,
4264                            int (*sync)(struct net_device *,
4265                                        const unsigned char *, int),
4266                            int (*unsync)(struct net_device *,
4267                                          const unsigned char *, int));
4268 void __hw_addr_ref_unsync_dev(struct netdev_hw_addr_list *list,
4269                               struct net_device *dev,
4270                               int (*unsync)(struct net_device *,
4271                                             const unsigned char *, int));
4272 void __hw_addr_unsync_dev(struct netdev_hw_addr_list *list,
4273                           struct net_device *dev,
4274                           int (*unsync)(struct net_device *,
4275                                         const unsigned char *));
4276 void __hw_addr_init(struct netdev_hw_addr_list *list);
4277
4278 /* Functions used for device addresses handling */
4279 int dev_addr_add(struct net_device *dev, const unsigned char *addr,
4280                  unsigned char addr_type);
4281 int dev_addr_del(struct net_device *dev, const unsigned char *addr,
4282                  unsigned char addr_type);
4283 void dev_addr_flush(struct net_device *dev);
4284 int dev_addr_init(struct net_device *dev);
4285
4286 /* Functions used for unicast addresses handling */
4287 int dev_uc_add(struct net_device *dev, const unsigned char *addr);
4288 int dev_uc_add_excl(struct net_device *dev, const unsigned char *addr);
4289 int dev_uc_del(struct net_device *dev, const unsigned char *addr);
4290 int dev_uc_sync(struct net_device *to, struct net_device *from);
4291 int dev_uc_sync_multiple(struct net_device *to, struct net_device *from);
4292 void dev_uc_unsync(struct net_device *to, struct net_device *from);
4293 void dev_uc_flush(struct net_device *dev);
4294 void dev_uc_init(struct net_device *dev);
4295
4296 /**
4297  *  __dev_uc_sync - Synchonize device's unicast list
4298  *  @dev:  device to sync
4299  *  @sync: function to call if address should be added
4300  *  @unsync: function to call if address should be removed
4301  *
4302  *  Add newly added addresses to the interface, and release
4303  *  addresses that have been deleted.
4304  */
4305 static inline int __dev_uc_sync(struct net_device *dev,
4306                                 int (*sync)(struct net_device *,
4307                                             const unsigned char *),
4308                                 int (*unsync)(struct net_device *,
4309                                               const unsigned char *))
4310 {
4311         return __hw_addr_sync_dev(&dev->uc, dev, sync, unsync);
4312 }
4313
4314 /**
4315  *  __dev_uc_unsync - Remove synchronized addresses from device
4316  *  @dev:  device to sync
4317  *  @unsync: function to call if address should be removed
4318  *
4319  *  Remove all addresses that were added to the device by dev_uc_sync().
4320  */
4321 static inline void __dev_uc_unsync(struct net_device *dev,
4322                                    int (*unsync)(struct net_device *,
4323                                                  const unsigned char *))
4324 {
4325         __hw_addr_unsync_dev(&dev->uc, dev, unsync);
4326 }
4327
4328 /* Functions used for multicast addresses handling */
4329 int dev_mc_add(struct net_device *dev, const unsigned char *addr);
4330 int dev_mc_add_global(struct net_device *dev, const unsigned char *addr);
4331 int dev_mc_add_excl(struct net_device *dev, const unsigned char *addr);
4332 int dev_mc_del(struct net_device *dev, const unsigned char *addr);
4333 int dev_mc_del_global(struct net_device *dev, const unsigned char *addr);
4334 int dev_mc_sync(struct net_device *to, struct net_device *from);
4335 int dev_mc_sync_multiple(struct net_device *to, struct net_device *from);
4336 void dev_mc_unsync(struct net_device *to, struct net_device *from);
4337 void dev_mc_flush(struct net_device *dev);
4338 void dev_mc_init(struct net_device *dev);
4339
4340 /**
4341  *  __dev_mc_sync - Synchonize device's multicast list
4342  *  @dev:  device to sync
4343  *  @sync: function to call if address should be added
4344  *  @unsync: function to call if address should be removed
4345  *
4346  *  Add newly added addresses to the interface, and release
4347  *  addresses that have been deleted.
4348  */
4349 static inline int __dev_mc_sync(struct net_device *dev,
4350                                 int (*sync)(struct net_device *,
4351                                             const unsigned char *),
4352                                 int (*unsync)(struct net_device *,
4353                                               const unsigned char *))
4354 {
4355         return __hw_addr_sync_dev(&dev->mc, dev, sync, unsync);
4356 }
4357
4358 /**
4359  *  __dev_mc_unsync - Remove synchronized addresses from device
4360  *  @dev:  device to sync
4361  *  @unsync: function to call if address should be removed
4362  *
4363  *  Remove all addresses that were added to the device by dev_mc_sync().
4364  */
4365 static inline void __dev_mc_unsync(struct net_device *dev,
4366                                    int (*unsync)(struct net_device *,
4367                                                  const unsigned char *))
4368 {
4369         __hw_addr_unsync_dev(&dev->mc, dev, unsync);
4370 }
4371
4372 /* Functions used for secondary unicast and multicast support */
4373 void dev_set_rx_mode(struct net_device *dev);
4374 void __dev_set_rx_mode(struct net_device *dev);
4375 int dev_set_promiscuity(struct net_device *dev, int inc);
4376 int dev_set_allmulti(struct net_device *dev, int inc);
4377 void netdev_state_change(struct net_device *dev);
4378 void netdev_notify_peers(struct net_device *dev);
4379 void netdev_features_change(struct net_device *dev);
4380 /* Load a device via the kmod */
4381 void dev_load(struct net *net, const char *name);
4382 struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
4383                                         struct rtnl_link_stats64 *storage);
4384 void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
4385                              const struct net_device_stats *netdev_stats);
4386
4387 extern int              netdev_max_backlog;
4388 extern int              netdev_tstamp_prequeue;
4389 extern int              weight_p;
4390 extern int              dev_weight_rx_bias;
4391 extern int              dev_weight_tx_bias;
4392 extern int              dev_rx_weight;
4393 extern int              dev_tx_weight;
4394 extern int              gro_normal_batch;
4395
4396 bool netdev_has_upper_dev(struct net_device *dev, struct net_device *upper_dev);
4397 struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4398                                                      struct list_head **iter);
4399 struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4400                                                      struct list_head **iter);
4401
4402 /* iterate through upper list, must be called under RCU read lock */
4403 #define netdev_for_each_upper_dev_rcu(dev, updev, iter) \
4404         for (iter = &(dev)->adj_list.upper, \
4405              updev = netdev_upper_get_next_dev_rcu(dev, &(iter)); \
4406              updev; \
4407              updev = netdev_upper_get_next_dev_rcu(dev, &(iter)))
4408
4409 int netdev_walk_all_upper_dev_rcu(struct net_device *dev,
4410                                   int (*fn)(struct net_device *upper_dev,
4411                                             void *data),
4412                                   void *data);
4413
4414 bool netdev_has_upper_dev_all_rcu(struct net_device *dev,
4415                                   struct net_device *upper_dev);
4416
4417 bool netdev_has_any_upper_dev(struct net_device *dev);
4418
4419 void *netdev_lower_get_next_private(struct net_device *dev,
4420                                     struct list_head **iter);
4421 void *netdev_lower_get_next_private_rcu(struct net_device *dev,
4422                                         struct list_head **iter);
4423
4424 #define netdev_for_each_lower_private(dev, priv, iter) \
4425         for (iter = (dev)->adj_list.lower.next, \
4426              priv = netdev_lower_get_next_private(dev, &(iter)); \
4427              priv; \
4428              priv = netdev_lower_get_next_private(dev, &(iter)))
4429
4430 #define netdev_for_each_lower_private_rcu(dev, priv, iter) \
4431         for (iter = &(dev)->adj_list.lower, \
4432              priv = netdev_lower_get_next_private_rcu(dev, &(iter)); \
4433              priv; \
4434              priv = netdev_lower_get_next_private_rcu(dev, &(iter)))
4435
4436 void *netdev_lower_get_next(struct net_device *dev,
4437                                 struct list_head **iter);
4438
4439 #define netdev_for_each_lower_dev(dev, ldev, iter) \
4440         for (iter = (dev)->adj_list.lower.next, \
4441              ldev = netdev_lower_get_next(dev, &(iter)); \
4442              ldev; \
4443              ldev = netdev_lower_get_next(dev, &(iter)))
4444
4445 struct net_device *netdev_next_lower_dev_rcu(struct net_device *dev,
4446                                              struct list_head **iter);
4447 int netdev_walk_all_lower_dev(struct net_device *dev,
4448                               int (*fn)(struct net_device *lower_dev,
4449                                         void *data),
4450                               void *data);
4451 int netdev_walk_all_lower_dev_rcu(struct net_device *dev,
4452                                   int (*fn)(struct net_device *lower_dev,
4453                                             void *data),
4454                                   void *data);
4455
4456 void *netdev_adjacent_get_private(struct list_head *adj_list);
4457 void *netdev_lower_get_first_private_rcu(struct net_device *dev);
4458 struct net_device *netdev_master_upper_dev_get(struct net_device *dev);
4459 struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev);
4460 int netdev_upper_dev_link(struct net_device *dev, struct net_device *upper_dev,
4461                           struct netlink_ext_ack *extack);
4462 int netdev_master_upper_dev_link(struct net_device *dev,
4463                                  struct net_device *upper_dev,
4464                                  void *upper_priv, void *upper_info,
4465                                  struct netlink_ext_ack *extack);
4466 void netdev_upper_dev_unlink(struct net_device *dev,
4467                              struct net_device *upper_dev);
4468 int netdev_adjacent_change_prepare(struct net_device *old_dev,
4469                                    struct net_device *new_dev,
4470                                    struct net_device *dev,
4471                                    struct netlink_ext_ack *extack);
4472 void netdev_adjacent_change_commit(struct net_device *old_dev,
4473                                    struct net_device *new_dev,
4474                                    struct net_device *dev);
4475 void netdev_adjacent_change_abort(struct net_device *old_dev,
4476                                   struct net_device *new_dev,
4477                                   struct net_device *dev);
4478 void netdev_adjacent_rename_links(struct net_device *dev, char *oldname);
4479 void *netdev_lower_dev_get_private(struct net_device *dev,
4480                                    struct net_device *lower_dev);
4481 void netdev_lower_state_changed(struct net_device *lower_dev,
4482                                 void *lower_state_info);
4483
4484 /* RSS keys are 40 or 52 bytes long */
4485 #define NETDEV_RSS_KEY_LEN 52
4486 extern u8 netdev_rss_key[NETDEV_RSS_KEY_LEN] __read_mostly;
4487 void netdev_rss_key_fill(void *buffer, size_t len);
4488
4489 int skb_checksum_help(struct sk_buff *skb);
4490 int skb_crc32c_csum_help(struct sk_buff *skb);
4491 int skb_csum_hwoffload_help(struct sk_buff *skb,
4492                             const netdev_features_t features);
4493
4494 struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
4495                                   netdev_features_t features, bool tx_path);
4496 struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
4497                                     netdev_features_t features);
4498
4499 struct netdev_bonding_info {
4500         ifslave slave;
4501         ifbond  master;
4502 };
4503
4504 struct netdev_notifier_bonding_info {
4505         struct netdev_notifier_info info; /* must be first */
4506         struct netdev_bonding_info  bonding_info;
4507 };
4508
4509 void netdev_bonding_info_change(struct net_device *dev,
4510                                 struct netdev_bonding_info *bonding_info);
4511
4512 #if IS_ENABLED(CONFIG_ETHTOOL_NETLINK)
4513 void ethtool_notify(struct net_device *dev, unsigned int cmd, const void *data);
4514 #else
4515 static inline void ethtool_notify(struct net_device *dev, unsigned int cmd,
4516                                   const void *data)
4517 {
4518 }
4519 #endif
4520
4521 static inline
4522 struct sk_buff *skb_gso_segment(struct sk_buff *skb, netdev_features_t features)
4523 {
4524         return __skb_gso_segment(skb, features, true);
4525 }
4526 __be16 skb_network_protocol(struct sk_buff *skb, int *depth);
4527
4528 static inline bool can_checksum_protocol(netdev_features_t features,
4529                                          __be16 protocol)
4530 {
4531         if (protocol == htons(ETH_P_FCOE))
4532                 return !!(features & NETIF_F_FCOE_CRC);
4533
4534         /* Assume this is an IP checksum (not SCTP CRC) */
4535
4536         if (features & NETIF_F_HW_CSUM) {
4537                 /* Can checksum everything */
4538                 return true;
4539         }
4540
4541         switch (protocol) {
4542         case htons(ETH_P_IP):
4543                 return !!(features & NETIF_F_IP_CSUM);
4544         case htons(ETH_P_IPV6):
4545                 return !!(features & NETIF_F_IPV6_CSUM);
4546         default:
4547                 return false;
4548         }
4549 }
4550
4551 #ifdef CONFIG_BUG
4552 void netdev_rx_csum_fault(struct net_device *dev, struct sk_buff *skb);
4553 #else
4554 static inline void netdev_rx_csum_fault(struct net_device *dev,
4555                                         struct sk_buff *skb)
4556 {
4557 }
4558 #endif
4559 /* rx skb timestamps */
4560 void net_enable_timestamp(void);
4561 void net_disable_timestamp(void);
4562
4563 #ifdef CONFIG_PROC_FS
4564 int __init dev_proc_init(void);
4565 #else
4566 #define dev_proc_init() 0
4567 #endif
4568
4569 static inline netdev_tx_t __netdev_start_xmit(const struct net_device_ops *ops,
4570                                               struct sk_buff *skb, struct net_device *dev,
4571                                               bool more)
4572 {
4573         __this_cpu_write(softnet_data.xmit.more, more);
4574         return ops->ndo_start_xmit(skb, dev);
4575 }
4576
4577 static inline bool netdev_xmit_more(void)
4578 {
4579         return __this_cpu_read(softnet_data.xmit.more);
4580 }
4581
4582 static inline netdev_tx_t netdev_start_xmit(struct sk_buff *skb, struct net_device *dev,
4583                                             struct netdev_queue *txq, bool more)
4584 {
4585         const struct net_device_ops *ops = dev->netdev_ops;
4586         netdev_tx_t rc;
4587
4588         rc = __netdev_start_xmit(ops, skb, dev, more);
4589         if (rc == NETDEV_TX_OK)
4590                 txq_trans_update(txq);
4591
4592         return rc;
4593 }
4594
4595 int netdev_class_create_file_ns(const struct class_attribute *class_attr,
4596                                 const void *ns);
4597 void netdev_class_remove_file_ns(const struct class_attribute *class_attr,
4598                                  const void *ns);
4599
4600 static inline int netdev_class_create_file(const struct class_attribute *class_attr)
4601 {
4602         return netdev_class_create_file_ns(class_attr, NULL);
4603 }
4604
4605 static inline void netdev_class_remove_file(const struct class_attribute *class_attr)
4606 {
4607         netdev_class_remove_file_ns(class_attr, NULL);
4608 }
4609
4610 extern const struct kobj_ns_type_operations net_ns_type_operations;
4611
4612 const char *netdev_drivername(const struct net_device *dev);
4613
4614 void linkwatch_run_queue(void);
4615
4616 static inline netdev_features_t netdev_intersect_features(netdev_features_t f1,
4617                                                           netdev_features_t f2)
4618 {
4619         if ((f1 ^ f2) & NETIF_F_HW_CSUM) {
4620                 if (f1 & NETIF_F_HW_CSUM)
4621                         f1 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
4622                 else
4623                         f2 |= (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
4624         }
4625
4626         return f1 & f2;
4627 }
4628
4629 static inline netdev_features_t netdev_get_wanted_features(
4630         struct net_device *dev)
4631 {
4632         return (dev->features & ~dev->hw_features) | dev->wanted_features;
4633 }
4634 netdev_features_t netdev_increment_features(netdev_features_t all,
4635         netdev_features_t one, netdev_features_t mask);
4636
4637 /* Allow TSO being used on stacked device :
4638  * Performing the GSO segmentation before last device
4639  * is a performance improvement.
4640  */
4641 static inline netdev_features_t netdev_add_tso_features(netdev_features_t features,
4642                                                         netdev_features_t mask)
4643 {
4644         return netdev_increment_features(features, NETIF_F_ALL_TSO, mask);
4645 }
4646
4647 int __netdev_update_features(struct net_device *dev);
4648 void netdev_update_features(struct net_device *dev);
4649 void netdev_change_features(struct net_device *dev);
4650
4651 void netif_stacked_transfer_operstate(const struct net_device *rootdev,
4652                                         struct net_device *dev);
4653
4654 netdev_features_t passthru_features_check(struct sk_buff *skb,
4655                                           struct net_device *dev,
4656                                           netdev_features_t features);
4657 netdev_features_t netif_skb_features(struct sk_buff *skb);
4658
4659 static inline bool net_gso_ok(netdev_features_t features, int gso_type)
4660 {
4661         netdev_features_t feature = (netdev_features_t)gso_type << NETIF_F_GSO_SHIFT;
4662
4663         /* check flags correspondence */
4664         BUILD_BUG_ON(SKB_GSO_TCPV4   != (NETIF_F_TSO >> NETIF_F_GSO_SHIFT));
4665         BUILD_BUG_ON(SKB_GSO_DODGY   != (NETIF_F_GSO_ROBUST >> NETIF_F_GSO_SHIFT));
4666         BUILD_BUG_ON(SKB_GSO_TCP_ECN != (NETIF_F_TSO_ECN >> NETIF_F_GSO_SHIFT));
4667         BUILD_BUG_ON(SKB_GSO_TCP_FIXEDID != (NETIF_F_TSO_MANGLEID >> NETIF_F_GSO_SHIFT));
4668         BUILD_BUG_ON(SKB_GSO_TCPV6   != (NETIF_F_TSO6 >> NETIF_F_GSO_SHIFT));
4669         BUILD_BUG_ON(SKB_GSO_FCOE    != (NETIF_F_FSO >> NETIF_F_GSO_SHIFT));
4670         BUILD_BUG_ON(SKB_GSO_GRE     != (NETIF_F_GSO_GRE >> NETIF_F_GSO_SHIFT));
4671         BUILD_BUG_ON(SKB_GSO_GRE_CSUM != (NETIF_F_GSO_GRE_CSUM >> NETIF_F_GSO_SHIFT));
4672         BUILD_BUG_ON(SKB_GSO_IPXIP4  != (NETIF_F_GSO_IPXIP4 >> NETIF_F_GSO_SHIFT));
4673         BUILD_BUG_ON(SKB_GSO_IPXIP6  != (NETIF_F_GSO_IPXIP6 >> NETIF_F_GSO_SHIFT));
4674         BUILD_BUG_ON(SKB_GSO_UDP_TUNNEL != (NETIF_F_GSO_UDP_TUNNEL >> NETIF_F_GSO_SHIFT));
4675         BUILD_BUG_ON(SKB_GSO_UDP_TUNNEL_CSUM != (NETIF_F_GSO_UDP_TUNNEL_CSUM >> NETIF_F_GSO_SHIFT));
4676         BUILD_BUG_ON(SKB_GSO_PARTIAL != (NETIF_F_GSO_PARTIAL >> NETIF_F_GSO_SHIFT));
4677         BUILD_BUG_ON(SKB_GSO_TUNNEL_REMCSUM != (NETIF_F_GSO_TUNNEL_REMCSUM >> NETIF_F_GSO_SHIFT));
4678         BUILD_BUG_ON(SKB_GSO_SCTP    != (NETIF_F_GSO_SCTP >> NETIF_F_GSO_SHIFT));
4679         BUILD_BUG_ON(SKB_GSO_ESP != (NETIF_F_GSO_ESP >> NETIF_F_GSO_SHIFT));
4680         BUILD_BUG_ON(SKB_GSO_UDP != (NETIF_F_GSO_UDP >> NETIF_F_GSO_SHIFT));
4681         BUILD_BUG_ON(SKB_GSO_UDP_L4 != (NETIF_F_GSO_UDP_L4 >> NETIF_F_GSO_SHIFT));
4682         BUILD_BUG_ON(SKB_GSO_FRAGLIST != (NETIF_F_GSO_FRAGLIST >> NETIF_F_GSO_SHIFT));
4683
4684         return (features & feature) == feature;
4685 }
4686
4687 static inline bool skb_gso_ok(struct sk_buff *skb, netdev_features_t features)
4688 {
4689         return net_gso_ok(features, skb_shinfo(skb)->gso_type) &&
4690                (!skb_has_frag_list(skb) || (features & NETIF_F_FRAGLIST));
4691 }
4692
4693 static inline bool netif_needs_gso(struct sk_buff *skb,
4694                                    netdev_features_t features)
4695 {
4696         return skb_is_gso(skb) && (!skb_gso_ok(skb, features) ||
4697                 unlikely((skb->ip_summed != CHECKSUM_PARTIAL) &&
4698                          (skb->ip_summed != CHECKSUM_UNNECESSARY)));
4699 }
4700
4701 static inline void netif_set_gso_max_size(struct net_device *dev,
4702                                           unsigned int size)
4703 {
4704         dev->gso_max_size = size;
4705 }
4706
4707 static inline void skb_gso_error_unwind(struct sk_buff *skb, __be16 protocol,
4708                                         int pulled_hlen, u16 mac_offset,
4709                                         int mac_len)
4710 {
4711         skb->protocol = protocol;
4712         skb->encapsulation = 1;
4713         skb_push(skb, pulled_hlen);
4714         skb_reset_transport_header(skb);
4715         skb->mac_header = mac_offset;
4716         skb->network_header = skb->mac_header + mac_len;
4717         skb->mac_len = mac_len;
4718 }
4719
4720 static inline bool netif_is_macsec(const struct net_device *dev)
4721 {
4722         return dev->priv_flags & IFF_MACSEC;
4723 }
4724
4725 static inline bool netif_is_macvlan(const struct net_device *dev)
4726 {
4727         return dev->priv_flags & IFF_MACVLAN;
4728 }
4729
4730 static inline bool netif_is_macvlan_port(const struct net_device *dev)
4731 {
4732         return dev->priv_flags & IFF_MACVLAN_PORT;
4733 }
4734
4735 static inline bool netif_is_bond_master(const struct net_device *dev)
4736 {
4737         return dev->flags & IFF_MASTER && dev->priv_flags & IFF_BONDING;
4738 }
4739
4740 static inline bool netif_is_bond_slave(const struct net_device *dev)
4741 {
4742         return dev->flags & IFF_SLAVE && dev->priv_flags & IFF_BONDING;
4743 }
4744
4745 static inline bool netif_supports_nofcs(struct net_device *dev)
4746 {
4747         return dev->priv_flags & IFF_SUPP_NOFCS;
4748 }
4749
4750 static inline bool netif_has_l3_rx_handler(const struct net_device *dev)
4751 {
4752         return dev->priv_flags & IFF_L3MDEV_RX_HANDLER;
4753 }
4754
4755 static inline bool netif_is_l3_master(const struct net_device *dev)
4756 {
4757         return dev->priv_flags & IFF_L3MDEV_MASTER;
4758 }
4759
4760 static inline bool netif_is_l3_slave(const struct net_device *dev)
4761 {
4762         return dev->priv_flags & IFF_L3MDEV_SLAVE;
4763 }
4764
4765 static inline bool netif_is_bridge_master(const struct net_device *dev)
4766 {
4767         return dev->priv_flags & IFF_EBRIDGE;
4768 }
4769
4770 static inline bool netif_is_bridge_port(const struct net_device *dev)
4771 {
4772         return dev->priv_flags & IFF_BRIDGE_PORT;
4773 }
4774
4775 static inline bool netif_is_ovs_master(const struct net_device *dev)
4776 {
4777         return dev->priv_flags & IFF_OPENVSWITCH;
4778 }
4779
4780 static inline bool netif_is_ovs_port(const struct net_device *dev)
4781 {
4782         return dev->priv_flags & IFF_OVS_DATAPATH;
4783 }
4784
4785 static inline bool netif_is_team_master(const struct net_device *dev)
4786 {
4787         return dev->priv_flags & IFF_TEAM;
4788 }
4789
4790 static inline bool netif_is_team_port(const struct net_device *dev)
4791 {
4792         return dev->priv_flags & IFF_TEAM_PORT;
4793 }
4794
4795 static inline bool netif_is_lag_master(const struct net_device *dev)
4796 {
4797         return netif_is_bond_master(dev) || netif_is_team_master(dev);
4798 }
4799
4800 static inline bool netif_is_lag_port(const struct net_device *dev)
4801 {
4802         return netif_is_bond_slave(dev) || netif_is_team_port(dev);
4803 }
4804
4805 static inline bool netif_is_rxfh_configured(const struct net_device *dev)
4806 {
4807         return dev->priv_flags & IFF_RXFH_CONFIGURED;
4808 }
4809
4810 static inline bool netif_is_failover(const struct net_device *dev)
4811 {
4812         return dev->priv_flags & IFF_FAILOVER;
4813 }
4814
4815 static inline bool netif_is_failover_slave(const struct net_device *dev)
4816 {
4817         return dev->priv_flags & IFF_FAILOVER_SLAVE;
4818 }
4819
4820 /* This device needs to keep skb dst for qdisc enqueue or ndo_start_xmit() */
4821 static inline void netif_keep_dst(struct net_device *dev)
4822 {
4823         dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM);
4824 }
4825
4826 /* return true if dev can't cope with mtu frames that need vlan tag insertion */
4827 static inline bool netif_reduces_vlan_mtu(struct net_device *dev)
4828 {
4829         /* TODO: reserve and use an additional IFF bit, if we get more users */
4830         return dev->priv_flags & IFF_MACSEC;
4831 }
4832
4833 extern struct pernet_operations __net_initdata loopback_net_ops;
4834
4835 /* Logging, debugging and troubleshooting/diagnostic helpers. */
4836
4837 /* netdev_printk helpers, similar to dev_printk */
4838
4839 static inline const char *netdev_name(const struct net_device *dev)
4840 {
4841         if (!dev->name[0] || strchr(dev->name, '%'))
4842                 return "(unnamed net_device)";
4843         return dev->name;
4844 }
4845
4846 static inline bool netdev_unregistering(const struct net_device *dev)
4847 {
4848         return dev->reg_state == NETREG_UNREGISTERING;
4849 }
4850
4851 static inline const char *netdev_reg_state(const struct net_device *dev)
4852 {
4853         switch (dev->reg_state) {
4854         case NETREG_UNINITIALIZED: return " (uninitialized)";
4855         case NETREG_REGISTERED: return "";
4856         case NETREG_UNREGISTERING: return " (unregistering)";
4857         case NETREG_UNREGISTERED: return " (unregistered)";
4858         case NETREG_RELEASED: return " (released)";
4859         case NETREG_DUMMY: return " (dummy)";
4860         }
4861
4862         WARN_ONCE(1, "%s: unknown reg_state %d\n", dev->name, dev->reg_state);
4863         return " (unknown)";
4864 }
4865
4866 __printf(3, 4) __cold
4867 void netdev_printk(const char *level, const struct net_device *dev,
4868                    const char *format, ...);
4869 __printf(2, 3) __cold
4870 void netdev_emerg(const struct net_device *dev, const char *format, ...);
4871 __printf(2, 3) __cold
4872 void netdev_alert(const struct net_device *dev, const char *format, ...);
4873 __printf(2, 3) __cold
4874 void netdev_crit(const struct net_device *dev, const char *format, ...);
4875 __printf(2, 3) __cold
4876 void netdev_err(const struct net_device *dev, const char *format, ...);
4877 __printf(2, 3) __cold
4878 void netdev_warn(const struct net_device *dev, const char *format, ...);
4879 __printf(2, 3) __cold
4880 void netdev_notice(const struct net_device *dev, const char *format, ...);
4881 __printf(2, 3) __cold
4882 void netdev_info(const struct net_device *dev, const char *format, ...);
4883
4884 #define netdev_level_once(level, dev, fmt, ...)                 \
4885 do {                                                            \
4886         static bool __print_once __read_mostly;                 \
4887                                                                 \
4888         if (!__print_once) {                                    \
4889                 __print_once = true;                            \
4890                 netdev_printk(level, dev, fmt, ##__VA_ARGS__);  \
4891         }                                                       \
4892 } while (0)
4893
4894 #define netdev_emerg_once(dev, fmt, ...) \
4895         netdev_level_once(KERN_EMERG, dev, fmt, ##__VA_ARGS__)
4896 #define netdev_alert_once(dev, fmt, ...) \
4897         netdev_level_once(KERN_ALERT, dev, fmt, ##__VA_ARGS__)
4898 #define netdev_crit_once(dev, fmt, ...) \
4899         netdev_level_once(KERN_CRIT, dev, fmt, ##__VA_ARGS__)
4900 #define netdev_err_once(dev, fmt, ...) \
4901         netdev_level_once(KERN_ERR, dev, fmt, ##__VA_ARGS__)
4902 #define netdev_warn_once(dev, fmt, ...) \
4903         netdev_level_once(KERN_WARNING, dev, fmt, ##__VA_ARGS__)
4904 #define netdev_notice_once(dev, fmt, ...) \
4905         netdev_level_once(KERN_NOTICE, dev, fmt, ##__VA_ARGS__)
4906 #define netdev_info_once(dev, fmt, ...) \
4907         netdev_level_once(KERN_INFO, dev, fmt, ##__VA_ARGS__)
4908
4909 #define MODULE_ALIAS_NETDEV(device) \
4910         MODULE_ALIAS("netdev-" device)
4911
4912 #if defined(CONFIG_DYNAMIC_DEBUG)
4913 #define netdev_dbg(__dev, format, args...)                      \
4914 do {                                                            \
4915         dynamic_netdev_dbg(__dev, format, ##args);              \
4916 } while (0)
4917 #elif defined(DEBUG)
4918 #define netdev_dbg(__dev, format, args...)                      \
4919         netdev_printk(KERN_DEBUG, __dev, format, ##args)
4920 #else
4921 #define netdev_dbg(__dev, format, args...)                      \
4922 ({                                                              \
4923         if (0)                                                  \
4924                 netdev_printk(KERN_DEBUG, __dev, format, ##args); \
4925 })
4926 #endif
4927
4928 #if defined(VERBOSE_DEBUG)
4929 #define netdev_vdbg     netdev_dbg
4930 #else
4931
4932 #define netdev_vdbg(dev, format, args...)                       \
4933 ({                                                              \
4934         if (0)                                                  \
4935                 netdev_printk(KERN_DEBUG, dev, format, ##args); \
4936         0;                                                      \
4937 })
4938 #endif
4939
4940 /*
4941  * netdev_WARN() acts like dev_printk(), but with the key difference
4942  * of using a WARN/WARN_ON to get the message out, including the
4943  * file/line information and a backtrace.
4944  */
4945 #define netdev_WARN(dev, format, args...)                       \
4946         WARN(1, "netdevice: %s%s: " format, netdev_name(dev),   \
4947              netdev_reg_state(dev), ##args)
4948
4949 #define netdev_WARN_ONCE(dev, format, args...)                          \
4950         WARN_ONCE(1, "netdevice: %s%s: " format, netdev_name(dev),      \
4951                   netdev_reg_state(dev), ##args)
4952
4953 /* netif printk helpers, similar to netdev_printk */
4954
4955 #define netif_printk(priv, type, level, dev, fmt, args...)      \
4956 do {                                                            \
4957         if (netif_msg_##type(priv))                             \
4958                 netdev_printk(level, (dev), fmt, ##args);       \
4959 } while (0)
4960
4961 #define netif_level(level, priv, type, dev, fmt, args...)       \
4962 do {                                                            \
4963         if (netif_msg_##type(priv))                             \
4964                 netdev_##level(dev, fmt, ##args);               \
4965 } while (0)
4966
4967 #define netif_emerg(priv, type, dev, fmt, args...)              \
4968         netif_level(emerg, priv, type, dev, fmt, ##args)
4969 #define netif_alert(priv, type, dev, fmt, args...)              \
4970         netif_level(alert, priv, type, dev, fmt, ##args)
4971 #define netif_crit(priv, type, dev, fmt, args...)               \
4972         netif_level(crit, priv, type, dev, fmt, ##args)
4973 #define netif_err(priv, type, dev, fmt, args...)                \
4974         netif_level(err, priv, type, dev, fmt, ##args)
4975 #define netif_warn(priv, type, dev, fmt, args...)               \
4976         netif_level(warn, priv, type, dev, fmt, ##args)
4977 #define netif_notice(priv, type, dev, fmt, args...)             \
4978         netif_level(notice, priv, type, dev, fmt, ##args)
4979 #define netif_info(priv, type, dev, fmt, args...)               \
4980         netif_level(info, priv, type, dev, fmt, ##args)
4981
4982 #if defined(CONFIG_DYNAMIC_DEBUG)
4983 #define netif_dbg(priv, type, netdev, format, args...)          \
4984 do {                                                            \
4985         if (netif_msg_##type(priv))                             \
4986                 dynamic_netdev_dbg(netdev, format, ##args);     \
4987 } while (0)
4988 #elif defined(DEBUG)
4989 #define netif_dbg(priv, type, dev, format, args...)             \
4990         netif_printk(priv, type, KERN_DEBUG, dev, format, ##args)
4991 #else
4992 #define netif_dbg(priv, type, dev, format, args...)                     \
4993 ({                                                                      \
4994         if (0)                                                          \
4995                 netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
4996         0;                                                              \
4997 })
4998 #endif
4999
5000 /* if @cond then downgrade to debug, else print at @level */
5001 #define netif_cond_dbg(priv, type, netdev, cond, level, fmt, args...)     \
5002         do {                                                              \
5003                 if (cond)                                                 \
5004                         netif_dbg(priv, type, netdev, fmt, ##args);       \
5005                 else                                                      \
5006                         netif_ ## level(priv, type, netdev, fmt, ##args); \
5007         } while (0)
5008
5009 #if defined(VERBOSE_DEBUG)
5010 #define netif_vdbg      netif_dbg
5011 #else
5012 #define netif_vdbg(priv, type, dev, format, args...)            \
5013 ({                                                              \
5014         if (0)                                                  \
5015                 netif_printk(priv, type, KERN_DEBUG, dev, format, ##args); \
5016         0;                                                      \
5017 })
5018 #endif
5019
5020 /*
5021  *      The list of packet types we will receive (as opposed to discard)
5022  *      and the routines to invoke.
5023  *
5024  *      Why 16. Because with 16 the only overlap we get on a hash of the
5025  *      low nibble of the protocol value is RARP/SNAP/X.25.
5026  *
5027  *              0800    IP
5028  *              0001    802.3
5029  *              0002    AX.25
5030  *              0004    802.2
5031  *              8035    RARP
5032  *              0005    SNAP
5033  *              0805    X.25
5034  *              0806    ARP
5035  *              8137    IPX
5036  *              0009    Localtalk
5037  *              86DD    IPv6
5038  */
5039 #define PTYPE_HASH_SIZE (16)
5040 #define PTYPE_HASH_MASK (PTYPE_HASH_SIZE - 1)
5041
5042 extern struct net_device *blackhole_netdev;
5043
5044 #endif  /* _LINUX_NETDEVICE_H */