GNU Linux-libre 5.15.131-gnu
[releases.git] / include / linux / skbuff.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  *      Definitions for the 'struct sk_buff' memory handlers.
4  *
5  *      Authors:
6  *              Alan Cox, <gw4pts@gw4pts.ampr.org>
7  *              Florian La Roche, <rzsfl@rz.uni-sb.de>
8  */
9
10 #ifndef _LINUX_SKBUFF_H
11 #define _LINUX_SKBUFF_H
12
13 #include <linux/kernel.h>
14 #include <linux/compiler.h>
15 #include <linux/time.h>
16 #include <linux/bug.h>
17 #include <linux/bvec.h>
18 #include <linux/cache.h>
19 #include <linux/rbtree.h>
20 #include <linux/socket.h>
21 #include <linux/refcount.h>
22
23 #include <linux/atomic.h>
24 #include <asm/types.h>
25 #include <linux/spinlock.h>
26 #include <linux/net.h>
27 #include <linux/textsearch.h>
28 #include <net/checksum.h>
29 #include <linux/rcupdate.h>
30 #include <linux/hrtimer.h>
31 #include <linux/dma-mapping.h>
32 #include <linux/netdev_features.h>
33 #include <linux/sched.h>
34 #include <linux/sched/clock.h>
35 #include <net/flow_dissector.h>
36 #include <linux/splice.h>
37 #include <linux/in6.h>
38 #include <linux/if_packet.h>
39 #include <net/flow.h>
40 #include <net/page_pool.h>
41 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
42 #include <linux/netfilter/nf_conntrack_common.h>
43 #endif
44
45 /* The interface for checksum offload between the stack and networking drivers
46  * is as follows...
47  *
48  * A. IP checksum related features
49  *
50  * Drivers advertise checksum offload capabilities in the features of a device.
51  * From the stack's point of view these are capabilities offered by the driver.
52  * A driver typically only advertises features that it is capable of offloading
53  * to its device.
54  *
55  * The checksum related features are:
56  *
57  *      NETIF_F_HW_CSUM - The driver (or its device) is able to compute one
58  *                        IP (one's complement) checksum for any combination
59  *                        of protocols or protocol layering. The checksum is
60  *                        computed and set in a packet per the CHECKSUM_PARTIAL
61  *                        interface (see below).
62  *
63  *      NETIF_F_IP_CSUM - Driver (device) is only able to checksum plain
64  *                        TCP or UDP packets over IPv4. These are specifically
65  *                        unencapsulated packets of the form IPv4|TCP or
66  *                        IPv4|UDP where the Protocol field in the IPv4 header
67  *                        is TCP or UDP. The IPv4 header may contain IP options.
68  *                        This feature cannot be set in features for a device
69  *                        with NETIF_F_HW_CSUM also set. This feature is being
70  *                        DEPRECATED (see below).
71  *
72  *      NETIF_F_IPV6_CSUM - Driver (device) is only able to checksum plain
73  *                        TCP or UDP packets over IPv6. These are specifically
74  *                        unencapsulated packets of the form IPv6|TCP or
75  *                        IPv6|UDP where the Next Header field in the IPv6
76  *                        header is either TCP or UDP. IPv6 extension headers
77  *                        are not supported with this feature. This feature
78  *                        cannot be set in features for a device with
79  *                        NETIF_F_HW_CSUM also set. This feature is being
80  *                        DEPRECATED (see below).
81  *
82  *      NETIF_F_RXCSUM - Driver (device) performs receive checksum offload.
83  *                       This flag is only used to disable the RX checksum
84  *                       feature for a device. The stack will accept receive
85  *                       checksum indication in packets received on a device
86  *                       regardless of whether NETIF_F_RXCSUM is set.
87  *
88  * B. Checksumming of received packets by device. Indication of checksum
89  *    verification is set in skb->ip_summed. Possible values are:
90  *
91  * CHECKSUM_NONE:
92  *
93  *   Device did not checksum this packet e.g. due to lack of capabilities.
94  *   The packet contains full (though not verified) checksum in packet but
95  *   not in skb->csum. Thus, skb->csum is undefined in this case.
96  *
97  * CHECKSUM_UNNECESSARY:
98  *
99  *   The hardware you're dealing with doesn't calculate the full checksum
100  *   (as in CHECKSUM_COMPLETE), but it does parse headers and verify checksums
101  *   for specific protocols. For such packets it will set CHECKSUM_UNNECESSARY
102  *   if their checksums are okay. skb->csum is still undefined in this case
103  *   though. A driver or device must never modify the checksum field in the
104  *   packet even if checksum is verified.
105  *
106  *   CHECKSUM_UNNECESSARY is applicable to following protocols:
107  *     TCP: IPv6 and IPv4.
108  *     UDP: IPv4 and IPv6. A device may apply CHECKSUM_UNNECESSARY to a
109  *       zero UDP checksum for either IPv4 or IPv6, the networking stack
110  *       may perform further validation in this case.
111  *     GRE: only if the checksum is present in the header.
112  *     SCTP: indicates the CRC in SCTP header has been validated.
113  *     FCOE: indicates the CRC in FC frame has been validated.
114  *
115  *   skb->csum_level indicates the number of consecutive checksums found in
116  *   the packet minus one that have been verified as CHECKSUM_UNNECESSARY.
117  *   For instance if a device receives an IPv6->UDP->GRE->IPv4->TCP packet
118  *   and a device is able to verify the checksums for UDP (possibly zero),
119  *   GRE (checksum flag is set) and TCP, skb->csum_level would be set to
120  *   two. If the device were only able to verify the UDP checksum and not
121  *   GRE, either because it doesn't support GRE checksum or because GRE
122  *   checksum is bad, skb->csum_level would be set to zero (TCP checksum is
123  *   not considered in this case).
124  *
125  * CHECKSUM_COMPLETE:
126  *
127  *   This is the most generic way. The device supplied checksum of the _whole_
128  *   packet as seen by netif_rx() and fills in skb->csum. This means the
129  *   hardware doesn't need to parse L3/L4 headers to implement this.
130  *
131  *   Notes:
132  *   - Even if device supports only some protocols, but is able to produce
133  *     skb->csum, it MUST use CHECKSUM_COMPLETE, not CHECKSUM_UNNECESSARY.
134  *   - CHECKSUM_COMPLETE is not applicable to SCTP and FCoE protocols.
135  *
136  * CHECKSUM_PARTIAL:
137  *
138  *   A checksum is set up to be offloaded to a device as described in the
139  *   output description for CHECKSUM_PARTIAL. This may occur on a packet
140  *   received directly from another Linux OS, e.g., a virtualized Linux kernel
141  *   on the same host, or it may be set in the input path in GRO or remote
142  *   checksum offload. For the purposes of checksum verification, the checksum
143  *   referred to by skb->csum_start + skb->csum_offset and any preceding
144  *   checksums in the packet are considered verified. Any checksums in the
145  *   packet that are after the checksum being offloaded are not considered to
146  *   be verified.
147  *
148  * C. Checksumming on transmit for non-GSO. The stack requests checksum offload
149  *    in the skb->ip_summed for a packet. Values are:
150  *
151  * CHECKSUM_PARTIAL:
152  *
153  *   The driver is required to checksum the packet as seen by hard_start_xmit()
154  *   from skb->csum_start up to the end, and to record/write the checksum at
155  *   offset skb->csum_start + skb->csum_offset. A driver may verify that the
156  *   csum_start and csum_offset values are valid values given the length and
157  *   offset of the packet, but it should not attempt to validate that the
158  *   checksum refers to a legitimate transport layer checksum -- it is the
159  *   purview of the stack to validate that csum_start and csum_offset are set
160  *   correctly.
161  *
162  *   When the stack requests checksum offload for a packet, the driver MUST
163  *   ensure that the checksum is set correctly. A driver can either offload the
164  *   checksum calculation to the device, or call skb_checksum_help (in the case
165  *   that the device does not support offload for a particular checksum).
166  *
167  *   NETIF_F_IP_CSUM and NETIF_F_IPV6_CSUM are being deprecated in favor of
168  *   NETIF_F_HW_CSUM. New devices should use NETIF_F_HW_CSUM to indicate
169  *   checksum offload capability.
170  *   skb_csum_hwoffload_help() can be called to resolve CHECKSUM_PARTIAL based
171  *   on network device checksumming capabilities: if a packet does not match
172  *   them, skb_checksum_help or skb_crc32c_help (depending on the value of
173  *   csum_not_inet, see item D.) is called to resolve the checksum.
174  *
175  * CHECKSUM_NONE:
176  *
177  *   The skb was already checksummed by the protocol, or a checksum is not
178  *   required.
179  *
180  * CHECKSUM_UNNECESSARY:
181  *
182  *   This has the same meaning as CHECKSUM_NONE for checksum offload on
183  *   output.
184  *
185  * CHECKSUM_COMPLETE:
186  *   Not used in checksum output. If a driver observes a packet with this value
187  *   set in skbuff, it should treat the packet as if CHECKSUM_NONE were set.
188  *
189  * D. Non-IP checksum (CRC) offloads
190  *
191  *   NETIF_F_SCTP_CRC - This feature indicates that a device is capable of
192  *     offloading the SCTP CRC in a packet. To perform this offload the stack
193  *     will set csum_start and csum_offset accordingly, set ip_summed to
194  *     CHECKSUM_PARTIAL and set csum_not_inet to 1, to provide an indication in
195  *     the skbuff that the CHECKSUM_PARTIAL refers to CRC32c.
196  *     A driver that supports both IP checksum offload and SCTP CRC32c offload
197  *     must verify which offload is configured for a packet by testing the
198  *     value of skb->csum_not_inet; skb_crc32c_csum_help is provided to resolve
199  *     CHECKSUM_PARTIAL on skbs where csum_not_inet is set to 1.
200  *
201  *   NETIF_F_FCOE_CRC - This feature indicates that a device is capable of
202  *     offloading the FCOE CRC in a packet. To perform this offload the stack
203  *     will set ip_summed to CHECKSUM_PARTIAL and set csum_start and csum_offset
204  *     accordingly. Note that there is no indication in the skbuff that the
205  *     CHECKSUM_PARTIAL refers to an FCOE checksum, so a driver that supports
206  *     both IP checksum offload and FCOE CRC offload must verify which offload
207  *     is configured for a packet, presumably by inspecting packet headers.
208  *
209  * E. Checksumming on output with GSO.
210  *
211  * In the case of a GSO packet (skb_is_gso(skb) is true), checksum offload
212  * is implied by the SKB_GSO_* flags in gso_type. Most obviously, if the
213  * gso_type is SKB_GSO_TCPV4 or SKB_GSO_TCPV6, TCP checksum offload as
214  * part of the GSO operation is implied. If a checksum is being offloaded
215  * with GSO then ip_summed is CHECKSUM_PARTIAL, and both csum_start and
216  * csum_offset are set to refer to the outermost checksum being offloaded
217  * (two offloaded checksums are possible with UDP encapsulation).
218  */
219
220 /* Don't change this without changing skb_csum_unnecessary! */
221 #define CHECKSUM_NONE           0
222 #define CHECKSUM_UNNECESSARY    1
223 #define CHECKSUM_COMPLETE       2
224 #define CHECKSUM_PARTIAL        3
225
226 /* Maximum value in skb->csum_level */
227 #define SKB_MAX_CSUM_LEVEL      3
228
229 #define SKB_DATA_ALIGN(X)       ALIGN(X, SMP_CACHE_BYTES)
230 #define SKB_WITH_OVERHEAD(X)    \
231         ((X) - SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
232 #define SKB_MAX_ORDER(X, ORDER) \
233         SKB_WITH_OVERHEAD((PAGE_SIZE << (ORDER)) - (X))
234 #define SKB_MAX_HEAD(X)         (SKB_MAX_ORDER((X), 0))
235 #define SKB_MAX_ALLOC           (SKB_MAX_ORDER(0, 2))
236
237 /* return minimum truesize of one skb containing X bytes of data */
238 #define SKB_TRUESIZE(X) ((X) +                                          \
239                          SKB_DATA_ALIGN(sizeof(struct sk_buff)) +       \
240                          SKB_DATA_ALIGN(sizeof(struct skb_shared_info)))
241
242 struct ahash_request;
243 struct net_device;
244 struct scatterlist;
245 struct pipe_inode_info;
246 struct iov_iter;
247 struct napi_struct;
248 struct bpf_prog;
249 union bpf_attr;
250 struct skb_ext;
251
252 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
253 struct nf_bridge_info {
254         enum {
255                 BRNF_PROTO_UNCHANGED,
256                 BRNF_PROTO_8021Q,
257                 BRNF_PROTO_PPPOE
258         } orig_proto:8;
259         u8                      pkt_otherhost:1;
260         u8                      in_prerouting:1;
261         u8                      bridged_dnat:1;
262         u8                      sabotage_in_done:1;
263         __u16                   frag_max_size;
264         struct net_device       *physindev;
265
266         /* always valid & non-NULL from FORWARD on, for physdev match */
267         struct net_device       *physoutdev;
268         union {
269                 /* prerouting: detect dnat in orig/reply direction */
270                 __be32          ipv4_daddr;
271                 struct in6_addr ipv6_daddr;
272
273                 /* after prerouting + nat detected: store original source
274                  * mac since neigh resolution overwrites it, only used while
275                  * skb is out in neigh layer.
276                  */
277                 char neigh_header[8];
278         };
279 };
280 #endif
281
282 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
283 /* Chain in tc_skb_ext will be used to share the tc chain with
284  * ovs recirc_id. It will be set to the current chain by tc
285  * and read by ovs to recirc_id.
286  */
287 struct tc_skb_ext {
288         __u32 chain;
289         __u16 mru;
290         __u16 zone;
291         u8 post_ct:1;
292         u8 post_ct_snat:1;
293         u8 post_ct_dnat:1;
294 };
295 #endif
296
297 struct sk_buff_head {
298         /* These two members must be first. */
299         struct sk_buff  *next;
300         struct sk_buff  *prev;
301
302         __u32           qlen;
303         spinlock_t      lock;
304 };
305
306 struct sk_buff;
307
308 /* The reason of skb drop, which is used in kfree_skb_reason().
309  * en...maybe they should be splited by group?
310  *
311  * Each item here should also be in 'TRACE_SKB_DROP_REASON', which is
312  * used to translate the reason to string.
313  */
314 enum skb_drop_reason {
315         SKB_DROP_REASON_NOT_SPECIFIED,  /* drop reason is not specified */
316         SKB_DROP_REASON_NO_SOCKET,      /* socket not found */
317         SKB_DROP_REASON_PKT_TOO_SMALL,  /* packet size is too small */
318         SKB_DROP_REASON_TCP_CSUM,       /* TCP checksum error */
319         SKB_DROP_REASON_SOCKET_FILTER,  /* dropped by socket filter */
320         SKB_DROP_REASON_UDP_CSUM,       /* UDP checksum error */
321         SKB_DROP_REASON_NETFILTER_DROP, /* dropped by netfilter */
322         SKB_DROP_REASON_OTHERHOST,      /* packet don't belong to current
323                                          * host (interface is in promisc
324                                          * mode)
325                                          */
326         SKB_DROP_REASON_IP_CSUM,        /* IP checksum error */
327         SKB_DROP_REASON_IP_INHDR,       /* there is something wrong with
328                                          * IP header (see
329                                          * IPSTATS_MIB_INHDRERRORS)
330                                          */
331         SKB_DROP_REASON_IP_RPFILTER,    /* IP rpfilter validate failed.
332                                          * see the document for rp_filter
333                                          * in ip-sysctl.rst for more
334                                          * information
335                                          */
336         SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST, /* destination address of L2
337                                                   * is multicast, but L3 is
338                                                   * unicast.
339                                                   */
340         SKB_DROP_REASON_MAX,
341 };
342
343 /* To allow 64K frame to be packed as single skb without frag_list we
344  * require 64K/PAGE_SIZE pages plus 1 additional page to allow for
345  * buffers which do not start on a page boundary.
346  *
347  * Since GRO uses frags we allocate at least 16 regardless of page
348  * size.
349  */
350 #if (65536/PAGE_SIZE + 1) < 16
351 #define MAX_SKB_FRAGS 16UL
352 #else
353 #define MAX_SKB_FRAGS (65536/PAGE_SIZE + 1)
354 #endif
355 extern int sysctl_max_skb_frags;
356
357 /* Set skb_shinfo(skb)->gso_size to this in case you want skb_segment to
358  * segment using its current segmentation instead.
359  */
360 #define GSO_BY_FRAGS    0xFFFF
361
362 typedef struct bio_vec skb_frag_t;
363
364 /**
365  * skb_frag_size() - Returns the size of a skb fragment
366  * @frag: skb fragment
367  */
368 static inline unsigned int skb_frag_size(const skb_frag_t *frag)
369 {
370         return frag->bv_len;
371 }
372
373 /**
374  * skb_frag_size_set() - Sets the size of a skb fragment
375  * @frag: skb fragment
376  * @size: size of fragment
377  */
378 static inline void skb_frag_size_set(skb_frag_t *frag, unsigned int size)
379 {
380         frag->bv_len = size;
381 }
382
383 /**
384  * skb_frag_size_add() - Increments the size of a skb fragment by @delta
385  * @frag: skb fragment
386  * @delta: value to add
387  */
388 static inline void skb_frag_size_add(skb_frag_t *frag, int delta)
389 {
390         frag->bv_len += delta;
391 }
392
393 /**
394  * skb_frag_size_sub() - Decrements the size of a skb fragment by @delta
395  * @frag: skb fragment
396  * @delta: value to subtract
397  */
398 static inline void skb_frag_size_sub(skb_frag_t *frag, int delta)
399 {
400         frag->bv_len -= delta;
401 }
402
403 /**
404  * skb_frag_must_loop - Test if %p is a high memory page
405  * @p: fragment's page
406  */
407 static inline bool skb_frag_must_loop(struct page *p)
408 {
409 #if defined(CONFIG_HIGHMEM)
410         if (IS_ENABLED(CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP) || PageHighMem(p))
411                 return true;
412 #endif
413         return false;
414 }
415
416 /**
417  *      skb_frag_foreach_page - loop over pages in a fragment
418  *
419  *      @f:             skb frag to operate on
420  *      @f_off:         offset from start of f->bv_page
421  *      @f_len:         length from f_off to loop over
422  *      @p:             (temp var) current page
423  *      @p_off:         (temp var) offset from start of current page,
424  *                                 non-zero only on first page.
425  *      @p_len:         (temp var) length in current page,
426  *                                 < PAGE_SIZE only on first and last page.
427  *      @copied:        (temp var) length so far, excluding current p_len.
428  *
429  *      A fragment can hold a compound page, in which case per-page
430  *      operations, notably kmap_atomic, must be called for each
431  *      regular page.
432  */
433 #define skb_frag_foreach_page(f, f_off, f_len, p, p_off, p_len, copied) \
434         for (p = skb_frag_page(f) + ((f_off) >> PAGE_SHIFT),            \
435              p_off = (f_off) & (PAGE_SIZE - 1),                         \
436              p_len = skb_frag_must_loop(p) ?                            \
437              min_t(u32, f_len, PAGE_SIZE - p_off) : f_len,              \
438              copied = 0;                                                \
439              copied < f_len;                                            \
440              copied += p_len, p++, p_off = 0,                           \
441              p_len = min_t(u32, f_len - copied, PAGE_SIZE))             \
442
443 #define HAVE_HW_TIME_STAMP
444
445 /**
446  * struct skb_shared_hwtstamps - hardware time stamps
447  * @hwtstamp:   hardware time stamp transformed into duration
448  *              since arbitrary point in time
449  *
450  * Software time stamps generated by ktime_get_real() are stored in
451  * skb->tstamp.
452  *
453  * hwtstamps can only be compared against other hwtstamps from
454  * the same device.
455  *
456  * This structure is attached to packets as part of the
457  * &skb_shared_info. Use skb_hwtstamps() to get a pointer.
458  */
459 struct skb_shared_hwtstamps {
460         ktime_t hwtstamp;
461 };
462
463 /* Definitions for tx_flags in struct skb_shared_info */
464 enum {
465         /* generate hardware time stamp */
466         SKBTX_HW_TSTAMP = 1 << 0,
467
468         /* generate software time stamp when queueing packet to NIC */
469         SKBTX_SW_TSTAMP = 1 << 1,
470
471         /* device driver is going to provide hardware time stamp */
472         SKBTX_IN_PROGRESS = 1 << 2,
473
474         /* generate wifi status information (where possible) */
475         SKBTX_WIFI_STATUS = 1 << 4,
476
477         /* generate software time stamp when entering packet scheduling */
478         SKBTX_SCHED_TSTAMP = 1 << 6,
479 };
480
481 #define SKBTX_ANY_SW_TSTAMP     (SKBTX_SW_TSTAMP    | \
482                                  SKBTX_SCHED_TSTAMP)
483 #define SKBTX_ANY_TSTAMP        (SKBTX_HW_TSTAMP | SKBTX_ANY_SW_TSTAMP)
484
485 /* Definitions for flags in struct skb_shared_info */
486 enum {
487         /* use zcopy routines */
488         SKBFL_ZEROCOPY_ENABLE = BIT(0),
489
490         /* This indicates at least one fragment might be overwritten
491          * (as in vmsplice(), sendfile() ...)
492          * If we need to compute a TX checksum, we'll need to copy
493          * all frags to avoid possible bad checksum
494          */
495         SKBFL_SHARED_FRAG = BIT(1),
496 };
497
498 #define SKBFL_ZEROCOPY_FRAG     (SKBFL_ZEROCOPY_ENABLE | SKBFL_SHARED_FRAG)
499
500 /*
501  * The callback notifies userspace to release buffers when skb DMA is done in
502  * lower device, the skb last reference should be 0 when calling this.
503  * The zerocopy_success argument is true if zero copy transmit occurred,
504  * false on data copy or out of memory error caused by data copy attempt.
505  * The ctx field is used to track device context.
506  * The desc field is used to track userspace buffer index.
507  */
508 struct ubuf_info {
509         void (*callback)(struct sk_buff *, struct ubuf_info *,
510                          bool zerocopy_success);
511         union {
512                 struct {
513                         unsigned long desc;
514                         void *ctx;
515                 };
516                 struct {
517                         u32 id;
518                         u16 len;
519                         u16 zerocopy:1;
520                         u32 bytelen;
521                 };
522         };
523         refcount_t refcnt;
524         u8 flags;
525
526         struct mmpin {
527                 struct user_struct *user;
528                 unsigned int num_pg;
529         } mmp;
530 };
531
532 #define skb_uarg(SKB)   ((struct ubuf_info *)(skb_shinfo(SKB)->destructor_arg))
533
534 int mm_account_pinned_pages(struct mmpin *mmp, size_t size);
535 void mm_unaccount_pinned_pages(struct mmpin *mmp);
536
537 struct ubuf_info *msg_zerocopy_alloc(struct sock *sk, size_t size);
538 struct ubuf_info *msg_zerocopy_realloc(struct sock *sk, size_t size,
539                                        struct ubuf_info *uarg);
540
541 void msg_zerocopy_put_abort(struct ubuf_info *uarg, bool have_uref);
542
543 void msg_zerocopy_callback(struct sk_buff *skb, struct ubuf_info *uarg,
544                            bool success);
545
546 int skb_zerocopy_iter_dgram(struct sk_buff *skb, struct msghdr *msg, int len);
547 int skb_zerocopy_iter_stream(struct sock *sk, struct sk_buff *skb,
548                              struct msghdr *msg, int len,
549                              struct ubuf_info *uarg);
550
551 /* This data is invariant across clones and lives at
552  * the end of the header data, ie. at skb->end.
553  */
554 struct skb_shared_info {
555         __u8            flags;
556         __u8            meta_len;
557         __u8            nr_frags;
558         __u8            tx_flags;
559         unsigned short  gso_size;
560         /* Warning: this field is not always filled in (UFO)! */
561         unsigned short  gso_segs;
562         struct sk_buff  *frag_list;
563         struct skb_shared_hwtstamps hwtstamps;
564         unsigned int    gso_type;
565         u32             tskey;
566
567         /*
568          * Warning : all fields before dataref are cleared in __alloc_skb()
569          */
570         atomic_t        dataref;
571
572         /* Intermediate layers must ensure that destructor_arg
573          * remains valid until skb destructor */
574         void *          destructor_arg;
575
576         /* must be last field, see pskb_expand_head() */
577         skb_frag_t      frags[MAX_SKB_FRAGS];
578 };
579
580 /* We divide dataref into two halves.  The higher 16 bits hold references
581  * to the payload part of skb->data.  The lower 16 bits hold references to
582  * the entire skb->data.  A clone of a headerless skb holds the length of
583  * the header in skb->hdr_len.
584  *
585  * All users must obey the rule that the skb->data reference count must be
586  * greater than or equal to the payload reference count.
587  *
588  * Holding a reference to the payload part means that the user does not
589  * care about modifications to the header part of skb->data.
590  */
591 #define SKB_DATAREF_SHIFT 16
592 #define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)
593
594
595 enum {
596         SKB_FCLONE_UNAVAILABLE, /* skb has no fclone (from head_cache) */
597         SKB_FCLONE_ORIG,        /* orig skb (from fclone_cache) */
598         SKB_FCLONE_CLONE,       /* companion fclone skb (from fclone_cache) */
599 };
600
601 enum {
602         SKB_GSO_TCPV4 = 1 << 0,
603
604         /* This indicates the skb is from an untrusted source. */
605         SKB_GSO_DODGY = 1 << 1,
606
607         /* This indicates the tcp segment has CWR set. */
608         SKB_GSO_TCP_ECN = 1 << 2,
609
610         SKB_GSO_TCP_FIXEDID = 1 << 3,
611
612         SKB_GSO_TCPV6 = 1 << 4,
613
614         SKB_GSO_FCOE = 1 << 5,
615
616         SKB_GSO_GRE = 1 << 6,
617
618         SKB_GSO_GRE_CSUM = 1 << 7,
619
620         SKB_GSO_IPXIP4 = 1 << 8,
621
622         SKB_GSO_IPXIP6 = 1 << 9,
623
624         SKB_GSO_UDP_TUNNEL = 1 << 10,
625
626         SKB_GSO_UDP_TUNNEL_CSUM = 1 << 11,
627
628         SKB_GSO_PARTIAL = 1 << 12,
629
630         SKB_GSO_TUNNEL_REMCSUM = 1 << 13,
631
632         SKB_GSO_SCTP = 1 << 14,
633
634         SKB_GSO_ESP = 1 << 15,
635
636         SKB_GSO_UDP = 1 << 16,
637
638         SKB_GSO_UDP_L4 = 1 << 17,
639
640         SKB_GSO_FRAGLIST = 1 << 18,
641 };
642
643 #if BITS_PER_LONG > 32
644 #define NET_SKBUFF_DATA_USES_OFFSET 1
645 #endif
646
647 #ifdef NET_SKBUFF_DATA_USES_OFFSET
648 typedef unsigned int sk_buff_data_t;
649 #else
650 typedef unsigned char *sk_buff_data_t;
651 #endif
652
653 /**
654  *      struct sk_buff - socket buffer
655  *      @next: Next buffer in list
656  *      @prev: Previous buffer in list
657  *      @tstamp: Time we arrived/left
658  *      @skb_mstamp_ns: (aka @tstamp) earliest departure time; start point
659  *              for retransmit timer
660  *      @rbnode: RB tree node, alternative to next/prev for netem/tcp
661  *      @list: queue head
662  *      @sk: Socket we are owned by
663  *      @ip_defrag_offset: (aka @sk) alternate use of @sk, used in
664  *              fragmentation management
665  *      @dev: Device we arrived on/are leaving by
666  *      @dev_scratch: (aka @dev) alternate use of @dev when @dev would be %NULL
667  *      @cb: Control buffer. Free for use by every layer. Put private vars here
668  *      @_skb_refdst: destination entry (with norefcount bit)
669  *      @sp: the security path, used for xfrm
670  *      @len: Length of actual data
671  *      @data_len: Data length
672  *      @mac_len: Length of link layer header
673  *      @hdr_len: writable header length of cloned skb
674  *      @csum: Checksum (must include start/offset pair)
675  *      @csum_start: Offset from skb->head where checksumming should start
676  *      @csum_offset: Offset from csum_start where checksum should be stored
677  *      @priority: Packet queueing priority
678  *      @ignore_df: allow local fragmentation
679  *      @cloned: Head may be cloned (check refcnt to be sure)
680  *      @ip_summed: Driver fed us an IP checksum
681  *      @nohdr: Payload reference only, must not modify header
682  *      @pkt_type: Packet class
683  *      @fclone: skbuff clone status
684  *      @ipvs_property: skbuff is owned by ipvs
685  *      @inner_protocol_type: whether the inner protocol is
686  *              ENCAP_TYPE_ETHER or ENCAP_TYPE_IPPROTO
687  *      @remcsum_offload: remote checksum offload is enabled
688  *      @offload_fwd_mark: Packet was L2-forwarded in hardware
689  *      @offload_l3_fwd_mark: Packet was L3-forwarded in hardware
690  *      @tc_skip_classify: do not classify packet. set by IFB device
691  *      @tc_at_ingress: used within tc_classify to distinguish in/egress
692  *      @redirected: packet was redirected by packet classifier
693  *      @from_ingress: packet was redirected from the ingress path
694  *      @peeked: this packet has been seen already, so stats have been
695  *              done for it, don't do them again
696  *      @nf_trace: netfilter packet trace flag
697  *      @protocol: Packet protocol from driver
698  *      @destructor: Destruct function
699  *      @tcp_tsorted_anchor: list structure for TCP (tp->tsorted_sent_queue)
700  *      @_sk_redir: socket redirection information for skmsg
701  *      @_nfct: Associated connection, if any (with nfctinfo bits)
702  *      @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
703  *      @skb_iif: ifindex of device we arrived on
704  *      @tc_index: Traffic control index
705  *      @hash: the packet hash
706  *      @queue_mapping: Queue mapping for multiqueue devices
707  *      @head_frag: skb was allocated from page fragments,
708  *              not allocated by kmalloc() or vmalloc().
709  *      @pfmemalloc: skbuff was allocated from PFMEMALLOC reserves
710  *      @pp_recycle: mark the packet for recycling instead of freeing (implies
711  *              page_pool support on driver)
712  *      @active_extensions: active extensions (skb_ext_id types)
713  *      @ndisc_nodetype: router type (from link layer)
714  *      @ooo_okay: allow the mapping of a socket to a queue to be changed
715  *      @l4_hash: indicate hash is a canonical 4-tuple hash over transport
716  *              ports.
717  *      @sw_hash: indicates hash was computed in software stack
718  *      @wifi_acked_valid: wifi_acked was set
719  *      @wifi_acked: whether frame was acked on wifi or not
720  *      @no_fcs:  Request NIC to treat last 4 bytes as Ethernet FCS
721  *      @encapsulation: indicates the inner headers in the skbuff are valid
722  *      @encap_hdr_csum: software checksum is needed
723  *      @csum_valid: checksum is already valid
724  *      @csum_not_inet: use CRC32c to resolve CHECKSUM_PARTIAL
725  *      @csum_complete_sw: checksum was completed by software
726  *      @csum_level: indicates the number of consecutive checksums found in
727  *              the packet minus one that have been verified as
728  *              CHECKSUM_UNNECESSARY (max 3)
729  *      @scm_io_uring: SKB holds io_uring registered files
730  *      @dst_pending_confirm: need to confirm neighbour
731  *      @decrypted: Decrypted SKB
732  *      @slow_gro: state present at GRO time, slower prepare step required
733  *      @napi_id: id of the NAPI struct this skb came from
734  *      @sender_cpu: (aka @napi_id) source CPU in XPS
735  *      @secmark: security marking
736  *      @mark: Generic packet mark
737  *      @reserved_tailroom: (aka @mark) number of bytes of free space available
738  *              at the tail of an sk_buff
739  *      @vlan_present: VLAN tag is present
740  *      @vlan_proto: vlan encapsulation protocol
741  *      @vlan_tci: vlan tag control information
742  *      @inner_protocol: Protocol (encapsulation)
743  *      @inner_ipproto: (aka @inner_protocol) stores ipproto when
744  *              skb->inner_protocol_type == ENCAP_TYPE_IPPROTO;
745  *      @inner_transport_header: Inner transport layer header (encapsulation)
746  *      @inner_network_header: Network layer header (encapsulation)
747  *      @inner_mac_header: Link layer header (encapsulation)
748  *      @transport_header: Transport layer header
749  *      @network_header: Network layer header
750  *      @mac_header: Link layer header
751  *      @kcov_handle: KCOV remote handle for remote coverage collection
752  *      @tail: Tail pointer
753  *      @end: End pointer
754  *      @head: Head of buffer
755  *      @data: Data head pointer
756  *      @truesize: Buffer size
757  *      @users: User count - see {datagram,tcp}.c
758  *      @extensions: allocated extensions, valid if active_extensions is nonzero
759  */
760
761 struct sk_buff {
762         union {
763                 struct {
764                         /* These two members must be first. */
765                         struct sk_buff          *next;
766                         struct sk_buff          *prev;
767
768                         union {
769                                 struct net_device       *dev;
770                                 /* Some protocols might use this space to store information,
771                                  * while device pointer would be NULL.
772                                  * UDP receive path is one user.
773                                  */
774                                 unsigned long           dev_scratch;
775                         };
776                 };
777                 struct rb_node          rbnode; /* used in netem, ip4 defrag, and tcp stack */
778                 struct list_head        list;
779         };
780
781         union {
782                 struct sock             *sk;
783                 int                     ip_defrag_offset;
784         };
785
786         union {
787                 ktime_t         tstamp;
788                 u64             skb_mstamp_ns; /* earliest departure time */
789         };
790         /*
791          * This is the control buffer. It is free to use for every
792          * layer. Please put your private variables there. If you
793          * want to keep them across layers you have to do a skb_clone()
794          * first. This is owned by whoever has the skb queued ATM.
795          */
796         char                    cb[48] __aligned(8);
797
798         union {
799                 struct {
800                         unsigned long   _skb_refdst;
801                         void            (*destructor)(struct sk_buff *skb);
802                 };
803                 struct list_head        tcp_tsorted_anchor;
804 #ifdef CONFIG_NET_SOCK_MSG
805                 unsigned long           _sk_redir;
806 #endif
807         };
808
809 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
810         unsigned long            _nfct;
811 #endif
812         unsigned int            len,
813                                 data_len;
814         __u16                   mac_len,
815                                 hdr_len;
816
817         /* Following fields are _not_ copied in __copy_skb_header()
818          * Note that queue_mapping is here mostly to fill a hole.
819          */
820         __u16                   queue_mapping;
821
822 /* if you move cloned around you also must adapt those constants */
823 #ifdef __BIG_ENDIAN_BITFIELD
824 #define CLONED_MASK     (1 << 7)
825 #else
826 #define CLONED_MASK     1
827 #endif
828 #define CLONED_OFFSET()         offsetof(struct sk_buff, __cloned_offset)
829
830         /* private: */
831         __u8                    __cloned_offset[0];
832         /* public: */
833         __u8                    cloned:1,
834                                 nohdr:1,
835                                 fclone:2,
836                                 peeked:1,
837                                 head_frag:1,
838                                 pfmemalloc:1,
839                                 pp_recycle:1; /* page_pool recycle indicator */
840 #ifdef CONFIG_SKB_EXTENSIONS
841         __u8                    active_extensions;
842 #endif
843
844         /* fields enclosed in headers_start/headers_end are copied
845          * using a single memcpy() in __copy_skb_header()
846          */
847         /* private: */
848         __u32                   headers_start[0];
849         /* public: */
850
851 /* if you move pkt_type around you also must adapt those constants */
852 #ifdef __BIG_ENDIAN_BITFIELD
853 #define PKT_TYPE_MAX    (7 << 5)
854 #else
855 #define PKT_TYPE_MAX    7
856 #endif
857 #define PKT_TYPE_OFFSET()       offsetof(struct sk_buff, __pkt_type_offset)
858
859         /* private: */
860         __u8                    __pkt_type_offset[0];
861         /* public: */
862         __u8                    pkt_type:3;
863         __u8                    ignore_df:1;
864         __u8                    nf_trace:1;
865         __u8                    ip_summed:2;
866         __u8                    ooo_okay:1;
867
868         __u8                    l4_hash:1;
869         __u8                    sw_hash:1;
870         __u8                    wifi_acked_valid:1;
871         __u8                    wifi_acked:1;
872         __u8                    no_fcs:1;
873         /* Indicates the inner headers are valid in the skbuff. */
874         __u8                    encapsulation:1;
875         __u8                    encap_hdr_csum:1;
876         __u8                    csum_valid:1;
877
878 #ifdef __BIG_ENDIAN_BITFIELD
879 #define PKT_VLAN_PRESENT_BIT    7
880 #else
881 #define PKT_VLAN_PRESENT_BIT    0
882 #endif
883 #define PKT_VLAN_PRESENT_OFFSET()       offsetof(struct sk_buff, __pkt_vlan_present_offset)
884         /* private: */
885         __u8                    __pkt_vlan_present_offset[0];
886         /* public: */
887         __u8                    vlan_present:1;
888         __u8                    csum_complete_sw:1;
889         __u8                    csum_level:2;
890         __u8                    csum_not_inet:1;
891         __u8                    dst_pending_confirm:1;
892 #ifdef CONFIG_IPV6_NDISC_NODETYPE
893         __u8                    ndisc_nodetype:2;
894 #endif
895
896         __u8                    ipvs_property:1;
897         __u8                    inner_protocol_type:1;
898         __u8                    remcsum_offload:1;
899 #ifdef CONFIG_NET_SWITCHDEV
900         __u8                    offload_fwd_mark:1;
901         __u8                    offload_l3_fwd_mark:1;
902 #endif
903 #ifdef CONFIG_NET_CLS_ACT
904         __u8                    tc_skip_classify:1;
905         __u8                    tc_at_ingress:1;
906 #endif
907         __u8                    redirected:1;
908 #ifdef CONFIG_NET_REDIRECT
909         __u8                    from_ingress:1;
910 #endif
911 #ifdef CONFIG_TLS_DEVICE
912         __u8                    decrypted:1;
913 #endif
914         __u8                    slow_gro:1;
915         __u8                    scm_io_uring:1;
916
917 #ifdef CONFIG_NET_SCHED
918         __u16                   tc_index;       /* traffic control index */
919 #endif
920
921         union {
922                 __wsum          csum;
923                 struct {
924                         __u16   csum_start;
925                         __u16   csum_offset;
926                 };
927         };
928         __u32                   priority;
929         int                     skb_iif;
930         __u32                   hash;
931         __be16                  vlan_proto;
932         __u16                   vlan_tci;
933 #if defined(CONFIG_NET_RX_BUSY_POLL) || defined(CONFIG_XPS)
934         union {
935                 unsigned int    napi_id;
936                 unsigned int    sender_cpu;
937         };
938 #endif
939 #ifdef CONFIG_NETWORK_SECMARK
940         __u32           secmark;
941 #endif
942
943         union {
944                 __u32           mark;
945                 __u32           reserved_tailroom;
946         };
947
948         union {
949                 __be16          inner_protocol;
950                 __u8            inner_ipproto;
951         };
952
953         __u16                   inner_transport_header;
954         __u16                   inner_network_header;
955         __u16                   inner_mac_header;
956
957         __be16                  protocol;
958         __u16                   transport_header;
959         __u16                   network_header;
960         __u16                   mac_header;
961
962 #ifdef CONFIG_KCOV
963         u64                     kcov_handle;
964 #endif
965
966         /* private: */
967         __u32                   headers_end[0];
968         /* public: */
969
970         /* These elements must be at the end, see alloc_skb() for details.  */
971         sk_buff_data_t          tail;
972         sk_buff_data_t          end;
973         unsigned char           *head,
974                                 *data;
975         unsigned int            truesize;
976         refcount_t              users;
977
978 #ifdef CONFIG_SKB_EXTENSIONS
979         /* only useable after checking ->active_extensions != 0 */
980         struct skb_ext          *extensions;
981 #endif
982 };
983
984 #ifdef __KERNEL__
985 /*
986  *      Handling routines are only of interest to the kernel
987  */
988
989 #define SKB_ALLOC_FCLONE        0x01
990 #define SKB_ALLOC_RX            0x02
991 #define SKB_ALLOC_NAPI          0x04
992
993 /**
994  * skb_pfmemalloc - Test if the skb was allocated from PFMEMALLOC reserves
995  * @skb: buffer
996  */
997 static inline bool skb_pfmemalloc(const struct sk_buff *skb)
998 {
999         return unlikely(skb->pfmemalloc);
1000 }
1001
1002 /*
1003  * skb might have a dst pointer attached, refcounted or not.
1004  * _skb_refdst low order bit is set if refcount was _not_ taken
1005  */
1006 #define SKB_DST_NOREF   1UL
1007 #define SKB_DST_PTRMASK ~(SKB_DST_NOREF)
1008
1009 /**
1010  * skb_dst - returns skb dst_entry
1011  * @skb: buffer
1012  *
1013  * Returns skb dst_entry, regardless of reference taken or not.
1014  */
1015 static inline struct dst_entry *skb_dst(const struct sk_buff *skb)
1016 {
1017         /* If refdst was not refcounted, check we still are in a
1018          * rcu_read_lock section
1019          */
1020         WARN_ON((skb->_skb_refdst & SKB_DST_NOREF) &&
1021                 !rcu_read_lock_held() &&
1022                 !rcu_read_lock_bh_held());
1023         return (struct dst_entry *)(skb->_skb_refdst & SKB_DST_PTRMASK);
1024 }
1025
1026 /**
1027  * skb_dst_set - sets skb dst
1028  * @skb: buffer
1029  * @dst: dst entry
1030  *
1031  * Sets skb dst, assuming a reference was taken on dst and should
1032  * be released by skb_dst_drop()
1033  */
1034 static inline void skb_dst_set(struct sk_buff *skb, struct dst_entry *dst)
1035 {
1036         skb->slow_gro |= !!dst;
1037         skb->_skb_refdst = (unsigned long)dst;
1038 }
1039
1040 /**
1041  * skb_dst_set_noref - sets skb dst, hopefully, without taking reference
1042  * @skb: buffer
1043  * @dst: dst entry
1044  *
1045  * Sets skb dst, assuming a reference was not taken on dst.
1046  * If dst entry is cached, we do not take reference and dst_release
1047  * will be avoided by refdst_drop. If dst entry is not cached, we take
1048  * reference, so that last dst_release can destroy the dst immediately.
1049  */
1050 static inline void skb_dst_set_noref(struct sk_buff *skb, struct dst_entry *dst)
1051 {
1052         WARN_ON(!rcu_read_lock_held() && !rcu_read_lock_bh_held());
1053         skb->slow_gro |= !!dst;
1054         skb->_skb_refdst = (unsigned long)dst | SKB_DST_NOREF;
1055 }
1056
1057 /**
1058  * skb_dst_is_noref - Test if skb dst isn't refcounted
1059  * @skb: buffer
1060  */
1061 static inline bool skb_dst_is_noref(const struct sk_buff *skb)
1062 {
1063         return (skb->_skb_refdst & SKB_DST_NOREF) && skb_dst(skb);
1064 }
1065
1066 /**
1067  * skb_rtable - Returns the skb &rtable
1068  * @skb: buffer
1069  */
1070 static inline struct rtable *skb_rtable(const struct sk_buff *skb)
1071 {
1072         return (struct rtable *)skb_dst(skb);
1073 }
1074
1075 /* For mangling skb->pkt_type from user space side from applications
1076  * such as nft, tc, etc, we only allow a conservative subset of
1077  * possible pkt_types to be set.
1078 */
1079 static inline bool skb_pkt_type_ok(u32 ptype)
1080 {
1081         return ptype <= PACKET_OTHERHOST;
1082 }
1083
1084 /**
1085  * skb_napi_id - Returns the skb's NAPI id
1086  * @skb: buffer
1087  */
1088 static inline unsigned int skb_napi_id(const struct sk_buff *skb)
1089 {
1090 #ifdef CONFIG_NET_RX_BUSY_POLL
1091         return skb->napi_id;
1092 #else
1093         return 0;
1094 #endif
1095 }
1096
1097 /**
1098  * skb_unref - decrement the skb's reference count
1099  * @skb: buffer
1100  *
1101  * Returns true if we can free the skb.
1102  */
1103 static inline bool skb_unref(struct sk_buff *skb)
1104 {
1105         if (unlikely(!skb))
1106                 return false;
1107         if (likely(refcount_read(&skb->users) == 1))
1108                 smp_rmb();
1109         else if (likely(!refcount_dec_and_test(&skb->users)))
1110                 return false;
1111
1112         return true;
1113 }
1114
1115 void kfree_skb_reason(struct sk_buff *skb, enum skb_drop_reason reason);
1116
1117 /**
1118  *      kfree_skb - free an sk_buff with 'NOT_SPECIFIED' reason
1119  *      @skb: buffer to free
1120  */
1121 static inline void kfree_skb(struct sk_buff *skb)
1122 {
1123         kfree_skb_reason(skb, SKB_DROP_REASON_NOT_SPECIFIED);
1124 }
1125
1126 void skb_release_head_state(struct sk_buff *skb);
1127 void kfree_skb_list(struct sk_buff *segs);
1128 void skb_dump(const char *level, const struct sk_buff *skb, bool full_pkt);
1129 void skb_tx_error(struct sk_buff *skb);
1130
1131 #ifdef CONFIG_TRACEPOINTS
1132 void consume_skb(struct sk_buff *skb);
1133 #else
1134 static inline void consume_skb(struct sk_buff *skb)
1135 {
1136         return kfree_skb(skb);
1137 }
1138 #endif
1139
1140 void __consume_stateless_skb(struct sk_buff *skb);
1141 void  __kfree_skb(struct sk_buff *skb);
1142 extern struct kmem_cache *skbuff_head_cache;
1143
1144 void kfree_skb_partial(struct sk_buff *skb, bool head_stolen);
1145 bool skb_try_coalesce(struct sk_buff *to, struct sk_buff *from,
1146                       bool *fragstolen, int *delta_truesize);
1147
1148 struct sk_buff *__alloc_skb(unsigned int size, gfp_t priority, int flags,
1149                             int node);
1150 struct sk_buff *__build_skb(void *data, unsigned int frag_size);
1151 struct sk_buff *build_skb(void *data, unsigned int frag_size);
1152 struct sk_buff *build_skb_around(struct sk_buff *skb,
1153                                  void *data, unsigned int frag_size);
1154
1155 struct sk_buff *napi_build_skb(void *data, unsigned int frag_size);
1156
1157 /**
1158  * alloc_skb - allocate a network buffer
1159  * @size: size to allocate
1160  * @priority: allocation mask
1161  *
1162  * This function is a convenient wrapper around __alloc_skb().
1163  */
1164 static inline struct sk_buff *alloc_skb(unsigned int size,
1165                                         gfp_t priority)
1166 {
1167         return __alloc_skb(size, priority, 0, NUMA_NO_NODE);
1168 }
1169
1170 struct sk_buff *alloc_skb_with_frags(unsigned long header_len,
1171                                      unsigned long data_len,
1172                                      int max_page_order,
1173                                      int *errcode,
1174                                      gfp_t gfp_mask);
1175 struct sk_buff *alloc_skb_for_msg(struct sk_buff *first);
1176
1177 /* Layout of fast clones : [skb1][skb2][fclone_ref] */
1178 struct sk_buff_fclones {
1179         struct sk_buff  skb1;
1180
1181         struct sk_buff  skb2;
1182
1183         refcount_t      fclone_ref;
1184 };
1185
1186 /**
1187  *      skb_fclone_busy - check if fclone is busy
1188  *      @sk: socket
1189  *      @skb: buffer
1190  *
1191  * Returns true if skb is a fast clone, and its clone is not freed.
1192  * Some drivers call skb_orphan() in their ndo_start_xmit(),
1193  * so we also check that this didnt happen.
1194  */
1195 static inline bool skb_fclone_busy(const struct sock *sk,
1196                                    const struct sk_buff *skb)
1197 {
1198         const struct sk_buff_fclones *fclones;
1199
1200         fclones = container_of(skb, struct sk_buff_fclones, skb1);
1201
1202         return skb->fclone == SKB_FCLONE_ORIG &&
1203                refcount_read(&fclones->fclone_ref) > 1 &&
1204                READ_ONCE(fclones->skb2.sk) == sk;
1205 }
1206
1207 /**
1208  * alloc_skb_fclone - allocate a network buffer from fclone cache
1209  * @size: size to allocate
1210  * @priority: allocation mask
1211  *
1212  * This function is a convenient wrapper around __alloc_skb().
1213  */
1214 static inline struct sk_buff *alloc_skb_fclone(unsigned int size,
1215                                                gfp_t priority)
1216 {
1217         return __alloc_skb(size, priority, SKB_ALLOC_FCLONE, NUMA_NO_NODE);
1218 }
1219
1220 struct sk_buff *skb_morph(struct sk_buff *dst, struct sk_buff *src);
1221 void skb_headers_offset_update(struct sk_buff *skb, int off);
1222 int skb_copy_ubufs(struct sk_buff *skb, gfp_t gfp_mask);
1223 struct sk_buff *skb_clone(struct sk_buff *skb, gfp_t priority);
1224 void skb_copy_header(struct sk_buff *new, const struct sk_buff *old);
1225 struct sk_buff *skb_copy(const struct sk_buff *skb, gfp_t priority);
1226 struct sk_buff *__pskb_copy_fclone(struct sk_buff *skb, int headroom,
1227                                    gfp_t gfp_mask, bool fclone);
1228 static inline struct sk_buff *__pskb_copy(struct sk_buff *skb, int headroom,
1229                                           gfp_t gfp_mask)
1230 {
1231         return __pskb_copy_fclone(skb, headroom, gfp_mask, false);
1232 }
1233
1234 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, gfp_t gfp_mask);
1235 struct sk_buff *skb_realloc_headroom(struct sk_buff *skb,
1236                                      unsigned int headroom);
1237 struct sk_buff *skb_expand_head(struct sk_buff *skb, unsigned int headroom);
1238 struct sk_buff *skb_copy_expand(const struct sk_buff *skb, int newheadroom,
1239                                 int newtailroom, gfp_t priority);
1240 int __must_check skb_to_sgvec_nomark(struct sk_buff *skb, struct scatterlist *sg,
1241                                      int offset, int len);
1242 int __must_check skb_to_sgvec(struct sk_buff *skb, struct scatterlist *sg,
1243                               int offset, int len);
1244 int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer);
1245 int __skb_pad(struct sk_buff *skb, int pad, bool free_on_error);
1246
1247 /**
1248  *      skb_pad                 -       zero pad the tail of an skb
1249  *      @skb: buffer to pad
1250  *      @pad: space to pad
1251  *
1252  *      Ensure that a buffer is followed by a padding area that is zero
1253  *      filled. Used by network drivers which may DMA or transfer data
1254  *      beyond the buffer end onto the wire.
1255  *
1256  *      May return error in out of memory cases. The skb is freed on error.
1257  */
1258 static inline int skb_pad(struct sk_buff *skb, int pad)
1259 {
1260         return __skb_pad(skb, pad, true);
1261 }
1262 #define dev_kfree_skb(a)        consume_skb(a)
1263
1264 int skb_append_pagefrags(struct sk_buff *skb, struct page *page,
1265                          int offset, size_t size);
1266
1267 struct skb_seq_state {
1268         __u32           lower_offset;
1269         __u32           upper_offset;
1270         __u32           frag_idx;
1271         __u32           stepped_offset;
1272         struct sk_buff  *root_skb;
1273         struct sk_buff  *cur_skb;
1274         __u8            *frag_data;
1275         __u32           frag_off;
1276 };
1277
1278 void skb_prepare_seq_read(struct sk_buff *skb, unsigned int from,
1279                           unsigned int to, struct skb_seq_state *st);
1280 unsigned int skb_seq_read(unsigned int consumed, const u8 **data,
1281                           struct skb_seq_state *st);
1282 void skb_abort_seq_read(struct skb_seq_state *st);
1283
1284 unsigned int skb_find_text(struct sk_buff *skb, unsigned int from,
1285                            unsigned int to, struct ts_config *config);
1286
1287 /*
1288  * Packet hash types specify the type of hash in skb_set_hash.
1289  *
1290  * Hash types refer to the protocol layer addresses which are used to
1291  * construct a packet's hash. The hashes are used to differentiate or identify
1292  * flows of the protocol layer for the hash type. Hash types are either
1293  * layer-2 (L2), layer-3 (L3), or layer-4 (L4).
1294  *
1295  * Properties of hashes:
1296  *
1297  * 1) Two packets in different flows have different hash values
1298  * 2) Two packets in the same flow should have the same hash value
1299  *
1300  * A hash at a higher layer is considered to be more specific. A driver should
1301  * set the most specific hash possible.
1302  *
1303  * A driver cannot indicate a more specific hash than the layer at which a hash
1304  * was computed. For instance an L3 hash cannot be set as an L4 hash.
1305  *
1306  * A driver may indicate a hash level which is less specific than the
1307  * actual layer the hash was computed on. For instance, a hash computed
1308  * at L4 may be considered an L3 hash. This should only be done if the
1309  * driver can't unambiguously determine that the HW computed the hash at
1310  * the higher layer. Note that the "should" in the second property above
1311  * permits this.
1312  */
1313 enum pkt_hash_types {
1314         PKT_HASH_TYPE_NONE,     /* Undefined type */
1315         PKT_HASH_TYPE_L2,       /* Input: src_MAC, dest_MAC */
1316         PKT_HASH_TYPE_L3,       /* Input: src_IP, dst_IP */
1317         PKT_HASH_TYPE_L4,       /* Input: src_IP, dst_IP, src_port, dst_port */
1318 };
1319
1320 static inline void skb_clear_hash(struct sk_buff *skb)
1321 {
1322         skb->hash = 0;
1323         skb->sw_hash = 0;
1324         skb->l4_hash = 0;
1325 }
1326
1327 static inline void skb_clear_hash_if_not_l4(struct sk_buff *skb)
1328 {
1329         if (!skb->l4_hash)
1330                 skb_clear_hash(skb);
1331 }
1332
1333 static inline void
1334 __skb_set_hash(struct sk_buff *skb, __u32 hash, bool is_sw, bool is_l4)
1335 {
1336         skb->l4_hash = is_l4;
1337         skb->sw_hash = is_sw;
1338         skb->hash = hash;
1339 }
1340
1341 static inline void
1342 skb_set_hash(struct sk_buff *skb, __u32 hash, enum pkt_hash_types type)
1343 {
1344         /* Used by drivers to set hash from HW */
1345         __skb_set_hash(skb, hash, false, type == PKT_HASH_TYPE_L4);
1346 }
1347
1348 static inline void
1349 __skb_set_sw_hash(struct sk_buff *skb, __u32 hash, bool is_l4)
1350 {
1351         __skb_set_hash(skb, hash, true, is_l4);
1352 }
1353
1354 void __skb_get_hash(struct sk_buff *skb);
1355 u32 __skb_get_hash_symmetric(const struct sk_buff *skb);
1356 u32 skb_get_poff(const struct sk_buff *skb);
1357 u32 __skb_get_poff(const struct sk_buff *skb, const void *data,
1358                    const struct flow_keys_basic *keys, int hlen);
1359 __be32 __skb_flow_get_ports(const struct sk_buff *skb, int thoff, u8 ip_proto,
1360                             const void *data, int hlen_proto);
1361
1362 static inline __be32 skb_flow_get_ports(const struct sk_buff *skb,
1363                                         int thoff, u8 ip_proto)
1364 {
1365         return __skb_flow_get_ports(skb, thoff, ip_proto, NULL, 0);
1366 }
1367
1368 void skb_flow_dissector_init(struct flow_dissector *flow_dissector,
1369                              const struct flow_dissector_key *key,
1370                              unsigned int key_count);
1371
1372 struct bpf_flow_dissector;
1373 bool bpf_flow_dissect(struct bpf_prog *prog, struct bpf_flow_dissector *ctx,
1374                       __be16 proto, int nhoff, int hlen, unsigned int flags);
1375
1376 bool __skb_flow_dissect(const struct net *net,
1377                         const struct sk_buff *skb,
1378                         struct flow_dissector *flow_dissector,
1379                         void *target_container, const void *data,
1380                         __be16 proto, int nhoff, int hlen, unsigned int flags);
1381
1382 static inline bool skb_flow_dissect(const struct sk_buff *skb,
1383                                     struct flow_dissector *flow_dissector,
1384                                     void *target_container, unsigned int flags)
1385 {
1386         return __skb_flow_dissect(NULL, skb, flow_dissector,
1387                                   target_container, NULL, 0, 0, 0, flags);
1388 }
1389
1390 static inline bool skb_flow_dissect_flow_keys(const struct sk_buff *skb,
1391                                               struct flow_keys *flow,
1392                                               unsigned int flags)
1393 {
1394         memset(flow, 0, sizeof(*flow));
1395         return __skb_flow_dissect(NULL, skb, &flow_keys_dissector,
1396                                   flow, NULL, 0, 0, 0, flags);
1397 }
1398
1399 static inline bool
1400 skb_flow_dissect_flow_keys_basic(const struct net *net,
1401                                  const struct sk_buff *skb,
1402                                  struct flow_keys_basic *flow,
1403                                  const void *data, __be16 proto,
1404                                  int nhoff, int hlen, unsigned int flags)
1405 {
1406         memset(flow, 0, sizeof(*flow));
1407         return __skb_flow_dissect(net, skb, &flow_keys_basic_dissector, flow,
1408                                   data, proto, nhoff, hlen, flags);
1409 }
1410
1411 void skb_flow_dissect_meta(const struct sk_buff *skb,
1412                            struct flow_dissector *flow_dissector,
1413                            void *target_container);
1414
1415 /* Gets a skb connection tracking info, ctinfo map should be a
1416  * map of mapsize to translate enum ip_conntrack_info states
1417  * to user states.
1418  */
1419 void
1420 skb_flow_dissect_ct(const struct sk_buff *skb,
1421                     struct flow_dissector *flow_dissector,
1422                     void *target_container,
1423                     u16 *ctinfo_map, size_t mapsize,
1424                     bool post_ct, u16 zone);
1425 void
1426 skb_flow_dissect_tunnel_info(const struct sk_buff *skb,
1427                              struct flow_dissector *flow_dissector,
1428                              void *target_container);
1429
1430 void skb_flow_dissect_hash(const struct sk_buff *skb,
1431                            struct flow_dissector *flow_dissector,
1432                            void *target_container);
1433
1434 static inline __u32 skb_get_hash(struct sk_buff *skb)
1435 {
1436         if (!skb->l4_hash && !skb->sw_hash)
1437                 __skb_get_hash(skb);
1438
1439         return skb->hash;
1440 }
1441
1442 static inline __u32 skb_get_hash_flowi6(struct sk_buff *skb, const struct flowi6 *fl6)
1443 {
1444         if (!skb->l4_hash && !skb->sw_hash) {
1445                 struct flow_keys keys;
1446                 __u32 hash = __get_hash_from_flowi6(fl6, &keys);
1447
1448                 __skb_set_sw_hash(skb, hash, flow_keys_have_l4(&keys));
1449         }
1450
1451         return skb->hash;
1452 }
1453
1454 __u32 skb_get_hash_perturb(const struct sk_buff *skb,
1455                            const siphash_key_t *perturb);
1456
1457 static inline __u32 skb_get_hash_raw(const struct sk_buff *skb)
1458 {
1459         return skb->hash;
1460 }
1461
1462 static inline void skb_copy_hash(struct sk_buff *to, const struct sk_buff *from)
1463 {
1464         to->hash = from->hash;
1465         to->sw_hash = from->sw_hash;
1466         to->l4_hash = from->l4_hash;
1467 };
1468
1469 static inline void skb_copy_decrypted(struct sk_buff *to,
1470                                       const struct sk_buff *from)
1471 {
1472 #ifdef CONFIG_TLS_DEVICE
1473         to->decrypted = from->decrypted;
1474 #endif
1475 }
1476
1477 #ifdef NET_SKBUFF_DATA_USES_OFFSET
1478 static inline unsigned char *skb_end_pointer(const struct sk_buff *skb)
1479 {
1480         return skb->head + skb->end;
1481 }
1482
1483 static inline unsigned int skb_end_offset(const struct sk_buff *skb)
1484 {
1485         return skb->end;
1486 }
1487
1488 static inline void skb_set_end_offset(struct sk_buff *skb, unsigned int offset)
1489 {
1490         skb->end = offset;
1491 }
1492 #else
1493 static inline unsigned char *skb_end_pointer(const struct sk_buff *skb)
1494 {
1495         return skb->end;
1496 }
1497
1498 static inline unsigned int skb_end_offset(const struct sk_buff *skb)
1499 {
1500         return skb->end - skb->head;
1501 }
1502
1503 static inline void skb_set_end_offset(struct sk_buff *skb, unsigned int offset)
1504 {
1505         skb->end = skb->head + offset;
1506 }
1507 #endif
1508
1509 /* Internal */
1510 #define skb_shinfo(SKB) ((struct skb_shared_info *)(skb_end_pointer(SKB)))
1511
1512 static inline struct skb_shared_hwtstamps *skb_hwtstamps(struct sk_buff *skb)
1513 {
1514         return &skb_shinfo(skb)->hwtstamps;
1515 }
1516
1517 static inline struct ubuf_info *skb_zcopy(struct sk_buff *skb)
1518 {
1519         bool is_zcopy = skb && skb_shinfo(skb)->flags & SKBFL_ZEROCOPY_ENABLE;
1520
1521         return is_zcopy ? skb_uarg(skb) : NULL;
1522 }
1523
1524 static inline void net_zcopy_get(struct ubuf_info *uarg)
1525 {
1526         refcount_inc(&uarg->refcnt);
1527 }
1528
1529 static inline void skb_zcopy_init(struct sk_buff *skb, struct ubuf_info *uarg)
1530 {
1531         skb_shinfo(skb)->destructor_arg = uarg;
1532         skb_shinfo(skb)->flags |= uarg->flags;
1533 }
1534
1535 static inline void skb_zcopy_set(struct sk_buff *skb, struct ubuf_info *uarg,
1536                                  bool *have_ref)
1537 {
1538         if (skb && uarg && !skb_zcopy(skb)) {
1539                 if (unlikely(have_ref && *have_ref))
1540                         *have_ref = false;
1541                 else
1542                         net_zcopy_get(uarg);
1543                 skb_zcopy_init(skb, uarg);
1544         }
1545 }
1546
1547 static inline void skb_zcopy_set_nouarg(struct sk_buff *skb, void *val)
1548 {
1549         skb_shinfo(skb)->destructor_arg = (void *)((uintptr_t) val | 0x1UL);
1550         skb_shinfo(skb)->flags |= SKBFL_ZEROCOPY_FRAG;
1551 }
1552
1553 static inline bool skb_zcopy_is_nouarg(struct sk_buff *skb)
1554 {
1555         return (uintptr_t) skb_shinfo(skb)->destructor_arg & 0x1UL;
1556 }
1557
1558 static inline void *skb_zcopy_get_nouarg(struct sk_buff *skb)
1559 {
1560         return (void *)((uintptr_t) skb_shinfo(skb)->destructor_arg & ~0x1UL);
1561 }
1562
1563 static inline void net_zcopy_put(struct ubuf_info *uarg)
1564 {
1565         if (uarg)
1566                 uarg->callback(NULL, uarg, true);
1567 }
1568
1569 static inline void net_zcopy_put_abort(struct ubuf_info *uarg, bool have_uref)
1570 {
1571         if (uarg) {
1572                 if (uarg->callback == msg_zerocopy_callback)
1573                         msg_zerocopy_put_abort(uarg, have_uref);
1574                 else if (have_uref)
1575                         net_zcopy_put(uarg);
1576         }
1577 }
1578
1579 /* Release a reference on a zerocopy structure */
1580 static inline void skb_zcopy_clear(struct sk_buff *skb, bool zerocopy_success)
1581 {
1582         struct ubuf_info *uarg = skb_zcopy(skb);
1583
1584         if (uarg) {
1585                 if (!skb_zcopy_is_nouarg(skb))
1586                         uarg->callback(skb, uarg, zerocopy_success);
1587
1588                 skb_shinfo(skb)->flags &= ~SKBFL_ZEROCOPY_FRAG;
1589         }
1590 }
1591
1592 static inline void skb_mark_not_on_list(struct sk_buff *skb)
1593 {
1594         skb->next = NULL;
1595 }
1596
1597 /* Iterate through singly-linked GSO fragments of an skb. */
1598 #define skb_list_walk_safe(first, skb, next_skb)                               \
1599         for ((skb) = (first), (next_skb) = (skb) ? (skb)->next : NULL; (skb);  \
1600              (skb) = (next_skb), (next_skb) = (skb) ? (skb)->next : NULL)
1601
1602 static inline void skb_list_del_init(struct sk_buff *skb)
1603 {
1604         __list_del_entry(&skb->list);
1605         skb_mark_not_on_list(skb);
1606 }
1607
1608 /**
1609  *      skb_queue_empty - check if a queue is empty
1610  *      @list: queue head
1611  *
1612  *      Returns true if the queue is empty, false otherwise.
1613  */
1614 static inline int skb_queue_empty(const struct sk_buff_head *list)
1615 {
1616         return list->next == (const struct sk_buff *) list;
1617 }
1618
1619 /**
1620  *      skb_queue_empty_lockless - check if a queue is empty
1621  *      @list: queue head
1622  *
1623  *      Returns true if the queue is empty, false otherwise.
1624  *      This variant can be used in lockless contexts.
1625  */
1626 static inline bool skb_queue_empty_lockless(const struct sk_buff_head *list)
1627 {
1628         return READ_ONCE(list->next) == (const struct sk_buff *) list;
1629 }
1630
1631
1632 /**
1633  *      skb_queue_is_last - check if skb is the last entry in the queue
1634  *      @list: queue head
1635  *      @skb: buffer
1636  *
1637  *      Returns true if @skb is the last buffer on the list.
1638  */
1639 static inline bool skb_queue_is_last(const struct sk_buff_head *list,
1640                                      const struct sk_buff *skb)
1641 {
1642         return skb->next == (const struct sk_buff *) list;
1643 }
1644
1645 /**
1646  *      skb_queue_is_first - check if skb is the first entry in the queue
1647  *      @list: queue head
1648  *      @skb: buffer
1649  *
1650  *      Returns true if @skb is the first buffer on the list.
1651  */
1652 static inline bool skb_queue_is_first(const struct sk_buff_head *list,
1653                                       const struct sk_buff *skb)
1654 {
1655         return skb->prev == (const struct sk_buff *) list;
1656 }
1657
1658 /**
1659  *      skb_queue_next - return the next packet in the queue
1660  *      @list: queue head
1661  *      @skb: current buffer
1662  *
1663  *      Return the next packet in @list after @skb.  It is only valid to
1664  *      call this if skb_queue_is_last() evaluates to false.
1665  */
1666 static inline struct sk_buff *skb_queue_next(const struct sk_buff_head *list,
1667                                              const struct sk_buff *skb)
1668 {
1669         /* This BUG_ON may seem severe, but if we just return then we
1670          * are going to dereference garbage.
1671          */
1672         BUG_ON(skb_queue_is_last(list, skb));
1673         return skb->next;
1674 }
1675
1676 /**
1677  *      skb_queue_prev - return the prev packet in the queue
1678  *      @list: queue head
1679  *      @skb: current buffer
1680  *
1681  *      Return the prev packet in @list before @skb.  It is only valid to
1682  *      call this if skb_queue_is_first() evaluates to false.
1683  */
1684 static inline struct sk_buff *skb_queue_prev(const struct sk_buff_head *list,
1685                                              const struct sk_buff *skb)
1686 {
1687         /* This BUG_ON may seem severe, but if we just return then we
1688          * are going to dereference garbage.
1689          */
1690         BUG_ON(skb_queue_is_first(list, skb));
1691         return skb->prev;
1692 }
1693
1694 /**
1695  *      skb_get - reference buffer
1696  *      @skb: buffer to reference
1697  *
1698  *      Makes another reference to a socket buffer and returns a pointer
1699  *      to the buffer.
1700  */
1701 static inline struct sk_buff *skb_get(struct sk_buff *skb)
1702 {
1703         refcount_inc(&skb->users);
1704         return skb;
1705 }
1706
1707 /*
1708  * If users == 1, we are the only owner and can avoid redundant atomic changes.
1709  */
1710
1711 /**
1712  *      skb_cloned - is the buffer a clone
1713  *      @skb: buffer to check
1714  *
1715  *      Returns true if the buffer was generated with skb_clone() and is
1716  *      one of multiple shared copies of the buffer. Cloned buffers are
1717  *      shared data so must not be written to under normal circumstances.
1718  */
1719 static inline int skb_cloned(const struct sk_buff *skb)
1720 {
1721         return skb->cloned &&
1722                (atomic_read(&skb_shinfo(skb)->dataref) & SKB_DATAREF_MASK) != 1;
1723 }
1724
1725 static inline int skb_unclone(struct sk_buff *skb, gfp_t pri)
1726 {
1727         might_sleep_if(gfpflags_allow_blocking(pri));
1728
1729         if (skb_cloned(skb))
1730                 return pskb_expand_head(skb, 0, 0, pri);
1731
1732         return 0;
1733 }
1734
1735 /* This variant of skb_unclone() makes sure skb->truesize
1736  * and skb_end_offset() are not changed, whenever a new skb->head is needed.
1737  *
1738  * Indeed there is no guarantee that ksize(kmalloc(X)) == ksize(kmalloc(X))
1739  * when various debugging features are in place.
1740  */
1741 int __skb_unclone_keeptruesize(struct sk_buff *skb, gfp_t pri);
1742 static inline int skb_unclone_keeptruesize(struct sk_buff *skb, gfp_t pri)
1743 {
1744         might_sleep_if(gfpflags_allow_blocking(pri));
1745
1746         if (skb_cloned(skb))
1747                 return __skb_unclone_keeptruesize(skb, pri);
1748         return 0;
1749 }
1750
1751 /**
1752  *      skb_header_cloned - is the header a clone
1753  *      @skb: buffer to check
1754  *
1755  *      Returns true if modifying the header part of the buffer requires
1756  *      the data to be copied.
1757  */
1758 static inline int skb_header_cloned(const struct sk_buff *skb)
1759 {
1760         int dataref;
1761
1762         if (!skb->cloned)
1763                 return 0;
1764
1765         dataref = atomic_read(&skb_shinfo(skb)->dataref);
1766         dataref = (dataref & SKB_DATAREF_MASK) - (dataref >> SKB_DATAREF_SHIFT);
1767         return dataref != 1;
1768 }
1769
1770 static inline int skb_header_unclone(struct sk_buff *skb, gfp_t pri)
1771 {
1772         might_sleep_if(gfpflags_allow_blocking(pri));
1773
1774         if (skb_header_cloned(skb))
1775                 return pskb_expand_head(skb, 0, 0, pri);
1776
1777         return 0;
1778 }
1779
1780 /**
1781  *      __skb_header_release - release reference to header
1782  *      @skb: buffer to operate on
1783  */
1784 static inline void __skb_header_release(struct sk_buff *skb)
1785 {
1786         skb->nohdr = 1;
1787         atomic_set(&skb_shinfo(skb)->dataref, 1 + (1 << SKB_DATAREF_SHIFT));
1788 }
1789
1790
1791 /**
1792  *      skb_shared - is the buffer shared
1793  *      @skb: buffer to check
1794  *
1795  *      Returns true if more than one person has a reference to this
1796  *      buffer.
1797  */
1798 static inline int skb_shared(const struct sk_buff *skb)
1799 {
1800         return refcount_read(&skb->users) != 1;
1801 }
1802
1803 /**
1804  *      skb_share_check - check if buffer is shared and if so clone it
1805  *      @skb: buffer to check
1806  *      @pri: priority for memory allocation
1807  *
1808  *      If the buffer is shared the buffer is cloned and the old copy
1809  *      drops a reference. A new clone with a single reference is returned.
1810  *      If the buffer is not shared the original buffer is returned. When
1811  *      being called from interrupt status or with spinlocks held pri must
1812  *      be GFP_ATOMIC.
1813  *
1814  *      NULL is returned on a memory allocation failure.
1815  */
1816 static inline struct sk_buff *skb_share_check(struct sk_buff *skb, gfp_t pri)
1817 {
1818         might_sleep_if(gfpflags_allow_blocking(pri));
1819         if (skb_shared(skb)) {
1820                 struct sk_buff *nskb = skb_clone(skb, pri);
1821
1822                 if (likely(nskb))
1823                         consume_skb(skb);
1824                 else
1825                         kfree_skb(skb);
1826                 skb = nskb;
1827         }
1828         return skb;
1829 }
1830
1831 /*
1832  *      Copy shared buffers into a new sk_buff. We effectively do COW on
1833  *      packets to handle cases where we have a local reader and forward
1834  *      and a couple of other messy ones. The normal one is tcpdumping
1835  *      a packet thats being forwarded.
1836  */
1837
1838 /**
1839  *      skb_unshare - make a copy of a shared buffer
1840  *      @skb: buffer to check
1841  *      @pri: priority for memory allocation
1842  *
1843  *      If the socket buffer is a clone then this function creates a new
1844  *      copy of the data, drops a reference count on the old copy and returns
1845  *      the new copy with the reference count at 1. If the buffer is not a clone
1846  *      the original buffer is returned. When called with a spinlock held or
1847  *      from interrupt state @pri must be %GFP_ATOMIC
1848  *
1849  *      %NULL is returned on a memory allocation failure.
1850  */
1851 static inline struct sk_buff *skb_unshare(struct sk_buff *skb,
1852                                           gfp_t pri)
1853 {
1854         might_sleep_if(gfpflags_allow_blocking(pri));
1855         if (skb_cloned(skb)) {
1856                 struct sk_buff *nskb = skb_copy(skb, pri);
1857
1858                 /* Free our shared copy */
1859                 if (likely(nskb))
1860                         consume_skb(skb);
1861                 else
1862                         kfree_skb(skb);
1863                 skb = nskb;
1864         }
1865         return skb;
1866 }
1867
1868 /**
1869  *      skb_peek - peek at the head of an &sk_buff_head
1870  *      @list_: list to peek at
1871  *
1872  *      Peek an &sk_buff. Unlike most other operations you _MUST_
1873  *      be careful with this one. A peek leaves the buffer on the
1874  *      list and someone else may run off with it. You must hold
1875  *      the appropriate locks or have a private queue to do this.
1876  *
1877  *      Returns %NULL for an empty list or a pointer to the head element.
1878  *      The reference count is not incremented and the reference is therefore
1879  *      volatile. Use with caution.
1880  */
1881 static inline struct sk_buff *skb_peek(const struct sk_buff_head *list_)
1882 {
1883         struct sk_buff *skb = list_->next;
1884
1885         if (skb == (struct sk_buff *)list_)
1886                 skb = NULL;
1887         return skb;
1888 }
1889
1890 /**
1891  *      __skb_peek - peek at the head of a non-empty &sk_buff_head
1892  *      @list_: list to peek at
1893  *
1894  *      Like skb_peek(), but the caller knows that the list is not empty.
1895  */
1896 static inline struct sk_buff *__skb_peek(const struct sk_buff_head *list_)
1897 {
1898         return list_->next;
1899 }
1900
1901 /**
1902  *      skb_peek_next - peek skb following the given one from a queue
1903  *      @skb: skb to start from
1904  *      @list_: list to peek at
1905  *
1906  *      Returns %NULL when the end of the list is met or a pointer to the
1907  *      next element. The reference count is not incremented and the
1908  *      reference is therefore volatile. Use with caution.
1909  */
1910 static inline struct sk_buff *skb_peek_next(struct sk_buff *skb,
1911                 const struct sk_buff_head *list_)
1912 {
1913         struct sk_buff *next = skb->next;
1914
1915         if (next == (struct sk_buff *)list_)
1916                 next = NULL;
1917         return next;
1918 }
1919
1920 /**
1921  *      skb_peek_tail - peek at the tail of an &sk_buff_head
1922  *      @list_: list to peek at
1923  *
1924  *      Peek an &sk_buff. Unlike most other operations you _MUST_
1925  *      be careful with this one. A peek leaves the buffer on the
1926  *      list and someone else may run off with it. You must hold
1927  *      the appropriate locks or have a private queue to do this.
1928  *
1929  *      Returns %NULL for an empty list or a pointer to the tail element.
1930  *      The reference count is not incremented and the reference is therefore
1931  *      volatile. Use with caution.
1932  */
1933 static inline struct sk_buff *skb_peek_tail(const struct sk_buff_head *list_)
1934 {
1935         struct sk_buff *skb = READ_ONCE(list_->prev);
1936
1937         if (skb == (struct sk_buff *)list_)
1938                 skb = NULL;
1939         return skb;
1940
1941 }
1942
1943 /**
1944  *      skb_queue_len   - get queue length
1945  *      @list_: list to measure
1946  *
1947  *      Return the length of an &sk_buff queue.
1948  */
1949 static inline __u32 skb_queue_len(const struct sk_buff_head *list_)
1950 {
1951         return list_->qlen;
1952 }
1953
1954 /**
1955  *      skb_queue_len_lockless  - get queue length
1956  *      @list_: list to measure
1957  *
1958  *      Return the length of an &sk_buff queue.
1959  *      This variant can be used in lockless contexts.
1960  */
1961 static inline __u32 skb_queue_len_lockless(const struct sk_buff_head *list_)
1962 {
1963         return READ_ONCE(list_->qlen);
1964 }
1965
1966 /**
1967  *      __skb_queue_head_init - initialize non-spinlock portions of sk_buff_head
1968  *      @list: queue to initialize
1969  *
1970  *      This initializes only the list and queue length aspects of
1971  *      an sk_buff_head object.  This allows to initialize the list
1972  *      aspects of an sk_buff_head without reinitializing things like
1973  *      the spinlock.  It can also be used for on-stack sk_buff_head
1974  *      objects where the spinlock is known to not be used.
1975  */
1976 static inline void __skb_queue_head_init(struct sk_buff_head *list)
1977 {
1978         list->prev = list->next = (struct sk_buff *)list;
1979         list->qlen = 0;
1980 }
1981
1982 /*
1983  * This function creates a split out lock class for each invocation;
1984  * this is needed for now since a whole lot of users of the skb-queue
1985  * infrastructure in drivers have different locking usage (in hardirq)
1986  * than the networking core (in softirq only). In the long run either the
1987  * network layer or drivers should need annotation to consolidate the
1988  * main types of usage into 3 classes.
1989  */
1990 static inline void skb_queue_head_init(struct sk_buff_head *list)
1991 {
1992         spin_lock_init(&list->lock);
1993         __skb_queue_head_init(list);
1994 }
1995
1996 static inline void skb_queue_head_init_class(struct sk_buff_head *list,
1997                 struct lock_class_key *class)
1998 {
1999         skb_queue_head_init(list);
2000         lockdep_set_class(&list->lock, class);
2001 }
2002
2003 /*
2004  *      Insert an sk_buff on a list.
2005  *
2006  *      The "__skb_xxxx()" functions are the non-atomic ones that
2007  *      can only be called with interrupts disabled.
2008  */
2009 static inline void __skb_insert(struct sk_buff *newsk,
2010                                 struct sk_buff *prev, struct sk_buff *next,
2011                                 struct sk_buff_head *list)
2012 {
2013         /* See skb_queue_empty_lockless() and skb_peek_tail()
2014          * for the opposite READ_ONCE()
2015          */
2016         WRITE_ONCE(newsk->next, next);
2017         WRITE_ONCE(newsk->prev, prev);
2018         WRITE_ONCE(next->prev, newsk);
2019         WRITE_ONCE(prev->next, newsk);
2020         WRITE_ONCE(list->qlen, list->qlen + 1);
2021 }
2022
2023 static inline void __skb_queue_splice(const struct sk_buff_head *list,
2024                                       struct sk_buff *prev,
2025                                       struct sk_buff *next)
2026 {
2027         struct sk_buff *first = list->next;
2028         struct sk_buff *last = list->prev;
2029
2030         WRITE_ONCE(first->prev, prev);
2031         WRITE_ONCE(prev->next, first);
2032
2033         WRITE_ONCE(last->next, next);
2034         WRITE_ONCE(next->prev, last);
2035 }
2036
2037 /**
2038  *      skb_queue_splice - join two skb lists, this is designed for stacks
2039  *      @list: the new list to add
2040  *      @head: the place to add it in the first list
2041  */
2042 static inline void skb_queue_splice(const struct sk_buff_head *list,
2043                                     struct sk_buff_head *head)
2044 {
2045         if (!skb_queue_empty(list)) {
2046                 __skb_queue_splice(list, (struct sk_buff *) head, head->next);
2047                 head->qlen += list->qlen;
2048         }
2049 }
2050
2051 /**
2052  *      skb_queue_splice_init - join two skb lists and reinitialise the emptied list
2053  *      @list: the new list to add
2054  *      @head: the place to add it in the first list
2055  *
2056  *      The list at @list is reinitialised
2057  */
2058 static inline void skb_queue_splice_init(struct sk_buff_head *list,
2059                                          struct sk_buff_head *head)
2060 {
2061         if (!skb_queue_empty(list)) {
2062                 __skb_queue_splice(list, (struct sk_buff *) head, head->next);
2063                 head->qlen += list->qlen;
2064                 __skb_queue_head_init(list);
2065         }
2066 }
2067
2068 /**
2069  *      skb_queue_splice_tail - join two skb lists, each list being a queue
2070  *      @list: the new list to add
2071  *      @head: the place to add it in the first list
2072  */
2073 static inline void skb_queue_splice_tail(const struct sk_buff_head *list,
2074                                          struct sk_buff_head *head)
2075 {
2076         if (!skb_queue_empty(list)) {
2077                 __skb_queue_splice(list, head->prev, (struct sk_buff *) head);
2078                 head->qlen += list->qlen;
2079         }
2080 }
2081
2082 /**
2083  *      skb_queue_splice_tail_init - join two skb lists and reinitialise the emptied list
2084  *      @list: the new list to add
2085  *      @head: the place to add it in the first list
2086  *
2087  *      Each of the lists is a queue.
2088  *      The list at @list is reinitialised
2089  */
2090 static inline void skb_queue_splice_tail_init(struct sk_buff_head *list,
2091                                               struct sk_buff_head *head)
2092 {
2093         if (!skb_queue_empty(list)) {
2094                 __skb_queue_splice(list, head->prev, (struct sk_buff *) head);
2095                 head->qlen += list->qlen;
2096                 __skb_queue_head_init(list);
2097         }
2098 }
2099
2100 /**
2101  *      __skb_queue_after - queue a buffer at the list head
2102  *      @list: list to use
2103  *      @prev: place after this buffer
2104  *      @newsk: buffer to queue
2105  *
2106  *      Queue a buffer int the middle of a list. This function takes no locks
2107  *      and you must therefore hold required locks before calling it.
2108  *
2109  *      A buffer cannot be placed on two lists at the same time.
2110  */
2111 static inline void __skb_queue_after(struct sk_buff_head *list,
2112                                      struct sk_buff *prev,
2113                                      struct sk_buff *newsk)
2114 {
2115         __skb_insert(newsk, prev, prev->next, list);
2116 }
2117
2118 void skb_append(struct sk_buff *old, struct sk_buff *newsk,
2119                 struct sk_buff_head *list);
2120
2121 static inline void __skb_queue_before(struct sk_buff_head *list,
2122                                       struct sk_buff *next,
2123                                       struct sk_buff *newsk)
2124 {
2125         __skb_insert(newsk, next->prev, next, list);
2126 }
2127
2128 /**
2129  *      __skb_queue_head - queue a buffer at the list head
2130  *      @list: list to use
2131  *      @newsk: buffer to queue
2132  *
2133  *      Queue a buffer at the start of a list. This function takes no locks
2134  *      and you must therefore hold required locks before calling it.
2135  *
2136  *      A buffer cannot be placed on two lists at the same time.
2137  */
2138 static inline void __skb_queue_head(struct sk_buff_head *list,
2139                                     struct sk_buff *newsk)
2140 {
2141         __skb_queue_after(list, (struct sk_buff *)list, newsk);
2142 }
2143 void skb_queue_head(struct sk_buff_head *list, struct sk_buff *newsk);
2144
2145 /**
2146  *      __skb_queue_tail - queue a buffer at the list tail
2147  *      @list: list to use
2148  *      @newsk: buffer to queue
2149  *
2150  *      Queue a buffer at the end of a list. This function takes no locks
2151  *      and you must therefore hold required locks before calling it.
2152  *
2153  *      A buffer cannot be placed on two lists at the same time.
2154  */
2155 static inline void __skb_queue_tail(struct sk_buff_head *list,
2156                                    struct sk_buff *newsk)
2157 {
2158         __skb_queue_before(list, (struct sk_buff *)list, newsk);
2159 }
2160 void skb_queue_tail(struct sk_buff_head *list, struct sk_buff *newsk);
2161
2162 /*
2163  * remove sk_buff from list. _Must_ be called atomically, and with
2164  * the list known..
2165  */
2166 void skb_unlink(struct sk_buff *skb, struct sk_buff_head *list);
2167 static inline void __skb_unlink(struct sk_buff *skb, struct sk_buff_head *list)
2168 {
2169         struct sk_buff *next, *prev;
2170
2171         WRITE_ONCE(list->qlen, list->qlen - 1);
2172         next       = skb->next;
2173         prev       = skb->prev;
2174         skb->next  = skb->prev = NULL;
2175         WRITE_ONCE(next->prev, prev);
2176         WRITE_ONCE(prev->next, next);
2177 }
2178
2179 /**
2180  *      __skb_dequeue - remove from the head of the queue
2181  *      @list: list to dequeue from
2182  *
2183  *      Remove the head of the list. This function does not take any locks
2184  *      so must be used with appropriate locks held only. The head item is
2185  *      returned or %NULL if the list is empty.
2186  */
2187 static inline struct sk_buff *__skb_dequeue(struct sk_buff_head *list)
2188 {
2189         struct sk_buff *skb = skb_peek(list);
2190         if (skb)
2191                 __skb_unlink(skb, list);
2192         return skb;
2193 }
2194 struct sk_buff *skb_dequeue(struct sk_buff_head *list);
2195
2196 /**
2197  *      __skb_dequeue_tail - remove from the tail of the queue
2198  *      @list: list to dequeue from
2199  *
2200  *      Remove the tail of the list. This function does not take any locks
2201  *      so must be used with appropriate locks held only. The tail item is
2202  *      returned or %NULL if the list is empty.
2203  */
2204 static inline struct sk_buff *__skb_dequeue_tail(struct sk_buff_head *list)
2205 {
2206         struct sk_buff *skb = skb_peek_tail(list);
2207         if (skb)
2208                 __skb_unlink(skb, list);
2209         return skb;
2210 }
2211 struct sk_buff *skb_dequeue_tail(struct sk_buff_head *list);
2212
2213
2214 static inline bool skb_is_nonlinear(const struct sk_buff *skb)
2215 {
2216         return skb->data_len;
2217 }
2218
2219 static inline unsigned int skb_headlen(const struct sk_buff *skb)
2220 {
2221         return skb->len - skb->data_len;
2222 }
2223
2224 static inline unsigned int __skb_pagelen(const struct sk_buff *skb)
2225 {
2226         unsigned int i, len = 0;
2227
2228         for (i = skb_shinfo(skb)->nr_frags - 1; (int)i >= 0; i--)
2229                 len += skb_frag_size(&skb_shinfo(skb)->frags[i]);
2230         return len;
2231 }
2232
2233 static inline unsigned int skb_pagelen(const struct sk_buff *skb)
2234 {
2235         return skb_headlen(skb) + __skb_pagelen(skb);
2236 }
2237
2238 static inline void __skb_fill_page_desc_noacc(struct skb_shared_info *shinfo,
2239                                               int i, struct page *page,
2240                                               int off, int size)
2241 {
2242         skb_frag_t *frag = &shinfo->frags[i];
2243
2244         /*
2245          * Propagate page pfmemalloc to the skb if we can. The problem is
2246          * that not all callers have unique ownership of the page but rely
2247          * on page_is_pfmemalloc doing the right thing(tm).
2248          */
2249         frag->bv_page             = page;
2250         frag->bv_offset           = off;
2251         skb_frag_size_set(frag, size);
2252 }
2253
2254 /**
2255  * __skb_fill_page_desc - initialise a paged fragment in an skb
2256  * @skb: buffer containing fragment to be initialised
2257  * @i: paged fragment index to initialise
2258  * @page: the page to use for this fragment
2259  * @off: the offset to the data with @page
2260  * @size: the length of the data
2261  *
2262  * Initialises the @i'th fragment of @skb to point to &size bytes at
2263  * offset @off within @page.
2264  *
2265  * Does not take any additional reference on the fragment.
2266  */
2267 static inline void __skb_fill_page_desc(struct sk_buff *skb, int i,
2268                                         struct page *page, int off, int size)
2269 {
2270         __skb_fill_page_desc_noacc(skb_shinfo(skb), i, page, off, size);
2271         page = compound_head(page);
2272         if (page_is_pfmemalloc(page))
2273                 skb->pfmemalloc = true;
2274 }
2275
2276 /**
2277  * skb_fill_page_desc - initialise a paged fragment in an skb
2278  * @skb: buffer containing fragment to be initialised
2279  * @i: paged fragment index to initialise
2280  * @page: the page to use for this fragment
2281  * @off: the offset to the data with @page
2282  * @size: the length of the data
2283  *
2284  * As per __skb_fill_page_desc() -- initialises the @i'th fragment of
2285  * @skb to point to @size bytes at offset @off within @page. In
2286  * addition updates @skb such that @i is the last fragment.
2287  *
2288  * Does not take any additional reference on the fragment.
2289  */
2290 static inline void skb_fill_page_desc(struct sk_buff *skb, int i,
2291                                       struct page *page, int off, int size)
2292 {
2293         __skb_fill_page_desc(skb, i, page, off, size);
2294         skb_shinfo(skb)->nr_frags = i + 1;
2295 }
2296
2297 /**
2298  * skb_fill_page_desc_noacc - initialise a paged fragment in an skb
2299  * @skb: buffer containing fragment to be initialised
2300  * @i: paged fragment index to initialise
2301  * @page: the page to use for this fragment
2302  * @off: the offset to the data with @page
2303  * @size: the length of the data
2304  *
2305  * Variant of skb_fill_page_desc() which does not deal with
2306  * pfmemalloc, if page is not owned by us.
2307  */
2308 static inline void skb_fill_page_desc_noacc(struct sk_buff *skb, int i,
2309                                             struct page *page, int off,
2310                                             int size)
2311 {
2312         struct skb_shared_info *shinfo = skb_shinfo(skb);
2313
2314         __skb_fill_page_desc_noacc(shinfo, i, page, off, size);
2315         shinfo->nr_frags = i + 1;
2316 }
2317
2318 void skb_add_rx_frag(struct sk_buff *skb, int i, struct page *page, int off,
2319                      int size, unsigned int truesize);
2320
2321 void skb_coalesce_rx_frag(struct sk_buff *skb, int i, int size,
2322                           unsigned int truesize);
2323
2324 #define SKB_LINEAR_ASSERT(skb)  BUG_ON(skb_is_nonlinear(skb))
2325
2326 #ifdef NET_SKBUFF_DATA_USES_OFFSET
2327 static inline unsigned char *skb_tail_pointer(const struct sk_buff *skb)
2328 {
2329         return skb->head + skb->tail;
2330 }
2331
2332 static inline void skb_reset_tail_pointer(struct sk_buff *skb)
2333 {
2334         skb->tail = skb->data - skb->head;
2335 }
2336
2337 static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
2338 {
2339         skb_reset_tail_pointer(skb);
2340         skb->tail += offset;
2341 }
2342
2343 #else /* NET_SKBUFF_DATA_USES_OFFSET */
2344 static inline unsigned char *skb_tail_pointer(const struct sk_buff *skb)
2345 {
2346         return skb->tail;
2347 }
2348
2349 static inline void skb_reset_tail_pointer(struct sk_buff *skb)
2350 {
2351         skb->tail = skb->data;
2352 }
2353
2354 static inline void skb_set_tail_pointer(struct sk_buff *skb, const int offset)
2355 {
2356         skb->tail = skb->data + offset;
2357 }
2358
2359 #endif /* NET_SKBUFF_DATA_USES_OFFSET */
2360
2361 static inline void skb_assert_len(struct sk_buff *skb)
2362 {
2363 #ifdef CONFIG_DEBUG_NET
2364         if (WARN_ONCE(!skb->len, "%s\n", __func__))
2365                 DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false);
2366 #endif /* CONFIG_DEBUG_NET */
2367 }
2368
2369 /*
2370  *      Add data to an sk_buff
2371  */
2372 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len);
2373 void *skb_put(struct sk_buff *skb, unsigned int len);
2374 static inline void *__skb_put(struct sk_buff *skb, unsigned int len)
2375 {
2376         void *tmp = skb_tail_pointer(skb);
2377         SKB_LINEAR_ASSERT(skb);
2378         skb->tail += len;
2379         skb->len  += len;
2380         return tmp;
2381 }
2382
2383 static inline void *__skb_put_zero(struct sk_buff *skb, unsigned int len)
2384 {
2385         void *tmp = __skb_put(skb, len);
2386
2387         memset(tmp, 0, len);
2388         return tmp;
2389 }
2390
2391 static inline void *__skb_put_data(struct sk_buff *skb, const void *data,
2392                                    unsigned int len)
2393 {
2394         void *tmp = __skb_put(skb, len);
2395
2396         memcpy(tmp, data, len);
2397         return tmp;
2398 }
2399
2400 static inline void __skb_put_u8(struct sk_buff *skb, u8 val)
2401 {
2402         *(u8 *)__skb_put(skb, 1) = val;
2403 }
2404
2405 static inline void *skb_put_zero(struct sk_buff *skb, unsigned int len)
2406 {
2407         void *tmp = skb_put(skb, len);
2408
2409         memset(tmp, 0, len);
2410
2411         return tmp;
2412 }
2413
2414 static inline void *skb_put_data(struct sk_buff *skb, const void *data,
2415                                  unsigned int len)
2416 {
2417         void *tmp = skb_put(skb, len);
2418
2419         memcpy(tmp, data, len);
2420
2421         return tmp;
2422 }
2423
2424 static inline void skb_put_u8(struct sk_buff *skb, u8 val)
2425 {
2426         *(u8 *)skb_put(skb, 1) = val;
2427 }
2428
2429 void *skb_push(struct sk_buff *skb, unsigned int len);
2430 static inline void *__skb_push(struct sk_buff *skb, unsigned int len)
2431 {
2432         skb->data -= len;
2433         skb->len  += len;
2434         return skb->data;
2435 }
2436
2437 void *skb_pull(struct sk_buff *skb, unsigned int len);
2438 static inline void *__skb_pull(struct sk_buff *skb, unsigned int len)
2439 {
2440         skb->len -= len;
2441         BUG_ON(skb->len < skb->data_len);
2442         return skb->data += len;
2443 }
2444
2445 static inline void *skb_pull_inline(struct sk_buff *skb, unsigned int len)
2446 {
2447         return unlikely(len > skb->len) ? NULL : __skb_pull(skb, len);
2448 }
2449
2450 void *__pskb_pull_tail(struct sk_buff *skb, int delta);
2451
2452 static inline void *__pskb_pull(struct sk_buff *skb, unsigned int len)
2453 {
2454         if (len > skb_headlen(skb) &&
2455             !__pskb_pull_tail(skb, len - skb_headlen(skb)))
2456                 return NULL;
2457         skb->len -= len;
2458         return skb->data += len;
2459 }
2460
2461 static inline void *pskb_pull(struct sk_buff *skb, unsigned int len)
2462 {
2463         return unlikely(len > skb->len) ? NULL : __pskb_pull(skb, len);
2464 }
2465
2466 static inline bool pskb_may_pull(struct sk_buff *skb, unsigned int len)
2467 {
2468         if (likely(len <= skb_headlen(skb)))
2469                 return true;
2470         if (unlikely(len > skb->len))
2471                 return false;
2472         return __pskb_pull_tail(skb, len - skb_headlen(skb)) != NULL;
2473 }
2474
2475 void skb_condense(struct sk_buff *skb);
2476
2477 /**
2478  *      skb_headroom - bytes at buffer head
2479  *      @skb: buffer to check
2480  *
2481  *      Return the number of bytes of free space at the head of an &sk_buff.
2482  */
2483 static inline unsigned int skb_headroom(const struct sk_buff *skb)
2484 {
2485         return skb->data - skb->head;
2486 }
2487
2488 /**
2489  *      skb_tailroom - bytes at buffer end
2490  *      @skb: buffer to check
2491  *
2492  *      Return the number of bytes of free space at the tail of an sk_buff
2493  */
2494 static inline int skb_tailroom(const struct sk_buff *skb)
2495 {
2496         return skb_is_nonlinear(skb) ? 0 : skb->end - skb->tail;
2497 }
2498
2499 /**
2500  *      skb_availroom - bytes at buffer end
2501  *      @skb: buffer to check
2502  *
2503  *      Return the number of bytes of free space at the tail of an sk_buff
2504  *      allocated by sk_stream_alloc()
2505  */
2506 static inline int skb_availroom(const struct sk_buff *skb)
2507 {
2508         if (skb_is_nonlinear(skb))
2509                 return 0;
2510
2511         return skb->end - skb->tail - skb->reserved_tailroom;
2512 }
2513
2514 /**
2515  *      skb_reserve - adjust headroom
2516  *      @skb: buffer to alter
2517  *      @len: bytes to move
2518  *
2519  *      Increase the headroom of an empty &sk_buff by reducing the tail
2520  *      room. This is only allowed for an empty buffer.
2521  */
2522 static inline void skb_reserve(struct sk_buff *skb, int len)
2523 {
2524         skb->data += len;
2525         skb->tail += len;
2526 }
2527
2528 /**
2529  *      skb_tailroom_reserve - adjust reserved_tailroom
2530  *      @skb: buffer to alter
2531  *      @mtu: maximum amount of headlen permitted
2532  *      @needed_tailroom: minimum amount of reserved_tailroom
2533  *
2534  *      Set reserved_tailroom so that headlen can be as large as possible but
2535  *      not larger than mtu and tailroom cannot be smaller than
2536  *      needed_tailroom.
2537  *      The required headroom should already have been reserved before using
2538  *      this function.
2539  */
2540 static inline void skb_tailroom_reserve(struct sk_buff *skb, unsigned int mtu,
2541                                         unsigned int needed_tailroom)
2542 {
2543         SKB_LINEAR_ASSERT(skb);
2544         if (mtu < skb_tailroom(skb) - needed_tailroom)
2545                 /* use at most mtu */
2546                 skb->reserved_tailroom = skb_tailroom(skb) - mtu;
2547         else
2548                 /* use up to all available space */
2549                 skb->reserved_tailroom = needed_tailroom;
2550 }
2551
2552 #define ENCAP_TYPE_ETHER        0
2553 #define ENCAP_TYPE_IPPROTO      1
2554
2555 static inline void skb_set_inner_protocol(struct sk_buff *skb,
2556                                           __be16 protocol)
2557 {
2558         skb->inner_protocol = protocol;
2559         skb->inner_protocol_type = ENCAP_TYPE_ETHER;
2560 }
2561
2562 static inline void skb_set_inner_ipproto(struct sk_buff *skb,
2563                                          __u8 ipproto)
2564 {
2565         skb->inner_ipproto = ipproto;
2566         skb->inner_protocol_type = ENCAP_TYPE_IPPROTO;
2567 }
2568
2569 static inline void skb_reset_inner_headers(struct sk_buff *skb)
2570 {
2571         skb->inner_mac_header = skb->mac_header;
2572         skb->inner_network_header = skb->network_header;
2573         skb->inner_transport_header = skb->transport_header;
2574 }
2575
2576 static inline void skb_reset_mac_len(struct sk_buff *skb)
2577 {
2578         skb->mac_len = skb->network_header - skb->mac_header;
2579 }
2580
2581 static inline unsigned char *skb_inner_transport_header(const struct sk_buff
2582                                                         *skb)
2583 {
2584         return skb->head + skb->inner_transport_header;
2585 }
2586
2587 static inline int skb_inner_transport_offset(const struct sk_buff *skb)
2588 {
2589         return skb_inner_transport_header(skb) - skb->data;
2590 }
2591
2592 static inline void skb_reset_inner_transport_header(struct sk_buff *skb)
2593 {
2594         skb->inner_transport_header = skb->data - skb->head;
2595 }
2596
2597 static inline void skb_set_inner_transport_header(struct sk_buff *skb,
2598                                                    const int offset)
2599 {
2600         skb_reset_inner_transport_header(skb);
2601         skb->inner_transport_header += offset;
2602 }
2603
2604 static inline unsigned char *skb_inner_network_header(const struct sk_buff *skb)
2605 {
2606         return skb->head + skb->inner_network_header;
2607 }
2608
2609 static inline void skb_reset_inner_network_header(struct sk_buff *skb)
2610 {
2611         skb->inner_network_header = skb->data - skb->head;
2612 }
2613
2614 static inline void skb_set_inner_network_header(struct sk_buff *skb,
2615                                                 const int offset)
2616 {
2617         skb_reset_inner_network_header(skb);
2618         skb->inner_network_header += offset;
2619 }
2620
2621 static inline unsigned char *skb_inner_mac_header(const struct sk_buff *skb)
2622 {
2623         return skb->head + skb->inner_mac_header;
2624 }
2625
2626 static inline void skb_reset_inner_mac_header(struct sk_buff *skb)
2627 {
2628         skb->inner_mac_header = skb->data - skb->head;
2629 }
2630
2631 static inline void skb_set_inner_mac_header(struct sk_buff *skb,
2632                                             const int offset)
2633 {
2634         skb_reset_inner_mac_header(skb);
2635         skb->inner_mac_header += offset;
2636 }
2637 static inline bool skb_transport_header_was_set(const struct sk_buff *skb)
2638 {
2639         return skb->transport_header != (typeof(skb->transport_header))~0U;
2640 }
2641
2642 static inline unsigned char *skb_transport_header(const struct sk_buff *skb)
2643 {
2644         return skb->head + skb->transport_header;
2645 }
2646
2647 static inline void skb_reset_transport_header(struct sk_buff *skb)
2648 {
2649         skb->transport_header = skb->data - skb->head;
2650 }
2651
2652 static inline void skb_set_transport_header(struct sk_buff *skb,
2653                                             const int offset)
2654 {
2655         skb_reset_transport_header(skb);
2656         skb->transport_header += offset;
2657 }
2658
2659 static inline unsigned char *skb_network_header(const struct sk_buff *skb)
2660 {
2661         return skb->head + skb->network_header;
2662 }
2663
2664 static inline void skb_reset_network_header(struct sk_buff *skb)
2665 {
2666         skb->network_header = skb->data - skb->head;
2667 }
2668
2669 static inline void skb_set_network_header(struct sk_buff *skb, const int offset)
2670 {
2671         skb_reset_network_header(skb);
2672         skb->network_header += offset;
2673 }
2674
2675 static inline unsigned char *skb_mac_header(const struct sk_buff *skb)
2676 {
2677         return skb->head + skb->mac_header;
2678 }
2679
2680 static inline int skb_mac_offset(const struct sk_buff *skb)
2681 {
2682         return skb_mac_header(skb) - skb->data;
2683 }
2684
2685 static inline u32 skb_mac_header_len(const struct sk_buff *skb)
2686 {
2687         return skb->network_header - skb->mac_header;
2688 }
2689
2690 static inline int skb_mac_header_was_set(const struct sk_buff *skb)
2691 {
2692         return skb->mac_header != (typeof(skb->mac_header))~0U;
2693 }
2694
2695 static inline void skb_unset_mac_header(struct sk_buff *skb)
2696 {
2697         skb->mac_header = (typeof(skb->mac_header))~0U;
2698 }
2699
2700 static inline void skb_reset_mac_header(struct sk_buff *skb)
2701 {
2702         skb->mac_header = skb->data - skb->head;
2703 }
2704
2705 static inline void skb_set_mac_header(struct sk_buff *skb, const int offset)
2706 {
2707         skb_reset_mac_header(skb);
2708         skb->mac_header += offset;
2709 }
2710
2711 static inline void skb_pop_mac_header(struct sk_buff *skb)
2712 {
2713         skb->mac_header = skb->network_header;
2714 }
2715
2716 static inline void skb_probe_transport_header(struct sk_buff *skb)
2717 {
2718         struct flow_keys_basic keys;
2719
2720         if (skb_transport_header_was_set(skb))
2721                 return;
2722
2723         if (skb_flow_dissect_flow_keys_basic(NULL, skb, &keys,
2724                                              NULL, 0, 0, 0, 0))
2725                 skb_set_transport_header(skb, keys.control.thoff);
2726 }
2727
2728 static inline void skb_mac_header_rebuild(struct sk_buff *skb)
2729 {
2730         if (skb_mac_header_was_set(skb)) {
2731                 const unsigned char *old_mac = skb_mac_header(skb);
2732
2733                 skb_set_mac_header(skb, -skb->mac_len);
2734                 memmove(skb_mac_header(skb), old_mac, skb->mac_len);
2735         }
2736 }
2737
2738 static inline int skb_checksum_start_offset(const struct sk_buff *skb)
2739 {
2740         return skb->csum_start - skb_headroom(skb);
2741 }
2742
2743 static inline unsigned char *skb_checksum_start(const struct sk_buff *skb)
2744 {
2745         return skb->head + skb->csum_start;
2746 }
2747
2748 static inline int skb_transport_offset(const struct sk_buff *skb)
2749 {
2750         return skb_transport_header(skb) - skb->data;
2751 }
2752
2753 static inline u32 skb_network_header_len(const struct sk_buff *skb)
2754 {
2755         return skb->transport_header - skb->network_header;
2756 }
2757
2758 static inline u32 skb_inner_network_header_len(const struct sk_buff *skb)
2759 {
2760         return skb->inner_transport_header - skb->inner_network_header;
2761 }
2762
2763 static inline int skb_network_offset(const struct sk_buff *skb)
2764 {
2765         return skb_network_header(skb) - skb->data;
2766 }
2767
2768 static inline int skb_inner_network_offset(const struct sk_buff *skb)
2769 {
2770         return skb_inner_network_header(skb) - skb->data;
2771 }
2772
2773 static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len)
2774 {
2775         return pskb_may_pull(skb, skb_network_offset(skb) + len);
2776 }
2777
2778 /*
2779  * CPUs often take a performance hit when accessing unaligned memory
2780  * locations. The actual performance hit varies, it can be small if the
2781  * hardware handles it or large if we have to take an exception and fix it
2782  * in software.
2783  *
2784  * Since an ethernet header is 14 bytes network drivers often end up with
2785  * the IP header at an unaligned offset. The IP header can be aligned by
2786  * shifting the start of the packet by 2 bytes. Drivers should do this
2787  * with:
2788  *
2789  * skb_reserve(skb, NET_IP_ALIGN);
2790  *
2791  * The downside to this alignment of the IP header is that the DMA is now
2792  * unaligned. On some architectures the cost of an unaligned DMA is high
2793  * and this cost outweighs the gains made by aligning the IP header.
2794  *
2795  * Since this trade off varies between architectures, we allow NET_IP_ALIGN
2796  * to be overridden.
2797  */
2798 #ifndef NET_IP_ALIGN
2799 #define NET_IP_ALIGN    2
2800 #endif
2801
2802 /*
2803  * The networking layer reserves some headroom in skb data (via
2804  * dev_alloc_skb). This is used to avoid having to reallocate skb data when
2805  * the header has to grow. In the default case, if the header has to grow
2806  * 32 bytes or less we avoid the reallocation.
2807  *
2808  * Unfortunately this headroom changes the DMA alignment of the resulting
2809  * network packet. As for NET_IP_ALIGN, this unaligned DMA is expensive
2810  * on some architectures. An architecture can override this value,
2811  * perhaps setting it to a cacheline in size (since that will maintain
2812  * cacheline alignment of the DMA). It must be a power of 2.
2813  *
2814  * Various parts of the networking layer expect at least 32 bytes of
2815  * headroom, you should not reduce this.
2816  *
2817  * Using max(32, L1_CACHE_BYTES) makes sense (especially with RPS)
2818  * to reduce average number of cache lines per packet.
2819  * get_rps_cpu() for example only access one 64 bytes aligned block :
2820  * NET_IP_ALIGN(2) + ethernet_header(14) + IP_header(20/40) + ports(8)
2821  */
2822 #ifndef NET_SKB_PAD
2823 #define NET_SKB_PAD     max(32, L1_CACHE_BYTES)
2824 #endif
2825
2826 int ___pskb_trim(struct sk_buff *skb, unsigned int len);
2827
2828 static inline void __skb_set_length(struct sk_buff *skb, unsigned int len)
2829 {
2830         if (WARN_ON(skb_is_nonlinear(skb)))
2831                 return;
2832         skb->len = len;
2833         skb_set_tail_pointer(skb, len);
2834 }
2835
2836 static inline void __skb_trim(struct sk_buff *skb, unsigned int len)
2837 {
2838         __skb_set_length(skb, len);
2839 }
2840
2841 void skb_trim(struct sk_buff *skb, unsigned int len);
2842
2843 static inline int __pskb_trim(struct sk_buff *skb, unsigned int len)
2844 {
2845         if (skb->data_len)
2846                 return ___pskb_trim(skb, len);
2847         __skb_trim(skb, len);
2848         return 0;
2849 }
2850
2851 static inline int pskb_trim(struct sk_buff *skb, unsigned int len)
2852 {
2853         return (len < skb->len) ? __pskb_trim(skb, len) : 0;
2854 }
2855
2856 /**
2857  *      pskb_trim_unique - remove end from a paged unique (not cloned) buffer
2858  *      @skb: buffer to alter
2859  *      @len: new length
2860  *
2861  *      This is identical to pskb_trim except that the caller knows that
2862  *      the skb is not cloned so we should never get an error due to out-
2863  *      of-memory.
2864  */
2865 static inline void pskb_trim_unique(struct sk_buff *skb, unsigned int len)
2866 {
2867         int err = pskb_trim(skb, len);
2868         BUG_ON(err);
2869 }
2870
2871 static inline int __skb_grow(struct sk_buff *skb, unsigned int len)
2872 {
2873         unsigned int diff = len - skb->len;
2874
2875         if (skb_tailroom(skb) < diff) {
2876                 int ret = pskb_expand_head(skb, 0, diff - skb_tailroom(skb),
2877                                            GFP_ATOMIC);
2878                 if (ret)
2879                         return ret;
2880         }
2881         __skb_set_length(skb, len);
2882         return 0;
2883 }
2884
2885 /**
2886  *      skb_orphan - orphan a buffer
2887  *      @skb: buffer to orphan
2888  *
2889  *      If a buffer currently has an owner then we call the owner's
2890  *      destructor function and make the @skb unowned. The buffer continues
2891  *      to exist but is no longer charged to its former owner.
2892  */
2893 static inline void skb_orphan(struct sk_buff *skb)
2894 {
2895         if (skb->destructor) {
2896                 skb->destructor(skb);
2897                 skb->destructor = NULL;
2898                 skb->sk         = NULL;
2899         } else {
2900                 BUG_ON(skb->sk);
2901         }
2902 }
2903
2904 /**
2905  *      skb_orphan_frags - orphan the frags contained in a buffer
2906  *      @skb: buffer to orphan frags from
2907  *      @gfp_mask: allocation mask for replacement pages
2908  *
2909  *      For each frag in the SKB which needs a destructor (i.e. has an
2910  *      owner) create a copy of that frag and release the original
2911  *      page by calling the destructor.
2912  */
2913 static inline int skb_orphan_frags(struct sk_buff *skb, gfp_t gfp_mask)
2914 {
2915         if (likely(!skb_zcopy(skb)))
2916                 return 0;
2917         if (!skb_zcopy_is_nouarg(skb) &&
2918             skb_uarg(skb)->callback == msg_zerocopy_callback)
2919                 return 0;
2920         return skb_copy_ubufs(skb, gfp_mask);
2921 }
2922
2923 /* Frags must be orphaned, even if refcounted, if skb might loop to rx path */
2924 static inline int skb_orphan_frags_rx(struct sk_buff *skb, gfp_t gfp_mask)
2925 {
2926         if (likely(!skb_zcopy(skb)))
2927                 return 0;
2928         return skb_copy_ubufs(skb, gfp_mask);
2929 }
2930
2931 /**
2932  *      __skb_queue_purge - empty a list
2933  *      @list: list to empty
2934  *
2935  *      Delete all buffers on an &sk_buff list. Each buffer is removed from
2936  *      the list and one reference dropped. This function does not take the
2937  *      list lock and the caller must hold the relevant locks to use it.
2938  */
2939 static inline void __skb_queue_purge(struct sk_buff_head *list)
2940 {
2941         struct sk_buff *skb;
2942         while ((skb = __skb_dequeue(list)) != NULL)
2943                 kfree_skb(skb);
2944 }
2945 void skb_queue_purge(struct sk_buff_head *list);
2946
2947 unsigned int skb_rbtree_purge(struct rb_root *root);
2948
2949 void *__netdev_alloc_frag_align(unsigned int fragsz, unsigned int align_mask);
2950
2951 /**
2952  * netdev_alloc_frag - allocate a page fragment
2953  * @fragsz: fragment size
2954  *
2955  * Allocates a frag from a page for receive buffer.
2956  * Uses GFP_ATOMIC allocations.
2957  */
2958 static inline void *netdev_alloc_frag(unsigned int fragsz)
2959 {
2960         return __netdev_alloc_frag_align(fragsz, ~0u);
2961 }
2962
2963 static inline void *netdev_alloc_frag_align(unsigned int fragsz,
2964                                             unsigned int align)
2965 {
2966         WARN_ON_ONCE(!is_power_of_2(align));
2967         return __netdev_alloc_frag_align(fragsz, -align);
2968 }
2969
2970 struct sk_buff *__netdev_alloc_skb(struct net_device *dev, unsigned int length,
2971                                    gfp_t gfp_mask);
2972
2973 /**
2974  *      netdev_alloc_skb - allocate an skbuff for rx on a specific device
2975  *      @dev: network device to receive on
2976  *      @length: length to allocate
2977  *
2978  *      Allocate a new &sk_buff and assign it a usage count of one. The
2979  *      buffer has unspecified headroom built in. Users should allocate
2980  *      the headroom they think they need without accounting for the
2981  *      built in space. The built in space is used for optimisations.
2982  *
2983  *      %NULL is returned if there is no free memory. Although this function
2984  *      allocates memory it can be called from an interrupt.
2985  */
2986 static inline struct sk_buff *netdev_alloc_skb(struct net_device *dev,
2987                                                unsigned int length)
2988 {
2989         return __netdev_alloc_skb(dev, length, GFP_ATOMIC);
2990 }
2991
2992 /* legacy helper around __netdev_alloc_skb() */
2993 static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
2994                                               gfp_t gfp_mask)
2995 {
2996         return __netdev_alloc_skb(NULL, length, gfp_mask);
2997 }
2998
2999 /* legacy helper around netdev_alloc_skb() */
3000 static inline struct sk_buff *dev_alloc_skb(unsigned int length)
3001 {
3002         return netdev_alloc_skb(NULL, length);
3003 }
3004
3005
3006 static inline struct sk_buff *__netdev_alloc_skb_ip_align(struct net_device *dev,
3007                 unsigned int length, gfp_t gfp)
3008 {
3009         struct sk_buff *skb = __netdev_alloc_skb(dev, length + NET_IP_ALIGN, gfp);
3010
3011         if (NET_IP_ALIGN && skb)
3012                 skb_reserve(skb, NET_IP_ALIGN);
3013         return skb;
3014 }
3015
3016 static inline struct sk_buff *netdev_alloc_skb_ip_align(struct net_device *dev,
3017                 unsigned int length)
3018 {
3019         return __netdev_alloc_skb_ip_align(dev, length, GFP_ATOMIC);
3020 }
3021
3022 static inline void skb_free_frag(void *addr)
3023 {
3024         page_frag_free(addr);
3025 }
3026
3027 void *__napi_alloc_frag_align(unsigned int fragsz, unsigned int align_mask);
3028
3029 static inline void *napi_alloc_frag(unsigned int fragsz)
3030 {
3031         return __napi_alloc_frag_align(fragsz, ~0u);
3032 }
3033
3034 static inline void *napi_alloc_frag_align(unsigned int fragsz,
3035                                           unsigned int align)
3036 {
3037         WARN_ON_ONCE(!is_power_of_2(align));
3038         return __napi_alloc_frag_align(fragsz, -align);
3039 }
3040
3041 struct sk_buff *__napi_alloc_skb(struct napi_struct *napi,
3042                                  unsigned int length, gfp_t gfp_mask);
3043 static inline struct sk_buff *napi_alloc_skb(struct napi_struct *napi,
3044                                              unsigned int length)
3045 {
3046         return __napi_alloc_skb(napi, length, GFP_ATOMIC);
3047 }
3048 void napi_consume_skb(struct sk_buff *skb, int budget);
3049
3050 void napi_skb_free_stolen_head(struct sk_buff *skb);
3051 void __kfree_skb_defer(struct sk_buff *skb);
3052
3053 /**
3054  * __dev_alloc_pages - allocate page for network Rx
3055  * @gfp_mask: allocation priority. Set __GFP_NOMEMALLOC if not for network Rx
3056  * @order: size of the allocation
3057  *
3058  * Allocate a new page.
3059  *
3060  * %NULL is returned if there is no free memory.
3061 */
3062 static inline struct page *__dev_alloc_pages(gfp_t gfp_mask,
3063                                              unsigned int order)
3064 {
3065         /* This piece of code contains several assumptions.
3066          * 1.  This is for device Rx, therefor a cold page is preferred.
3067          * 2.  The expectation is the user wants a compound page.
3068          * 3.  If requesting a order 0 page it will not be compound
3069          *     due to the check to see if order has a value in prep_new_page
3070          * 4.  __GFP_MEMALLOC is ignored if __GFP_NOMEMALLOC is set due to
3071          *     code in gfp_to_alloc_flags that should be enforcing this.
3072          */
3073         gfp_mask |= __GFP_COMP | __GFP_MEMALLOC;
3074
3075         return alloc_pages_node(NUMA_NO_NODE, gfp_mask, order);
3076 }
3077
3078 static inline struct page *dev_alloc_pages(unsigned int order)
3079 {
3080         return __dev_alloc_pages(GFP_ATOMIC | __GFP_NOWARN, order);
3081 }
3082
3083 /**
3084  * __dev_alloc_page - allocate a page for network Rx
3085  * @gfp_mask: allocation priority. Set __GFP_NOMEMALLOC if not for network Rx
3086  *
3087  * Allocate a new page.
3088  *
3089  * %NULL is returned if there is no free memory.
3090  */
3091 static inline struct page *__dev_alloc_page(gfp_t gfp_mask)
3092 {
3093         return __dev_alloc_pages(gfp_mask, 0);
3094 }
3095
3096 static inline struct page *dev_alloc_page(void)
3097 {
3098         return dev_alloc_pages(0);
3099 }
3100
3101 /**
3102  * dev_page_is_reusable - check whether a page can be reused for network Rx
3103  * @page: the page to test
3104  *
3105  * A page shouldn't be considered for reusing/recycling if it was allocated
3106  * under memory pressure or at a distant memory node.
3107  *
3108  * Returns false if this page should be returned to page allocator, true
3109  * otherwise.
3110  */
3111 static inline bool dev_page_is_reusable(const struct page *page)
3112 {
3113         return likely(page_to_nid(page) == numa_mem_id() &&
3114                       !page_is_pfmemalloc(page));
3115 }
3116
3117 /**
3118  *      skb_propagate_pfmemalloc - Propagate pfmemalloc if skb is allocated after RX page
3119  *      @page: The page that was allocated from skb_alloc_page
3120  *      @skb: The skb that may need pfmemalloc set
3121  */
3122 static inline void skb_propagate_pfmemalloc(const struct page *page,
3123                                             struct sk_buff *skb)
3124 {
3125         if (page_is_pfmemalloc(page))
3126                 skb->pfmemalloc = true;
3127 }
3128
3129 /**
3130  * skb_frag_off() - Returns the offset of a skb fragment
3131  * @frag: the paged fragment
3132  */
3133 static inline unsigned int skb_frag_off(const skb_frag_t *frag)
3134 {
3135         return frag->bv_offset;
3136 }
3137
3138 /**
3139  * skb_frag_off_add() - Increments the offset of a skb fragment by @delta
3140  * @frag: skb fragment
3141  * @delta: value to add
3142  */
3143 static inline void skb_frag_off_add(skb_frag_t *frag, int delta)
3144 {
3145         frag->bv_offset += delta;
3146 }
3147
3148 /**
3149  * skb_frag_off_set() - Sets the offset of a skb fragment
3150  * @frag: skb fragment
3151  * @offset: offset of fragment
3152  */
3153 static inline void skb_frag_off_set(skb_frag_t *frag, unsigned int offset)
3154 {
3155         frag->bv_offset = offset;
3156 }
3157
3158 /**
3159  * skb_frag_off_copy() - Sets the offset of a skb fragment from another fragment
3160  * @fragto: skb fragment where offset is set
3161  * @fragfrom: skb fragment offset is copied from
3162  */
3163 static inline void skb_frag_off_copy(skb_frag_t *fragto,
3164                                      const skb_frag_t *fragfrom)
3165 {
3166         fragto->bv_offset = fragfrom->bv_offset;
3167 }
3168
3169 /**
3170  * skb_frag_page - retrieve the page referred to by a paged fragment
3171  * @frag: the paged fragment
3172  *
3173  * Returns the &struct page associated with @frag.
3174  */
3175 static inline struct page *skb_frag_page(const skb_frag_t *frag)
3176 {
3177         return frag->bv_page;
3178 }
3179
3180 /**
3181  * __skb_frag_ref - take an addition reference on a paged fragment.
3182  * @frag: the paged fragment
3183  *
3184  * Takes an additional reference on the paged fragment @frag.
3185  */
3186 static inline void __skb_frag_ref(skb_frag_t *frag)
3187 {
3188         get_page(skb_frag_page(frag));
3189 }
3190
3191 /**
3192  * skb_frag_ref - take an addition reference on a paged fragment of an skb.
3193  * @skb: the buffer
3194  * @f: the fragment offset.
3195  *
3196  * Takes an additional reference on the @f'th paged fragment of @skb.
3197  */
3198 static inline void skb_frag_ref(struct sk_buff *skb, int f)
3199 {
3200         __skb_frag_ref(&skb_shinfo(skb)->frags[f]);
3201 }
3202
3203 /**
3204  * __skb_frag_unref - release a reference on a paged fragment.
3205  * @frag: the paged fragment
3206  * @recycle: recycle the page if allocated via page_pool
3207  *
3208  * Releases a reference on the paged fragment @frag
3209  * or recycles the page via the page_pool API.
3210  */
3211 static inline void __skb_frag_unref(skb_frag_t *frag, bool recycle)
3212 {
3213         struct page *page = skb_frag_page(frag);
3214
3215 #ifdef CONFIG_PAGE_POOL
3216         if (recycle && page_pool_return_skb_page(page))
3217                 return;
3218 #endif
3219         put_page(page);
3220 }
3221
3222 /**
3223  * skb_frag_unref - release a reference on a paged fragment of an skb.
3224  * @skb: the buffer
3225  * @f: the fragment offset
3226  *
3227  * Releases a reference on the @f'th paged fragment of @skb.
3228  */
3229 static inline void skb_frag_unref(struct sk_buff *skb, int f)
3230 {
3231         __skb_frag_unref(&skb_shinfo(skb)->frags[f], skb->pp_recycle);
3232 }
3233
3234 /**
3235  * skb_frag_address - gets the address of the data contained in a paged fragment
3236  * @frag: the paged fragment buffer
3237  *
3238  * Returns the address of the data within @frag. The page must already
3239  * be mapped.
3240  */
3241 static inline void *skb_frag_address(const skb_frag_t *frag)
3242 {
3243         return page_address(skb_frag_page(frag)) + skb_frag_off(frag);
3244 }
3245
3246 /**
3247  * skb_frag_address_safe - gets the address of the data contained in a paged fragment
3248  * @frag: the paged fragment buffer
3249  *
3250  * Returns the address of the data within @frag. Checks that the page
3251  * is mapped and returns %NULL otherwise.
3252  */
3253 static inline void *skb_frag_address_safe(const skb_frag_t *frag)
3254 {
3255         void *ptr = page_address(skb_frag_page(frag));
3256         if (unlikely(!ptr))
3257                 return NULL;
3258
3259         return ptr + skb_frag_off(frag);
3260 }
3261
3262 /**
3263  * skb_frag_page_copy() - sets the page in a fragment from another fragment
3264  * @fragto: skb fragment where page is set
3265  * @fragfrom: skb fragment page is copied from
3266  */
3267 static inline void skb_frag_page_copy(skb_frag_t *fragto,
3268                                       const skb_frag_t *fragfrom)
3269 {
3270         fragto->bv_page = fragfrom->bv_page;
3271 }
3272
3273 /**
3274  * __skb_frag_set_page - sets the page contained in a paged fragment
3275  * @frag: the paged fragment
3276  * @page: the page to set
3277  *
3278  * Sets the fragment @frag to contain @page.
3279  */
3280 static inline void __skb_frag_set_page(skb_frag_t *frag, struct page *page)
3281 {
3282         frag->bv_page = page;
3283 }
3284
3285 /**
3286  * skb_frag_set_page - sets the page contained in a paged fragment of an skb
3287  * @skb: the buffer
3288  * @f: the fragment offset
3289  * @page: the page to set
3290  *
3291  * Sets the @f'th fragment of @skb to contain @page.
3292  */
3293 static inline void skb_frag_set_page(struct sk_buff *skb, int f,
3294                                      struct page *page)
3295 {
3296         __skb_frag_set_page(&skb_shinfo(skb)->frags[f], page);
3297 }
3298
3299 bool skb_page_frag_refill(unsigned int sz, struct page_frag *pfrag, gfp_t prio);
3300
3301 /**
3302  * skb_frag_dma_map - maps a paged fragment via the DMA API
3303  * @dev: the device to map the fragment to
3304  * @frag: the paged fragment to map
3305  * @offset: the offset within the fragment (starting at the
3306  *          fragment's own offset)
3307  * @size: the number of bytes to map
3308  * @dir: the direction of the mapping (``PCI_DMA_*``)
3309  *
3310  * Maps the page associated with @frag to @device.
3311  */
3312 static inline dma_addr_t skb_frag_dma_map(struct device *dev,
3313                                           const skb_frag_t *frag,
3314                                           size_t offset, size_t size,
3315                                           enum dma_data_direction dir)
3316 {
3317         return dma_map_page(dev, skb_frag_page(frag),
3318                             skb_frag_off(frag) + offset, size, dir);
3319 }
3320
3321 static inline struct sk_buff *pskb_copy(struct sk_buff *skb,
3322                                         gfp_t gfp_mask)
3323 {
3324         return __pskb_copy(skb, skb_headroom(skb), gfp_mask);
3325 }
3326
3327
3328 static inline struct sk_buff *pskb_copy_for_clone(struct sk_buff *skb,
3329                                                   gfp_t gfp_mask)
3330 {
3331         return __pskb_copy_fclone(skb, skb_headroom(skb), gfp_mask, true);
3332 }
3333
3334
3335 /**
3336  *      skb_clone_writable - is the header of a clone writable
3337  *      @skb: buffer to check
3338  *      @len: length up to which to write
3339  *
3340  *      Returns true if modifying the header part of the cloned buffer
3341  *      does not requires the data to be copied.
3342  */
3343 static inline int skb_clone_writable(const struct sk_buff *skb, unsigned int len)
3344 {
3345         return !skb_header_cloned(skb) &&
3346                skb_headroom(skb) + len <= skb->hdr_len;
3347 }
3348
3349 static inline int skb_try_make_writable(struct sk_buff *skb,
3350                                         unsigned int write_len)
3351 {
3352         return skb_cloned(skb) && !skb_clone_writable(skb, write_len) &&
3353                pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
3354 }
3355
3356 static inline int __skb_cow(struct sk_buff *skb, unsigned int headroom,
3357                             int cloned)
3358 {
3359         int delta = 0;
3360
3361         if (headroom > skb_headroom(skb))
3362                 delta = headroom - skb_headroom(skb);
3363
3364         if (delta || cloned)
3365                 return pskb_expand_head(skb, ALIGN(delta, NET_SKB_PAD), 0,
3366                                         GFP_ATOMIC);
3367         return 0;
3368 }
3369
3370 /**
3371  *      skb_cow - copy header of skb when it is required
3372  *      @skb: buffer to cow
3373  *      @headroom: needed headroom
3374  *
3375  *      If the skb passed lacks sufficient headroom or its data part
3376  *      is shared, data is reallocated. If reallocation fails, an error
3377  *      is returned and original skb is not changed.
3378  *
3379  *      The result is skb with writable area skb->head...skb->tail
3380  *      and at least @headroom of space at head.
3381  */
3382 static inline int skb_cow(struct sk_buff *skb, unsigned int headroom)
3383 {
3384         return __skb_cow(skb, headroom, skb_cloned(skb));
3385 }
3386
3387 /**
3388  *      skb_cow_head - skb_cow but only making the head writable
3389  *      @skb: buffer to cow
3390  *      @headroom: needed headroom
3391  *
3392  *      This function is identical to skb_cow except that we replace the
3393  *      skb_cloned check by skb_header_cloned.  It should be used when
3394  *      you only need to push on some header and do not need to modify
3395  *      the data.
3396  */
3397 static inline int skb_cow_head(struct sk_buff *skb, unsigned int headroom)
3398 {
3399         return __skb_cow(skb, headroom, skb_header_cloned(skb));
3400 }
3401
3402 /**
3403  *      skb_padto       - pad an skbuff up to a minimal size
3404  *      @skb: buffer to pad
3405  *      @len: minimal length
3406  *
3407  *      Pads up a buffer to ensure the trailing bytes exist and are
3408  *      blanked. If the buffer already contains sufficient data it
3409  *      is untouched. Otherwise it is extended. Returns zero on
3410  *      success. The skb is freed on error.
3411  */
3412 static inline int skb_padto(struct sk_buff *skb, unsigned int len)
3413 {
3414         unsigned int size = skb->len;
3415         if (likely(size >= len))
3416                 return 0;
3417         return skb_pad(skb, len - size);
3418 }
3419
3420 /**
3421  *      __skb_put_padto - increase size and pad an skbuff up to a minimal size
3422  *      @skb: buffer to pad
3423  *      @len: minimal length
3424  *      @free_on_error: free buffer on error
3425  *
3426  *      Pads up a buffer to ensure the trailing bytes exist and are
3427  *      blanked. If the buffer already contains sufficient data it
3428  *      is untouched. Otherwise it is extended. Returns zero on
3429  *      success. The skb is freed on error if @free_on_error is true.
3430  */
3431 static inline int __must_check __skb_put_padto(struct sk_buff *skb,
3432                                                unsigned int len,
3433                                                bool free_on_error)
3434 {
3435         unsigned int size = skb->len;
3436
3437         if (unlikely(size < len)) {
3438                 len -= size;
3439                 if (__skb_pad(skb, len, free_on_error))
3440                         return -ENOMEM;
3441                 __skb_put(skb, len);
3442         }
3443         return 0;
3444 }
3445
3446 /**
3447  *      skb_put_padto - increase size and pad an skbuff up to a minimal size
3448  *      @skb: buffer to pad
3449  *      @len: minimal length
3450  *
3451  *      Pads up a buffer to ensure the trailing bytes exist and are
3452  *      blanked. If the buffer already contains sufficient data it
3453  *      is untouched. Otherwise it is extended. Returns zero on
3454  *      success. The skb is freed on error.
3455  */
3456 static inline int __must_check skb_put_padto(struct sk_buff *skb, unsigned int len)
3457 {
3458         return __skb_put_padto(skb, len, true);
3459 }
3460
3461 static inline int skb_add_data(struct sk_buff *skb,
3462                                struct iov_iter *from, int copy)
3463 {
3464         const int off = skb->len;
3465
3466         if (skb->ip_summed == CHECKSUM_NONE) {
3467                 __wsum csum = 0;
3468                 if (csum_and_copy_from_iter_full(skb_put(skb, copy), copy,
3469                                                  &csum, from)) {
3470                         skb->csum = csum_block_add(skb->csum, csum, off);
3471                         return 0;
3472                 }
3473         } else if (copy_from_iter_full(skb_put(skb, copy), copy, from))
3474                 return 0;
3475
3476         __skb_trim(skb, off);
3477         return -EFAULT;
3478 }
3479
3480 static inline bool skb_can_coalesce(struct sk_buff *skb, int i,
3481                                     const struct page *page, int off)
3482 {
3483         if (skb_zcopy(skb))
3484                 return false;
3485         if (i) {
3486                 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i - 1];
3487
3488                 return page == skb_frag_page(frag) &&
3489                        off == skb_frag_off(frag) + skb_frag_size(frag);
3490         }
3491         return false;
3492 }
3493
3494 static inline int __skb_linearize(struct sk_buff *skb)
3495 {
3496         return __pskb_pull_tail(skb, skb->data_len) ? 0 : -ENOMEM;
3497 }
3498
3499 /**
3500  *      skb_linearize - convert paged skb to linear one
3501  *      @skb: buffer to linarize
3502  *
3503  *      If there is no free memory -ENOMEM is returned, otherwise zero
3504  *      is returned and the old skb data released.
3505  */
3506 static inline int skb_linearize(struct sk_buff *skb)
3507 {
3508         return skb_is_nonlinear(skb) ? __skb_linearize(skb) : 0;
3509 }
3510
3511 /**
3512  * skb_has_shared_frag - can any frag be overwritten
3513  * @skb: buffer to test
3514  *
3515  * Return true if the skb has at least one frag that might be modified
3516  * by an external entity (as in vmsplice()/sendfile())
3517  */
3518 static inline bool skb_has_shared_frag(const struct sk_buff *skb)
3519 {
3520         return skb_is_nonlinear(skb) &&
3521                skb_shinfo(skb)->flags & SKBFL_SHARED_FRAG;
3522 }
3523
3524 /**
3525  *      skb_linearize_cow - make sure skb is linear and writable
3526  *      @skb: buffer to process
3527  *
3528  *      If there is no free memory -ENOMEM is returned, otherwise zero
3529  *      is returned and the old skb data released.
3530  */
3531 static inline int skb_linearize_cow(struct sk_buff *skb)
3532 {
3533         return skb_is_nonlinear(skb) || skb_cloned(skb) ?
3534                __skb_linearize(skb) : 0;
3535 }
3536
3537 static __always_inline void
3538 __skb_postpull_rcsum(struct sk_buff *skb, const void *start, unsigned int len,
3539                      unsigned int off)
3540 {
3541         if (skb->ip_summed == CHECKSUM_COMPLETE)
3542                 skb->csum = csum_block_sub(skb->csum,
3543                                            csum_partial(start, len, 0), off);
3544         else if (skb->ip_summed == CHECKSUM_PARTIAL &&
3545                  skb_checksum_start_offset(skb) < 0)
3546                 skb->ip_summed = CHECKSUM_NONE;
3547 }
3548
3549 /**
3550  *      skb_postpull_rcsum - update checksum for received skb after pull
3551  *      @skb: buffer to update
3552  *      @start: start of data before pull
3553  *      @len: length of data pulled
3554  *
3555  *      After doing a pull on a received packet, you need to call this to
3556  *      update the CHECKSUM_COMPLETE checksum, or set ip_summed to
3557  *      CHECKSUM_NONE so that it can be recomputed from scratch.
3558  */
3559 static inline void skb_postpull_rcsum(struct sk_buff *skb,
3560                                       const void *start, unsigned int len)
3561 {
3562         __skb_postpull_rcsum(skb, start, len, 0);
3563 }
3564
3565 static __always_inline void
3566 __skb_postpush_rcsum(struct sk_buff *skb, const void *start, unsigned int len,
3567                      unsigned int off)
3568 {
3569         if (skb->ip_summed == CHECKSUM_COMPLETE)
3570                 skb->csum = csum_block_add(skb->csum,
3571                                            csum_partial(start, len, 0), off);
3572 }
3573
3574 /**
3575  *      skb_postpush_rcsum - update checksum for received skb after push
3576  *      @skb: buffer to update
3577  *      @start: start of data after push
3578  *      @len: length of data pushed
3579  *
3580  *      After doing a push on a received packet, you need to call this to
3581  *      update the CHECKSUM_COMPLETE checksum.
3582  */
3583 static inline void skb_postpush_rcsum(struct sk_buff *skb,
3584                                       const void *start, unsigned int len)
3585 {
3586         __skb_postpush_rcsum(skb, start, len, 0);
3587 }
3588
3589 void *skb_pull_rcsum(struct sk_buff *skb, unsigned int len);
3590
3591 /**
3592  *      skb_push_rcsum - push skb and update receive checksum
3593  *      @skb: buffer to update
3594  *      @len: length of data pulled
3595  *
3596  *      This function performs an skb_push on the packet and updates
3597  *      the CHECKSUM_COMPLETE checksum.  It should be used on
3598  *      receive path processing instead of skb_push unless you know
3599  *      that the checksum difference is zero (e.g., a valid IP header)
3600  *      or you are setting ip_summed to CHECKSUM_NONE.
3601  */
3602 static inline void *skb_push_rcsum(struct sk_buff *skb, unsigned int len)
3603 {
3604         skb_push(skb, len);
3605         skb_postpush_rcsum(skb, skb->data, len);
3606         return skb->data;
3607 }
3608
3609 int pskb_trim_rcsum_slow(struct sk_buff *skb, unsigned int len);
3610 /**
3611  *      pskb_trim_rcsum - trim received skb and update checksum
3612  *      @skb: buffer to trim
3613  *      @len: new length
3614  *
3615  *      This is exactly the same as pskb_trim except that it ensures the
3616  *      checksum of received packets are still valid after the operation.
3617  *      It can change skb pointers.
3618  */
3619
3620 static inline int pskb_trim_rcsum(struct sk_buff *skb, unsigned int len)
3621 {
3622         if (likely(len >= skb->len))
3623                 return 0;
3624         return pskb_trim_rcsum_slow(skb, len);
3625 }
3626
3627 static inline int __skb_trim_rcsum(struct sk_buff *skb, unsigned int len)
3628 {
3629         if (skb->ip_summed == CHECKSUM_COMPLETE)
3630                 skb->ip_summed = CHECKSUM_NONE;
3631         __skb_trim(skb, len);
3632         return 0;
3633 }
3634
3635 static inline int __skb_grow_rcsum(struct sk_buff *skb, unsigned int len)
3636 {
3637         if (skb->ip_summed == CHECKSUM_COMPLETE)
3638                 skb->ip_summed = CHECKSUM_NONE;
3639         return __skb_grow(skb, len);
3640 }
3641
3642 #define rb_to_skb(rb) rb_entry_safe(rb, struct sk_buff, rbnode)
3643 #define skb_rb_first(root) rb_to_skb(rb_first(root))
3644 #define skb_rb_last(root)  rb_to_skb(rb_last(root))
3645 #define skb_rb_next(skb)   rb_to_skb(rb_next(&(skb)->rbnode))
3646 #define skb_rb_prev(skb)   rb_to_skb(rb_prev(&(skb)->rbnode))
3647
3648 #define skb_queue_walk(queue, skb) \
3649                 for (skb = (queue)->next;                                       \
3650                      skb != (struct sk_buff *)(queue);                          \
3651                      skb = skb->next)
3652
3653 #define skb_queue_walk_safe(queue, skb, tmp)                                    \
3654                 for (skb = (queue)->next, tmp = skb->next;                      \
3655                      skb != (struct sk_buff *)(queue);                          \
3656                      skb = tmp, tmp = skb->next)
3657
3658 #define skb_queue_walk_from(queue, skb)                                         \
3659                 for (; skb != (struct sk_buff *)(queue);                        \
3660                      skb = skb->next)
3661
3662 #define skb_rbtree_walk(skb, root)                                              \
3663                 for (skb = skb_rb_first(root); skb != NULL;                     \
3664                      skb = skb_rb_next(skb))
3665
3666 #define skb_rbtree_walk_from(skb)                                               \
3667                 for (; skb != NULL;                                             \
3668                      skb = skb_rb_next(skb))
3669
3670 #define skb_rbtree_walk_from_safe(skb, tmp)                                     \
3671                 for (; tmp = skb ? skb_rb_next(skb) : NULL, (skb != NULL);      \
3672                      skb = tmp)
3673
3674 #define skb_queue_walk_from_safe(queue, skb, tmp)                               \
3675                 for (tmp = skb->next;                                           \
3676                      skb != (struct sk_buff *)(queue);                          \
3677                      skb = tmp, tmp = skb->next)
3678
3679 #define skb_queue_reverse_walk(queue, skb) \
3680                 for (skb = (queue)->prev;                                       \
3681                      skb != (struct sk_buff *)(queue);                          \
3682                      skb = skb->prev)
3683
3684 #define skb_queue_reverse_walk_safe(queue, skb, tmp)                            \
3685                 for (skb = (queue)->prev, tmp = skb->prev;                      \
3686                      skb != (struct sk_buff *)(queue);                          \
3687                      skb = tmp, tmp = skb->prev)
3688
3689 #define skb_queue_reverse_walk_from_safe(queue, skb, tmp)                       \
3690                 for (tmp = skb->prev;                                           \
3691                      skb != (struct sk_buff *)(queue);                          \
3692                      skb = tmp, tmp = skb->prev)
3693
3694 static inline bool skb_has_frag_list(const struct sk_buff *skb)
3695 {
3696         return skb_shinfo(skb)->frag_list != NULL;
3697 }
3698
3699 static inline void skb_frag_list_init(struct sk_buff *skb)
3700 {
3701         skb_shinfo(skb)->frag_list = NULL;
3702 }
3703
3704 #define skb_walk_frags(skb, iter)       \
3705         for (iter = skb_shinfo(skb)->frag_list; iter; iter = iter->next)
3706
3707
3708 int __skb_wait_for_more_packets(struct sock *sk, struct sk_buff_head *queue,
3709                                 int *err, long *timeo_p,
3710                                 const struct sk_buff *skb);
3711 struct sk_buff *__skb_try_recv_from_queue(struct sock *sk,
3712                                           struct sk_buff_head *queue,
3713                                           unsigned int flags,
3714                                           int *off, int *err,
3715                                           struct sk_buff **last);
3716 struct sk_buff *__skb_try_recv_datagram(struct sock *sk,
3717                                         struct sk_buff_head *queue,
3718                                         unsigned int flags, int *off, int *err,
3719                                         struct sk_buff **last);
3720 struct sk_buff *__skb_recv_datagram(struct sock *sk,
3721                                     struct sk_buff_head *sk_queue,
3722                                     unsigned int flags, int *off, int *err);
3723 struct sk_buff *skb_recv_datagram(struct sock *sk, unsigned flags, int noblock,
3724                                   int *err);
3725 __poll_t datagram_poll(struct file *file, struct socket *sock,
3726                            struct poll_table_struct *wait);
3727 int skb_copy_datagram_iter(const struct sk_buff *from, int offset,
3728                            struct iov_iter *to, int size);
3729 static inline int skb_copy_datagram_msg(const struct sk_buff *from, int offset,
3730                                         struct msghdr *msg, int size)
3731 {
3732         return skb_copy_datagram_iter(from, offset, &msg->msg_iter, size);
3733 }
3734 int skb_copy_and_csum_datagram_msg(struct sk_buff *skb, int hlen,
3735                                    struct msghdr *msg);
3736 int skb_copy_and_hash_datagram_iter(const struct sk_buff *skb, int offset,
3737                            struct iov_iter *to, int len,
3738                            struct ahash_request *hash);
3739 int skb_copy_datagram_from_iter(struct sk_buff *skb, int offset,
3740                                  struct iov_iter *from, int len);
3741 int zerocopy_sg_from_iter(struct sk_buff *skb, struct iov_iter *frm);
3742 void skb_free_datagram(struct sock *sk, struct sk_buff *skb);
3743 void __skb_free_datagram_locked(struct sock *sk, struct sk_buff *skb, int len);
3744 static inline void skb_free_datagram_locked(struct sock *sk,
3745                                             struct sk_buff *skb)
3746 {
3747         __skb_free_datagram_locked(sk, skb, 0);
3748 }
3749 int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags);
3750 int skb_copy_bits(const struct sk_buff *skb, int offset, void *to, int len);
3751 int skb_store_bits(struct sk_buff *skb, int offset, const void *from, int len);
3752 __wsum skb_copy_and_csum_bits(const struct sk_buff *skb, int offset, u8 *to,
3753                               int len);
3754 int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
3755                     struct pipe_inode_info *pipe, unsigned int len,
3756                     unsigned int flags);
3757 int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
3758                          int len);
3759 int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len);
3760 void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
3761 unsigned int skb_zerocopy_headlen(const struct sk_buff *from);
3762 int skb_zerocopy(struct sk_buff *to, struct sk_buff *from,
3763                  int len, int hlen);
3764 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len);
3765 int skb_shift(struct sk_buff *tgt, struct sk_buff *skb, int shiftlen);
3766 void skb_scrub_packet(struct sk_buff *skb, bool xnet);
3767 bool skb_gso_validate_network_len(const struct sk_buff *skb, unsigned int mtu);
3768 bool skb_gso_validate_mac_len(const struct sk_buff *skb, unsigned int len);
3769 struct sk_buff *skb_segment(struct sk_buff *skb, netdev_features_t features);
3770 struct sk_buff *skb_segment_list(struct sk_buff *skb, netdev_features_t features,
3771                                  unsigned int offset);
3772 struct sk_buff *skb_vlan_untag(struct sk_buff *skb);
3773 int skb_ensure_writable(struct sk_buff *skb, int write_len);
3774 int __skb_vlan_pop(struct sk_buff *skb, u16 *vlan_tci);
3775 int skb_vlan_pop(struct sk_buff *skb);
3776 int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci);
3777 int skb_eth_pop(struct sk_buff *skb);
3778 int skb_eth_push(struct sk_buff *skb, const unsigned char *dst,
3779                  const unsigned char *src);
3780 int skb_mpls_push(struct sk_buff *skb, __be32 mpls_lse, __be16 mpls_proto,
3781                   int mac_len, bool ethernet);
3782 int skb_mpls_pop(struct sk_buff *skb, __be16 next_proto, int mac_len,
3783                  bool ethernet);
3784 int skb_mpls_update_lse(struct sk_buff *skb, __be32 mpls_lse);
3785 int skb_mpls_dec_ttl(struct sk_buff *skb);
3786 struct sk_buff *pskb_extract(struct sk_buff *skb, int off, int to_copy,
3787                              gfp_t gfp);
3788
3789 static inline int memcpy_from_msg(void *data, struct msghdr *msg, int len)
3790 {
3791         return copy_from_iter_full(data, len, &msg->msg_iter) ? 0 : -EFAULT;
3792 }
3793
3794 static inline int memcpy_to_msg(struct msghdr *msg, void *data, int len)
3795 {
3796         return copy_to_iter(data, len, &msg->msg_iter) == len ? 0 : -EFAULT;
3797 }
3798
3799 struct skb_checksum_ops {
3800         __wsum (*update)(const void *mem, int len, __wsum wsum);
3801         __wsum (*combine)(__wsum csum, __wsum csum2, int offset, int len);
3802 };
3803
3804 extern const struct skb_checksum_ops *crc32c_csum_stub __read_mostly;
3805
3806 __wsum __skb_checksum(const struct sk_buff *skb, int offset, int len,
3807                       __wsum csum, const struct skb_checksum_ops *ops);
3808 __wsum skb_checksum(const struct sk_buff *skb, int offset, int len,
3809                     __wsum csum);
3810
3811 static inline void * __must_check
3812 __skb_header_pointer(const struct sk_buff *skb, int offset, int len,
3813                      const void *data, int hlen, void *buffer)
3814 {
3815         if (likely(hlen - offset >= len))
3816                 return (void *)data + offset;
3817
3818         if (!skb || unlikely(skb_copy_bits(skb, offset, buffer, len) < 0))
3819                 return NULL;
3820
3821         return buffer;
3822 }
3823
3824 static inline void * __must_check
3825 skb_header_pointer(const struct sk_buff *skb, int offset, int len, void *buffer)
3826 {
3827         return __skb_header_pointer(skb, offset, len, skb->data,
3828                                     skb_headlen(skb), buffer);
3829 }
3830
3831 /**
3832  *      skb_needs_linearize - check if we need to linearize a given skb
3833  *                            depending on the given device features.
3834  *      @skb: socket buffer to check
3835  *      @features: net device features
3836  *
3837  *      Returns true if either:
3838  *      1. skb has frag_list and the device doesn't support FRAGLIST, or
3839  *      2. skb is fragmented and the device does not support SG.
3840  */
3841 static inline bool skb_needs_linearize(struct sk_buff *skb,
3842                                        netdev_features_t features)
3843 {
3844         return skb_is_nonlinear(skb) &&
3845                ((skb_has_frag_list(skb) && !(features & NETIF_F_FRAGLIST)) ||
3846                 (skb_shinfo(skb)->nr_frags && !(features & NETIF_F_SG)));
3847 }
3848
3849 static inline void skb_copy_from_linear_data(const struct sk_buff *skb,
3850                                              void *to,
3851                                              const unsigned int len)
3852 {
3853         memcpy(to, skb->data, len);
3854 }
3855
3856 static inline void skb_copy_from_linear_data_offset(const struct sk_buff *skb,
3857                                                     const int offset, void *to,
3858                                                     const unsigned int len)
3859 {
3860         memcpy(to, skb->data + offset, len);
3861 }
3862
3863 static inline void skb_copy_to_linear_data(struct sk_buff *skb,
3864                                            const void *from,
3865                                            const unsigned int len)
3866 {
3867         memcpy(skb->data, from, len);
3868 }
3869
3870 static inline void skb_copy_to_linear_data_offset(struct sk_buff *skb,
3871                                                   const int offset,
3872                                                   const void *from,
3873                                                   const unsigned int len)
3874 {
3875         memcpy(skb->data + offset, from, len);
3876 }
3877
3878 void skb_init(void);
3879
3880 static inline ktime_t skb_get_ktime(const struct sk_buff *skb)
3881 {
3882         return skb->tstamp;
3883 }
3884
3885 /**
3886  *      skb_get_timestamp - get timestamp from a skb
3887  *      @skb: skb to get stamp from
3888  *      @stamp: pointer to struct __kernel_old_timeval to store stamp in
3889  *
3890  *      Timestamps are stored in the skb as offsets to a base timestamp.
3891  *      This function converts the offset back to a struct timeval and stores
3892  *      it in stamp.
3893  */
3894 static inline void skb_get_timestamp(const struct sk_buff *skb,
3895                                      struct __kernel_old_timeval *stamp)
3896 {
3897         *stamp = ns_to_kernel_old_timeval(skb->tstamp);
3898 }
3899
3900 static inline void skb_get_new_timestamp(const struct sk_buff *skb,
3901                                          struct __kernel_sock_timeval *stamp)
3902 {
3903         struct timespec64 ts = ktime_to_timespec64(skb->tstamp);
3904
3905         stamp->tv_sec = ts.tv_sec;
3906         stamp->tv_usec = ts.tv_nsec / 1000;
3907 }
3908
3909 static inline void skb_get_timestampns(const struct sk_buff *skb,
3910                                        struct __kernel_old_timespec *stamp)
3911 {
3912         struct timespec64 ts = ktime_to_timespec64(skb->tstamp);
3913
3914         stamp->tv_sec = ts.tv_sec;
3915         stamp->tv_nsec = ts.tv_nsec;
3916 }
3917
3918 static inline void skb_get_new_timestampns(const struct sk_buff *skb,
3919                                            struct __kernel_timespec *stamp)
3920 {
3921         struct timespec64 ts = ktime_to_timespec64(skb->tstamp);
3922
3923         stamp->tv_sec = ts.tv_sec;
3924         stamp->tv_nsec = ts.tv_nsec;
3925 }
3926
3927 static inline void __net_timestamp(struct sk_buff *skb)
3928 {
3929         skb->tstamp = ktime_get_real();
3930 }
3931
3932 static inline ktime_t net_timedelta(ktime_t t)
3933 {
3934         return ktime_sub(ktime_get_real(), t);
3935 }
3936
3937 static inline ktime_t net_invalid_timestamp(void)
3938 {
3939         return 0;
3940 }
3941
3942 static inline u8 skb_metadata_len(const struct sk_buff *skb)
3943 {
3944         return skb_shinfo(skb)->meta_len;
3945 }
3946
3947 static inline void *skb_metadata_end(const struct sk_buff *skb)
3948 {
3949         return skb_mac_header(skb);
3950 }
3951
3952 static inline bool __skb_metadata_differs(const struct sk_buff *skb_a,
3953                                           const struct sk_buff *skb_b,
3954                                           u8 meta_len)
3955 {
3956         const void *a = skb_metadata_end(skb_a);
3957         const void *b = skb_metadata_end(skb_b);
3958         /* Using more efficient varaiant than plain call to memcmp(). */
3959 #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
3960         u64 diffs = 0;
3961
3962         switch (meta_len) {
3963 #define __it(x, op) (x -= sizeof(u##op))
3964 #define __it_diff(a, b, op) (*(u##op *)__it(a, op)) ^ (*(u##op *)__it(b, op))
3965         case 32: diffs |= __it_diff(a, b, 64);
3966                 fallthrough;
3967         case 24: diffs |= __it_diff(a, b, 64);
3968                 fallthrough;
3969         case 16: diffs |= __it_diff(a, b, 64);
3970                 fallthrough;
3971         case  8: diffs |= __it_diff(a, b, 64);
3972                 break;
3973         case 28: diffs |= __it_diff(a, b, 64);
3974                 fallthrough;
3975         case 20: diffs |= __it_diff(a, b, 64);
3976                 fallthrough;
3977         case 12: diffs |= __it_diff(a, b, 64);
3978                 fallthrough;
3979         case  4: diffs |= __it_diff(a, b, 32);
3980                 break;
3981         }
3982         return diffs;
3983 #else
3984         return memcmp(a - meta_len, b - meta_len, meta_len);
3985 #endif
3986 }
3987
3988 static inline bool skb_metadata_differs(const struct sk_buff *skb_a,
3989                                         const struct sk_buff *skb_b)
3990 {
3991         u8 len_a = skb_metadata_len(skb_a);
3992         u8 len_b = skb_metadata_len(skb_b);
3993
3994         if (!(len_a | len_b))
3995                 return false;
3996
3997         return len_a != len_b ?
3998                true : __skb_metadata_differs(skb_a, skb_b, len_a);
3999 }
4000
4001 static inline void skb_metadata_set(struct sk_buff *skb, u8 meta_len)
4002 {
4003         skb_shinfo(skb)->meta_len = meta_len;
4004 }
4005
4006 static inline void skb_metadata_clear(struct sk_buff *skb)
4007 {
4008         skb_metadata_set(skb, 0);
4009 }
4010
4011 struct sk_buff *skb_clone_sk(struct sk_buff *skb);
4012
4013 #ifdef CONFIG_NETWORK_PHY_TIMESTAMPING
4014
4015 void skb_clone_tx_timestamp(struct sk_buff *skb);
4016 bool skb_defer_rx_timestamp(struct sk_buff *skb);
4017
4018 #else /* CONFIG_NETWORK_PHY_TIMESTAMPING */
4019
4020 static inline void skb_clone_tx_timestamp(struct sk_buff *skb)
4021 {
4022 }
4023
4024 static inline bool skb_defer_rx_timestamp(struct sk_buff *skb)
4025 {
4026         return false;
4027 }
4028
4029 #endif /* !CONFIG_NETWORK_PHY_TIMESTAMPING */
4030
4031 /**
4032  * skb_complete_tx_timestamp() - deliver cloned skb with tx timestamps
4033  *
4034  * PHY drivers may accept clones of transmitted packets for
4035  * timestamping via their phy_driver.txtstamp method. These drivers
4036  * must call this function to return the skb back to the stack with a
4037  * timestamp.
4038  *
4039  * @skb: clone of the original outgoing packet
4040  * @hwtstamps: hardware time stamps
4041  *
4042  */
4043 void skb_complete_tx_timestamp(struct sk_buff *skb,
4044                                struct skb_shared_hwtstamps *hwtstamps);
4045
4046 void __skb_tstamp_tx(struct sk_buff *orig_skb, const struct sk_buff *ack_skb,
4047                      struct skb_shared_hwtstamps *hwtstamps,
4048                      struct sock *sk, int tstype);
4049
4050 /**
4051  * skb_tstamp_tx - queue clone of skb with send time stamps
4052  * @orig_skb:   the original outgoing packet
4053  * @hwtstamps:  hardware time stamps, may be NULL if not available
4054  *
4055  * If the skb has a socket associated, then this function clones the
4056  * skb (thus sharing the actual data and optional structures), stores
4057  * the optional hardware time stamping information (if non NULL) or
4058  * generates a software time stamp (otherwise), then queues the clone
4059  * to the error queue of the socket.  Errors are silently ignored.
4060  */
4061 void skb_tstamp_tx(struct sk_buff *orig_skb,
4062                    struct skb_shared_hwtstamps *hwtstamps);
4063
4064 /**
4065  * skb_tx_timestamp() - Driver hook for transmit timestamping
4066  *
4067  * Ethernet MAC Drivers should call this function in their hard_xmit()
4068  * function immediately before giving the sk_buff to the MAC hardware.
4069  *
4070  * Specifically, one should make absolutely sure that this function is
4071  * called before TX completion of this packet can trigger.  Otherwise
4072  * the packet could potentially already be freed.
4073  *
4074  * @skb: A socket buffer.
4075  */
4076 static inline void skb_tx_timestamp(struct sk_buff *skb)
4077 {
4078         skb_clone_tx_timestamp(skb);
4079         if (skb_shinfo(skb)->tx_flags & SKBTX_SW_TSTAMP)
4080                 skb_tstamp_tx(skb, NULL);
4081 }
4082
4083 /**
4084  * skb_complete_wifi_ack - deliver skb with wifi status
4085  *
4086  * @skb: the original outgoing packet
4087  * @acked: ack status
4088  *
4089  */
4090 void skb_complete_wifi_ack(struct sk_buff *skb, bool acked);
4091
4092 __sum16 __skb_checksum_complete_head(struct sk_buff *skb, int len);
4093 __sum16 __skb_checksum_complete(struct sk_buff *skb);
4094
4095 static inline int skb_csum_unnecessary(const struct sk_buff *skb)
4096 {
4097         return ((skb->ip_summed == CHECKSUM_UNNECESSARY) ||
4098                 skb->csum_valid ||
4099                 (skb->ip_summed == CHECKSUM_PARTIAL &&
4100                  skb_checksum_start_offset(skb) >= 0));
4101 }
4102
4103 /**
4104  *      skb_checksum_complete - Calculate checksum of an entire packet
4105  *      @skb: packet to process
4106  *
4107  *      This function calculates the checksum over the entire packet plus
4108  *      the value of skb->csum.  The latter can be used to supply the
4109  *      checksum of a pseudo header as used by TCP/UDP.  It returns the
4110  *      checksum.
4111  *
4112  *      For protocols that contain complete checksums such as ICMP/TCP/UDP,
4113  *      this function can be used to verify that checksum on received
4114  *      packets.  In that case the function should return zero if the
4115  *      checksum is correct.  In particular, this function will return zero
4116  *      if skb->ip_summed is CHECKSUM_UNNECESSARY which indicates that the
4117  *      hardware has already verified the correctness of the checksum.
4118  */
4119 static inline __sum16 skb_checksum_complete(struct sk_buff *skb)
4120 {
4121         return skb_csum_unnecessary(skb) ?
4122                0 : __skb_checksum_complete(skb);
4123 }
4124
4125 static inline void __skb_decr_checksum_unnecessary(struct sk_buff *skb)
4126 {
4127         if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
4128                 if (skb->csum_level == 0)
4129                         skb->ip_summed = CHECKSUM_NONE;
4130                 else
4131                         skb->csum_level--;
4132         }
4133 }
4134
4135 static inline void __skb_incr_checksum_unnecessary(struct sk_buff *skb)
4136 {
4137         if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
4138                 if (skb->csum_level < SKB_MAX_CSUM_LEVEL)
4139                         skb->csum_level++;
4140         } else if (skb->ip_summed == CHECKSUM_NONE) {
4141                 skb->ip_summed = CHECKSUM_UNNECESSARY;
4142                 skb->csum_level = 0;
4143         }
4144 }
4145
4146 static inline void __skb_reset_checksum_unnecessary(struct sk_buff *skb)
4147 {
4148         if (skb->ip_summed == CHECKSUM_UNNECESSARY) {
4149                 skb->ip_summed = CHECKSUM_NONE;
4150                 skb->csum_level = 0;
4151         }
4152 }
4153
4154 /* Check if we need to perform checksum complete validation.
4155  *
4156  * Returns true if checksum complete is needed, false otherwise
4157  * (either checksum is unnecessary or zero checksum is allowed).
4158  */
4159 static inline bool __skb_checksum_validate_needed(struct sk_buff *skb,
4160                                                   bool zero_okay,
4161                                                   __sum16 check)
4162 {
4163         if (skb_csum_unnecessary(skb) || (zero_okay && !check)) {
4164                 skb->csum_valid = 1;
4165                 __skb_decr_checksum_unnecessary(skb);
4166                 return false;
4167         }
4168
4169         return true;
4170 }
4171
4172 /* For small packets <= CHECKSUM_BREAK perform checksum complete directly
4173  * in checksum_init.
4174  */
4175 #define CHECKSUM_BREAK 76
4176
4177 /* Unset checksum-complete
4178  *
4179  * Unset checksum complete can be done when packet is being modified
4180  * (uncompressed for instance) and checksum-complete value is
4181  * invalidated.
4182  */
4183 static inline void skb_checksum_complete_unset(struct sk_buff *skb)
4184 {
4185         if (skb->ip_summed == CHECKSUM_COMPLETE)
4186                 skb->ip_summed = CHECKSUM_NONE;
4187 }
4188
4189 /* Validate (init) checksum based on checksum complete.
4190  *
4191  * Return values:
4192  *   0: checksum is validated or try to in skb_checksum_complete. In the latter
4193  *      case the ip_summed will not be CHECKSUM_UNNECESSARY and the pseudo
4194  *      checksum is stored in skb->csum for use in __skb_checksum_complete
4195  *   non-zero: value of invalid checksum
4196  *
4197  */
4198 static inline __sum16 __skb_checksum_validate_complete(struct sk_buff *skb,
4199                                                        bool complete,
4200                                                        __wsum psum)
4201 {
4202         if (skb->ip_summed == CHECKSUM_COMPLETE) {
4203                 if (!csum_fold(csum_add(psum, skb->csum))) {
4204                         skb->csum_valid = 1;
4205                         return 0;
4206                 }
4207         }
4208
4209         skb->csum = psum;
4210
4211         if (complete || skb->len <= CHECKSUM_BREAK) {
4212                 __sum16 csum;
4213
4214                 csum = __skb_checksum_complete(skb);
4215                 skb->csum_valid = !csum;
4216                 return csum;
4217         }
4218
4219         return 0;
4220 }
4221
4222 static inline __wsum null_compute_pseudo(struct sk_buff *skb, int proto)
4223 {
4224         return 0;
4225 }
4226
4227 /* Perform checksum validate (init). Note that this is a macro since we only
4228  * want to calculate the pseudo header which is an input function if necessary.
4229  * First we try to validate without any computation (checksum unnecessary) and
4230  * then calculate based on checksum complete calling the function to compute
4231  * pseudo header.
4232  *
4233  * Return values:
4234  *   0: checksum is validated or try to in skb_checksum_complete
4235  *   non-zero: value of invalid checksum
4236  */
4237 #define __skb_checksum_validate(skb, proto, complete,                   \
4238                                 zero_okay, check, compute_pseudo)       \
4239 ({                                                                      \
4240         __sum16 __ret = 0;                                              \
4241         skb->csum_valid = 0;                                            \
4242         if (__skb_checksum_validate_needed(skb, zero_okay, check))      \
4243                 __ret = __skb_checksum_validate_complete(skb,           \
4244                                 complete, compute_pseudo(skb, proto));  \
4245         __ret;                                                          \
4246 })
4247
4248 #define skb_checksum_init(skb, proto, compute_pseudo)                   \
4249         __skb_checksum_validate(skb, proto, false, false, 0, compute_pseudo)
4250
4251 #define skb_checksum_init_zero_check(skb, proto, check, compute_pseudo) \
4252         __skb_checksum_validate(skb, proto, false, true, check, compute_pseudo)
4253
4254 #define skb_checksum_validate(skb, proto, compute_pseudo)               \
4255         __skb_checksum_validate(skb, proto, true, false, 0, compute_pseudo)
4256
4257 #define skb_checksum_validate_zero_check(skb, proto, check,             \
4258                                          compute_pseudo)                \
4259         __skb_checksum_validate(skb, proto, true, true, check, compute_pseudo)
4260
4261 #define skb_checksum_simple_validate(skb)                               \
4262         __skb_checksum_validate(skb, 0, true, false, 0, null_compute_pseudo)
4263
4264 static inline bool __skb_checksum_convert_check(struct sk_buff *skb)
4265 {
4266         return (skb->ip_summed == CHECKSUM_NONE && skb->csum_valid);
4267 }
4268
4269 static inline void __skb_checksum_convert(struct sk_buff *skb, __wsum pseudo)
4270 {
4271         skb->csum = ~pseudo;
4272         skb->ip_summed = CHECKSUM_COMPLETE;
4273 }
4274
4275 #define skb_checksum_try_convert(skb, proto, compute_pseudo)    \
4276 do {                                                                    \
4277         if (__skb_checksum_convert_check(skb))                          \
4278                 __skb_checksum_convert(skb, compute_pseudo(skb, proto)); \
4279 } while (0)
4280
4281 static inline void skb_remcsum_adjust_partial(struct sk_buff *skb, void *ptr,
4282                                               u16 start, u16 offset)
4283 {
4284         skb->ip_summed = CHECKSUM_PARTIAL;
4285         skb->csum_start = ((unsigned char *)ptr + start) - skb->head;
4286         skb->csum_offset = offset - start;
4287 }
4288
4289 /* Update skbuf and packet to reflect the remote checksum offload operation.
4290  * When called, ptr indicates the starting point for skb->csum when
4291  * ip_summed is CHECKSUM_COMPLETE. If we need create checksum complete
4292  * here, skb_postpull_rcsum is done so skb->csum start is ptr.
4293  */
4294 static inline void skb_remcsum_process(struct sk_buff *skb, void *ptr,
4295                                        int start, int offset, bool nopartial)
4296 {
4297         __wsum delta;
4298
4299         if (!nopartial) {
4300                 skb_remcsum_adjust_partial(skb, ptr, start, offset);
4301                 return;
4302         }
4303
4304          if (unlikely(skb->ip_summed != CHECKSUM_COMPLETE)) {
4305                 __skb_checksum_complete(skb);
4306                 skb_postpull_rcsum(skb, skb->data, ptr - (void *)skb->data);
4307         }
4308
4309         delta = remcsum_adjust(ptr, skb->csum, start, offset);
4310
4311         /* Adjust skb->csum since we changed the packet */
4312         skb->csum = csum_add(skb->csum, delta);
4313 }
4314
4315 static inline struct nf_conntrack *skb_nfct(const struct sk_buff *skb)
4316 {
4317 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
4318         return (void *)(skb->_nfct & NFCT_PTRMASK);
4319 #else
4320         return NULL;
4321 #endif
4322 }
4323
4324 static inline unsigned long skb_get_nfct(const struct sk_buff *skb)
4325 {
4326 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
4327         return skb->_nfct;
4328 #else
4329         return 0UL;
4330 #endif
4331 }
4332
4333 static inline void skb_set_nfct(struct sk_buff *skb, unsigned long nfct)
4334 {
4335 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
4336         skb->slow_gro |= !!nfct;
4337         skb->_nfct = nfct;
4338 #endif
4339 }
4340
4341 #ifdef CONFIG_SKB_EXTENSIONS
4342 enum skb_ext_id {
4343 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
4344         SKB_EXT_BRIDGE_NF,
4345 #endif
4346 #ifdef CONFIG_XFRM
4347         SKB_EXT_SEC_PATH,
4348 #endif
4349 #if IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
4350         TC_SKB_EXT,
4351 #endif
4352 #if IS_ENABLED(CONFIG_MPTCP)
4353         SKB_EXT_MPTCP,
4354 #endif
4355         SKB_EXT_NUM, /* must be last */
4356 };
4357
4358 /**
4359  *      struct skb_ext - sk_buff extensions
4360  *      @refcnt: 1 on allocation, deallocated on 0
4361  *      @offset: offset to add to @data to obtain extension address
4362  *      @chunks: size currently allocated, stored in SKB_EXT_ALIGN_SHIFT units
4363  *      @data: start of extension data, variable sized
4364  *
4365  *      Note: offsets/lengths are stored in chunks of 8 bytes, this allows
4366  *      to use 'u8' types while allowing up to 2kb worth of extension data.
4367  */
4368 struct skb_ext {
4369         refcount_t refcnt;
4370         u8 offset[SKB_EXT_NUM]; /* in chunks of 8 bytes */
4371         u8 chunks;              /* same */
4372         char data[] __aligned(8);
4373 };
4374
4375 struct skb_ext *__skb_ext_alloc(gfp_t flags);
4376 void *__skb_ext_set(struct sk_buff *skb, enum skb_ext_id id,
4377                     struct skb_ext *ext);
4378 void *skb_ext_add(struct sk_buff *skb, enum skb_ext_id id);
4379 void __skb_ext_del(struct sk_buff *skb, enum skb_ext_id id);
4380 void __skb_ext_put(struct skb_ext *ext);
4381
4382 static inline void skb_ext_put(struct sk_buff *skb)
4383 {
4384         if (skb->active_extensions)
4385                 __skb_ext_put(skb->extensions);
4386 }
4387
4388 static inline void __skb_ext_copy(struct sk_buff *dst,
4389                                   const struct sk_buff *src)
4390 {
4391         dst->active_extensions = src->active_extensions;
4392
4393         if (src->active_extensions) {
4394                 struct skb_ext *ext = src->extensions;
4395
4396                 refcount_inc(&ext->refcnt);
4397                 dst->extensions = ext;
4398         }
4399 }
4400
4401 static inline void skb_ext_copy(struct sk_buff *dst, const struct sk_buff *src)
4402 {
4403         skb_ext_put(dst);
4404         __skb_ext_copy(dst, src);
4405 }
4406
4407 static inline bool __skb_ext_exist(const struct skb_ext *ext, enum skb_ext_id i)
4408 {
4409         return !!ext->offset[i];
4410 }
4411
4412 static inline bool skb_ext_exist(const struct sk_buff *skb, enum skb_ext_id id)
4413 {
4414         return skb->active_extensions & (1 << id);
4415 }
4416
4417 static inline void skb_ext_del(struct sk_buff *skb, enum skb_ext_id id)
4418 {
4419         if (skb_ext_exist(skb, id))
4420                 __skb_ext_del(skb, id);
4421 }
4422
4423 static inline void *skb_ext_find(const struct sk_buff *skb, enum skb_ext_id id)
4424 {
4425         if (skb_ext_exist(skb, id)) {
4426                 struct skb_ext *ext = skb->extensions;
4427
4428                 return (void *)ext + (ext->offset[id] << 3);
4429         }
4430
4431         return NULL;
4432 }
4433
4434 static inline void skb_ext_reset(struct sk_buff *skb)
4435 {
4436         if (unlikely(skb->active_extensions)) {
4437                 __skb_ext_put(skb->extensions);
4438                 skb->active_extensions = 0;
4439         }
4440 }
4441
4442 static inline bool skb_has_extensions(struct sk_buff *skb)
4443 {
4444         return unlikely(skb->active_extensions);
4445 }
4446 #else
4447 static inline void skb_ext_put(struct sk_buff *skb) {}
4448 static inline void skb_ext_reset(struct sk_buff *skb) {}
4449 static inline void skb_ext_del(struct sk_buff *skb, int unused) {}
4450 static inline void __skb_ext_copy(struct sk_buff *d, const struct sk_buff *s) {}
4451 static inline void skb_ext_copy(struct sk_buff *dst, const struct sk_buff *s) {}
4452 static inline bool skb_has_extensions(struct sk_buff *skb) { return false; }
4453 #endif /* CONFIG_SKB_EXTENSIONS */
4454
4455 static inline void nf_reset_ct(struct sk_buff *skb)
4456 {
4457 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
4458         nf_conntrack_put(skb_nfct(skb));
4459         skb->_nfct = 0;
4460 #endif
4461 }
4462
4463 static inline void nf_reset_trace(struct sk_buff *skb)
4464 {
4465 #if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) || IS_ENABLED(CONFIG_NF_TABLES)
4466         skb->nf_trace = 0;
4467 #endif
4468 }
4469
4470 static inline void ipvs_reset(struct sk_buff *skb)
4471 {
4472 #if IS_ENABLED(CONFIG_IP_VS)
4473         skb->ipvs_property = 0;
4474 #endif
4475 }
4476
4477 /* Note: This doesn't put any conntrack info in dst. */
4478 static inline void __nf_copy(struct sk_buff *dst, const struct sk_buff *src,
4479                              bool copy)
4480 {
4481 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
4482         dst->_nfct = src->_nfct;
4483         nf_conntrack_get(skb_nfct(src));
4484 #endif
4485 #if IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TRACE) || IS_ENABLED(CONFIG_NF_TABLES)
4486         if (copy)
4487                 dst->nf_trace = src->nf_trace;
4488 #endif
4489 }
4490
4491 static inline void nf_copy(struct sk_buff *dst, const struct sk_buff *src)
4492 {
4493 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
4494         nf_conntrack_put(skb_nfct(dst));
4495 #endif
4496         dst->slow_gro = src->slow_gro;
4497         __nf_copy(dst, src, true);
4498 }
4499
4500 #ifdef CONFIG_NETWORK_SECMARK
4501 static inline void skb_copy_secmark(struct sk_buff *to, const struct sk_buff *from)
4502 {
4503         to->secmark = from->secmark;
4504 }
4505
4506 static inline void skb_init_secmark(struct sk_buff *skb)
4507 {
4508         skb->secmark = 0;
4509 }
4510 #else
4511 static inline void skb_copy_secmark(struct sk_buff *to, const struct sk_buff *from)
4512 { }
4513
4514 static inline void skb_init_secmark(struct sk_buff *skb)
4515 { }
4516 #endif
4517
4518 static inline int secpath_exists(const struct sk_buff *skb)
4519 {
4520 #ifdef CONFIG_XFRM
4521         return skb_ext_exist(skb, SKB_EXT_SEC_PATH);
4522 #else
4523         return 0;
4524 #endif
4525 }
4526
4527 static inline bool skb_irq_freeable(const struct sk_buff *skb)
4528 {
4529         return !skb->destructor &&
4530                 !secpath_exists(skb) &&
4531                 !skb_nfct(skb) &&
4532                 !skb->_skb_refdst &&
4533                 !skb_has_frag_list(skb);
4534 }
4535
4536 static inline void skb_set_queue_mapping(struct sk_buff *skb, u16 queue_mapping)
4537 {
4538         skb->queue_mapping = queue_mapping;
4539 }
4540
4541 static inline u16 skb_get_queue_mapping(const struct sk_buff *skb)
4542 {
4543         return skb->queue_mapping;
4544 }
4545
4546 static inline void skb_copy_queue_mapping(struct sk_buff *to, const struct sk_buff *from)
4547 {
4548         to->queue_mapping = from->queue_mapping;
4549 }
4550
4551 static inline void skb_record_rx_queue(struct sk_buff *skb, u16 rx_queue)
4552 {
4553         skb->queue_mapping = rx_queue + 1;
4554 }
4555
4556 static inline u16 skb_get_rx_queue(const struct sk_buff *skb)
4557 {
4558         return skb->queue_mapping - 1;
4559 }
4560
4561 static inline bool skb_rx_queue_recorded(const struct sk_buff *skb)
4562 {
4563         return skb->queue_mapping != 0;
4564 }
4565
4566 static inline void skb_set_dst_pending_confirm(struct sk_buff *skb, u32 val)
4567 {
4568         skb->dst_pending_confirm = val;
4569 }
4570
4571 static inline bool skb_get_dst_pending_confirm(const struct sk_buff *skb)
4572 {
4573         return skb->dst_pending_confirm != 0;
4574 }
4575
4576 static inline struct sec_path *skb_sec_path(const struct sk_buff *skb)
4577 {
4578 #ifdef CONFIG_XFRM
4579         return skb_ext_find(skb, SKB_EXT_SEC_PATH);
4580 #else
4581         return NULL;
4582 #endif
4583 }
4584
4585 /* Keeps track of mac header offset relative to skb->head.
4586  * It is useful for TSO of Tunneling protocol. e.g. GRE.
4587  * For non-tunnel skb it points to skb_mac_header() and for
4588  * tunnel skb it points to outer mac header.
4589  * Keeps track of level of encapsulation of network headers.
4590  */
4591 struct skb_gso_cb {
4592         union {
4593                 int     mac_offset;
4594                 int     data_offset;
4595         };
4596         int     encap_level;
4597         __wsum  csum;
4598         __u16   csum_start;
4599 };
4600 #define SKB_GSO_CB_OFFSET       32
4601 #define SKB_GSO_CB(skb) ((struct skb_gso_cb *)((skb)->cb + SKB_GSO_CB_OFFSET))
4602
4603 static inline int skb_tnl_header_len(const struct sk_buff *inner_skb)
4604 {
4605         return (skb_mac_header(inner_skb) - inner_skb->head) -
4606                 SKB_GSO_CB(inner_skb)->mac_offset;
4607 }
4608
4609 static inline int gso_pskb_expand_head(struct sk_buff *skb, int extra)
4610 {
4611         int new_headroom, headroom;
4612         int ret;
4613
4614         headroom = skb_headroom(skb);
4615         ret = pskb_expand_head(skb, extra, 0, GFP_ATOMIC);
4616         if (ret)
4617                 return ret;
4618
4619         new_headroom = skb_headroom(skb);
4620         SKB_GSO_CB(skb)->mac_offset += (new_headroom - headroom);
4621         return 0;
4622 }
4623
4624 static inline void gso_reset_checksum(struct sk_buff *skb, __wsum res)
4625 {
4626         /* Do not update partial checksums if remote checksum is enabled. */
4627         if (skb->remcsum_offload)
4628                 return;
4629
4630         SKB_GSO_CB(skb)->csum = res;
4631         SKB_GSO_CB(skb)->csum_start = skb_checksum_start(skb) - skb->head;
4632 }
4633
4634 /* Compute the checksum for a gso segment. First compute the checksum value
4635  * from the start of transport header to SKB_GSO_CB(skb)->csum_start, and
4636  * then add in skb->csum (checksum from csum_start to end of packet).
4637  * skb->csum and csum_start are then updated to reflect the checksum of the
4638  * resultant packet starting from the transport header-- the resultant checksum
4639  * is in the res argument (i.e. normally zero or ~ of checksum of a pseudo
4640  * header.
4641  */
4642 static inline __sum16 gso_make_checksum(struct sk_buff *skb, __wsum res)
4643 {
4644         unsigned char *csum_start = skb_transport_header(skb);
4645         int plen = (skb->head + SKB_GSO_CB(skb)->csum_start) - csum_start;
4646         __wsum partial = SKB_GSO_CB(skb)->csum;
4647
4648         SKB_GSO_CB(skb)->csum = res;
4649         SKB_GSO_CB(skb)->csum_start = csum_start - skb->head;
4650
4651         return csum_fold(csum_partial(csum_start, plen, partial));
4652 }
4653
4654 static inline bool skb_is_gso(const struct sk_buff *skb)
4655 {
4656         return skb_shinfo(skb)->gso_size;
4657 }
4658
4659 /* Note: Should be called only if skb_is_gso(skb) is true */
4660 static inline bool skb_is_gso_v6(const struct sk_buff *skb)
4661 {
4662         return skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6;
4663 }
4664
4665 /* Note: Should be called only if skb_is_gso(skb) is true */
4666 static inline bool skb_is_gso_sctp(const struct sk_buff *skb)
4667 {
4668         return skb_shinfo(skb)->gso_type & SKB_GSO_SCTP;
4669 }
4670
4671 /* Note: Should be called only if skb_is_gso(skb) is true */
4672 static inline bool skb_is_gso_tcp(const struct sk_buff *skb)
4673 {
4674         return skb_shinfo(skb)->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6);
4675 }
4676
4677 static inline void skb_gso_reset(struct sk_buff *skb)
4678 {
4679         skb_shinfo(skb)->gso_size = 0;
4680         skb_shinfo(skb)->gso_segs = 0;
4681         skb_shinfo(skb)->gso_type = 0;
4682 }
4683
4684 static inline void skb_increase_gso_size(struct skb_shared_info *shinfo,
4685                                          u16 increment)
4686 {
4687         if (WARN_ON_ONCE(shinfo->gso_size == GSO_BY_FRAGS))
4688                 return;
4689         shinfo->gso_size += increment;
4690 }
4691
4692 static inline void skb_decrease_gso_size(struct skb_shared_info *shinfo,
4693                                          u16 decrement)
4694 {
4695         if (WARN_ON_ONCE(shinfo->gso_size == GSO_BY_FRAGS))
4696                 return;
4697         shinfo->gso_size -= decrement;
4698 }
4699
4700 void __skb_warn_lro_forwarding(const struct sk_buff *skb);
4701
4702 static inline bool skb_warn_if_lro(const struct sk_buff *skb)
4703 {
4704         /* LRO sets gso_size but not gso_type, whereas if GSO is really
4705          * wanted then gso_type will be set. */
4706         const struct skb_shared_info *shinfo = skb_shinfo(skb);
4707
4708         if (skb_is_nonlinear(skb) && shinfo->gso_size != 0 &&
4709             unlikely(shinfo->gso_type == 0)) {
4710                 __skb_warn_lro_forwarding(skb);
4711                 return true;
4712         }
4713         return false;
4714 }
4715
4716 static inline void skb_forward_csum(struct sk_buff *skb)
4717 {
4718         /* Unfortunately we don't support this one.  Any brave souls? */
4719         if (skb->ip_summed == CHECKSUM_COMPLETE)
4720                 skb->ip_summed = CHECKSUM_NONE;
4721 }
4722
4723 /**
4724  * skb_checksum_none_assert - make sure skb ip_summed is CHECKSUM_NONE
4725  * @skb: skb to check
4726  *
4727  * fresh skbs have their ip_summed set to CHECKSUM_NONE.
4728  * Instead of forcing ip_summed to CHECKSUM_NONE, we can
4729  * use this helper, to document places where we make this assertion.
4730  */
4731 static inline void skb_checksum_none_assert(const struct sk_buff *skb)
4732 {
4733 #ifdef DEBUG
4734         BUG_ON(skb->ip_summed != CHECKSUM_NONE);
4735 #endif
4736 }
4737
4738 bool skb_partial_csum_set(struct sk_buff *skb, u16 start, u16 off);
4739
4740 int skb_checksum_setup(struct sk_buff *skb, bool recalculate);
4741 struct sk_buff *skb_checksum_trimmed(struct sk_buff *skb,
4742                                      unsigned int transport_len,
4743                                      __sum16(*skb_chkf)(struct sk_buff *skb));
4744
4745 /**
4746  * skb_head_is_locked - Determine if the skb->head is locked down
4747  * @skb: skb to check
4748  *
4749  * The head on skbs build around a head frag can be removed if they are
4750  * not cloned.  This function returns true if the skb head is locked down
4751  * due to either being allocated via kmalloc, or by being a clone with
4752  * multiple references to the head.
4753  */
4754 static inline bool skb_head_is_locked(const struct sk_buff *skb)
4755 {
4756         return !skb->head_frag || skb_cloned(skb);
4757 }
4758
4759 /* Local Checksum Offload.
4760  * Compute outer checksum based on the assumption that the
4761  * inner checksum will be offloaded later.
4762  * See Documentation/networking/checksum-offloads.rst for
4763  * explanation of how this works.
4764  * Fill in outer checksum adjustment (e.g. with sum of outer
4765  * pseudo-header) before calling.
4766  * Also ensure that inner checksum is in linear data area.
4767  */
4768 static inline __wsum lco_csum(struct sk_buff *skb)
4769 {
4770         unsigned char *csum_start = skb_checksum_start(skb);
4771         unsigned char *l4_hdr = skb_transport_header(skb);
4772         __wsum partial;
4773
4774         /* Start with complement of inner checksum adjustment */
4775         partial = ~csum_unfold(*(__force __sum16 *)(csum_start +
4776                                                     skb->csum_offset));
4777
4778         /* Add in checksum of our headers (incl. outer checksum
4779          * adjustment filled in by caller) and return result.
4780          */
4781         return csum_partial(l4_hdr, csum_start - l4_hdr, partial);
4782 }
4783
4784 static inline bool skb_is_redirected(const struct sk_buff *skb)
4785 {
4786         return skb->redirected;
4787 }
4788
4789 static inline void skb_set_redirected(struct sk_buff *skb, bool from_ingress)
4790 {
4791         skb->redirected = 1;
4792 #ifdef CONFIG_NET_REDIRECT
4793         skb->from_ingress = from_ingress;
4794         if (skb->from_ingress)
4795                 skb->tstamp = 0;
4796 #endif
4797 }
4798
4799 static inline void skb_reset_redirect(struct sk_buff *skb)
4800 {
4801         skb->redirected = 0;
4802 }
4803
4804 static inline bool skb_csum_is_sctp(struct sk_buff *skb)
4805 {
4806         return skb->csum_not_inet;
4807 }
4808
4809 static inline void skb_set_kcov_handle(struct sk_buff *skb,
4810                                        const u64 kcov_handle)
4811 {
4812 #ifdef CONFIG_KCOV
4813         skb->kcov_handle = kcov_handle;
4814 #endif
4815 }
4816
4817 static inline u64 skb_get_kcov_handle(struct sk_buff *skb)
4818 {
4819 #ifdef CONFIG_KCOV
4820         return skb->kcov_handle;
4821 #else
4822         return 0;
4823 #endif
4824 }
4825
4826 #ifdef CONFIG_PAGE_POOL
4827 static inline void skb_mark_for_recycle(struct sk_buff *skb)
4828 {
4829         skb->pp_recycle = 1;
4830 }
4831 #endif
4832
4833 static inline bool skb_pp_recycle(struct sk_buff *skb, void *data)
4834 {
4835         if (!IS_ENABLED(CONFIG_PAGE_POOL) || !skb->pp_recycle)
4836                 return false;
4837         return page_pool_return_skb_page(virt_to_page(data));
4838 }
4839
4840 #endif  /* __KERNEL__ */
4841 #endif  /* _LINUX_SKBUFF_H */